Mercurial > vim
diff src/testdir/test_edit.vim @ 25856:1a5351f6803f v8.2.3462
patch 8.2.3462: ModeChanged only uses one character for new_mode and old_mode
Commit: https://github.com/vim/vim/commit/d85931e67316e824878000d0ead122553ccef3a4
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 2 16:55:39 2021 +0100
patch 8.2.3462: ModeChanged only uses one character for new_mode and old_mode
Problem: The ModeChanged event only uses one character for the new_mode and
old_mode values.
Solution: Pass one as first argument to mode(). (issue #8856)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 02 Oct 2021 18:00:05 +0200 |
parents | 16a7d1154be8 |
children | fc39d7352cb6 |
line wrap: on
line diff
--- a/src/testdir/test_edit.vim +++ b/src/testdir/test_edit.vim @@ -1918,7 +1918,7 @@ func Test_mode_changes() func! TestMode() call assert_equal(g:mode_seq[g:index], get(v:event, "old_mode")) call assert_equal(g:mode_seq[g:index + 1], get(v:event, "new_mode")) - call assert_equal(mode(), get(v:event, "new_mode")) + call assert_equal(mode(1), get(v:event, "new_mode")) let g:index += 1 endfunc @@ -1930,7 +1930,11 @@ func Test_mode_changes() au ModeChanged V:v :call DoIt() call feedkeys("Vv\<esc>", 'tnix') call assert_equal(4, g:count) + call assert_equal(len(g:mode_seq) - 1, g:index) + let g:index = 0 + let g:mode_seq = ['n', 'i', 'niI', 'i', 'n'] + call feedkeys("a\<C-O>l\<esc>", 'tnix') call assert_equal(len(g:mode_seq) - 1, g:index) au! ModeChanged