Reputation: 3538
Using the FuzzyFinder plugin in Vim, how does one regenerate the file list displayed?
Upvotes: 5
Views: 2481
Reputation: 285
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 = ''
Upvotes: 0
Reputation: 553
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.
Upvotes: 22
Reputation: 5572
Try this:
:ruby finder.rescan!
You can map that to something if you need to do it often.
Upvotes: 1