Skip to content

Instantly share code, notes, and snippets.

@ckomop0x
Last active November 6, 2019 08:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ckomop0x/7ad5205596f417554cb1632066470bec to your computer and use it in GitHub Desktop.
Save ckomop0x/7ad5205596f417554cb1632066470bec to your computer and use it in GitHub Desktop.
Zsh run vscode from console on mac
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
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment