Reputation: 222601
In my PhpStorm project, I have a few files that sit in the root folder and are not modified often.
For example here I rarely touch files like favicon, gruntfile, humans, package, robots, gitignore
. So out of all 9 files I only need 3. I can not remove them (they still needed for the project) and they distract my attention.
So I am looking for a way to hide/exclude them. I was able to find similar approach with folders, but it works only with folders. On official phpstorm page there is a page which sounds similar but does something completely different (files still stay in the few, you just can not autocomplete anything from them). Also this answer from SO is also dealing with code inspection, not hiding files.
Upvotes: 23
Views: 10549
Reputation: 773
For later versions of PhpStorm (I'm using PhpStorm 2022.1):
show excluded
Show Excluded Files
and press OK
Upvotes: 1
Reputation: 439
Or even easier: click on the gear icon in the project pane and untick "Show excluded files".
Upvotes: 26
Reputation: 165188
Settings | Scopes
Create new scope that would include only files/folders you want (or opposite: exclude all unwanted files/folders)
Use that scope in Project View panel instead of default "Project"
Upvotes: 63