The method of hiding files that you donβt want to show in Tree View (which is what most people have in mind when they ask this question) depends on whether you added the files to your .gitignore . If you have, then all you need to do is:
- Open Settings
- Scroll to the left to find the
Tree View package. - Click on it to open the settings for a specific package.
- Make sure
Hide Vcs Ignored Files
If you want to hide certain files in the tree, regardless of whether the Git project is open:
- Open Settings
- Add the file mask to the comma-separated list in
Ignored Names (add *.pyc in your case) - Scroll to the left to find the
Tree View package. - Click on it to open the settings for a specific package.
- Make sure
Hide Ignored Names checked
Also note that when you add a file mask to the Ignored Names list, files matching that mask will not be displayed in other parts of Atom, such as fuzzy-finder:find-file ( Cmd + T on OS X and Ctrl + T on Windows / Linux by default).
Lee Jul 14 '14 at 2:41 2014-07-14 02:41
source share