是否有Bundle
(for gmarik/Vundle.vim
)或其他地方(网站、包、repo)我可以找到并安装RecurGrep
?
问问题
61 次
1 回答
3
我不相信有一个插件,相反,您只需将以下行添加到您的.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-> <-
这样您就不必每次使用映射的快捷方式时都键入它。
于 2014-02-21T12:49:16.317 回答