diff options
| author | Daniel Hahler <git@thequod.de> | 2019-08-22 06:37:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-22 06:37:05 +0200 |
| commit | bb50eadc84a4d095b1739ad31720fafe7bca6d0f (patch) | |
| tree | 998c55e4dd1ca3da0bc5acc2f72996f9470f2d73 /src/nvim/testdir/test_cmdline.vim | |
| parent | 42f492ac99058bd1cd56c3c7871e7e464b2a5e24 (diff) | |
| parent | 86d88076ceeef20301b06fd69a8f98c73cffe9c6 (diff) | |
| download | rneovim-bb50eadc84a4d095b1739ad31720fafe7bca6d0f.tar.gz rneovim-bb50eadc84a4d095b1739ad31720fafe7bca6d0f.tar.bz2 rneovim-bb50eadc84a4d095b1739ad31720fafe7bca6d0f.zip | |
Merge pull request #10815 from blueyed/vim-8.1.1483
vim-patch:8.1.1483: skipped tests are not properly listed
Diffstat (limited to 'src/nvim/testdir/test_cmdline.vim')
| -rw-r--r-- | src/nvim/testdir/test_cmdline.vim | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/nvim/testdir/test_cmdline.vim b/src/nvim/testdir/test_cmdline.vim index 4b333e444a..b8b018d5f7 100644 --- a/src/nvim/testdir/test_cmdline.vim +++ b/src/nvim/testdir/test_cmdline.vim @@ -568,7 +568,8 @@ func Test_setcmdpos() endfunc func Test_cmdline_overstrike() - let encodings = has('multi_byte') ? [ 'utf8' ] : [ 'latin1' ] + " Nvim: only utf8 is supported. + let encodings = ['utf8'] let encoding_save = &encoding for e in encodings @@ -587,11 +588,9 @@ func Test_cmdline_overstrike() call assert_equal('"ab0cd3ef4', @:) endfor - if has('multi_byte') - " Test overstrike with multi-byte characters. - call feedkeys(":\"テキストエディタ\<home>\<right>\<right>ab\<right>\<insert>cd\<enter>", 'xt') - call assert_equal('"テabキcdエディタ', @:) - endif + " Test overstrike with multi-byte characters. + call feedkeys(":\"テキストエディタ\<home>\<right>\<right>ab\<right>\<insert>cd\<enter>", 'xt') + call assert_equal('"テabキcdエディタ', @:) let &encoding = encoding_save endfunc |