]> Sergey Matveev's repositories - dotfiles.git/blob - vim/.vim/plugin/ggrep.vim
Have not used zshfe for years
[dotfiles.git] / vim / .vim / plugin / ggrep.vim
1 if exists("*<SID>Vmg") | finish | endif
2
3 function! s:Vmg(pattern)
4     silent execute 'Ggrep "' . a:pattern . '"'
5     copen
6     redraw!
7 endfunction
8
9 command! -nargs=* -complete=file Vmg call s:Vmg(<q-args>)