http://www.vim.org/scripts/script.php?script_id=1984
You can launch FuzzyFinder by following commands: Command Mode ~
You can launch FuzzyFinder by following commands:
Command Mode ~
In addition to Kris' answer, you probably want to map the '**/' immediately in your .vimrc file like this:
map ,f :FufFile **/
So you just need to type :
,fTest
to find all matches of Test in all subdirectories!
HTH