summaryrefslogtreecommitdiff
path: root/src/testdir/test_quickfix.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-08-15 22:29:51 +0200
committerBram Moolenaar <Bram@vim.org>2018-08-15 22:29:51 +0200
commit2dfcef4c08a3371e2126504bea00b274f937a840 (patch)
treea3f448a1848f8645e234f6665369d00170bd2a79 /src/testdir/test_quickfix.vim
parent396659592fe039decc8c088694912067fe32a681 (diff)
downloadvim-git-2dfcef4c08a3371e2126504bea00b274f937a840.tar.gz
patch 8.1.0289: cursor moves to wrong column after quickfix jumpv8.1.0289
Problem: Cursor moves to wrong column after quickfix jump. Solution: Set the curswant flag. (Andy Massimino, closes #3331)
Diffstat (limited to 'src/testdir/test_quickfix.vim')
-rw-r--r--src/testdir/test_quickfix.vim9
1 files changed, 9 insertions, 0 deletions
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