diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-07-04 09:53:58 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-07-04 10:02:35 +0800 |
commit | 6b474d0237a1ec9b5b027e5d1fb738be38a57347 (patch) | |
tree | 749fe579f2987a6da072e912f2b08a06c1bc4761 | |
parent | a4215a0a21d1812e1d198c0546942302f7ad4126 (diff) | |
download | rneovim-6b474d0237a1ec9b5b027e5d1fb738be38a57347.tar.gz rneovim-6b474d0237a1ec9b5b027e5d1fb738be38a57347.tar.bz2 rneovim-6b474d0237a1ec9b5b027e5d1fb738be38a57347.zip |
vim-patch:8.2.5074: spell test fails on MS-Windows
Problem: Spell test fails on MS-Windows.
Solution: Do not change 'encoding'
https://github.com/vim/vim/commit/ad73cc2ff2a8b5397ed20598757b702a4e686256
-rw-r--r-- | src/nvim/testdir/test_spell_utf8.vim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_spell_utf8.vim b/src/nvim/testdir/test_spell_utf8.vim index 7ee001c090..2fd176557d 100644 --- a/src/nvim/testdir/test_spell_utf8.vim +++ b/src/nvim/testdir/test_spell_utf8.vim @@ -817,9 +817,7 @@ func Test_check_empty_line() sil! norm P]svc norm P]s - " set 'encoding' to clear the wordt list - set enc=latin1 - set enc=utf-8 + " TODO: should we clear the word list? bwipe! endfunc |