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" }