diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-02-21 06:46:59 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-21 06:46:59 +0800 |
| commit | 9fa46d3fd4db2f98b3cabd894144b452433896b1 (patch) | |
| tree | 117eaed1e946468ab1b65bf4ce503b975562d5f2 /src/nvim/testdir | |
| parent | d80c9b925973be87d1d5a2e948d65907234b2134 (diff) | |
| parent | 3828fb7ea431c9ceec815c41aed89c50ab9712f5 (diff) | |
| download | rneovim-9fa46d3fd4db2f98b3cabd894144b452433896b1.tar.gz rneovim-9fa46d3fd4db2f98b3cabd894144b452433896b1.tar.bz2 rneovim-9fa46d3fd4db2f98b3cabd894144b452433896b1.zip | |
Merge pull request #17480 from zeertzjq/vim-8.2.4427
vim-patch:8.2.4427: getchar() may return modifiers if no character is available
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_functions.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_functions.vim b/src/nvim/testdir/test_functions.vim index 6e36f4e3d2..994d74601a 100644 --- a/src/nvim/testdir/test_functions.vim +++ b/src/nvim/testdir/test_functions.vim @@ -1451,6 +1451,10 @@ func Test_getchar() call assert_equal('', getcharstr(0)) call assert_equal('', getcharstr(1)) + call feedkeys("\<M-F2>", '') + call assert_equal("\<M-F2>", getchar(0)) + call assert_equal(0, getchar(0)) + call setline(1, 'xxxx') " call test_setmouse(1, 3) " let v:mouse_win = 9 |