mirror of
https://github.com/tpope/vim-fugitive.git
synced 2025-12-08 04:54:52 +08:00
Syntax fix
This commit is contained in:
@@ -1527,9 +1527,9 @@ function! s:BlameJump(suffix) abort
|
|||||||
execute lnum
|
execute lnum
|
||||||
let delta = line('.') - line('w0') - offset
|
let delta = line('.') - line('w0') - offset
|
||||||
if delta > 0
|
if delta > 0
|
||||||
execute 'norm! 'delta."\<C-E>"
|
execute 'normal! '.delta."\<C-E>"
|
||||||
elseif delta < 0
|
elseif delta < 0
|
||||||
execute 'norm! '(-delta)."\<C-Y>"
|
execute 'normal! '.(-delta)."\<C-Y>"
|
||||||
endif
|
endif
|
||||||
syncbind
|
syncbind
|
||||||
return ''
|
return ''
|
||||||
|
|||||||
Reference in New Issue
Block a user