]> Sergey Matveev's repositories - dotfiles.git/blob - vim/.vim/plugin/ggrep.vim
g:loaded_* stopper
[dotfiles.git] / vim / .vim / plugin / ggrep.vim
1 if exists("g:loaded_mein_ggrep") | finish | endif
2 let g:loaded_mein_ggrep = 1
3
4 function! s:Vmg(pattern)
5     silent execute 'Ggrep "' . a:pattern . '"'
6     copen
7     redraw!
8     let g:pylint_disable=1
9 endfunction
10
11 command! -nargs=* -complete=file Vmg call s:Vmg(<q-args>)