diff options
author | Josh Rahm <joshuarahm@gmail.com> | 2023-11-30 20:35:25 +0000 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2023-11-30 20:35:25 +0000 |
commit | 1b7b916b7631ddf73c38e3a0070d64e4636cb2f3 (patch) | |
tree | cd08258054db80bb9a11b1061bb091c70b76926a /src/nvim/testdir/test_input.vim | |
parent | eaa89c11d0f8aefbb512de769c6c82f61a8baca3 (diff) | |
parent | 4a8bf24ac690004aedf5540fa440e788459e5e34 (diff) | |
download | rneovim-aucmd_textputpost.tar.gz rneovim-aucmd_textputpost.tar.bz2 rneovim-aucmd_textputpost.zip |
Merge remote-tracking branch 'upstream/master' into aucmd_textputpostaucmd_textputpost
Diffstat (limited to 'src/nvim/testdir/test_input.vim')
-rw-r--r-- | src/nvim/testdir/test_input.vim | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/src/nvim/testdir/test_input.vim b/src/nvim/testdir/test_input.vim deleted file mode 100644 index 3b1e2eb2df..0000000000 --- a/src/nvim/testdir/test_input.vim +++ /dev/null @@ -1,61 +0,0 @@ -" Tests for character input and feedkeys() function. - -func Test_feedkeys_x_with_empty_string() - new - call feedkeys("ifoo\<Esc>") - call assert_equal('', getline('.')) - call feedkeys('', 'x') - call assert_equal('foo', getline('.')) - - " check it goes back to normal mode immediately. - call feedkeys('i', 'x') - call assert_equal('foo', getline('.')) - quit! -endfunc - -func Test_feedkeys_with_abbreviation() - new - inoreabbrev trigger value - call feedkeys("atrigger ", 'x') - call feedkeys("atrigger ", 'x') - call assert_equal('value value ', getline(1)) - bwipe! - iunabbrev trigger -endfunc - -func Test_feedkeys_escape_special() - nnoremap … <Cmd>let g:got_ellipsis += 1<CR> - call feedkeys('…', 't') - call assert_equal('…', getcharstr()) - let g:got_ellipsis = 0 - call feedkeys('…', 'xt') - call assert_equal(1, g:got_ellipsis) - unlet g:got_ellipsis - nunmap … -endfunc - -func Test_input_simplify_ctrl_at() - new - " 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_input_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_input_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 |