Show .idea folder in PhpStorm project tool window

PhpStorm by default hides the .idea folder in the project tool window. However, I would like to show it to check files and add / edit the .idea / .gitignore file to include and exclude certain files from version control. I was looking for project configuration options to display the .idea folder, but could not find a way.

I could just use a different editor to manage the files in the .idea folder, but I would like to use the phpStorm git integration to manage these files.

+5
source share
1 answer

There is a special registry parameter for .idea for it (it is enabled by default for me, in PhpStorm, at least)

  • Help | Find Action... Help | Find Action... and find the registry (or through Maintenance Ctrl+Alt+Shift+/ on Windows using the default map)
  • Inside - find the projectView.hide.dot.idea entry
  • Adjust accordingly (before exiting the window - make sure that the new value is accepted correctly - for example, focus another record)

Took from

+6
source

Source: https://habr.com/ru/post/1233223/


All Articles