commit ebc7ddac6d960619ee653622e87b9ebfa8c67a39 (tree)
parent 8bdbbf88a4a3b3a8cbbfaf81b625dbab51990416
Author: Tim Pope <code@tpope.net>
Date: Wed, 1 Sep 2021 18:36:37 -0400
Fix :Ggrep on Vim 7
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim
@@ -781,7 +781,7 @@ function! s:SystemList(cmd) abort
endwhile
return [lines, exit[0]]
else
- let [output, exec_error] = call('s:SystemError', s:shellesc(a:cmd))
+ let [output, exec_error] = s:SystemError(s:shellesc(a:cmd))
let lines = split(output, "\n", 1)
if empty(lines[-1])
call remove(lines, -1)