Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Rob Sanheim http://www.robsanheim.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Exclude vendor/rails from Textmate projects

If you have a rails project you load up in textmate, and you have some version of Rails in vendor/rails, you probably know that doing a 'find in project' takes a lot longer because it scans all the rails source files. You also get a lot more crap to wade thru when doing a go-to type (command t). To exclude vendor rails, click on the project root in the drawer, click on the "i" icon, and change the folder pattern to this:

   1  
   2  !.*/(\.[^/]*|CVS|vendor/rails|_darcs|\{arch\}|blib|.*~\.nib|.*\.(framework|app|pbproj|pbxproj|xcode(proj)?|bundle))$$


Note the addition of "vendor/rails" to the regex. You can also add this to preferences -> advanced to make it the default for new text mate projects.
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS