Are there plans to implement command-line launcher for windows?
Like the title stated. I've switched from using code to PHPStorm for a recent job I have started. So far, I am enjoying everything about the IDE except for the point that it does not currently support command line for Windows systems.
I mainly navigate through my pc using the terminal, so having to open php storm, navigating to the target folder and then open the directory via the GUI feels incredly slow to me. Especially since using VSC has this feature and so does PHPStorm for Linux and Mac
Please sign in to leave a comment.
There is a feature request for this option, https://youtrack.jetbrains.com/issue/IDEA-114307. If you like to start PhpStorm from command prompt, open cmd console, cd to
%PS_install_dir%/binand run either phpstorm64.exe or phpstorm.bat. If you like to start it from any directory, add%PS_install_dir%/binto your system %PATH%Working with PhpStorm Features from Command Line does not seem to mention it explicitly but I've just tried something like:
"C:\Program Files\JetBrains\PhpStorm 2018.2\bin\phpstorm64.exe" "D:\Projects\Foo"
... where "D:\Projects\Foo\.idea" exists and it seems to open the project just fine.