5

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

Laz
  • 3,474
  • 9
  • 33
  • 46

3 Answers3

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
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