directory - How to change PHPStorm 8 default new project location? -
when create new project, must edit current project location each time, because our global projects on:
~/sites/
however, phpstorm sets default as:
~/phpstormprojects/
how can change default location mine?
there no gui that.
phpstorm should remember last used folder (when created new project) , use default next 1 (does me; although i'm using same path since v1 .. maybe broken since then).
if not , if have brave heart .. can edit config file directly :)
phpstorm v8 , earlier:
- close ide
- open file in text editor:
c:\users\username\.webide80\config\options\ide.general.xml
(path phpstorm v8 on windows 7; other os/versions please see link: https://intellij-support.jetbrains.com/entries/23358108-directories-used-by-the-ide-to-store-settings-caches-plugins-and-logs ) - file short -- find
<option name="lastprojectlocation"
node , editvalue
attribute -- put desired path there - save changes, launch ide , see if worked you.
phpstorm v9 , newer: such setting located in recentprojectdirectories.xml
file -- <option name="lastprojectlocation" value="last_path_here" />
entry.
there ticket asking gui setting this: https://youtrack.jetbrains.com/issue/wi-8839 -- watch (star/vote/comment) notified on progress.
for default folder "open folder" kind of dialogs -- follow idea-84622 ticket.
Comments
Post a Comment