mac下vscode 命令行打开文件夹

设置用户环境变量

mac linux 会在用户目录下也就是 ~ 这个目录是用 ./bash_profile 管理环境变量。

vim ~/.bash_profile
export PATH=/Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin:$PATH
#保存退出
source ~/.bash_profile
code . #当前目录就被打开了。

就是这么简单,另外如果项目很多就可以使用别名来打开指定的目录像这样:

vim ~/.bash_profile
export PATH=/Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin:$PATH
alias  web="code ~/work/web"
source ~/.bash_profile



作者:北方蜘蛛
链接:https://www.jianshu.com/p/fdf10fd927fd
來源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

你可能感兴趣的:(vscode)