I\'d like to run / open Visual Studio Code from the Mac OSX Terminal by running this command code .. I found instructions here:
code .
https://code.visualstud
add below snipped in your bash profile -
PATH="/Library/Frameworks/Python.framework/Versions/3.6/bin:${PATH}" code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;}