diff src/testdir/test_functions.vim @ 27802:9b01fea87065 v8.2.4427

patch 8.2.4427: getchar() may return modifiers if no character is available Commit: https://github.com/vim/vim/commit/ad6c45f62558e03d3e3a927b3fe4dbaf30a36bef Author: zeertzjq <zeertzjq@outlook.com> Date: Sun Feb 20 19:05:10 2022 +0000 patch 8.2.4427: getchar() may return modifiers if no character is available Problem: getchar() may return modifiers if no character is available. Solution: Do not process modifiers when there is no character. (closes https://github.com/vim/vim/issues/9806)
author Bram Moolenaar <Bram@vim.org>
date Sun, 20 Feb 2022 20:15:03 +0100
parents 19367412787c
children 050d49de7a66
line wrap: on
line diff
--- a/src/testdir/test_functions.vim
+++ b/src/testdir/test_functions.vim
@@ -1818,6 +1818,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