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_edit.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_edit.vim')
-rw-r--r-- | src/nvim/testdir/test_edit.vim | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/nvim/testdir/test_edit.vim b/src/nvim/testdir/test_edit.vim index 48376d7922..827c54e704 100644 --- a/src/nvim/testdir/test_edit.vim +++ b/src/nvim/testdir/test_edit.vim @@ -37,12 +37,10 @@ func! Test_edit_01() call assert_equal([''], getline(1,'$')) %d " 4) delete a multibyte character - if has("multi_byte") - call setline(1, "\u0401") - call feedkeys("i\<del>\<esc>", 'tnix') - call assert_equal([''], getline(1,'$')) - %d - endif + call setline(1, "\u0401") + call feedkeys("i\<del>\<esc>", 'tnix') + call assert_equal([''], getline(1,'$')) + %d " 5.1) delete linebreak with 'bs' option containing eol let _bs=&bs set bs=eol @@ -452,7 +450,7 @@ endfunc func! Test_edit_CTRL_() " disabled for Windows builds, why? - if !has("multi_byte") || !has("rightleft") || has("win32") + if !has("rightleft") || has("win32") return endif let _encoding=&encoding @@ -620,7 +618,7 @@ func! Test_edit_CTRL_K() endtry call delete('Xdictionary.txt') - if has("multi_byte") && !has("nvim") + if exists('*test_override') call test_override("char_avail", 1) set showcmd %d |