How to tell to TextMate ignore my Katz's Bundler folder in "Go to File"?

bundler, ruby-on-rails, textmate

Solution

I find solution:

In dialog "Preferences → Advanced → Folder References", "Folder Pattern" input:

Original pattern:

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

I change it to:

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

...to ignore vendor folder.

Or:

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

...to ignore vendor/bundler_gems only.

Problem

I use Katz's Bundler to manage gem dependencies. Who know, how to tell to TextMate ignore my "vendor/bundler_gems" folder in "Go to File"? Image demonstrate my little problem. You can see, what I want to find my application.sass, instead "Go to File" find lots of trash from bundler folder.

Original source