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 e0fa72363a8b28f1a88fce1b5675e2e1657ffa0b (tree)
parent a22adef4e066d938c3e154f4fd80b949364c2cc8
Author: Tim Pope <code@tpope.net>
Date:   Sun, 13 May 2018 01:17:08 -0400

Fix missing bang on function

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

diff --git a/plugin/fugitive.vim b/plugin/fugitive.vim @@ -308,7 +308,7 @@ function! fugitive#repo(...) abort return call('s:repo', a:000) endfunction -function fugitive#Repo(...) abort +function! fugitive#Repo(...) abort return call('s:repo', a:000) endfunction