]> Sergey Matveev's repositories - dotfiles.git/blob - vim/.vim/plugin/grep.vim
Initial
[dotfiles.git] / vim / .vim / plugin / grep.vim
1 function! s:Vim(pattern)
2     let ignorecase_bak=&ignorecase
3     set noignorecase
4     execute "vimgrep /" . a:pattern . "/ **/*"
5     copen
6     let &ignorecase=ignorecase_bak
7     let g:pylint_disable=1
8 endfunction
9
10 command! -nargs=* -complete=file Vim call s:Vim(<q-args>)