Remove debug

This commit is contained in:
Tim Pope 2019-08-13 17:20:51 -04:00
parent 16bfd4fa92
commit f33a53bceb

View File

@ -4852,7 +4852,6 @@ function! s:BlameCommit(cmd, ...) abort
while search('^@@ \|^diff ') && getline('.') =~# '^@@ ' while search('^@@ \|^diff ') && getline('.') =~# '^@@ '
let top = +matchstr(getline('.'),' ' . sigil .'\zs\d\+') let top = +matchstr(getline('.'),' ' . sigil .'\zs\d\+')
let len = +matchstr(getline('.'),' ' . sigil . '\d\+,\zs\d\+') let len = +matchstr(getline('.'),' ' . sigil . '\d\+,\zs\d\+')
echo [sigil, top, len]
if lnum >= top && lnum <= top + len if lnum >= top && lnum <= top + len
let offset = lnum - top let offset = lnum - top
if &scrolloff if &scrolloff