vim-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 vim/vim#9806)
ad6c45f625
This commit is contained in:
zeertzjq
2022-02-21 06:04:56 +08:00
parent d80c9b9259
commit 3828fb7ea4
2 changed files with 5 additions and 1 deletions

View File

@@ -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