How to open VSCode from the command line interface
- Install
code
command
- open the command palette (Cmd + Shift + P)
- type and select
Shell Command: Install code in PATH
- Check in your CLI
# open VSCode
code
# open in current dir
code .
# open relative dir
code my-subdir
# open full path
code /Users/eka/abandoned-half-done-projects/my-project
In: Power user MOC