# HG changeset patch # User Bram Moolenaar # Date 1636733704 -3600 # Node ID 012faa52874bde6f4ee08434526d078264729deb # Parent 8981c7cbea9f5d4391b09e73b69f3fc9c6e3a006 patch 8.2.3586: command completion test fails Commit: https://github.com/vim/vim/commit/326e7da609a1b115b0ed535e89e970afebe99e35 Author: Bram Moolenaar Date: Fri Nov 12 16:06:03 2021 +0000 patch 8.2.3586: command completion test fails Problem: Command completion test fails. Solution: Add new argument to expected output diff --git a/src/testdir/test_usercommands.vim b/src/testdir/test_usercommands.vim --- a/src/testdir/test_usercommands.vim +++ b/src/testdir/test_usercommands.vim @@ -319,10 +319,10 @@ endfunc func Test_CmdCompletion() call feedkeys(":com -\\\"\", 'tx') - call assert_equal('"com -addr bang bar buffer complete count nargs range register', @:) + call assert_equal('"com -addr bang bar buffer complete count keepscript nargs range register', @:) call feedkeys(":com -nargs=0 -\\\"\", 'tx') - call assert_equal('"com -nargs=0 -addr bang bar buffer complete count nargs range register', @:) + call assert_equal('"com -nargs=0 -addr bang bar buffer complete count keepscript nargs range register', @:) call feedkeys(":com -nargs=\\\"\", 'tx') call assert_equal('"com -nargs=* + 0 1 ?', @:) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -758,6 +758,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3586, +/**/ 3585, /**/ 3584,