Short circuit when jumping too far in blame history
References https://github.com/tpope/vim-fugitive/issues/607
This commit is contained in:
parent
b7b23001de
commit
073f3a37b9
@ -2070,15 +2070,17 @@ function! s:BlameJump(suffix) abort
|
|||||||
if winnr > 0
|
if winnr > 0
|
||||||
exe bufnr.'bdelete'
|
exe bufnr.'bdelete'
|
||||||
endif
|
endif
|
||||||
execute 'Gblame '.args
|
if exists(':Gblame')
|
||||||
execute lnum
|
execute 'Gblame '.args
|
||||||
let delta = line('.') - line('w0') - offset
|
execute lnum
|
||||||
if delta > 0
|
let delta = line('.') - line('w0') - offset
|
||||||
execute 'normal! '.delta."\<C-E>"
|
if delta > 0
|
||||||
elseif delta < 0
|
execute 'normal! '.delta."\<C-E>"
|
||||||
execute 'normal! '.(-delta)."\<C-Y>"
|
elseif delta < 0
|
||||||
|
execute 'normal! '.(-delta)."\<C-Y>"
|
||||||
|
endif
|
||||||
|
syncbind
|
||||||
endif
|
endif
|
||||||
syncbind
|
|
||||||
return ''
|
return ''
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user