I've started using Agent Ransack to search an entire directory at once looking for a particular string. The only issue I have with it so far is that if I'm searching in a Subversion working copy, it finds the string in the .svn folders, which of course is not what I want. Is there a way to tell it to ignore any directory named .svn as well as any subdirectories of a .svn directory?

link|improve this question
It already knows, by default, to avoid .git directories. Just kidding :) – Yar Jun 29 '10 at 0:58
feedback

2 Answers

It's not possible in the free version. Your best bet is to make sure you include the file extension and then it'll exclude the svn-base files, e.g.

*.cs;*.vb
link|improve this answer
feedback

You can do it, if you turn on the File Name match by Regular Expression in the Tab Options. Then use a expression like .*jsp$, this will exclude all SVN control files of the results.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.