From: Bram Moolenaar Date: Wed, 15 Aug 2018 20:29:51 +0000 (+0200) Subject: patch 8.1.0289: cursor moves to wrong column after quickfix jump X-Git-Tag: v8.1.0289 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2dfcef4c08a3371e2126504bea00b274f937a840;p=vim 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) --- diff --git a/src/quickfix.c b/src/quickfix.c index 8cfec6c70..78df7081f 100644 --- a/src/quickfix.c +++ b/src/quickfix.c @@ -3010,6 +3010,7 @@ qf_jump_goto_line( ++screen_col; } } + curwin->w_set_curswant = TRUE; check_cursor(); } else diff --git a/src/testdir/test_quickfix.vim b/src/testdir/test_quickfix.vim index ce19e74d3..8a175a185 100644 --- a/src/testdir/test_quickfix.vim +++ b/src/testdir/test_quickfix.vim @@ -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 diff --git a/src/version.c b/src/version.c index 82b702206..66e79d88c 100644 --- a/src/version.c +++ b/src/version.c @@ -794,6 +794,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 289, /**/ 288, /**/