dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 7bd51884a971a9ce6c631c7164ba541c4ae67173
parent d30bbaffad5253b446efa48875b2069ba5636c31
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Fri, 22 Jul 2022 12:46:01 +0200

vim: remove Grep plugin, I don't use it

Diffstat:
Dvim/plugin/grep.vim | 15---------------
1 file changed, 0 insertions(+), 15 deletions(-)

diff --git a/vim/plugin/grep.vim b/vim/plugin/grep.vim @@ -1,15 +0,0 @@ -function! s:Grep(...) - return system(join(extend([&grepprg], a:000), ' ')) -endfunction - -command! -nargs=+ -complete=file_in_path -bar Grep cgetexpr <SID>Grep(<q-args>) -command! -nargs=+ -complete=file_in_path -bar LGrep lgetexpr <SID>Grep(<q-args>) - -cnoreabbrev <expr> grep (getcmdtype() ==# ':' && getcmdline() ==# 'grep') ? 'Grep' : 'grep' -cnoreabbrev <expr> lgrep (getcmdtype() ==# ':' && getcmdline() ==# 'lgrep') ? 'LGrep' : 'lgrep' - -augroup grep_aus - autocmd! - autocmd QuickFixCmdPost cgetexpr cwindow - autocmd QuickFixCmdPost lgetexpr lwindow -augroup END