Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide hidden(dot) files in github atom editor

I am very new to Github Atom editor. It always shows hidden files such as .git, .sass in the side pane.

How to hide hidden files(dot files) in atom editor's side pane.

like image 219
Fizer Khan Avatar asked Mar 29 '14 05:03

Fizer Khan


People also ask

How do I hide a dot file?

Open Control Panel and select Appearance and Personalization. In Windows 11 and 10, select File Explorer Options and go to View. In Windows 8 and 7, select Folder Options and go to View. In the Hidden files and folders section, choose to show or hide hidden files, folders, and drives.

How do I show hidden files in atom?

Showing Hidden Files in AtomOpen Atom. Choose Settings > Core Settings. Uncheck Exclude VCS Ignored Paths.

Does Github Show hidden files?

Use the terminal to display the . git directory with the command ls -a . The ls command lists the current directory contents and by default will not show hidden files. If you pass it the -a flag, it will display hidden files.


2 Answers

Edit > Preferences > Packages

In the field below "Installed Packages" type: "Tree View". This package has a few settings you can toggle, "Hide Ignored Names" is what you're looking for.

It's a really buried setting, not sure why.

You can also add it to your config:

'tree-view':     'hideIgnoredNames': true 
like image 136
ccheney Avatar answered Sep 18 '22 06:09

ccheney


  1. From the menu bar go to Edit > Preferences > Packages type in the filter "tree-view" click on the "Settings" button of this package and then check the "Hide Ignored Names" choice.

  2. Now go to Edit > Preferences > Core . In the Ignored Names box enter .* this will hide all the files/folders which are usually hidden in other file explorers.

If you want to hide normal files/folders just add them to this box separated by a Comma , for example : .*, Videos, Music

like image 37
salim Avatar answered Sep 20 '22 06:09

salim