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

之前的所有步骤都奏效了。如何在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。不打开当前目录。相反,它为代码内部人员打开了路径。

这个问题已经解决了。

其他回答

如果这种情况发生在Linux Mint或Ubuntu上,很可能是因为您通过软件管理器安装了Visual Studio Code。这将在调试过程中引起其他问题。相反,使用Visual Studio Code网站上的.deb文件安装它。

如果你真的想使用软件管理器,下面的解决方案仍然有效:

使用find / name code 2> /dev/null查找Visual Studio code二进制文件的路径。它应该以/extra/vscode/bin/code结尾

如果你正在使用Linux Mint软件管理器,你可能只会在中间找到一个长得离谱的名字,就像这样:

“... / stable / 7a22830d9e8fbbdc9627e43e072005eef66c14d2a4dd19992427ef4de060186a / ...”

只需将长部分替换为"/active/"

一旦你有了它,创建一个符号链接:

Ln -s path_you_found/extra/vscode/bin/code /usr/local/bin/code

如果你没有权限,或者只希望自己可以访问它,只需将这一行添加到你的.bashrc或.zshrc文件中:

导出路径= " $路径:path_you_found /额外的/ vscode / bin /

注意,我移除了末尾的“code”文件名。

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

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


类型:shell命令

和安装。

命令行解决方案的替代方案:

最近我在Mac OS x中使用服务。我向文件夹或文件添加了服务,这样我就可以在Visual Studio Code中打开该文件夹或文件。我认为如果你正在使用Finder应用程序,这可以替代使用'code .'命令。

以下是步骤:

Open Automator App from Application (or you can use Spotlight). Click on the New Document button to create a new script. Choose 'Service' as a new type of document. Select 'files and folders' in 'Service receives selected' dropdown. Search for 'Open Finder Items' action item. Drag that action item to the workflow area. Select the 'Visual Studio Code.app' application in the action 'Open with' dropdown. Press Command + S to save the service. It will ask a name of service. Give it a name. I gave 'Open with Visual Studio Code'. Close the Automator app. Check the image below for more information.

验证:

打开Finder应用程序。 右键单击任何文件夹。 在上下文菜单中,寻找“使用Visual Studio Code打开”菜单选项。 点击“用Visual Studio Code打开”菜单选项。 该文件夹应该在Visual Studio Code应用程序中打开。查看下面的图片了解更多信息。

我也有同样的问题。我必须将Visual Studio Code添加到我的应用程序文件夹中。它不需要编辑文件就能工作。

打开应用程序文件夹 在搜索中搜索Visual Studio Code 将Visual Studio Code拖到Applications文件夹

这对你很有用。

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

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

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

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

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