MacOS 默认配置文件相当于 VS Code

问题描述 投票:0回答:1

我正在学习中级 Python 编程课程,我们将使用 VS Code。作为工作区设置的一部分,讲师要求我们使用以下内容设置“settings.json”:

{
"terminal.integrated.defaultProfile.windows": "Command Prompt",
}

我修改了 MacOS 的配置文件:

{
"terminal.integrated.defaultProfile.osx": "Command Prompt",
}

"Command Prompt"
出现错误“值不被接受”(参见附图)。我联系了我的教练,他不确定正确的解决方法,因为他不熟悉 Mac 机器。

查看 VS Code 站点后,我决定将设置更新为以下内容并消除错误:

{
"terminal.integrated.defaultProfile.osx": null,
}

我的导师建议尝试以下方法:

{
"terminal.integrated.shell.osx": "sh",
}

设置与我的讲师想要设置的 Windows 默认配置文件最匹配的 MacOS 默认配置文件的正确方法是什么?

值不被接受错误

python macos visual-studio
1个回答
0
投票

从 mac 上的终端/命令提示符开始,默认情况下您有

zsh

"terminal.integrated.defaultProfile.osx": "zsh" 

第二个设置已被弃用。请不要使用

terminal.integrated.shell.osx

© www.soinside.com 2019 - 2024. All rights reserved.