命令代码。这本手册里没有。

之前的所有步骤都奏效了。如何在OS X终端中调用Visual Studio代码?

pwd

/Users/mona/nodejs/myExpressApp

code .

-bash: code:命令不存在


我最终通过改变工作空间从Visual Code Studio中打开它,但是为什么命令代码不会。部分工作?


当前回答

按照文档将“code”安装到PATH是非常简单的,但它不起作用。

我只是先卸载了它,然后重新安装。

打开命令面板(⇧⌘P)

Shell Command: Uninstall 'code' command in PATH command.

然后重新安装。

Shell Command: Install 'code' command in PATH command.

重新启动终端以包含新的PATH。

其他回答

在我的Mac上,我让它运行起来:

添加到.bash_profile文件:

code() {
   open -a Visual\ Studio\ Code.app $1
}

保存并在终端中执行source .bash_profile。

然后在终端中,code index.html(或其他什么)将在Visual Studio code中打开该文件。

如果你在使用命令面板解决方案时遇到问题,你可以在终端启动时手动将Visual Studio Code添加到$PATH环境变量中:

cat << EOF >> ~/.bash_profile
# Add Visual Studio Code (code)
export PATH="$PATH:/Applications/Visual Studio
Code.app/Contents/Resources/app/bin"
EOF

我尝试了以下文档,它对我有用:

启动Visual Studio代码 打开命令面板(Cmd + Shift + P),输入'shell Command '来查找 Shell命令:在PATH命令中安装“code”命令 重启终端

以下步骤:

打开Visual Studio Code应用程序,键入Command + Shift + P并键入命令 安装代码。然后进入。 您将在Visual Studio Application中看到以下消息:shell命令' 代码成功安装在PATH中。 现在,跳转到iTerm CLI并键入代码。 然后,您将能够重定向到Visual Studio Code进行任何代码更改/视图。

这很简单。在你的终端机上打这个。你可以使用第一个或第二个命令:

cat << EOF >> ~/.bash_profile
export PATH="\$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
EOF

然后按“Enter”。

但是,由于Z shell成为macOS Catalina的默认shell,运行以下命令将Visual Studio Code添加到您的路径:

cat << EOF >> ~/.zprofile
export PATH="\$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
EOF

我使用了最新的命令,它对我有用。