我可以找到并安装Bundle
gmarik/Vundle.vim
(RecurGrep
)或其他地方(网站,套餐,回购邮件)吗?
答案 0 :(得分: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-> <-
,这样您每次使用映射的快捷方式时都不必输入它。