views:

435

answers:

2

Using the FuzzyFinder plugin in Vim, how does one regenerate the file list displayed?

+4  A: 

Try this:

 :ruby finder.rescan!

You can map that to something if you need to do it often.

thedz
You can map to F12 key with: :map <special> <F12> :ruby finder.rescan!<ENTER>
Dema
+1  A: 

Fuzzy Finder has a command called :FufRenewCache

Earlier versions of Fuzzy Finder had something similar, but I can't remember the command now.

Just try typing

:Fuf or :FuzzyFinder

And see what possible commands are shown in Vim.

Nathan Neff