mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.4122: ":command Cmd" does not show custom completion argument
Problem: ":command Cmd" does not show custom completion argument. Solution: Show the completion argument when using ":verbose".
This commit is contained in:
@@ -589,10 +589,10 @@ func Test_command_list()
|
|||||||
\ execute('command DoCmd'))
|
\ execute('command DoCmd'))
|
||||||
|
|
||||||
" Test output in verbose mode.
|
" Test output in verbose mode.
|
||||||
command! DoCmd :
|
command! -nargs=+ -complete=customlist,SomeFunc DoCmd :ls
|
||||||
call assert_match("^\n"
|
call assert_match("^\n"
|
||||||
\ .. " Name Args Address Complete Definition\n"
|
\ .. " Name Args Address Complete Definition\n"
|
||||||
\ .. " DoCmd 0 :\n"
|
\ .. " DoCmd + customlist,SomeFunc :ls\n"
|
||||||
\ .. "\tLast set from .*/test_usercommands.vim line \\d\\+$",
|
\ .. "\tLast set from .*/test_usercommands.vim line \\d\\+$",
|
||||||
\ execute('verbose command DoCmd'))
|
\ execute('verbose command DoCmd'))
|
||||||
|
|
||||||
|
@@ -548,6 +548,13 @@ uc_list(char_u *name, size_t name_len)
|
|||||||
{
|
{
|
||||||
STRCPY(IObuff + len, command_complete[j].name);
|
STRCPY(IObuff + len, command_complete[j].name);
|
||||||
len += (int)STRLEN(IObuff + len);
|
len += (int)STRLEN(IObuff + len);
|
||||||
|
if (p_verbose > 0 && cmd->uc_compl_arg != NULL
|
||||||
|
&& STRLEN(cmd->uc_compl_arg) < 200)
|
||||||
|
{
|
||||||
|
IObuff[len] = ',';
|
||||||
|
STRCPY(IObuff + len + 1, cmd->uc_compl_arg);
|
||||||
|
len += (int)STRLEN(IObuff + len);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
4122,
|
||||||
/**/
|
/**/
|
||||||
4121,
|
4121,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user