patch 9.1.0493: Test for patch 9.1.0489 doesn't fail without the fix Commit: https://github.com/vim/vim/commit/acc87469415ba10283e5a53a8a11424f4867bbcf Author: zeertzjq <zeert...@outlook.com> Date: Sun Jun 16 08:44:05 2024 +0200
patch 9.1.0493: Test for patch 9.1.0489 doesn't fail without the fix Problem: Test for patch 9.1.0489 doesn't fail without the fix. Solution: Use "!" flag of feedkeys() so that ex_normal_busy is not set and ins_compl_check_keys() is not skipped (zeertzjq). closes: #15018 Signed-off-by: zeertzjq <zeert...@outlook.com> Signed-off-by: Christian Brabandt <c...@256bit.org> diff --git a/src/testdir/test_ins_complete.vim b/src/testdir/test_ins_complete.vim index 51e3c1b5b..48589ce18 100644 --- a/src/testdir/test_ins_complete.vim +++ b/src/testdir/test_ins_complete.vim @@ -2573,14 +2573,17 @@ func Test_complete_fuzzy_match() call feedkeys("S\<C-x>\<C-o>fb\<C-n>", 'tx') call assert_equal('fooBaz', g:word) - " avoid break default completion behavior + " avoid breaking default completion behavior set completeopt=fuzzy,menu call setline(1, ['hello help hero h']) - exe "norm! A\<C-X>\<C-N>" + " Use "!" flag of feedkeys() so that ex_normal_busy is not set and + " ins_compl_check_keys() is not skipped. + " Add a "0" after the <Esc> to avoid waiting for an escape sequence. + call feedkeys("A\<C-X>\<C-N>\<Esc>0", 'tx!') call assert_equal('hello help hero hello', getline('.')) set completeopt+=noinsert call setline(1, ['hello help hero h']) - exe "norm! A\<C-X>\<C-N>" + call feedkeys("A\<C-X>\<C-N>\<Esc>0", 'tx!') call assert_equal('hello help hero h', getline('.')) " clean up diff --git a/src/version.c b/src/version.c index abfcf3f56..3817c9b1b 100644 --- a/src/version.c +++ b/src/version.c @@ -704,6 +704,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 493, /**/ 492, /**/ -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/E1sIjrw-00FxZD-3V%40256bit.org.