我在哪里可以找到vim中的RecurGrep命令?

时间:2014-02-21 12:31:13

标签: vim vim-plugin vundle

我可以找到并安装Bundle gmarik/Vundle.vimRecurGrep)或其他地方(网站,套餐,回购邮件)吗?

1 个答案:

答案 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-> <-,这样您每次使用映射的快捷方式时都不必输入它。