Laz
Laz

Reputation: 3538

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?

Upvotes: 5

Views: 2481

Answers (3)

Maciej Konieczny
Maciej Konieczny

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

Nathan Neff
Nathan Neff

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

thedz
thedz

Reputation: 5572

Try this:

 :ruby finder.rescan!

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

Upvotes: 1

Related Questions