Visual Studio Code 1.55(VS Code 1.55)发布下载了,支持 Windows、Mac、Linux 操作系统,针对 Linux 平台提供 snap、deb、rpm、tarball、ARM 包。以下介绍 Visual Studio Code 1.55 的主要亮点。
以下是该版本的主要亮点 1、辅助功能改进:多光标支持,屏幕阅读器的行数限制增加到 1000 行。 2、macOS Big Sur 的图标更新:与 Big Sur 的视觉风格相匹配的 brand icons。
3、改进断点:内联断点菜单等。
4、Editor status decorations:Editor tab status decorations 默认情况下处于启用状态。
5、自定义键盘快捷键编辑器:键盘快捷键编辑器现在已经重构为使用新的表格部件,允许用户调整编辑器中的列的大小。 6、改进的远程端口管理:端口转发自动检测,regex 命名等。 7、Terminal 配置文件:在 terminal 中定义配置文件,以方便地启动非默认 Shell。
VS Code 会通过这个菜单自动检测并显示一些比较常用的 shell,但也可以通过 terminal.integrated.profiles.<platform> 设置进行配置。通过这个设置,可以添加新的配置文件,更改现有的配置文件和删除默认的配置文件。比如: "terminal.integrated.profiles.windows": { // Add a PowerShell profile that doesn't run the profile "PowerShell (No Profile)": { // Some sources are available which auto detect complex cases "source": "PowerShell", "args": ["-NoProfile"], // Name the terminal "PowerShell (No Profile)" to differentiate it "overrideName": true }, // Remove the builtin Git Bash profile "Git Bash": null, // Add a Cygwin profile "Cygwin": { "path": "C:\\cygwin64\\bin\\bash.exe", "args": ["--login"] } } 推荐的初始添加配置文件的方法是通过“选择默认配置文件”命令,该命令允许基于现有配置文件或其他检测到的 shell 创建配置文件。
8、Notebook 的改进:多个单元格选择,以及更具可定制性的 diff 编辑器。
9、Raspberry Pi 上的 VS Code:新主题,描述了如何在 Raspberry Pi 设备上安装 VS Code。
下载链接 官方网站:https://code.visualstudio.com/ 下载地址:https://code.visualstudio.com/Download 注:在 Linux 系统下建议采用 snap 命令安装,参考在Ubuntu 20.04下可用snap来安装Visual Studio Code一文,同时也可以自行下载 deb、rpm、tar.gz 包安装,经测试,能安装及运行在主流的 Linux 发行版上。
相关主题 |