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 34bfcd471b82679845ecbda47198c5033e2762bf (tree)
parent 1d2821f91e6adef440264260384b6117da39bd12
Author: Tim Pope <code@tpope.net>
Date:   Wed, 14 Aug 2019 09:37:10 -0400

Fix error generating command for :'<,'>Gblame

Closes https://github.com/tpope/vim-fugitive/issues/1308

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

diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim @@ -4774,7 +4774,7 @@ function! s:BlameSubcommand(line1, count, range, bang, mods, args) abort if len(ranges + commits + files) || raw let mods = s:Mods(a:mods) if a:count != 0 - exe 'silent keepalt' mods 'split' . s:fnameescape(temp) + exe 'silent keepalt' mods 'split' s:fnameescape(temp) elseif !&modified || a:bang || &bufhidden ==# 'hide' || (empty(&bufhidden) && &hidden) exe 'silent' mods 'edit' . (a:bang ? '! ' : ' ') . s:fnameescape(temp) else