Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hiding specific files in TextMate

I do a lot of JRuby on Rails apps, and we have a fair amount of Java .jar dependencies. These become quite annoying in textmate as it really muddies up my lib directory, and I never (obviously) need to actually open these files.

Can someone tell me how I might hide .jar files from my file listing in Textmate??

like image 595
brad Avatar asked Dec 21 '25 07:12

brad


1 Answers

You need to modify File Pattern regex in :

TextMate-->Preferences-->Advanced-->FolderReferences

You just have to add |\.(jar) to your regex:

!(/\.(?!htaccess)[^/]*|\.(tmproj|o|pyc)|\.(jar)|/Icon\r|/svn-commit(\.[2-9])?\.tmp)$

Have a look at this.

like image 53
systempuntoout Avatar answered Dec 23 '25 23:12

systempuntoout