VsCode最新版本1.60更新,修改了默认终端配置
VsCode设置Bash启动
这次更新修改了 "terminal.integrated.shell.windows" => "terminal.integrated.profiles.windows"
原本的终端配置将会失效
最新终端配置为: 修改 settings.json 文件
{
// 终端路径配置 "terminal.integrated.profiles.windows": { "bash": { "path": "E:\git\Git\bin\bash.exe" } },
// 默认启动的终端 "terminal.integrated.defaultProfile.windows": "bash" }