文档中提到了一种叫做代码的可执行文件,但我不确定在哪里可以找到它,所以我可以把它放在我的路径上。我从VSCode网站下载的zip文件不包括任何这样的可执行文件。(我可以很好地运行.app。)

这是windows独有的功能吗?


当前回答

从Visual Studio代码设置页面:

Tip: If you want to run VS Code from the terminal by simply typing 'code', VS Code has a command, Shell Command: Install 'code' command in PATH, to add 'code' to your $PATH variable list. After installation, launch VS Code. Now open the Command Palette (F1 or ⇧+⌘+P on Mac) and type shell command to find the Shell Command: Install 'code' command in PATH command. After executing the command, restart the terminal for the new $PATH value to take effect. You'll be able to simply type 'code .' in any folder to start editing files in that folder.

其他回答

运行代码的步骤。命令启动VSCode应用程序-

打开VSCode 打开命令托盘(Cmd+Shift+P) 输入Shell命令:在PATH中安装'code'命令并选择 你会得到Shell命令'code'成功安装在PATH的通知。 重新启动终端并输入代码。 这将从其中的当前文件夹文件打开VSCode。

如果你想在你的终端上打开Visual Studio Code上的文件或文件夹,下面的iTerm等命令是你安装Visual Studio Code时默认使用的命令

从命令行打开Visual Studio Code

code --

打开整个文件夹/目录

code .

打开特定的文件

code file_name
eg:- code index.html

我发现了mingw32的一个巧妙的解决方法(即对于那些使用git-scm.com在windows上安装的bash版本的人来说):

code () { VSCODE_CWD="$PWD" cmd //c code $* ;}

我有一个~/bin/code shell脚本,它与@BengaminPasero写的命令相匹配。

#!/bin/bash
VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $*

我把~/bin:前缀到我的$PATH,这允许我在不污染~/的情况下添加一堆一次性脚本。bash_profile脚本。

对于Windows,您可以使用命令:

start Code filename.extension

上面这句话对我很适用。