diff options
| author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-01-01 13:03:06 -0500 |
|---|---|---|
| committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-01-01 13:11:54 -0500 |
| commit | abaabd1d03fd723630f6addeadee9928faa4cdde (patch) | |
| tree | 71eefad0cab65912368f88de4170363a0ba24b09 /src/nvim/testdir/test_python3.vim | |
| parent | 5f0d5ec9852cf82c9b865ac2d3cf7f6e131adf4a (diff) | |
| download | rneovim-abaabd1d03fd723630f6addeadee9928faa4cdde.tar.gz rneovim-abaabd1d03fd723630f6addeadee9928faa4cdde.tar.bz2 rneovim-abaabd1d03fd723630f6addeadee9928faa4cdde.zip | |
vim-patch:8.2.0074: Python 3 unicode test someitmes fails
Problem: Python 3 unicode test someitmes fails.
Solution: Make 'termencoding' empty. Correct number of error message.
https://github.com/vim/vim/commit/4b7cdca23035eacf6cd0e30b90546cf32f7efe9e
Diffstat (limited to 'src/nvim/testdir/test_python3.vim')
| -rw-r--r-- | src/nvim/testdir/test_python3.vim | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_python3.vim b/src/nvim/testdir/test_python3.vim index edd24c7be5..9ffca12706 100644 --- a/src/nvim/testdir/test_python3.vim +++ b/src/nvim/testdir/test_python3.vim @@ -174,13 +174,20 @@ func Test_Catch_Exception_Message() endfunc func Test_unicode() - throw 'skipped: Nvim only supports "utf-8" for "encoding" option' + throw 'skipped: Nvim does not support "termencoding" option and only supports "utf-8" for "encoding" option' " this crashed Vim once + let save_tenc = &tenc + set tenc= + set encoding=utf32 py3 print('hello') + set encoding=debug py3 print('hello') + set encoding=euc-tw py3 print('hello') + set encoding=utf8 + let &tenc = save_tenc endfunc |