comparison src/testdir/test_quickfix.vim @ 14552:b298737a7188 v8.1.0289

patch 8.1.0289: cursor moves to wrong column after quickfix jump commit https://github.com/vim/vim/commit/2dfcef4c08a3371e2126504bea00b274f937a840 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Aug 15 22:29:51 2018 +0200 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 https://github.com/vim/vim/issues/3331)
author Christian Brabandt <cb@256bit.org>
date Wed, 15 Aug 2018 22:30:05 +0200
parents 9df0fcbfebb2
children d1b69129db99
comparison
equal deleted inserted replaced
14551:715a3bb25ede 14552:b298737a7188
3544 3544
3545 func Test_view_result_split() 3545 func Test_view_result_split()
3546 call Xview_result_split_tests('c') 3546 call Xview_result_split_tests('c')
3547 call Xview_result_split_tests('l') 3547 call Xview_result_split_tests('l')
3548 endfunc 3548 endfunc
3549
3550 " Test that :cc sets curswant
3551 func Test_curswant()
3552 helpgrep quickfix
3553 normal! llll
3554 1cc
3555 call assert_equal(getcurpos()[4], virtcol('.'))
3556 cclose | helpclose
3557 endfunc