1
0
forked from aniani/vim

updated for version 7.3.1148

Problem:    No command line completion for ":syntime".
Solution:   Implement the completion. (Dominique Pelle)
This commit is contained in:
Bram Moolenaar
2013-06-08 15:24:48 +02:00
parent 87f764a891
commit cd9c46265e
8 changed files with 41 additions and 1 deletions

View File

@@ -3994,6 +3994,12 @@ set_one_cmd_context(xp, buff)
xp->xp_pattern = arg;
break;
#endif
#if defined(FEAT_PROFILE)
case CMD_syntime:
xp->xp_context = EXPAND_SYNTIME;
xp->xp_pattern = arg;
break;
#endif
#endif /* FEAT_CMDL_COMPL */
@@ -5436,6 +5442,9 @@ static struct
{EXPAND_MAPPINGS, "mapping"},
{EXPAND_MENUS, "menu"},
{EXPAND_OWNSYNTAX, "syntax"},
#if defined(FEAT_PROFILE)
{EXPAND_SYNTIME, "syntime"},
#endif
{EXPAND_SETTINGS, "option"},
{EXPAND_SHELLCMD, "shellcmd"},
#if defined(FEAT_SIGNS)