We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8da1e6c commit a33ddbbCopy full SHA for a33ddbb
src/testdir/test_cmdline.vim
@@ -348,6 +348,15 @@ func Test_cmdline_complete_wildoptions()
348
bw!
349
endfunc
350
351
+func Test_cmdline_complete_user_cmd()
352
+ command! -complete=color -nargs=1 Foo :
353
+ call feedkeys(":Foo \<Tab>\<Home>\"\<cr>", 'tx')
354
+ call assert_equal('"Foo blue', @:)
355
+ call feedkeys(":Foo b\<Tab>\<Home>\"\<cr>", 'tx')
356
357
+ delcommand Foo
358
+endfunc
359
+
360
" using a leading backslash here
361
set cpo+=C
362
src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 525,
769
/**/
770
524,
771
0 commit comments