命令代码。这本手册里没有。
之前的所有步骤都奏效了。如何在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中打开它,但是为什么命令代码不会。部分工作?
当前回答
命令行解决方案的替代方案:
最近我在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应用程序中打开。查看下面的图片了解更多信息。
其他回答
如果你想永久添加:
将此添加到~/。Bash_profile或~/。如果您运行的是macOS v10.15 (Catalina)或更高版本。
export PATH="$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
来源:macOS上的Visual Studio Code
如果您正在使用Visual Studio Code Insiders构建:
code-insiders .
使用常规Visual Studio代码:
code .
对于macOS,搜索Visual Studio Code应用程序。例如,它在我的下载部分。
现在将其复制到Applications文件夹,然后运行以下命令。
打开终端,输入vi ~/.zshrc 在结尾添加这一行(如果不是空的)export PATH="$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin" 按Command + Q键(简言之,退出终端) 再次打开终端,进入Git代码文件夹
你现在都整理好了。
这对我来说很管用:
sudo ln -fs "/Applications/Visual Studio Code.app/Contents/Resources/app/bin/code" /usr/local/bin/
我也有同样的问题。我必须将Visual Studio Code添加到我的应用程序文件夹中。它不需要编辑文件就能工作。
打开应用程序文件夹 在搜索中搜索Visual Studio Code 将Visual Studio Code拖到Applications文件夹
这对你很有用。