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



是否有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-> <-这样您就不必每次使用映射的快捷方式时都键入它。

相关内容

  • 没有找到相关文章

最新更新