diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-02-01 10:43:14 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-01 10:43:14 +0800 |
| commit | 547497b042dccc10de0e144485d36952dbd1182e (patch) | |
| tree | 51e74fbd45dda0dc49ceb0b47b063d111c80cf4b /src/nvim/testdir/test_edit.vim | |
| parent | 5205bcc9049a171e90ebd01bbc0367f4ae2371d1 (diff) | |
| parent | bba5003bdb628764362d8c4869a1e1999584d716 (diff) | |
| download | rneovim-547497b042dccc10de0e144485d36952dbd1182e.tar.gz rneovim-547497b042dccc10de0e144485d36952dbd1182e.tar.bz2 rneovim-547497b042dccc10de0e144485d36952dbd1182e.zip | |
Merge pull request #17261 from zeertzjq/vim-8.2.4273
vim-patch:8.2.4273: the EBCDIC support is outdated
Diffstat (limited to 'src/nvim/testdir/test_edit.vim')
| -rw-r--r-- | src/nvim/testdir/test_edit.vim | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/nvim/testdir/test_edit.vim b/src/nvim/testdir/test_edit.vim index c1f74e7675..17393d6edb 100644 --- a/src/nvim/testdir/test_edit.vim +++ b/src/nvim/testdir/test_edit.vim @@ -1006,8 +1006,6 @@ func Test_edit_DROP() endfunc func Test_edit_CTRL_V() - CheckNotFeature ebcdic - new call setline(1, ['abc']) call cursor(2, 1) @@ -1561,11 +1559,7 @@ endfunc func Test_edit_special_chars() new - if has("ebcdic") - let t = "o\<C-V>193\<C-V>xc2\<C-V>o303 \<C-V>90a\<C-V>xfg\<C-V>o578\<Esc>" - else - let t = "o\<C-V>65\<C-V>x42\<C-V>o103 \<C-V>33a\<C-V>xfg\<C-V>o78\<Esc>" - endif + let t = "o\<C-V>65\<C-V>x42\<C-V>o103 \<C-V>33a\<C-V>xfg\<C-V>o78\<Esc>" exe "normal " . t call assert_equal("ABC !a\<C-O>g\<C-G>8", getline(2)) |