是否有Bundle
(用于gmarik/Vundle.vim
)或其他地方(网站,软件包,存储库)可以找到并安装RecurGrep
?
我不相信有插件,相反,您只需要将以下行添加到.vimrc
文件中即可。我不确定它最初来自哪里对不起。
" simple recursive grep
command! -nargs=1 RecurGrep lvimgrep /<args>/gj ./**/*.* | lopen | set nowrap
command! -nargs=1 RecurGrepFast silent exec 'lgrep! <q-args> ./**/*.*' | lopen
nmap ,R :RecurGrep
nmap ,r :RecurGrepFast
nmap ,wR :RecurGrep <cword><CR>
:RecurGrep
后有一个空格::RecurGrep-> <-
这样您就不必每次使用映射的快捷方式时都键入它。