zshを使っていてVSCodeのcodeコマンドを使用する方法
1228 ワード
環境
- Mac 10.13.6
- zsh
起きた問題
VSCodeのshell command installは出来るのになぜかターミナルから使用できなかった
解決方法
.zshrc
をviで開く
$ vi ~/.zshrc
以下を追記する
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
}
追記したら、以下を実行
$ source ~/.zshrc
以上でcode
コマンドでVisual Studio Codeをコマンドラインから起動出来るようになります。
Author And Source
この問題について(zshを使っていてVSCodeのcodeコマンドを使用する方法), 我々は、より多くの情報をここで見つけました https://qiita.com/sayama0402/items/453595d0d8f54b645753著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .