VSCode默认集成终端未更改

时间:2019-04-01 13:52:58

标签: visual-studio-code

我正在使用VSCode一段时间,直到今天终端仍按预期工作。 但是现在我无法更改默认的集成终端。无论我在设置中进行了什么设置,它始终都是“ cmd”。

settings.json似乎不错:

{
"window.zoomLevel": -1,
"files.associations": {
    "*.testset": "feature"
},
"git.autofetch": true,
"C_Cpp.updateChannel": "Insiders",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe"
}

但是每个新终端仍然是“ cmd”。 不是“ bash”或“ PS”。

1 个答案:

答案 0 :(得分:0)

问题出在我的工作区设置中。 “ project.code-workspace”

{
    ....
    "settings": {
        "terminal.integrated.shell.windows": "cmd.exe"
    }
}

通过从文件中删除此行,此问题已得到解决。现在,我可以更改默认的集成终端。