Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How Does One Refresh the File List Using FuzzyFinder in Vim?

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

like image 392
Laz Avatar asked Jul 25 '09 16:07

Laz


2 Answers

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.

like image 100
Nathan Neff Avatar answered Oct 15 '22 16:10

Nathan Neff


Try this:

 :ruby finder.rescan!

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

like image 32
thedz Avatar answered Oct 15 '22 16:10

thedz