21

I've deleted .* from Ignored Names. All the . files are now showing in the sidebar (except for the .env file).

Why is only this one file hidden? How can I make it visible?

Promise Preston
  • 24,334
  • 12
  • 145
  • 143
GN.
  • 8,672
  • 10
  • 61
  • 126

5 Answers5

63

If you look in the settings for the "tree-view" package, it has an option to hide files that are present in the current project's .gitignore file. You may have that option set, and have .env in the current .gitignore.

Preferences > Settings > Packages > search for "tree-view" > click "Settings" button:

enter image description here

Harry Moreno
  • 10,231
  • 7
  • 64
  • 116
Dan Lowe
  • 51,713
  • 20
  • 123
  • 112
7

If you are using Atom Nuclide you can find and uncheck the "Exclude VCS Ignored Paths" option in the Settings > Core:

enter image description here

Grzegorz Pawlik
  • 2,198
  • 1
  • 18
  • 18
2
  1. Click in the tree-view pane.
  2. Press i to toggle hidden files and directories.
jacob
  • 828
  • 8
  • 13
1

It's in nuclide-package -> settings -> NUclide-file-tree and toggle:

  • Hide Ignored Names
  • Hide VCS Ignored Paths
TheoJohn
  • 11
  • 2
0

If you are comfortable, check below.. I did the same thing.

Atom-> Config add the following lines at the bottom "tree-view": hideIgnoredNames: false hideVcsIgnoredFiles: false

Ritz
  • 11
  • 4