打开 VSCode
打开控制面板(
⇧⌘P
), 输入shell command
, 在提示里看到Shell Command: Install 'code' command in PATH
, 运行它就可以了。或者手动把下面的配置添加在
.bash_profile
文件里:1
2
3
4cat << EOF >> ~/.bash_profile
# Add Visual Studio Code (code)
export PATH="\$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
EOF之后就可以在终端中输入
code .
使用VS Code
打开当前文件夹。 或者直接使用code filename
编辑文件。