Search code examples
vimfuzzyfinder

Is there an easy way to exclude files for which FuzzyFinder searches?


I am using FuzzyFinder and was wondering how I could instruct FuzzyFinder to exclude files it searches for. For now I have modified the plugin code but there must be a more easy way.

I want to exclude .class files from popping up in the result. Any hints/tips on how can I instruct FuzzyFinder to skip these files?


Solution

  • let g:fuf_file_exclude = '\v\~$|\.o$|\.exe$|\.bak$|\.swp$|\.class$'
    

    Use :help fuf-options for more details.