我想通过运行此命令从Mac OSX终端运行/打开Visual Studio代码code .
。我在这里找到说明:
https://code.visualstudio.com/Docs/setup
显然,我需要在.bashrc
文件中包括它,所以我这样做了,但无济于事。
code () {
if [[ $# = 0 ]]
then
open -a "Visual Studio Code"
else
[[ $1 = /* ]] && F="$1" || F="$PWD/${1#./}"
open -a "Visual Studio Code" --args "$F"
fi
}
我在.bashrc
这里编辑了文件:
~/.bashrc
指向 /Users/username/.bashrc
.bashrc
我应该编辑哪个?
OS X
你一般会添加到您的~/.bash_profile
-而不是~/.bashrc
再重新启动Terminal.app
或源像提及。
$ source ~/.bashrc
。我建议你到源.bashrc
的~/.bash_profile
。