X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=vim%2F.vim%2Fplugin%2Fggrep.vim;h=e2f43fbec8a7e28980424c413b9b9dff370c676e;hb=3822d495f8dbd849e34997694feb47cb0e190628;hp=8a9bd8a5b70db4d8247446d045cf6b150be78747;hpb=c87a6c5de579ab6ae0e5d27b233b83bab85e17f6;p=dotfiles.git diff --git a/vim/.vim/plugin/ggrep.vim b/vim/.vim/plugin/ggrep.vim index 8a9bd8a..e2f43fb 100644 --- a/vim/.vim/plugin/ggrep.vim +++ b/vim/.vim/plugin/ggrep.vim @@ -1,10 +1,9 @@ -if exists('*Vmg') | finish | endif +if exists("*Vmg") | finish | endif function! s:Vmg(pattern) silent execute 'Ggrep "' . a:pattern . '"' copen redraw! - let g:pylint_disable=1 endfunction command! -nargs=* -complete=file Vmg call s:Vmg()