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

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

pwd

/Users/mona/nodejs/myExpressApp

code .

-bash: code:命令不存在


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


当前回答

注意:对于Visual Studio Code 1.58(2021年6月)的Code Insiders,您有Microsoft/Visual Studio Code issue 126702(适用于Windows,但也适用于Mac)。

code-insiders。不打开当前目录。相反,它为代码内部人员打开了路径。

这个问题已经解决了。

其他回答

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

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

打开命令面板(⇧⌘P)

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

然后重新安装。

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

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

到VS顶部,选择菜单视图→命令面板…

通过⌘P打开命令面板,并输入shell命令到 查找Shell命令: [Windows]打开命令面板通过Ctrl+Shift+P和输入shell命令到 查找Shell命令:


类型:shell命令

和安装。

可能您的系统中还没有安装Visual Studio代码。所以,请先安装。命令在这里

sudo snap install --classic code

详情请点击这里。

在Ubuntu 20.04 (Focal Fossa)中:

# Symbolic link the bin command to /usr/bin
rm -f /usr/bin/code
ln -s /usr/share/code/bin/code /usr/bin/code

如果你在Windows上,也面临同样的问题,可以看看Inazense的答案,Visual Studio Code -“Shell Command: Install ' Code ' Command in PATH Command .”。

在Visual Studio代码中,我无法找到“Shell命令:在PATH命令中安装' Code '命令”。所以我不得不手动操作。

打开环境变量(系统→高级系统设置→高级选项卡→环境变量)。在系统变量中,单击Path,然后单击Edit,添加一个名为:

“C:用户/用户名/应用程序/微软/代码/ bin”

现在你完成了!重新启动命令提示符,然后重试。