Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I toggle show/hide of hidden file in NetBeans 7.4?

Well, that is basically it:

How do I toggle show/hide of hidden file in NetBeans 7.4?

Every time I try to open a file in NetBeans 7.4 it shows all my hidden file and that is very annoying. I Googled it but could not find an answer until now.

Thanks for you help.

like image 945
Jeff Avatar asked Feb 04 '14 18:02

Jeff


1 Answers

Go to Preferences (macosx) > Miscellaneous > Files

In the textarea Ignored Files Patterns enter

^(CVS|SCCS|vssver.?\.scc|#.*#|%.*%|_svn)$|~$

By removing the the |^\.(?!(htaccess|gitignore)$).*$ from the default value you tell Netbeans not to remove any hidden files

like image 147
batigolix Avatar answered Sep 19 '22 10:09

batigolix