summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_spell.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-09-25 20:58:30 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-25 20:58:30 +0100
commitee09fcc9b6cf24e02899461809da9a5148208ea5 (patch)
treeda98cebee25cc4d625d0276b44fbac9190d31341 /src/testdir/test_spell.vim
parentb7e07dc1036b5b02870c72e872bbb248640ade7d (diff)
patch 9.0.0590: after exiting Insert mode spelling not checked in next linev9.0.0590
Problem: After exiting Insert mode spelling is not checked in the next line. Solution: When spelling is enabled redraw the next line after exiting Insert mode in case the spell highlight needs updating.
Diffstat (limited to 'src/testdir/test_spell.vim')
-rw-r--r--src/testdir/test_spell.vim4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/testdir/test_spell.vim b/src/testdir/test_spell.vim
index 3ea9afff12..90c6d53ced 100644
--- a/src/testdir/test_spell.vim
+++ b/src/testdir/test_spell.vim
@@ -983,6 +983,10 @@ func Test_spell_screendump_spellcap()
let buf = RunVimInTerminal('-S XtestSpellCap', {'rows': 8})
call VerifyScreenDump(buf, 'Test_spell_2', {})
+ " After adding word missing Cap in next line is updated
+ call term_sendkeys(buf, "3GANot\<Esc>")
+ call VerifyScreenDump(buf, 'Test_spell_3', {})
+
" clean up
call StopVimInTerminal(buf)
call delete('XtestSpellCap')