shell 中调用vs code打开当前目录

  • Post author:
  • Post category:其他


在shell配置文件中增加如下代码:

function code {
 if [[ $# = 0 ]]
 then
 open -a "Visual Studio Code"
 else
 local argPath="$1"
 [[ $1 = /* ]] && argPath="$1" || argPath="$PWD/${1#./}"
 open -a "Visual Studio Code" "$argPath"
 fi
}

shell 中输入

 code . 

即可可打开当前目录



版权声明:本文为qq_24861509原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。