Is there a way to open a folder (a project) from terminal like in VS Code where you can
cd path/to/project
code ./
And VS Code opens up with that project (directory) ready
You must log in or # to comment.
I think I found the answer
Tools -> Create command line launcher
You’ll be asked to add
/Applications/WebStorm.app/Contents/MacOS
to your $PATHThen you can
cd /path/to/project webstorm .
Worked for me at least.
Credit goes to LazyOne on StackOverflow