命令代码。这本手册里没有。
之前的所有步骤都奏效了。如何在OS X终端中调用Visual Studio代码?
pwd
/Users/mona/nodejs/myExpressApp
code .
-bash: code:命令不存在
我最终通过改变工作空间从Visual Code Studio中打开它,但是为什么命令代码不会。部分工作?
命令代码。这本手册里没有。
之前的所有步骤都奏效了。如何在OS X终端中调用Visual Studio代码?
pwd
/Users/mona/nodejs/myExpressApp
code .
-bash: code:命令不存在
我最终通过改变工作空间从Visual Code Studio中打开它,但是为什么命令代码不会。部分工作?
当前回答
1. 确保将Visual Studio Code应用程序拖到Applications文件夹中
否则(如评论中所述),您将不得不在重新启动后再次执行此过程。
2. 接下来,打开Visual Studio Code
通过⌘P打开命令面板,输入shell命令,找到shell命令:
在“在PATH中安装代码”命令之前,请先使用PATH命令中的卸载代码命令。
执行该命令后,重新启动终端以获取新的$PATH 值生效。你可以简单地在任何 文件夹中开始编辑该文件夹中的文件。“。”简单地说就是“当前目录”
(来源:Visual Studio Code文档)
注意:如果您正在运行基于OSS存储库的构建,则需要运行code-oss。(泽姆萨斯·兹维尔布利斯的评论)
其他回答
如果你在使用命令面板解决方案时遇到问题,你可以在终端启动时手动将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
这很简单。在你的终端机上打这个。你可以使用第一个或第二个命令:
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
我使用了最新的命令,它对我有用。
如果你在Windows上,也面临同样的问题,可以看看Inazense的答案,Visual Studio Code -“Shell Command: Install ' Code ' Command in PATH Command .”。
在Visual Studio代码中,我无法找到“Shell命令:在PATH命令中安装' Code '命令”。所以我不得不手动操作。
打开环境变量(系统→高级系统设置→高级选项卡→环境变量)。在系统变量中,单击Path,然后单击Edit,添加一个名为:
“C:用户/用户名/应用程序/微软/代码/ bin”
现在你完成了!重新启动命令提示符,然后重试。
以下步骤:
打开Visual Studio Code应用程序,键入Command + Shift + P并键入命令 安装代码。然后进入。 您将在Visual Studio Application中看到以下消息:shell命令' 代码成功安装在PATH中。 现在,跳转到iTerm CLI并键入代码。 然后,您将能够重定向到Visual Studio Code进行任何代码更改/视图。
命令行解决方案的替代方案:
最近我在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应用程序中打开。查看下面的图片了解更多信息。