blob: 581c44492cb96a00b8b99494428a10aff5f7d9a0 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * ex_getln.c: Functions for entering and editing an Ex command line.
12 */
13
14#include "vim.h"
15
16/*
17 * Variables shared between getcmdline(), redrawcmdline() and others.
18 * These need to be saved when using CTRL-R |, that's why they are in a
19 * structure.
20 */
21struct cmdline_info
22{
23 char_u *cmdbuff; /* pointer to command line buffer */
24 int cmdbufflen; /* length of cmdbuff */
25 int cmdlen; /* number of chars in command line */
26 int cmdpos; /* current cursor position */
27 int cmdspos; /* cursor column on screen */
Bram Moolenaar5ae636b2012-04-30 18:48:53 +020028 int cmdfirstc; /* ':', '/', '?', '=', '>' or NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +000029 int cmdindent; /* number of spaces before cmdline */
30 char_u *cmdprompt; /* message in front of cmdline */
31 int cmdattr; /* attributes for prompt */
32 int overstrike; /* Typing mode on the command line. Shared by
33 getcmdline() and put_on_cmdline(). */
Bram Moolenaard6e7cc62008-09-14 12:42:29 +000034 expand_T *xpc; /* struct being used for expansion, xp_pattern
35 may point into cmdbuff */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000036 int xp_context; /* type of expansion */
37# ifdef FEAT_EVAL
38 char_u *xp_arg; /* user-defined expansion arg */
Bram Moolenaar93db9752006-11-21 10:29:45 +000039 int input_fn; /* when TRUE Invoked for input() function */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000040# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000041};
42
Bram Moolenaard6e7cc62008-09-14 12:42:29 +000043/* The current cmdline_info. It is initialized in getcmdline() and after that
44 * used by other functions. When invoking getcmdline() recursively it needs
45 * to be saved with save_cmdline() and restored with restore_cmdline().
46 * TODO: make it local to getcmdline() and pass it around. */
47static struct cmdline_info ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +000048
49static int cmd_showtail; /* Only show path tail in lists ? */
50
51#ifdef FEAT_EVAL
52static int new_cmdpos; /* position set by set_cmdline_pos() */
53#endif
54
55#ifdef FEAT_CMDHIST
56typedef struct hist_entry
57{
58 int hisnum; /* identifying number */
Bram Moolenaarb3049f42013-04-05 18:58:47 +020059 int viminfo; /* when TRUE hisstr comes from viminfo */
Bram Moolenaar071d4272004-06-13 20:20:40 +000060 char_u *hisstr; /* actual entry, separator char after the NUL */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +020061 time_t time_set; /* when it was typed, zero if unknown */
Bram Moolenaar071d4272004-06-13 20:20:40 +000062} histentry_T;
63
64static histentry_T *(history[HIST_COUNT]) = {NULL, NULL, NULL, NULL, NULL};
65static int hisidx[HIST_COUNT] = {-1, -1, -1, -1, -1}; /* lastused entry */
66static int hisnum[HIST_COUNT] = {0, 0, 0, 0, 0};
67 /* identifying (unique) number of newest history entry */
68static int hislen = 0; /* actual length of history tables */
69
Bram Moolenaard25c16e2016-01-29 22:13:30 +010070static int hist_char2type(int c);
Bram Moolenaar071d4272004-06-13 20:20:40 +000071
Bram Moolenaard25c16e2016-01-29 22:13:30 +010072static int in_history(int, char_u *, int, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000073# ifdef FEAT_EVAL
Bram Moolenaard25c16e2016-01-29 22:13:30 +010074static int calc_hist_idx(int histype, int num);
Bram Moolenaar071d4272004-06-13 20:20:40 +000075# endif
76#endif
77
78#ifdef FEAT_RIGHTLEFT
79static int cmd_hkmap = 0; /* Hebrew mapping during command line */
80#endif
81
82#ifdef FEAT_FKMAP
83static int cmd_fkmap = 0; /* Farsi mapping during command line */
84#endif
85
Bram Moolenaard25c16e2016-01-29 22:13:30 +010086static int cmdline_charsize(int idx);
87static void set_cmdspos(void);
88static void set_cmdspos_cursor(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000089#ifdef FEAT_MBYTE
Bram Moolenaard25c16e2016-01-29 22:13:30 +010090static void correct_cmdspos(int idx, int cells);
Bram Moolenaar071d4272004-06-13 20:20:40 +000091#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010092static void alloc_cmdbuff(int len);
93static int realloc_cmdbuff(int len);
94static void draw_cmdline(int start, int len);
95static void save_cmdline(struct cmdline_info *ccp);
96static void restore_cmdline(struct cmdline_info *ccp);
97static int cmdline_paste(int regname, int literally, int remcr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000098#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaard25c16e2016-01-29 22:13:30 +010099static void redrawcmd_preedit(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100#endif
101#ifdef FEAT_WILDMENU
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100102static void cmdline_del(int from);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100104static void redrawcmdprompt(void);
105static void cursorcmd(void);
106static int ccheck_abbr(int);
107static int nextwild(expand_T *xp, int type, int options, int escape);
108static void escape_fname(char_u **pp);
109static int showmatches(expand_T *xp, int wildmenu);
110static void set_expand_context(expand_T *xp);
111static int ExpandFromContext(expand_T *xp, char_u *, int *, char_u ***, int);
112static int expand_showtail(expand_T *xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113#ifdef FEAT_CMDL_COMPL
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100114static int expand_shellcmd(char_u *filepat, int *num_file, char_u ***file, int flagsarg);
Bram Moolenaar52f9c192016-03-13 13:24:45 +0100115static int ExpandRTDir(char_u *pat, int flags, int *num_file, char_u ***file, char *dirname[]);
Bram Moolenaar35ca0e72016-03-05 17:41:49 +0100116static int ExpandPackAddDir(char_u *pat, int *num_file, char_u ***file);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +0200117# ifdef FEAT_CMDHIST
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100118static char_u *get_history_arg(expand_T *xp, int idx);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +0200119# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100121static int ExpandUserDefined(expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file);
122static int ExpandUserList(expand_T *xp, int *num_file, char_u ***file);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123# endif
124#endif
Bram Moolenaar25a6df92013-04-06 14:29:00 +0200125#ifdef FEAT_CMDHIST
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100126static void clear_hist_entry(histentry_T *hisptr);
Bram Moolenaar25a6df92013-04-06 14:29:00 +0200127#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128
129#ifdef FEAT_CMDWIN
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100130static int ex_window(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131#endif
132
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200133#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
134static int
135#ifdef __BORLANDC__
136_RTLENTRYF
137#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100138sort_func_compare(const void *s1, const void *s2);
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200139#endif
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +0200140#ifdef FEAT_SEARCH_EXTRA
141static void set_search_match(pos_T *t);
142#endif
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200143
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144/*
145 * getcmdline() - accept a command line starting with firstc.
146 *
147 * firstc == ':' get ":" command line.
148 * firstc == '/' or '?' get search pattern
149 * firstc == '=' get expression
150 * firstc == '@' get text for input() function
151 * firstc == '>' get text for debug mode
152 * firstc == NUL get text for :insert command
153 * firstc == -1 like NUL, and break on CTRL-C
154 *
155 * The line is collected in ccline.cmdbuff, which is reallocated to fit the
156 * command line.
157 *
158 * Careful: getcmdline() can be called recursively!
159 *
160 * Return pointer to allocated string if there is a commandline, NULL
161 * otherwise.
162 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100164getcmdline(
165 int firstc,
166 long count UNUSED, /* only used for incremental search */
167 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168{
169 int c;
170 int i;
171 int j;
172 int gotesc = FALSE; /* TRUE when <ESC> just typed */
173 int do_abbr; /* when TRUE check for abbr. */
174#ifdef FEAT_CMDHIST
175 char_u *lookfor = NULL; /* string to match */
176 int hiscnt; /* current history line in use */
177 int histype; /* history type to be used */
178#endif
179#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaardda933d2016-09-03 21:04:58 +0200180 pos_T search_start; /* where 'incsearch' starts searching */
181 pos_T save_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182 colnr_T old_curswant;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200183 colnr_T init_curswant = curwin->w_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184 colnr_T old_leftcol;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200185 colnr_T init_leftcol = curwin->w_leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186 linenr_T old_topline;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200187 linenr_T init_topline = curwin->w_topline;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +0200188 pos_T match_start = curwin->w_cursor;
189 pos_T match_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190# ifdef FEAT_DIFF
191 int old_topfill;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200192 int init_topfill = curwin->w_topfill;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193# endif
194 linenr_T old_botline;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200195 linenr_T init_botline = curwin->w_botline;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 int did_incsearch = FALSE;
197 int incsearch_postponed = FALSE;
198#endif
199 int did_wild_list = FALSE; /* did wild_list() recently */
200 int wim_index = 0; /* index in wim_flags[] */
201 int res;
202 int save_msg_scroll = msg_scroll;
203 int save_State = State; /* remember State when called */
204 int some_key_typed = FALSE; /* one of the keys was typed */
205#ifdef FEAT_MOUSE
206 /* mouse drag and release events are ignored, unless they are
207 * preceded with a mouse down event */
208 int ignore_drag_release = TRUE;
209#endif
210#ifdef FEAT_EVAL
211 int break_ctrl_c = FALSE;
212#endif
213 expand_T xpc;
214 long *b_im_ptr = NULL;
Bram Moolenaar4d050402017-01-09 12:58:11 +0100215#if defined(FEAT_WILDMENU) || defined(FEAT_EVAL) \
216 || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_CMDWIN)
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000217 /* Everything that may work recursively should save and restore the
218 * current command line in save_ccline. That includes update_screen(), a
219 * custom status line may invoke ":normal". */
220 struct cmdline_info save_ccline;
221#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223#ifdef FEAT_EVAL
224 if (firstc == -1)
225 {
226 firstc = NUL;
227 break_ctrl_c = TRUE;
228 }
229#endif
230#ifdef FEAT_RIGHTLEFT
231 /* start without Hebrew mapping for a command line */
232 if (firstc == ':' || firstc == '=' || firstc == '>')
233 cmd_hkmap = 0;
234#endif
235
236 ccline.overstrike = FALSE; /* always start in insert mode */
237#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +0200238 clearpos(&match_end);
Bram Moolenaardda933d2016-09-03 21:04:58 +0200239 save_cursor = curwin->w_cursor; /* may be restored later */
240 search_start = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241 old_curswant = curwin->w_curswant;
242 old_leftcol = curwin->w_leftcol;
243 old_topline = curwin->w_topline;
244# ifdef FEAT_DIFF
245 old_topfill = curwin->w_topfill;
246# endif
247 old_botline = curwin->w_botline;
248#endif
249
250 /*
251 * set some variables for redrawcmd()
252 */
253 ccline.cmdfirstc = (firstc == '@' ? 0 : firstc);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000254 ccline.cmdindent = (firstc > 0 ? indent : 0);
255
256 /* alloc initial ccline.cmdbuff */
257 alloc_cmdbuff(exmode_active ? 250 : indent + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258 if (ccline.cmdbuff == NULL)
259 return NULL; /* out of memory */
260 ccline.cmdlen = ccline.cmdpos = 0;
261 ccline.cmdbuff[0] = NUL;
262
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000263 /* autoindent for :insert and :append */
264 if (firstc <= 0)
265 {
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200266 vim_memset(ccline.cmdbuff, ' ', indent);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000267 ccline.cmdbuff[indent] = NUL;
268 ccline.cmdpos = indent;
269 ccline.cmdspos = indent;
270 ccline.cmdlen = indent;
271 }
272
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273 ExpandInit(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000274 ccline.xpc = &xpc;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275
276#ifdef FEAT_RIGHTLEFT
277 if (curwin->w_p_rl && *curwin->w_p_rlc == 's'
278 && (firstc == '/' || firstc == '?'))
279 cmdmsg_rl = TRUE;
280 else
281 cmdmsg_rl = FALSE;
282#endif
283
284 redir_off = TRUE; /* don't redirect the typed command */
285 if (!cmd_silent)
286 {
287 i = msg_scrolled;
288 msg_scrolled = 0; /* avoid wait_return message */
289 gotocmdline(TRUE);
290 msg_scrolled += i;
291 redrawcmdprompt(); /* draw prompt or indent */
292 set_cmdspos();
293 }
294 xpc.xp_context = EXPAND_NOTHING;
295 xpc.xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000296#ifndef BACKSLASH_IN_FILENAME
297 xpc.xp_shell = FALSE;
298#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000300#if defined(FEAT_EVAL)
301 if (ccline.input_fn)
302 {
303 xpc.xp_context = ccline.xp_context;
304 xpc.xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +0000305# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000306 xpc.xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +0000307# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000308 }
309#endif
310
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311 /*
312 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when
313 * doing ":@0" when register 0 doesn't contain a CR.
314 */
315 msg_scroll = FALSE;
316
317 State = CMDLINE;
318
319 if (firstc == '/' || firstc == '?' || firstc == '@')
320 {
321 /* Use ":lmap" mappings for search pattern and input(). */
322 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT)
323 b_im_ptr = &curbuf->b_p_iminsert;
324 else
325 b_im_ptr = &curbuf->b_p_imsearch;
326 if (*b_im_ptr == B_IMODE_LMAP)
327 State |= LANGMAP;
328#ifdef USE_IM_CONTROL
329 im_set_active(*b_im_ptr == B_IMODE_IM);
330#endif
331 }
332#ifdef USE_IM_CONTROL
333 else if (p_imcmdline)
334 im_set_active(TRUE);
335#endif
336
337#ifdef FEAT_MOUSE
338 setmouse();
339#endif
340#ifdef CURSOR_SHAPE
341 ui_cursor_shape(); /* may show different cursor shape */
342#endif
343
Bram Moolenaarf4d11452005-12-02 00:46:37 +0000344 /* When inside an autocommand for writing "exiting" may be set and
345 * terminal mode set to cooked. Need to set raw mode here then. */
346 settmode(TMODE_RAW);
347
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348#ifdef FEAT_CMDHIST
349 init_history();
350 hiscnt = hislen; /* set hiscnt to impossible history value */
351 histype = hist_char2type(firstc);
352#endif
353
354#ifdef FEAT_DIGRAPHS
Bram Moolenaar3c65e312009-04-29 16:47:23 +0000355 do_digraph(-1); /* init digraph typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356#endif
357
Bram Moolenaar15a35c42014-06-25 12:26:46 +0200358 /* If something above caused an error, reset the flags, we do want to type
359 * and execute commands. Display may be messed up a bit. */
360 if (did_emsg)
361 redrawcmd();
362 did_emsg = FALSE;
363 got_int = FALSE;
364
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365 /*
366 * Collect the command string, handling editing keys.
367 */
368 for (;;)
369 {
Bram Moolenaar29b2d262006-09-10 19:07:28 +0000370 redir_off = TRUE; /* Don't redirect the typed command.
371 Repeated, because a ":redir" inside
372 completion may switch it on. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373#ifdef USE_ON_FLY_SCROLL
374 dont_scroll = FALSE; /* allow scrolling here */
375#endif
376 quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */
377
378 cursorcmd(); /* set the cursor on the right spot */
Bram Moolenaar30405d32008-01-02 20:55:27 +0000379
380 /* Get a character. Ignore K_IGNORE, it should not do anything, such
381 * as stop completion. */
382 do
383 {
384 c = safe_vgetc();
385 } while (c == K_IGNORE);
386
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387 if (KeyTyped)
388 {
389 some_key_typed = TRUE;
390#ifdef FEAT_RIGHTLEFT
391 if (cmd_hkmap)
392 c = hkmap(c);
393# ifdef FEAT_FKMAP
394 if (cmd_fkmap)
395 c = cmdl_fkmap(c);
396# endif
397 if (cmdmsg_rl && !KeyStuffed)
398 {
399 /* Invert horizontal movements and operations. Only when
400 * typed by the user directly, not when the result of a
401 * mapping. */
402 switch (c)
403 {
404 case K_RIGHT: c = K_LEFT; break;
405 case K_S_RIGHT: c = K_S_LEFT; break;
406 case K_C_RIGHT: c = K_C_LEFT; break;
407 case K_LEFT: c = K_RIGHT; break;
408 case K_S_LEFT: c = K_S_RIGHT; break;
409 case K_C_LEFT: c = K_C_RIGHT; break;
410 }
411 }
412#endif
413 }
414
415 /*
416 * Ignore got_int when CTRL-C was typed here.
417 * Don't ignore it in :global, we really need to break then, e.g., for
418 * ":g/pat/normal /pat" (without the <CR>).
419 * Don't ignore it for the input() function.
420 */
421 if ((c == Ctrl_C
422#ifdef UNIX
423 || c == intr_char
424#endif
425 )
426#if defined(FEAT_EVAL) || defined(FEAT_CRYPT)
427 && firstc != '@'
428#endif
429#ifdef FEAT_EVAL
430 && !break_ctrl_c
431#endif
432 && !global_busy)
433 got_int = FALSE;
434
435#ifdef FEAT_CMDHIST
436 /* free old command line when finished moving around in the history
437 * list */
438 if (lookfor != NULL
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000439 && c != K_S_DOWN && c != K_S_UP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000440 && c != K_DOWN && c != K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441 && c != K_PAGEDOWN && c != K_PAGEUP
442 && c != K_KPAGEDOWN && c != K_KPAGEUP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000443 && c != K_LEFT && c != K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N)))
445 {
446 vim_free(lookfor);
447 lookfor = NULL;
448 }
449#endif
450
451 /*
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000452 * When there are matching completions to select <S-Tab> works like
453 * CTRL-P (unless 'wc' is <S-Tab>).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454 */
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000455 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456 c = Ctrl_P;
457
458#ifdef FEAT_WILDMENU
459 /* Special translations for 'wildmenu' */
460 if (did_wild_list && p_wmnu)
461 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000462 if (c == K_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463 c = Ctrl_P;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000464 else if (c == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465 c = Ctrl_N;
466 }
467 /* Hitting CR after "emenu Name.": complete submenu */
468 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu
469 && ccline.cmdpos > 1
470 && ccline.cmdbuff[ccline.cmdpos - 1] == '.'
471 && ccline.cmdbuff[ccline.cmdpos - 2] != '\\'
472 && (c == '\n' || c == '\r' || c == K_KENTER))
473 c = K_DOWN;
474#endif
475
476 /* free expanded names when finished walking through matches */
477 if (xpc.xp_numfiles != -1
478 && !(c == p_wc && KeyTyped) && c != p_wcm
479 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A
480 && c != Ctrl_L)
481 {
482 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
483 did_wild_list = FALSE;
484#ifdef FEAT_WILDMENU
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000485 if (!p_wmnu || (c != K_UP && c != K_DOWN))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486#endif
487 xpc.xp_context = EXPAND_NOTHING;
488 wim_index = 0;
489#ifdef FEAT_WILDMENU
490 if (p_wmnu && wild_menu_showing != 0)
491 {
492 int skt = KeyTyped;
Bram Moolenaar1e015462005-09-25 22:16:38 +0000493 int old_RedrawingDisabled = RedrawingDisabled;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000494
495 if (ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000496 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497
498 if (wild_menu_showing == WM_SCROLLED)
499 {
500 /* Entered command line, move it up */
501 cmdline_row--;
502 redrawcmd();
503 }
504 else if (save_p_ls != -1)
505 {
506 /* restore 'laststatus' and 'winminheight' */
507 p_ls = save_p_ls;
508 p_wmh = save_p_wmh;
509 last_status(FALSE);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000510 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511 update_screen(VALID); /* redraw the screen NOW */
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000512 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513 redrawcmd();
514 save_p_ls = -1;
515 }
516 else
517 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 win_redraw_last_status(topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519 redraw_statuslines();
520 }
521 KeyTyped = skt;
522 wild_menu_showing = 0;
Bram Moolenaar1e015462005-09-25 22:16:38 +0000523 if (ccline.input_fn)
524 RedrawingDisabled = old_RedrawingDisabled;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525 }
526#endif
527 }
528
529#ifdef FEAT_WILDMENU
530 /* Special translations for 'wildmenu' */
531 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu)
532 {
533 /* Hitting <Down> after "emenu Name.": complete submenu */
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000534 if (c == K_DOWN && ccline.cmdpos > 0
535 && ccline.cmdbuff[ccline.cmdpos - 1] == '.')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536 c = p_wc;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000537 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538 {
539 /* Hitting <Up>: Remove one submenu name in front of the
540 * cursor */
541 int found = FALSE;
542
543 j = (int)(xpc.xp_pattern - ccline.cmdbuff);
544 i = 0;
545 while (--j > 0)
546 {
547 /* check for start of menu name */
548 if (ccline.cmdbuff[j] == ' '
549 && ccline.cmdbuff[j - 1] != '\\')
550 {
551 i = j + 1;
552 break;
553 }
554 /* check for start of submenu name */
555 if (ccline.cmdbuff[j] == '.'
556 && ccline.cmdbuff[j - 1] != '\\')
557 {
558 if (found)
559 {
560 i = j + 1;
561 break;
562 }
563 else
564 found = TRUE;
565 }
566 }
567 if (i > 0)
568 cmdline_del(i);
569 c = p_wc;
570 xpc.xp_context = EXPAND_NOTHING;
571 }
572 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000573 if ((xpc.xp_context == EXPAND_FILES
Bram Moolenaar446cb832008-06-24 21:56:24 +0000574 || xpc.xp_context == EXPAND_DIRECTORIES
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000575 || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576 {
577 char_u upseg[5];
578
579 upseg[0] = PATHSEP;
580 upseg[1] = '.';
581 upseg[2] = '.';
582 upseg[3] = PATHSEP;
583 upseg[4] = NUL;
584
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000585 if (c == K_DOWN
586 && ccline.cmdpos > 0
587 && ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP
588 && (ccline.cmdpos < 3
589 || ccline.cmdbuff[ccline.cmdpos - 2] != '.'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590 || ccline.cmdbuff[ccline.cmdpos - 3] != '.'))
591 {
592 /* go down a directory */
593 c = p_wc;
594 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000595 else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596 {
597 /* If in a direct ancestor, strip off one ../ to go down */
598 int found = FALSE;
599
600 j = ccline.cmdpos;
601 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
602 while (--j > i)
603 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000604#ifdef FEAT_MBYTE
605 if (has_mbyte)
606 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
607#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608 if (vim_ispathsep(ccline.cmdbuff[j]))
609 {
610 found = TRUE;
611 break;
612 }
613 }
614 if (found
615 && ccline.cmdbuff[j - 1] == '.'
616 && ccline.cmdbuff[j - 2] == '.'
617 && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2))
618 {
619 cmdline_del(j - 2);
620 c = p_wc;
621 }
622 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000623 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 {
625 /* go up a directory */
626 int found = FALSE;
627
628 j = ccline.cmdpos - 1;
629 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
630 while (--j > i)
631 {
632#ifdef FEAT_MBYTE
633 if (has_mbyte)
634 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
635#endif
636 if (vim_ispathsep(ccline.cmdbuff[j])
637#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100638 && vim_strchr((char_u *)" *?[{`$%#",
639 ccline.cmdbuff[j + 1]) == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640#endif
641 )
642 {
643 if (found)
644 {
645 i = j + 1;
646 break;
647 }
648 else
649 found = TRUE;
650 }
651 }
652
653 if (!found)
654 j = i;
655 else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0)
656 j += 4;
657 else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0
658 && j == i)
659 j += 3;
660 else
661 j = 0;
662 if (j > 0)
663 {
664 /* TODO this is only for DOS/UNIX systems - need to put in
665 * machine-specific stuff here and in upseg init */
666 cmdline_del(j);
667 put_on_cmdline(upseg + 1, 3, FALSE);
668 }
669 else if (ccline.cmdpos > i)
670 cmdline_del(i);
Bram Moolenaar96a89642011-12-08 18:44:51 +0100671
672 /* Now complete in the new directory. Set KeyTyped in case the
673 * Up key came from a mapping. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 c = p_wc;
Bram Moolenaar96a89642011-12-08 18:44:51 +0100675 KeyTyped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676 }
677 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678
679#endif /* FEAT_WILDMENU */
680
681 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert
682 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */
683 if (c == Ctrl_BSL)
684 {
685 ++no_mapping;
686 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000687 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688 --no_mapping;
689 --allow_keys;
Bram Moolenaarb7356812012-10-11 04:04:37 +0200690 /* CTRL-\ e doesn't work when obtaining an expression, unless it
691 * is in a mapping. */
692 if (c != Ctrl_N && c != Ctrl_G && (c != 'e'
693 || (ccline.cmdfirstc == '=' && KeyTyped)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 {
695 vungetc(c);
696 c = Ctrl_BSL;
697 }
698#ifdef FEAT_EVAL
699 else if (c == 'e')
700 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +0200701 char_u *p = NULL;
702 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000703
704 /*
705 * Replace the command line with the result of an expression.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000706 * Need to save and restore the current command line, to be
707 * able to enter a new one...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 */
709 if (ccline.cmdpos == ccline.cmdlen)
710 new_cmdpos = 99999; /* keep it at the end */
711 else
712 new_cmdpos = ccline.cmdpos;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000713
714 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000716 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 if (c == '=')
718 {
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000719 /* Need to save and restore ccline. And set "textlock"
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000720 * to avoid nasty things like going to another buffer when
721 * evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000722 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000723 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 p = get_expr_line();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000725 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000726 restore_cmdline(&save_ccline);
727
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200728 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729 {
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200730 len = (int)STRLEN(p);
731 if (realloc_cmdbuff(len + 1) == OK)
732 {
733 ccline.cmdlen = len;
734 STRCPY(ccline.cmdbuff, p);
735 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200737 /* Restore the cursor or use the position set with
738 * set_cmdline_pos(). */
739 if (new_cmdpos > ccline.cmdlen)
740 ccline.cmdpos = ccline.cmdlen;
741 else
742 ccline.cmdpos = new_cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200744 KeyTyped = FALSE; /* Don't do p_wc completion. */
745 redrawcmd();
746 goto cmdline_changed;
747 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 }
749 }
750 beep_flush();
Bram Moolenaar66b4bf82010-11-16 14:06:08 +0100751 got_int = FALSE; /* don't abandon the command line */
752 did_emsg = FALSE;
753 emsg_on_display = FALSE;
754 redrawcmd();
755 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756 }
757#endif
758 else
759 {
760 if (c == Ctrl_G && p_im && restart_edit == 0)
761 restart_edit = 'a';
762 gotesc = TRUE; /* will free ccline.cmdbuff after putting it
763 in history */
764 goto returncmd; /* back to Normal mode */
765 }
766 }
767
768#ifdef FEAT_CMDWIN
769 if (c == cedit_key || c == K_CMDWIN)
770 {
Bram Moolenaar58da7072014-09-09 18:45:49 +0200771 if (ex_normal_busy == 0 && got_int == FALSE)
772 {
773 /*
774 * Open a window to edit the command line (and history).
775 */
776 c = ex_window();
777 some_key_typed = TRUE;
778 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 }
780# ifdef FEAT_DIGRAPHS
781 else
782# endif
783#endif
784#ifdef FEAT_DIGRAPHS
785 c = do_digraph(c);
786#endif
787
788 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC
789 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL)))
790 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000791 /* In Ex mode a backslash escapes a newline. */
792 if (exmode_active
793 && c != ESC
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000794 && ccline.cmdpos == ccline.cmdlen
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000795 && ccline.cmdpos > 0
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000796 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000798 if (c == K_KENTER)
799 c = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000801 else
802 {
803 gotesc = FALSE; /* Might have typed ESC previously, don't
804 truncate the cmdline now. */
805 if (ccheck_abbr(c + ABBR_OFF))
806 goto cmdline_changed;
807 if (!cmd_silent)
808 {
809 windgoto(msg_row, 0);
810 out_flush();
811 }
812 break;
813 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 }
815
816 /*
817 * Completion for 'wildchar' or 'wildcharm' key.
818 * - hitting <ESC> twice means: abandon command line.
819 * - wildcard expansion is only done when the 'wildchar' key is really
820 * typed, not when it comes from a macro
821 */
822 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm)
823 {
824 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */
825 {
826 /* if 'wildmode' contains "list" may still need to list */
827 if (xpc.xp_numfiles > 1
828 && !did_wild_list
829 && (wim_flags[wim_index] & WIM_LIST))
830 {
831 (void)showmatches(&xpc, FALSE);
832 redrawcmd();
833 did_wild_list = TRUE;
834 }
835 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100836 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
837 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100839 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
840 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 else
842 res = OK; /* don't insert 'wildchar' now */
843 }
844 else /* typed p_wc first time */
845 {
846 wim_index = 0;
847 j = ccline.cmdpos;
848 /* if 'wildmode' first contains "longest", get longest
849 * common part */
850 if (wim_flags[0] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100851 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
852 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 else
Bram Moolenaarb3479632012-11-28 16:49:58 +0100854 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP,
855 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856
857 /* if interrupted while completing, behave like it failed */
858 if (got_int)
859 {
860 (void)vpeekc(); /* remove <C-C> from input stream */
861 got_int = FALSE; /* don't abandon the command line */
862 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
863#ifdef FEAT_WILDMENU
864 xpc.xp_context = EXPAND_NOTHING;
865#endif
866 goto cmdline_changed;
867 }
868
869 /* when more than one match, and 'wildmode' first contains
870 * "list", or no change and 'wildmode' contains "longest,list",
871 * list all matches */
872 if (res == OK && xpc.xp_numfiles > 1)
873 {
874 /* a "longest" that didn't do anything is skipped (but not
875 * "list:longest") */
876 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j)
877 wim_index = 1;
878 if ((wim_flags[wim_index] & WIM_LIST)
879#ifdef FEAT_WILDMENU
880 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0)
881#endif
882 )
883 {
884 if (!(wim_flags[0] & WIM_LONGEST))
885 {
886#ifdef FEAT_WILDMENU
887 int p_wmnu_save = p_wmnu;
888 p_wmnu = 0;
889#endif
Bram Moolenaarb3479632012-11-28 16:49:58 +0100890 /* remove match */
891 nextwild(&xpc, WILD_PREV, 0, firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892#ifdef FEAT_WILDMENU
893 p_wmnu = p_wmnu_save;
894#endif
895 }
896#ifdef FEAT_WILDMENU
897 (void)showmatches(&xpc, p_wmnu
898 && ((wim_flags[wim_index] & WIM_LIST) == 0));
899#else
900 (void)showmatches(&xpc, FALSE);
901#endif
902 redrawcmd();
903 did_wild_list = TRUE;
904 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100905 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
906 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100908 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
909 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 }
911 else
Bram Moolenaar165bc692015-07-21 17:53:25 +0200912 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 }
914#ifdef FEAT_WILDMENU
915 else if (xpc.xp_numfiles == -1)
916 xpc.xp_context = EXPAND_NOTHING;
917#endif
918 }
919 if (wim_index < 3)
920 ++wim_index;
921 if (c == ESC)
922 gotesc = TRUE;
923 if (res == OK)
924 goto cmdline_changed;
925 }
926
927 gotesc = FALSE;
928
929 /* <S-Tab> goes to last match, in a clumsy way */
930 if (c == K_S_TAB && KeyTyped)
931 {
Bram Moolenaarb3479632012-11-28 16:49:58 +0100932 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0, firstc != '@') == OK
933 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK
934 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 goto cmdline_changed;
936 }
937
938 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */
939 c = NL;
940
941 do_abbr = TRUE; /* default: check for abbreviation */
942
943 /*
944 * Big switch for a typed command line character.
945 */
946 switch (c)
947 {
948 case K_BS:
949 case Ctrl_H:
950 case K_DEL:
951 case K_KDEL:
952 case Ctrl_W:
953#ifdef FEAT_FKMAP
954 if (cmd_fkmap && c == K_BS)
955 c = K_DEL;
956#endif
957 if (c == K_KDEL)
958 c = K_DEL;
959
960 /*
961 * delete current character is the same as backspace on next
962 * character, except at end of line
963 */
964 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen)
965 ++ccline.cmdpos;
966#ifdef FEAT_MBYTE
967 if (has_mbyte && c == K_DEL)
968 ccline.cmdpos += mb_off_next(ccline.cmdbuff,
969 ccline.cmdbuff + ccline.cmdpos);
970#endif
971 if (ccline.cmdpos > 0)
972 {
973 char_u *p;
974
975 j = ccline.cmdpos;
976 p = ccline.cmdbuff + j;
977#ifdef FEAT_MBYTE
978 if (has_mbyte)
979 {
980 p = mb_prevptr(ccline.cmdbuff, p);
981 if (c == Ctrl_W)
982 {
983 while (p > ccline.cmdbuff && vim_isspace(*p))
984 p = mb_prevptr(ccline.cmdbuff, p);
985 i = mb_get_class(p);
986 while (p > ccline.cmdbuff && mb_get_class(p) == i)
987 p = mb_prevptr(ccline.cmdbuff, p);
988 if (mb_get_class(p) != i)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000989 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 }
991 }
992 else
993#endif
994 if (c == Ctrl_W)
995 {
996 while (p > ccline.cmdbuff && vim_isspace(p[-1]))
997 --p;
998 i = vim_iswordc(p[-1]);
999 while (p > ccline.cmdbuff && !vim_isspace(p[-1])
1000 && vim_iswordc(p[-1]) == i)
1001 --p;
1002 }
1003 else
1004 --p;
1005 ccline.cmdpos = (int)(p - ccline.cmdbuff);
1006 ccline.cmdlen -= j - ccline.cmdpos;
1007 i = ccline.cmdpos;
1008 while (i < ccline.cmdlen)
1009 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1010
1011 /* Truncate at the end, required for multi-byte chars. */
1012 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001013#ifdef FEAT_SEARCH_EXTRA
1014 if (ccline.cmdlen == 0)
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001015 {
Bram Moolenaardda933d2016-09-03 21:04:58 +02001016 search_start = save_cursor;
1017 /* save view settings, so that the screen
1018 * won't be restored at the wrong position */
1019 old_curswant = init_curswant;
1020 old_leftcol = init_leftcol;
1021 old_topline = init_topline;
1022# ifdef FEAT_DIFF
1023 old_topfill = init_topfill;
1024# endif
1025 old_botline = init_botline;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001026 }
1027#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 redrawcmd();
1029 }
1030 else if (ccline.cmdlen == 0 && c != Ctrl_W
1031 && ccline.cmdprompt == NULL && indent == 0)
1032 {
1033 /* In ex and debug mode it doesn't make sense to return. */
1034 if (exmode_active
1035#ifdef FEAT_EVAL
1036 || ccline.cmdfirstc == '>'
1037#endif
1038 )
1039 goto cmdline_not_changed;
1040
1041 vim_free(ccline.cmdbuff); /* no commandline to return */
1042 ccline.cmdbuff = NULL;
1043 if (!cmd_silent)
1044 {
1045#ifdef FEAT_RIGHTLEFT
1046 if (cmdmsg_rl)
1047 msg_col = Columns;
1048 else
1049#endif
1050 msg_col = 0;
1051 msg_putchar(' '); /* delete ':' */
1052 }
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001053#ifdef FEAT_SEARCH_EXTRA
1054 if (ccline.cmdlen == 0)
Bram Moolenaardda933d2016-09-03 21:04:58 +02001055 search_start = save_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001056#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 redraw_cmdline = TRUE;
1058 goto returncmd; /* back to cmd mode */
1059 }
1060 goto cmdline_changed;
1061
1062 case K_INS:
1063 case K_KINS:
1064#ifdef FEAT_FKMAP
1065 /* if Farsi mode set, we are in reverse insert mode -
1066 Do not change the mode */
1067 if (cmd_fkmap)
1068 beep_flush();
1069 else
1070#endif
1071 ccline.overstrike = !ccline.overstrike;
1072#ifdef CURSOR_SHAPE
1073 ui_cursor_shape(); /* may show different cursor shape */
1074#endif
1075 goto cmdline_not_changed;
1076
1077 case Ctrl_HAT:
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00001078 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079 {
1080 /* ":lmap" mappings exists, toggle use of mappings. */
1081 State ^= LANGMAP;
1082#ifdef USE_IM_CONTROL
1083 im_set_active(FALSE); /* Disable input method */
1084#endif
1085 if (b_im_ptr != NULL)
1086 {
1087 if (State & LANGMAP)
1088 *b_im_ptr = B_IMODE_LMAP;
1089 else
1090 *b_im_ptr = B_IMODE_NONE;
1091 }
1092 }
1093#ifdef USE_IM_CONTROL
1094 else
1095 {
1096 /* There are no ":lmap" mappings, toggle IM. When
1097 * 'imdisable' is set don't try getting the status, it's
1098 * always off. */
1099 if ((p_imdisable && b_im_ptr != NULL)
1100 ? *b_im_ptr == B_IMODE_IM : im_get_status())
1101 {
1102 im_set_active(FALSE); /* Disable input method */
1103 if (b_im_ptr != NULL)
1104 *b_im_ptr = B_IMODE_NONE;
1105 }
1106 else
1107 {
1108 im_set_active(TRUE); /* Enable input method */
1109 if (b_im_ptr != NULL)
1110 *b_im_ptr = B_IMODE_IM;
1111 }
1112 }
1113#endif
1114 if (b_im_ptr != NULL)
1115 {
1116 if (b_im_ptr == &curbuf->b_p_iminsert)
1117 set_iminsert_global();
1118 else
1119 set_imsearch_global();
1120 }
1121#ifdef CURSOR_SHAPE
1122 ui_cursor_shape(); /* may show different cursor shape */
1123#endif
1124#if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
1125 /* Show/unshow value of 'keymap' in status lines later. */
1126 status_redraw_curbuf();
1127#endif
1128 goto cmdline_not_changed;
1129
1130/* case '@': only in very old vi */
1131 case Ctrl_U:
1132 /* delete all characters left of the cursor */
1133 j = ccline.cmdpos;
1134 ccline.cmdlen -= j;
1135 i = ccline.cmdpos = 0;
1136 while (i < ccline.cmdlen)
1137 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1138 /* Truncate at the end, required for multi-byte chars. */
1139 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001140#ifdef FEAT_SEARCH_EXTRA
1141 if (ccline.cmdlen == 0)
Bram Moolenaardda933d2016-09-03 21:04:58 +02001142 search_start = save_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001143#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 redrawcmd();
1145 goto cmdline_changed;
1146
1147#ifdef FEAT_CLIPBOARD
1148 case Ctrl_Y:
1149 /* Copy the modeless selection, if there is one. */
1150 if (clip_star.state != SELECT_CLEARED)
1151 {
1152 if (clip_star.state == SELECT_DONE)
1153 clip_copy_modeless_selection(TRUE);
1154 goto cmdline_not_changed;
1155 }
1156 break;
1157#endif
1158
1159 case ESC: /* get here if p_wc != ESC or when ESC typed twice */
1160 case Ctrl_C:
Bram Moolenaarf4d11452005-12-02 00:46:37 +00001161 /* In exmode it doesn't make sense to return. Except when
Bram Moolenaar7c626922005-02-07 22:01:03 +00001162 * ":normal" runs out of characters. */
1163 if (exmode_active
Bram Moolenaare2c38102016-01-31 14:55:40 +01001164 && (ex_normal_busy == 0 || typebuf.tb_len > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 goto cmdline_not_changed;
1166
1167 gotesc = TRUE; /* will free ccline.cmdbuff after
1168 putting it in history */
1169 goto returncmd; /* back to cmd mode */
1170
1171 case Ctrl_R: /* insert register */
1172#ifdef USE_ON_FLY_SCROLL
1173 dont_scroll = TRUE; /* disallow scrolling here */
1174#endif
1175 putcmdline('"', TRUE);
1176 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001177 i = c = plain_vgetc(); /* CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 if (i == Ctrl_O)
1179 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */
1180 if (i == Ctrl_R)
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001181 c = plain_vgetc(); /* CTRL-R CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 --no_mapping;
1183#ifdef FEAT_EVAL
1184 /*
1185 * Insert the result of an expression.
1186 * Need to save the current command line, to be able to enter
1187 * a new one...
1188 */
1189 new_cmdpos = -1;
1190 if (c == '=')
1191 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 if (ccline.cmdfirstc == '=')/* can't do this recursively */
1193 {
1194 beep_flush();
1195 c = ESC;
1196 }
1197 else
1198 {
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001199 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001201 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 }
1203 }
1204#endif
1205 if (c != ESC) /* use ESC to cancel inserting register */
1206 {
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001207 cmdline_paste(c, i == Ctrl_R, FALSE);
Bram Moolenaaracf53452005-12-17 22:06:52 +00001208
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001209#ifdef FEAT_EVAL
Bram Moolenaaracf53452005-12-17 22:06:52 +00001210 /* When there was a serious error abort getting the
1211 * command line. */
1212 if (aborting())
1213 {
1214 gotesc = TRUE; /* will free ccline.cmdbuff after
1215 putting it in history */
1216 goto returncmd; /* back to cmd mode */
1217 }
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001218#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 KeyTyped = FALSE; /* Don't do p_wc completion. */
1220#ifdef FEAT_EVAL
1221 if (new_cmdpos >= 0)
1222 {
1223 /* set_cmdline_pos() was used */
1224 if (new_cmdpos > ccline.cmdlen)
1225 ccline.cmdpos = ccline.cmdlen;
1226 else
1227 ccline.cmdpos = new_cmdpos;
1228 }
1229#endif
1230 }
1231 redrawcmd();
1232 goto cmdline_changed;
1233
1234 case Ctrl_D:
1235 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING)
1236 break; /* Use ^D as normal char instead */
1237
1238 redrawcmd();
1239 continue; /* don't do incremental search now */
1240
1241 case K_RIGHT:
1242 case K_S_RIGHT:
1243 case K_C_RIGHT:
1244 do
1245 {
1246 if (ccline.cmdpos >= ccline.cmdlen)
1247 break;
1248 i = cmdline_charsize(ccline.cmdpos);
1249 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows)
1250 break;
1251 ccline.cmdspos += i;
1252#ifdef FEAT_MBYTE
1253 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001254 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 + ccline.cmdpos);
1256 else
1257#endif
1258 ++ccline.cmdpos;
1259 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001260 while ((c == K_S_RIGHT || c == K_C_RIGHT
1261 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 && ccline.cmdbuff[ccline.cmdpos] != ' ');
1263#ifdef FEAT_MBYTE
1264 if (has_mbyte)
1265 set_cmdspos_cursor();
1266#endif
1267 goto cmdline_not_changed;
1268
1269 case K_LEFT:
1270 case K_S_LEFT:
1271 case K_C_LEFT:
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001272 if (ccline.cmdpos == 0)
1273 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 do
1275 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 --ccline.cmdpos;
1277#ifdef FEAT_MBYTE
1278 if (has_mbyte) /* move to first byte of char */
1279 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff,
1280 ccline.cmdbuff + ccline.cmdpos);
1281#endif
1282 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos);
1283 }
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001284 while (ccline.cmdpos > 0
1285 && (c == K_S_LEFT || c == K_C_LEFT
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001286 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 && ccline.cmdbuff[ccline.cmdpos - 1] != ' ');
1288#ifdef FEAT_MBYTE
1289 if (has_mbyte)
1290 set_cmdspos_cursor();
1291#endif
1292 goto cmdline_not_changed;
1293
1294 case K_IGNORE:
Bram Moolenaar30405d32008-01-02 20:55:27 +00001295 /* Ignore mouse event or ex_window() result. */
1296 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297
Bram Moolenaar4770d092006-01-12 23:22:24 +00001298#ifdef FEAT_GUI_W32
1299 /* On Win32 ignore <M-F4>, we get it when closing the window was
1300 * cancelled. */
1301 case K_F4:
1302 if (mod_mask == MOD_MASK_ALT)
1303 {
1304 redrawcmd(); /* somehow the cmdline is cleared */
1305 goto cmdline_not_changed;
1306 }
1307 break;
1308#endif
1309
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310#ifdef FEAT_MOUSE
1311 case K_MIDDLEDRAG:
1312 case K_MIDDLERELEASE:
1313 goto cmdline_not_changed; /* Ignore mouse */
1314
1315 case K_MIDDLEMOUSE:
1316# ifdef FEAT_GUI
1317 /* When GUI is active, also paste when 'mouse' is empty */
1318 if (!gui.in_use)
1319# endif
1320 if (!mouse_has(MOUSE_COMMAND))
1321 goto cmdline_not_changed; /* Ignore mouse */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001322# ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 if (clip_star.available)
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001324 cmdline_paste('*', TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 else
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001326# endif
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001327 cmdline_paste(0, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 redrawcmd();
1329 goto cmdline_changed;
1330
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001331# ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 case K_DROP:
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001333 cmdline_paste('~', TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 redrawcmd();
1335 goto cmdline_changed;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001336# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337
1338 case K_LEFTDRAG:
1339 case K_LEFTRELEASE:
1340 case K_RIGHTDRAG:
1341 case K_RIGHTRELEASE:
1342 /* Ignore drag and release events when the button-down wasn't
1343 * seen before. */
1344 if (ignore_drag_release)
1345 goto cmdline_not_changed;
1346 /* FALLTHROUGH */
1347 case K_LEFTMOUSE:
1348 case K_RIGHTMOUSE:
1349 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE)
1350 ignore_drag_release = TRUE;
1351 else
1352 ignore_drag_release = FALSE;
1353# ifdef FEAT_GUI
1354 /* When GUI is active, also move when 'mouse' is empty */
1355 if (!gui.in_use)
1356# endif
1357 if (!mouse_has(MOUSE_COMMAND))
1358 goto cmdline_not_changed; /* Ignore mouse */
1359# ifdef FEAT_CLIPBOARD
1360 if (mouse_row < cmdline_row && clip_star.available)
1361 {
1362 int button, is_click, is_drag;
1363
1364 /*
1365 * Handle modeless selection.
1366 */
1367 button = get_mouse_button(KEY2TERMCAP1(c),
1368 &is_click, &is_drag);
1369 if (mouse_model_popup() && button == MOUSE_LEFT
1370 && (mod_mask & MOD_MASK_SHIFT))
1371 {
1372 /* Translate shift-left to right button. */
1373 button = MOUSE_RIGHT;
1374 mod_mask &= ~MOD_MASK_SHIFT;
1375 }
1376 clip_modeless(button, is_click, is_drag);
1377 goto cmdline_not_changed;
1378 }
1379# endif
1380
1381 set_cmdspos();
1382 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen;
1383 ++ccline.cmdpos)
1384 {
1385 i = cmdline_charsize(ccline.cmdpos);
1386 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns
1387 && mouse_col < ccline.cmdspos % Columns + i)
1388 break;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001389# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 if (has_mbyte)
1391 {
1392 /* Count ">" for double-wide char that doesn't fit. */
1393 correct_cmdspos(ccline.cmdpos, i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001394 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 + ccline.cmdpos) - 1;
1396 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001397# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 ccline.cmdspos += i;
1399 }
1400 goto cmdline_not_changed;
1401
1402 /* Mouse scroll wheel: ignored here */
1403 case K_MOUSEDOWN:
1404 case K_MOUSEUP:
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001405 case K_MOUSELEFT:
1406 case K_MOUSERIGHT:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407 /* Alternate buttons ignored here */
1408 case K_X1MOUSE:
1409 case K_X1DRAG:
1410 case K_X1RELEASE:
1411 case K_X2MOUSE:
1412 case K_X2DRAG:
1413 case K_X2RELEASE:
1414 goto cmdline_not_changed;
1415
1416#endif /* FEAT_MOUSE */
1417
1418#ifdef FEAT_GUI
1419 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */
1420 case K_LEFTRELEASE_NM:
1421 goto cmdline_not_changed;
1422
1423 case K_VER_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001424 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 {
1426 gui_do_scroll();
1427 redrawcmd();
1428 }
1429 goto cmdline_not_changed;
1430
1431 case K_HOR_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001432 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001434 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435 redrawcmd();
1436 }
1437 goto cmdline_not_changed;
1438#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001439#ifdef FEAT_GUI_TABLINE
1440 case K_TABLINE:
1441 case K_TABMENU:
1442 /* Don't want to change any tabs here. Make sure the same tab
1443 * is still selected. */
1444 if (gui_use_tabline())
1445 gui_mch_set_curtab(tabpage_index(curtab));
1446 goto cmdline_not_changed;
1447#endif
1448
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 case K_SELECT: /* end of Select mode mapping - ignore */
1450 goto cmdline_not_changed;
1451
1452 case Ctrl_B: /* begin of command line */
1453 case K_HOME:
1454 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455 case K_S_HOME:
1456 case K_C_HOME:
1457 ccline.cmdpos = 0;
1458 set_cmdspos();
1459 goto cmdline_not_changed;
1460
1461 case Ctrl_E: /* end of command line */
1462 case K_END:
1463 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464 case K_S_END:
1465 case K_C_END:
1466 ccline.cmdpos = ccline.cmdlen;
1467 set_cmdspos_cursor();
1468 goto cmdline_not_changed;
1469
1470 case Ctrl_A: /* all matches */
Bram Moolenaarb3479632012-11-28 16:49:58 +01001471 if (nextwild(&xpc, WILD_ALL, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 break;
1473 goto cmdline_changed;
1474
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001475 case Ctrl_L:
1476#ifdef FEAT_SEARCH_EXTRA
1477 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1478 {
1479 /* Add a character from under the cursor for 'incsearch' */
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001480 if (did_incsearch)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001481 {
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001482 curwin->w_cursor = match_end;
Bram Moolenaardda933d2016-09-03 21:04:58 +02001483 if (!equalpos(curwin->w_cursor, search_start))
Bram Moolenaar93db9752006-11-21 10:29:45 +00001484 {
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001485 c = gchar_cursor();
1486 /* If 'ignorecase' and 'smartcase' are set and the
1487 * command line has no uppercase characters, convert
1488 * the character to lowercase */
1489 if (p_ic && p_scs
1490 && !pat_has_uppercase(ccline.cmdbuff))
1491 c = MB_TOLOWER(c);
1492 if (c != NUL)
Bram Moolenaar93db9752006-11-21 10:29:45 +00001493 {
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001494 if (c == firstc || vim_strchr((char_u *)(
1495 p_magic ? "\\^$.*[" : "\\^$"), c)
1496 != NULL)
1497 {
1498 /* put a backslash before special
1499 * characters */
1500 stuffcharReadbuff(c);
1501 c = '\\';
1502 }
1503 break;
Bram Moolenaar93db9752006-11-21 10:29:45 +00001504 }
Bram Moolenaar93db9752006-11-21 10:29:45 +00001505 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001506 }
1507 goto cmdline_not_changed;
1508 }
1509#endif
1510
1511 /* completion: longest common part */
Bram Moolenaarb3479632012-11-28 16:49:58 +01001512 if (nextwild(&xpc, WILD_LONGEST, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 break;
1514 goto cmdline_changed;
1515
1516 case Ctrl_N: /* next match */
1517 case Ctrl_P: /* previous match */
Bram Moolenaar7df0f632016-08-26 19:56:00 +02001518 if (xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 {
Bram Moolenaarb3479632012-11-28 16:49:58 +01001520 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT,
1521 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 break;
Bram Moolenaar11956692016-08-27 16:26:56 +02001523 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 }
Bram Moolenaar11956692016-08-27 16:26:56 +02001525 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526
1527#ifdef FEAT_CMDHIST
1528 case K_UP:
1529 case K_DOWN:
1530 case K_S_UP:
1531 case K_S_DOWN:
1532 case K_PAGEUP:
1533 case K_KPAGEUP:
1534 case K_PAGEDOWN:
1535 case K_KPAGEDOWN:
1536 if (hislen == 0 || firstc == NUL) /* no history */
1537 goto cmdline_not_changed;
1538
1539 i = hiscnt;
1540
1541 /* save current command string so it can be restored later */
1542 if (lookfor == NULL)
1543 {
1544 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL)
1545 goto cmdline_not_changed;
1546 lookfor[ccline.cmdpos] = NUL;
1547 }
1548
1549 j = (int)STRLEN(lookfor);
1550 for (;;)
1551 {
1552 /* one step backwards */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001553 if (c == K_UP|| c == K_S_UP || c == Ctrl_P
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001554 || c == K_PAGEUP || c == K_KPAGEUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 {
1556 if (hiscnt == hislen) /* first time */
1557 hiscnt = hisidx[histype];
1558 else if (hiscnt == 0 && hisidx[histype] != hislen - 1)
1559 hiscnt = hislen - 1;
1560 else if (hiscnt != hisidx[histype] + 1)
1561 --hiscnt;
1562 else /* at top of list */
1563 {
1564 hiscnt = i;
1565 break;
1566 }
1567 }
1568 else /* one step forwards */
1569 {
1570 /* on last entry, clear the line */
1571 if (hiscnt == hisidx[histype])
1572 {
1573 hiscnt = hislen;
1574 break;
1575 }
1576
1577 /* not on a history line, nothing to do */
1578 if (hiscnt == hislen)
1579 break;
1580 if (hiscnt == hislen - 1) /* wrap around */
1581 hiscnt = 0;
1582 else
1583 ++hiscnt;
1584 }
1585 if (hiscnt < 0 || history[histype][hiscnt].hisstr == NULL)
1586 {
1587 hiscnt = i;
1588 break;
1589 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001590 if ((c != K_UP && c != K_DOWN)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001591 || hiscnt == i
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592 || STRNCMP(history[histype][hiscnt].hisstr,
1593 lookfor, (size_t)j) == 0)
1594 break;
1595 }
1596
1597 if (hiscnt != i) /* jumped to other entry */
1598 {
1599 char_u *p;
1600 int len;
1601 int old_firstc;
1602
1603 vim_free(ccline.cmdbuff);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001604 xpc.xp_context = EXPAND_NOTHING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 if (hiscnt == hislen)
1606 p = lookfor; /* back to the old one */
1607 else
1608 p = history[histype][hiscnt].hisstr;
1609
1610 if (histype == HIST_SEARCH
1611 && p != lookfor
1612 && (old_firstc = p[STRLEN(p) + 1]) != firstc)
1613 {
1614 /* Correct for the separator character used when
1615 * adding the history entry vs the one used now.
1616 * First loop: count length.
1617 * Second loop: copy the characters. */
1618 for (i = 0; i <= 1; ++i)
1619 {
1620 len = 0;
1621 for (j = 0; p[j] != NUL; ++j)
1622 {
1623 /* Replace old sep with new sep, unless it is
1624 * escaped. */
1625 if (p[j] == old_firstc
1626 && (j == 0 || p[j - 1] != '\\'))
1627 {
1628 if (i > 0)
1629 ccline.cmdbuff[len] = firstc;
1630 }
1631 else
1632 {
1633 /* Escape new sep, unless it is already
1634 * escaped. */
1635 if (p[j] == firstc
1636 && (j == 0 || p[j - 1] != '\\'))
1637 {
1638 if (i > 0)
1639 ccline.cmdbuff[len] = '\\';
1640 ++len;
1641 }
1642 if (i > 0)
1643 ccline.cmdbuff[len] = p[j];
1644 }
1645 ++len;
1646 }
1647 if (i == 0)
1648 {
1649 alloc_cmdbuff(len);
1650 if (ccline.cmdbuff == NULL)
1651 goto returncmd;
1652 }
1653 }
1654 ccline.cmdbuff[len] = NUL;
1655 }
1656 else
1657 {
1658 alloc_cmdbuff((int)STRLEN(p));
1659 if (ccline.cmdbuff == NULL)
1660 goto returncmd;
1661 STRCPY(ccline.cmdbuff, p);
1662 }
1663
1664 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
1665 redrawcmd();
1666 goto cmdline_changed;
1667 }
1668 beep_flush();
Bram Moolenaar11956692016-08-27 16:26:56 +02001669#endif
1670 goto cmdline_not_changed;
1671
Bram Moolenaar349e7d92016-09-03 20:04:34 +02001672#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar11956692016-08-27 16:26:56 +02001673 case Ctrl_G: /* next match */
1674 case Ctrl_T: /* previous match */
Bram Moolenaar11956692016-08-27 16:26:56 +02001675 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1676 {
1677 pos_T t;
1678 int search_flags = SEARCH_KEEP + SEARCH_NOOF
1679 + SEARCH_PEEK;
1680
1681 if (char_avail())
1682 continue;
1683 cursor_off();
1684 out_flush();
1685 if (c == Ctrl_G)
1686 {
1687 t = match_end;
1688 search_flags += SEARCH_COL;
1689 }
1690 else
1691 t = match_start;
1692 ++emsg_off;
1693 i = searchit(curwin, curbuf, &t,
1694 c == Ctrl_G ? FORWARD : BACKWARD,
1695 ccline.cmdbuff, count, search_flags,
1696 RE_SEARCH, 0, NULL);
1697 --emsg_off;
1698 if (i)
1699 {
Bram Moolenaardda933d2016-09-03 21:04:58 +02001700 search_start = match_start;
Bram Moolenaar11956692016-08-27 16:26:56 +02001701 match_end = t;
1702 match_start = t;
1703 if (c == Ctrl_T && firstc == '/')
1704 {
1705 /* move just before the current match, so that
1706 * when nv_search finishes the cursor will be
1707 * put back on the match */
Bram Moolenaardda933d2016-09-03 21:04:58 +02001708 search_start = t;
1709 (void)decl(&search_start);
Bram Moolenaar11956692016-08-27 16:26:56 +02001710 }
Bram Moolenaardda933d2016-09-03 21:04:58 +02001711 if (lt(t, search_start) && c == Ctrl_G)
Bram Moolenaar11956692016-08-27 16:26:56 +02001712 {
1713 /* wrap around */
Bram Moolenaardda933d2016-09-03 21:04:58 +02001714 search_start = t;
Bram Moolenaar11956692016-08-27 16:26:56 +02001715 if (firstc == '?')
Bram Moolenaardda933d2016-09-03 21:04:58 +02001716 (void)incl(&search_start);
Bram Moolenaar11956692016-08-27 16:26:56 +02001717 else
Bram Moolenaardda933d2016-09-03 21:04:58 +02001718 (void)decl(&search_start);
Bram Moolenaar11956692016-08-27 16:26:56 +02001719 }
1720
1721 set_search_match(&match_end);
1722 curwin->w_cursor = match_start;
1723 changed_cline_bef_curs();
1724 update_topline();
1725 validate_cursor();
1726 highlight_match = TRUE;
1727 old_curswant = curwin->w_curswant;
1728 old_leftcol = curwin->w_leftcol;
1729 old_topline = curwin->w_topline;
1730# ifdef FEAT_DIFF
1731 old_topfill = curwin->w_topfill;
1732# endif
1733 old_botline = curwin->w_botline;
1734 update_screen(NOT_VALID);
1735 redrawcmdline();
1736 }
1737 else
1738 vim_beep(BO_ERROR);
Bram Moolenaar349e7d92016-09-03 20:04:34 +02001739 goto cmdline_not_changed;
Bram Moolenaar11956692016-08-27 16:26:56 +02001740 }
Bram Moolenaar349e7d92016-09-03 20:04:34 +02001741 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742#endif
1743
1744 case Ctrl_V:
1745 case Ctrl_Q:
1746#ifdef FEAT_MOUSE
1747 ignore_drag_release = TRUE;
1748#endif
1749 putcmdline('^', TRUE);
1750 c = get_literal(); /* get next (two) character(s) */
1751 do_abbr = FALSE; /* don't do abbreviation now */
1752#ifdef FEAT_MBYTE
1753 /* may need to remove ^ when composing char was typed */
1754 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent)
1755 {
1756 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
1757 msg_putchar(' ');
1758 cursorcmd();
1759 }
1760#endif
1761 break;
1762
1763#ifdef FEAT_DIGRAPHS
1764 case Ctrl_K:
1765#ifdef FEAT_MOUSE
1766 ignore_drag_release = TRUE;
1767#endif
1768 putcmdline('?', TRUE);
1769#ifdef USE_ON_FLY_SCROLL
1770 dont_scroll = TRUE; /* disallow scrolling here */
1771#endif
1772 c = get_digraph(TRUE);
1773 if (c != NUL)
1774 break;
1775
1776 redrawcmd();
1777 goto cmdline_not_changed;
1778#endif /* FEAT_DIGRAPHS */
1779
1780#ifdef FEAT_RIGHTLEFT
1781 case Ctrl__: /* CTRL-_: switch language mode */
1782 if (!p_ari)
1783 break;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001784# ifdef FEAT_FKMAP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 if (p_altkeymap)
1786 {
1787 cmd_fkmap = !cmd_fkmap;
1788 if (cmd_fkmap) /* in Farsi always in Insert mode */
1789 ccline.overstrike = FALSE;
1790 }
1791 else /* Hebrew is default */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001792# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 cmd_hkmap = !cmd_hkmap;
1794 goto cmdline_not_changed;
1795#endif
1796
1797 default:
1798#ifdef UNIX
1799 if (c == intr_char)
1800 {
1801 gotesc = TRUE; /* will free ccline.cmdbuff after
1802 putting it in history */
1803 goto returncmd; /* back to Normal mode */
1804 }
1805#endif
1806 /*
1807 * Normal character with no special meaning. Just set mod_mask
1808 * to 0x0 so that typing Shift-Space in the GUI doesn't enter
1809 * the string <S-Space>. This should only happen after ^V.
1810 */
1811 if (!IS_SPECIAL(c))
1812 mod_mask = 0x0;
1813 break;
1814 }
1815 /*
1816 * End of switch on command line character.
1817 * We come here if we have a normal character.
1818 */
1819
Bram Moolenaarede3e632013-06-23 16:16:19 +02001820 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && (ccheck_abbr(
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821#ifdef FEAT_MBYTE
1822 /* Add ABBR_OFF for characters above 0x100, this is
1823 * what check_abbr() expects. */
1824 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
1825#endif
Bram Moolenaarede3e632013-06-23 16:16:19 +02001826 c) || c == Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 goto cmdline_changed;
1828
1829 /*
1830 * put the character in the command line
1831 */
1832 if (IS_SPECIAL(c) || mod_mask != 0)
1833 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE);
1834 else
1835 {
1836#ifdef FEAT_MBYTE
1837 if (has_mbyte)
1838 {
1839 j = (*mb_char2bytes)(c, IObuff);
1840 IObuff[j] = NUL; /* exclude composing chars */
1841 put_on_cmdline(IObuff, j, TRUE);
1842 }
1843 else
1844#endif
1845 {
1846 IObuff[0] = c;
1847 put_on_cmdline(IObuff, 1, TRUE);
1848 }
1849 }
1850 goto cmdline_changed;
1851
1852/*
1853 * This part implements incremental searches for "/" and "?"
1854 * Jump to cmdline_not_changed when a character has been read but the command
1855 * line did not change. Then we only search and redraw if something changed in
1856 * the past.
1857 * Jump to cmdline_changed when the command line did change.
1858 * (Sorry for the goto's, I know it is ugly).
1859 */
1860cmdline_not_changed:
1861#ifdef FEAT_SEARCH_EXTRA
1862 if (!incsearch_postponed)
1863 continue;
1864#endif
1865
1866cmdline_changed:
1867#ifdef FEAT_SEARCH_EXTRA
1868 /*
1869 * 'incsearch' highlighting.
1870 */
1871 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1872 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001873 pos_T end_pos;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001874#ifdef FEAT_RELTIME
1875 proftime_T tm;
1876#endif
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001877
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 /* if there is a character waiting, search and redraw later */
1879 if (char_avail())
1880 {
1881 incsearch_postponed = TRUE;
1882 continue;
1883 }
1884 incsearch_postponed = FALSE;
Bram Moolenaardda933d2016-09-03 21:04:58 +02001885 curwin->w_cursor = search_start; /* start at old position */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886
1887 /* If there is no command line, don't do anything */
1888 if (ccline.cmdlen == 0)
1889 i = 0;
1890 else
1891 {
1892 cursor_off(); /* so the user knows we're busy */
1893 out_flush();
1894 ++emsg_off; /* So it doesn't beep if bad expr */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001895#ifdef FEAT_RELTIME
1896 /* Set the time limit to half a second. */
1897 profile_setlimit(500L, &tm);
1898#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 i = do_search(NULL, firstc, ccline.cmdbuff, count,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001900 SEARCH_KEEP + SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK,
1901#ifdef FEAT_RELTIME
1902 &tm
1903#else
1904 NULL
1905#endif
1906 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 --emsg_off;
1908 /* if interrupted while searching, behave like it failed */
1909 if (got_int)
1910 {
1911 (void)vpeekc(); /* remove <C-C> from input stream */
1912 got_int = FALSE; /* don't abandon the command line */
1913 i = 0;
1914 }
1915 else if (char_avail())
1916 /* cancelled searching because a char was typed */
1917 incsearch_postponed = TRUE;
1918 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001919 if (i != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 highlight_match = TRUE; /* highlight position */
1921 else
1922 highlight_match = FALSE; /* remove highlight */
1923
1924 /* first restore the old curwin values, so the screen is
1925 * positioned in the same way as the actual search command */
1926 curwin->w_leftcol = old_leftcol;
1927 curwin->w_topline = old_topline;
1928# ifdef FEAT_DIFF
1929 curwin->w_topfill = old_topfill;
1930# endif
1931 curwin->w_botline = old_botline;
1932 changed_cline_bef_curs();
1933 update_topline();
1934
1935 if (i != 0)
1936 {
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001937 pos_T save_pos = curwin->w_cursor;
1938
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001939 match_start = curwin->w_cursor;
1940 set_search_match(&curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 validate_cursor();
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001942 end_pos = curwin->w_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001943 match_end = end_pos;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001944 curwin->w_cursor = save_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 }
Bram Moolenaardb552d602006-03-23 22:59:57 +00001946 else
1947 end_pos = curwin->w_cursor; /* shutup gcc 4 */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001948
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 validate_cursor();
Bram Moolenaar27a23192006-09-14 09:27:26 +00001950# ifdef FEAT_WINDOWS
1951 /* May redraw the status line to show the cursor position. */
1952 if (p_ru && curwin->w_status_height > 0)
1953 curwin->w_redr_status = TRUE;
1954# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00001956 save_cmdline(&save_ccline);
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001957 update_screen(SOME_VALID);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00001958 restore_cmdline(&save_ccline);
1959
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001960 /* Leave it at the end to make CTRL-R CTRL-W work. */
1961 if (i != 0)
1962 curwin->w_cursor = end_pos;
1963
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964 msg_starthere();
1965 redrawcmdline();
1966 did_incsearch = TRUE;
1967 }
1968#else /* FEAT_SEARCH_EXTRA */
1969 ;
1970#endif
1971
1972#ifdef FEAT_RIGHTLEFT
1973 if (cmdmsg_rl
1974# ifdef FEAT_ARABIC
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001975 || (p_arshape && !p_tbidi && enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976# endif
1977 )
1978 /* Always redraw the whole command line to fix shaping and
Bram Moolenaar58437e02012-02-22 17:58:04 +01001979 * right-left typing. Not efficient, but it works.
1980 * Do it only when there are no characters left to read
1981 * to avoid useless intermediate redraws. */
1982 if (vpeekc() == NUL)
1983 redrawcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984#endif
1985 }
1986
1987returncmd:
1988
1989#ifdef FEAT_RIGHTLEFT
1990 cmdmsg_rl = FALSE;
1991#endif
1992
1993#ifdef FEAT_FKMAP
1994 cmd_fkmap = 0;
1995#endif
1996
1997 ExpandCleanup(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001998 ccline.xpc = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999
2000#ifdef FEAT_SEARCH_EXTRA
2001 if (did_incsearch)
2002 {
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02002003 if (gotesc)
Bram Moolenaardda933d2016-09-03 21:04:58 +02002004 curwin->w_cursor = save_cursor;
2005 else
2006 {
2007 if (!equalpos(save_cursor, search_start))
2008 {
2009 /* put the '" mark at the original position */
2010 curwin->w_cursor = save_cursor;
2011 setpcmark();
2012 }
2013 curwin->w_cursor = search_start;
2014 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 curwin->w_curswant = old_curswant;
2016 curwin->w_leftcol = old_leftcol;
2017 curwin->w_topline = old_topline;
2018# ifdef FEAT_DIFF
2019 curwin->w_topfill = old_topfill;
2020# endif
2021 curwin->w_botline = old_botline;
2022 highlight_match = FALSE;
2023 validate_cursor(); /* needed for TAB */
Bram Moolenaar600dddc2006-03-12 22:05:10 +00002024 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 }
2026#endif
2027
2028 if (ccline.cmdbuff != NULL)
2029 {
2030 /*
2031 * Put line in history buffer (":" and "=" only when it was typed).
2032 */
2033#ifdef FEAT_CMDHIST
2034 if (ccline.cmdlen && firstc != NUL
2035 && (some_key_typed || histype == HIST_SEARCH))
2036 {
2037 add_to_history(histype, ccline.cmdbuff, TRUE,
2038 histype == HIST_SEARCH ? firstc : NUL);
2039 if (firstc == ':')
2040 {
2041 vim_free(new_last_cmdline);
2042 new_last_cmdline = vim_strsave(ccline.cmdbuff);
2043 }
2044 }
2045#endif
2046
2047 if (gotesc) /* abandon command line */
2048 {
2049 vim_free(ccline.cmdbuff);
2050 ccline.cmdbuff = NULL;
2051 if (msg_scrolled == 0)
2052 compute_cmdrow();
2053 MSG("");
2054 redraw_cmdline = TRUE;
2055 }
2056 }
2057
2058 /*
2059 * If the screen was shifted up, redraw the whole screen (later).
2060 * If the line is too long, clear it, so ruler and shown command do
2061 * not get printed in the middle of it.
2062 */
2063 msg_check();
2064 msg_scroll = save_msg_scroll;
2065 redir_off = FALSE;
2066
2067 /* When the command line was typed, no need for a wait-return prompt. */
2068 if (some_key_typed)
2069 need_wait_return = FALSE;
2070
2071 State = save_State;
2072#ifdef USE_IM_CONTROL
2073 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP)
2074 im_save_status(b_im_ptr);
2075 im_set_active(FALSE);
2076#endif
2077#ifdef FEAT_MOUSE
2078 setmouse();
2079#endif
2080#ifdef CURSOR_SHAPE
2081 ui_cursor_shape(); /* may show different cursor shape */
2082#endif
2083
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002084 {
2085 char_u *p = ccline.cmdbuff;
2086
2087 /* Make ccline empty, getcmdline() may try to use it. */
2088 ccline.cmdbuff = NULL;
2089 return p;
2090 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091}
2092
2093#if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO)
2094/*
2095 * Get a command line with a prompt.
2096 * This is prepared to be called recursively from getcmdline() (e.g. by
2097 * f_input() when evaluating an expression from CTRL-R =).
2098 * Returns the command line in allocated memory, or NULL.
2099 */
2100 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002101getcmdline_prompt(
2102 int firstc,
2103 char_u *prompt, /* command line prompt */
2104 int attr, /* attributes for prompt */
2105 int xp_context, /* type of expansion */
2106 char_u *xp_arg) /* user-defined expansion argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107{
2108 char_u *s;
2109 struct cmdline_info save_ccline;
2110 int msg_col_save = msg_col;
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002111 int msg_silent_save = msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002113 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114 ccline.cmdprompt = prompt;
2115 ccline.cmdattr = attr;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002116# ifdef FEAT_EVAL
2117 ccline.xp_context = xp_context;
2118 ccline.xp_arg = xp_arg;
2119 ccline.input_fn = (firstc == '@');
2120# endif
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002121 msg_silent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122 s = getcmdline(firstc, 1L, 0);
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002123 restore_cmdline(&save_ccline);
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002124 msg_silent = msg_silent_save;
Bram Moolenaar1db1f772011-08-17 16:25:48 +02002125 /* Restore msg_col, the prompt from input() may have changed it.
2126 * But only if called recursively and the commandline is therefore being
2127 * restored to an old one; if not, the input() prompt stays on the screen,
2128 * so we need its modified msg_col left intact. */
2129 if (ccline.cmdbuff != NULL)
2130 msg_col = msg_col_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131
2132 return s;
2133}
2134#endif
2135
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002136/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002137 * Return TRUE when the text must not be changed and we can't switch to
2138 * another window or buffer. Used when editing the command line, evaluating
2139 * 'balloonexpr', etc.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002140 */
2141 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002142text_locked(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002143{
2144#ifdef FEAT_CMDWIN
2145 if (cmdwin_type != 0)
2146 return TRUE;
2147#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002148 return textlock != 0;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002149}
2150
2151/*
2152 * Give an error message for a command that isn't allowed while the cmdline
2153 * window is open or editing the cmdline in another way.
2154 */
2155 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002156text_locked_msg(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002157{
Bram Moolenaar5a497892016-09-03 16:29:04 +02002158 EMSG(_(get_text_locked_msg()));
2159}
2160
2161 char_u *
2162get_text_locked_msg(void)
2163{
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002164#ifdef FEAT_CMDWIN
2165 if (cmdwin_type != 0)
Bram Moolenaar5a497892016-09-03 16:29:04 +02002166 return e_cmdwin;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002167#endif
Bram Moolenaar5a497892016-09-03 16:29:04 +02002168 return e_secure;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002169}
2170
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002171#if defined(FEAT_AUTOCMD) || defined(PROTO)
2172/*
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002173 * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is
2174 * and give an error message.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002175 */
2176 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002177curbuf_locked(void)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002178{
2179 if (curbuf_lock > 0)
2180 {
2181 EMSG(_("E788: Not allowed to edit another buffer now"));
2182 return TRUE;
2183 }
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002184 return allbuf_locked();
2185}
2186
2187/*
2188 * Check if "allbuf_lock" is set and return TRUE when it is and give an error
2189 * message.
2190 */
2191 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002192allbuf_locked(void)
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002193{
2194 if (allbuf_lock > 0)
2195 {
2196 EMSG(_("E811: Not allowed to change buffer information now"));
2197 return TRUE;
2198 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002199 return FALSE;
2200}
2201#endif
2202
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002204cmdline_charsize(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205{
2206#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2207 if (cmdline_star > 0) /* showing '*', always 1 position */
2208 return 1;
2209#endif
2210 return ptr2cells(ccline.cmdbuff + idx);
2211}
2212
2213/*
2214 * Compute the offset of the cursor on the command line for the prompt and
2215 * indent.
2216 */
2217 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002218set_cmdspos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002220 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 ccline.cmdspos = 1 + ccline.cmdindent;
2222 else
2223 ccline.cmdspos = 0 + ccline.cmdindent;
2224}
2225
2226/*
2227 * Compute the screen position for the cursor on the command line.
2228 */
2229 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002230set_cmdspos_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231{
2232 int i, m, c;
2233
2234 set_cmdspos();
2235 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002236 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002238 if (m < 0) /* overflow, Columns or Rows at weird value */
2239 m = MAXCOL;
2240 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 else
2242 m = MAXCOL;
2243 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
2244 {
2245 c = cmdline_charsize(i);
2246#ifdef FEAT_MBYTE
2247 /* Count ">" for double-wide multi-byte char that doesn't fit. */
2248 if (has_mbyte)
2249 correct_cmdspos(i, c);
2250#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00002251 /* If the cmdline doesn't fit, show cursor on last visible char.
2252 * Don't move the cursor itself, so we can still append. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253 if ((ccline.cmdspos += c) >= m)
2254 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255 ccline.cmdspos -= c;
2256 break;
2257 }
2258#ifdef FEAT_MBYTE
2259 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002260 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261#endif
2262 }
2263}
2264
2265#ifdef FEAT_MBYTE
2266/*
2267 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2268 * character that doesn't fit, so that a ">" must be displayed.
2269 */
2270 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002271correct_cmdspos(int idx, int cells)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002273 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2275 && ccline.cmdspos % Columns + cells > Columns)
2276 ccline.cmdspos++;
2277}
2278#endif
2279
2280/*
2281 * Get an Ex command line for the ":" command.
2282 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002284getexline(
2285 int c, /* normally ':', NUL for ":append" */
2286 void *cookie UNUSED,
2287 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288{
2289 /* When executing a register, remove ':' that's in front of each line. */
2290 if (exec_from_reg && vpeekc() == ':')
2291 (void)vgetc();
2292 return getcmdline(c, 1L, indent);
2293}
2294
2295/*
2296 * Get an Ex command line for Ex mode.
2297 * In Ex mode we only use the OS supplied line editing features and no
2298 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002299 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002302getexmodeline(
2303 int promptc, /* normally ':', NUL for ":append" and '?' for
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002304 :s prompt */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002305 void *cookie UNUSED,
2306 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002308 garray_T line_ga;
2309 char_u *pend;
2310 int startcol = 0;
Bram Moolenaar76624232007-07-28 12:21:47 +00002311 int c1 = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002312 int escaped = FALSE; /* CTRL-V typed */
2313 int vcol = 0;
2314 char_u *p;
Bram Moolenaar76624232007-07-28 12:21:47 +00002315 int prev_char;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002316 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317
2318 /* Switch cursor on now. This avoids that it happens after the "\n", which
2319 * confuses the system function that computes tabstops. */
2320 cursor_on();
2321
2322 /* always start in column 0; write a newline if necessary */
2323 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002324 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002326 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002328 /* indent that is only displayed, not in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002329 if (p_prompt)
2330 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 while (indent-- > 0)
2332 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 }
2335
2336 ga_init2(&line_ga, 1, 30);
2337
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002338 /* autoindent for :insert and :append is in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002339 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002340 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002341 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002342 while (indent >= 8)
2343 {
2344 ga_append(&line_ga, TAB);
2345 msg_puts((char_u *)" ");
2346 indent -= 8;
2347 }
2348 while (indent-- > 0)
2349 {
2350 ga_append(&line_ga, ' ');
2351 msg_putchar(' ');
2352 }
2353 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002354 ++no_mapping;
2355 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002356
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 /*
2358 * Get the line, one character at a time.
2359 */
2360 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002361 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002363 long sw;
2364 char_u *s;
2365
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366 if (ga_grow(&line_ga, 40) == FAIL)
2367 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002369 /* Get one character at a time. Don't use inchar(), it can't handle
2370 * special characters. */
Bram Moolenaar76624232007-07-28 12:21:47 +00002371 prev_char = c1;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002372 c1 = vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373
2374 /*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002375 * Handle line editing.
2376 * Previously this was left to the system, putting the terminal in
2377 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002379 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002381 msg_putchar('\n');
2382 break;
2383 }
2384
2385 if (!escaped)
2386 {
2387 /* CR typed means "enter", which is NL */
2388 if (c1 == '\r')
2389 c1 = '\n';
2390
2391 if (c1 == BS || c1 == K_BS
2392 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002394 if (line_ga.ga_len > 0)
2395 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002396#ifdef FEAT_MBYTE
2397 if (has_mbyte)
2398 {
2399 p = (char_u *)line_ga.ga_data;
2400 p[line_ga.ga_len] = NUL;
2401 len = (*mb_head_off)(p, p + line_ga.ga_len - 1) + 1;
2402 line_ga.ga_len -= len;
2403 }
2404 else
2405#endif
2406 --line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002407 goto redraw;
2408 }
2409 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 }
2411
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002412 if (c1 == Ctrl_U)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002414 msg_col = startcol;
2415 msg_clr_eos();
2416 line_ga.ga_len = 0;
Bram Moolenaarda636572015-04-03 17:11:45 +02002417 goto redraw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002418 }
2419
2420 if (c1 == Ctrl_T)
2421 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002422 sw = get_sw_value(curbuf);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002423 p = (char_u *)line_ga.ga_data;
2424 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002425 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaar14f24742012-08-08 18:01:05 +02002426 indent += sw - indent % sw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002427add_indent:
Bram Moolenaar597a4222014-06-25 14:39:50 +02002428 while (get_indent_str(p, 8, FALSE) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002430 (void)ga_grow(&line_ga, 2); /* one more for the NUL */
Bram Moolenaarda636572015-04-03 17:11:45 +02002431 p = (char_u *)line_ga.ga_data;
2432 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002433 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2434 *s = ' ';
2435 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002437redraw:
2438 /* redraw the line */
2439 msg_col = startcol;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002440 vcol = 0;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002441 p = (char_u *)line_ga.ga_data;
2442 p[line_ga.ga_len] = NUL;
2443 while (p < (char_u *)line_ga.ga_data + line_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002445 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002447 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002449 msg_putchar(' ');
2450 } while (++vcol % 8);
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002451 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002453 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002455 len = MB_PTR2LEN(p);
2456 msg_outtrans_len(p, len);
2457 vcol += ptr2cells(p);
2458 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 }
2460 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002461 msg_clr_eos();
Bram Moolenaar76624232007-07-28 12:21:47 +00002462 windgoto(msg_row, msg_col);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002463 continue;
2464 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002466 if (c1 == Ctrl_D)
2467 {
2468 /* Delete one shiftwidth. */
2469 p = (char_u *)line_ga.ga_data;
2470 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002472 if (prev_char == '^')
2473 ex_keep_indent = TRUE;
2474 indent = 0;
2475 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476 }
2477 else
2478 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002479 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002480 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaarda636572015-04-03 17:11:45 +02002481 if (indent > 0)
2482 {
2483 --indent;
2484 indent -= indent % get_sw_value(curbuf);
2485 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02002487 while (get_indent_str(p, 8, FALSE) > indent)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002488 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002489 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002490 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2491 --line_ga.ga_len;
2492 }
2493 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002495
2496 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2497 {
2498 escaped = TRUE;
2499 continue;
2500 }
2501
2502 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
2503 if (IS_SPECIAL(c1))
2504 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002506
2507 if (IS_SPECIAL(c1))
2508 c1 = '?';
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002509#ifdef FEAT_MBYTE
2510 if (has_mbyte)
2511 len = (*mb_char2bytes)(c1,
2512 (char_u *)line_ga.ga_data + line_ga.ga_len);
2513 else
2514#endif
2515 {
2516 len = 1;
2517 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
2518 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002519 if (c1 == '\n')
2520 msg_putchar('\n');
2521 else if (c1 == TAB)
2522 {
2523 /* Don't use chartabsize(), 'ts' can be different */
2524 do
2525 {
2526 msg_putchar(' ');
2527 } while (++vcol % 8);
2528 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002529 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002531 msg_outtrans_len(
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002532 ((char_u *)line_ga.ga_data) + line_ga.ga_len, len);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002533 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534 }
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002535 line_ga.ga_len += len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002536 escaped = FALSE;
2537
2538 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002539 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002540
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002541 /* We are done when a NL is entered, but not when it comes after an
2542 * odd number of backslashes, that results in a NUL. */
2543 if (line_ga.ga_len > 0 && pend[-1] == '\n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 {
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002545 int bcount = 0;
2546
2547 while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\')
2548 ++bcount;
2549
2550 if (bcount > 0)
2551 {
2552 /* Halve the number of backslashes: "\NL" -> "NUL", "\\NL" ->
2553 * "\NL", etc. */
2554 line_ga.ga_len -= (bcount + 1) / 2;
2555 pend -= (bcount + 1) / 2;
2556 pend[-1] = '\n';
2557 }
2558
2559 if ((bcount & 1) == 0)
2560 {
2561 --line_ga.ga_len;
2562 --pend;
2563 *pend = NUL;
2564 break;
2565 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 }
2567 }
2568
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002569 --no_mapping;
2570 --allow_keys;
2571
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 /* make following messages go to the next line */
2573 msg_didout = FALSE;
2574 msg_col = 0;
2575 if (msg_row < Rows - 1)
2576 ++msg_row;
2577 emsg_on_display = FALSE; /* don't want ui_delay() */
2578
2579 if (got_int)
2580 ga_clear(&line_ga);
2581
2582 return (char_u *)line_ga.ga_data;
2583}
2584
Bram Moolenaare344bea2005-09-01 20:46:49 +00002585# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
2586 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587/*
2588 * Return TRUE if ccline.overstrike is on.
2589 */
2590 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002591cmdline_overstrike(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592{
2593 return ccline.overstrike;
2594}
2595
2596/*
2597 * Return TRUE if the cursor is at the end of the cmdline.
2598 */
2599 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002600cmdline_at_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601{
2602 return (ccline.cmdpos >= ccline.cmdlen);
2603}
2604#endif
2605
Bram Moolenaar9372a112005-12-06 19:59:18 +00002606#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607/*
2608 * Return the virtual column number at the current cursor position.
2609 * This is used by the IM code to obtain the start of the preedit string.
2610 */
2611 colnr_T
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002612cmdline_getvcol_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613{
2614 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
2615 return MAXCOL;
2616
2617# ifdef FEAT_MBYTE
2618 if (has_mbyte)
2619 {
2620 colnr_T col;
2621 int i = 0;
2622
2623 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002624 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625
2626 return col;
2627 }
2628 else
2629# endif
2630 return ccline.cmdpos;
2631}
2632#endif
2633
2634#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2635/*
2636 * If part of the command line is an IM preedit string, redraw it with
2637 * IM feedback attributes. The cursor position is restored after drawing.
2638 */
2639 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002640redrawcmd_preedit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641{
2642 if ((State & CMDLINE)
2643 && xic != NULL
Bram Moolenaar494c82a2006-09-14 08:25:49 +00002644 /* && im_get_status() doesn't work when using SCIM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645 && !p_imdisable
2646 && im_is_preediting())
2647 {
2648 int cmdpos = 0;
2649 int cmdspos;
2650 int old_row;
2651 int old_col;
2652 colnr_T col;
2653
2654 old_row = msg_row;
2655 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002656 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657
2658# ifdef FEAT_MBYTE
2659 if (has_mbyte)
2660 {
2661 for (col = 0; col < preedit_start_col
2662 && cmdpos < ccline.cmdlen; ++col)
2663 {
2664 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002665 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 }
2667 }
2668 else
2669# endif
2670 {
2671 cmdspos += preedit_start_col;
2672 cmdpos += preedit_start_col;
2673 }
2674
2675 msg_row = cmdline_row + (cmdspos / (int)Columns);
2676 msg_col = cmdspos % (int)Columns;
2677 if (msg_row >= Rows)
2678 msg_row = Rows - 1;
2679
2680 for (col = 0; cmdpos < ccline.cmdlen; ++col)
2681 {
2682 int char_len;
2683 int char_attr;
2684
2685 char_attr = im_get_feedback_attr(col);
2686 if (char_attr < 0)
2687 break; /* end of preedit string */
2688
2689# ifdef FEAT_MBYTE
2690 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002691 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 else
2693# endif
2694 char_len = 1;
2695
2696 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
2697 cmdpos += char_len;
2698 }
2699
2700 msg_row = old_row;
2701 msg_col = old_col;
2702 }
2703}
2704#endif /* FEAT_XIM && FEAT_GUI_GTK */
2705
2706/*
2707 * Allocate a new command line buffer.
2708 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
2709 * Returns the new value of ccline.cmdbuff and ccline.cmdbufflen.
2710 */
2711 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002712alloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713{
2714 /*
2715 * give some extra space to avoid having to allocate all the time
2716 */
2717 if (len < 80)
2718 len = 100;
2719 else
2720 len += 20;
2721
2722 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */
2723 ccline.cmdbufflen = len;
2724}
2725
2726/*
2727 * Re-allocate the command line to length len + something extra.
2728 * return FAIL for failure, OK otherwise
2729 */
2730 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002731realloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732{
2733 char_u *p;
2734
Bram Moolenaar673b87b2010-08-13 19:12:07 +02002735 if (len < ccline.cmdbufflen)
2736 return OK; /* no need to resize */
2737
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738 p = ccline.cmdbuff;
2739 alloc_cmdbuff(len); /* will get some more */
2740 if (ccline.cmdbuff == NULL) /* out of memory */
2741 {
2742 ccline.cmdbuff = p; /* keep the old one */
2743 return FAIL;
2744 }
Bram Moolenaar35a34232010-08-13 16:51:26 +02002745 /* There isn't always a NUL after the command, but it may need to be
2746 * there, thus copy up to the NUL and add a NUL. */
2747 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen);
2748 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749 vim_free(p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002750
2751 if (ccline.xpc != NULL
2752 && ccline.xpc->xp_pattern != NULL
2753 && ccline.xpc->xp_context != EXPAND_NOTHING
2754 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL)
2755 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00002756 int i = (int)(ccline.xpc->xp_pattern - p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002757
2758 /* If xp_pattern points inside the old cmdbuff it needs to be adjusted
2759 * to point into the newly allocated memory. */
2760 if (i >= 0 && i <= ccline.cmdlen)
2761 ccline.xpc->xp_pattern = ccline.cmdbuff + i;
2762 }
2763
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 return OK;
2765}
2766
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002767#if defined(FEAT_ARABIC) || defined(PROTO)
2768static char_u *arshape_buf = NULL;
2769
2770# if defined(EXITFREE) || defined(PROTO)
2771 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002772free_cmdline_buf(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002773{
2774 vim_free(arshape_buf);
2775}
2776# endif
2777#endif
2778
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779/*
2780 * Draw part of the cmdline at the current cursor position. But draw stars
2781 * when cmdline_star is TRUE.
2782 */
2783 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002784draw_cmdline(int start, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785{
2786#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2787 int i;
2788
2789 if (cmdline_star > 0)
2790 for (i = 0; i < len; ++i)
2791 {
2792 msg_putchar('*');
2793# ifdef FEAT_MBYTE
2794 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002795 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796# endif
2797 }
2798 else
2799#endif
2800#ifdef FEAT_ARABIC
2801 if (p_arshape && !p_tbidi && enc_utf8 && len > 0)
2802 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803 static int buflen = 0;
2804 char_u *p;
2805 int j;
2806 int newlen = 0;
2807 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00002808 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002809 int prev_c = 0;
2810 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002811 int u8c;
2812 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814
2815 /*
2816 * Do arabic shaping into a temporary buffer. This is very
2817 * inefficient!
2818 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002819 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 {
2821 /* Re-allocate the buffer. We keep it around to avoid a lot of
2822 * alloc()/free() calls. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002823 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002824 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002825 arshape_buf = alloc(buflen);
2826 if (arshape_buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 return; /* out of memory */
2828 }
2829
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002830 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
2831 {
2832 /* Prepend a space to draw the leading composing char on. */
2833 arshape_buf[0] = ' ';
2834 newlen = 1;
2835 }
2836
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 for (j = start; j < start + len; j += mb_l)
2838 {
2839 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002840 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002841 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002842 if (ARABIC_CHAR(u8c))
2843 {
2844 /* Do Arabic shaping. */
2845 if (cmdmsg_rl)
2846 {
2847 /* displaying from right to left */
2848 pc = prev_c;
2849 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002850 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 if (j + mb_l >= start + len)
2852 nc = NUL;
2853 else
2854 nc = utf_ptr2char(p + mb_l);
2855 }
2856 else
2857 {
2858 /* displaying from left to right */
2859 if (j + mb_l >= start + len)
2860 pc = NUL;
2861 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002862 {
2863 int pcc[MAX_MCO];
2864
2865 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002867 pc1 = pcc[0];
2868 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869 nc = prev_c;
2870 }
2871 prev_c = u8c;
2872
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002873 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002875 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002876 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002878 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
2879 if (u8cc[1] != 0)
2880 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002881 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882 }
2883 }
2884 else
2885 {
2886 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002887 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888 newlen += mb_l;
2889 }
2890 }
2891
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002892 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893 }
2894 else
2895#endif
2896 msg_outtrans_len(ccline.cmdbuff + start, len);
2897}
2898
2899/*
2900 * Put a character on the command line. Shifts the following text to the
2901 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
2902 * "c" must be printable (fit in one display cell)!
2903 */
2904 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002905putcmdline(int c, int shift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906{
2907 if (cmd_silent)
2908 return;
2909 msg_no_more = TRUE;
2910 msg_putchar(c);
2911 if (shift)
2912 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2913 msg_no_more = FALSE;
2914 cursorcmd();
2915}
2916
2917/*
2918 * Undo a putcmdline(c, FALSE).
2919 */
2920 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002921unputcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922{
2923 if (cmd_silent)
2924 return;
2925 msg_no_more = TRUE;
2926 if (ccline.cmdlen == ccline.cmdpos)
2927 msg_putchar(' ');
Bram Moolenaar64fdf5c2012-06-06 12:03:06 +02002928#ifdef FEAT_MBYTE
2929 else if (has_mbyte)
2930 draw_cmdline(ccline.cmdpos,
2931 (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos));
2932#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933 else
2934 draw_cmdline(ccline.cmdpos, 1);
2935 msg_no_more = FALSE;
2936 cursorcmd();
2937}
2938
2939/*
2940 * Put the given string, of the given length, onto the command line.
2941 * If len is -1, then STRLEN() is used to calculate the length.
2942 * If 'redraw' is TRUE then the new part of the command line, and the remaining
2943 * part will be redrawn, otherwise it will not. If this function is called
2944 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
2945 * called afterwards.
2946 */
2947 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002948put_on_cmdline(char_u *str, int len, int redraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949{
2950 int retval;
2951 int i;
2952 int m;
2953 int c;
2954
2955 if (len < 0)
2956 len = (int)STRLEN(str);
2957
2958 /* Check if ccline.cmdbuff needs to be longer */
2959 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
Bram Moolenaar673b87b2010-08-13 19:12:07 +02002960 retval = realloc_cmdbuff(ccline.cmdlen + len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961 else
2962 retval = OK;
2963 if (retval == OK)
2964 {
2965 if (!ccline.overstrike)
2966 {
2967 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2968 ccline.cmdbuff + ccline.cmdpos,
2969 (size_t)(ccline.cmdlen - ccline.cmdpos));
2970 ccline.cmdlen += len;
2971 }
2972 else
2973 {
2974#ifdef FEAT_MBYTE
2975 if (has_mbyte)
2976 {
2977 /* Count nr of characters in the new string. */
2978 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002979 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 ++m;
2981 /* Count nr of bytes in cmdline that are overwritten by these
2982 * characters. */
2983 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002984 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985 --m;
2986 if (i < ccline.cmdlen)
2987 {
2988 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2989 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
2990 ccline.cmdlen += ccline.cmdpos + len - i;
2991 }
2992 else
2993 ccline.cmdlen = ccline.cmdpos + len;
2994 }
2995 else
2996#endif
2997 if (ccline.cmdpos + len > ccline.cmdlen)
2998 ccline.cmdlen = ccline.cmdpos + len;
2999 }
3000 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
3001 ccline.cmdbuff[ccline.cmdlen] = NUL;
3002
3003#ifdef FEAT_MBYTE
3004 if (enc_utf8)
3005 {
3006 /* When the inserted text starts with a composing character,
3007 * backup to the character before it. There could be two of them.
3008 */
3009 i = 0;
3010 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3011 while (ccline.cmdpos > 0 && utf_iscomposing(c))
3012 {
3013 i = (*mb_head_off)(ccline.cmdbuff,
3014 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3015 ccline.cmdpos -= i;
3016 len += i;
3017 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3018 }
3019# ifdef FEAT_ARABIC
3020 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
3021 {
3022 /* Check the previous character for Arabic combining pair. */
3023 i = (*mb_head_off)(ccline.cmdbuff,
3024 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3025 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
3026 + ccline.cmdpos - i), c))
3027 {
3028 ccline.cmdpos -= i;
3029 len += i;
3030 }
3031 else
3032 i = 0;
3033 }
3034# endif
3035 if (i != 0)
3036 {
3037 /* Also backup the cursor position. */
3038 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
3039 ccline.cmdspos -= i;
3040 msg_col -= i;
3041 if (msg_col < 0)
3042 {
3043 msg_col += Columns;
3044 --msg_row;
3045 }
3046 }
3047 }
3048#endif
3049
3050 if (redraw && !cmd_silent)
3051 {
3052 msg_no_more = TRUE;
3053 i = cmdline_row;
Bram Moolenaar73dc59a2011-09-30 17:46:21 +02003054 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003055 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
3056 /* Avoid clearing the rest of the line too often. */
3057 if (cmdline_row != i || ccline.overstrike)
3058 msg_clr_eos();
3059 msg_no_more = FALSE;
3060 }
3061#ifdef FEAT_FKMAP
3062 /*
3063 * If we are in Farsi command mode, the character input must be in
3064 * Insert mode. So do not advance the cmdpos.
3065 */
3066 if (!cmd_fkmap)
3067#endif
3068 {
3069 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003070 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003072 if (m < 0) /* overflow, Columns or Rows at weird value */
3073 m = MAXCOL;
3074 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075 else
3076 m = MAXCOL;
3077 for (i = 0; i < len; ++i)
3078 {
3079 c = cmdline_charsize(ccline.cmdpos);
3080#ifdef FEAT_MBYTE
3081 /* count ">" for a double-wide char that doesn't fit. */
3082 if (has_mbyte)
3083 correct_cmdspos(ccline.cmdpos, c);
3084#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00003085 /* Stop cursor at the end of the screen, but do increment the
3086 * insert position, so that entering a very long command
3087 * works, even though you can't see it. */
3088 if (ccline.cmdspos + c < m)
3089 ccline.cmdspos += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090#ifdef FEAT_MBYTE
3091 if (has_mbyte)
3092 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003093 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094 if (c > len - i - 1)
3095 c = len - i - 1;
3096 ccline.cmdpos += c;
3097 i += c;
3098 }
3099#endif
3100 ++ccline.cmdpos;
3101 }
3102 }
3103 }
3104 if (redraw)
3105 msg_check();
3106 return retval;
3107}
3108
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003109static struct cmdline_info prev_ccline;
3110static int prev_ccline_used = FALSE;
3111
3112/*
3113 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
3114 * and overwrite it. But get_cmdline_str() may need it, thus make it
3115 * available globally in prev_ccline.
3116 */
3117 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003118save_cmdline(struct cmdline_info *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003119{
3120 if (!prev_ccline_used)
3121 {
3122 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info));
3123 prev_ccline_used = TRUE;
3124 }
3125 *ccp = prev_ccline;
3126 prev_ccline = ccline;
3127 ccline.cmdbuff = NULL;
3128 ccline.cmdprompt = NULL;
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003129 ccline.xpc = NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003130}
3131
3132/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003133 * Restore ccline after it has been saved with save_cmdline().
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003134 */
3135 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003136restore_cmdline(struct cmdline_info *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003137{
3138 ccline = prev_ccline;
3139 prev_ccline = *ccp;
3140}
3141
Bram Moolenaar5a305422006-04-28 22:38:25 +00003142#if defined(FEAT_EVAL) || defined(PROTO)
3143/*
3144 * Save the command line into allocated memory. Returns a pointer to be
3145 * passed to restore_cmdline_alloc() later.
3146 * Returns NULL when failed.
3147 */
3148 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003149save_cmdline_alloc(void)
Bram Moolenaar5a305422006-04-28 22:38:25 +00003150{
3151 struct cmdline_info *p;
3152
3153 p = (struct cmdline_info *)alloc((unsigned)sizeof(struct cmdline_info));
3154 if (p != NULL)
3155 save_cmdline(p);
3156 return (char_u *)p;
3157}
3158
3159/*
3160 * Restore the command line from the return value of save_cmdline_alloc().
3161 */
3162 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003163restore_cmdline_alloc(char_u *p)
Bram Moolenaar5a305422006-04-28 22:38:25 +00003164{
3165 if (p != NULL)
3166 {
3167 restore_cmdline((struct cmdline_info *)p);
3168 vim_free(p);
3169 }
3170}
3171#endif
3172
Bram Moolenaar8299df92004-07-10 09:47:34 +00003173/*
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003174 * Paste a yank register into the command line.
3175 * Used by CTRL-R command in command-line mode.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003176 * insert_reg() can't be used here, because special characters from the
3177 * register contents will be interpreted as commands.
3178 *
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003179 * Return FAIL for failure, OK otherwise.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003180 */
3181 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003182cmdline_paste(
3183 int regname,
3184 int literally, /* Insert text literally instead of "as typed" */
3185 int remcr) /* remove trailing CR */
Bram Moolenaar8299df92004-07-10 09:47:34 +00003186{
3187 long i;
3188 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003189 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003190 int allocated;
3191 struct cmdline_info save_ccline;
3192
3193 /* check for valid regname; also accept special characters for CTRL-R in
3194 * the command line */
3195 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
3196 && regname != Ctrl_A && !valid_yank_reg(regname, FALSE))
3197 return FAIL;
3198
3199 /* A register containing CTRL-R can cause an endless loop. Allow using
3200 * CTRL-C to break the loop. */
3201 line_breakcheck();
3202 if (got_int)
3203 return FAIL;
3204
3205#ifdef FEAT_CLIPBOARD
3206 regname = may_get_selection(regname);
3207#endif
3208
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003209 /* Need to save and restore ccline. And set "textlock" to avoid nasty
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003210 * things like going to another buffer when evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003211 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003212 ++textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003213 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003214 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003215 restore_cmdline(&save_ccline);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003216
3217 if (i)
3218 {
3219 /* Got the value of a special register in "arg". */
3220 if (arg == NULL)
3221 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003222
3223 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
3224 * part of the word. */
3225 p = arg;
3226 if (p_is && regname == Ctrl_W)
3227 {
3228 char_u *w;
3229 int len;
3230
3231 /* Locate start of last word in the cmd buffer. */
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003232 for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; )
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003233 {
3234#ifdef FEAT_MBYTE
3235 if (has_mbyte)
3236 {
3237 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
3238 if (!vim_iswordc(mb_ptr2char(w - len)))
3239 break;
3240 w -= len;
3241 }
3242 else
3243#endif
3244 {
3245 if (!vim_iswordc(w[-1]))
3246 break;
3247 --w;
3248 }
3249 }
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003250 len = (int)((ccline.cmdbuff + ccline.cmdpos) - w);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003251 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
3252 p += len;
3253 }
3254
3255 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003256 if (allocated)
3257 vim_free(arg);
3258 return OK;
3259 }
3260
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003261 return cmdline_paste_reg(regname, literally, remcr);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003262}
3263
3264/*
3265 * Put a string on the command line.
3266 * When "literally" is TRUE, insert literally.
3267 * When "literally" is FALSE, insert as typed, but don't leave the command
3268 * line.
3269 */
3270 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003271cmdline_paste_str(char_u *s, int literally)
Bram Moolenaar8299df92004-07-10 09:47:34 +00003272{
3273 int c, cv;
3274
3275 if (literally)
3276 put_on_cmdline(s, -1, TRUE);
3277 else
3278 while (*s != NUL)
3279 {
3280 cv = *s;
3281 if (cv == Ctrl_V && s[1])
3282 ++s;
3283#ifdef FEAT_MBYTE
3284 if (has_mbyte)
Bram Moolenaar48be32b2008-06-20 10:56:16 +00003285 c = mb_cptr2char_adv(&s);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003286 else
3287#endif
3288 c = *s++;
Bram Moolenaare79abdd2012-06-29 13:44:41 +02003289 if (cv == Ctrl_V || c == ESC || c == Ctrl_C
3290 || c == CAR || c == NL || c == Ctrl_L
Bram Moolenaar8299df92004-07-10 09:47:34 +00003291#ifdef UNIX
3292 || c == intr_char
3293#endif
3294 || (c == Ctrl_BSL && *s == Ctrl_N))
3295 stuffcharReadbuff(Ctrl_V);
3296 stuffcharReadbuff(c);
3297 }
3298}
3299
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300#ifdef FEAT_WILDMENU
3301/*
3302 * Delete characters on the command line, from "from" to the current
3303 * position.
3304 */
3305 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003306cmdline_del(int from)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307{
3308 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
3309 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3310 ccline.cmdlen -= ccline.cmdpos - from;
3311 ccline.cmdpos = from;
3312}
3313#endif
3314
3315/*
Bram Moolenaar89c79b92016-05-05 17:18:41 +02003316 * This function is called when the screen size changes and with incremental
3317 * search and in other situations where the command line may have been
3318 * overwritten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319 */
3320 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003321redrawcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003322{
3323 if (cmd_silent)
3324 return;
3325 need_wait_return = FALSE;
3326 compute_cmdrow();
3327 redrawcmd();
3328 cursorcmd();
3329}
3330
3331 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003332redrawcmdprompt(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333{
3334 int i;
3335
3336 if (cmd_silent)
3337 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003338 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339 msg_putchar(ccline.cmdfirstc);
3340 if (ccline.cmdprompt != NULL)
3341 {
3342 msg_puts_attr(ccline.cmdprompt, ccline.cmdattr);
3343 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
3344 /* do the reverse of set_cmdspos() */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003345 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346 --ccline.cmdindent;
3347 }
3348 else
3349 for (i = ccline.cmdindent; i > 0; --i)
3350 msg_putchar(' ');
3351}
3352
3353/*
3354 * Redraw what is currently on the command line.
3355 */
3356 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003357redrawcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358{
3359 if (cmd_silent)
3360 return;
3361
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003362 /* when 'incsearch' is set there may be no command line while redrawing */
3363 if (ccline.cmdbuff == NULL)
3364 {
3365 windgoto(cmdline_row, 0);
3366 msg_clr_eos();
3367 return;
3368 }
3369
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370 msg_start();
3371 redrawcmdprompt();
3372
3373 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
3374 msg_no_more = TRUE;
3375 draw_cmdline(0, ccline.cmdlen);
3376 msg_clr_eos();
3377 msg_no_more = FALSE;
3378
3379 set_cmdspos_cursor();
3380
3381 /*
3382 * An emsg() before may have set msg_scroll. This is used in normal mode,
3383 * in cmdline mode we can reset them now.
3384 */
3385 msg_scroll = FALSE; /* next message overwrites cmdline */
3386
3387 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
3388 * in cmdline mode */
3389 skip_redraw = FALSE;
3390}
3391
3392 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003393compute_cmdrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003395 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396 cmdline_row = Rows - 1;
3397 else
3398 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
3399 + W_STATUS_HEIGHT(lastwin);
3400}
3401
3402 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003403cursorcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404{
3405 if (cmd_silent)
3406 return;
3407
3408#ifdef FEAT_RIGHTLEFT
3409 if (cmdmsg_rl)
3410 {
3411 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3412 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3413 if (msg_row <= 0)
3414 msg_row = Rows - 1;
3415 }
3416 else
3417#endif
3418 {
3419 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3420 msg_col = ccline.cmdspos % (int)Columns;
3421 if (msg_row >= Rows)
3422 msg_row = Rows - 1;
3423 }
3424
3425 windgoto(msg_row, msg_col);
3426#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
3427 redrawcmd_preedit();
3428#endif
3429#ifdef MCH_CURSOR_SHAPE
3430 mch_update_cursor();
3431#endif
3432}
3433
3434 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003435gotocmdline(int clr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436{
3437 msg_start();
3438#ifdef FEAT_RIGHTLEFT
3439 if (cmdmsg_rl)
3440 msg_col = Columns - 1;
3441 else
3442#endif
3443 msg_col = 0; /* always start in column 0 */
3444 if (clr) /* clear the bottom line(s) */
3445 msg_clr_eos(); /* will reset clear_cmdline */
3446 windgoto(cmdline_row, 0);
3447}
3448
3449/*
3450 * Check the word in front of the cursor for an abbreviation.
3451 * Called when the non-id character "c" has been entered.
3452 * When an abbreviation is recognized it is removed from the text with
3453 * backspaces and the replacement string is inserted, followed by "c".
3454 */
3455 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003456ccheck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457{
3458 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
3459 return FALSE;
3460
3461 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, 0);
3462}
3463
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003464#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3465 static int
3466#ifdef __BORLANDC__
3467_RTLENTRYF
3468#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003469sort_func_compare(const void *s1, const void *s2)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003470{
3471 char_u *p1 = *(char_u **)s1;
3472 char_u *p2 = *(char_u **)s2;
3473
3474 if (*p1 != '<' && *p2 == '<') return -1;
3475 if (*p1 == '<' && *p2 != '<') return 1;
3476 return STRCMP(p1, p2);
3477}
3478#endif
3479
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480/*
3481 * Return FAIL if this is not an appropriate context in which to do
3482 * completion of anything, return OK if it is (even if there are no matches).
3483 * For the caller, this means that the character is just passed through like a
3484 * normal character (instead of being expanded). This allows :s/^I^D etc.
3485 */
3486 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003487nextwild(
3488 expand_T *xp,
3489 int type,
3490 int options, /* extra options for ExpandOne() */
3491 int escape) /* if TRUE, escape the returned matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492{
3493 int i, j;
3494 char_u *p1;
3495 char_u *p2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496 int difflen;
3497 int v;
3498
3499 if (xp->xp_numfiles == -1)
3500 {
3501 set_expand_context(xp);
3502 cmd_showtail = expand_showtail(xp);
3503 }
3504
3505 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
3506 {
3507 beep_flush();
3508 return OK; /* Something illegal on command line */
3509 }
3510 if (xp->xp_context == EXPAND_NOTHING)
3511 {
3512 /* Caller can use the character as a normal char instead */
3513 return FAIL;
3514 }
3515
3516 MSG_PUTS("..."); /* show that we are busy */
3517 out_flush();
3518
3519 i = (int)(xp->xp_pattern - ccline.cmdbuff);
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003520 xp->xp_pattern_len = ccline.cmdpos - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003521
3522 if (type == WILD_NEXT || type == WILD_PREV)
3523 {
3524 /*
3525 * Get next/previous match for a previous expanded pattern.
3526 */
3527 p2 = ExpandOne(xp, NULL, NULL, 0, type);
3528 }
3529 else
3530 {
3531 /*
3532 * Translate string into pattern and expand it.
3533 */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003534 if ((p1 = addstar(xp->xp_pattern, xp->xp_pattern_len,
3535 xp->xp_context)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536 p2 = NULL;
3537 else
3538 {
Bram Moolenaar94950a92010-12-02 16:01:29 +01003539 int use_options = options |
Bram Moolenaarb3479632012-11-28 16:49:58 +01003540 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT;
3541 if (escape)
3542 use_options |= WILD_ESCAPE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01003543
3544 if (p_wic)
3545 use_options += WILD_ICASE;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003546 p2 = ExpandOne(xp, p1,
3547 vim_strnsave(&ccline.cmdbuff[i], xp->xp_pattern_len),
Bram Moolenaar94950a92010-12-02 16:01:29 +01003548 use_options, type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003549 vim_free(p1);
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003550 /* longest match: make sure it is not shorter, happens with :help */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551 if (p2 != NULL && type == WILD_LONGEST)
3552 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003553 for (j = 0; j < xp->xp_pattern_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554 if (ccline.cmdbuff[i + j] == '*'
3555 || ccline.cmdbuff[i + j] == '?')
3556 break;
3557 if ((int)STRLEN(p2) < j)
3558 {
3559 vim_free(p2);
3560 p2 = NULL;
3561 }
3562 }
3563 }
3564 }
3565
3566 if (p2 != NULL && !got_int)
3567 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003568 difflen = (int)STRLEN(p2) - xp->xp_pattern_len;
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003569 if (ccline.cmdlen + difflen + 4 > ccline.cmdbufflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003570 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003571 v = realloc_cmdbuff(ccline.cmdlen + difflen + 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 xp->xp_pattern = ccline.cmdbuff + i;
3573 }
3574 else
3575 v = OK;
3576 if (v == OK)
3577 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003578 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen],
3579 &ccline.cmdbuff[ccline.cmdpos],
3580 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3581 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582 ccline.cmdlen += difflen;
3583 ccline.cmdpos += difflen;
3584 }
3585 }
3586 vim_free(p2);
3587
3588 redrawcmd();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003589 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590
3591 /* When expanding a ":map" command and no matches are found, assume that
3592 * the key is supposed to be inserted literally */
3593 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL)
3594 return FAIL;
3595
3596 if (xp->xp_numfiles <= 0 && p2 == NULL)
3597 beep_flush();
3598 else if (xp->xp_numfiles == 1)
3599 /* free expanded pattern */
3600 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
3601
3602 return OK;
3603}
3604
3605/*
3606 * Do wildcard expansion on the string 'str'.
3607 * Chars that should not be expanded must be preceded with a backslash.
Bram Moolenaarf9821062008-06-20 16:31:07 +00003608 * Return a pointer to allocated memory containing the new string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 * Return NULL for failure.
3610 *
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003611 * "orig" is the originally expanded string, copied to allocated memory. It
3612 * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or
3613 * WILD_PREV "orig" should be NULL.
3614 *
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003615 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode"
3616 * is WILD_EXPAND_FREE or WILD_ALL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 *
3618 * mode = WILD_FREE: just free previously expanded matches
3619 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches
3620 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches
3621 * mode = WILD_NEXT: use next match in multiple match, wrap to first
3622 * mode = WILD_PREV: use previous match in multiple match, wrap to first
3623 * mode = WILD_ALL: return all matches concatenated
3624 * mode = WILD_LONGEST: return longest matched part
Bram Moolenaar146e9c32012-03-07 19:18:23 +01003625 * mode = WILD_ALL_KEEP: get all matches, keep matches
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 *
3627 * options = WILD_LIST_NOTFOUND: list entries without a match
3628 * options = WILD_HOME_REPLACE: do home_replace() for buffer names
3629 * options = WILD_USE_NL: Use '\n' for WILD_ALL
3630 * options = WILD_NO_BEEP: Don't beep for multiple matches
3631 * options = WILD_ADD_SLASH: add a slash after directory names
3632 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries
3633 * options = WILD_SILENT: don't print warning messages
3634 * options = WILD_ESCAPE: put backslash before special chars
Bram Moolenaar94950a92010-12-02 16:01:29 +01003635 * options = WILD_ICASE: ignore case for files
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636 *
3637 * The variables xp->xp_context and xp->xp_backslash must have been set!
3638 */
3639 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003640ExpandOne(
3641 expand_T *xp,
3642 char_u *str,
3643 char_u *orig, /* allocated copy of original of expanded string */
3644 int options,
3645 int mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646{
3647 char_u *ss = NULL;
3648 static int findex;
3649 static char_u *orig_save = NULL; /* kept value of orig */
Bram Moolenaar96426642007-10-30 16:37:15 +00003650 int orig_saved = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 int i;
3652 long_u len;
3653 int non_suf_match; /* number without matching suffix */
3654
3655 /*
3656 * first handle the case of using an old match
3657 */
3658 if (mode == WILD_NEXT || mode == WILD_PREV)
3659 {
3660 if (xp->xp_numfiles > 0)
3661 {
3662 if (mode == WILD_PREV)
3663 {
3664 if (findex == -1)
3665 findex = xp->xp_numfiles;
3666 --findex;
3667 }
3668 else /* mode == WILD_NEXT */
3669 ++findex;
3670
3671 /*
3672 * When wrapping around, return the original string, set findex to
3673 * -1.
3674 */
3675 if (findex < 0)
3676 {
3677 if (orig_save == NULL)
3678 findex = xp->xp_numfiles - 1;
3679 else
3680 findex = -1;
3681 }
3682 if (findex >= xp->xp_numfiles)
3683 {
3684 if (orig_save == NULL)
3685 findex = 0;
3686 else
3687 findex = -1;
3688 }
3689#ifdef FEAT_WILDMENU
3690 if (p_wmnu)
3691 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files,
3692 findex, cmd_showtail);
3693#endif
3694 if (findex == -1)
3695 return vim_strsave(orig_save);
3696 return vim_strsave(xp->xp_files[findex]);
3697 }
3698 else
3699 return NULL;
3700 }
3701
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003702 /* free old names */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST)
3704 {
3705 FreeWild(xp->xp_numfiles, xp->xp_files);
3706 xp->xp_numfiles = -1;
3707 vim_free(orig_save);
3708 orig_save = NULL;
3709 }
3710 findex = 0;
3711
3712 if (mode == WILD_FREE) /* only release file name */
3713 return NULL;
3714
3715 if (xp->xp_numfiles == -1)
3716 {
3717 vim_free(orig_save);
3718 orig_save = orig;
Bram Moolenaar96426642007-10-30 16:37:15 +00003719 orig_saved = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720
3721 /*
3722 * Do the expansion.
3723 */
3724 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files,
3725 options) == FAIL)
3726 {
3727#ifdef FNAME_ILLEGAL
3728 /* Illegal file name has been silently skipped. But when there
3729 * are wildcards, the real problem is that there was no match,
3730 * causing the pattern to be added, which has illegal characters.
3731 */
3732 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND))
3733 EMSG2(_(e_nomatch2), str);
3734#endif
3735 }
3736 else if (xp->xp_numfiles == 0)
3737 {
3738 if (!(options & WILD_SILENT))
3739 EMSG2(_(e_nomatch2), str);
3740 }
3741 else
3742 {
3743 /* Escape the matches for use on the command line. */
3744 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options);
3745
3746 /*
3747 * Check for matching suffixes in file names.
3748 */
Bram Moolenaar146e9c32012-03-07 19:18:23 +01003749 if (mode != WILD_ALL && mode != WILD_ALL_KEEP
3750 && mode != WILD_LONGEST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751 {
3752 if (xp->xp_numfiles)
3753 non_suf_match = xp->xp_numfiles;
3754 else
3755 non_suf_match = 1;
3756 if ((xp->xp_context == EXPAND_FILES
3757 || xp->xp_context == EXPAND_DIRECTORIES)
3758 && xp->xp_numfiles > 1)
3759 {
3760 /*
3761 * More than one match; check suffix.
3762 * The files will have been sorted on matching suffix in
3763 * expand_wildcards, only need to check the first two.
3764 */
3765 non_suf_match = 0;
3766 for (i = 0; i < 2; ++i)
3767 if (match_suffix(xp->xp_files[i]))
3768 ++non_suf_match;
3769 }
3770 if (non_suf_match != 1)
3771 {
3772 /* Can we ever get here unless it's while expanding
3773 * interactively? If not, we can get rid of this all
3774 * together. Don't really want to wait for this message
3775 * (and possibly have to hit return to continue!).
3776 */
3777 if (!(options & WILD_SILENT))
3778 EMSG(_(e_toomany));
3779 else if (!(options & WILD_NO_BEEP))
3780 beep_flush();
3781 }
3782 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE))
3783 ss = vim_strsave(xp->xp_files[0]);
3784 }
3785 }
3786 }
3787
3788 /* Find longest common part */
3789 if (mode == WILD_LONGEST && xp->xp_numfiles > 0)
3790 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003791 int mb_len = 1;
3792 int c0, ci;
3793
3794 for (len = 0; xp->xp_files[0][len]; len += mb_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003796#ifdef FEAT_MBYTE
3797 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003799 mb_len = (*mb_ptr2len)(&xp->xp_files[0][len]);
3800 c0 =(* mb_ptr2char)(&xp->xp_files[0][len]);
3801 }
3802 else
3803#endif
Bram Moolenaare4eda3b2015-11-21 16:28:50 +01003804 c0 = xp->xp_files[0][len];
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003805 for (i = 1; i < xp->xp_numfiles; ++i)
3806 {
3807#ifdef FEAT_MBYTE
3808 if (has_mbyte)
3809 ci =(* mb_ptr2char)(&xp->xp_files[i][len]);
3810 else
3811#endif
3812 ci = xp->xp_files[i][len];
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01003813 if (p_fic && (xp->xp_context == EXPAND_DIRECTORIES
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 || xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003815 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01003816 || xp->xp_context == EXPAND_BUFFERS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003818 if (MB_TOLOWER(c0) != MB_TOLOWER(ci))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003819 break;
3820 }
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003821 else if (c0 != ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822 break;
3823 }
3824 if (i < xp->xp_numfiles)
3825 {
3826 if (!(options & WILD_NO_BEEP))
Bram Moolenaar165bc692015-07-21 17:53:25 +02003827 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828 break;
3829 }
3830 }
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003831
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832 ss = alloc((unsigned)len + 1);
3833 if (ss)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003834 vim_strncpy(ss, xp->xp_files[0], (size_t)len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 findex = -1; /* next p_wc gets first one */
3836 }
3837
3838 /* Concatenate all matching names */
3839 if (mode == WILD_ALL && xp->xp_numfiles > 0)
3840 {
3841 len = 0;
3842 for (i = 0; i < xp->xp_numfiles; ++i)
3843 len += (long_u)STRLEN(xp->xp_files[i]) + 1;
3844 ss = lalloc(len, TRUE);
3845 if (ss != NULL)
3846 {
3847 *ss = NUL;
3848 for (i = 0; i < xp->xp_numfiles; ++i)
3849 {
3850 STRCAT(ss, xp->xp_files[i]);
3851 if (i != xp->xp_numfiles - 1)
3852 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " ");
3853 }
3854 }
3855 }
3856
3857 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL)
3858 ExpandCleanup(xp);
3859
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003860 /* Free "orig" if it wasn't stored in "orig_save". */
Bram Moolenaar96426642007-10-30 16:37:15 +00003861 if (!orig_saved)
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003862 vim_free(orig);
3863
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864 return ss;
3865}
3866
3867/*
3868 * Prepare an expand structure for use.
3869 */
3870 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003871ExpandInit(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872{
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003873 xp->xp_pattern = NULL;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003874 xp->xp_pattern_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003876#ifndef BACKSLASH_IN_FILENAME
3877 xp->xp_shell = FALSE;
3878#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 xp->xp_numfiles = -1;
3880 xp->xp_files = NULL;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003881#if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
3882 xp->xp_arg = NULL;
3883#endif
Bram Moolenaarb7515462013-06-29 12:58:33 +02003884 xp->xp_line = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003885}
3886
3887/*
3888 * Cleanup an expand structure after use.
3889 */
3890 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003891ExpandCleanup(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892{
3893 if (xp->xp_numfiles >= 0)
3894 {
3895 FreeWild(xp->xp_numfiles, xp->xp_files);
3896 xp->xp_numfiles = -1;
3897 }
3898}
3899
3900 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003901ExpandEscape(
3902 expand_T *xp,
3903 char_u *str,
3904 int numfiles,
3905 char_u **files,
3906 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907{
3908 int i;
3909 char_u *p;
3910
3911 /*
3912 * May change home directory back to "~"
3913 */
3914 if (options & WILD_HOME_REPLACE)
3915 tilde_replace(str, numfiles, files);
3916
3917 if (options & WILD_ESCAPE)
3918 {
3919 if (xp->xp_context == EXPAND_FILES
Bram Moolenaarcca92ec2011-04-28 17:21:53 +02003920 || xp->xp_context == EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003921 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922 || xp->xp_context == EXPAND_BUFFERS
3923 || xp->xp_context == EXPAND_DIRECTORIES)
3924 {
3925 /*
3926 * Insert a backslash into a file name before a space, \, %, #
3927 * and wildmatch characters, except '~'.
3928 */
3929 for (i = 0; i < numfiles; ++i)
3930 {
3931 /* for ":set path=" we need to escape spaces twice */
3932 if (xp->xp_backslash == XP_BS_THREE)
3933 {
3934 p = vim_strsave_escaped(files[i], (char_u *)" ");
3935 if (p != NULL)
3936 {
3937 vim_free(files[i]);
3938 files[i] = p;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003939#if defined(BACKSLASH_IN_FILENAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940 p = vim_strsave_escaped(files[i], (char_u *)" ");
3941 if (p != NULL)
3942 {
3943 vim_free(files[i]);
3944 files[i] = p;
3945 }
3946#endif
3947 }
3948 }
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00003949#ifdef BACKSLASH_IN_FILENAME
3950 p = vim_strsave_fnameescape(files[i], FALSE);
3951#else
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003952 p = vim_strsave_fnameescape(files[i], xp->xp_shell);
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00003953#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 if (p != NULL)
3955 {
3956 vim_free(files[i]);
3957 files[i] = p;
3958 }
3959
3960 /* If 'str' starts with "\~", replace "~" at start of
3961 * files[i] with "\~". */
3962 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~')
Bram Moolenaar45360022005-07-21 21:08:21 +00003963 escape_fname(&files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964 }
3965 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar45360022005-07-21 21:08:21 +00003966
3967 /* If the first file starts with a '+' escape it. Otherwise it
3968 * could be seen as "+cmd". */
3969 if (*files[0] == '+')
3970 escape_fname(&files[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971 }
3972 else if (xp->xp_context == EXPAND_TAGS)
3973 {
3974 /*
3975 * Insert a backslash before characters in a tag name that
3976 * would terminate the ":tag" command.
3977 */
3978 for (i = 0; i < numfiles; ++i)
3979 {
3980 p = vim_strsave_escaped(files[i], (char_u *)"\\|\"");
3981 if (p != NULL)
3982 {
3983 vim_free(files[i]);
3984 files[i] = p;
3985 }
3986 }
3987 }
3988 }
3989}
3990
3991/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003992 * Escape special characters in "fname" for when used as a file name argument
3993 * after a Vim command, or, when "shell" is non-zero, a shell command.
3994 * Returns the result in allocated memory.
3995 */
3996 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003997vim_strsave_fnameescape(char_u *fname, int shell)
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003998{
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003999 char_u *p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004000#ifdef BACKSLASH_IN_FILENAME
4001 char_u buf[20];
4002 int j = 0;
4003
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01004004 /* Don't escape '[', '{' and '!' if they are in 'isfname'. */
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004005 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01004006 if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p))
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004007 buf[j++] = *p;
4008 buf[j] = NUL;
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004009 p = vim_strsave_escaped(fname, buf);
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004010#else
Bram Moolenaar7693ec62008-07-24 18:29:37 +00004011 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
4012 if (shell && csh_like_shell() && p != NULL)
4013 {
4014 char_u *s;
4015
4016 /* For csh and similar shells need to put two backslashes before '!'.
4017 * One is taken by Vim, one by the shell. */
4018 s = vim_strsave_escaped(p, (char_u *)"!");
4019 vim_free(p);
4020 p = s;
4021 }
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004022#endif
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004023
4024 /* '>' and '+' are special at the start of some commands, e.g. ":edit" and
4025 * ":write". "cd -" has a special meaning. */
Bram Moolenaara9d52e32010-07-31 16:44:19 +02004026 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL)))
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004027 escape_fname(&p);
4028
4029 return p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004030}
4031
4032/*
Bram Moolenaar45360022005-07-21 21:08:21 +00004033 * Put a backslash before the file name in "pp", which is in allocated memory.
4034 */
4035 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004036escape_fname(char_u **pp)
Bram Moolenaar45360022005-07-21 21:08:21 +00004037{
4038 char_u *p;
4039
4040 p = alloc((unsigned)(STRLEN(*pp) + 2));
4041 if (p != NULL)
4042 {
4043 p[0] = '\\';
4044 STRCPY(p + 1, *pp);
4045 vim_free(*pp);
4046 *pp = p;
4047 }
4048}
4049
4050/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 * For each file name in files[num_files]:
4052 * If 'orig_pat' starts with "~/", replace the home directory with "~".
4053 */
4054 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004055tilde_replace(
4056 char_u *orig_pat,
4057 int num_files,
4058 char_u **files)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059{
4060 int i;
4061 char_u *p;
4062
4063 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
4064 {
4065 for (i = 0; i < num_files; ++i)
4066 {
4067 p = home_replace_save(NULL, files[i]);
4068 if (p != NULL)
4069 {
4070 vim_free(files[i]);
4071 files[i] = p;
4072 }
4073 }
4074 }
4075}
4076
4077/*
4078 * Show all matches for completion on the command line.
4079 * Returns EXPAND_NOTHING when the character that triggered expansion should
4080 * be inserted like a normal character.
4081 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004083showmatches(expand_T *xp, int wildmenu UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084{
4085#define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m])
4086 int num_files;
4087 char_u **files_found;
4088 int i, j, k;
4089 int maxlen;
4090 int lines;
4091 int columns;
4092 char_u *p;
4093 int lastlen;
4094 int attr;
4095 int showtail;
4096
4097 if (xp->xp_numfiles == -1)
4098 {
4099 set_expand_context(xp);
4100 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos,
4101 &num_files, &files_found);
4102 showtail = expand_showtail(xp);
4103 if (i != EXPAND_OK)
4104 return i;
4105
4106 }
4107 else
4108 {
4109 num_files = xp->xp_numfiles;
4110 files_found = xp->xp_files;
4111 showtail = cmd_showtail;
4112 }
4113
4114#ifdef FEAT_WILDMENU
4115 if (!wildmenu)
4116 {
4117#endif
4118 msg_didany = FALSE; /* lines_left will be set */
4119 msg_start(); /* prepare for paging */
4120 msg_putchar('\n');
4121 out_flush();
4122 cmdline_row = msg_row;
4123 msg_didany = FALSE; /* lines_left will be set again */
4124 msg_start(); /* prepare for paging */
4125#ifdef FEAT_WILDMENU
4126 }
4127#endif
4128
4129 if (got_int)
4130 got_int = FALSE; /* only int. the completion, not the cmd line */
4131#ifdef FEAT_WILDMENU
4132 else if (wildmenu)
4133 win_redr_status_matches(xp, num_files, files_found, 0, showtail);
4134#endif
4135 else
4136 {
4137 /* find the length of the longest file name */
4138 maxlen = 0;
4139 for (i = 0; i < num_files; ++i)
4140 {
4141 if (!showtail && (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004142 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004143 || xp->xp_context == EXPAND_BUFFERS))
4144 {
4145 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE);
4146 j = vim_strsize(NameBuff);
4147 }
4148 else
4149 j = vim_strsize(L_SHOWFILE(i));
4150 if (j > maxlen)
4151 maxlen = j;
4152 }
4153
4154 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4155 lines = num_files;
4156 else
4157 {
4158 /* compute the number of columns and lines for the listing */
4159 maxlen += 2; /* two spaces between file names */
4160 columns = ((int)Columns + 2) / maxlen;
4161 if (columns < 1)
4162 columns = 1;
4163 lines = (num_files + columns - 1) / columns;
4164 }
4165
4166 attr = hl_attr(HLF_D); /* find out highlighting for directories */
4167
4168 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4169 {
4170 MSG_PUTS_ATTR(_("tagname"), hl_attr(HLF_T));
4171 msg_clr_eos();
4172 msg_advance(maxlen - 3);
4173 MSG_PUTS_ATTR(_(" kind file\n"), hl_attr(HLF_T));
4174 }
4175
4176 /* list the files line by line */
4177 for (i = 0; i < lines; ++i)
4178 {
4179 lastlen = 999;
4180 for (k = i; k < num_files; k += lines)
4181 {
4182 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4183 {
4184 msg_outtrans_attr(files_found[k], hl_attr(HLF_D));
4185 p = files_found[k] + STRLEN(files_found[k]) + 1;
4186 msg_advance(maxlen + 1);
4187 msg_puts(p);
4188 msg_advance(maxlen + 3);
4189 msg_puts_long_attr(p + 2, hl_attr(HLF_D));
4190 break;
4191 }
4192 for (j = maxlen - lastlen; --j >= 0; )
4193 msg_putchar(' ');
4194 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004195 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196 || xp->xp_context == EXPAND_BUFFERS)
4197 {
Bram Moolenaarb91e59b2010-03-17 19:13:27 +01004198 /* highlight directories */
Bram Moolenaar63fa5262010-03-23 18:06:52 +01004199 if (xp->xp_numfiles != -1)
4200 {
4201 char_u *halved_slash;
4202 char_u *exp_path;
4203
4204 /* Expansion was done before and special characters
4205 * were escaped, need to halve backslashes. Also
4206 * $HOME has been replaced with ~/. */
4207 exp_path = expand_env_save_opt(files_found[k], TRUE);
4208 halved_slash = backslash_halve_save(
4209 exp_path != NULL ? exp_path : files_found[k]);
4210 j = mch_isdir(halved_slash != NULL ? halved_slash
4211 : files_found[k]);
4212 vim_free(exp_path);
4213 vim_free(halved_slash);
4214 }
4215 else
4216 /* Expansion was done here, file names are literal. */
4217 j = mch_isdir(files_found[k]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004218 if (showtail)
4219 p = L_SHOWFILE(k);
4220 else
4221 {
4222 home_replace(NULL, files_found[k], NameBuff, MAXPATHL,
4223 TRUE);
4224 p = NameBuff;
4225 }
4226 }
4227 else
4228 {
4229 j = FALSE;
4230 p = L_SHOWFILE(k);
4231 }
4232 lastlen = msg_outtrans_attr(p, j ? attr : 0);
4233 }
4234 if (msg_col > 0) /* when not wrapped around */
4235 {
4236 msg_clr_eos();
4237 msg_putchar('\n');
4238 }
4239 out_flush(); /* show one line at a time */
4240 if (got_int)
4241 {
4242 got_int = FALSE;
4243 break;
4244 }
4245 }
4246
4247 /*
4248 * we redraw the command below the lines that we have just listed
4249 * This is a bit tricky, but it saves a lot of screen updating.
4250 */
4251 cmdline_row = msg_row; /* will put it back later */
4252 }
4253
4254 if (xp->xp_numfiles == -1)
4255 FreeWild(num_files, files_found);
4256
4257 return EXPAND_OK;
4258}
4259
4260/*
4261 * Private gettail for showmatches() (and win_redr_status_matches()):
4262 * Find tail of file name path, but ignore trailing "/".
4263 */
4264 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004265sm_gettail(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266{
4267 char_u *p;
4268 char_u *t = s;
4269 int had_sep = FALSE;
4270
4271 for (p = s; *p != NUL; )
4272 {
4273 if (vim_ispathsep(*p)
4274#ifdef BACKSLASH_IN_FILENAME
4275 && !rem_backslash(p)
4276#endif
4277 )
4278 had_sep = TRUE;
4279 else if (had_sep)
4280 {
4281 t = p;
4282 had_sep = FALSE;
4283 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004284 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004285 }
4286 return t;
4287}
4288
4289/*
4290 * Return TRUE if we only need to show the tail of completion matches.
4291 * When not completing file names or there is a wildcard in the path FALSE is
4292 * returned.
4293 */
4294 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004295expand_showtail(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004296{
4297 char_u *s;
4298 char_u *end;
4299
4300 /* When not completing file names a "/" may mean something different. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004301 if (xp->xp_context != EXPAND_FILES
4302 && xp->xp_context != EXPAND_SHELLCMD
4303 && xp->xp_context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304 return FALSE;
4305
4306 end = gettail(xp->xp_pattern);
4307 if (end == xp->xp_pattern) /* there is no path separator */
4308 return FALSE;
4309
4310 for (s = xp->xp_pattern; s < end; s++)
4311 {
4312 /* Skip escaped wildcards. Only when the backslash is not a path
4313 * separator, on DOS the '*' "path\*\file" must not be skipped. */
4314 if (rem_backslash(s))
4315 ++s;
4316 else if (vim_strchr((char_u *)"*?[", *s) != NULL)
4317 return FALSE;
4318 }
4319 return TRUE;
4320}
4321
4322/*
4323 * Prepare a string for expansion.
4324 * When expanding file names: The string will be used with expand_wildcards().
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004325 * Copy "fname[len]" into allocated memory and add a '*' at the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326 * When expanding other names: The string will be used with regcomp(). Copy
4327 * the name into allocated memory and prepend "^".
4328 */
4329 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004330addstar(
4331 char_u *fname,
4332 int len,
4333 int context) /* EXPAND_FILES etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334{
4335 char_u *retval;
4336 int i, j;
4337 int new_len;
4338 char_u *tail;
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004339 int ends_in_star;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004341 if (context != EXPAND_FILES
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004342 && context != EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004343 && context != EXPAND_SHELLCMD
4344 && context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 {
4346 /*
4347 * Matching will be done internally (on something other than files).
4348 * So we convert the file-matching-type wildcards into our kind for
4349 * use with vim_regcomp(). First work out how long it will be:
4350 */
4351
4352 /* For help tags the translation is done in find_help_tags().
4353 * For a tag pattern starting with "/" no translation is needed. */
4354 if (context == EXPAND_HELP
4355 || context == EXPAND_COLORS
4356 || context == EXPAND_COMPILER
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004357 || context == EXPAND_OWNSYNTAX
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004358 || context == EXPAND_FILETYPE
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01004359 || context == EXPAND_PACKADD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360 || (context == EXPAND_TAGS && fname[0] == '/'))
4361 retval = vim_strnsave(fname, len);
4362 else
4363 {
4364 new_len = len + 2; /* +2 for '^' at start, NUL at end */
4365 for (i = 0; i < len; i++)
4366 {
4367 if (fname[i] == '*' || fname[i] == '~')
4368 new_len++; /* '*' needs to be replaced by ".*"
4369 '~' needs to be replaced by "\~" */
4370
4371 /* Buffer names are like file names. "." should be literal */
4372 if (context == EXPAND_BUFFERS && fname[i] == '.')
4373 new_len++; /* "." becomes "\." */
4374
4375 /* Custom expansion takes care of special things, match
4376 * backslashes literally (perhaps also for other types?) */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004377 if ((context == EXPAND_USER_DEFINED
4378 || context == EXPAND_USER_LIST) && fname[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379 new_len++; /* '\' becomes "\\" */
4380 }
4381 retval = alloc(new_len);
4382 if (retval != NULL)
4383 {
4384 retval[0] = '^';
4385 j = 1;
4386 for (i = 0; i < len; i++, j++)
4387 {
4388 /* Skip backslash. But why? At least keep it for custom
4389 * expansion. */
4390 if (context != EXPAND_USER_DEFINED
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004391 && context != EXPAND_USER_LIST
4392 && fname[i] == '\\'
4393 && ++i == len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394 break;
4395
4396 switch (fname[i])
4397 {
4398 case '*': retval[j++] = '.';
4399 break;
4400 case '~': retval[j++] = '\\';
4401 break;
4402 case '?': retval[j] = '.';
4403 continue;
4404 case '.': if (context == EXPAND_BUFFERS)
4405 retval[j++] = '\\';
4406 break;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004407 case '\\': if (context == EXPAND_USER_DEFINED
4408 || context == EXPAND_USER_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409 retval[j++] = '\\';
4410 break;
4411 }
4412 retval[j] = fname[i];
4413 }
4414 retval[j] = NUL;
4415 }
4416 }
4417 }
4418 else
4419 {
4420 retval = alloc(len + 4);
4421 if (retval != NULL)
4422 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004423 vim_strncpy(retval, fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424
4425 /*
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004426 * Don't add a star to *, ~, ~user, $var or `cmd`.
4427 * * would become **, which walks the whole tree.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004428 * ~ would be at the start of the file name, but not the tail.
4429 * $ could be anywhere in the tail.
4430 * ` could be anywhere in the file name.
Bram Moolenaar066b6222008-01-04 14:17:47 +00004431 * When the name ends in '$' don't add a star, remove the '$'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432 */
4433 tail = gettail(retval);
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004434 ends_in_star = (len > 0 && retval[len - 1] == '*');
4435#ifndef BACKSLASH_IN_FILENAME
4436 for (i = len - 2; i >= 0; --i)
4437 {
4438 if (retval[i] != '\\')
4439 break;
4440 ends_in_star = !ends_in_star;
4441 }
4442#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443 if ((*retval != '~' || tail != retval)
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004444 && !ends_in_star
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445 && vim_strchr(tail, '$') == NULL
4446 && vim_strchr(retval, '`') == NULL)
4447 retval[len++] = '*';
Bram Moolenaar066b6222008-01-04 14:17:47 +00004448 else if (len > 0 && retval[len - 1] == '$')
4449 --len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 retval[len] = NUL;
4451 }
4452 }
4453 return retval;
4454}
4455
4456/*
4457 * Must parse the command line so far to work out what context we are in.
4458 * Completion can then be done based on that context.
4459 * This routine sets the variables:
4460 * xp->xp_pattern The start of the pattern to be expanded within
4461 * the command line (ends at the cursor).
4462 * xp->xp_context The type of thing to expand. Will be one of:
4463 *
4464 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on
4465 * the command line, like an unknown command. Caller
4466 * should beep.
4467 * EXPAND_NOTHING Unrecognised context for completion, use char like
4468 * a normal char, rather than for completion. eg
4469 * :s/^I/
4470 * EXPAND_COMMANDS Cursor is still touching the command, so complete
4471 * it.
4472 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands.
4473 * EXPAND_FILES After command with XFILE set, or after setting
4474 * with P_EXPAND set. eg :e ^I, :w>>^I
4475 * EXPAND_DIRECTORIES In some cases this is used instead of the latter
4476 * when we know only directories are of interest. eg
4477 * :set dir=^I
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004478 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 * EXPAND_SETTINGS Complete variable names. eg :set d^I
4480 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I
4481 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I
4482 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect
4483 * EXPAND_HELP Complete tags from the file 'helpfile'/tags
4484 * EXPAND_EVENTS Complete event names
4485 * EXPAND_SYNTAX Complete :syntax command arguments
4486 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names
4487 * EXPAND_AUGROUP Complete autocommand group names
4488 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I
4489 * EXPAND_MAPPINGS Complete mapping and abbreviation names,
4490 * eg :unmap a^I , :cunab x^I
4491 * EXPAND_FUNCTIONS Complete internal or user defined function names,
4492 * eg :call sub^I
4493 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I
4494 * EXPAND_EXPRESSION Complete internal or user defined function/variable
4495 * names in expressions, eg :while s^I
4496 * EXPAND_ENV_VARS Complete environment variable names
Bram Moolenaar24305862012-08-15 14:05:05 +02004497 * EXPAND_USER Complete user names
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498 */
4499 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004500set_expand_context(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004501{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004502 /* only expansion for ':', '>' and '=' command-lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 if (ccline.cmdfirstc != ':'
4504#ifdef FEAT_EVAL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004505 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '='
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004506 && !ccline.input_fn
Bram Moolenaar071d4272004-06-13 20:20:40 +00004507#endif
4508 )
4509 {
4510 xp->xp_context = EXPAND_NOTHING;
4511 return;
4512 }
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004513 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514}
4515
4516 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004517set_cmd_context(
4518 expand_T *xp,
4519 char_u *str, /* start of command line */
4520 int len, /* length of command line (excl. NUL) */
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004521 int col, /* position of cursor */
4522 int use_ccline UNUSED) /* use ccline for info */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523{
4524 int old_char = NUL;
4525 char_u *nextcomm;
4526
4527 /*
4528 * Avoid a UMR warning from Purify, only save the character if it has been
4529 * written before.
4530 */
4531 if (col < len)
4532 old_char = str[col];
4533 str[col] = NUL;
4534 nextcomm = str;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004535
4536#ifdef FEAT_EVAL
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004537 if (use_ccline && ccline.cmdfirstc == '=')
Bram Moolenaar4f688582007-07-24 12:34:30 +00004538 {
4539# ifdef FEAT_CMDL_COMPL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004540 /* pass CMD_SIZE because there is no real command */
4541 set_context_for_expression(xp, str, CMD_SIZE);
Bram Moolenaar4f688582007-07-24 12:34:30 +00004542# endif
4543 }
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004544 else if (use_ccline && ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004545 {
4546 xp->xp_context = ccline.xp_context;
4547 xp->xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004548# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004549 xp->xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004550# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004551 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004552 else
4553#endif
4554 while (nextcomm != NULL)
4555 nextcomm = set_one_cmd_context(xp, nextcomm);
4556
Bram Moolenaara4c8dcb2013-06-30 12:21:24 +02004557 /* Store the string here so that call_user_expand_func() can get to them
4558 * easily. */
4559 xp->xp_line = str;
4560 xp->xp_col = col;
4561
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562 str[col] = old_char;
4563}
4564
4565/*
4566 * Expand the command line "str" from context "xp".
4567 * "xp" must have been set by set_cmd_context().
4568 * xp->xp_pattern points into "str", to where the text that is to be expanded
4569 * starts.
4570 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the
4571 * cursor.
4572 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the
4573 * key that triggered expansion literally.
4574 * Returns EXPAND_OK otherwise.
4575 */
4576 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004577expand_cmdline(
4578 expand_T *xp,
4579 char_u *str, /* start of command line */
4580 int col, /* position of cursor */
4581 int *matchcount, /* return: nr of matches */
4582 char_u ***matches) /* return: array of pointers to matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583{
4584 char_u *file_str = NULL;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004585 int options = WILD_ADD_SLASH|WILD_SILENT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586
4587 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
4588 {
4589 beep_flush();
4590 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */
4591 }
4592 if (xp->xp_context == EXPAND_NOTHING)
4593 {
4594 /* Caller can use the character as a normal char instead */
4595 return EXPAND_NOTHING;
4596 }
4597
4598 /* add star to file name, or convert to regexp if not exp. files. */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004599 xp->xp_pattern_len = (int)(str + col - xp->xp_pattern);
4600 file_str = addstar(xp->xp_pattern, xp->xp_pattern_len, xp->xp_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601 if (file_str == NULL)
4602 return EXPAND_UNSUCCESSFUL;
4603
Bram Moolenaar94950a92010-12-02 16:01:29 +01004604 if (p_wic)
4605 options += WILD_ICASE;
4606
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607 /* find all files that match the description */
Bram Moolenaar94950a92010-12-02 16:01:29 +01004608 if (ExpandFromContext(xp, file_str, matchcount, matches, options) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004609 {
4610 *matchcount = 0;
4611 *matches = NULL;
4612 }
4613 vim_free(file_str);
4614
4615 return EXPAND_OK;
4616}
4617
4618#ifdef FEAT_MULTI_LANG
4619/*
Bram Moolenaar61264d92016-03-28 19:59:02 +02004620 * Cleanup matches for help tags:
4621 * Remove "@ab" if the top of 'helplang' is "ab" and the language of the first
4622 * tag matches it. Otherwise remove "@en" if "en" is the only language.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 */
Bram Moolenaard25c16e2016-01-29 22:13:30 +01004624static void cleanup_help_tags(int num_file, char_u **file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625
4626 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004627cleanup_help_tags(int num_file, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628{
4629 int i, j;
4630 int len;
Bram Moolenaar61264d92016-03-28 19:59:02 +02004631 char_u buf[4];
4632 char_u *p = buf;
4633
Bram Moolenaar89c79b92016-05-05 17:18:41 +02004634 if (p_hlg[0] != NUL && (p_hlg[0] != 'e' || p_hlg[1] != 'n'))
Bram Moolenaar61264d92016-03-28 19:59:02 +02004635 {
4636 *p++ = '@';
4637 *p++ = p_hlg[0];
4638 *p++ = p_hlg[1];
4639 }
4640 *p = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641
4642 for (i = 0; i < num_file; ++i)
4643 {
4644 len = (int)STRLEN(file[i]) - 3;
Bram Moolenaar61264d92016-03-28 19:59:02 +02004645 if (len <= 0)
4646 continue;
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02004647 if (STRCMP(file[i] + len, "@en") == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648 {
4649 /* Sorting on priority means the same item in another language may
4650 * be anywhere. Search all items for a match up to the "@en". */
4651 for (j = 0; j < num_file; ++j)
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02004652 if (j != i && (int)STRLEN(file[j]) == len + 3
4653 && STRNCMP(file[i], file[j], len + 1) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654 break;
4655 if (j == num_file)
Bram Moolenaar89c79b92016-05-05 17:18:41 +02004656 /* item only exists with @en, remove it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657 file[i][len] = NUL;
4658 }
4659 }
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02004660
4661 if (*buf != NUL)
4662 for (i = 0; i < num_file; ++i)
4663 {
4664 len = (int)STRLEN(file[i]) - 3;
4665 if (len <= 0)
4666 continue;
4667 if (STRCMP(file[i] + len, buf) == 0)
4668 {
4669 /* remove the default language */
4670 file[i][len] = NUL;
4671 }
4672 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673}
4674#endif
4675
4676/*
4677 * Do the expansion based on xp->xp_context and "pat".
4678 */
4679 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004680ExpandFromContext(
4681 expand_T *xp,
4682 char_u *pat,
4683 int *num_file,
4684 char_u ***file,
4685 int options) /* EW_ flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686{
4687#ifdef FEAT_CMDL_COMPL
4688 regmatch_T regmatch;
4689#endif
4690 int ret;
4691 int flags;
4692
4693 flags = EW_DIR; /* include directories */
4694 if (options & WILD_LIST_NOTFOUND)
4695 flags |= EW_NOTFOUND;
4696 if (options & WILD_ADD_SLASH)
4697 flags |= EW_ADDSLASH;
4698 if (options & WILD_KEEP_ALL)
4699 flags |= EW_KEEPALL;
4700 if (options & WILD_SILENT)
4701 flags |= EW_SILENT;
Bram Moolenaara245bc72015-03-05 19:35:25 +01004702 if (options & WILD_ALLLINKS)
4703 flags |= EW_ALLLINKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004705 if (xp->xp_context == EXPAND_FILES
4706 || xp->xp_context == EXPAND_DIRECTORIES
4707 || xp->xp_context == EXPAND_FILES_IN_PATH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708 {
4709 /*
4710 * Expand file or directory names.
4711 */
4712 int free_pat = FALSE;
4713 int i;
4714
4715 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4716 * space */
4717 if (xp->xp_backslash != XP_BS_NONE)
4718 {
4719 free_pat = TRUE;
4720 pat = vim_strsave(pat);
4721 for (i = 0; pat[i]; ++i)
4722 if (pat[i] == '\\')
4723 {
4724 if (xp->xp_backslash == XP_BS_THREE
4725 && pat[i + 1] == '\\'
4726 && pat[i + 2] == '\\'
4727 && pat[i + 3] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004728 STRMOVE(pat + i, pat + i + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729 if (xp->xp_backslash == XP_BS_ONE
4730 && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004731 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 }
4733 }
4734
4735 if (xp->xp_context == EXPAND_FILES)
4736 flags |= EW_FILE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004737 else if (xp->xp_context == EXPAND_FILES_IN_PATH)
4738 flags |= (EW_FILE | EW_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739 else
4740 flags = (flags | EW_DIR) & ~EW_FILE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004741 if (options & WILD_ICASE)
4742 flags |= EW_ICASE;
4743
Bram Moolenaard7834d32009-12-02 16:14:36 +00004744 /* Expand wildcards, supporting %:h and the like. */
4745 ret = expand_wildcards_eval(&pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 if (free_pat)
4747 vim_free(pat);
4748 return ret;
4749 }
4750
4751 *file = (char_u **)"";
4752 *num_file = 0;
4753 if (xp->xp_context == EXPAND_HELP)
4754 {
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00004755 /* With an empty argument we would get all the help tags, which is
4756 * very slow. Get matches for "help" instead. */
4757 if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat,
4758 num_file, file, FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759 {
4760#ifdef FEAT_MULTI_LANG
4761 cleanup_help_tags(*num_file, *file);
4762#endif
4763 return OK;
4764 }
4765 return FAIL;
4766 }
4767
4768#ifndef FEAT_CMDL_COMPL
4769 return FAIL;
4770#else
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004771 if (xp->xp_context == EXPAND_SHELLCMD)
4772 return expand_shellcmd(pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773 if (xp->xp_context == EXPAND_OLD_SETTING)
4774 return ExpandOldSetting(num_file, file);
4775 if (xp->xp_context == EXPAND_BUFFERS)
4776 return ExpandBufnames(pat, num_file, file, options);
4777 if (xp->xp_context == EXPAND_TAGS
4778 || xp->xp_context == EXPAND_TAGS_LISTFILES)
4779 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file);
4780 if (xp->xp_context == EXPAND_COLORS)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004781 {
4782 char *directories[] = {"colors", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004783 return ExpandRTDir(pat, DIP_START + DIP_OPT, num_file, file,
4784 directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004785 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786 if (xp->xp_context == EXPAND_COMPILER)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004787 {
Bram Moolenaara627c962011-09-30 16:23:32 +02004788 char *directories[] = {"compiler", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004789 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004790 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004791 if (xp->xp_context == EXPAND_OWNSYNTAX)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004792 {
4793 char *directories[] = {"syntax", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004794 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004795 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004796 if (xp->xp_context == EXPAND_FILETYPE)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004797 {
4798 char *directories[] = {"syntax", "indent", "ftplugin", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004799 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004800 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004801# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4802 if (xp->xp_context == EXPAND_USER_LIST)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004803 return ExpandUserList(xp, num_file, file);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004804# endif
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01004805 if (xp->xp_context == EXPAND_PACKADD)
4806 return ExpandPackAddDir(pat, num_file, file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807
4808 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4809 if (regmatch.regprog == NULL)
4810 return FAIL;
4811
4812 /* set ignore-case according to p_ic, p_scs and pat */
4813 regmatch.rm_ic = ignorecase(pat);
4814
4815 if (xp->xp_context == EXPAND_SETTINGS
4816 || xp->xp_context == EXPAND_BOOL_SETTINGS)
4817 ret = ExpandSettings(xp, &regmatch, num_file, file);
4818 else if (xp->xp_context == EXPAND_MAPPINGS)
4819 ret = ExpandMappings(&regmatch, num_file, file);
4820# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4821 else if (xp->xp_context == EXPAND_USER_DEFINED)
4822 ret = ExpandUserDefined(xp, &regmatch, num_file, file);
4823# endif
4824 else
4825 {
4826 static struct expgen
4827 {
4828 int context;
Bram Moolenaard99df422016-01-29 23:20:40 +01004829 char_u *((*func)(expand_T *, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830 int ic;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004831 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832 } tab[] =
4833 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004834 {EXPAND_COMMANDS, get_command_name, FALSE, TRUE},
4835 {EXPAND_BEHAVE, get_behave_arg, TRUE, TRUE},
Bram Moolenaar9e507ca2016-10-15 15:39:39 +02004836 {EXPAND_MESSAGES, get_messages_arg, TRUE, TRUE},
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004837#ifdef FEAT_CMDHIST
4838 {EXPAND_HISTORY, get_history_arg, TRUE, TRUE},
4839#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840#ifdef FEAT_USR_CMDS
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004841 {EXPAND_USER_COMMANDS, get_user_commands, FALSE, TRUE},
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004842 {EXPAND_USER_ADDR_TYPE, get_user_cmd_addr_type, FALSE, TRUE},
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004843 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE, TRUE},
4844 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE, TRUE},
4845 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846#endif
4847#ifdef FEAT_EVAL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004848 {EXPAND_USER_VARS, get_user_var_name, FALSE, TRUE},
4849 {EXPAND_FUNCTIONS, get_function_name, FALSE, TRUE},
4850 {EXPAND_USER_FUNC, get_user_func_name, FALSE, TRUE},
4851 {EXPAND_EXPRESSION, get_expr_name, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852#endif
4853#ifdef FEAT_MENU
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004854 {EXPAND_MENUS, get_menu_name, FALSE, TRUE},
4855 {EXPAND_MENUNAMES, get_menu_names, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856#endif
4857#ifdef FEAT_SYN_HL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004858 {EXPAND_SYNTAX, get_syntax_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004859#endif
Bram Moolenaarcd9c4622013-06-08 15:24:48 +02004860#ifdef FEAT_PROFILE
4861 {EXPAND_SYNTIME, get_syntime_arg, TRUE, TRUE},
4862#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004863 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864#ifdef FEAT_AUTOCMD
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004865 {EXPAND_EVENTS, get_event_name, TRUE, TRUE},
4866 {EXPAND_AUGROUP, get_augroup_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867#endif
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004868#ifdef FEAT_CSCOPE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004869 {EXPAND_CSCOPE, get_cscope_name, TRUE, TRUE},
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004870#endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004871#ifdef FEAT_SIGNS
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004872 {EXPAND_SIGN, get_sign_name, TRUE, TRUE},
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004873#endif
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004874#ifdef FEAT_PROFILE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004875 {EXPAND_PROFILE, get_profile_name, TRUE, TRUE},
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004876#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
4878 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004879 {EXPAND_LANGUAGE, get_lang_arg, TRUE, FALSE},
4880 {EXPAND_LOCALES, get_locales, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004882 {EXPAND_ENV_VARS, get_env_name, TRUE, TRUE},
Bram Moolenaar24305862012-08-15 14:05:05 +02004883 {EXPAND_USER, get_users, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884 };
4885 int i;
4886
4887 /*
4888 * Find a context in the table and call the ExpandGeneric() with the
4889 * right function to do the expansion.
4890 */
4891 ret = FAIL;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00004892 for (i = 0; i < (int)(sizeof(tab) / sizeof(struct expgen)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893 if (xp->xp_context == tab[i].context)
4894 {
4895 if (tab[i].ic)
4896 regmatch.rm_ic = TRUE;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004897 ret = ExpandGeneric(xp, &regmatch, num_file, file,
Bram Moolenaare79abdd2012-06-29 13:44:41 +02004898 tab[i].func, tab[i].escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899 break;
4900 }
4901 }
4902
Bram Moolenaar473de612013-06-08 18:19:48 +02004903 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904
4905 return ret;
4906#endif /* FEAT_CMDL_COMPL */
4907}
4908
4909#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4910/*
4911 * Expand a list of names.
4912 *
4913 * Generic function for command line completion. It calls a function to
4914 * obtain strings, one by one. The strings are matched against a regexp
4915 * program. Matching strings are copied into an array, which is returned.
4916 *
4917 * Returns OK when no problems encountered, FAIL for error (out of memory).
4918 */
4919 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004920ExpandGeneric(
4921 expand_T *xp,
4922 regmatch_T *regmatch,
4923 int *num_file,
4924 char_u ***file,
4925 char_u *((*func)(expand_T *, int)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926 /* returns a string from the list */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004927 int escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928{
4929 int i;
4930 int count = 0;
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004931 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 char_u *str;
4933
4934 /* do this loop twice:
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004935 * round == 0: count the number of matching names
4936 * round == 1: copy the matching names into allocated memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004938 for (round = 0; round <= 1; ++round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 {
4940 for (i = 0; ; ++i)
4941 {
4942 str = (*func)(xp, i);
4943 if (str == NULL) /* end of list */
4944 break;
4945 if (*str == NUL) /* skip empty strings */
4946 continue;
4947
4948 if (vim_regexec(regmatch, str, (colnr_T)0))
4949 {
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004950 if (round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004952 if (escaped)
4953 str = vim_strsave_escaped(str, (char_u *)" \t\\.");
4954 else
4955 str = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956 (*file)[count] = str;
4957#ifdef FEAT_MENU
4958 if (func == get_menu_names && str != NULL)
4959 {
4960 /* test for separator added by get_menu_names() */
4961 str += STRLEN(str) - 1;
4962 if (*str == '\001')
4963 *str = '.';
4964 }
4965#endif
4966 }
4967 ++count;
4968 }
4969 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004970 if (round == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 {
4972 if (count == 0)
4973 return OK;
4974 *num_file = count;
4975 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
4976 if (*file == NULL)
4977 {
4978 *file = (char_u **)"";
4979 return FAIL;
4980 }
4981 count = 0;
4982 }
4983 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004984
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004985 /* Sort the results. Keep menu's in the specified order. */
4986 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02004987 {
4988 if (xp->xp_context == EXPAND_EXPRESSION
4989 || xp->xp_context == EXPAND_FUNCTIONS
4990 || xp->xp_context == EXPAND_USER_FUNC)
4991 /* <SNR> functions should be sorted to the end. */
4992 qsort((void *)*file, (size_t)*num_file, sizeof(char_u *),
4993 sort_func_compare);
4994 else
4995 sort_strings(*file, *num_file);
4996 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004997
Bram Moolenaar4f688582007-07-24 12:34:30 +00004998#ifdef FEAT_CMDL_COMPL
4999 /* Reset the variables used for special highlight names expansion, so that
5000 * they don't show up when getting normal highlight names by ID. */
5001 reset_expand_highlight();
5002#endif
5003
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 return OK;
5005}
5006
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005007/*
5008 * Complete a shell command.
5009 * Returns FAIL or OK;
5010 */
5011 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005012expand_shellcmd(
5013 char_u *filepat, /* pattern to match with command names */
5014 int *num_file, /* return: number of matches */
5015 char_u ***file, /* return: array with matches */
5016 int flagsarg) /* EW_ flags */
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005017{
5018 char_u *pat;
5019 int i;
5020 char_u *path;
5021 int mustfree = FALSE;
5022 garray_T ga;
5023 char_u *buf = alloc(MAXPATHL);
5024 size_t l;
5025 char_u *s, *e;
5026 int flags = flagsarg;
5027 int ret;
Bram Moolenaarb5971142015-03-21 17:32:19 +01005028 int did_curdir = FALSE;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005029
5030 if (buf == NULL)
5031 return FAIL;
5032
5033 /* for ":set path=" and ":set tags=" halve backslashes for escaped
5034 * space */
5035 pat = vim_strsave(filepat);
5036 for (i = 0; pat[i]; ++i)
5037 if (pat[i] == '\\' && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00005038 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005039
Bram Moolenaarb5971142015-03-21 17:32:19 +01005040 flags |= EW_FILE | EW_EXEC | EW_SHELLCMD;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005041
5042 /* For an absolute name we don't use $PATH. */
Bram Moolenaar68c31742006-09-02 15:54:18 +00005043 if (mch_isFullName(pat))
5044 path = (char_u *)" ";
5045 else if ((pat[0] == '.' && (vim_ispathsep(pat[1])
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005046 || (pat[1] == '.' && vim_ispathsep(pat[2])))))
5047 path = (char_u *)".";
5048 else
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01005049 {
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005050 path = vim_getenv((char_u *)"PATH", &mustfree);
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01005051 if (path == NULL)
5052 path = (char_u *)"";
5053 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005054
5055 /*
5056 * Go over all directories in $PATH. Expand matches in that directory and
Bram Moolenaarb5971142015-03-21 17:32:19 +01005057 * collect them in "ga". When "." is not in $PATH also expand for the
5058 * current directory, to find "subdir/cmd".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005059 */
5060 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaarb5971142015-03-21 17:32:19 +01005061 for (s = path; ; s = e)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005062 {
Bram Moolenaarb5971142015-03-21 17:32:19 +01005063 if (*s == NUL)
5064 {
5065 if (did_curdir)
5066 break;
5067 /* Find directories in the current directory, path is empty. */
5068 did_curdir = TRUE;
5069 }
5070 else if (*s == '.')
5071 did_curdir = TRUE;
5072
Bram Moolenaar68c31742006-09-02 15:54:18 +00005073 if (*s == ' ')
5074 ++s; /* Skip space used for absolute path name. */
5075
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005076#if defined(MSWIN)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005077 e = vim_strchr(s, ';');
5078#else
5079 e = vim_strchr(s, ':');
5080#endif
5081 if (e == NULL)
5082 e = s + STRLEN(s);
5083
5084 l = e - s;
5085 if (l > MAXPATHL - 5)
5086 break;
5087 vim_strncpy(buf, s, l);
5088 add_pathsep(buf);
5089 l = STRLEN(buf);
5090 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l);
5091
5092 /* Expand matches in one directory of $PATH. */
5093 ret = expand_wildcards(1, &buf, num_file, file, flags);
5094 if (ret == OK)
5095 {
5096 if (ga_grow(&ga, *num_file) == FAIL)
5097 FreeWild(*num_file, *file);
5098 else
5099 {
5100 for (i = 0; i < *num_file; ++i)
5101 {
5102 s = (*file)[i];
5103 if (STRLEN(s) > l)
5104 {
5105 /* Remove the path again. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00005106 STRMOVE(s, s + l);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005107 ((char_u **)ga.ga_data)[ga.ga_len++] = s;
5108 }
5109 else
5110 vim_free(s);
5111 }
5112 vim_free(*file);
5113 }
5114 }
5115 if (*e != NUL)
5116 ++e;
5117 }
5118 *file = ga.ga_data;
5119 *num_file = ga.ga_len;
5120
5121 vim_free(buf);
5122 vim_free(pat);
5123 if (mustfree)
5124 vim_free(path);
5125 return OK;
5126}
5127
5128
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaard25c16e2016-01-29 22:13:30 +01005130static void * call_user_expand_func(void *(*user_expand_func)(char_u *, int, char_u **, int), expand_T *xp, int *num_file, char_u ***file);
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00005131
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132/*
Bram Moolenaar21669c02008-01-18 12:16:16 +00005133 * Call "user_expand_func()" to invoke a user defined VimL function and return
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005134 * the result (either a string or a List).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005136 static void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005137call_user_expand_func(
5138 void *(*user_expand_func)(char_u *, int, char_u **, int),
5139 expand_T *xp,
5140 int *num_file,
5141 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142{
Bram Moolenaar673b9a32013-06-30 22:43:27 +02005143 int keep = 0;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005144 char_u num[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145 char_u *args[3];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 int save_current_SID = current_SID;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005147 void *ret;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005148 struct cmdline_info save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149
Bram Moolenaarb7515462013-06-29 12:58:33 +02005150 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0' || xp->xp_line == NULL)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005151 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 *num_file = 0;
5153 *file = NULL;
5154
Bram Moolenaarb7515462013-06-29 12:58:33 +02005155 if (ccline.cmdbuff != NULL)
Bram Moolenaar21669c02008-01-18 12:16:16 +00005156 {
Bram Moolenaar21669c02008-01-18 12:16:16 +00005157 keep = ccline.cmdbuff[ccline.cmdlen];
5158 ccline.cmdbuff[ccline.cmdlen] = 0;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005159 }
Bram Moolenaarb7515462013-06-29 12:58:33 +02005160
Bram Moolenaar67b891e2009-09-18 15:25:52 +00005161 args[0] = vim_strnsave(xp->xp_pattern, xp->xp_pattern_len);
Bram Moolenaarb7515462013-06-29 12:58:33 +02005162 args[1] = xp->xp_line;
5163 sprintf((char *)num, "%d", xp->xp_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005164 args[2] = num;
5165
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005166 /* Save the cmdline, we don't know what the function may do. */
5167 save_ccline = ccline;
5168 ccline.cmdbuff = NULL;
5169 ccline.cmdprompt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170 current_SID = xp->xp_scriptID;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005171
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005172 ret = user_expand_func(xp->xp_arg, 3, args, FALSE);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005173
5174 ccline = save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005175 current_SID = save_current_SID;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005176 if (ccline.cmdbuff != NULL)
5177 ccline.cmdbuff[ccline.cmdlen] = keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005178
Bram Moolenaar67b891e2009-09-18 15:25:52 +00005179 vim_free(args[0]);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005180 return ret;
5181}
5182
5183/*
5184 * Expand names with a function defined by the user.
5185 */
5186 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005187ExpandUserDefined(
5188 expand_T *xp,
5189 regmatch_T *regmatch,
5190 int *num_file,
5191 char_u ***file)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005192{
5193 char_u *retstr;
5194 char_u *s;
5195 char_u *e;
5196 char_u keep;
5197 garray_T ga;
5198
5199 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file);
5200 if (retstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201 return FAIL;
5202
5203 ga_init2(&ga, (int)sizeof(char *), 3);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005204 for (s = retstr; *s != NUL; s = e)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205 {
5206 e = vim_strchr(s, '\n');
5207 if (e == NULL)
5208 e = s + STRLEN(s);
5209 keep = *e;
5210 *e = 0;
5211
5212 if (xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0)
5213 {
5214 *e = keep;
5215 if (*e != NUL)
5216 ++e;
5217 continue;
5218 }
5219
5220 if (ga_grow(&ga, 1) == FAIL)
5221 break;
5222
5223 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s));
5224 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225
5226 *e = keep;
5227 if (*e != NUL)
5228 ++e;
5229 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005230 vim_free(retstr);
5231 *file = ga.ga_data;
5232 *num_file = ga.ga_len;
5233 return OK;
5234}
5235
5236/*
5237 * Expand names with a list returned by a function defined by the user.
5238 */
5239 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005240ExpandUserList(
5241 expand_T *xp,
5242 int *num_file,
5243 char_u ***file)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005244{
5245 list_T *retlist;
5246 listitem_T *li;
5247 garray_T ga;
5248
5249 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file);
5250 if (retlist == NULL)
5251 return FAIL;
5252
5253 ga_init2(&ga, (int)sizeof(char *), 3);
5254 /* Loop over the items in the list. */
5255 for (li = retlist->lv_first; li != NULL; li = li->li_next)
5256 {
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005257 if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL)
5258 continue; /* Skip non-string items and empty strings */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005259
5260 if (ga_grow(&ga, 1) == FAIL)
5261 break;
5262
5263 ((char_u **)ga.ga_data)[ga.ga_len] =
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005264 vim_strsave(li->li_tv.vval.v_string);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005265 ++ga.ga_len;
5266 }
5267 list_unref(retlist);
5268
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269 *file = ga.ga_data;
5270 *num_file = ga.ga_len;
5271 return OK;
5272}
5273#endif
5274
5275/*
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005276 * Expand color scheme, compiler or filetype names.
5277 * Search from 'runtimepath':
5278 * 'runtimepath'/{dirnames}/{pat}.vim
5279 * When "flags" has DIP_START: search also from 'start' of 'packpath':
5280 * 'packpath'/pack/ * /start/ * /{dirnames}/{pat}.vim
5281 * When "flags" has DIP_OPT: search also from 'opt' of 'packpath':
5282 * 'packpath'/pack/ * /opt/ * /{dirnames}/{pat}.vim
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005283 * "dirnames" is an array with one or more directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 */
5285 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005286ExpandRTDir(
5287 char_u *pat,
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005288 int flags,
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005289 int *num_file,
5290 char_u ***file,
5291 char *dirnames[])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005293 char_u *s;
5294 char_u *e;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005295 char_u *match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296 garray_T ga;
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005297 int i;
5298 int pat_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299
5300 *num_file = 0;
5301 *file = NULL;
Bram Moolenaar5cfe2d72011-07-07 15:04:52 +02005302 pat_len = (int)STRLEN(pat);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005303 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005305 for (i = 0; dirnames[i] != NULL; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 {
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005307 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 7));
5308 if (s == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309 {
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005310 ga_clear_strings(&ga);
5311 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312 }
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005313 sprintf((char *)s, "%s/%s*.vim", dirnames[i], pat);
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005314 globpath(p_rtp, s, &ga, 0);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005315 vim_free(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005317
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005318 if (flags & DIP_START) {
5319 for (i = 0; dirnames[i] != NULL; ++i)
5320 {
5321 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 22));
5322 if (s == NULL)
5323 {
5324 ga_clear_strings(&ga);
5325 return FAIL;
5326 }
5327 sprintf((char *)s, "pack/*/start/*/%s/%s*.vim", dirnames[i], pat);
5328 globpath(p_pp, s, &ga, 0);
5329 vim_free(s);
5330 }
5331 }
5332
5333 if (flags & DIP_OPT) {
5334 for (i = 0; dirnames[i] != NULL; ++i)
5335 {
5336 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 20));
5337 if (s == NULL)
5338 {
5339 ga_clear_strings(&ga);
5340 return FAIL;
5341 }
5342 sprintf((char *)s, "pack/*/opt/*/%s/%s*.vim", dirnames[i], pat);
5343 globpath(p_pp, s, &ga, 0);
5344 vim_free(s);
5345 }
5346 }
5347
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005348 for (i = 0; i < ga.ga_len; ++i)
5349 {
5350 match = ((char_u **)ga.ga_data)[i];
5351 s = match;
5352 e = s + STRLEN(s);
5353 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0)
5354 {
5355 e -= 4;
5356 for (s = e; s > match; mb_ptr_back(match, s))
5357 if (s < match || vim_ispathsep(*s))
5358 break;
5359 ++s;
5360 *e = NUL;
5361 mch_memmove(match, s, e - s + 1);
5362 }
5363 }
5364
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005365 if (ga.ga_len == 0)
Bram Moolenaare79abdd2012-06-29 13:44:41 +02005366 return FAIL;
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005367
5368 /* Sort and remove duplicates which can happen when specifying multiple
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005369 * directories in dirnames. */
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005370 remove_duplicates(&ga);
5371
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372 *file = ga.ga_data;
5373 *num_file = ga.ga_len;
5374 return OK;
5375}
5376
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01005377/*
5378 * Expand loadplugin names:
5379 * 'packpath'/pack/ * /opt/{pat}
5380 */
5381 static int
5382ExpandPackAddDir(
5383 char_u *pat,
5384 int *num_file,
5385 char_u ***file)
5386{
5387 char_u *s;
5388 char_u *e;
5389 char_u *match;
5390 garray_T ga;
5391 int i;
5392 int pat_len;
5393
5394 *num_file = 0;
5395 *file = NULL;
5396 pat_len = (int)STRLEN(pat);
5397 ga_init2(&ga, (int)sizeof(char *), 10);
5398
5399 s = alloc((unsigned)(pat_len + 26));
5400 if (s == NULL)
5401 {
5402 ga_clear_strings(&ga);
5403 return FAIL;
5404 }
5405 sprintf((char *)s, "pack/*/opt/%s*", pat);
5406 globpath(p_pp, s, &ga, 0);
5407 vim_free(s);
5408
5409 for (i = 0; i < ga.ga_len; ++i)
5410 {
5411 match = ((char_u **)ga.ga_data)[i];
5412 s = gettail(match);
5413 e = s + STRLEN(s);
5414 mch_memmove(match, s, e - s + 1);
5415 }
5416
5417 if (ga.ga_len == 0)
5418 return FAIL;
5419
5420 /* Sort and remove duplicates which can happen when specifying multiple
5421 * directories in dirnames. */
5422 remove_duplicates(&ga);
5423
5424 *file = ga.ga_data;
5425 *num_file = ga.ga_len;
5426 return OK;
5427}
5428
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429#endif
5430
5431#if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO)
5432/*
5433 * Expand "file" for all comma-separated directories in "path".
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005434 * Adds the matches to "ga". Caller must init "ga".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005435 */
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005436 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005437globpath(
5438 char_u *path,
5439 char_u *file,
5440 garray_T *ga,
5441 int expand_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442{
5443 expand_T xpc;
5444 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005445 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005446 int num_p;
5447 char_u **p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448
5449 buf = alloc(MAXPATHL);
5450 if (buf == NULL)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005451 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005453 ExpandInit(&xpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005455
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456 /* Loop over all entries in {path}. */
5457 while (*path != NUL)
5458 {
5459 /* Copy one item of the path to buf[] and concatenate the file name. */
5460 copy_option_part(&path, buf, MAXPATHL, ",");
5461 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
5462 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005463# if defined(MSWIN)
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005464 /* Using the platform's path separator (\) makes vim incorrectly
5465 * treat it as an escape character, use '/' instead. */
5466 if (*buf != NUL && !after_pathsep(buf, buf + STRLEN(buf)))
5467 STRCAT(buf, "/");
5468# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469 add_pathsep(buf);
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005470# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 STRCAT(buf, file);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005472 if (ExpandFromContext(&xpc, buf, &num_p, &p,
5473 WILD_SILENT|expand_options) != FAIL && num_p > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005474 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005475 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT|expand_options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005477 if (ga_grow(ga, num_p) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005478 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479 for (i = 0; i < num_p; ++i)
5480 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005481 ((char_u **)ga->ga_data)[ga->ga_len] =
Bram Moolenaar7116aa02014-05-29 14:36:29 +02005482 vim_strnsave(p[i], (int)STRLEN(p[i]));
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005483 ++ga->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005486
Bram Moolenaar071d4272004-06-13 20:20:40 +00005487 FreeWild(num_p, p);
5488 }
5489 }
5490 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491
5492 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493}
5494
5495#endif
5496
5497#if defined(FEAT_CMDHIST) || defined(PROTO)
5498
5499/*********************************
5500 * Command line history stuff *
5501 *********************************/
5502
5503/*
5504 * Translate a history character to the associated type number.
5505 */
5506 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005507hist_char2type(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508{
5509 if (c == ':')
5510 return HIST_CMD;
5511 if (c == '=')
5512 return HIST_EXPR;
5513 if (c == '@')
5514 return HIST_INPUT;
5515 if (c == '>')
5516 return HIST_DEBUG;
5517 return HIST_SEARCH; /* must be '?' or '/' */
5518}
5519
5520/*
5521 * Table of history names.
5522 * These names are used in :history and various hist...() functions.
5523 * It is sufficient to give the significant prefix of a history name.
5524 */
5525
5526static char *(history_names[]) =
5527{
5528 "cmd",
5529 "search",
5530 "expr",
5531 "input",
5532 "debug",
5533 NULL
5534};
5535
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005536#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5537/*
5538 * Function given to ExpandGeneric() to obtain the possible first
5539 * arguments of the ":history command.
5540 */
5541 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005542get_history_arg(expand_T *xp UNUSED, int idx)
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005543{
5544 static char_u compl[2] = { NUL, NUL };
5545 char *short_names = ":=@>?/";
Bram Moolenaar17bd9dc2012-05-25 11:02:41 +02005546 int short_names_count = (int)STRLEN(short_names);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005547 int history_name_count = sizeof(history_names) / sizeof(char *) - 1;
5548
5549 if (idx < short_names_count)
5550 {
5551 compl[0] = (char_u)short_names[idx];
5552 return compl;
5553 }
5554 if (idx < short_names_count + history_name_count)
5555 return (char_u *)history_names[idx - short_names_count];
5556 if (idx == short_names_count + history_name_count)
5557 return (char_u *)"all";
5558 return NULL;
5559}
5560#endif
5561
Bram Moolenaar071d4272004-06-13 20:20:40 +00005562/*
5563 * init_history() - Initialize the command line history.
5564 * Also used to re-allocate the history when the size changes.
5565 */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00005566 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005567init_history(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568{
5569 int newlen; /* new length of history table */
5570 histentry_T *temp;
5571 int i;
5572 int j;
5573 int type;
5574
5575 /*
5576 * If size of history table changed, reallocate it
5577 */
5578 newlen = (int)p_hi;
5579 if (newlen != hislen) /* history length changed */
5580 {
5581 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */
5582 {
5583 if (newlen)
5584 {
5585 temp = (histentry_T *)lalloc(
5586 (long_u)(newlen * sizeof(histentry_T)), TRUE);
5587 if (temp == NULL) /* out of memory! */
5588 {
5589 if (type == 0) /* first one: just keep the old length */
5590 {
5591 newlen = hislen;
5592 break;
5593 }
5594 /* Already changed one table, now we can only have zero
5595 * length for all tables. */
5596 newlen = 0;
5597 type = -1;
5598 continue;
5599 }
5600 }
5601 else
5602 temp = NULL;
5603 if (newlen == 0 || temp != NULL)
5604 {
5605 if (hisidx[type] < 0) /* there are no entries yet */
5606 {
5607 for (i = 0; i < newlen; ++i)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005608 clear_hist_entry(&temp[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005609 }
5610 else if (newlen > hislen) /* array becomes bigger */
5611 {
5612 for (i = 0; i <= hisidx[type]; ++i)
5613 temp[i] = history[type][i];
5614 j = i;
5615 for ( ; i <= newlen - (hislen - hisidx[type]); ++i)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005616 clear_hist_entry(&temp[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617 for ( ; j < hislen; ++i, ++j)
5618 temp[i] = history[type][j];
5619 }
5620 else /* array becomes smaller or 0 */
5621 {
5622 j = hisidx[type];
5623 for (i = newlen - 1; ; --i)
5624 {
5625 if (i >= 0) /* copy newest entries */
5626 temp[i] = history[type][j];
5627 else /* remove older entries */
5628 vim_free(history[type][j].hisstr);
5629 if (--j < 0)
5630 j = hislen - 1;
5631 if (j == hisidx[type])
5632 break;
5633 }
5634 hisidx[type] = newlen - 1;
5635 }
5636 vim_free(history[type]);
5637 history[type] = temp;
5638 }
5639 }
5640 hislen = newlen;
5641 }
5642}
5643
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005644 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005645clear_hist_entry(histentry_T *hisptr)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005646{
5647 hisptr->hisnum = 0;
5648 hisptr->viminfo = FALSE;
5649 hisptr->hisstr = NULL;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02005650 hisptr->time_set = 0;
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005651}
5652
Bram Moolenaar071d4272004-06-13 20:20:40 +00005653/*
5654 * Check if command line 'str' is already in history.
5655 * If 'move_to_front' is TRUE, matching entry is moved to end of history.
5656 */
5657 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005658in_history(
5659 int type,
5660 char_u *str,
5661 int move_to_front, /* Move the entry to the front if it exists */
5662 int sep,
5663 int writing) /* ignore entries read from viminfo */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005664{
5665 int i;
5666 int last_i = -1;
Bram Moolenaar4c402232011-07-27 17:58:46 +02005667 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005668
5669 if (hisidx[type] < 0)
5670 return FALSE;
5671 i = hisidx[type];
5672 do
5673 {
5674 if (history[type][i].hisstr == NULL)
5675 return FALSE;
Bram Moolenaar4c402232011-07-27 17:58:46 +02005676
5677 /* For search history, check that the separator character matches as
5678 * well. */
5679 p = history[type][i].hisstr;
5680 if (STRCMP(str, p) == 0
Bram Moolenaar07219f92013-04-14 23:19:36 +02005681 && !(writing && history[type][i].viminfo)
Bram Moolenaar4c402232011-07-27 17:58:46 +02005682 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683 {
5684 if (!move_to_front)
5685 return TRUE;
5686 last_i = i;
5687 break;
5688 }
5689 if (--i < 0)
5690 i = hislen - 1;
5691 } while (i != hisidx[type]);
5692
5693 if (last_i >= 0)
5694 {
5695 str = history[type][i].hisstr;
5696 while (i != hisidx[type])
5697 {
5698 if (++i >= hislen)
5699 i = 0;
5700 history[type][last_i] = history[type][i];
5701 last_i = i;
5702 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005703 history[type][i].hisnum = ++hisnum[type];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005704 history[type][i].viminfo = FALSE;
5705 history[type][i].hisstr = str;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02005706 history[type][i].time_set = vim_time();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005707 return TRUE;
5708 }
5709 return FALSE;
5710}
5711
5712/*
5713 * Convert history name (from table above) to its HIST_ equivalent.
5714 * When "name" is empty, return "cmd" history.
5715 * Returns -1 for unknown history name.
5716 */
5717 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005718get_histtype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719{
5720 int i;
5721 int len = (int)STRLEN(name);
5722
5723 /* No argument: use current history. */
5724 if (len == 0)
5725 return hist_char2type(ccline.cmdfirstc);
5726
5727 for (i = 0; history_names[i] != NULL; ++i)
5728 if (STRNICMP(name, history_names[i], len) == 0)
5729 return i;
5730
5731 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL)
5732 return hist_char2type(name[0]);
5733
5734 return -1;
5735}
5736
5737static int last_maptick = -1; /* last seen maptick */
5738
5739/*
5740 * Add the given string to the given history. If the string is already in the
5741 * history then it is moved to the front. "histype" may be one of he HIST_
5742 * values.
5743 */
5744 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005745add_to_history(
5746 int histype,
5747 char_u *new_entry,
5748 int in_map, /* consider maptick when inside a mapping */
5749 int sep) /* separator character used (search hist) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750{
5751 histentry_T *hisptr;
5752 int len;
5753
5754 if (hislen == 0) /* no history */
5755 return;
5756
Bram Moolenaara939e432013-11-09 05:30:26 +01005757 if (cmdmod.keeppatterns && histype == HIST_SEARCH)
5758 return;
5759
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760 /*
5761 * Searches inside the same mapping overwrite each other, so that only
5762 * the last line is kept. Be careful not to remove a line that was moved
5763 * down, only lines that were added.
5764 */
5765 if (histype == HIST_SEARCH && in_map)
5766 {
Bram Moolenaar46643712016-09-09 21:42:36 +02005767 if (maptick == last_maptick && hisidx[HIST_SEARCH] >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005768 {
5769 /* Current line is from the same mapping, remove it */
5770 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];
5771 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005772 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005773 --hisnum[histype];
5774 if (--hisidx[HIST_SEARCH] < 0)
5775 hisidx[HIST_SEARCH] = hislen - 1;
5776 }
5777 last_maptick = -1;
5778 }
Bram Moolenaar07219f92013-04-14 23:19:36 +02005779 if (!in_history(histype, new_entry, TRUE, sep, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780 {
5781 if (++hisidx[histype] == hislen)
5782 hisidx[histype] = 0;
5783 hisptr = &history[histype][hisidx[histype]];
5784 vim_free(hisptr->hisstr);
5785
5786 /* Store the separator after the NUL of the string. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005787 len = (int)STRLEN(new_entry);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005788 hisptr->hisstr = vim_strnsave(new_entry, len + 2);
5789 if (hisptr->hisstr != NULL)
5790 hisptr->hisstr[len + 1] = sep;
5791
5792 hisptr->hisnum = ++hisnum[histype];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005793 hisptr->viminfo = FALSE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02005794 hisptr->time_set = vim_time();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005795 if (histype == HIST_SEARCH && in_map)
5796 last_maptick = maptick;
5797 }
5798}
5799
5800#if defined(FEAT_EVAL) || defined(PROTO)
5801
5802/*
5803 * Get identifier of newest history entry.
5804 * "histype" may be one of the HIST_ values.
5805 */
5806 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005807get_history_idx(int histype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808{
5809 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5810 || hisidx[histype] < 0)
5811 return -1;
5812
5813 return history[histype][hisidx[histype]].hisnum;
5814}
5815
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005816/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817 * Calculate history index from a number:
5818 * num > 0: seen as identifying number of a history entry
5819 * num < 0: relative position in history wrt newest entry
5820 * "histype" may be one of the HIST_ values.
5821 */
5822 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005823calc_hist_idx(int histype, int num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005824{
5825 int i;
5826 histentry_T *hist;
5827 int wrapped = FALSE;
5828
5829 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5830 || (i = hisidx[histype]) < 0 || num == 0)
5831 return -1;
5832
5833 hist = history[histype];
5834 if (num > 0)
5835 {
5836 while (hist[i].hisnum > num)
5837 if (--i < 0)
5838 {
5839 if (wrapped)
5840 break;
5841 i += hislen;
5842 wrapped = TRUE;
5843 }
5844 if (hist[i].hisnum == num && hist[i].hisstr != NULL)
5845 return i;
5846 }
5847 else if (-num <= hislen)
5848 {
5849 i += num + 1;
5850 if (i < 0)
5851 i += hislen;
5852 if (hist[i].hisstr != NULL)
5853 return i;
5854 }
5855 return -1;
5856}
5857
5858/*
5859 * Get a history entry by its index.
5860 * "histype" may be one of the HIST_ values.
5861 */
5862 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005863get_history_entry(int histype, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005864{
5865 idx = calc_hist_idx(histype, idx);
5866 if (idx >= 0)
5867 return history[histype][idx].hisstr;
5868 else
5869 return (char_u *)"";
5870}
5871
5872/*
5873 * Clear all entries of a history.
5874 * "histype" may be one of the HIST_ values.
5875 */
5876 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005877clr_history(int histype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878{
5879 int i;
5880 histentry_T *hisptr;
5881
5882 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT)
5883 {
5884 hisptr = history[histype];
5885 for (i = hislen; i--;)
5886 {
5887 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005888 clear_hist_entry(hisptr);
Bram Moolenaar119d4692016-03-05 21:21:24 +01005889 hisptr++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005890 }
5891 hisidx[histype] = -1; /* mark history as cleared */
5892 hisnum[histype] = 0; /* reset identifier counter */
5893 return OK;
5894 }
5895 return FAIL;
5896}
5897
5898/*
5899 * Remove all entries matching {str} from a history.
5900 * "histype" may be one of the HIST_ values.
5901 */
5902 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005903del_history_entry(int histype, char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904{
5905 regmatch_T regmatch;
5906 histentry_T *hisptr;
5907 int idx;
5908 int i;
5909 int last;
5910 int found = FALSE;
5911
5912 regmatch.regprog = NULL;
5913 regmatch.rm_ic = FALSE; /* always match case */
5914 if (hislen != 0
5915 && histype >= 0
5916 && histype < HIST_COUNT
5917 && *str != NUL
5918 && (idx = hisidx[histype]) >= 0
5919 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING))
5920 != NULL)
5921 {
5922 i = last = idx;
5923 do
5924 {
5925 hisptr = &history[histype][i];
5926 if (hisptr->hisstr == NULL)
5927 break;
5928 if (vim_regexec(&regmatch, hisptr->hisstr, (colnr_T)0))
5929 {
5930 found = TRUE;
5931 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005932 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 }
5934 else
5935 {
5936 if (i != last)
5937 {
5938 history[histype][last] = *hisptr;
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005939 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005940 }
5941 if (--last < 0)
5942 last += hislen;
5943 }
5944 if (--i < 0)
5945 i += hislen;
5946 } while (i != idx);
5947 if (history[histype][idx].hisstr == NULL)
5948 hisidx[histype] = -1;
5949 }
Bram Moolenaar473de612013-06-08 18:19:48 +02005950 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005951 return found;
5952}
5953
5954/*
5955 * Remove an indexed entry from a history.
5956 * "histype" may be one of the HIST_ values.
5957 */
5958 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005959del_history_idx(int histype, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005960{
5961 int i, j;
5962
5963 i = calc_hist_idx(histype, idx);
5964 if (i < 0)
5965 return FALSE;
5966 idx = hisidx[histype];
5967 vim_free(history[histype][i].hisstr);
5968
5969 /* When deleting the last added search string in a mapping, reset
5970 * last_maptick, so that the last added search string isn't deleted again.
5971 */
5972 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx)
5973 last_maptick = -1;
5974
5975 while (i != idx)
5976 {
5977 j = (i + 1) % hislen;
5978 history[histype][i] = history[histype][j];
5979 i = j;
5980 }
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005981 clear_hist_entry(&history[histype][i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005982 if (--i < 0)
5983 i += hislen;
5984 hisidx[histype] = i;
5985 return TRUE;
5986}
5987
5988#endif /* FEAT_EVAL */
5989
5990#if defined(FEAT_CRYPT) || defined(PROTO)
5991/*
5992 * Very specific function to remove the value in ":set key=val" from the
5993 * history.
5994 */
5995 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005996remove_key_from_history(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005997{
5998 char_u *p;
5999 int i;
6000
6001 i = hisidx[HIST_CMD];
6002 if (i < 0)
6003 return;
6004 p = history[HIST_CMD][i].hisstr;
6005 if (p != NULL)
6006 for ( ; *p; ++p)
6007 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3]))
6008 {
6009 p = vim_strchr(p + 3, '=');
6010 if (p == NULL)
6011 break;
6012 ++p;
6013 for (i = 0; p[i] && !vim_iswhite(p[i]); ++i)
6014 if (p[i] == '\\' && p[i + 1])
6015 ++i;
Bram Moolenaar446cb832008-06-24 21:56:24 +00006016 STRMOVE(p, p + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006017 --p;
6018 }
6019}
6020#endif
6021
6022#endif /* FEAT_CMDHIST */
6023
Bram Moolenaar064154c2016-03-19 22:50:43 +01006024#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006025/*
6026 * Get pointer to the command line info to use. cmdline_paste() may clear
6027 * ccline and put the previous value in prev_ccline.
6028 */
6029 static struct cmdline_info *
6030get_ccline_ptr(void)
6031{
6032 if ((State & CMDLINE) == 0)
6033 return NULL;
6034 if (ccline.cmdbuff != NULL)
6035 return &ccline;
6036 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
6037 return &prev_ccline;
6038 return NULL;
6039}
Bram Moolenaar064154c2016-03-19 22:50:43 +01006040#endif
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006041
Bram Moolenaar064154c2016-03-19 22:50:43 +01006042#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006043/*
6044 * Get the current command line in allocated memory.
6045 * Only works when the command line is being edited.
6046 * Returns NULL when something is wrong.
6047 */
6048 char_u *
6049get_cmdline_str(void)
6050{
6051 struct cmdline_info *p = get_ccline_ptr();
6052
6053 if (p == NULL)
6054 return NULL;
6055 return vim_strnsave(p->cmdbuff, p->cmdlen);
6056}
6057
6058/*
6059 * Get the current command line position, counted in bytes.
6060 * Zero is the first position.
6061 * Only works when the command line is being edited.
6062 * Returns -1 when something is wrong.
6063 */
6064 int
6065get_cmdline_pos(void)
6066{
6067 struct cmdline_info *p = get_ccline_ptr();
6068
6069 if (p == NULL)
6070 return -1;
6071 return p->cmdpos;
6072}
6073
6074/*
6075 * Set the command line byte position to "pos". Zero is the first position.
6076 * Only works when the command line is being edited.
6077 * Returns 1 when failed, 0 when OK.
6078 */
6079 int
6080set_cmdline_pos(
6081 int pos)
6082{
6083 struct cmdline_info *p = get_ccline_ptr();
6084
6085 if (p == NULL)
6086 return 1;
6087
6088 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
6089 * changed the command line. */
6090 if (pos < 0)
6091 new_cmdpos = 0;
6092 else
6093 new_cmdpos = pos;
6094 return 0;
6095}
6096#endif
6097
6098#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
6099/*
6100 * Get the current command-line type.
6101 * Returns ':' or '/' or '?' or '@' or '>' or '-'
6102 * Only works when the command line is being edited.
6103 * Returns NUL when something is wrong.
6104 */
6105 int
6106get_cmdline_type(void)
6107{
6108 struct cmdline_info *p = get_ccline_ptr();
6109
6110 if (p == NULL)
6111 return NUL;
6112 if (p->cmdfirstc == NUL)
Bram Moolenaar064154c2016-03-19 22:50:43 +01006113 return
6114# ifdef FEAT_EVAL
6115 (p->input_fn) ? '@' :
6116# endif
6117 '-';
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006118 return p->cmdfirstc;
6119}
6120#endif
6121
Bram Moolenaar071d4272004-06-13 20:20:40 +00006122#if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO)
6123/*
6124 * Get indices "num1,num2" that specify a range within a list (not a range of
6125 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
6126 * Returns OK if parsed successfully, otherwise FAIL.
6127 */
6128 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006129get_list_range(char_u **str, int *num1, int *num2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006130{
6131 int len;
6132 int first = FALSE;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02006133 varnumber_T num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006134
6135 *str = skipwhite(*str);
6136 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
6137 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006138 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006139 *str += len;
6140 *num1 = (int)num;
6141 first = TRUE;
6142 }
6143 *str = skipwhite(*str);
6144 if (**str == ',') /* parse "to" part of range */
6145 {
6146 *str = skipwhite(*str + 1);
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006147 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006148 if (len > 0)
6149 {
6150 *num2 = (int)num;
6151 *str = skipwhite(*str + len);
6152 }
6153 else if (!first) /* no number given at all */
6154 return FAIL;
6155 }
6156 else if (first) /* only one number given */
6157 *num2 = *num1;
6158 return OK;
6159}
6160#endif
6161
6162#if defined(FEAT_CMDHIST) || defined(PROTO)
6163/*
6164 * :history command - print a history
6165 */
6166 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006167ex_history(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006168{
6169 histentry_T *hist;
6170 int histype1 = HIST_CMD;
6171 int histype2 = HIST_CMD;
6172 int hisidx1 = 1;
6173 int hisidx2 = -1;
6174 int idx;
6175 int i, j, k;
6176 char_u *end;
6177 char_u *arg = eap->arg;
6178
6179 if (hislen == 0)
6180 {
6181 MSG(_("'history' option is zero"));
6182 return;
6183 }
6184
6185 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ','))
6186 {
6187 end = arg;
6188 while (ASCII_ISALPHA(*end)
6189 || vim_strchr((char_u *)":=@>/?", *end) != NULL)
6190 end++;
6191 i = *end;
6192 *end = NUL;
6193 histype1 = get_histtype(arg);
6194 if (histype1 == -1)
6195 {
Bram Moolenaarb9c1e962009-04-22 11:52:33 +00006196 if (STRNICMP(arg, "all", STRLEN(arg)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197 {
6198 histype1 = 0;
6199 histype2 = HIST_COUNT-1;
6200 }
6201 else
6202 {
6203 *end = i;
6204 EMSG(_(e_trailing));
6205 return;
6206 }
6207 }
6208 else
6209 histype2 = histype1;
6210 *end = i;
6211 }
6212 else
6213 end = arg;
6214 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL)
6215 {
6216 EMSG(_(e_trailing));
6217 return;
6218 }
6219
6220 for (; !got_int && histype1 <= histype2; ++histype1)
6221 {
6222 STRCPY(IObuff, "\n # ");
6223 STRCAT(STRCAT(IObuff, history_names[histype1]), " history");
6224 MSG_PUTS_TITLE(IObuff);
6225 idx = hisidx[histype1];
6226 hist = history[histype1];
6227 j = hisidx1;
6228 k = hisidx2;
6229 if (j < 0)
6230 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum;
6231 if (k < 0)
6232 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum;
6233 if (idx >= 0 && j <= k)
6234 for (i = idx + 1; !got_int; ++i)
6235 {
6236 if (i == hislen)
6237 i = 0;
6238 if (hist[i].hisstr != NULL
6239 && hist[i].hisnum >= j && hist[i].hisnum <= k)
6240 {
6241 msg_putchar('\n');
6242 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ',
6243 hist[i].hisnum);
6244 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10)
6245 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff),
Bram Moolenaar38f5f952012-01-26 13:01:59 +01006246 (int)Columns - 10, IOSIZE - (int)STRLEN(IObuff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006247 else
6248 STRCAT(IObuff, hist[i].hisstr);
6249 msg_outtrans(IObuff);
6250 out_flush();
6251 }
6252 if (i == idx)
6253 break;
6254 }
6255 }
6256}
6257#endif
6258
6259#if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006260/*
6261 * Buffers for history read from a viminfo file. Only valid while reading.
6262 */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006263static histentry_T *viminfo_history[HIST_COUNT] =
6264 {NULL, NULL, NULL, NULL, NULL};
6265static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0, 0};
6266static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006267static int viminfo_add_at_front = FALSE;
6268
Bram Moolenaard25c16e2016-01-29 22:13:30 +01006269static int hist_type2char(int type, int use_question);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006270
6271/*
6272 * Translate a history type number to the associated character.
6273 */
6274 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006275hist_type2char(
6276 int type,
6277 int use_question) /* use '?' instead of '/' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006278{
6279 if (type == HIST_CMD)
6280 return ':';
6281 if (type == HIST_SEARCH)
6282 {
6283 if (use_question)
6284 return '?';
6285 else
6286 return '/';
6287 }
6288 if (type == HIST_EXPR)
6289 return '=';
6290 return '@';
6291}
6292
6293/*
6294 * Prepare for reading the history from the viminfo file.
6295 * This allocates history arrays to store the read history lines.
6296 */
6297 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006298prepare_viminfo_history(int asklen, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006299{
6300 int i;
6301 int num;
6302 int type;
6303 int len;
6304
6305 init_history();
Bram Moolenaar07219f92013-04-14 23:19:36 +02006306 viminfo_add_at_front = (asklen != 0 && !writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006307 if (asklen > hislen)
6308 asklen = hislen;
6309
6310 for (type = 0; type < HIST_COUNT; ++type)
6311 {
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006312 /* Count the number of empty spaces in the history list. Entries read
6313 * from viminfo previously are also considered empty. If there are
6314 * more spaces available than we request, then fill them up. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315 for (i = 0, num = 0; i < hislen; i++)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006316 if (history[type][i].hisstr == NULL || history[type][i].viminfo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006317 num++;
6318 len = asklen;
6319 if (num > len)
6320 len = num;
6321 if (len <= 0)
6322 viminfo_history[type] = NULL;
6323 else
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006324 viminfo_history[type] = (histentry_T *)lalloc(
6325 (long_u)(len * sizeof(histentry_T)), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006326 if (viminfo_history[type] == NULL)
6327 len = 0;
6328 viminfo_hislen[type] = len;
6329 viminfo_hisidx[type] = 0;
6330 }
6331}
6332
6333/*
6334 * Accept a line from the viminfo, store it in the history array when it's
6335 * new.
6336 */
6337 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006338read_viminfo_history(vir_T *virp, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006339{
6340 int type;
6341 long_u len;
6342 char_u *val;
6343 char_u *p;
6344
6345 type = hist_char2type(virp->vir_line[0]);
6346 if (viminfo_hisidx[type] < viminfo_hislen[type])
6347 {
6348 val = viminfo_readstring(virp, 1, TRUE);
6349 if (val != NULL && *val != NUL)
6350 {
Bram Moolenaard87fbc22012-02-04 22:44:32 +01006351 int sep = (*val == ' ' ? NUL : *val);
6352
Bram Moolenaar071d4272004-06-13 20:20:40 +00006353 if (!in_history(type, val + (type == HIST_SEARCH),
Bram Moolenaar07219f92013-04-14 23:19:36 +02006354 viminfo_add_at_front, sep, writing))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006355 {
6356 /* Need to re-allocate to append the separator byte. */
6357 len = STRLEN(val);
6358 p = lalloc(len + 2, TRUE);
6359 if (p != NULL)
6360 {
6361 if (type == HIST_SEARCH)
6362 {
6363 /* Search entry: Move the separator from the first
6364 * column to after the NUL. */
6365 mch_memmove(p, val + 1, (size_t)len);
Bram Moolenaard87fbc22012-02-04 22:44:32 +01006366 p[len] = sep;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006367 }
6368 else
6369 {
6370 /* Not a search entry: No separator in the viminfo
6371 * file, add a NUL separator. */
6372 mch_memmove(p, val, (size_t)len + 1);
6373 p[len + 1] = NUL;
6374 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006375 viminfo_history[type][viminfo_hisidx[type]].hisstr = p;
6376 viminfo_history[type][viminfo_hisidx[type]].time_set = 0;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006377 viminfo_history[type][viminfo_hisidx[type]].viminfo = TRUE;
6378 viminfo_history[type][viminfo_hisidx[type]].hisnum = 0;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006379 viminfo_hisidx[type]++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006380 }
6381 }
6382 }
6383 vim_free(val);
6384 }
6385 return viminfo_readline(virp);
6386}
6387
Bram Moolenaar07219f92013-04-14 23:19:36 +02006388/*
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006389 * Accept a new style history line from the viminfo, store it in the history
6390 * array when it's new.
6391 */
6392 void
6393handle_viminfo_history(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006394 garray_T *values,
6395 int writing)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006396{
6397 int type;
6398 long_u len;
6399 char_u *val;
6400 char_u *p;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006401 bval_T *vp = (bval_T *)values->ga_data;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006402
6403 /* Check the format:
6404 * |{bartype},{histtype},{timestamp},{separator},"text" */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006405 if (values->ga_len < 4
6406 || vp[0].bv_type != BVAL_NR
6407 || vp[1].bv_type != BVAL_NR
6408 || (vp[2].bv_type != BVAL_NR && vp[2].bv_type != BVAL_EMPTY)
6409 || vp[3].bv_type != BVAL_STRING)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006410 return;
6411
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006412 type = vp[0].bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006413 if (type >= HIST_COUNT)
6414 return;
6415 if (viminfo_hisidx[type] < viminfo_hislen[type])
6416 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006417 val = vp[3].bv_string;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006418 if (val != NULL && *val != NUL)
6419 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006420 int sep = type == HIST_SEARCH && vp[2].bv_type == BVAL_NR
6421 ? vp[2].bv_nr : NUL;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006422 int idx;
6423 int overwrite = FALSE;
6424
6425 if (!in_history(type, val, viminfo_add_at_front, sep, writing))
6426 {
6427 /* If lines were written by an older Vim we need to avoid
6428 * getting duplicates. See if the entry already exists. */
6429 for (idx = 0; idx < viminfo_hisidx[type]; ++idx)
6430 {
6431 p = viminfo_history[type][idx].hisstr;
6432 if (STRCMP(val, p) == 0
6433 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1]))
6434 {
6435 overwrite = TRUE;
6436 break;
6437 }
6438 }
6439
6440 if (!overwrite)
6441 {
6442 /* Need to re-allocate to append the separator byte. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006443 len = vp[3].bv_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006444 p = lalloc(len + 2, TRUE);
6445 }
Bram Moolenaar72e697d2016-06-13 22:48:01 +02006446 else
6447 len = 0; /* for picky compilers */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006448 if (p != NULL)
6449 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006450 viminfo_history[type][idx].time_set = vp[1].bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006451 if (!overwrite)
6452 {
6453 mch_memmove(p, val, (size_t)len + 1);
6454 /* Put the separator after the NUL. */
6455 p[len + 1] = sep;
6456 viminfo_history[type][idx].hisstr = p;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006457 viminfo_history[type][idx].hisnum = 0;
6458 viminfo_history[type][idx].viminfo = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006459 viminfo_hisidx[type]++;
6460 }
6461 }
6462 }
6463 }
6464 }
6465}
6466
6467/*
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006468 * Concatenate history lines from viminfo after the lines typed in this Vim.
Bram Moolenaar07219f92013-04-14 23:19:36 +02006469 */
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006470 static void
6471concat_history(int type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472{
6473 int idx;
6474 int i;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006475
6476 idx = hisidx[type] + viminfo_hisidx[type];
6477 if (idx >= hislen)
6478 idx -= hislen;
6479 else if (idx < 0)
6480 idx = hislen - 1;
6481 if (viminfo_add_at_front)
6482 hisidx[type] = idx;
6483 else
6484 {
6485 if (hisidx[type] == -1)
6486 hisidx[type] = hislen - 1;
6487 do
6488 {
6489 if (history[type][idx].hisstr != NULL
6490 || history[type][idx].viminfo)
6491 break;
6492 if (++idx == hislen)
6493 idx = 0;
6494 } while (idx != hisidx[type]);
6495 if (idx != hisidx[type] && --idx < 0)
6496 idx = hislen - 1;
6497 }
6498 for (i = 0; i < viminfo_hisidx[type]; i++)
6499 {
6500 vim_free(history[type][idx].hisstr);
6501 history[type][idx].hisstr = viminfo_history[type][i].hisstr;
6502 history[type][idx].viminfo = TRUE;
6503 history[type][idx].time_set = viminfo_history[type][i].time_set;
6504 if (--idx < 0)
6505 idx = hislen - 1;
6506 }
6507 idx += 1;
6508 idx %= hislen;
6509 for (i = 0; i < viminfo_hisidx[type]; i++)
6510 {
6511 history[type][idx++].hisnum = ++hisnum[type];
6512 idx %= hislen;
6513 }
6514}
6515
6516#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6517 static int
6518#ifdef __BORLANDC__
6519_RTLENTRYF
6520#endif
6521sort_hist(const void *s1, const void *s2)
6522{
6523 histentry_T *p1 = *(histentry_T **)s1;
6524 histentry_T *p2 = *(histentry_T **)s2;
6525
6526 if (p1->time_set < p2->time_set) return -1;
6527 if (p1->time_set > p2->time_set) return 1;
6528 return 0;
6529}
6530#endif
6531
6532/*
6533 * Merge history lines from viminfo and lines typed in this Vim based on the
6534 * timestamp;
6535 */
6536 static void
6537merge_history(int type)
6538{
6539 int max_len;
6540 histentry_T **tot_hist;
6541 histentry_T *new_hist;
6542 int i;
6543 int len;
6544
6545 /* Make one long list with all entries. */
6546 max_len = hislen + viminfo_hisidx[type];
6547 tot_hist = (histentry_T **)alloc(max_len * (int)sizeof(histentry_T *));
6548 new_hist = (histentry_T *)alloc(hislen * (int)sizeof(histentry_T));
6549 if (tot_hist == NULL || new_hist == NULL)
6550 {
6551 vim_free(tot_hist);
6552 vim_free(new_hist);
6553 return;
6554 }
6555 for (i = 0; i < viminfo_hisidx[type]; i++)
6556 tot_hist[i] = &viminfo_history[type][i];
6557 len = i;
6558 for (i = 0; i < hislen; i++)
6559 if (history[type][i].hisstr != NULL)
6560 tot_hist[len++] = &history[type][i];
6561
6562 /* Sort the list on timestamp. */
6563 qsort((void *)tot_hist, (size_t)len, sizeof(histentry_T *), sort_hist);
6564
6565 /* Keep the newest ones. */
6566 for (i = 0; i < hislen; i++)
6567 {
6568 if (i < len)
6569 {
6570 new_hist[i] = *tot_hist[i];
6571 tot_hist[i]->hisstr = NULL;
6572 if (new_hist[i].hisnum == 0)
6573 new_hist[i].hisnum = ++hisnum[type];
6574 }
6575 else
6576 clear_hist_entry(&new_hist[i]);
6577 }
Bram Moolenaara890f5e2016-06-12 23:03:19 +02006578 hisidx[type] = (i < len ? i : len) - 1;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006579
6580 /* Free what is not kept. */
6581 for (i = 0; i < viminfo_hisidx[type]; i++)
6582 vim_free(viminfo_history[type][i].hisstr);
6583 for (i = 0; i < hislen; i++)
6584 vim_free(history[type][i].hisstr);
6585 vim_free(history[type]);
6586 history[type] = new_hist;
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02006587 vim_free(tot_hist);
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006588}
6589
6590/*
6591 * Finish reading history lines from viminfo. Not used when writing viminfo.
6592 */
6593 void
6594finish_viminfo_history(vir_T *virp)
6595{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006596 int type;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006597 int merge = virp->vir_version >= VIMINFO_VERSION_WITH_HISTORY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006598
6599 for (type = 0; type < HIST_COUNT; ++type)
6600 {
6601 if (history[type] == NULL)
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006602 continue;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006603
6604 if (merge)
6605 merge_history(type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006606 else
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006607 concat_history(type);
6608
Bram Moolenaar071d4272004-06-13 20:20:40 +00006609 vim_free(viminfo_history[type]);
6610 viminfo_history[type] = NULL;
Bram Moolenaarf687cf32013-04-24 15:39:11 +02006611 viminfo_hisidx[type] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006612 }
6613}
6614
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006615/*
6616 * Write history to viminfo file in "fp".
6617 * When "merge" is TRUE merge history lines with a previously read viminfo
6618 * file, data is in viminfo_history[].
6619 * When "merge" is FALSE just write all history lines. Used for ":wviminfo!".
6620 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006621 void
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006622write_viminfo_history(FILE *fp, int merge)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006623{
6624 int i;
6625 int type;
6626 int num_saved;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006627 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006628
6629 init_history();
6630 if (hislen == 0)
6631 return;
6632 for (type = 0; type < HIST_COUNT; ++type)
6633 {
6634 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE));
6635 if (num_saved == 0)
6636 continue;
6637 if (num_saved < 0) /* Use default */
6638 num_saved = hislen;
6639 fprintf(fp, _("\n# %s History (newest to oldest):\n"),
6640 type == HIST_CMD ? _("Command Line") :
6641 type == HIST_SEARCH ? _("Search String") :
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006642 type == HIST_EXPR ? _("Expression") :
6643 type == HIST_INPUT ? _("Input Line") :
6644 _("Debug Line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006645 if (num_saved > hislen)
6646 num_saved = hislen;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006647
6648 /*
6649 * Merge typed and viminfo history:
6650 * round 1: history of typed commands.
6651 * round 2: history from recently read viminfo.
6652 */
6653 for (round = 1; round <= 2; ++round)
6654 {
Bram Moolenaara8565fe2013-04-15 16:14:22 +02006655 if (round == 1)
6656 /* start at newest entry, somewhere in the list */
6657 i = hisidx[type];
6658 else if (viminfo_hisidx[type] > 0)
6659 /* start at newest entry, first in the list */
6660 i = 0;
6661 else
6662 /* empty list */
6663 i = -1;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006664 if (i >= 0)
6665 while (num_saved > 0
6666 && !(round == 2 && i >= viminfo_hisidx[type]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006667 {
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006668 char_u *p;
6669 time_t timestamp;
6670 int c = NUL;
6671
6672 if (round == 1)
6673 {
6674 p = history[type][i].hisstr;
6675 timestamp = history[type][i].time_set;
6676 }
6677 else
6678 {
6679 p = viminfo_history[type] == NULL ? NULL
6680 : viminfo_history[type][i].hisstr;
6681 timestamp = viminfo_history[type] == NULL ? 0
6682 : viminfo_history[type][i].time_set;
6683 }
6684
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006685 if (p != NULL && (round == 2
6686 || !merge
6687 || !history[type][i].viminfo))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006688 {
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006689 --num_saved;
6690 fputc(hist_type2char(type, TRUE), fp);
6691 /* For the search history: put the separator in the
6692 * second column; use a space if there isn't one. */
6693 if (type == HIST_SEARCH)
6694 {
6695 c = p[STRLEN(p) + 1];
6696 putc(c == NUL ? ' ' : c, fp);
6697 }
6698 viminfo_writestring(fp, p);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006699
6700 {
6701 char cbuf[NUMBUFLEN];
6702
6703 /* New style history with a bar line. Format:
6704 * |{bartype},{histtype},{timestamp},{separator},"text" */
6705 if (c == NUL)
6706 cbuf[0] = NUL;
6707 else
6708 sprintf(cbuf, "%d", c);
6709 fprintf(fp, "|%d,%d,%ld,%s,", BARTYPE_HISTORY,
6710 type, (long)timestamp, cbuf);
6711 barline_writestring(fp, p, LSIZE - 20);
6712 putc('\n', fp);
6713 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006714 }
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006715 if (round == 1)
6716 {
6717 /* Decrement index, loop around and stop when back at
6718 * the start. */
6719 if (--i < 0)
6720 i = hislen - 1;
6721 if (i == hisidx[type])
6722 break;
6723 }
6724 else
6725 {
6726 /* Increment index. Stop at the end in the while. */
6727 ++i;
6728 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006729 }
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006730 }
Bram Moolenaar07219f92013-04-14 23:19:36 +02006731 for (i = 0; i < viminfo_hisidx[type]; ++i)
Bram Moolenaarf687cf32013-04-24 15:39:11 +02006732 if (viminfo_history[type] != NULL)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006733 vim_free(viminfo_history[type][i].hisstr);
Bram Moolenaar07219f92013-04-14 23:19:36 +02006734 vim_free(viminfo_history[type]);
6735 viminfo_history[type] = NULL;
Bram Moolenaarb70a4732013-04-15 22:22:57 +02006736 viminfo_hisidx[type] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006737 }
6738}
6739#endif /* FEAT_VIMINFO */
6740
6741#if defined(FEAT_FKMAP) || defined(PROTO)
6742/*
6743 * Write a character at the current cursor+offset position.
6744 * It is directly written into the command buffer block.
6745 */
6746 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006747cmd_pchar(int c, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006748{
6749 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6750 {
6751 EMSG(_("E198: cmd_pchar beyond the command length"));
6752 return;
6753 }
6754 ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c;
6755 ccline.cmdbuff[ccline.cmdlen] = NUL;
6756}
6757
6758 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006759cmd_gchar(int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006760{
6761 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6762 {
6763 /* EMSG(_("cmd_gchar beyond the command length")); */
6764 return NUL;
6765 }
6766 return (int)ccline.cmdbuff[ccline.cmdpos + offset];
6767}
6768#endif
6769
6770#if defined(FEAT_CMDWIN) || defined(PROTO)
6771/*
6772 * Open a window on the current command line and history. Allow editing in
6773 * the window. Returns when the window is closed.
6774 * Returns:
6775 * CR if the command is to be executed
6776 * Ctrl_C if it is to be abandoned
6777 * K_IGNORE if editing continues
6778 */
6779 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006780ex_window(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006781{
6782 struct cmdline_info save_ccline;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006783 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006784 win_T *old_curwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006785 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006786 win_T *wp;
6787 int i;
6788 linenr_T lnum;
6789 int histtype;
6790 garray_T winsizes;
Bram Moolenaar7693ec62008-07-24 18:29:37 +00006791#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006792 char_u typestr[2];
Bram Moolenaar7693ec62008-07-24 18:29:37 +00006793#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006794 int save_restart_edit = restart_edit;
6795 int save_State = State;
6796 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00006797#ifdef FEAT_RIGHTLEFT
6798 int save_cmdmsg_rl = cmdmsg_rl;
6799#endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006800#ifdef FEAT_FOLDING
6801 int save_KeyTyped;
6802#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006803
6804 /* Can't do this recursively. Can't do it when typing a password. */
6805 if (cmdwin_type != 0
6806# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
6807 || cmdline_star > 0
6808# endif
6809 )
6810 {
6811 beep_flush();
6812 return K_IGNORE;
6813 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006814 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006815
6816 /* Save current window sizes. */
6817 win_size_save(&winsizes);
6818
6819# ifdef FEAT_AUTOCMD
6820 /* Don't execute autocommands while creating the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006821 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006822# endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00006823 /* don't use a new tab page */
6824 cmdmod.tab = 0;
6825
Bram Moolenaar071d4272004-06-13 20:20:40 +00006826 /* Create a window for the command-line buffer. */
6827 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
6828 {
6829 beep_flush();
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006830# ifdef FEAT_AUTOCMD
6831 unblock_autocmds();
6832# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006833 return K_IGNORE;
6834 }
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006835 cmdwin_type = get_cmdline_type();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006836
6837 /* Create the command-line buffer empty. */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006838 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL);
Bram Moolenaar446cb832008-06-24 21:56:24 +00006839 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006840 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
6841 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
6842 curbuf->b_p_ma = TRUE;
Bram Moolenaar876f6d72009-04-29 10:05:51 +00006843#ifdef FEAT_FOLDING
6844 curwin->w_p_fen = FALSE;
6845#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006846# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00006847 curwin->w_p_rl = cmdmsg_rl;
6848 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006849# endif
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006850 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006851
6852# ifdef FEAT_AUTOCMD
6853 /* Do execute autocommands for setting the filetype (load syntax). */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006854 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006855# endif
6856
Bram Moolenaar46152342005-09-07 21:18:43 +00006857 /* Showing the prompt may have set need_wait_return, reset it. */
6858 need_wait_return = FALSE;
6859
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006860 histtype = hist_char2type(cmdwin_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006861 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
6862 {
6863 if (p_wc == TAB)
6864 {
6865 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
6866 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
6867 }
6868 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
6869 }
6870
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006871 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
6872 * sets 'textwidth' to 78). */
6873 curbuf->b_p_tw = 0;
6874
Bram Moolenaar071d4272004-06-13 20:20:40 +00006875 /* Fill the buffer with the history. */
6876 init_history();
6877 if (hislen > 0)
6878 {
6879 i = hisidx[histtype];
6880 if (i >= 0)
6881 {
6882 lnum = 0;
6883 do
6884 {
6885 if (++i == hislen)
6886 i = 0;
6887 if (history[histtype][i].hisstr != NULL)
6888 ml_append(lnum++, history[histtype][i].hisstr,
6889 (colnr_T)0, FALSE);
6890 }
6891 while (i != hisidx[histtype]);
6892 }
6893 }
6894
6895 /* Replace the empty last line with the current command-line and put the
6896 * cursor there. */
6897 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
6898 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6899 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00006900 changed_line_abv_curs();
6901 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00006902 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006903
6904 /* Save the command line info, can be used recursively. */
Bram Moolenaar1d669c22017-01-11 22:40:19 +01006905 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006906
6907 /* No Ex mode here! */
6908 exmode_active = 0;
6909
6910 State = NORMAL;
6911# ifdef FEAT_MOUSE
6912 setmouse();
6913# endif
6914
6915# ifdef FEAT_AUTOCMD
6916 /* Trigger CmdwinEnter autocommands. */
6917 typestr[0] = cmdwin_type;
6918 typestr[1] = NUL;
6919 apply_autocmds(EVENT_CMDWINENTER, typestr, typestr, FALSE, curbuf);
Bram Moolenaar5495cc92006-08-16 14:23:04 +00006920 if (restart_edit != 0) /* autocmd with ":startinsert" */
6921 stuffcharReadbuff(K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006922# endif
6923
6924 i = RedrawingDisabled;
6925 RedrawingDisabled = 0;
6926
6927 /*
6928 * Call the main loop until <CR> or CTRL-C is typed.
6929 */
6930 cmdwin_result = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00006931 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006932
6933 RedrawingDisabled = i;
6934
6935# ifdef FEAT_AUTOCMD
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006936
6937# ifdef FEAT_FOLDING
6938 save_KeyTyped = KeyTyped;
6939# endif
6940
Bram Moolenaar071d4272004-06-13 20:20:40 +00006941 /* Trigger CmdwinLeave autocommands. */
6942 apply_autocmds(EVENT_CMDWINLEAVE, typestr, typestr, FALSE, curbuf);
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006943
6944# ifdef FEAT_FOLDING
6945 /* Restore KeyTyped in case it is modified by autocommands */
6946 KeyTyped = save_KeyTyped;
6947# endif
6948
Bram Moolenaar071d4272004-06-13 20:20:40 +00006949# endif
6950
Bram Moolenaarccc18222007-05-10 18:25:20 +00006951 /* Restore the command line info. */
Bram Moolenaar1d669c22017-01-11 22:40:19 +01006952 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006953 cmdwin_type = 0;
6954
6955 exmode_active = save_exmode;
6956
Bram Moolenaarf9821062008-06-20 16:31:07 +00006957 /* Safety check: The old window or buffer was deleted: It's a bug when
Bram Moolenaar071d4272004-06-13 20:20:40 +00006958 * this happens! */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006959 if (!win_valid(old_curwin) || !bufref_valid(&old_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006960 {
6961 cmdwin_result = Ctrl_C;
6962 EMSG(_("E199: Active window or buffer deleted"));
6963 }
6964 else
6965 {
6966# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
6967 /* autocmds may abort script processing */
6968 if (aborting() && cmdwin_result != K_IGNORE)
6969 cmdwin_result = Ctrl_C;
6970# endif
6971 /* Set the new command line from the cmdline buffer. */
6972 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00006973 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006974 {
Bram Moolenaar46152342005-09-07 21:18:43 +00006975 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
6976
6977 if (histtype == HIST_CMD)
6978 {
6979 /* Execute the command directly. */
6980 ccline.cmdbuff = vim_strsave((char_u *)p);
6981 cmdwin_result = CAR;
6982 }
6983 else
6984 {
6985 /* First need to cancel what we were doing. */
6986 ccline.cmdbuff = NULL;
6987 stuffcharReadbuff(':');
6988 stuffReadbuff((char_u *)p);
6989 stuffcharReadbuff(CAR);
6990 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006991 }
6992 else if (cmdwin_result == K_XF2) /* :qa typed */
6993 {
6994 ccline.cmdbuff = vim_strsave((char_u *)"qa");
6995 cmdwin_result = CAR;
6996 }
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02006997 else if (cmdwin_result == Ctrl_C)
6998 {
6999 /* :q or :close, don't execute any command
7000 * and don't modify the cmd window. */
7001 ccline.cmdbuff = NULL;
7002 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007003 else
7004 ccline.cmdbuff = vim_strsave(ml_get_curline());
7005 if (ccline.cmdbuff == NULL)
7006 cmdwin_result = Ctrl_C;
7007 else
7008 {
7009 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
7010 ccline.cmdbufflen = ccline.cmdlen + 1;
7011 ccline.cmdpos = curwin->w_cursor.col;
7012 if (ccline.cmdpos > ccline.cmdlen)
7013 ccline.cmdpos = ccline.cmdlen;
7014 if (cmdwin_result == K_IGNORE)
7015 {
7016 set_cmdspos_cursor();
7017 redrawcmd();
7018 }
7019 }
7020
7021# ifdef FEAT_AUTOCMD
7022 /* Don't execute autocommands while deleting the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007023 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007024# endif
Bram Moolenaarfa67fbe2015-06-25 18:20:36 +02007025# ifdef FEAT_CONCEAL
7026 /* Avoid command-line window first character being concealed. */
7027 curwin->w_p_cole = 0;
7028# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007029 wp = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007030 set_bufref(&bufref, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007031 win_goto(old_curwin);
7032 win_close(wp, TRUE);
Bram Moolenaar8006d692010-03-02 17:23:21 +01007033
7034 /* win_close() may have already wiped the buffer when 'bh' is
7035 * set to 'wipe' */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007036 if (bufref_valid(&bufref))
7037 close_buffer(NULL, bufref.br_buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007038
7039 /* Restore window sizes. */
7040 win_size_restore(&winsizes);
7041
7042# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007043 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007044# endif
7045 }
7046
7047 ga_clear(&winsizes);
7048 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00007049# ifdef FEAT_RIGHTLEFT
7050 cmdmsg_rl = save_cmdmsg_rl;
7051# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007052
7053 State = save_State;
7054# ifdef FEAT_MOUSE
7055 setmouse();
7056# endif
7057
7058 return cmdwin_result;
7059}
7060#endif /* FEAT_CMDWIN */
7061
7062/*
7063 * Used for commands that either take a simple command string argument, or:
7064 * cmd << endmarker
7065 * {script}
7066 * endmarker
7067 * Returns a pointer to allocated memory with {script} or NULL.
7068 */
7069 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007070script_get(exarg_T *eap, char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007071{
7072 char_u *theline;
7073 char *end_pattern = NULL;
7074 char dot[] = ".";
7075 garray_T ga;
7076
7077 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
7078 return NULL;
7079
7080 ga_init2(&ga, 1, 0x400);
7081
7082 if (cmd[2] != NUL)
7083 end_pattern = (char *)skipwhite(cmd + 2);
7084 else
7085 end_pattern = dot;
7086
7087 for (;;)
7088 {
7089 theline = eap->getline(
7090#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00007091 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00007092#endif
7093 NUL, eap->cookie, 0);
7094
7095 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
Bram Moolenaarbe555e72008-08-06 12:19:26 +00007096 {
7097 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007098 break;
Bram Moolenaarbe555e72008-08-06 12:19:26 +00007099 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007100
7101 ga_concat(&ga, theline);
7102 ga_append(&ga, '\n');
7103 vim_free(theline);
7104 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00007105 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007106
7107 return (char_u *)ga.ga_data;
7108}
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02007109
7110#ifdef FEAT_SEARCH_EXTRA
7111 static void
7112set_search_match(pos_T *t)
7113{
7114 /*
7115 * First move cursor to end of match, then to the start. This
7116 * moves the whole match onto the screen when 'nowrap' is set.
7117 */
7118 t->lnum += search_match_lines;
7119 t->col = search_match_endcol;
7120 if (t->lnum > curbuf->b_ml.ml_line_count)
7121 {
7122 t->lnum = curbuf->b_ml.ml_line_count;
7123 coladvance((colnr_T)MAXCOL);
7124 }
7125}
7126#endif