Fix jumping to column
1 files changed, 1 insertions(+), 1 deletions(-) M plugin/harejump.vim
M plugin/harejump.vim => plugin/harejump.vim +1 -1
@@ 139,7 139,7 @@ function! s:SearchAndJumpInFile(pattern, flags, stopline = 0) if [line, column] == [0, 0] return 0 endif - execute 'normal '..line..'G'..column..'|' + execute 'normal! '..line..'G0'..column..'lh' return 1 endfunction