Using the FuzzyFinder plugin in Vim, how does one regenerate the file list displayed?
Asked
Active
Viewed 2,453 times
3 Answers
22
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
- 553
- 1
- 6
- 9
1
Try this:
:ruby finder.rescan!
You can map that to something if you need to do it often.

thedz
- 5,496
- 3
- 25
- 29
-
1You can map to F12 key with: :map
:ruby finder.rescan! -
3When I try this, I get "NameError: undefined local variable or method `finder' for main:Object". – Peeja Jan 18 '11 at 19:09
0
You can also disable caching by putting following settings in your .vimrc
:
let g:fuf_help_cache_dir = ''
let g:fuf_tag_cache_dir = ''
let g:fuf_taggedfile_cache_dir = ''

Maciej Konieczny
- 285
- 3
- 11