有没有简单的方法来排除FuzzyFinder搜索的文件?

时间:2010-11-09 11:10:24

标签: vim fuzzyfinder

我正在使用FuzzyFinder,并想知道如何指示FuzzyFinder排除它搜索的文件。现在我修改了插件代码,但必须有一个更简单的方法。

我想排除.class文件在结果中弹出。关于如何指示FuzzyFinder跳过这些文件的任何提示/技巧?

3 个答案:

答案 0 :(得分:20)

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

使用:help fuf-options了解详情。

答案 1 :(得分:5)

在Benoit的帮助下:

"FuzzyFinder should ignore all files in .gitignore
let ignorefile = ".gitignore"
if filereadable(ignorefile)

  let ignore = '\v\~$'
  for line in readfile(ignorefile)
    let line = substitute(line, '\.', '\\.', 'g')
    let line = substitute(line, '\*', '.*', 'g')
    let ignore .= '|^' . line
  endfor

  let g:fuf_coveragefile_exclude = ignore
endif

在第八天,上帝被一声可怕的声音惊醒,他确实创造了一个脚本来找到他干扰的主题。于是发现了虫子,他就击杀了它们。它又一次很好。

答案 2 :(得分:1)

这是最自动的解决方案,可以在具有自己的lcd(本地当前目录)的不同窗口和选项卡中使用。

由于Vimrc没有设置排除变量 per-window或per-tab 的概念,因此每次运行FufFile或相关函数时都必须重置排除变量。

将其放入.vimrc

" FuzzyFinder
" -----------------------------------------------------------------------------
function! FufSetIgnore()

    let ignorefiles = [ $HOME . "/.gitignore", ".gitignore" ]
    let exclude_vcs = '\.(hg|git|bzr|svn|cvs)'
    let ignore = '\v\~$'

    for ignorefile in ignorefiles

        if filereadable(ignorefile)
            for line in readfile(ignorefile)
                if match(line, '^\s*$') == -1 && match(line, '^#') == -1
                    let line = substitute(line, '^/', '', '')
                    let line = substitute(line, '\.', '\\.', 'g')
                    let line = substitute(line, '\*', '.*', 'g')
                    let ignore .= '|^' . line
                endif
            endfor
        endif

        let ignore .= '|^' . exclude_vcs
        let g:fuf_coveragefile_exclude = ignore
        let g:fuf_file_exclude = ignore
        let g:fuf_dir_exclude = ignore

    endfor
endfunction

# Bonus: My custom key mappings for FuzzyFinder
# Calls the function to set the exclude variables, then runs FuzzyFinder
nn <Tab>   :call FufSetIgnore() <BAR> :FufFile<CR>
nn <S-Tab> :call FufSetIgnore() <BAR> :FufFile **/<CR>
nn <F3>    :call FufSetIgnore() <BAR> :FufFile **/<CR>