diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2018-01-16 00:08:31 +0100 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2018-01-16 00:13:22 +0100 |
| commit | b558f750bfc4718cbeb4a89d5f68ef11566e126d (patch) | |
| tree | e0e59fce3777a0837a14d2ec10221d6e72d5d8fa /src/nvim/testdir | |
| parent | 6020e8b69ea59131be6fffd1667815f8742729db (diff) | |
| download | rneovim-b558f750bfc4718cbeb4a89d5f68ef11566e126d.tar.gz rneovim-b558f750bfc4718cbeb4a89d5f68ef11566e126d.tar.bz2 rneovim-b558f750bfc4718cbeb4a89d5f68ef11566e126d.zip | |
vim-patch:8.0.1419: cursor column is not updated after ]s
Problem: Cursor column is not updated after ]s. (Gary Johnson)
Solution: Set the curswant flag.
https://github.com/vim/vim/commit/b73fa629d6d3d705c1f8e8d5f8109fc9abd7bb6f
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_spell.vim | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_spell.vim b/src/nvim/testdir/test_spell.vim index 8165128fa3..21f2363731 100644 --- a/src/nvim/testdir/test_spell.vim +++ b/src/nvim/testdir/test_spell.vim @@ -28,6 +28,37 @@ func Test_wrap_search() set nospell endfunc +func Test_curswant() + new + call setline(1, ['Another plong line', 'abcdefghijklmnopq']) + set spell wrapscan + normal 0]s + call assert_equal('plong', expand('<cword>')) + normal j + call assert_equal(9, getcurpos()[2]) + normal 0[s + call assert_equal('plong', expand('<cword>')) + normal j + call assert_equal(9, getcurpos()[2]) + + normal 0]S + call assert_equal('plong', expand('<cword>')) + normal j + call assert_equal(9, getcurpos()[2]) + normal 0[S + call assert_equal('plong', expand('<cword>')) + normal j + call assert_equal(9, getcurpos()[2]) + + normal 1G0 + call assert_equal('plong', spellbadword()[0]) + normal j + call assert_equal(9, getcurpos()[2]) + + bwipe! + set nospell +endfunc + func Test_z_equal_on_invalid_utf8_word() split set spell |