# HG changeset patch # User Bram Moolenaar # Date 1654529403 -7200 # Node ID ae39554ad2eed6642538e43066ec1c77f0f84de4 # Parent e97abb3ba4e21c922bbadc0832825d4113b80277 patch 8.2.5064: no test for what 8.1.0052 fixes Commit: https://github.com/vim/vim/commit/3760bfddc414e4d3e1c4203db8c22e293cf08d09 Author: zeertzjq Date: Mon Jun 6 16:22:46 2022 +0100 patch 8.2.5064: no test for what 8.1.0052 fixes Problem: No test for what 8.1.0052 fixes. Solution: Add a test. (closes https://github.com/vim/vim/issues/10531) diff --git a/src/getchar.c b/src/getchar.c --- a/src/getchar.c +++ b/src/getchar.c @@ -3458,8 +3458,8 @@ vgetorpeek(int advance) * get a character: 3. from the user - get it */ if (typebuf.tb_len == 0) - // timedout may have been set while waiting for a mapping - // that has a RHS. + // timedout may have been set if a mapping with empty RHS + // fully matched while longer mappings timed out. timedout = FALSE; if (advance) diff --git a/src/testdir/test_mapping.vim b/src/testdir/test_mapping.vim --- a/src/testdir/test_mapping.vim +++ b/src/testdir/test_mapping.vim @@ -1685,4 +1685,34 @@ func Test_expr_map_escape_special() nunmap … endfunc +" Testing for mapping after an mapping is triggered on timeout. +" Test for what patch 8.1.0052 fixes. +func Test_map_after_timed_out_nop() + CheckRunVimInTerminal + + let lines =<< trim END + set timeout timeoutlen=400 + inoremap ab TEST + inoremap a + END + call writefile(lines, 'Xtest_map_after_timed_out_nop') + let buf = RunVimInTerminal('-S Xtest_map_after_timed_out_nop', #{rows: 6}) + + " Enter Insert mode + call term_sendkeys(buf, 'i') + " Wait for the "a" mapping to timeout + call term_sendkeys(buf, 'a') + call term_wait(buf, 500) + " Send "a" and wait for a period shorter than 'timeoutlen' + call term_sendkeys(buf, 'a') + call term_wait(buf, 100) + " Send "b", should trigger the "ab" mapping + call term_sendkeys(buf, 'b') + call WaitForAssert({-> assert_equal("TEST", term_getline(buf, 1))}) + + " clean up + call StopVimInTerminal(buf) + call delete('Xtest_map_after_timed_out_nop') +endfunc + " vim: shiftwidth=2 sts=2 expandtab diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -735,6 +735,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 5064, +/**/ 5063, /**/ 5062,