Search
Categories
Hours & Info
Bookmark
Daily Archives: May 29, 2019
HOW TO RUN VISUAL STUDIO CODE FROM ZSH ON MAC OSX
Adding the codefunction to .zshrc file: 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 … Continue reading