Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Show .idea folder in PhpStorm project tool window

Tags:

PhpStorm hides the .idea folder in the project tool window by default. However, I'd like to show it in order to inspect the files and add/edit a .idea/.gitignore file to include and exclude specific files from version control. I have searched for project configuration options in order to unhide the .idea folder, but haven't found a way.

I could just use another editor to manage the files in the .idea folder, but I'd like to use the git-integration of PhpStorm to manage these files.

like image 801
aimfeld Avatar asked Oct 08 '15 08:10

aimfeld


People also ask

Where can I find .idea files?

idea folder (hidden on OS X) in the solution root contains IntelliJ's project specific settings files. These include per-project details such as VCS mapping and run and debug configurations, as well as per-user details, such as currently open files, navigation history and currently selected configuration.

What is .idea folder in project?

The . idea directory contains a set of configuration files (. xml) for your project. These configuration files contain information core to the project itself, such as names and locations of its component modules, compiler settings, etc. If you've defined a data source the file dataSources.

Where is IntelliJ IDEA folder?

By default, IntelliJ IDEA stores user-specific files for each IDE instance (configuration, caches, plugins, logs, and so on) in the user's home directory.


1 Answers

For .idea there is dedicated registry setting for it as well (it is enabled by default for me, in PhpStorm at very least)

  1. Help | Find Action... and look for registry (or via Maintenance Ctrl+Alt+Shift+/ on Windows using Default keymap)
  2. Once inside -- look for projectView.hide.dot.idea entry
  3. Adjust accordingly (before leaving window -- ensure that new value is accepted properly -- e.g. focus another entry)

Took from

like image 127
Pavlo Zhukov Avatar answered Sep 18 '22 15:09

Pavlo Zhukov