0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.1.0289: cursor moves to wrong column after quickfix jump

Problem:    Cursor moves to wrong column after quickfix jump.
Solution:   Set the curswant flag. (Andy Massimino, closes #3331)
This commit is contained in:
Bram Moolenaar
2018-08-15 22:29:51 +02:00
parent 396659592f
commit 2dfcef4c08
3 changed files with 12 additions and 0 deletions

View File

@@ -3010,6 +3010,7 @@ qf_jump_goto_line(
++screen_col;
}
}
curwin->w_set_curswant = TRUE;
check_cursor();
}
else

View File

@@ -3546,3 +3546,12 @@ func Test_view_result_split()
call Xview_result_split_tests('c')
call Xview_result_split_tests('l')
endfunc
" Test that :cc sets curswant
func Test_curswant()
helpgrep quickfix
normal! llll
1cc
call assert_equal(getcurpos()[4], virtcol('.'))
cclose | helpclose
endfunc

View File

@@ -794,6 +794,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
289,
/**/
288,
/**/