motiejus/dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone https://git.jakstys.lt/motiejus/dotfiles.git
Log | Tree | Refs | README | LICENSE

commit 859f7eaa709401b384c36d2e6c2ee2e3043dd7a1 (tree)
parent b72bb7b289372c71fc526426ddc64f0ac4cdd349
Author: guns <self@sungpae.com>
Date:   Sat,  7 Apr 2012 17:16:54 -0500

Fix naked function call

Diffstat:
Mplugin/fugitive.vim | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugin/fugitive.vim b/plugin/fugitive.vim @@ -966,7 +966,7 @@ function! s:Grep(cmd,bang,arg) abort if a:cmd =~# '^l' call setloclist(0, list, 'r') else - setqflist(list, 'r') + call setqflist(list, 'r') endif if !a:bang && !empty(list) return (a:cmd =~# '^l' ? 'l' : 'c').'first'.matchstr(a:arg,'\v\C[''" ]\zs\|.*')