在 Visual Studio Code 的 Docs 中是写了怎么设置命令行运行Code的:
code () {
if [[ $# = 0 ]]
then
open -a "Visual Studio Code"
else
[[ $1 = /* ]] && F="$1" || F="$PWD/${1#./}"
open -a "Visual Studio Code" --args "$F"
fi
}
但它写错应该修改的文件,在MAC中应该修改 ~/.bash_profile
文件。
修改之后还要运行一下 source ~/.bash_profile
但是,你如果还安装了 Oh My Zsh 的话,你应该修改 ~/.zshrc
文件!
好了,愉快的使用命令 code filename
吧!微软果然是最光怀程序猿的公司,没有之一。