PhpStorm hides directories in Project window
removing the .idea folder, and restarting the app did the trick for me
removing the .idea folder, and restarting the app did the trick for me
Navigate (View in older versions) | Select In… | Project View. It’s also possible to enable Autoscroll from source option in the Project View settings.
Go to Settings -> Version Control and remove the folder from which you would like to remove version control tracking (coloring tabs etc.) It will naturally not remove version control from your project (as in deleting the .git/ folder for instance).
Try to right click on project main folder in phpStorm and select Local history / Show History in context menu (not vcs / local history). The file should be at the list as “Deleting”.
LazyOne already pointed out where you can change this. Keep in mind that you have to hit the “Save As…” button next to the colour scheme first in order to create a new colour theme – you cannot change anything unless you create a copy. PHPStorm protip – if you can’t find the settings, just … Read more
A bit of general info on parameter names hints can be found in this official introduction blog post: https://blog.jetbrains.com/phpstorm/2017/03/new-in-phpstorm-2017-1-parameter-hints/ Now back to the actual question: NOTE: It’s all working since 2017.1 version Either right click on such parameter and choose appropriate action from the menu or go via Settings/Preferences directly: Settings/Preferences | Editor | Appearance … Read more
I assume you are talking about indents (leading spaces). If so: Edit | Convert Indents | To Spaces Edit | Convert Indents | To Tabs For this you need to open such file and select text you want to process. Alternatively: you can process a bunch of files at once via “Code | Reformat Code…” … Read more
In IntelliJ (the Java IDE) or PhpStorm (the PHP IDE) it is called Live Templates. Go to Settings and start typing “live templates” in the search box. On the right panel you can edit and create such templates. So in your case, you simply type “con” in the abbreviation text box and “console.log();” in the … Read more
Edit – As noted in the comments, in more recent versions this is now found at Settings > Editor > General > Appearance > Uncheck “Show hard wrap and visual guides” It’s called the ‘right margin’, and it indicates the width of your code, so that if you are trying to comply with a coding … Read more
There is such a command exists already but it does not have a shortcut. I always assign Ctrl+Shift+T for it too. Press Ctrl+Alt+S to go to settings and search for reopen clo…and assign a new shortcut to the command under Keymapsection. Additionally this may come in handy too. To open a recently opened file, choose … Read more