How to update file list using FuzzyFinder in Vim?

Using the FuzzyFinder plugin in Vim, how can I restore a list of files?

+5
source share
3 answers

Try the following:

 :ruby finder.rescan!

You can match this with something if you need to do it often.

+1
source

Fuzzy Finder has a team called: FufRenewCache

There was something similar in earlier versions of Fuzzy Finder, but I can't remember the command now.

Just try typing

: Fuf or: FuzzyFinder

And see what possible commands are shown in Vim.

+22
source

You can also disable caching by entering the following settings in .vimrc:

let g:fuf_help_cache_dir = ''
let g:fuf_tag_cache_dir = ''
let g:fuf_taggedfile_cache_dir = ''
0
source

All Articles