2

我正在尝试将 vscode 中的默认终端设置为 PowerShell 6.0。但是,重启vscode后,出现如下信息,终端没有启动。

ERROR  e.executable.toLowerCase is not a function

这是我尝试使用的用户设置覆盖代码。注意:必须转义反斜杠路径分隔符。

vscode 1.18.1
PSVersion 6.0.0-rc
"C:\Program Files\PowerShell\6.0.0-rc\pwsh.exe"

{
    "window.zoomLevel": 1,
    "terminal.integrated.shell.windows": {
        "C:\\Program Files\\PowerShell\\6.0.0-rc\\pwsh.exe"
    }
}
4

2 回答 2

4

"terminal.integrated.env.windows"不是要使用的正确属性。

这行得通。

{
    "window.zoomLevel": 1,
    "terminal.integrated.shell.windows": "C:\\Program Files\\PowerShell\\6.0.0-rc\\pwsh.exe"
}

这也有效。

{
    "window.zoomLevel": 1,
    "terminal.integrated.shell.windows":
        "C:/Program Files/PowerShell/6.0.0-rc/pwsh.exe"
}
于 2017-12-02T22:29:58.403 回答
1

截至 2019 年 8 月 26 日,路径为:

{
    "window.zoomLevel": 1,
    "terminal.integrated.shell.windows": "C:/Program Files/PowerShell/6/pwsh.exe"
}
于 2019-08-26T18:40:05.000 回答