}
-#if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) || defined(PROTO)
+#if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) \
+ || defined(FEAT_COMPL_FUNC) || defined(PROTO)
/*
* Call some vimL function and return the result in "*rettv".
* Uses argv[argc] for the function arguments.
return ret;
}
+# if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) || defined(PROTO)
/*
* Call vimL function "func" and return the result as a string.
* Returns NULL when calling the function fails.
clear_tv(&rettv);
return retval;
}
+# endif
-#if defined(FEAT_COMPL_FUNC) || defined(PROTO)
+# if defined(FEAT_COMPL_FUNC) || defined(PROTO)
/*
* Call vimL function "func" and return the result as a number.
* Returns -1 when calling the function fails.
clear_tv(&rettv);
return retval;
}
-#endif
+# endif
/*
* Call vimL function "func" and return the result as a list
return rettv.vval.v_list;
}
-
#endif
+
/*
* Save the current function call pointer, and set it to NULL.
* Used when executing autocommands and for ":source".
case CMD_windo:
return arg;
-#ifdef FEAT_SEARCH_EXTRA
+#ifdef FEAT_CMDL_COMPL
+# ifdef FEAT_SEARCH_EXTRA
case CMD_match:
if (*arg == NUL || !ends_excmd(*arg))
{
- /* Dummy call to clear variables. */
- set_context_in_highlight_cmd(xp, (char_u *)"link n");
- xp->xp_context = EXPAND_HIGHLIGHT;
- xp->xp_pattern = arg;
+ /* also complete "None" */
+ set_context_in_echohl_cmd(xp, arg);
arg = skipwhite(skiptowhite(arg));
if (*arg != NUL)
{
}
}
return find_nextcmd(arg);
-#endif
+# endif
-#ifdef FEAT_CMDL_COMPL
/*
* All completion for the +cmdline_compl feature goes here.
*/
break;
case CMD_echohl:
- xp->xp_context = EXPAND_HIGHLIGHT;
- xp->xp_pattern = arg;
+ set_context_in_echohl_cmd(xp, arg);
break;
#endif
case CMD_highlight:
{
xpc.xp_context = ccline.xp_context;
xpc.xp_pattern = ccline.cmdbuff;
+# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
xpc.xp_arg = ccline.xp_arg;
+# endif
}
#endif
#ifdef FEAT_EVAL
if (ccline.cmdfirstc == '=')
+ {
+# ifdef FEAT_CMDL_COMPL
/* pass CMD_SIZE because there is no real command */
set_context_for_expression(xp, str, CMD_SIZE);
+# endif
+ }
else if (ccline.input_fn)
{
xp->xp_context = ccline.xp_context;
xp->xp_pattern = ccline.cmdbuff;
+# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
xp->xp_arg = ccline.xp_arg;
+# endif
}
else
#endif
if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS)
sort_strings(*file, *num_file);
+#ifdef FEAT_CMDL_COMPL
+ /* Reset the variables used for special highlight names expansion, so that
+ * they don't show up when getting normal highlight names by ID. */
+ reset_expand_highlight();
+#endif
+
return OK;
}
void syntax_clear __ARGS((buf_T *buf));
void ex_syntax __ARGS((exarg_T *eap));
int syntax_present __ARGS((buf_T *buf));
+void reset_expand_highlight __ARGS((void));
+void set_context_in_echohl_cmd __ARGS((expand_T *xp, char_u *arg));
void set_context_in_syntax_cmd __ARGS((expand_T *xp, char_u *arg));
char_u *get_syntax_name __ARGS((expand_T *xp, int idx));
int syn_get_id __ARGS((win_T *wp, long lnum, colnr_T col, int trans, int *spellp));
#define HL_TABLE() ((struct hl_group *)((highlight_ga.ga_data)))
#ifdef FEAT_CMDL_COMPL
-static int include_default = FALSE; /* include "default" for expansion */
-static int include_link = FALSE; /* include "link" for expansion */
+/* Flags to indicate an additional string for highlight name completion. */
+static int include_none = 0; /* when 1 include "None" */
+static int include_default = 0; /* when 1 include "default" */
+static int include_link = 0; /* when 2 include "link" and "clear" */
#endif
/*
EXP_CASE /* expand ":syn case" arguments */
} expand_what;
+/*
+ * Reset include_link, include_default, include_none to 0.
+ * Called when we are done expanding.
+ */
+ void
+reset_expand_highlight()
+{
+ include_link = include_default = include_none = 0;
+}
+
+/*
+ * Handle command line completion for :match and :echohl command: Add "None"
+ * as highlight group.
+ */
+ void
+set_context_in_echohl_cmd(xp, arg)
+ expand_T *xp;
+ char_u *arg;
+{
+ xp->xp_context = EXPAND_HIGHLIGHT;
+ xp->xp_pattern = arg;
+ include_none = 1;
+}
/*
* Handle command line completion for :syntax command.
xp->xp_context = EXPAND_SYNTAX;
expand_what = EXP_SUBCMD;
xp->xp_pattern = arg;
- include_link = FALSE;
- include_default = FALSE;
+ include_link = 0;
+ include_default = 0;
/* (part of) subcommand already typed */
if (*arg != NUL)
return OK;
}
-#ifdef FEAT_CMDL_COMPL
+#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
static void highlight_list __ARGS((void));
static void highlight_list_two __ARGS((int cnt, int attr));
/* Default: expand group names */
xp->xp_context = EXPAND_HIGHLIGHT;
xp->xp_pattern = arg;
- include_link = TRUE;
- include_default = TRUE;
+ include_link = 2;
+ include_default = 1;
/* (part of) subcommand already typed */
if (*arg != NUL)
p = skiptowhite(arg);
if (*p != NUL) /* past "default" or group name */
{
- include_default = FALSE;
+ include_default = 0;
if (STRNCMP("default", arg, p - arg) == 0)
{
arg = skipwhite(p);
}
if (*p != NUL) /* past group name */
{
- include_link = FALSE;
+ include_link = 0;
if (arg[1] == 'i' && arg[0] == 'N')
highlight_list();
if (STRNCMP("link", arg, p - arg) == 0
expand_T *xp;
int idx;
{
- if (idx == highlight_ga.ga_len
#ifdef FEAT_CMDL_COMPL
- && include_link
-#endif
- )
+ if (idx == highlight_ga.ga_len && include_none != 0)
+ return (char_u *)"none";
+ if (idx == highlight_ga.ga_len + include_none && include_default != 0)
+ return (char_u *)"default";
+ if (idx == highlight_ga.ga_len + include_none + include_default
+ && include_link != 0)
return (char_u *)"link";
- if (idx == highlight_ga.ga_len + 1
-#ifdef FEAT_CMDL_COMPL
- && include_link
-#endif
- )
+ if (idx == highlight_ga.ga_len + include_none + include_default + 1
+ && include_link != 0)
return (char_u *)"clear";
- if (idx == highlight_ga.ga_len + 2
-#ifdef FEAT_CMDL_COMPL
- && include_default
#endif
- )
- return (char_u *)"default";
if (idx < 0 || idx >= highlight_ga.ga_len)
return NULL;
return HL_TABLE()[idx].sg_name;
}
#endif
-#ifdef FEAT_GUI
+#if defined(FEAT_GUI) || defined(PROTO)
/*
* Free all the highlight group fonts.
* Used when quitting for systems which need it.
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 36,
/**/
35,
/**/