]> Sergey Matveev's repositories - dotfiles.git/blobdiff - vim/.vim/plugin/grep.vim
gopls is too verbose
[dotfiles.git] / vim / .vim / plugin / grep.vim
index f7a5f126d6e75f8eeadd34aabe30a9f2040af1ce..140f8fcf89578b58521fc83a23bdbbee0b74059d 100644 (file)
@@ -1,11 +1,10 @@
-if exists('*<SID>Vim') | finish | endif
+if exists("*<SID>Vim") | finish | endif
 
 function! s:Vim(pattern)
     set grepprg=grep\ -Rns\ --binary-files=without-match\ --exclude-dir=.git\ --exclude-dir=.tags\ $*\ /dev/null\ .
     execute "silent grep \"" . a:pattern . "\""
     copen
     redraw!
-    let g:pylint_disable=1
 endfunction
 
 command! -nargs=* -complete=file Vim call s:Vim(<q-args>)