(本文阅读时间:5分钟)
欢迎使用 2022 年 7 月版的 Visual Studio Code,其中一些主要亮点为您列举如下。
更方便的标题栏自定义
折叠选择
命令Create Manual Folding Ranges from Selection (Ctrl+K Ctrl+,) 从当前选定的行创建折叠区域并将其折叠。该区域称为手动折叠区域,位于折叠提供程序计算的区域之上。可以使用命令Remove Manual Folding Ranges (Ctrl+K Ctrl+.) 再次删除手动折叠区域。手动折叠区域对于不支持折叠的编程语言的case十分有帮助。
搜索多项选择
树视图搜索和筛选
树视图,例如File Explorer,现在支持Find控件,在树内按 Ctrl+F 弹出 Find 控件。您可以使用 Find 控件突出显示匹配的元素,或切换 Filter 按钮来隐藏所有与搜索词不匹配的元素。
终端改进
注意:在 Windows 上,您需要 PowerShell 7 (pwsh) 来支持 shell 集成。可以通过 https://aka.ms/PSWindows 安装。
"terminal.integrated.shellIntegration.enabled": "false"
您现在可以使用命令行选项在 VS Code 中调出合并编辑器:
-m --merge <path1> <path2> <base> <result> Perform a three-way merge by providing paths for two modified versions of a file, the common origin of both modified versions, and the output file to save merge results.
这样您就可以使用 VS Code 作为 Git 的合并工具。例如,如果您在 .gitconfig 中进行配置,那么:
[merge]
tool = code-insiders
[mergetool "code-insiders"]
cmd = code-insiders --wait --merge $REMOTE $LOCAL $BASE $MERGED
Python初步体验
粘性滚动预览
开发容器 CLI 主题
开发容器命令行界面 (CLI) 主题已针对 CLI 的最新版本进行了更新。开发容器 CLI 允许您构建和运行开发容器,它是开发容器规范的开源参考实现。
更多Visual Studio Code 1.70 更新内容,请扫二维码或点击阅读原文查阅。
长按识别二维码
点击「阅读原文」了解 Visual Studio Code 1.70~