Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PyCharm hide files by pattern

Tags:

pycharm

In PyCharm project view, how can I hide files by pattern? E.g. hide *.sqlite or all hidden (.*) files?

I've looked at many settings and tried searching, but no luck.

like image 893
Mark Avatar asked May 07 '14 11:05

Mark


People also ask

Can you hide files in github?

Just mark your repository as private by going to your repository's Settings -> Danger Zone -> Change repository visibility.


1 Answers

Settings/Preferences | Editor | File Types --> Ignore files and folders

This will permanently hide all of such files. Since this is an IDE-wide setting, it will affect ALL projects and such files will be excluded from the project.


Alternatively -- use Settings/Preferences | Appearance & Behavior | Scopes and define custom scope with desired files only (or exclude all unwanted). This is per-project setting and you can define as many scopes as you want.

Once done -- you can switch to that scope in Project View panel (choose desired scope instead of default "Project").

like image 55
LazyOne Avatar answered Sep 29 '22 15:09

LazyOne