diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-07-23 14:18:43 +0800 |
|---|---|---|
| committer | zeertzjq <zeertzjq@outlook.com> | 2022-07-23 14:22:08 +0800 |
| commit | 264791925a76412ed9109028d0d694f7847249be (patch) | |
| tree | 0a65d6dc02c9b644a0111a2e7c5b87aa0f9742de /src/nvim/testdir/test_termcodes.vim | |
| parent | d0ced2a127ab3974deaefcfab214b564b1ef48e7 (diff) | |
| download | rneovim-264791925a76412ed9109028d0d694f7847249be.tar.gz rneovim-264791925a76412ed9109028d0d694f7847249be.tar.bz2 rneovim-264791925a76412ed9109028d0d694f7847249be.zip | |
vim-patch:9.0.0059: test file has wrong name
Problem: Test file has wrong name.
Solution: Rename the file. Various small fixes. (closes vim/vim#10674)
https://github.com/vim/vim/commit/bb404f5ad5ec909318bc24e5b82e4ed7b87ba8f4
Diffstat (limited to 'src/nvim/testdir/test_termcodes.vim')
| -rw-r--r-- | src/nvim/testdir/test_termcodes.vim | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/nvim/testdir/test_termcodes.vim b/src/nvim/testdir/test_termcodes.vim index c0712aa892..eda485c512 100644 --- a/src/nvim/testdir/test_termcodes.vim +++ b/src/nvim/testdir/test_termcodes.vim @@ -33,28 +33,5 @@ func Test_special_term_keycodes() bw! endfunc -func Test_simplify_ctrl_at() - " feeding unsimplified CTRL-@ should still trigger i_CTRL-@ - call feedkeys("ifoo\<Esc>A\<*C-@>x", 'xt') - call assert_equal('foofo', getline(1)) - bw! -endfunc - -func Test_simplify_noremap() - call feedkeys("i\<*C-M>", 'nx') - call assert_equal('', getline(1)) - call assert_equal([0, 2, 1, 0, 1], getcurpos()) - bw! -endfunc - -func Test_simplify_timedout() - inoremap <C-M>a b - call feedkeys("i\<*C-M>", 'xt') - call assert_equal('', getline(1)) - call assert_equal([0, 2, 1, 0, 1], getcurpos()) - iunmap <C-M>a - bw! -endfunc - " vim: shiftwidth=2 sts=2 expandtab |