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