blob: 7b7874ad4fdca1092135b4fa1721f3d78542bde1 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
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 */
28 int cmdfirstc; /* ':', '/', '?', '=' or NUL */
29 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 */
59 char_u *hisstr; /* actual entry, separator char after the NUL */
60} histentry_T;
61
62static histentry_T *(history[HIST_COUNT]) = {NULL, NULL, NULL, NULL, NULL};
63static int hisidx[HIST_COUNT] = {-1, -1, -1, -1, -1}; /* lastused entry */
64static int hisnum[HIST_COUNT] = {0, 0, 0, 0, 0};
65 /* identifying (unique) number of newest history entry */
66static int hislen = 0; /* actual length of history tables */
67
68static int hist_char2type __ARGS((int c));
Bram Moolenaar071d4272004-06-13 20:20:40 +000069
70static int in_history __ARGS((int, char_u *, int));
71# ifdef FEAT_EVAL
72static int calc_hist_idx __ARGS((int histype, int num));
73# endif
74#endif
75
76#ifdef FEAT_RIGHTLEFT
77static int cmd_hkmap = 0; /* Hebrew mapping during command line */
78#endif
79
80#ifdef FEAT_FKMAP
81static int cmd_fkmap = 0; /* Farsi mapping during command line */
82#endif
83
84static int cmdline_charsize __ARGS((int idx));
85static void set_cmdspos __ARGS((void));
86static void set_cmdspos_cursor __ARGS((void));
87#ifdef FEAT_MBYTE
88static void correct_cmdspos __ARGS((int idx, int cells));
89#endif
90static void alloc_cmdbuff __ARGS((int len));
91static int realloc_cmdbuff __ARGS((int len));
92static void draw_cmdline __ARGS((int start, int len));
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +000093static void save_cmdline __ARGS((struct cmdline_info *ccp));
94static void restore_cmdline __ARGS((struct cmdline_info *ccp));
Bram Moolenaar1769d5a2006-10-17 14:25:24 +000095static int cmdline_paste __ARGS((int regname, int literally, int remcr));
Bram Moolenaar071d4272004-06-13 20:20:40 +000096#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
97static void redrawcmd_preedit __ARGS((void));
98#endif
99#ifdef FEAT_WILDMENU
100static void cmdline_del __ARGS((int from));
101#endif
102static void redrawcmdprompt __ARGS((void));
103static void cursorcmd __ARGS((void));
104static int ccheck_abbr __ARGS((int));
105static int nextwild __ARGS((expand_T *xp, int type, int options));
Bram Moolenaar45360022005-07-21 21:08:21 +0000106static void escape_fname __ARGS((char_u **pp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107static int showmatches __ARGS((expand_T *xp, int wildmenu));
108static void set_expand_context __ARGS((expand_T *xp));
109static int ExpandFromContext __ARGS((expand_T *xp, char_u *, int *, char_u ***, int));
110static int expand_showtail __ARGS((expand_T *xp));
111#ifdef FEAT_CMDL_COMPL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000112static int expand_shellcmd __ARGS((char_u *filepat, int *num_file, char_u ***file, int flagsarg));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113static int ExpandRTDir __ARGS((char_u *pat, int *num_file, char_u ***file, char *dirname));
114# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
115static int ExpandUserDefined __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file));
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000116static int ExpandUserList __ARGS((expand_T *xp, int *num_file, char_u ***file));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117# endif
118#endif
119
120#ifdef FEAT_CMDWIN
121static int ex_window __ARGS((void));
122#endif
123
124/*
125 * getcmdline() - accept a command line starting with firstc.
126 *
127 * firstc == ':' get ":" command line.
128 * firstc == '/' or '?' get search pattern
129 * firstc == '=' get expression
130 * firstc == '@' get text for input() function
131 * firstc == '>' get text for debug mode
132 * firstc == NUL get text for :insert command
133 * firstc == -1 like NUL, and break on CTRL-C
134 *
135 * The line is collected in ccline.cmdbuff, which is reallocated to fit the
136 * command line.
137 *
138 * Careful: getcmdline() can be called recursively!
139 *
140 * Return pointer to allocated string if there is a commandline, NULL
141 * otherwise.
142 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143 char_u *
144getcmdline(firstc, count, indent)
145 int firstc;
Bram Moolenaar78a15312009-05-15 19:33:18 +0000146 long count UNUSED; /* only used for incremental search */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147 int indent; /* indent for inside conditionals */
148{
149 int c;
150 int i;
151 int j;
152 int gotesc = FALSE; /* TRUE when <ESC> just typed */
153 int do_abbr; /* when TRUE check for abbr. */
154#ifdef FEAT_CMDHIST
155 char_u *lookfor = NULL; /* string to match */
156 int hiscnt; /* current history line in use */
157 int histype; /* history type to be used */
158#endif
159#ifdef FEAT_SEARCH_EXTRA
160 pos_T old_cursor;
161 colnr_T old_curswant;
162 colnr_T old_leftcol;
163 linenr_T old_topline;
164# ifdef FEAT_DIFF
165 int old_topfill;
166# endif
167 linenr_T old_botline;
168 int did_incsearch = FALSE;
169 int incsearch_postponed = FALSE;
170#endif
171 int did_wild_list = FALSE; /* did wild_list() recently */
172 int wim_index = 0; /* index in wim_flags[] */
173 int res;
174 int save_msg_scroll = msg_scroll;
175 int save_State = State; /* remember State when called */
176 int some_key_typed = FALSE; /* one of the keys was typed */
177#ifdef FEAT_MOUSE
178 /* mouse drag and release events are ignored, unless they are
179 * preceded with a mouse down event */
180 int ignore_drag_release = TRUE;
181#endif
182#ifdef FEAT_EVAL
183 int break_ctrl_c = FALSE;
184#endif
185 expand_T xpc;
186 long *b_im_ptr = NULL;
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000187#if defined(FEAT_WILDMENU) || defined(FEAT_EVAL) || defined(FEAT_SEARCH_EXTRA)
188 /* Everything that may work recursively should save and restore the
189 * current command line in save_ccline. That includes update_screen(), a
190 * custom status line may invoke ":normal". */
191 struct cmdline_info save_ccline;
192#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193
194#ifdef FEAT_SNIFF
195 want_sniff_request = 0;
196#endif
197#ifdef FEAT_EVAL
198 if (firstc == -1)
199 {
200 firstc = NUL;
201 break_ctrl_c = TRUE;
202 }
203#endif
204#ifdef FEAT_RIGHTLEFT
205 /* start without Hebrew mapping for a command line */
206 if (firstc == ':' || firstc == '=' || firstc == '>')
207 cmd_hkmap = 0;
208#endif
209
210 ccline.overstrike = FALSE; /* always start in insert mode */
211#ifdef FEAT_SEARCH_EXTRA
212 old_cursor = curwin->w_cursor; /* needs to be restored later */
213 old_curswant = curwin->w_curswant;
214 old_leftcol = curwin->w_leftcol;
215 old_topline = curwin->w_topline;
216# ifdef FEAT_DIFF
217 old_topfill = curwin->w_topfill;
218# endif
219 old_botline = curwin->w_botline;
220#endif
221
222 /*
223 * set some variables for redrawcmd()
224 */
225 ccline.cmdfirstc = (firstc == '@' ? 0 : firstc);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000226 ccline.cmdindent = (firstc > 0 ? indent : 0);
227
228 /* alloc initial ccline.cmdbuff */
229 alloc_cmdbuff(exmode_active ? 250 : indent + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230 if (ccline.cmdbuff == NULL)
231 return NULL; /* out of memory */
232 ccline.cmdlen = ccline.cmdpos = 0;
233 ccline.cmdbuff[0] = NUL;
234
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000235 /* autoindent for :insert and :append */
236 if (firstc <= 0)
237 {
238 copy_spaces(ccline.cmdbuff, indent);
239 ccline.cmdbuff[indent] = NUL;
240 ccline.cmdpos = indent;
241 ccline.cmdspos = indent;
242 ccline.cmdlen = indent;
243 }
244
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 ExpandInit(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000246 ccline.xpc = &xpc;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247
248#ifdef FEAT_RIGHTLEFT
249 if (curwin->w_p_rl && *curwin->w_p_rlc == 's'
250 && (firstc == '/' || firstc == '?'))
251 cmdmsg_rl = TRUE;
252 else
253 cmdmsg_rl = FALSE;
254#endif
255
256 redir_off = TRUE; /* don't redirect the typed command */
257 if (!cmd_silent)
258 {
259 i = msg_scrolled;
260 msg_scrolled = 0; /* avoid wait_return message */
261 gotocmdline(TRUE);
262 msg_scrolled += i;
263 redrawcmdprompt(); /* draw prompt or indent */
264 set_cmdspos();
265 }
266 xpc.xp_context = EXPAND_NOTHING;
267 xpc.xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000268#ifndef BACKSLASH_IN_FILENAME
269 xpc.xp_shell = FALSE;
270#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000272#if defined(FEAT_EVAL)
273 if (ccline.input_fn)
274 {
275 xpc.xp_context = ccline.xp_context;
276 xpc.xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +0000277# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000278 xpc.xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +0000279# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000280 }
281#endif
282
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283 /*
284 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when
285 * doing ":@0" when register 0 doesn't contain a CR.
286 */
287 msg_scroll = FALSE;
288
289 State = CMDLINE;
290
291 if (firstc == '/' || firstc == '?' || firstc == '@')
292 {
293 /* Use ":lmap" mappings for search pattern and input(). */
294 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT)
295 b_im_ptr = &curbuf->b_p_iminsert;
296 else
297 b_im_ptr = &curbuf->b_p_imsearch;
298 if (*b_im_ptr == B_IMODE_LMAP)
299 State |= LANGMAP;
300#ifdef USE_IM_CONTROL
301 im_set_active(*b_im_ptr == B_IMODE_IM);
302#endif
303 }
304#ifdef USE_IM_CONTROL
305 else if (p_imcmdline)
306 im_set_active(TRUE);
307#endif
308
309#ifdef FEAT_MOUSE
310 setmouse();
311#endif
312#ifdef CURSOR_SHAPE
313 ui_cursor_shape(); /* may show different cursor shape */
314#endif
315
Bram Moolenaarf4d11452005-12-02 00:46:37 +0000316 /* When inside an autocommand for writing "exiting" may be set and
317 * terminal mode set to cooked. Need to set raw mode here then. */
318 settmode(TMODE_RAW);
319
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320#ifdef FEAT_CMDHIST
321 init_history();
322 hiscnt = hislen; /* set hiscnt to impossible history value */
323 histype = hist_char2type(firstc);
324#endif
325
326#ifdef FEAT_DIGRAPHS
Bram Moolenaar3c65e312009-04-29 16:47:23 +0000327 do_digraph(-1); /* init digraph typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328#endif
329
330 /*
331 * Collect the command string, handling editing keys.
332 */
333 for (;;)
334 {
Bram Moolenaar29b2d262006-09-10 19:07:28 +0000335 redir_off = TRUE; /* Don't redirect the typed command.
336 Repeated, because a ":redir" inside
337 completion may switch it on. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338#ifdef USE_ON_FLY_SCROLL
339 dont_scroll = FALSE; /* allow scrolling here */
340#endif
341 quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */
342
343 cursorcmd(); /* set the cursor on the right spot */
Bram Moolenaar30405d32008-01-02 20:55:27 +0000344
345 /* Get a character. Ignore K_IGNORE, it should not do anything, such
346 * as stop completion. */
347 do
348 {
349 c = safe_vgetc();
350 } while (c == K_IGNORE);
351
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352 if (KeyTyped)
353 {
354 some_key_typed = TRUE;
355#ifdef FEAT_RIGHTLEFT
356 if (cmd_hkmap)
357 c = hkmap(c);
358# ifdef FEAT_FKMAP
359 if (cmd_fkmap)
360 c = cmdl_fkmap(c);
361# endif
362 if (cmdmsg_rl && !KeyStuffed)
363 {
364 /* Invert horizontal movements and operations. Only when
365 * typed by the user directly, not when the result of a
366 * mapping. */
367 switch (c)
368 {
369 case K_RIGHT: c = K_LEFT; break;
370 case K_S_RIGHT: c = K_S_LEFT; break;
371 case K_C_RIGHT: c = K_C_LEFT; break;
372 case K_LEFT: c = K_RIGHT; break;
373 case K_S_LEFT: c = K_S_RIGHT; break;
374 case K_C_LEFT: c = K_C_RIGHT; break;
375 }
376 }
377#endif
378 }
379
380 /*
381 * Ignore got_int when CTRL-C was typed here.
382 * Don't ignore it in :global, we really need to break then, e.g., for
383 * ":g/pat/normal /pat" (without the <CR>).
384 * Don't ignore it for the input() function.
385 */
386 if ((c == Ctrl_C
387#ifdef UNIX
388 || c == intr_char
389#endif
390 )
391#if defined(FEAT_EVAL) || defined(FEAT_CRYPT)
392 && firstc != '@'
393#endif
394#ifdef FEAT_EVAL
395 && !break_ctrl_c
396#endif
397 && !global_busy)
398 got_int = FALSE;
399
400#ifdef FEAT_CMDHIST
401 /* free old command line when finished moving around in the history
402 * list */
403 if (lookfor != NULL
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000404 && c != K_S_DOWN && c != K_S_UP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000405 && c != K_DOWN && c != K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 && c != K_PAGEDOWN && c != K_PAGEUP
407 && c != K_KPAGEDOWN && c != K_KPAGEUP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000408 && c != K_LEFT && c != K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N)))
410 {
411 vim_free(lookfor);
412 lookfor = NULL;
413 }
414#endif
415
416 /*
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000417 * When there are matching completions to select <S-Tab> works like
418 * CTRL-P (unless 'wc' is <S-Tab>).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419 */
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000420 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421 c = Ctrl_P;
422
423#ifdef FEAT_WILDMENU
424 /* Special translations for 'wildmenu' */
425 if (did_wild_list && p_wmnu)
426 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000427 if (c == K_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 c = Ctrl_P;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000429 else if (c == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430 c = Ctrl_N;
431 }
432 /* Hitting CR after "emenu Name.": complete submenu */
433 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu
434 && ccline.cmdpos > 1
435 && ccline.cmdbuff[ccline.cmdpos - 1] == '.'
436 && ccline.cmdbuff[ccline.cmdpos - 2] != '\\'
437 && (c == '\n' || c == '\r' || c == K_KENTER))
438 c = K_DOWN;
439#endif
440
441 /* free expanded names when finished walking through matches */
442 if (xpc.xp_numfiles != -1
443 && !(c == p_wc && KeyTyped) && c != p_wcm
444 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A
445 && c != Ctrl_L)
446 {
447 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
448 did_wild_list = FALSE;
449#ifdef FEAT_WILDMENU
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000450 if (!p_wmnu || (c != K_UP && c != K_DOWN))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000451#endif
452 xpc.xp_context = EXPAND_NOTHING;
453 wim_index = 0;
454#ifdef FEAT_WILDMENU
455 if (p_wmnu && wild_menu_showing != 0)
456 {
457 int skt = KeyTyped;
Bram Moolenaar1e015462005-09-25 22:16:38 +0000458 int old_RedrawingDisabled = RedrawingDisabled;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000459
460 if (ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000461 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462
463 if (wild_menu_showing == WM_SCROLLED)
464 {
465 /* Entered command line, move it up */
466 cmdline_row--;
467 redrawcmd();
468 }
469 else if (save_p_ls != -1)
470 {
471 /* restore 'laststatus' and 'winminheight' */
472 p_ls = save_p_ls;
473 p_wmh = save_p_wmh;
474 last_status(FALSE);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000475 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476 update_screen(VALID); /* redraw the screen NOW */
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000477 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478 redrawcmd();
479 save_p_ls = -1;
480 }
481 else
482 {
483# ifdef FEAT_VERTSPLIT
484 win_redraw_last_status(topframe);
485# else
486 lastwin->w_redr_status = TRUE;
487# endif
488 redraw_statuslines();
489 }
490 KeyTyped = skt;
491 wild_menu_showing = 0;
Bram Moolenaar1e015462005-09-25 22:16:38 +0000492 if (ccline.input_fn)
493 RedrawingDisabled = old_RedrawingDisabled;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494 }
495#endif
496 }
497
498#ifdef FEAT_WILDMENU
499 /* Special translations for 'wildmenu' */
500 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu)
501 {
502 /* Hitting <Down> after "emenu Name.": complete submenu */
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000503 if (c == K_DOWN && ccline.cmdpos > 0
504 && ccline.cmdbuff[ccline.cmdpos - 1] == '.')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 c = p_wc;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000506 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507 {
508 /* Hitting <Up>: Remove one submenu name in front of the
509 * cursor */
510 int found = FALSE;
511
512 j = (int)(xpc.xp_pattern - ccline.cmdbuff);
513 i = 0;
514 while (--j > 0)
515 {
516 /* check for start of menu name */
517 if (ccline.cmdbuff[j] == ' '
518 && ccline.cmdbuff[j - 1] != '\\')
519 {
520 i = j + 1;
521 break;
522 }
523 /* check for start of submenu name */
524 if (ccline.cmdbuff[j] == '.'
525 && ccline.cmdbuff[j - 1] != '\\')
526 {
527 if (found)
528 {
529 i = j + 1;
530 break;
531 }
532 else
533 found = TRUE;
534 }
535 }
536 if (i > 0)
537 cmdline_del(i);
538 c = p_wc;
539 xpc.xp_context = EXPAND_NOTHING;
540 }
541 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000542 if ((xpc.xp_context == EXPAND_FILES
Bram Moolenaar446cb832008-06-24 21:56:24 +0000543 || xpc.xp_context == EXPAND_DIRECTORIES
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000544 || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545 {
546 char_u upseg[5];
547
548 upseg[0] = PATHSEP;
549 upseg[1] = '.';
550 upseg[2] = '.';
551 upseg[3] = PATHSEP;
552 upseg[4] = NUL;
553
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000554 if (c == K_DOWN
555 && ccline.cmdpos > 0
556 && ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP
557 && (ccline.cmdpos < 3
558 || ccline.cmdbuff[ccline.cmdpos - 2] != '.'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 || ccline.cmdbuff[ccline.cmdpos - 3] != '.'))
560 {
561 /* go down a directory */
562 c = p_wc;
563 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000564 else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 {
566 /* If in a direct ancestor, strip off one ../ to go down */
567 int found = FALSE;
568
569 j = ccline.cmdpos;
570 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
571 while (--j > i)
572 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000573#ifdef FEAT_MBYTE
574 if (has_mbyte)
575 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
576#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577 if (vim_ispathsep(ccline.cmdbuff[j]))
578 {
579 found = TRUE;
580 break;
581 }
582 }
583 if (found
584 && ccline.cmdbuff[j - 1] == '.'
585 && ccline.cmdbuff[j - 2] == '.'
586 && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2))
587 {
588 cmdline_del(j - 2);
589 c = p_wc;
590 }
591 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000592 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 {
594 /* go up a directory */
595 int found = FALSE;
596
597 j = ccline.cmdpos - 1;
598 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
599 while (--j > i)
600 {
601#ifdef FEAT_MBYTE
602 if (has_mbyte)
603 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
604#endif
605 if (vim_ispathsep(ccline.cmdbuff[j])
606#ifdef BACKSLASH_IN_FILENAME
607 && vim_strchr(" *?[{`$%#", ccline.cmdbuff[j + 1])
608 == NULL
609#endif
610 )
611 {
612 if (found)
613 {
614 i = j + 1;
615 break;
616 }
617 else
618 found = TRUE;
619 }
620 }
621
622 if (!found)
623 j = i;
624 else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0)
625 j += 4;
626 else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0
627 && j == i)
628 j += 3;
629 else
630 j = 0;
631 if (j > 0)
632 {
633 /* TODO this is only for DOS/UNIX systems - need to put in
634 * machine-specific stuff here and in upseg init */
635 cmdline_del(j);
636 put_on_cmdline(upseg + 1, 3, FALSE);
637 }
638 else if (ccline.cmdpos > i)
639 cmdline_del(i);
640 c = p_wc;
641 }
642 }
643#if 0 /* If enabled <Down> on a file takes you _completely_ out of wildmenu */
644 if (p_wmnu
645 && (xpc.xp_context == EXPAND_FILES
646 || xpc.xp_context == EXPAND_MENUNAMES)
647 && (c == K_UP || c == K_DOWN))
648 xpc.xp_context = EXPAND_NOTHING;
649#endif
650
651#endif /* FEAT_WILDMENU */
652
653 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert
654 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */
655 if (c == Ctrl_BSL)
656 {
657 ++no_mapping;
658 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000659 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660 --no_mapping;
661 --allow_keys;
662 /* CTRL-\ e doesn't work when obtaining an expression. */
663 if (c != Ctrl_N && c != Ctrl_G
664 && (c != 'e' || ccline.cmdfirstc == '='))
665 {
666 vungetc(c);
667 c = Ctrl_BSL;
668 }
669#ifdef FEAT_EVAL
670 else if (c == 'e')
671 {
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000672 char_u *p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673
674 /*
675 * Replace the command line with the result of an expression.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000676 * Need to save and restore the current command line, to be
677 * able to enter a new one...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 */
679 if (ccline.cmdpos == ccline.cmdlen)
680 new_cmdpos = 99999; /* keep it at the end */
681 else
682 new_cmdpos = ccline.cmdpos;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000683
684 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000686 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 if (c == '=')
688 {
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000689 /* Need to save and restore ccline. And set "textlock"
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000690 * to avoid nasty things like going to another buffer when
691 * evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000692 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000693 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 p = get_expr_line();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000695 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000696 restore_cmdline(&save_ccline);
697
698 if (p != NULL && realloc_cmdbuff((int)STRLEN(p) + 1) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000700 ccline.cmdlen = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701 STRCPY(ccline.cmdbuff, p);
702 vim_free(p);
703
704 /* Restore the cursor or use the position set with
705 * set_cmdline_pos(). */
706 if (new_cmdpos > ccline.cmdlen)
707 ccline.cmdpos = ccline.cmdlen;
708 else
709 ccline.cmdpos = new_cmdpos;
710
711 KeyTyped = FALSE; /* Don't do p_wc completion. */
712 redrawcmd();
713 goto cmdline_changed;
714 }
715 }
716 beep_flush();
717 c = ESC;
718 }
719#endif
720 else
721 {
722 if (c == Ctrl_G && p_im && restart_edit == 0)
723 restart_edit = 'a';
724 gotesc = TRUE; /* will free ccline.cmdbuff after putting it
725 in history */
726 goto returncmd; /* back to Normal mode */
727 }
728 }
729
730#ifdef FEAT_CMDWIN
731 if (c == cedit_key || c == K_CMDWIN)
732 {
733 /*
734 * Open a window to edit the command line (and history).
735 */
736 c = ex_window();
737 some_key_typed = TRUE;
738 }
739# ifdef FEAT_DIGRAPHS
740 else
741# endif
742#endif
743#ifdef FEAT_DIGRAPHS
744 c = do_digraph(c);
745#endif
746
747 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC
748 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL)))
749 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000750 /* In Ex mode a backslash escapes a newline. */
751 if (exmode_active
752 && c != ESC
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000753 && ccline.cmdpos == ccline.cmdlen
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000754 && ccline.cmdpos > 0
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000755 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000757 if (c == K_KENTER)
758 c = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000760 else
761 {
762 gotesc = FALSE; /* Might have typed ESC previously, don't
763 truncate the cmdline now. */
764 if (ccheck_abbr(c + ABBR_OFF))
765 goto cmdline_changed;
766 if (!cmd_silent)
767 {
768 windgoto(msg_row, 0);
769 out_flush();
770 }
771 break;
772 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773 }
774
775 /*
776 * Completion for 'wildchar' or 'wildcharm' key.
777 * - hitting <ESC> twice means: abandon command line.
778 * - wildcard expansion is only done when the 'wildchar' key is really
779 * typed, not when it comes from a macro
780 */
781 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm)
782 {
783 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */
784 {
785 /* if 'wildmode' contains "list" may still need to list */
786 if (xpc.xp_numfiles > 1
787 && !did_wild_list
788 && (wim_flags[wim_index] & WIM_LIST))
789 {
790 (void)showmatches(&xpc, FALSE);
791 redrawcmd();
792 did_wild_list = TRUE;
793 }
794 if (wim_flags[wim_index] & WIM_LONGEST)
795 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP);
796 else if (wim_flags[wim_index] & WIM_FULL)
797 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP);
798 else
799 res = OK; /* don't insert 'wildchar' now */
800 }
801 else /* typed p_wc first time */
802 {
803 wim_index = 0;
804 j = ccline.cmdpos;
805 /* if 'wildmode' first contains "longest", get longest
806 * common part */
807 if (wim_flags[0] & WIM_LONGEST)
808 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP);
809 else
810 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP);
811
812 /* if interrupted while completing, behave like it failed */
813 if (got_int)
814 {
815 (void)vpeekc(); /* remove <C-C> from input stream */
816 got_int = FALSE; /* don't abandon the command line */
817 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
818#ifdef FEAT_WILDMENU
819 xpc.xp_context = EXPAND_NOTHING;
820#endif
821 goto cmdline_changed;
822 }
823
824 /* when more than one match, and 'wildmode' first contains
825 * "list", or no change and 'wildmode' contains "longest,list",
826 * list all matches */
827 if (res == OK && xpc.xp_numfiles > 1)
828 {
829 /* a "longest" that didn't do anything is skipped (but not
830 * "list:longest") */
831 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j)
832 wim_index = 1;
833 if ((wim_flags[wim_index] & WIM_LIST)
834#ifdef FEAT_WILDMENU
835 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0)
836#endif
837 )
838 {
839 if (!(wim_flags[0] & WIM_LONGEST))
840 {
841#ifdef FEAT_WILDMENU
842 int p_wmnu_save = p_wmnu;
843 p_wmnu = 0;
844#endif
845 nextwild(&xpc, WILD_PREV, 0); /* remove match */
846#ifdef FEAT_WILDMENU
847 p_wmnu = p_wmnu_save;
848#endif
849 }
850#ifdef FEAT_WILDMENU
851 (void)showmatches(&xpc, p_wmnu
852 && ((wim_flags[wim_index] & WIM_LIST) == 0));
853#else
854 (void)showmatches(&xpc, FALSE);
855#endif
856 redrawcmd();
857 did_wild_list = TRUE;
858 if (wim_flags[wim_index] & WIM_LONGEST)
859 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP);
860 else if (wim_flags[wim_index] & WIM_FULL)
861 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP);
862 }
863 else
864 vim_beep();
865 }
866#ifdef FEAT_WILDMENU
867 else if (xpc.xp_numfiles == -1)
868 xpc.xp_context = EXPAND_NOTHING;
869#endif
870 }
871 if (wim_index < 3)
872 ++wim_index;
873 if (c == ESC)
874 gotesc = TRUE;
875 if (res == OK)
876 goto cmdline_changed;
877 }
878
879 gotesc = FALSE;
880
881 /* <S-Tab> goes to last match, in a clumsy way */
882 if (c == K_S_TAB && KeyTyped)
883 {
884 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0) == OK
885 && nextwild(&xpc, WILD_PREV, 0) == OK
886 && nextwild(&xpc, WILD_PREV, 0) == OK)
887 goto cmdline_changed;
888 }
889
890 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */
891 c = NL;
892
893 do_abbr = TRUE; /* default: check for abbreviation */
894
895 /*
896 * Big switch for a typed command line character.
897 */
898 switch (c)
899 {
900 case K_BS:
901 case Ctrl_H:
902 case K_DEL:
903 case K_KDEL:
904 case Ctrl_W:
905#ifdef FEAT_FKMAP
906 if (cmd_fkmap && c == K_BS)
907 c = K_DEL;
908#endif
909 if (c == K_KDEL)
910 c = K_DEL;
911
912 /*
913 * delete current character is the same as backspace on next
914 * character, except at end of line
915 */
916 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen)
917 ++ccline.cmdpos;
918#ifdef FEAT_MBYTE
919 if (has_mbyte && c == K_DEL)
920 ccline.cmdpos += mb_off_next(ccline.cmdbuff,
921 ccline.cmdbuff + ccline.cmdpos);
922#endif
923 if (ccline.cmdpos > 0)
924 {
925 char_u *p;
926
927 j = ccline.cmdpos;
928 p = ccline.cmdbuff + j;
929#ifdef FEAT_MBYTE
930 if (has_mbyte)
931 {
932 p = mb_prevptr(ccline.cmdbuff, p);
933 if (c == Ctrl_W)
934 {
935 while (p > ccline.cmdbuff && vim_isspace(*p))
936 p = mb_prevptr(ccline.cmdbuff, p);
937 i = mb_get_class(p);
938 while (p > ccline.cmdbuff && mb_get_class(p) == i)
939 p = mb_prevptr(ccline.cmdbuff, p);
940 if (mb_get_class(p) != i)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000941 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942 }
943 }
944 else
945#endif
946 if (c == Ctrl_W)
947 {
948 while (p > ccline.cmdbuff && vim_isspace(p[-1]))
949 --p;
950 i = vim_iswordc(p[-1]);
951 while (p > ccline.cmdbuff && !vim_isspace(p[-1])
952 && vim_iswordc(p[-1]) == i)
953 --p;
954 }
955 else
956 --p;
957 ccline.cmdpos = (int)(p - ccline.cmdbuff);
958 ccline.cmdlen -= j - ccline.cmdpos;
959 i = ccline.cmdpos;
960 while (i < ccline.cmdlen)
961 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
962
963 /* Truncate at the end, required for multi-byte chars. */
964 ccline.cmdbuff[ccline.cmdlen] = NUL;
965 redrawcmd();
966 }
967 else if (ccline.cmdlen == 0 && c != Ctrl_W
968 && ccline.cmdprompt == NULL && indent == 0)
969 {
970 /* In ex and debug mode it doesn't make sense to return. */
971 if (exmode_active
972#ifdef FEAT_EVAL
973 || ccline.cmdfirstc == '>'
974#endif
975 )
976 goto cmdline_not_changed;
977
978 vim_free(ccline.cmdbuff); /* no commandline to return */
979 ccline.cmdbuff = NULL;
980 if (!cmd_silent)
981 {
982#ifdef FEAT_RIGHTLEFT
983 if (cmdmsg_rl)
984 msg_col = Columns;
985 else
986#endif
987 msg_col = 0;
988 msg_putchar(' '); /* delete ':' */
989 }
990 redraw_cmdline = TRUE;
991 goto returncmd; /* back to cmd mode */
992 }
993 goto cmdline_changed;
994
995 case K_INS:
996 case K_KINS:
997#ifdef FEAT_FKMAP
998 /* if Farsi mode set, we are in reverse insert mode -
999 Do not change the mode */
1000 if (cmd_fkmap)
1001 beep_flush();
1002 else
1003#endif
1004 ccline.overstrike = !ccline.overstrike;
1005#ifdef CURSOR_SHAPE
1006 ui_cursor_shape(); /* may show different cursor shape */
1007#endif
1008 goto cmdline_not_changed;
1009
1010 case Ctrl_HAT:
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00001011 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 {
1013 /* ":lmap" mappings exists, toggle use of mappings. */
1014 State ^= LANGMAP;
1015#ifdef USE_IM_CONTROL
1016 im_set_active(FALSE); /* Disable input method */
1017#endif
1018 if (b_im_ptr != NULL)
1019 {
1020 if (State & LANGMAP)
1021 *b_im_ptr = B_IMODE_LMAP;
1022 else
1023 *b_im_ptr = B_IMODE_NONE;
1024 }
1025 }
1026#ifdef USE_IM_CONTROL
1027 else
1028 {
1029 /* There are no ":lmap" mappings, toggle IM. When
1030 * 'imdisable' is set don't try getting the status, it's
1031 * always off. */
1032 if ((p_imdisable && b_im_ptr != NULL)
1033 ? *b_im_ptr == B_IMODE_IM : im_get_status())
1034 {
1035 im_set_active(FALSE); /* Disable input method */
1036 if (b_im_ptr != NULL)
1037 *b_im_ptr = B_IMODE_NONE;
1038 }
1039 else
1040 {
1041 im_set_active(TRUE); /* Enable input method */
1042 if (b_im_ptr != NULL)
1043 *b_im_ptr = B_IMODE_IM;
1044 }
1045 }
1046#endif
1047 if (b_im_ptr != NULL)
1048 {
1049 if (b_im_ptr == &curbuf->b_p_iminsert)
1050 set_iminsert_global();
1051 else
1052 set_imsearch_global();
1053 }
1054#ifdef CURSOR_SHAPE
1055 ui_cursor_shape(); /* may show different cursor shape */
1056#endif
1057#if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
1058 /* Show/unshow value of 'keymap' in status lines later. */
1059 status_redraw_curbuf();
1060#endif
1061 goto cmdline_not_changed;
1062
1063/* case '@': only in very old vi */
1064 case Ctrl_U:
1065 /* delete all characters left of the cursor */
1066 j = ccline.cmdpos;
1067 ccline.cmdlen -= j;
1068 i = ccline.cmdpos = 0;
1069 while (i < ccline.cmdlen)
1070 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1071 /* Truncate at the end, required for multi-byte chars. */
1072 ccline.cmdbuff[ccline.cmdlen] = NUL;
1073 redrawcmd();
1074 goto cmdline_changed;
1075
1076#ifdef FEAT_CLIPBOARD
1077 case Ctrl_Y:
1078 /* Copy the modeless selection, if there is one. */
1079 if (clip_star.state != SELECT_CLEARED)
1080 {
1081 if (clip_star.state == SELECT_DONE)
1082 clip_copy_modeless_selection(TRUE);
1083 goto cmdline_not_changed;
1084 }
1085 break;
1086#endif
1087
1088 case ESC: /* get here if p_wc != ESC or when ESC typed twice */
1089 case Ctrl_C:
Bram Moolenaarf4d11452005-12-02 00:46:37 +00001090 /* In exmode it doesn't make sense to return. Except when
Bram Moolenaar7c626922005-02-07 22:01:03 +00001091 * ":normal" runs out of characters. */
1092 if (exmode_active
1093#ifdef FEAT_EX_EXTRA
1094 && (ex_normal_busy == 0 || typebuf.tb_len > 0)
1095#endif
1096 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 goto cmdline_not_changed;
1098
1099 gotesc = TRUE; /* will free ccline.cmdbuff after
1100 putting it in history */
1101 goto returncmd; /* back to cmd mode */
1102
1103 case Ctrl_R: /* insert register */
1104#ifdef USE_ON_FLY_SCROLL
1105 dont_scroll = TRUE; /* disallow scrolling here */
1106#endif
1107 putcmdline('"', TRUE);
1108 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001109 i = c = plain_vgetc(); /* CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110 if (i == Ctrl_O)
1111 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */
1112 if (i == Ctrl_R)
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001113 c = plain_vgetc(); /* CTRL-R CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 --no_mapping;
1115#ifdef FEAT_EVAL
1116 /*
1117 * Insert the result of an expression.
1118 * Need to save the current command line, to be able to enter
1119 * a new one...
1120 */
1121 new_cmdpos = -1;
1122 if (c == '=')
1123 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 if (ccline.cmdfirstc == '=')/* can't do this recursively */
1125 {
1126 beep_flush();
1127 c = ESC;
1128 }
1129 else
1130 {
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001131 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001133 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134 }
1135 }
1136#endif
1137 if (c != ESC) /* use ESC to cancel inserting register */
1138 {
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001139 cmdline_paste(c, i == Ctrl_R, FALSE);
Bram Moolenaaracf53452005-12-17 22:06:52 +00001140
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001141#ifdef FEAT_EVAL
Bram Moolenaaracf53452005-12-17 22:06:52 +00001142 /* When there was a serious error abort getting the
1143 * command line. */
1144 if (aborting())
1145 {
1146 gotesc = TRUE; /* will free ccline.cmdbuff after
1147 putting it in history */
1148 goto returncmd; /* back to cmd mode */
1149 }
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001150#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 KeyTyped = FALSE; /* Don't do p_wc completion. */
1152#ifdef FEAT_EVAL
1153 if (new_cmdpos >= 0)
1154 {
1155 /* set_cmdline_pos() was used */
1156 if (new_cmdpos > ccline.cmdlen)
1157 ccline.cmdpos = ccline.cmdlen;
1158 else
1159 ccline.cmdpos = new_cmdpos;
1160 }
1161#endif
1162 }
1163 redrawcmd();
1164 goto cmdline_changed;
1165
1166 case Ctrl_D:
1167 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING)
1168 break; /* Use ^D as normal char instead */
1169
1170 redrawcmd();
1171 continue; /* don't do incremental search now */
1172
1173 case K_RIGHT:
1174 case K_S_RIGHT:
1175 case K_C_RIGHT:
1176 do
1177 {
1178 if (ccline.cmdpos >= ccline.cmdlen)
1179 break;
1180 i = cmdline_charsize(ccline.cmdpos);
1181 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows)
1182 break;
1183 ccline.cmdspos += i;
1184#ifdef FEAT_MBYTE
1185 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001186 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 + ccline.cmdpos);
1188 else
1189#endif
1190 ++ccline.cmdpos;
1191 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001192 while ((c == K_S_RIGHT || c == K_C_RIGHT
1193 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 && ccline.cmdbuff[ccline.cmdpos] != ' ');
1195#ifdef FEAT_MBYTE
1196 if (has_mbyte)
1197 set_cmdspos_cursor();
1198#endif
1199 goto cmdline_not_changed;
1200
1201 case K_LEFT:
1202 case K_S_LEFT:
1203 case K_C_LEFT:
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001204 if (ccline.cmdpos == 0)
1205 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 do
1207 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 --ccline.cmdpos;
1209#ifdef FEAT_MBYTE
1210 if (has_mbyte) /* move to first byte of char */
1211 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff,
1212 ccline.cmdbuff + ccline.cmdpos);
1213#endif
1214 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos);
1215 }
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001216 while (ccline.cmdpos > 0
1217 && (c == K_S_LEFT || c == K_C_LEFT
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001218 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 && ccline.cmdbuff[ccline.cmdpos - 1] != ' ');
1220#ifdef FEAT_MBYTE
1221 if (has_mbyte)
1222 set_cmdspos_cursor();
1223#endif
1224 goto cmdline_not_changed;
1225
1226 case K_IGNORE:
Bram Moolenaar30405d32008-01-02 20:55:27 +00001227 /* Ignore mouse event or ex_window() result. */
1228 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229
Bram Moolenaar4770d092006-01-12 23:22:24 +00001230#ifdef FEAT_GUI_W32
1231 /* On Win32 ignore <M-F4>, we get it when closing the window was
1232 * cancelled. */
1233 case K_F4:
1234 if (mod_mask == MOD_MASK_ALT)
1235 {
1236 redrawcmd(); /* somehow the cmdline is cleared */
1237 goto cmdline_not_changed;
1238 }
1239 break;
1240#endif
1241
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242#ifdef FEAT_MOUSE
1243 case K_MIDDLEDRAG:
1244 case K_MIDDLERELEASE:
1245 goto cmdline_not_changed; /* Ignore mouse */
1246
1247 case K_MIDDLEMOUSE:
1248# ifdef FEAT_GUI
1249 /* When GUI is active, also paste when 'mouse' is empty */
1250 if (!gui.in_use)
1251# endif
1252 if (!mouse_has(MOUSE_COMMAND))
1253 goto cmdline_not_changed; /* Ignore mouse */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001254# ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 if (clip_star.available)
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001256 cmdline_paste('*', TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 else
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001258# endif
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001259 cmdline_paste(0, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 redrawcmd();
1261 goto cmdline_changed;
1262
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001263# ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 case K_DROP:
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001265 cmdline_paste('~', TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 redrawcmd();
1267 goto cmdline_changed;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001268# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001269
1270 case K_LEFTDRAG:
1271 case K_LEFTRELEASE:
1272 case K_RIGHTDRAG:
1273 case K_RIGHTRELEASE:
1274 /* Ignore drag and release events when the button-down wasn't
1275 * seen before. */
1276 if (ignore_drag_release)
1277 goto cmdline_not_changed;
1278 /* FALLTHROUGH */
1279 case K_LEFTMOUSE:
1280 case K_RIGHTMOUSE:
1281 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE)
1282 ignore_drag_release = TRUE;
1283 else
1284 ignore_drag_release = FALSE;
1285# ifdef FEAT_GUI
1286 /* When GUI is active, also move when 'mouse' is empty */
1287 if (!gui.in_use)
1288# endif
1289 if (!mouse_has(MOUSE_COMMAND))
1290 goto cmdline_not_changed; /* Ignore mouse */
1291# ifdef FEAT_CLIPBOARD
1292 if (mouse_row < cmdline_row && clip_star.available)
1293 {
1294 int button, is_click, is_drag;
1295
1296 /*
1297 * Handle modeless selection.
1298 */
1299 button = get_mouse_button(KEY2TERMCAP1(c),
1300 &is_click, &is_drag);
1301 if (mouse_model_popup() && button == MOUSE_LEFT
1302 && (mod_mask & MOD_MASK_SHIFT))
1303 {
1304 /* Translate shift-left to right button. */
1305 button = MOUSE_RIGHT;
1306 mod_mask &= ~MOD_MASK_SHIFT;
1307 }
1308 clip_modeless(button, is_click, is_drag);
1309 goto cmdline_not_changed;
1310 }
1311# endif
1312
1313 set_cmdspos();
1314 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen;
1315 ++ccline.cmdpos)
1316 {
1317 i = cmdline_charsize(ccline.cmdpos);
1318 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns
1319 && mouse_col < ccline.cmdspos % Columns + i)
1320 break;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001321# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 if (has_mbyte)
1323 {
1324 /* Count ">" for double-wide char that doesn't fit. */
1325 correct_cmdspos(ccline.cmdpos, i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001326 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327 + ccline.cmdpos) - 1;
1328 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001329# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 ccline.cmdspos += i;
1331 }
1332 goto cmdline_not_changed;
1333
1334 /* Mouse scroll wheel: ignored here */
1335 case K_MOUSEDOWN:
1336 case K_MOUSEUP:
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001337 case K_MOUSELEFT:
1338 case K_MOUSERIGHT:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 /* Alternate buttons ignored here */
1340 case K_X1MOUSE:
1341 case K_X1DRAG:
1342 case K_X1RELEASE:
1343 case K_X2MOUSE:
1344 case K_X2DRAG:
1345 case K_X2RELEASE:
1346 goto cmdline_not_changed;
1347
1348#endif /* FEAT_MOUSE */
1349
1350#ifdef FEAT_GUI
1351 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */
1352 case K_LEFTRELEASE_NM:
1353 goto cmdline_not_changed;
1354
1355 case K_VER_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001356 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 {
1358 gui_do_scroll();
1359 redrawcmd();
1360 }
1361 goto cmdline_not_changed;
1362
1363 case K_HOR_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001364 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001366 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367 redrawcmd();
1368 }
1369 goto cmdline_not_changed;
1370#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001371#ifdef FEAT_GUI_TABLINE
1372 case K_TABLINE:
1373 case K_TABMENU:
1374 /* Don't want to change any tabs here. Make sure the same tab
1375 * is still selected. */
1376 if (gui_use_tabline())
1377 gui_mch_set_curtab(tabpage_index(curtab));
1378 goto cmdline_not_changed;
1379#endif
1380
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 case K_SELECT: /* end of Select mode mapping - ignore */
1382 goto cmdline_not_changed;
1383
1384 case Ctrl_B: /* begin of command line */
1385 case K_HOME:
1386 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387 case K_S_HOME:
1388 case K_C_HOME:
1389 ccline.cmdpos = 0;
1390 set_cmdspos();
1391 goto cmdline_not_changed;
1392
1393 case Ctrl_E: /* end of command line */
1394 case K_END:
1395 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 case K_S_END:
1397 case K_C_END:
1398 ccline.cmdpos = ccline.cmdlen;
1399 set_cmdspos_cursor();
1400 goto cmdline_not_changed;
1401
1402 case Ctrl_A: /* all matches */
1403 if (nextwild(&xpc, WILD_ALL, 0) == FAIL)
1404 break;
1405 goto cmdline_changed;
1406
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001407 case Ctrl_L:
1408#ifdef FEAT_SEARCH_EXTRA
1409 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1410 {
1411 /* Add a character from under the cursor for 'incsearch' */
1412 if (did_incsearch
1413 && !equalpos(curwin->w_cursor, old_cursor))
1414 {
1415 c = gchar_cursor();
Bram Moolenaara9dc3752010-07-11 20:46:53 +02001416 /* If 'ignorecase' and 'smartcase' are set and the
1417 * command line has no uppercase characters, convert
1418 * the character to lowercase */
1419 if (p_ic && p_scs && !pat_has_uppercase(ccline.cmdbuff))
1420 c = MB_TOLOWER(c);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001421 if (c != NUL)
Bram Moolenaar93db9752006-11-21 10:29:45 +00001422 {
1423 if (c == firstc || vim_strchr((char_u *)(
1424 p_magic ? "\\^$.*[" : "\\^$"), c)
1425 != NULL)
1426 {
1427 /* put a backslash before special characters */
1428 stuffcharReadbuff(c);
1429 c = '\\';
1430 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001431 break;
Bram Moolenaar93db9752006-11-21 10:29:45 +00001432 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001433 }
1434 goto cmdline_not_changed;
1435 }
1436#endif
1437
1438 /* completion: longest common part */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 if (nextwild(&xpc, WILD_LONGEST, 0) == FAIL)
1440 break;
1441 goto cmdline_changed;
1442
1443 case Ctrl_N: /* next match */
1444 case Ctrl_P: /* previous match */
1445 if (xpc.xp_numfiles > 0)
1446 {
1447 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT, 0)
1448 == FAIL)
1449 break;
1450 goto cmdline_changed;
1451 }
1452
1453#ifdef FEAT_CMDHIST
1454 case K_UP:
1455 case K_DOWN:
1456 case K_S_UP:
1457 case K_S_DOWN:
1458 case K_PAGEUP:
1459 case K_KPAGEUP:
1460 case K_PAGEDOWN:
1461 case K_KPAGEDOWN:
1462 if (hislen == 0 || firstc == NUL) /* no history */
1463 goto cmdline_not_changed;
1464
1465 i = hiscnt;
1466
1467 /* save current command string so it can be restored later */
1468 if (lookfor == NULL)
1469 {
1470 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL)
1471 goto cmdline_not_changed;
1472 lookfor[ccline.cmdpos] = NUL;
1473 }
1474
1475 j = (int)STRLEN(lookfor);
1476 for (;;)
1477 {
1478 /* one step backwards */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001479 if (c == K_UP|| c == K_S_UP || c == Ctrl_P
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001480 || c == K_PAGEUP || c == K_KPAGEUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481 {
1482 if (hiscnt == hislen) /* first time */
1483 hiscnt = hisidx[histype];
1484 else if (hiscnt == 0 && hisidx[histype] != hislen - 1)
1485 hiscnt = hislen - 1;
1486 else if (hiscnt != hisidx[histype] + 1)
1487 --hiscnt;
1488 else /* at top of list */
1489 {
1490 hiscnt = i;
1491 break;
1492 }
1493 }
1494 else /* one step forwards */
1495 {
1496 /* on last entry, clear the line */
1497 if (hiscnt == hisidx[histype])
1498 {
1499 hiscnt = hislen;
1500 break;
1501 }
1502
1503 /* not on a history line, nothing to do */
1504 if (hiscnt == hislen)
1505 break;
1506 if (hiscnt == hislen - 1) /* wrap around */
1507 hiscnt = 0;
1508 else
1509 ++hiscnt;
1510 }
1511 if (hiscnt < 0 || history[histype][hiscnt].hisstr == NULL)
1512 {
1513 hiscnt = i;
1514 break;
1515 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001516 if ((c != K_UP && c != K_DOWN)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001517 || hiscnt == i
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518 || STRNCMP(history[histype][hiscnt].hisstr,
1519 lookfor, (size_t)j) == 0)
1520 break;
1521 }
1522
1523 if (hiscnt != i) /* jumped to other entry */
1524 {
1525 char_u *p;
1526 int len;
1527 int old_firstc;
1528
1529 vim_free(ccline.cmdbuff);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001530 xpc.xp_context = EXPAND_NOTHING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 if (hiscnt == hislen)
1532 p = lookfor; /* back to the old one */
1533 else
1534 p = history[histype][hiscnt].hisstr;
1535
1536 if (histype == HIST_SEARCH
1537 && p != lookfor
1538 && (old_firstc = p[STRLEN(p) + 1]) != firstc)
1539 {
1540 /* Correct for the separator character used when
1541 * adding the history entry vs the one used now.
1542 * First loop: count length.
1543 * Second loop: copy the characters. */
1544 for (i = 0; i <= 1; ++i)
1545 {
1546 len = 0;
1547 for (j = 0; p[j] != NUL; ++j)
1548 {
1549 /* Replace old sep with new sep, unless it is
1550 * escaped. */
1551 if (p[j] == old_firstc
1552 && (j == 0 || p[j - 1] != '\\'))
1553 {
1554 if (i > 0)
1555 ccline.cmdbuff[len] = firstc;
1556 }
1557 else
1558 {
1559 /* Escape new sep, unless it is already
1560 * escaped. */
1561 if (p[j] == firstc
1562 && (j == 0 || p[j - 1] != '\\'))
1563 {
1564 if (i > 0)
1565 ccline.cmdbuff[len] = '\\';
1566 ++len;
1567 }
1568 if (i > 0)
1569 ccline.cmdbuff[len] = p[j];
1570 }
1571 ++len;
1572 }
1573 if (i == 0)
1574 {
1575 alloc_cmdbuff(len);
1576 if (ccline.cmdbuff == NULL)
1577 goto returncmd;
1578 }
1579 }
1580 ccline.cmdbuff[len] = NUL;
1581 }
1582 else
1583 {
1584 alloc_cmdbuff((int)STRLEN(p));
1585 if (ccline.cmdbuff == NULL)
1586 goto returncmd;
1587 STRCPY(ccline.cmdbuff, p);
1588 }
1589
1590 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
1591 redrawcmd();
1592 goto cmdline_changed;
1593 }
1594 beep_flush();
1595 goto cmdline_not_changed;
1596#endif
1597
1598 case Ctrl_V:
1599 case Ctrl_Q:
1600#ifdef FEAT_MOUSE
1601 ignore_drag_release = TRUE;
1602#endif
1603 putcmdline('^', TRUE);
1604 c = get_literal(); /* get next (two) character(s) */
1605 do_abbr = FALSE; /* don't do abbreviation now */
1606#ifdef FEAT_MBYTE
1607 /* may need to remove ^ when composing char was typed */
1608 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent)
1609 {
1610 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
1611 msg_putchar(' ');
1612 cursorcmd();
1613 }
1614#endif
1615 break;
1616
1617#ifdef FEAT_DIGRAPHS
1618 case Ctrl_K:
1619#ifdef FEAT_MOUSE
1620 ignore_drag_release = TRUE;
1621#endif
1622 putcmdline('?', TRUE);
1623#ifdef USE_ON_FLY_SCROLL
1624 dont_scroll = TRUE; /* disallow scrolling here */
1625#endif
1626 c = get_digraph(TRUE);
1627 if (c != NUL)
1628 break;
1629
1630 redrawcmd();
1631 goto cmdline_not_changed;
1632#endif /* FEAT_DIGRAPHS */
1633
1634#ifdef FEAT_RIGHTLEFT
1635 case Ctrl__: /* CTRL-_: switch language mode */
1636 if (!p_ari)
1637 break;
1638#ifdef FEAT_FKMAP
1639 if (p_altkeymap)
1640 {
1641 cmd_fkmap = !cmd_fkmap;
1642 if (cmd_fkmap) /* in Farsi always in Insert mode */
1643 ccline.overstrike = FALSE;
1644 }
1645 else /* Hebrew is default */
1646#endif
1647 cmd_hkmap = !cmd_hkmap;
1648 goto cmdline_not_changed;
1649#endif
1650
1651 default:
1652#ifdef UNIX
1653 if (c == intr_char)
1654 {
1655 gotesc = TRUE; /* will free ccline.cmdbuff after
1656 putting it in history */
1657 goto returncmd; /* back to Normal mode */
1658 }
1659#endif
1660 /*
1661 * Normal character with no special meaning. Just set mod_mask
1662 * to 0x0 so that typing Shift-Space in the GUI doesn't enter
1663 * the string <S-Space>. This should only happen after ^V.
1664 */
1665 if (!IS_SPECIAL(c))
1666 mod_mask = 0x0;
1667 break;
1668 }
1669 /*
1670 * End of switch on command line character.
1671 * We come here if we have a normal character.
1672 */
1673
1674 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && ccheck_abbr(
1675#ifdef FEAT_MBYTE
1676 /* Add ABBR_OFF for characters above 0x100, this is
1677 * what check_abbr() expects. */
1678 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
1679#endif
1680 c))
1681 goto cmdline_changed;
1682
1683 /*
1684 * put the character in the command line
1685 */
1686 if (IS_SPECIAL(c) || mod_mask != 0)
1687 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE);
1688 else
1689 {
1690#ifdef FEAT_MBYTE
1691 if (has_mbyte)
1692 {
1693 j = (*mb_char2bytes)(c, IObuff);
1694 IObuff[j] = NUL; /* exclude composing chars */
1695 put_on_cmdline(IObuff, j, TRUE);
1696 }
1697 else
1698#endif
1699 {
1700 IObuff[0] = c;
1701 put_on_cmdline(IObuff, 1, TRUE);
1702 }
1703 }
1704 goto cmdline_changed;
1705
1706/*
1707 * This part implements incremental searches for "/" and "?"
1708 * Jump to cmdline_not_changed when a character has been read but the command
1709 * line did not change. Then we only search and redraw if something changed in
1710 * the past.
1711 * Jump to cmdline_changed when the command line did change.
1712 * (Sorry for the goto's, I know it is ugly).
1713 */
1714cmdline_not_changed:
1715#ifdef FEAT_SEARCH_EXTRA
1716 if (!incsearch_postponed)
1717 continue;
1718#endif
1719
1720cmdline_changed:
1721#ifdef FEAT_SEARCH_EXTRA
1722 /*
1723 * 'incsearch' highlighting.
1724 */
1725 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1726 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001727 pos_T end_pos;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001728#ifdef FEAT_RELTIME
1729 proftime_T tm;
1730#endif
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001731
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 /* if there is a character waiting, search and redraw later */
1733 if (char_avail())
1734 {
1735 incsearch_postponed = TRUE;
1736 continue;
1737 }
1738 incsearch_postponed = FALSE;
1739 curwin->w_cursor = old_cursor; /* start at old position */
1740
1741 /* If there is no command line, don't do anything */
1742 if (ccline.cmdlen == 0)
1743 i = 0;
1744 else
1745 {
1746 cursor_off(); /* so the user knows we're busy */
1747 out_flush();
1748 ++emsg_off; /* So it doesn't beep if bad expr */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001749#ifdef FEAT_RELTIME
1750 /* Set the time limit to half a second. */
1751 profile_setlimit(500L, &tm);
1752#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 i = do_search(NULL, firstc, ccline.cmdbuff, count,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001754 SEARCH_KEEP + SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK,
1755#ifdef FEAT_RELTIME
1756 &tm
1757#else
1758 NULL
1759#endif
1760 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 --emsg_off;
1762 /* if interrupted while searching, behave like it failed */
1763 if (got_int)
1764 {
1765 (void)vpeekc(); /* remove <C-C> from input stream */
1766 got_int = FALSE; /* don't abandon the command line */
1767 i = 0;
1768 }
1769 else if (char_avail())
1770 /* cancelled searching because a char was typed */
1771 incsearch_postponed = TRUE;
1772 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001773 if (i != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 highlight_match = TRUE; /* highlight position */
1775 else
1776 highlight_match = FALSE; /* remove highlight */
1777
1778 /* first restore the old curwin values, so the screen is
1779 * positioned in the same way as the actual search command */
1780 curwin->w_leftcol = old_leftcol;
1781 curwin->w_topline = old_topline;
1782# ifdef FEAT_DIFF
1783 curwin->w_topfill = old_topfill;
1784# endif
1785 curwin->w_botline = old_botline;
1786 changed_cline_bef_curs();
1787 update_topline();
1788
1789 if (i != 0)
1790 {
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001791 pos_T save_pos = curwin->w_cursor;
1792
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 /*
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001794 * First move cursor to end of match, then to the start. This
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 * moves the whole match onto the screen when 'nowrap' is set.
1796 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 curwin->w_cursor.lnum += search_match_lines;
1798 curwin->w_cursor.col = search_match_endcol;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001799 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
1800 {
1801 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
1802 coladvance((colnr_T)MAXCOL);
1803 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804 validate_cursor();
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001805 end_pos = curwin->w_cursor;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001806 curwin->w_cursor = save_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 }
Bram Moolenaardb552d602006-03-23 22:59:57 +00001808 else
1809 end_pos = curwin->w_cursor; /* shutup gcc 4 */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001810
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 validate_cursor();
Bram Moolenaar27a23192006-09-14 09:27:26 +00001812# ifdef FEAT_WINDOWS
1813 /* May redraw the status line to show the cursor position. */
1814 if (p_ru && curwin->w_status_height > 0)
1815 curwin->w_redr_status = TRUE;
1816# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00001818 save_cmdline(&save_ccline);
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001819 update_screen(SOME_VALID);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00001820 restore_cmdline(&save_ccline);
1821
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001822 /* Leave it at the end to make CTRL-R CTRL-W work. */
1823 if (i != 0)
1824 curwin->w_cursor = end_pos;
1825
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 msg_starthere();
1827 redrawcmdline();
1828 did_incsearch = TRUE;
1829 }
1830#else /* FEAT_SEARCH_EXTRA */
1831 ;
1832#endif
1833
1834#ifdef FEAT_RIGHTLEFT
1835 if (cmdmsg_rl
1836# ifdef FEAT_ARABIC
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001837 || (p_arshape && !p_tbidi && enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838# endif
1839 )
1840 /* Always redraw the whole command line to fix shaping and
1841 * right-left typing. Not efficient, but it works. */
1842 redrawcmd();
1843#endif
1844 }
1845
1846returncmd:
1847
1848#ifdef FEAT_RIGHTLEFT
1849 cmdmsg_rl = FALSE;
1850#endif
1851
1852#ifdef FEAT_FKMAP
1853 cmd_fkmap = 0;
1854#endif
1855
1856 ExpandCleanup(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001857 ccline.xpc = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858
1859#ifdef FEAT_SEARCH_EXTRA
1860 if (did_incsearch)
1861 {
1862 curwin->w_cursor = old_cursor;
1863 curwin->w_curswant = old_curswant;
1864 curwin->w_leftcol = old_leftcol;
1865 curwin->w_topline = old_topline;
1866# ifdef FEAT_DIFF
1867 curwin->w_topfill = old_topfill;
1868# endif
1869 curwin->w_botline = old_botline;
1870 highlight_match = FALSE;
1871 validate_cursor(); /* needed for TAB */
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001872 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 }
1874#endif
1875
1876 if (ccline.cmdbuff != NULL)
1877 {
1878 /*
1879 * Put line in history buffer (":" and "=" only when it was typed).
1880 */
1881#ifdef FEAT_CMDHIST
1882 if (ccline.cmdlen && firstc != NUL
1883 && (some_key_typed || histype == HIST_SEARCH))
1884 {
1885 add_to_history(histype, ccline.cmdbuff, TRUE,
1886 histype == HIST_SEARCH ? firstc : NUL);
1887 if (firstc == ':')
1888 {
1889 vim_free(new_last_cmdline);
1890 new_last_cmdline = vim_strsave(ccline.cmdbuff);
1891 }
1892 }
1893#endif
1894
1895 if (gotesc) /* abandon command line */
1896 {
1897 vim_free(ccline.cmdbuff);
1898 ccline.cmdbuff = NULL;
1899 if (msg_scrolled == 0)
1900 compute_cmdrow();
1901 MSG("");
1902 redraw_cmdline = TRUE;
1903 }
1904 }
1905
1906 /*
1907 * If the screen was shifted up, redraw the whole screen (later).
1908 * If the line is too long, clear it, so ruler and shown command do
1909 * not get printed in the middle of it.
1910 */
1911 msg_check();
1912 msg_scroll = save_msg_scroll;
1913 redir_off = FALSE;
1914
1915 /* When the command line was typed, no need for a wait-return prompt. */
1916 if (some_key_typed)
1917 need_wait_return = FALSE;
1918
1919 State = save_State;
1920#ifdef USE_IM_CONTROL
1921 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP)
1922 im_save_status(b_im_ptr);
1923 im_set_active(FALSE);
1924#endif
1925#ifdef FEAT_MOUSE
1926 setmouse();
1927#endif
1928#ifdef CURSOR_SHAPE
1929 ui_cursor_shape(); /* may show different cursor shape */
1930#endif
1931
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001932 {
1933 char_u *p = ccline.cmdbuff;
1934
1935 /* Make ccline empty, getcmdline() may try to use it. */
1936 ccline.cmdbuff = NULL;
1937 return p;
1938 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939}
1940
1941#if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO)
1942/*
1943 * Get a command line with a prompt.
1944 * This is prepared to be called recursively from getcmdline() (e.g. by
1945 * f_input() when evaluating an expression from CTRL-R =).
1946 * Returns the command line in allocated memory, or NULL.
1947 */
1948 char_u *
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001949getcmdline_prompt(firstc, prompt, attr, xp_context, xp_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 int firstc;
1951 char_u *prompt; /* command line prompt */
1952 int attr; /* attributes for prompt */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001953 int xp_context; /* type of expansion */
1954 char_u *xp_arg; /* user-defined expansion argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955{
1956 char_u *s;
1957 struct cmdline_info save_ccline;
1958 int msg_col_save = msg_col;
1959
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001960 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 ccline.cmdprompt = prompt;
1962 ccline.cmdattr = attr;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001963# ifdef FEAT_EVAL
1964 ccline.xp_context = xp_context;
1965 ccline.xp_arg = xp_arg;
1966 ccline.input_fn = (firstc == '@');
1967# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 s = getcmdline(firstc, 1L, 0);
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001969 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970 /* Restore msg_col, the prompt from input() may have changed it. */
1971 msg_col = msg_col_save;
1972
1973 return s;
1974}
1975#endif
1976
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001977/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001978 * Return TRUE when the text must not be changed and we can't switch to
1979 * another window or buffer. Used when editing the command line, evaluating
1980 * 'balloonexpr', etc.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001981 */
1982 int
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001983text_locked()
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001984{
1985#ifdef FEAT_CMDWIN
1986 if (cmdwin_type != 0)
1987 return TRUE;
1988#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001989 return textlock != 0;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001990}
1991
1992/*
1993 * Give an error message for a command that isn't allowed while the cmdline
1994 * window is open or editing the cmdline in another way.
1995 */
1996 void
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001997text_locked_msg()
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001998{
1999#ifdef FEAT_CMDWIN
2000 if (cmdwin_type != 0)
2001 EMSG(_(e_cmdwin));
2002 else
2003#endif
2004 EMSG(_(e_secure));
2005}
2006
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002007#if defined(FEAT_AUTOCMD) || defined(PROTO)
2008/*
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002009 * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is
2010 * and give an error message.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002011 */
2012 int
2013curbuf_locked()
2014{
2015 if (curbuf_lock > 0)
2016 {
2017 EMSG(_("E788: Not allowed to edit another buffer now"));
2018 return TRUE;
2019 }
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002020 return allbuf_locked();
2021}
2022
2023/*
2024 * Check if "allbuf_lock" is set and return TRUE when it is and give an error
2025 * message.
2026 */
2027 int
2028allbuf_locked()
2029{
2030 if (allbuf_lock > 0)
2031 {
2032 EMSG(_("E811: Not allowed to change buffer information now"));
2033 return TRUE;
2034 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002035 return FALSE;
2036}
2037#endif
2038
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 static int
2040cmdline_charsize(idx)
2041 int idx;
2042{
2043#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2044 if (cmdline_star > 0) /* showing '*', always 1 position */
2045 return 1;
2046#endif
2047 return ptr2cells(ccline.cmdbuff + idx);
2048}
2049
2050/*
2051 * Compute the offset of the cursor on the command line for the prompt and
2052 * indent.
2053 */
2054 static void
2055set_cmdspos()
2056{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002057 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 ccline.cmdspos = 1 + ccline.cmdindent;
2059 else
2060 ccline.cmdspos = 0 + ccline.cmdindent;
2061}
2062
2063/*
2064 * Compute the screen position for the cursor on the command line.
2065 */
2066 static void
2067set_cmdspos_cursor()
2068{
2069 int i, m, c;
2070
2071 set_cmdspos();
2072 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002073 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002075 if (m < 0) /* overflow, Columns or Rows at weird value */
2076 m = MAXCOL;
2077 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 else
2079 m = MAXCOL;
2080 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
2081 {
2082 c = cmdline_charsize(i);
2083#ifdef FEAT_MBYTE
2084 /* Count ">" for double-wide multi-byte char that doesn't fit. */
2085 if (has_mbyte)
2086 correct_cmdspos(i, c);
2087#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00002088 /* If the cmdline doesn't fit, show cursor on last visible char.
2089 * Don't move the cursor itself, so we can still append. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 if ((ccline.cmdspos += c) >= m)
2091 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 ccline.cmdspos -= c;
2093 break;
2094 }
2095#ifdef FEAT_MBYTE
2096 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002097 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098#endif
2099 }
2100}
2101
2102#ifdef FEAT_MBYTE
2103/*
2104 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2105 * character that doesn't fit, so that a ">" must be displayed.
2106 */
2107 static void
2108correct_cmdspos(idx, cells)
2109 int idx;
2110 int cells;
2111{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002112 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2114 && ccline.cmdspos % Columns + cells > Columns)
2115 ccline.cmdspos++;
2116}
2117#endif
2118
2119/*
2120 * Get an Ex command line for the ":" command.
2121 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122 char_u *
Bram Moolenaar78a15312009-05-15 19:33:18 +00002123getexline(c, cookie, indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124 int c; /* normally ':', NUL for ":append" */
Bram Moolenaar78a15312009-05-15 19:33:18 +00002125 void *cookie UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126 int indent; /* indent for inside conditionals */
2127{
2128 /* When executing a register, remove ':' that's in front of each line. */
2129 if (exec_from_reg && vpeekc() == ':')
2130 (void)vgetc();
2131 return getcmdline(c, 1L, indent);
2132}
2133
2134/*
2135 * Get an Ex command line for Ex mode.
2136 * In Ex mode we only use the OS supplied line editing features and no
2137 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002138 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 char_u *
Bram Moolenaar78a15312009-05-15 19:33:18 +00002141getexmodeline(promptc, cookie, indent)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002142 int promptc; /* normally ':', NUL for ":append" and '?' for
2143 :s prompt */
Bram Moolenaar78a15312009-05-15 19:33:18 +00002144 void *cookie UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 int indent; /* indent for inside conditionals */
2146{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002147 garray_T line_ga;
2148 char_u *pend;
2149 int startcol = 0;
Bram Moolenaar76624232007-07-28 12:21:47 +00002150 int c1 = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002151 int escaped = FALSE; /* CTRL-V typed */
2152 int vcol = 0;
2153 char_u *p;
Bram Moolenaar76624232007-07-28 12:21:47 +00002154 int prev_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155
2156 /* Switch cursor on now. This avoids that it happens after the "\n", which
2157 * confuses the system function that computes tabstops. */
2158 cursor_on();
2159
2160 /* always start in column 0; write a newline if necessary */
2161 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002162 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002164 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002166 /* indent that is only displayed, not in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002167 if (p_prompt)
2168 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169 while (indent-- > 0)
2170 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 }
2173
2174 ga_init2(&line_ga, 1, 30);
2175
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002176 /* autoindent for :insert and :append is in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002177 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002178 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002179 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002180 while (indent >= 8)
2181 {
2182 ga_append(&line_ga, TAB);
2183 msg_puts((char_u *)" ");
2184 indent -= 8;
2185 }
2186 while (indent-- > 0)
2187 {
2188 ga_append(&line_ga, ' ');
2189 msg_putchar(' ');
2190 }
2191 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002192 ++no_mapping;
2193 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002194
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 /*
2196 * Get the line, one character at a time.
2197 */
2198 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002199 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 {
2201 if (ga_grow(&line_ga, 40) == FAIL)
2202 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002204 /* Get one character at a time. Don't use inchar(), it can't handle
2205 * special characters. */
Bram Moolenaar76624232007-07-28 12:21:47 +00002206 prev_char = c1;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002207 c1 = vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208
2209 /*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002210 * Handle line editing.
2211 * Previously this was left to the system, putting the terminal in
2212 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002214 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002216 msg_putchar('\n');
2217 break;
2218 }
2219
2220 if (!escaped)
2221 {
2222 /* CR typed means "enter", which is NL */
2223 if (c1 == '\r')
2224 c1 = '\n';
2225
2226 if (c1 == BS || c1 == K_BS
2227 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002229 if (line_ga.ga_len > 0)
2230 {
2231 --line_ga.ga_len;
2232 goto redraw;
2233 }
2234 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 }
2236
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002237 if (c1 == Ctrl_U)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002239 msg_col = startcol;
2240 msg_clr_eos();
2241 line_ga.ga_len = 0;
2242 continue;
2243 }
2244
2245 if (c1 == Ctrl_T)
2246 {
2247 p = (char_u *)line_ga.ga_data;
2248 p[line_ga.ga_len] = NUL;
2249 indent = get_indent_str(p, 8);
2250 indent += curbuf->b_p_sw - indent % curbuf->b_p_sw;
2251add_indent:
2252 while (get_indent_str(p, 8) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002254 char_u *s = skipwhite(p);
2255
2256 ga_grow(&line_ga, 1);
2257 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2258 *s = ' ';
2259 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002261redraw:
2262 /* redraw the line */
2263 msg_col = startcol;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002264 vcol = 0;
2265 for (p = (char_u *)line_ga.ga_data;
2266 p < (char_u *)line_ga.ga_data + line_ga.ga_len; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002268 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002270 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002272 msg_putchar(' ');
2273 } while (++vcol % 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002275 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002277 msg_outtrans_len(p, 1);
2278 vcol += char2cells(*p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 }
2280 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002281 msg_clr_eos();
Bram Moolenaar76624232007-07-28 12:21:47 +00002282 windgoto(msg_row, msg_col);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002283 continue;
2284 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002286 if (c1 == Ctrl_D)
2287 {
2288 /* Delete one shiftwidth. */
2289 p = (char_u *)line_ga.ga_data;
2290 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002292 if (prev_char == '^')
2293 ex_keep_indent = TRUE;
2294 indent = 0;
2295 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296 }
2297 else
2298 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002299 p[line_ga.ga_len] = NUL;
2300 indent = get_indent_str(p, 8);
2301 --indent;
2302 indent -= indent % curbuf->b_p_sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002304 while (get_indent_str(p, 8) > indent)
2305 {
2306 char_u *s = skipwhite(p);
2307
2308 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2309 --line_ga.ga_len;
2310 }
2311 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002313
2314 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2315 {
2316 escaped = TRUE;
2317 continue;
2318 }
2319
2320 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
2321 if (IS_SPECIAL(c1))
2322 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002324
2325 if (IS_SPECIAL(c1))
2326 c1 = '?';
2327 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002328 if (c1 == '\n')
2329 msg_putchar('\n');
2330 else if (c1 == TAB)
2331 {
2332 /* Don't use chartabsize(), 'ts' can be different */
2333 do
2334 {
2335 msg_putchar(' ');
2336 } while (++vcol % 8);
2337 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002340 msg_outtrans_len(
2341 ((char_u *)line_ga.ga_data) + line_ga.ga_len, 1);
2342 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002344 ++line_ga.ga_len;
2345 escaped = FALSE;
2346
2347 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002348 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002349
2350 /* we are done when a NL is entered, but not when it comes after a
2351 * backslash */
2352 if (line_ga.ga_len > 0 && pend[-1] == '\n'
2353 && (line_ga.ga_len <= 1 || pend[-2] != '\\'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 --line_ga.ga_len;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002356 --pend;
2357 *pend = NUL;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002358 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359 }
2360 }
2361
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002362 --no_mapping;
2363 --allow_keys;
2364
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 /* make following messages go to the next line */
2366 msg_didout = FALSE;
2367 msg_col = 0;
2368 if (msg_row < Rows - 1)
2369 ++msg_row;
2370 emsg_on_display = FALSE; /* don't want ui_delay() */
2371
2372 if (got_int)
2373 ga_clear(&line_ga);
2374
2375 return (char_u *)line_ga.ga_data;
2376}
2377
Bram Moolenaare344bea2005-09-01 20:46:49 +00002378# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
2379 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380/*
2381 * Return TRUE if ccline.overstrike is on.
2382 */
2383 int
2384cmdline_overstrike()
2385{
2386 return ccline.overstrike;
2387}
2388
2389/*
2390 * Return TRUE if the cursor is at the end of the cmdline.
2391 */
2392 int
2393cmdline_at_end()
2394{
2395 return (ccline.cmdpos >= ccline.cmdlen);
2396}
2397#endif
2398
Bram Moolenaar9372a112005-12-06 19:59:18 +00002399#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400/*
2401 * Return the virtual column number at the current cursor position.
2402 * This is used by the IM code to obtain the start of the preedit string.
2403 */
2404 colnr_T
2405cmdline_getvcol_cursor()
2406{
2407 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
2408 return MAXCOL;
2409
2410# ifdef FEAT_MBYTE
2411 if (has_mbyte)
2412 {
2413 colnr_T col;
2414 int i = 0;
2415
2416 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002417 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418
2419 return col;
2420 }
2421 else
2422# endif
2423 return ccline.cmdpos;
2424}
2425#endif
2426
2427#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2428/*
2429 * If part of the command line is an IM preedit string, redraw it with
2430 * IM feedback attributes. The cursor position is restored after drawing.
2431 */
2432 static void
2433redrawcmd_preedit()
2434{
2435 if ((State & CMDLINE)
2436 && xic != NULL
Bram Moolenaar494c82a2006-09-14 08:25:49 +00002437 /* && im_get_status() doesn't work when using SCIM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438 && !p_imdisable
2439 && im_is_preediting())
2440 {
2441 int cmdpos = 0;
2442 int cmdspos;
2443 int old_row;
2444 int old_col;
2445 colnr_T col;
2446
2447 old_row = msg_row;
2448 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002449 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450
2451# ifdef FEAT_MBYTE
2452 if (has_mbyte)
2453 {
2454 for (col = 0; col < preedit_start_col
2455 && cmdpos < ccline.cmdlen; ++col)
2456 {
2457 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002458 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 }
2460 }
2461 else
2462# endif
2463 {
2464 cmdspos += preedit_start_col;
2465 cmdpos += preedit_start_col;
2466 }
2467
2468 msg_row = cmdline_row + (cmdspos / (int)Columns);
2469 msg_col = cmdspos % (int)Columns;
2470 if (msg_row >= Rows)
2471 msg_row = Rows - 1;
2472
2473 for (col = 0; cmdpos < ccline.cmdlen; ++col)
2474 {
2475 int char_len;
2476 int char_attr;
2477
2478 char_attr = im_get_feedback_attr(col);
2479 if (char_attr < 0)
2480 break; /* end of preedit string */
2481
2482# ifdef FEAT_MBYTE
2483 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002484 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002485 else
2486# endif
2487 char_len = 1;
2488
2489 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
2490 cmdpos += char_len;
2491 }
2492
2493 msg_row = old_row;
2494 msg_col = old_col;
2495 }
2496}
2497#endif /* FEAT_XIM && FEAT_GUI_GTK */
2498
2499/*
2500 * Allocate a new command line buffer.
2501 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
2502 * Returns the new value of ccline.cmdbuff and ccline.cmdbufflen.
2503 */
2504 static void
2505alloc_cmdbuff(len)
2506 int len;
2507{
2508 /*
2509 * give some extra space to avoid having to allocate all the time
2510 */
2511 if (len < 80)
2512 len = 100;
2513 else
2514 len += 20;
2515
2516 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */
2517 ccline.cmdbufflen = len;
2518}
2519
2520/*
2521 * Re-allocate the command line to length len + something extra.
2522 * return FAIL for failure, OK otherwise
2523 */
2524 static int
2525realloc_cmdbuff(len)
2526 int len;
2527{
2528 char_u *p;
2529
2530 p = ccline.cmdbuff;
2531 alloc_cmdbuff(len); /* will get some more */
2532 if (ccline.cmdbuff == NULL) /* out of memory */
2533 {
2534 ccline.cmdbuff = p; /* keep the old one */
2535 return FAIL;
2536 }
2537 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen + 1);
2538 vim_free(p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002539
2540 if (ccline.xpc != NULL
2541 && ccline.xpc->xp_pattern != NULL
2542 && ccline.xpc->xp_context != EXPAND_NOTHING
2543 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL)
2544 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00002545 int i = (int)(ccline.xpc->xp_pattern - p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002546
2547 /* If xp_pattern points inside the old cmdbuff it needs to be adjusted
2548 * to point into the newly allocated memory. */
2549 if (i >= 0 && i <= ccline.cmdlen)
2550 ccline.xpc->xp_pattern = ccline.cmdbuff + i;
2551 }
2552
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553 return OK;
2554}
2555
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002556#if defined(FEAT_ARABIC) || defined(PROTO)
2557static char_u *arshape_buf = NULL;
2558
2559# if defined(EXITFREE) || defined(PROTO)
2560 void
2561free_cmdline_buf()
2562{
2563 vim_free(arshape_buf);
2564}
2565# endif
2566#endif
2567
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568/*
2569 * Draw part of the cmdline at the current cursor position. But draw stars
2570 * when cmdline_star is TRUE.
2571 */
2572 static void
2573draw_cmdline(start, len)
2574 int start;
2575 int len;
2576{
2577#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2578 int i;
2579
2580 if (cmdline_star > 0)
2581 for (i = 0; i < len; ++i)
2582 {
2583 msg_putchar('*');
2584# ifdef FEAT_MBYTE
2585 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002586 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587# endif
2588 }
2589 else
2590#endif
2591#ifdef FEAT_ARABIC
2592 if (p_arshape && !p_tbidi && enc_utf8 && len > 0)
2593 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594 static int buflen = 0;
2595 char_u *p;
2596 int j;
2597 int newlen = 0;
2598 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00002599 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 int prev_c = 0;
2601 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002602 int u8c;
2603 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605
2606 /*
2607 * Do arabic shaping into a temporary buffer. This is very
2608 * inefficient!
2609 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002610 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611 {
2612 /* Re-allocate the buffer. We keep it around to avoid a lot of
2613 * alloc()/free() calls. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002614 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002615 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002616 arshape_buf = alloc(buflen);
2617 if (arshape_buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618 return; /* out of memory */
2619 }
2620
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002621 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
2622 {
2623 /* Prepend a space to draw the leading composing char on. */
2624 arshape_buf[0] = ' ';
2625 newlen = 1;
2626 }
2627
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 for (j = start; j < start + len; j += mb_l)
2629 {
2630 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002631 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002632 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 if (ARABIC_CHAR(u8c))
2634 {
2635 /* Do Arabic shaping. */
2636 if (cmdmsg_rl)
2637 {
2638 /* displaying from right to left */
2639 pc = prev_c;
2640 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002641 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 if (j + mb_l >= start + len)
2643 nc = NUL;
2644 else
2645 nc = utf_ptr2char(p + mb_l);
2646 }
2647 else
2648 {
2649 /* displaying from left to right */
2650 if (j + mb_l >= start + len)
2651 pc = NUL;
2652 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002653 {
2654 int pcc[MAX_MCO];
2655
2656 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002658 pc1 = pcc[0];
2659 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660 nc = prev_c;
2661 }
2662 prev_c = u8c;
2663
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002664 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002666 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002667 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002669 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
2670 if (u8cc[1] != 0)
2671 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002672 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673 }
2674 }
2675 else
2676 {
2677 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002678 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679 newlen += mb_l;
2680 }
2681 }
2682
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002683 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684 }
2685 else
2686#endif
2687 msg_outtrans_len(ccline.cmdbuff + start, len);
2688}
2689
2690/*
2691 * Put a character on the command line. Shifts the following text to the
2692 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
2693 * "c" must be printable (fit in one display cell)!
2694 */
2695 void
2696putcmdline(c, shift)
2697 int c;
2698 int shift;
2699{
2700 if (cmd_silent)
2701 return;
2702 msg_no_more = TRUE;
2703 msg_putchar(c);
2704 if (shift)
2705 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2706 msg_no_more = FALSE;
2707 cursorcmd();
2708}
2709
2710/*
2711 * Undo a putcmdline(c, FALSE).
2712 */
2713 void
2714unputcmdline()
2715{
2716 if (cmd_silent)
2717 return;
2718 msg_no_more = TRUE;
2719 if (ccline.cmdlen == ccline.cmdpos)
2720 msg_putchar(' ');
2721 else
2722 draw_cmdline(ccline.cmdpos, 1);
2723 msg_no_more = FALSE;
2724 cursorcmd();
2725}
2726
2727/*
2728 * Put the given string, of the given length, onto the command line.
2729 * If len is -1, then STRLEN() is used to calculate the length.
2730 * If 'redraw' is TRUE then the new part of the command line, and the remaining
2731 * part will be redrawn, otherwise it will not. If this function is called
2732 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
2733 * called afterwards.
2734 */
2735 int
2736put_on_cmdline(str, len, redraw)
2737 char_u *str;
2738 int len;
2739 int redraw;
2740{
2741 int retval;
2742 int i;
2743 int m;
2744 int c;
2745
2746 if (len < 0)
2747 len = (int)STRLEN(str);
2748
2749 /* Check if ccline.cmdbuff needs to be longer */
2750 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
2751 retval = realloc_cmdbuff(ccline.cmdlen + len);
2752 else
2753 retval = OK;
2754 if (retval == OK)
2755 {
2756 if (!ccline.overstrike)
2757 {
2758 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2759 ccline.cmdbuff + ccline.cmdpos,
2760 (size_t)(ccline.cmdlen - ccline.cmdpos));
2761 ccline.cmdlen += len;
2762 }
2763 else
2764 {
2765#ifdef FEAT_MBYTE
2766 if (has_mbyte)
2767 {
2768 /* Count nr of characters in the new string. */
2769 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002770 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 ++m;
2772 /* Count nr of bytes in cmdline that are overwritten by these
2773 * characters. */
2774 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002775 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776 --m;
2777 if (i < ccline.cmdlen)
2778 {
2779 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2780 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
2781 ccline.cmdlen += ccline.cmdpos + len - i;
2782 }
2783 else
2784 ccline.cmdlen = ccline.cmdpos + len;
2785 }
2786 else
2787#endif
2788 if (ccline.cmdpos + len > ccline.cmdlen)
2789 ccline.cmdlen = ccline.cmdpos + len;
2790 }
2791 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
2792 ccline.cmdbuff[ccline.cmdlen] = NUL;
2793
2794#ifdef FEAT_MBYTE
2795 if (enc_utf8)
2796 {
2797 /* When the inserted text starts with a composing character,
2798 * backup to the character before it. There could be two of them.
2799 */
2800 i = 0;
2801 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
2802 while (ccline.cmdpos > 0 && utf_iscomposing(c))
2803 {
2804 i = (*mb_head_off)(ccline.cmdbuff,
2805 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
2806 ccline.cmdpos -= i;
2807 len += i;
2808 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
2809 }
2810# ifdef FEAT_ARABIC
2811 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
2812 {
2813 /* Check the previous character for Arabic combining pair. */
2814 i = (*mb_head_off)(ccline.cmdbuff,
2815 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
2816 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
2817 + ccline.cmdpos - i), c))
2818 {
2819 ccline.cmdpos -= i;
2820 len += i;
2821 }
2822 else
2823 i = 0;
2824 }
2825# endif
2826 if (i != 0)
2827 {
2828 /* Also backup the cursor position. */
2829 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
2830 ccline.cmdspos -= i;
2831 msg_col -= i;
2832 if (msg_col < 0)
2833 {
2834 msg_col += Columns;
2835 --msg_row;
2836 }
2837 }
2838 }
2839#endif
2840
2841 if (redraw && !cmd_silent)
2842 {
2843 msg_no_more = TRUE;
2844 i = cmdline_row;
2845 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2846 /* Avoid clearing the rest of the line too often. */
2847 if (cmdline_row != i || ccline.overstrike)
2848 msg_clr_eos();
2849 msg_no_more = FALSE;
2850 }
2851#ifdef FEAT_FKMAP
2852 /*
2853 * If we are in Farsi command mode, the character input must be in
2854 * Insert mode. So do not advance the cmdpos.
2855 */
2856 if (!cmd_fkmap)
2857#endif
2858 {
2859 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002860 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002862 if (m < 0) /* overflow, Columns or Rows at weird value */
2863 m = MAXCOL;
2864 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 else
2866 m = MAXCOL;
2867 for (i = 0; i < len; ++i)
2868 {
2869 c = cmdline_charsize(ccline.cmdpos);
2870#ifdef FEAT_MBYTE
2871 /* count ">" for a double-wide char that doesn't fit. */
2872 if (has_mbyte)
2873 correct_cmdspos(ccline.cmdpos, c);
2874#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00002875 /* Stop cursor at the end of the screen, but do increment the
2876 * insert position, so that entering a very long command
2877 * works, even though you can't see it. */
2878 if (ccline.cmdspos + c < m)
2879 ccline.cmdspos += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880#ifdef FEAT_MBYTE
2881 if (has_mbyte)
2882 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002883 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002884 if (c > len - i - 1)
2885 c = len - i - 1;
2886 ccline.cmdpos += c;
2887 i += c;
2888 }
2889#endif
2890 ++ccline.cmdpos;
2891 }
2892 }
2893 }
2894 if (redraw)
2895 msg_check();
2896 return retval;
2897}
2898
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002899static struct cmdline_info prev_ccline;
2900static int prev_ccline_used = FALSE;
2901
2902/*
2903 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
2904 * and overwrite it. But get_cmdline_str() may need it, thus make it
2905 * available globally in prev_ccline.
2906 */
2907 static void
2908save_cmdline(ccp)
2909 struct cmdline_info *ccp;
2910{
2911 if (!prev_ccline_used)
2912 {
2913 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info));
2914 prev_ccline_used = TRUE;
2915 }
2916 *ccp = prev_ccline;
2917 prev_ccline = ccline;
2918 ccline.cmdbuff = NULL;
2919 ccline.cmdprompt = NULL;
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002920 ccline.xpc = NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002921}
2922
2923/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00002924 * Restore ccline after it has been saved with save_cmdline().
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002925 */
2926 static void
2927restore_cmdline(ccp)
2928 struct cmdline_info *ccp;
2929{
2930 ccline = prev_ccline;
2931 prev_ccline = *ccp;
2932}
2933
Bram Moolenaar5a305422006-04-28 22:38:25 +00002934#if defined(FEAT_EVAL) || defined(PROTO)
2935/*
2936 * Save the command line into allocated memory. Returns a pointer to be
2937 * passed to restore_cmdline_alloc() later.
2938 * Returns NULL when failed.
2939 */
2940 char_u *
2941save_cmdline_alloc()
2942{
2943 struct cmdline_info *p;
2944
2945 p = (struct cmdline_info *)alloc((unsigned)sizeof(struct cmdline_info));
2946 if (p != NULL)
2947 save_cmdline(p);
2948 return (char_u *)p;
2949}
2950
2951/*
2952 * Restore the command line from the return value of save_cmdline_alloc().
2953 */
2954 void
2955restore_cmdline_alloc(p)
2956 char_u *p;
2957{
2958 if (p != NULL)
2959 {
2960 restore_cmdline((struct cmdline_info *)p);
2961 vim_free(p);
2962 }
2963}
2964#endif
2965
Bram Moolenaar8299df92004-07-10 09:47:34 +00002966/*
2967 * paste a yank register into the command line.
2968 * used by CTRL-R command in command-line mode
2969 * insert_reg() can't be used here, because special characters from the
2970 * register contents will be interpreted as commands.
2971 *
2972 * return FAIL for failure, OK otherwise
2973 */
2974 static int
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00002975cmdline_paste(regname, literally, remcr)
Bram Moolenaar8299df92004-07-10 09:47:34 +00002976 int regname;
2977 int literally; /* Insert text literally instead of "as typed" */
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00002978 int remcr; /* remove trailing CR */
Bram Moolenaar8299df92004-07-10 09:47:34 +00002979{
2980 long i;
2981 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002982 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00002983 int allocated;
2984 struct cmdline_info save_ccline;
2985
2986 /* check for valid regname; also accept special characters for CTRL-R in
2987 * the command line */
2988 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
2989 && regname != Ctrl_A && !valid_yank_reg(regname, FALSE))
2990 return FAIL;
2991
2992 /* A register containing CTRL-R can cause an endless loop. Allow using
2993 * CTRL-C to break the loop. */
2994 line_breakcheck();
2995 if (got_int)
2996 return FAIL;
2997
2998#ifdef FEAT_CLIPBOARD
2999 regname = may_get_selection(regname);
3000#endif
3001
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003002 /* Need to save and restore ccline. And set "textlock" to avoid nasty
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003003 * things like going to another buffer when evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003004 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003005 ++textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003006 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003007 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003008 restore_cmdline(&save_ccline);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003009
3010 if (i)
3011 {
3012 /* Got the value of a special register in "arg". */
3013 if (arg == NULL)
3014 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003015
3016 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
3017 * part of the word. */
3018 p = arg;
3019 if (p_is && regname == Ctrl_W)
3020 {
3021 char_u *w;
3022 int len;
3023
3024 /* Locate start of last word in the cmd buffer. */
3025 for (w = ccline.cmdbuff + ccline.cmdlen; w > ccline.cmdbuff; )
3026 {
3027#ifdef FEAT_MBYTE
3028 if (has_mbyte)
3029 {
3030 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
3031 if (!vim_iswordc(mb_ptr2char(w - len)))
3032 break;
3033 w -= len;
3034 }
3035 else
3036#endif
3037 {
3038 if (!vim_iswordc(w[-1]))
3039 break;
3040 --w;
3041 }
3042 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003043 len = (int)((ccline.cmdbuff + ccline.cmdlen) - w);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003044 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
3045 p += len;
3046 }
3047
3048 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003049 if (allocated)
3050 vim_free(arg);
3051 return OK;
3052 }
3053
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003054 return cmdline_paste_reg(regname, literally, remcr);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003055}
3056
3057/*
3058 * Put a string on the command line.
3059 * When "literally" is TRUE, insert literally.
3060 * When "literally" is FALSE, insert as typed, but don't leave the command
3061 * line.
3062 */
3063 void
3064cmdline_paste_str(s, literally)
3065 char_u *s;
3066 int literally;
3067{
3068 int c, cv;
3069
3070 if (literally)
3071 put_on_cmdline(s, -1, TRUE);
3072 else
3073 while (*s != NUL)
3074 {
3075 cv = *s;
3076 if (cv == Ctrl_V && s[1])
3077 ++s;
3078#ifdef FEAT_MBYTE
3079 if (has_mbyte)
Bram Moolenaar48be32b2008-06-20 10:56:16 +00003080 c = mb_cptr2char_adv(&s);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003081 else
3082#endif
3083 c = *s++;
3084 if (cv == Ctrl_V || c == ESC || c == Ctrl_C || c == CAR || c == NL
3085#ifdef UNIX
3086 || c == intr_char
3087#endif
3088 || (c == Ctrl_BSL && *s == Ctrl_N))
3089 stuffcharReadbuff(Ctrl_V);
3090 stuffcharReadbuff(c);
3091 }
3092}
3093
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094#ifdef FEAT_WILDMENU
3095/*
3096 * Delete characters on the command line, from "from" to the current
3097 * position.
3098 */
3099 static void
3100cmdline_del(from)
3101 int from;
3102{
3103 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
3104 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3105 ccline.cmdlen -= ccline.cmdpos - from;
3106 ccline.cmdpos = from;
3107}
3108#endif
3109
3110/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003111 * this function is called when the screen size changes and with incremental
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112 * search
3113 */
3114 void
3115redrawcmdline()
3116{
3117 if (cmd_silent)
3118 return;
3119 need_wait_return = FALSE;
3120 compute_cmdrow();
3121 redrawcmd();
3122 cursorcmd();
3123}
3124
3125 static void
3126redrawcmdprompt()
3127{
3128 int i;
3129
3130 if (cmd_silent)
3131 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003132 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133 msg_putchar(ccline.cmdfirstc);
3134 if (ccline.cmdprompt != NULL)
3135 {
3136 msg_puts_attr(ccline.cmdprompt, ccline.cmdattr);
3137 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
3138 /* do the reverse of set_cmdspos() */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003139 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 --ccline.cmdindent;
3141 }
3142 else
3143 for (i = ccline.cmdindent; i > 0; --i)
3144 msg_putchar(' ');
3145}
3146
3147/*
3148 * Redraw what is currently on the command line.
3149 */
3150 void
3151redrawcmd()
3152{
3153 if (cmd_silent)
3154 return;
3155
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003156 /* when 'incsearch' is set there may be no command line while redrawing */
3157 if (ccline.cmdbuff == NULL)
3158 {
3159 windgoto(cmdline_row, 0);
3160 msg_clr_eos();
3161 return;
3162 }
3163
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164 msg_start();
3165 redrawcmdprompt();
3166
3167 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
3168 msg_no_more = TRUE;
3169 draw_cmdline(0, ccline.cmdlen);
3170 msg_clr_eos();
3171 msg_no_more = FALSE;
3172
3173 set_cmdspos_cursor();
3174
3175 /*
3176 * An emsg() before may have set msg_scroll. This is used in normal mode,
3177 * in cmdline mode we can reset them now.
3178 */
3179 msg_scroll = FALSE; /* next message overwrites cmdline */
3180
3181 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
3182 * in cmdline mode */
3183 skip_redraw = FALSE;
3184}
3185
3186 void
3187compute_cmdrow()
3188{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003189 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 cmdline_row = Rows - 1;
3191 else
3192 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
3193 + W_STATUS_HEIGHT(lastwin);
3194}
3195
3196 static void
3197cursorcmd()
3198{
3199 if (cmd_silent)
3200 return;
3201
3202#ifdef FEAT_RIGHTLEFT
3203 if (cmdmsg_rl)
3204 {
3205 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3206 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3207 if (msg_row <= 0)
3208 msg_row = Rows - 1;
3209 }
3210 else
3211#endif
3212 {
3213 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3214 msg_col = ccline.cmdspos % (int)Columns;
3215 if (msg_row >= Rows)
3216 msg_row = Rows - 1;
3217 }
3218
3219 windgoto(msg_row, msg_col);
3220#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
3221 redrawcmd_preedit();
3222#endif
3223#ifdef MCH_CURSOR_SHAPE
3224 mch_update_cursor();
3225#endif
3226}
3227
3228 void
3229gotocmdline(clr)
3230 int clr;
3231{
3232 msg_start();
3233#ifdef FEAT_RIGHTLEFT
3234 if (cmdmsg_rl)
3235 msg_col = Columns - 1;
3236 else
3237#endif
3238 msg_col = 0; /* always start in column 0 */
3239 if (clr) /* clear the bottom line(s) */
3240 msg_clr_eos(); /* will reset clear_cmdline */
3241 windgoto(cmdline_row, 0);
3242}
3243
3244/*
3245 * Check the word in front of the cursor for an abbreviation.
3246 * Called when the non-id character "c" has been entered.
3247 * When an abbreviation is recognized it is removed from the text with
3248 * backspaces and the replacement string is inserted, followed by "c".
3249 */
3250 static int
3251ccheck_abbr(c)
3252 int c;
3253{
3254 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
3255 return FALSE;
3256
3257 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, 0);
3258}
3259
3260/*
3261 * Return FAIL if this is not an appropriate context in which to do
3262 * completion of anything, return OK if it is (even if there are no matches).
3263 * For the caller, this means that the character is just passed through like a
3264 * normal character (instead of being expanded). This allows :s/^I^D etc.
3265 */
3266 static int
3267nextwild(xp, type, options)
3268 expand_T *xp;
3269 int type;
3270 int options; /* extra options for ExpandOne() */
3271{
3272 int i, j;
3273 char_u *p1;
3274 char_u *p2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275 int difflen;
3276 int v;
3277
3278 if (xp->xp_numfiles == -1)
3279 {
3280 set_expand_context(xp);
3281 cmd_showtail = expand_showtail(xp);
3282 }
3283
3284 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
3285 {
3286 beep_flush();
3287 return OK; /* Something illegal on command line */
3288 }
3289 if (xp->xp_context == EXPAND_NOTHING)
3290 {
3291 /* Caller can use the character as a normal char instead */
3292 return FAIL;
3293 }
3294
3295 MSG_PUTS("..."); /* show that we are busy */
3296 out_flush();
3297
3298 i = (int)(xp->xp_pattern - ccline.cmdbuff);
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003299 xp->xp_pattern_len = ccline.cmdpos - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300
3301 if (type == WILD_NEXT || type == WILD_PREV)
3302 {
3303 /*
3304 * Get next/previous match for a previous expanded pattern.
3305 */
3306 p2 = ExpandOne(xp, NULL, NULL, 0, type);
3307 }
3308 else
3309 {
3310 /*
3311 * Translate string into pattern and expand it.
3312 */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003313 if ((p1 = addstar(xp->xp_pattern, xp->xp_pattern_len,
3314 xp->xp_context)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 p2 = NULL;
3316 else
3317 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003318 p2 = ExpandOne(xp, p1,
3319 vim_strnsave(&ccline.cmdbuff[i], xp->xp_pattern_len),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT|WILD_ESCAPE
3321 |options, type);
3322 vim_free(p1);
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003323 /* longest match: make sure it is not shorter, happens with :help */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324 if (p2 != NULL && type == WILD_LONGEST)
3325 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003326 for (j = 0; j < xp->xp_pattern_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327 if (ccline.cmdbuff[i + j] == '*'
3328 || ccline.cmdbuff[i + j] == '?')
3329 break;
3330 if ((int)STRLEN(p2) < j)
3331 {
3332 vim_free(p2);
3333 p2 = NULL;
3334 }
3335 }
3336 }
3337 }
3338
3339 if (p2 != NULL && !got_int)
3340 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003341 difflen = (int)STRLEN(p2) - xp->xp_pattern_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342 if (ccline.cmdlen + difflen > ccline.cmdbufflen - 4)
3343 {
3344 v = realloc_cmdbuff(ccline.cmdlen + difflen);
3345 xp->xp_pattern = ccline.cmdbuff + i;
3346 }
3347 else
3348 v = OK;
3349 if (v == OK)
3350 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003351 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen],
3352 &ccline.cmdbuff[ccline.cmdpos],
3353 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3354 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 ccline.cmdlen += difflen;
3356 ccline.cmdpos += difflen;
3357 }
3358 }
3359 vim_free(p2);
3360
3361 redrawcmd();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003362 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363
3364 /* When expanding a ":map" command and no matches are found, assume that
3365 * the key is supposed to be inserted literally */
3366 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL)
3367 return FAIL;
3368
3369 if (xp->xp_numfiles <= 0 && p2 == NULL)
3370 beep_flush();
3371 else if (xp->xp_numfiles == 1)
3372 /* free expanded pattern */
3373 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
3374
3375 return OK;
3376}
3377
3378/*
3379 * Do wildcard expansion on the string 'str'.
3380 * Chars that should not be expanded must be preceded with a backslash.
Bram Moolenaarf9821062008-06-20 16:31:07 +00003381 * Return a pointer to allocated memory containing the new string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 * Return NULL for failure.
3383 *
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003384 * "orig" is the originally expanded string, copied to allocated memory. It
3385 * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or
3386 * WILD_PREV "orig" should be NULL.
3387 *
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003388 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode"
3389 * is WILD_EXPAND_FREE or WILD_ALL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390 *
3391 * mode = WILD_FREE: just free previously expanded matches
3392 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches
3393 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches
3394 * mode = WILD_NEXT: use next match in multiple match, wrap to first
3395 * mode = WILD_PREV: use previous match in multiple match, wrap to first
3396 * mode = WILD_ALL: return all matches concatenated
3397 * mode = WILD_LONGEST: return longest matched part
3398 *
3399 * options = WILD_LIST_NOTFOUND: list entries without a match
3400 * options = WILD_HOME_REPLACE: do home_replace() for buffer names
3401 * options = WILD_USE_NL: Use '\n' for WILD_ALL
3402 * options = WILD_NO_BEEP: Don't beep for multiple matches
3403 * options = WILD_ADD_SLASH: add a slash after directory names
3404 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries
3405 * options = WILD_SILENT: don't print warning messages
3406 * options = WILD_ESCAPE: put backslash before special chars
3407 *
3408 * The variables xp->xp_context and xp->xp_backslash must have been set!
3409 */
3410 char_u *
3411ExpandOne(xp, str, orig, options, mode)
3412 expand_T *xp;
3413 char_u *str;
3414 char_u *orig; /* allocated copy of original of expanded string */
3415 int options;
3416 int mode;
3417{
3418 char_u *ss = NULL;
3419 static int findex;
3420 static char_u *orig_save = NULL; /* kept value of orig */
Bram Moolenaar96426642007-10-30 16:37:15 +00003421 int orig_saved = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422 int i;
3423 long_u len;
3424 int non_suf_match; /* number without matching suffix */
3425
3426 /*
3427 * first handle the case of using an old match
3428 */
3429 if (mode == WILD_NEXT || mode == WILD_PREV)
3430 {
3431 if (xp->xp_numfiles > 0)
3432 {
3433 if (mode == WILD_PREV)
3434 {
3435 if (findex == -1)
3436 findex = xp->xp_numfiles;
3437 --findex;
3438 }
3439 else /* mode == WILD_NEXT */
3440 ++findex;
3441
3442 /*
3443 * When wrapping around, return the original string, set findex to
3444 * -1.
3445 */
3446 if (findex < 0)
3447 {
3448 if (orig_save == NULL)
3449 findex = xp->xp_numfiles - 1;
3450 else
3451 findex = -1;
3452 }
3453 if (findex >= xp->xp_numfiles)
3454 {
3455 if (orig_save == NULL)
3456 findex = 0;
3457 else
3458 findex = -1;
3459 }
3460#ifdef FEAT_WILDMENU
3461 if (p_wmnu)
3462 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files,
3463 findex, cmd_showtail);
3464#endif
3465 if (findex == -1)
3466 return vim_strsave(orig_save);
3467 return vim_strsave(xp->xp_files[findex]);
3468 }
3469 else
3470 return NULL;
3471 }
3472
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003473 /* free old names */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST)
3475 {
3476 FreeWild(xp->xp_numfiles, xp->xp_files);
3477 xp->xp_numfiles = -1;
3478 vim_free(orig_save);
3479 orig_save = NULL;
3480 }
3481 findex = 0;
3482
3483 if (mode == WILD_FREE) /* only release file name */
3484 return NULL;
3485
3486 if (xp->xp_numfiles == -1)
3487 {
3488 vim_free(orig_save);
3489 orig_save = orig;
Bram Moolenaar96426642007-10-30 16:37:15 +00003490 orig_saved = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003491
3492 /*
3493 * Do the expansion.
3494 */
3495 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files,
3496 options) == FAIL)
3497 {
3498#ifdef FNAME_ILLEGAL
3499 /* Illegal file name has been silently skipped. But when there
3500 * are wildcards, the real problem is that there was no match,
3501 * causing the pattern to be added, which has illegal characters.
3502 */
3503 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND))
3504 EMSG2(_(e_nomatch2), str);
3505#endif
3506 }
3507 else if (xp->xp_numfiles == 0)
3508 {
3509 if (!(options & WILD_SILENT))
3510 EMSG2(_(e_nomatch2), str);
3511 }
3512 else
3513 {
3514 /* Escape the matches for use on the command line. */
3515 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options);
3516
3517 /*
3518 * Check for matching suffixes in file names.
3519 */
3520 if (mode != WILD_ALL && mode != WILD_LONGEST)
3521 {
3522 if (xp->xp_numfiles)
3523 non_suf_match = xp->xp_numfiles;
3524 else
3525 non_suf_match = 1;
3526 if ((xp->xp_context == EXPAND_FILES
3527 || xp->xp_context == EXPAND_DIRECTORIES)
3528 && xp->xp_numfiles > 1)
3529 {
3530 /*
3531 * More than one match; check suffix.
3532 * The files will have been sorted on matching suffix in
3533 * expand_wildcards, only need to check the first two.
3534 */
3535 non_suf_match = 0;
3536 for (i = 0; i < 2; ++i)
3537 if (match_suffix(xp->xp_files[i]))
3538 ++non_suf_match;
3539 }
3540 if (non_suf_match != 1)
3541 {
3542 /* Can we ever get here unless it's while expanding
3543 * interactively? If not, we can get rid of this all
3544 * together. Don't really want to wait for this message
3545 * (and possibly have to hit return to continue!).
3546 */
3547 if (!(options & WILD_SILENT))
3548 EMSG(_(e_toomany));
3549 else if (!(options & WILD_NO_BEEP))
3550 beep_flush();
3551 }
3552 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE))
3553 ss = vim_strsave(xp->xp_files[0]);
3554 }
3555 }
3556 }
3557
3558 /* Find longest common part */
3559 if (mode == WILD_LONGEST && xp->xp_numfiles > 0)
3560 {
3561 for (len = 0; xp->xp_files[0][len]; ++len)
3562 {
3563 for (i = 0; i < xp->xp_numfiles; ++i)
3564 {
3565#ifdef CASE_INSENSITIVE_FILENAME
3566 if (xp->xp_context == EXPAND_DIRECTORIES
3567 || xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003568 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 || xp->xp_context == EXPAND_BUFFERS)
3570 {
3571 if (TOLOWER_LOC(xp->xp_files[i][len]) !=
3572 TOLOWER_LOC(xp->xp_files[0][len]))
3573 break;
3574 }
3575 else
3576#endif
3577 if (xp->xp_files[i][len] != xp->xp_files[0][len])
3578 break;
3579 }
3580 if (i < xp->xp_numfiles)
3581 {
3582 if (!(options & WILD_NO_BEEP))
3583 vim_beep();
3584 break;
3585 }
3586 }
3587 ss = alloc((unsigned)len + 1);
3588 if (ss)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003589 vim_strncpy(ss, xp->xp_files[0], (size_t)len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590 findex = -1; /* next p_wc gets first one */
3591 }
3592
3593 /* Concatenate all matching names */
3594 if (mode == WILD_ALL && xp->xp_numfiles > 0)
3595 {
3596 len = 0;
3597 for (i = 0; i < xp->xp_numfiles; ++i)
3598 len += (long_u)STRLEN(xp->xp_files[i]) + 1;
3599 ss = lalloc(len, TRUE);
3600 if (ss != NULL)
3601 {
3602 *ss = NUL;
3603 for (i = 0; i < xp->xp_numfiles; ++i)
3604 {
3605 STRCAT(ss, xp->xp_files[i]);
3606 if (i != xp->xp_numfiles - 1)
3607 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " ");
3608 }
3609 }
3610 }
3611
3612 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL)
3613 ExpandCleanup(xp);
3614
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003615 /* Free "orig" if it wasn't stored in "orig_save". */
Bram Moolenaar96426642007-10-30 16:37:15 +00003616 if (!orig_saved)
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003617 vim_free(orig);
3618
Bram Moolenaar071d4272004-06-13 20:20:40 +00003619 return ss;
3620}
3621
3622/*
3623 * Prepare an expand structure for use.
3624 */
3625 void
3626ExpandInit(xp)
3627 expand_T *xp;
3628{
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003629 xp->xp_pattern = NULL;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003630 xp->xp_pattern_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003632#ifndef BACKSLASH_IN_FILENAME
3633 xp->xp_shell = FALSE;
3634#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 xp->xp_numfiles = -1;
3636 xp->xp_files = NULL;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003637#if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
3638 xp->xp_arg = NULL;
3639#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640}
3641
3642/*
3643 * Cleanup an expand structure after use.
3644 */
3645 void
3646ExpandCleanup(xp)
3647 expand_T *xp;
3648{
3649 if (xp->xp_numfiles >= 0)
3650 {
3651 FreeWild(xp->xp_numfiles, xp->xp_files);
3652 xp->xp_numfiles = -1;
3653 }
3654}
3655
3656 void
3657ExpandEscape(xp, str, numfiles, files, options)
3658 expand_T *xp;
3659 char_u *str;
3660 int numfiles;
3661 char_u **files;
3662 int options;
3663{
3664 int i;
3665 char_u *p;
3666
3667 /*
3668 * May change home directory back to "~"
3669 */
3670 if (options & WILD_HOME_REPLACE)
3671 tilde_replace(str, numfiles, files);
3672
3673 if (options & WILD_ESCAPE)
3674 {
3675 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003676 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677 || xp->xp_context == EXPAND_BUFFERS
3678 || xp->xp_context == EXPAND_DIRECTORIES)
3679 {
3680 /*
3681 * Insert a backslash into a file name before a space, \, %, #
3682 * and wildmatch characters, except '~'.
3683 */
3684 for (i = 0; i < numfiles; ++i)
3685 {
3686 /* for ":set path=" we need to escape spaces twice */
3687 if (xp->xp_backslash == XP_BS_THREE)
3688 {
3689 p = vim_strsave_escaped(files[i], (char_u *)" ");
3690 if (p != NULL)
3691 {
3692 vim_free(files[i]);
3693 files[i] = p;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003694#if defined(BACKSLASH_IN_FILENAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 p = vim_strsave_escaped(files[i], (char_u *)" ");
3696 if (p != NULL)
3697 {
3698 vim_free(files[i]);
3699 files[i] = p;
3700 }
3701#endif
3702 }
3703 }
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00003704#ifdef BACKSLASH_IN_FILENAME
3705 p = vim_strsave_fnameescape(files[i], FALSE);
3706#else
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003707 p = vim_strsave_fnameescape(files[i], xp->xp_shell);
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00003708#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709 if (p != NULL)
3710 {
3711 vim_free(files[i]);
3712 files[i] = p;
3713 }
3714
3715 /* If 'str' starts with "\~", replace "~" at start of
3716 * files[i] with "\~". */
3717 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~')
Bram Moolenaar45360022005-07-21 21:08:21 +00003718 escape_fname(&files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 }
3720 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar45360022005-07-21 21:08:21 +00003721
3722 /* If the first file starts with a '+' escape it. Otherwise it
3723 * could be seen as "+cmd". */
3724 if (*files[0] == '+')
3725 escape_fname(&files[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726 }
3727 else if (xp->xp_context == EXPAND_TAGS)
3728 {
3729 /*
3730 * Insert a backslash before characters in a tag name that
3731 * would terminate the ":tag" command.
3732 */
3733 for (i = 0; i < numfiles; ++i)
3734 {
3735 p = vim_strsave_escaped(files[i], (char_u *)"\\|\"");
3736 if (p != NULL)
3737 {
3738 vim_free(files[i]);
3739 files[i] = p;
3740 }
3741 }
3742 }
3743 }
3744}
3745
3746/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003747 * Escape special characters in "fname" for when used as a file name argument
3748 * after a Vim command, or, when "shell" is non-zero, a shell command.
3749 * Returns the result in allocated memory.
3750 */
3751 char_u *
3752vim_strsave_fnameescape(fname, shell)
3753 char_u *fname;
3754 int shell;
3755{
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003756 char_u *p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003757#ifdef BACKSLASH_IN_FILENAME
3758 char_u buf[20];
3759 int j = 0;
3760
3761 /* Don't escape '[' and '{' if they are in 'isfname'. */
3762 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
3763 if ((*p != '[' && *p != '{') || !vim_isfilec(*p))
3764 buf[j++] = *p;
3765 buf[j] = NUL;
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003766 p = vim_strsave_escaped(fname, buf);
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003767#else
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003768 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
3769 if (shell && csh_like_shell() && p != NULL)
3770 {
3771 char_u *s;
3772
3773 /* For csh and similar shells need to put two backslashes before '!'.
3774 * One is taken by Vim, one by the shell. */
3775 s = vim_strsave_escaped(p, (char_u *)"!");
3776 vim_free(p);
3777 p = s;
3778 }
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003779#endif
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003780
3781 /* '>' and '+' are special at the start of some commands, e.g. ":edit" and
3782 * ":write". "cd -" has a special meaning. */
3783 if (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL))
3784 escape_fname(&p);
3785
3786 return p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003787}
3788
3789/*
Bram Moolenaar45360022005-07-21 21:08:21 +00003790 * Put a backslash before the file name in "pp", which is in allocated memory.
3791 */
3792 static void
3793escape_fname(pp)
3794 char_u **pp;
3795{
3796 char_u *p;
3797
3798 p = alloc((unsigned)(STRLEN(*pp) + 2));
3799 if (p != NULL)
3800 {
3801 p[0] = '\\';
3802 STRCPY(p + 1, *pp);
3803 vim_free(*pp);
3804 *pp = p;
3805 }
3806}
3807
3808/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809 * For each file name in files[num_files]:
3810 * If 'orig_pat' starts with "~/", replace the home directory with "~".
3811 */
3812 void
3813tilde_replace(orig_pat, num_files, files)
3814 char_u *orig_pat;
3815 int num_files;
3816 char_u **files;
3817{
3818 int i;
3819 char_u *p;
3820
3821 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
3822 {
3823 for (i = 0; i < num_files; ++i)
3824 {
3825 p = home_replace_save(NULL, files[i]);
3826 if (p != NULL)
3827 {
3828 vim_free(files[i]);
3829 files[i] = p;
3830 }
3831 }
3832 }
3833}
3834
3835/*
3836 * Show all matches for completion on the command line.
3837 * Returns EXPAND_NOTHING when the character that triggered expansion should
3838 * be inserted like a normal character.
3839 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840 static int
3841showmatches(xp, wildmenu)
3842 expand_T *xp;
Bram Moolenaar78a15312009-05-15 19:33:18 +00003843 int wildmenu UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844{
3845#define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m])
3846 int num_files;
3847 char_u **files_found;
3848 int i, j, k;
3849 int maxlen;
3850 int lines;
3851 int columns;
3852 char_u *p;
3853 int lastlen;
3854 int attr;
3855 int showtail;
3856
3857 if (xp->xp_numfiles == -1)
3858 {
3859 set_expand_context(xp);
3860 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos,
3861 &num_files, &files_found);
3862 showtail = expand_showtail(xp);
3863 if (i != EXPAND_OK)
3864 return i;
3865
3866 }
3867 else
3868 {
3869 num_files = xp->xp_numfiles;
3870 files_found = xp->xp_files;
3871 showtail = cmd_showtail;
3872 }
3873
3874#ifdef FEAT_WILDMENU
3875 if (!wildmenu)
3876 {
3877#endif
3878 msg_didany = FALSE; /* lines_left will be set */
3879 msg_start(); /* prepare for paging */
3880 msg_putchar('\n');
3881 out_flush();
3882 cmdline_row = msg_row;
3883 msg_didany = FALSE; /* lines_left will be set again */
3884 msg_start(); /* prepare for paging */
3885#ifdef FEAT_WILDMENU
3886 }
3887#endif
3888
3889 if (got_int)
3890 got_int = FALSE; /* only int. the completion, not the cmd line */
3891#ifdef FEAT_WILDMENU
3892 else if (wildmenu)
3893 win_redr_status_matches(xp, num_files, files_found, 0, showtail);
3894#endif
3895 else
3896 {
3897 /* find the length of the longest file name */
3898 maxlen = 0;
3899 for (i = 0; i < num_files; ++i)
3900 {
3901 if (!showtail && (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003902 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903 || xp->xp_context == EXPAND_BUFFERS))
3904 {
3905 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE);
3906 j = vim_strsize(NameBuff);
3907 }
3908 else
3909 j = vim_strsize(L_SHOWFILE(i));
3910 if (j > maxlen)
3911 maxlen = j;
3912 }
3913
3914 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3915 lines = num_files;
3916 else
3917 {
3918 /* compute the number of columns and lines for the listing */
3919 maxlen += 2; /* two spaces between file names */
3920 columns = ((int)Columns + 2) / maxlen;
3921 if (columns < 1)
3922 columns = 1;
3923 lines = (num_files + columns - 1) / columns;
3924 }
3925
3926 attr = hl_attr(HLF_D); /* find out highlighting for directories */
3927
3928 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3929 {
3930 MSG_PUTS_ATTR(_("tagname"), hl_attr(HLF_T));
3931 msg_clr_eos();
3932 msg_advance(maxlen - 3);
3933 MSG_PUTS_ATTR(_(" kind file\n"), hl_attr(HLF_T));
3934 }
3935
3936 /* list the files line by line */
3937 for (i = 0; i < lines; ++i)
3938 {
3939 lastlen = 999;
3940 for (k = i; k < num_files; k += lines)
3941 {
3942 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3943 {
3944 msg_outtrans_attr(files_found[k], hl_attr(HLF_D));
3945 p = files_found[k] + STRLEN(files_found[k]) + 1;
3946 msg_advance(maxlen + 1);
3947 msg_puts(p);
3948 msg_advance(maxlen + 3);
3949 msg_puts_long_attr(p + 2, hl_attr(HLF_D));
3950 break;
3951 }
3952 for (j = maxlen - lastlen; --j >= 0; )
3953 msg_putchar(' ');
3954 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003955 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 || xp->xp_context == EXPAND_BUFFERS)
3957 {
Bram Moolenaarb91e59b2010-03-17 19:13:27 +01003958 /* highlight directories */
Bram Moolenaar63fa5262010-03-23 18:06:52 +01003959 if (xp->xp_numfiles != -1)
3960 {
3961 char_u *halved_slash;
3962 char_u *exp_path;
3963
3964 /* Expansion was done before and special characters
3965 * were escaped, need to halve backslashes. Also
3966 * $HOME has been replaced with ~/. */
3967 exp_path = expand_env_save_opt(files_found[k], TRUE);
3968 halved_slash = backslash_halve_save(
3969 exp_path != NULL ? exp_path : files_found[k]);
3970 j = mch_isdir(halved_slash != NULL ? halved_slash
3971 : files_found[k]);
3972 vim_free(exp_path);
3973 vim_free(halved_slash);
3974 }
3975 else
3976 /* Expansion was done here, file names are literal. */
3977 j = mch_isdir(files_found[k]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 if (showtail)
3979 p = L_SHOWFILE(k);
3980 else
3981 {
3982 home_replace(NULL, files_found[k], NameBuff, MAXPATHL,
3983 TRUE);
3984 p = NameBuff;
3985 }
3986 }
3987 else
3988 {
3989 j = FALSE;
3990 p = L_SHOWFILE(k);
3991 }
3992 lastlen = msg_outtrans_attr(p, j ? attr : 0);
3993 }
3994 if (msg_col > 0) /* when not wrapped around */
3995 {
3996 msg_clr_eos();
3997 msg_putchar('\n');
3998 }
3999 out_flush(); /* show one line at a time */
4000 if (got_int)
4001 {
4002 got_int = FALSE;
4003 break;
4004 }
4005 }
4006
4007 /*
4008 * we redraw the command below the lines that we have just listed
4009 * This is a bit tricky, but it saves a lot of screen updating.
4010 */
4011 cmdline_row = msg_row; /* will put it back later */
4012 }
4013
4014 if (xp->xp_numfiles == -1)
4015 FreeWild(num_files, files_found);
4016
4017 return EXPAND_OK;
4018}
4019
4020/*
4021 * Private gettail for showmatches() (and win_redr_status_matches()):
4022 * Find tail of file name path, but ignore trailing "/".
4023 */
4024 char_u *
4025sm_gettail(s)
4026 char_u *s;
4027{
4028 char_u *p;
4029 char_u *t = s;
4030 int had_sep = FALSE;
4031
4032 for (p = s; *p != NUL; )
4033 {
4034 if (vim_ispathsep(*p)
4035#ifdef BACKSLASH_IN_FILENAME
4036 && !rem_backslash(p)
4037#endif
4038 )
4039 had_sep = TRUE;
4040 else if (had_sep)
4041 {
4042 t = p;
4043 had_sep = FALSE;
4044 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004045 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046 }
4047 return t;
4048}
4049
4050/*
4051 * Return TRUE if we only need to show the tail of completion matches.
4052 * When not completing file names or there is a wildcard in the path FALSE is
4053 * returned.
4054 */
4055 static int
4056expand_showtail(xp)
4057 expand_T *xp;
4058{
4059 char_u *s;
4060 char_u *end;
4061
4062 /* When not completing file names a "/" may mean something different. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004063 if (xp->xp_context != EXPAND_FILES
4064 && xp->xp_context != EXPAND_SHELLCMD
4065 && xp->xp_context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 return FALSE;
4067
4068 end = gettail(xp->xp_pattern);
4069 if (end == xp->xp_pattern) /* there is no path separator */
4070 return FALSE;
4071
4072 for (s = xp->xp_pattern; s < end; s++)
4073 {
4074 /* Skip escaped wildcards. Only when the backslash is not a path
4075 * separator, on DOS the '*' "path\*\file" must not be skipped. */
4076 if (rem_backslash(s))
4077 ++s;
4078 else if (vim_strchr((char_u *)"*?[", *s) != NULL)
4079 return FALSE;
4080 }
4081 return TRUE;
4082}
4083
4084/*
4085 * Prepare a string for expansion.
4086 * When expanding file names: The string will be used with expand_wildcards().
4087 * Copy the file name into allocated memory and add a '*' at the end.
4088 * When expanding other names: The string will be used with regcomp(). Copy
4089 * the name into allocated memory and prepend "^".
4090 */
4091 char_u *
4092addstar(fname, len, context)
4093 char_u *fname;
4094 int len;
4095 int context; /* EXPAND_FILES etc. */
4096{
4097 char_u *retval;
4098 int i, j;
4099 int new_len;
4100 char_u *tail;
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004101 int ends_in_star;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004103 if (context != EXPAND_FILES
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004104 && context != EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004105 && context != EXPAND_SHELLCMD
4106 && context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 {
4108 /*
4109 * Matching will be done internally (on something other than files).
4110 * So we convert the file-matching-type wildcards into our kind for
4111 * use with vim_regcomp(). First work out how long it will be:
4112 */
4113
4114 /* For help tags the translation is done in find_help_tags().
4115 * For a tag pattern starting with "/" no translation is needed. */
4116 if (context == EXPAND_HELP
4117 || context == EXPAND_COLORS
4118 || context == EXPAND_COMPILER
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004119 || context == EXPAND_FILETYPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120 || (context == EXPAND_TAGS && fname[0] == '/'))
4121 retval = vim_strnsave(fname, len);
4122 else
4123 {
4124 new_len = len + 2; /* +2 for '^' at start, NUL at end */
4125 for (i = 0; i < len; i++)
4126 {
4127 if (fname[i] == '*' || fname[i] == '~')
4128 new_len++; /* '*' needs to be replaced by ".*"
4129 '~' needs to be replaced by "\~" */
4130
4131 /* Buffer names are like file names. "." should be literal */
4132 if (context == EXPAND_BUFFERS && fname[i] == '.')
4133 new_len++; /* "." becomes "\." */
4134
4135 /* Custom expansion takes care of special things, match
4136 * backslashes literally (perhaps also for other types?) */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004137 if ((context == EXPAND_USER_DEFINED
4138 || context == EXPAND_USER_LIST) && fname[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139 new_len++; /* '\' becomes "\\" */
4140 }
4141 retval = alloc(new_len);
4142 if (retval != NULL)
4143 {
4144 retval[0] = '^';
4145 j = 1;
4146 for (i = 0; i < len; i++, j++)
4147 {
4148 /* Skip backslash. But why? At least keep it for custom
4149 * expansion. */
4150 if (context != EXPAND_USER_DEFINED
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004151 && context != EXPAND_USER_LIST
4152 && fname[i] == '\\'
4153 && ++i == len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154 break;
4155
4156 switch (fname[i])
4157 {
4158 case '*': retval[j++] = '.';
4159 break;
4160 case '~': retval[j++] = '\\';
4161 break;
4162 case '?': retval[j] = '.';
4163 continue;
4164 case '.': if (context == EXPAND_BUFFERS)
4165 retval[j++] = '\\';
4166 break;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004167 case '\\': if (context == EXPAND_USER_DEFINED
4168 || context == EXPAND_USER_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 retval[j++] = '\\';
4170 break;
4171 }
4172 retval[j] = fname[i];
4173 }
4174 retval[j] = NUL;
4175 }
4176 }
4177 }
4178 else
4179 {
4180 retval = alloc(len + 4);
4181 if (retval != NULL)
4182 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004183 vim_strncpy(retval, fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184
4185 /*
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004186 * Don't add a star to *, ~, ~user, $var or `cmd`.
4187 * * would become **, which walks the whole tree.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188 * ~ would be at the start of the file name, but not the tail.
4189 * $ could be anywhere in the tail.
4190 * ` could be anywhere in the file name.
Bram Moolenaar066b6222008-01-04 14:17:47 +00004191 * When the name ends in '$' don't add a star, remove the '$'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192 */
4193 tail = gettail(retval);
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004194 ends_in_star = (len > 0 && retval[len - 1] == '*');
4195#ifndef BACKSLASH_IN_FILENAME
4196 for (i = len - 2; i >= 0; --i)
4197 {
4198 if (retval[i] != '\\')
4199 break;
4200 ends_in_star = !ends_in_star;
4201 }
4202#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004203 if ((*retval != '~' || tail != retval)
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004204 && !ends_in_star
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205 && vim_strchr(tail, '$') == NULL
4206 && vim_strchr(retval, '`') == NULL)
4207 retval[len++] = '*';
Bram Moolenaar066b6222008-01-04 14:17:47 +00004208 else if (len > 0 && retval[len - 1] == '$')
4209 --len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210 retval[len] = NUL;
4211 }
4212 }
4213 return retval;
4214}
4215
4216/*
4217 * Must parse the command line so far to work out what context we are in.
4218 * Completion can then be done based on that context.
4219 * This routine sets the variables:
4220 * xp->xp_pattern The start of the pattern to be expanded within
4221 * the command line (ends at the cursor).
4222 * xp->xp_context The type of thing to expand. Will be one of:
4223 *
4224 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on
4225 * the command line, like an unknown command. Caller
4226 * should beep.
4227 * EXPAND_NOTHING Unrecognised context for completion, use char like
4228 * a normal char, rather than for completion. eg
4229 * :s/^I/
4230 * EXPAND_COMMANDS Cursor is still touching the command, so complete
4231 * it.
4232 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands.
4233 * EXPAND_FILES After command with XFILE set, or after setting
4234 * with P_EXPAND set. eg :e ^I, :w>>^I
4235 * EXPAND_DIRECTORIES In some cases this is used instead of the latter
4236 * when we know only directories are of interest. eg
4237 * :set dir=^I
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004238 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 * EXPAND_SETTINGS Complete variable names. eg :set d^I
4240 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I
4241 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I
4242 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect
4243 * EXPAND_HELP Complete tags from the file 'helpfile'/tags
4244 * EXPAND_EVENTS Complete event names
4245 * EXPAND_SYNTAX Complete :syntax command arguments
4246 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names
4247 * EXPAND_AUGROUP Complete autocommand group names
4248 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I
4249 * EXPAND_MAPPINGS Complete mapping and abbreviation names,
4250 * eg :unmap a^I , :cunab x^I
4251 * EXPAND_FUNCTIONS Complete internal or user defined function names,
4252 * eg :call sub^I
4253 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I
4254 * EXPAND_EXPRESSION Complete internal or user defined function/variable
4255 * names in expressions, eg :while s^I
4256 * EXPAND_ENV_VARS Complete environment variable names
4257 */
4258 static void
4259set_expand_context(xp)
4260 expand_T *xp;
4261{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004262 /* only expansion for ':', '>' and '=' command-lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 if (ccline.cmdfirstc != ':'
4264#ifdef FEAT_EVAL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004265 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '='
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004266 && !ccline.input_fn
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267#endif
4268 )
4269 {
4270 xp->xp_context = EXPAND_NOTHING;
4271 return;
4272 }
4273 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos);
4274}
4275
4276 void
4277set_cmd_context(xp, str, len, col)
4278 expand_T *xp;
4279 char_u *str; /* start of command line */
4280 int len; /* length of command line (excl. NUL) */
4281 int col; /* position of cursor */
4282{
4283 int old_char = NUL;
4284 char_u *nextcomm;
4285
4286 /*
4287 * Avoid a UMR warning from Purify, only save the character if it has been
4288 * written before.
4289 */
4290 if (col < len)
4291 old_char = str[col];
4292 str[col] = NUL;
4293 nextcomm = str;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004294
4295#ifdef FEAT_EVAL
4296 if (ccline.cmdfirstc == '=')
Bram Moolenaar4f688582007-07-24 12:34:30 +00004297 {
4298# ifdef FEAT_CMDL_COMPL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004299 /* pass CMD_SIZE because there is no real command */
4300 set_context_for_expression(xp, str, CMD_SIZE);
Bram Moolenaar4f688582007-07-24 12:34:30 +00004301# endif
4302 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004303 else if (ccline.input_fn)
4304 {
4305 xp->xp_context = ccline.xp_context;
4306 xp->xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004307# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004308 xp->xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004309# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004310 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004311 else
4312#endif
4313 while (nextcomm != NULL)
4314 nextcomm = set_one_cmd_context(xp, nextcomm);
4315
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316 str[col] = old_char;
4317}
4318
4319/*
4320 * Expand the command line "str" from context "xp".
4321 * "xp" must have been set by set_cmd_context().
4322 * xp->xp_pattern points into "str", to where the text that is to be expanded
4323 * starts.
4324 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the
4325 * cursor.
4326 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the
4327 * key that triggered expansion literally.
4328 * Returns EXPAND_OK otherwise.
4329 */
4330 int
4331expand_cmdline(xp, str, col, matchcount, matches)
4332 expand_T *xp;
4333 char_u *str; /* start of command line */
4334 int col; /* position of cursor */
4335 int *matchcount; /* return: nr of matches */
4336 char_u ***matches; /* return: array of pointers to matches */
4337{
4338 char_u *file_str = NULL;
4339
4340 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
4341 {
4342 beep_flush();
4343 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */
4344 }
4345 if (xp->xp_context == EXPAND_NOTHING)
4346 {
4347 /* Caller can use the character as a normal char instead */
4348 return EXPAND_NOTHING;
4349 }
4350
4351 /* add star to file name, or convert to regexp if not exp. files. */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004352 xp->xp_pattern_len = (int)(str + col - xp->xp_pattern);
4353 file_str = addstar(xp->xp_pattern, xp->xp_pattern_len, xp->xp_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004354 if (file_str == NULL)
4355 return EXPAND_UNSUCCESSFUL;
4356
4357 /* find all files that match the description */
4358 if (ExpandFromContext(xp, file_str, matchcount, matches,
4359 WILD_ADD_SLASH|WILD_SILENT) == FAIL)
4360 {
4361 *matchcount = 0;
4362 *matches = NULL;
4363 }
4364 vim_free(file_str);
4365
4366 return EXPAND_OK;
4367}
4368
4369#ifdef FEAT_MULTI_LANG
4370/*
4371 * Cleanup matches for help tags: remove "@en" if "en" is the only language.
4372 */
4373static void cleanup_help_tags __ARGS((int num_file, char_u **file));
4374
4375 static void
4376cleanup_help_tags(num_file, file)
4377 int num_file;
4378 char_u **file;
4379{
4380 int i, j;
4381 int len;
4382
4383 for (i = 0; i < num_file; ++i)
4384 {
4385 len = (int)STRLEN(file[i]) - 3;
4386 if (len > 0 && STRCMP(file[i] + len, "@en") == 0)
4387 {
4388 /* Sorting on priority means the same item in another language may
4389 * be anywhere. Search all items for a match up to the "@en". */
4390 for (j = 0; j < num_file; ++j)
4391 if (j != i
4392 && (int)STRLEN(file[j]) == len + 3
4393 && STRNCMP(file[i], file[j], len + 1) == 0)
4394 break;
4395 if (j == num_file)
4396 file[i][len] = NUL;
4397 }
4398 }
4399}
4400#endif
4401
4402/*
4403 * Do the expansion based on xp->xp_context and "pat".
4404 */
4405 static int
4406ExpandFromContext(xp, pat, num_file, file, options)
4407 expand_T *xp;
4408 char_u *pat;
4409 int *num_file;
4410 char_u ***file;
4411 int options;
4412{
4413#ifdef FEAT_CMDL_COMPL
4414 regmatch_T regmatch;
4415#endif
4416 int ret;
4417 int flags;
4418
4419 flags = EW_DIR; /* include directories */
4420 if (options & WILD_LIST_NOTFOUND)
4421 flags |= EW_NOTFOUND;
4422 if (options & WILD_ADD_SLASH)
4423 flags |= EW_ADDSLASH;
4424 if (options & WILD_KEEP_ALL)
4425 flags |= EW_KEEPALL;
4426 if (options & WILD_SILENT)
4427 flags |= EW_SILENT;
4428
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004429 if (xp->xp_context == EXPAND_FILES
4430 || xp->xp_context == EXPAND_DIRECTORIES
4431 || xp->xp_context == EXPAND_FILES_IN_PATH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432 {
4433 /*
4434 * Expand file or directory names.
4435 */
4436 int free_pat = FALSE;
4437 int i;
4438
4439 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4440 * space */
4441 if (xp->xp_backslash != XP_BS_NONE)
4442 {
4443 free_pat = TRUE;
4444 pat = vim_strsave(pat);
4445 for (i = 0; pat[i]; ++i)
4446 if (pat[i] == '\\')
4447 {
4448 if (xp->xp_backslash == XP_BS_THREE
4449 && pat[i + 1] == '\\'
4450 && pat[i + 2] == '\\'
4451 && pat[i + 3] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004452 STRMOVE(pat + i, pat + i + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 if (xp->xp_backslash == XP_BS_ONE
4454 && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004455 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456 }
4457 }
4458
4459 if (xp->xp_context == EXPAND_FILES)
4460 flags |= EW_FILE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004461 else if (xp->xp_context == EXPAND_FILES_IN_PATH)
4462 flags |= (EW_FILE | EW_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 else
4464 flags = (flags | EW_DIR) & ~EW_FILE;
Bram Moolenaard7834d32009-12-02 16:14:36 +00004465 /* Expand wildcards, supporting %:h and the like. */
4466 ret = expand_wildcards_eval(&pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 if (free_pat)
4468 vim_free(pat);
4469 return ret;
4470 }
4471
4472 *file = (char_u **)"";
4473 *num_file = 0;
4474 if (xp->xp_context == EXPAND_HELP)
4475 {
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00004476 /* With an empty argument we would get all the help tags, which is
4477 * very slow. Get matches for "help" instead. */
4478 if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat,
4479 num_file, file, FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480 {
4481#ifdef FEAT_MULTI_LANG
4482 cleanup_help_tags(*num_file, *file);
4483#endif
4484 return OK;
4485 }
4486 return FAIL;
4487 }
4488
4489#ifndef FEAT_CMDL_COMPL
4490 return FAIL;
4491#else
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004492 if (xp->xp_context == EXPAND_SHELLCMD)
4493 return expand_shellcmd(pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 if (xp->xp_context == EXPAND_OLD_SETTING)
4495 return ExpandOldSetting(num_file, file);
4496 if (xp->xp_context == EXPAND_BUFFERS)
4497 return ExpandBufnames(pat, num_file, file, options);
4498 if (xp->xp_context == EXPAND_TAGS
4499 || xp->xp_context == EXPAND_TAGS_LISTFILES)
4500 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file);
4501 if (xp->xp_context == EXPAND_COLORS)
4502 return ExpandRTDir(pat, num_file, file, "colors");
4503 if (xp->xp_context == EXPAND_COMPILER)
4504 return ExpandRTDir(pat, num_file, file, "compiler");
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004505 if (xp->xp_context == EXPAND_FILETYPE)
4506 return ExpandRTDir(pat, num_file, file, "syntax");
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004507# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4508 if (xp->xp_context == EXPAND_USER_LIST)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004509 return ExpandUserList(xp, num_file, file);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004510# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004511
4512 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4513 if (regmatch.regprog == NULL)
4514 return FAIL;
4515
4516 /* set ignore-case according to p_ic, p_scs and pat */
4517 regmatch.rm_ic = ignorecase(pat);
4518
4519 if (xp->xp_context == EXPAND_SETTINGS
4520 || xp->xp_context == EXPAND_BOOL_SETTINGS)
4521 ret = ExpandSettings(xp, &regmatch, num_file, file);
4522 else if (xp->xp_context == EXPAND_MAPPINGS)
4523 ret = ExpandMappings(&regmatch, num_file, file);
4524# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4525 else if (xp->xp_context == EXPAND_USER_DEFINED)
4526 ret = ExpandUserDefined(xp, &regmatch, num_file, file);
4527# endif
4528 else
4529 {
4530 static struct expgen
4531 {
4532 int context;
4533 char_u *((*func)__ARGS((expand_T *, int)));
4534 int ic;
4535 } tab[] =
4536 {
4537 {EXPAND_COMMANDS, get_command_name, FALSE},
Bram Moolenaar42b4dda2010-03-02 15:56:05 +01004538 {EXPAND_BEHAVE, get_behave_arg, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539#ifdef FEAT_USR_CMDS
4540 {EXPAND_USER_COMMANDS, get_user_commands, FALSE},
4541 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE},
4542 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE},
4543 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE},
4544#endif
4545#ifdef FEAT_EVAL
4546 {EXPAND_USER_VARS, get_user_var_name, FALSE},
4547 {EXPAND_FUNCTIONS, get_function_name, FALSE},
4548 {EXPAND_USER_FUNC, get_user_func_name, FALSE},
4549 {EXPAND_EXPRESSION, get_expr_name, FALSE},
4550#endif
4551#ifdef FEAT_MENU
4552 {EXPAND_MENUS, get_menu_name, FALSE},
4553 {EXPAND_MENUNAMES, get_menu_names, FALSE},
4554#endif
4555#ifdef FEAT_SYN_HL
4556 {EXPAND_SYNTAX, get_syntax_name, TRUE},
4557#endif
4558 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE},
4559#ifdef FEAT_AUTOCMD
4560 {EXPAND_EVENTS, get_event_name, TRUE},
4561 {EXPAND_AUGROUP, get_augroup_name, TRUE},
4562#endif
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004563#ifdef FEAT_CSCOPE
4564 {EXPAND_CSCOPE, get_cscope_name, TRUE},
4565#endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004566#ifdef FEAT_SIGNS
4567 {EXPAND_SIGN, get_sign_name, TRUE},
4568#endif
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004569#ifdef FEAT_PROFILE
4570 {EXPAND_PROFILE, get_profile_name, TRUE},
4571#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
4573 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
4574 {EXPAND_LANGUAGE, get_lang_arg, TRUE},
4575#endif
4576 {EXPAND_ENV_VARS, get_env_name, TRUE},
4577 };
4578 int i;
4579
4580 /*
4581 * Find a context in the table and call the ExpandGeneric() with the
4582 * right function to do the expansion.
4583 */
4584 ret = FAIL;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00004585 for (i = 0; i < (int)(sizeof(tab) / sizeof(struct expgen)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586 if (xp->xp_context == tab[i].context)
4587 {
4588 if (tab[i].ic)
4589 regmatch.rm_ic = TRUE;
4590 ret = ExpandGeneric(xp, &regmatch, num_file, file, tab[i].func);
4591 break;
4592 }
4593 }
4594
4595 vim_free(regmatch.regprog);
4596
4597 return ret;
4598#endif /* FEAT_CMDL_COMPL */
4599}
4600
4601#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4602/*
4603 * Expand a list of names.
4604 *
4605 * Generic function for command line completion. It calls a function to
4606 * obtain strings, one by one. The strings are matched against a regexp
4607 * program. Matching strings are copied into an array, which is returned.
4608 *
4609 * Returns OK when no problems encountered, FAIL for error (out of memory).
4610 */
4611 int
4612ExpandGeneric(xp, regmatch, num_file, file, func)
4613 expand_T *xp;
4614 regmatch_T *regmatch;
4615 int *num_file;
4616 char_u ***file;
4617 char_u *((*func)__ARGS((expand_T *, int)));
4618 /* returns a string from the list */
4619{
4620 int i;
4621 int count = 0;
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004622 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 char_u *str;
4624
4625 /* do this loop twice:
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004626 * round == 0: count the number of matching names
4627 * round == 1: copy the matching names into allocated memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628 */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004629 for (round = 0; round <= 1; ++round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630 {
4631 for (i = 0; ; ++i)
4632 {
4633 str = (*func)(xp, i);
4634 if (str == NULL) /* end of list */
4635 break;
4636 if (*str == NUL) /* skip empty strings */
4637 continue;
4638
4639 if (vim_regexec(regmatch, str, (colnr_T)0))
4640 {
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004641 if (round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642 {
4643 str = vim_strsave_escaped(str, (char_u *)" \t\\.");
4644 (*file)[count] = str;
4645#ifdef FEAT_MENU
4646 if (func == get_menu_names && str != NULL)
4647 {
4648 /* test for separator added by get_menu_names() */
4649 str += STRLEN(str) - 1;
4650 if (*str == '\001')
4651 *str = '.';
4652 }
4653#endif
4654 }
4655 ++count;
4656 }
4657 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004658 if (round == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659 {
4660 if (count == 0)
4661 return OK;
4662 *num_file = count;
4663 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
4664 if (*file == NULL)
4665 {
4666 *file = (char_u **)"";
4667 return FAIL;
4668 }
4669 count = 0;
4670 }
4671 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004672
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004673 /* Sort the results. Keep menu's in the specified order. */
4674 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS)
4675 sort_strings(*file, *num_file);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004676
Bram Moolenaar4f688582007-07-24 12:34:30 +00004677#ifdef FEAT_CMDL_COMPL
4678 /* Reset the variables used for special highlight names expansion, so that
4679 * they don't show up when getting normal highlight names by ID. */
4680 reset_expand_highlight();
4681#endif
4682
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683 return OK;
4684}
4685
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004686/*
4687 * Complete a shell command.
4688 * Returns FAIL or OK;
4689 */
4690 static int
4691expand_shellcmd(filepat, num_file, file, flagsarg)
4692 char_u *filepat; /* pattern to match with command names */
4693 int *num_file; /* return: number of matches */
4694 char_u ***file; /* return: array with matches */
4695 int flagsarg; /* EW_ flags */
4696{
4697 char_u *pat;
4698 int i;
4699 char_u *path;
4700 int mustfree = FALSE;
4701 garray_T ga;
4702 char_u *buf = alloc(MAXPATHL);
4703 size_t l;
4704 char_u *s, *e;
4705 int flags = flagsarg;
4706 int ret;
4707
4708 if (buf == NULL)
4709 return FAIL;
4710
4711 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4712 * space */
4713 pat = vim_strsave(filepat);
4714 for (i = 0; pat[i]; ++i)
4715 if (pat[i] == '\\' && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004716 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004717
4718 flags |= EW_FILE | EW_EXEC;
4719
4720 /* For an absolute name we don't use $PATH. */
Bram Moolenaar68c31742006-09-02 15:54:18 +00004721 if (mch_isFullName(pat))
4722 path = (char_u *)" ";
4723 else if ((pat[0] == '.' && (vim_ispathsep(pat[1])
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004724 || (pat[1] == '.' && vim_ispathsep(pat[2])))))
4725 path = (char_u *)".";
4726 else
4727 path = vim_getenv((char_u *)"PATH", &mustfree);
4728
4729 /*
4730 * Go over all directories in $PATH. Expand matches in that directory and
4731 * collect them in "ga".
4732 */
4733 ga_init2(&ga, (int)sizeof(char *), 10);
4734 for (s = path; *s != NUL; s = e)
4735 {
Bram Moolenaar68c31742006-09-02 15:54:18 +00004736 if (*s == ' ')
4737 ++s; /* Skip space used for absolute path name. */
4738
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004739#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
4740 e = vim_strchr(s, ';');
4741#else
4742 e = vim_strchr(s, ':');
4743#endif
4744 if (e == NULL)
4745 e = s + STRLEN(s);
4746
4747 l = e - s;
4748 if (l > MAXPATHL - 5)
4749 break;
4750 vim_strncpy(buf, s, l);
4751 add_pathsep(buf);
4752 l = STRLEN(buf);
4753 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l);
4754
4755 /* Expand matches in one directory of $PATH. */
4756 ret = expand_wildcards(1, &buf, num_file, file, flags);
4757 if (ret == OK)
4758 {
4759 if (ga_grow(&ga, *num_file) == FAIL)
4760 FreeWild(*num_file, *file);
4761 else
4762 {
4763 for (i = 0; i < *num_file; ++i)
4764 {
4765 s = (*file)[i];
4766 if (STRLEN(s) > l)
4767 {
4768 /* Remove the path again. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004769 STRMOVE(s, s + l);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004770 ((char_u **)ga.ga_data)[ga.ga_len++] = s;
4771 }
4772 else
4773 vim_free(s);
4774 }
4775 vim_free(*file);
4776 }
4777 }
4778 if (*e != NUL)
4779 ++e;
4780 }
4781 *file = ga.ga_data;
4782 *num_file = ga.ga_len;
4783
4784 vim_free(buf);
4785 vim_free(pat);
4786 if (mustfree)
4787 vim_free(path);
4788 return OK;
4789}
4790
4791
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00004793static void * call_user_expand_func __ARGS((void *(*user_expand_func) __ARGS((char_u *, int, char_u **, int)), expand_T *xp, int *num_file, char_u ***file));
4794
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795/*
Bram Moolenaar21669c02008-01-18 12:16:16 +00004796 * Call "user_expand_func()" to invoke a user defined VimL function and return
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004797 * the result (either a string or a List).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798 */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004799 static void *
4800call_user_expand_func(user_expand_func, xp, num_file, file)
4801 void *(*user_expand_func) __ARGS((char_u *, int, char_u **, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802 expand_T *xp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803 int *num_file;
4804 char_u ***file;
4805{
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004806 char_u keep;
4807 char_u num[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 char_u *args[3];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 int save_current_SID = current_SID;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004810 void *ret;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004811 struct cmdline_info save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812
4813 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0')
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004814 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815 *num_file = 0;
4816 *file = NULL;
4817
Bram Moolenaar21669c02008-01-18 12:16:16 +00004818 if (ccline.cmdbuff == NULL)
4819 {
4820 /* Completion from Insert mode, pass fake arguments. */
4821 keep = 0;
Bram Moolenaar9a31f882008-01-22 11:44:47 +00004822 sprintf((char *)num, "%d", (int)STRLEN(xp->xp_pattern));
Bram Moolenaar21669c02008-01-18 12:16:16 +00004823 args[1] = xp->xp_pattern;
4824 }
4825 else
4826 {
4827 /* Completion on the command line, pass real arguments. */
4828 keep = ccline.cmdbuff[ccline.cmdlen];
4829 ccline.cmdbuff[ccline.cmdlen] = 0;
4830 sprintf((char *)num, "%d", ccline.cmdpos);
4831 args[1] = ccline.cmdbuff;
4832 }
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004833 args[0] = vim_strnsave(xp->xp_pattern, xp->xp_pattern_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834 args[2] = num;
4835
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004836 /* Save the cmdline, we don't know what the function may do. */
4837 save_ccline = ccline;
4838 ccline.cmdbuff = NULL;
4839 ccline.cmdprompt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 current_SID = xp->xp_scriptID;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004841
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004842 ret = user_expand_func(xp->xp_arg, 3, args, FALSE);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004843
4844 ccline = save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845 current_SID = save_current_SID;
Bram Moolenaar21669c02008-01-18 12:16:16 +00004846 if (ccline.cmdbuff != NULL)
4847 ccline.cmdbuff[ccline.cmdlen] = keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004848
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004849 vim_free(args[0]);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004850 return ret;
4851}
4852
4853/*
4854 * Expand names with a function defined by the user.
4855 */
4856 static int
4857ExpandUserDefined(xp, regmatch, num_file, file)
4858 expand_T *xp;
4859 regmatch_T *regmatch;
4860 int *num_file;
4861 char_u ***file;
4862{
4863 char_u *retstr;
4864 char_u *s;
4865 char_u *e;
4866 char_u keep;
4867 garray_T ga;
4868
4869 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file);
4870 if (retstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871 return FAIL;
4872
4873 ga_init2(&ga, (int)sizeof(char *), 3);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004874 for (s = retstr; *s != NUL; s = e)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875 {
4876 e = vim_strchr(s, '\n');
4877 if (e == NULL)
4878 e = s + STRLEN(s);
4879 keep = *e;
4880 *e = 0;
4881
4882 if (xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0)
4883 {
4884 *e = keep;
4885 if (*e != NUL)
4886 ++e;
4887 continue;
4888 }
4889
4890 if (ga_grow(&ga, 1) == FAIL)
4891 break;
4892
4893 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s));
4894 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004895
4896 *e = keep;
4897 if (*e != NUL)
4898 ++e;
4899 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004900 vim_free(retstr);
4901 *file = ga.ga_data;
4902 *num_file = ga.ga_len;
4903 return OK;
4904}
4905
4906/*
4907 * Expand names with a list returned by a function defined by the user.
4908 */
4909 static int
4910ExpandUserList(xp, num_file, file)
4911 expand_T *xp;
4912 int *num_file;
4913 char_u ***file;
4914{
4915 list_T *retlist;
4916 listitem_T *li;
4917 garray_T ga;
4918
4919 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file);
4920 if (retlist == NULL)
4921 return FAIL;
4922
4923 ga_init2(&ga, (int)sizeof(char *), 3);
4924 /* Loop over the items in the list. */
4925 for (li = retlist->lv_first; li != NULL; li = li->li_next)
4926 {
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00004927 if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL)
4928 continue; /* Skip non-string items and empty strings */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004929
4930 if (ga_grow(&ga, 1) == FAIL)
4931 break;
4932
4933 ((char_u **)ga.ga_data)[ga.ga_len] =
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00004934 vim_strsave(li->li_tv.vval.v_string);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004935 ++ga.ga_len;
4936 }
4937 list_unref(retlist);
4938
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 *file = ga.ga_data;
4940 *num_file = ga.ga_len;
4941 return OK;
4942}
4943#endif
4944
4945/*
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004946 * Expand color scheme, compiler or filetype names:
4947 * 'runtimepath'/{dirname}/{pat}.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 */
4949 static int
4950ExpandRTDir(pat, num_file, file, dirname)
4951 char_u *pat;
4952 int *num_file;
4953 char_u ***file;
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004954 char *dirname; /* "colors", "compiler" or "syntax" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955{
4956 char_u *all;
4957 char_u *s;
4958 char_u *e;
4959 garray_T ga;
4960
4961 *num_file = 0;
4962 *file = NULL;
4963 s = alloc((unsigned)(STRLEN(pat) + STRLEN(dirname) + 7));
4964 if (s == NULL)
4965 return FAIL;
4966 sprintf((char *)s, "%s/%s*.vim", dirname, pat);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00004967 all = globpath(p_rtp, s, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 vim_free(s);
4969 if (all == NULL)
4970 return FAIL;
4971
4972 ga_init2(&ga, (int)sizeof(char *), 3);
4973 for (s = all; *s != NUL; s = e)
4974 {
4975 e = vim_strchr(s, '\n');
4976 if (e == NULL)
4977 e = s + STRLEN(s);
4978 if (ga_grow(&ga, 1) == FAIL)
4979 break;
4980 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0)
4981 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004982 for (s = e - 4; s > all; mb_ptr_back(all, s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 if (*s == '\n' || vim_ispathsep(*s))
4984 break;
4985 ++s;
4986 ((char_u **)ga.ga_data)[ga.ga_len] =
4987 vim_strnsave(s, (int)(e - s - 4));
4988 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 }
4990 if (*e != NUL)
4991 ++e;
4992 }
4993 vim_free(all);
4994 *file = ga.ga_data;
4995 *num_file = ga.ga_len;
4996 return OK;
4997}
4998
4999#endif
5000
5001#if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO)
5002/*
5003 * Expand "file" for all comma-separated directories in "path".
5004 * Returns an allocated string with all matches concatenated, separated by
5005 * newlines. Returns NULL for an error or no matches.
5006 */
5007 char_u *
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005008globpath(path, file, expand_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 char_u *path;
5010 char_u *file;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005011 int expand_options;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012{
5013 expand_T xpc;
5014 char_u *buf;
5015 garray_T ga;
5016 int i;
5017 int len;
5018 int num_p;
5019 char_u **p;
5020 char_u *cur = NULL;
5021
5022 buf = alloc(MAXPATHL);
5023 if (buf == NULL)
5024 return NULL;
5025
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005026 ExpandInit(&xpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005028
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 ga_init2(&ga, 1, 100);
5030
5031 /* Loop over all entries in {path}. */
5032 while (*path != NUL)
5033 {
5034 /* Copy one item of the path to buf[] and concatenate the file name. */
5035 copy_option_part(&path, buf, MAXPATHL, ",");
5036 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
5037 {
5038 add_pathsep(buf);
5039 STRCAT(buf, file);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005040 if (ExpandFromContext(&xpc, buf, &num_p, &p,
5041 WILD_SILENT|expand_options) != FAIL && num_p > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005043 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT|expand_options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 for (len = 0, i = 0; i < num_p; ++i)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005045 len += (int)STRLEN(p[i]) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046
5047 /* Concatenate new results to previous ones. */
5048 if (ga_grow(&ga, len) == OK)
5049 {
5050 cur = (char_u *)ga.ga_data + ga.ga_len;
5051 for (i = 0; i < num_p; ++i)
5052 {
5053 STRCPY(cur, p[i]);
5054 cur += STRLEN(p[i]);
5055 *cur++ = '\n';
5056 }
5057 ga.ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 }
5059 FreeWild(num_p, p);
5060 }
5061 }
5062 }
5063 if (cur != NULL)
5064 *--cur = 0; /* Replace trailing newline with NUL */
5065
5066 vim_free(buf);
5067 return (char_u *)ga.ga_data;
5068}
5069
5070#endif
5071
5072#if defined(FEAT_CMDHIST) || defined(PROTO)
5073
5074/*********************************
5075 * Command line history stuff *
5076 *********************************/
5077
5078/*
5079 * Translate a history character to the associated type number.
5080 */
5081 static int
5082hist_char2type(c)
5083 int c;
5084{
5085 if (c == ':')
5086 return HIST_CMD;
5087 if (c == '=')
5088 return HIST_EXPR;
5089 if (c == '@')
5090 return HIST_INPUT;
5091 if (c == '>')
5092 return HIST_DEBUG;
5093 return HIST_SEARCH; /* must be '?' or '/' */
5094}
5095
5096/*
5097 * Table of history names.
5098 * These names are used in :history and various hist...() functions.
5099 * It is sufficient to give the significant prefix of a history name.
5100 */
5101
5102static char *(history_names[]) =
5103{
5104 "cmd",
5105 "search",
5106 "expr",
5107 "input",
5108 "debug",
5109 NULL
5110};
5111
5112/*
5113 * init_history() - Initialize the command line history.
5114 * Also used to re-allocate the history when the size changes.
5115 */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00005116 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117init_history()
5118{
5119 int newlen; /* new length of history table */
5120 histentry_T *temp;
5121 int i;
5122 int j;
5123 int type;
5124
5125 /*
5126 * If size of history table changed, reallocate it
5127 */
5128 newlen = (int)p_hi;
5129 if (newlen != hislen) /* history length changed */
5130 {
5131 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */
5132 {
5133 if (newlen)
5134 {
5135 temp = (histentry_T *)lalloc(
5136 (long_u)(newlen * sizeof(histentry_T)), TRUE);
5137 if (temp == NULL) /* out of memory! */
5138 {
5139 if (type == 0) /* first one: just keep the old length */
5140 {
5141 newlen = hislen;
5142 break;
5143 }
5144 /* Already changed one table, now we can only have zero
5145 * length for all tables. */
5146 newlen = 0;
5147 type = -1;
5148 continue;
5149 }
5150 }
5151 else
5152 temp = NULL;
5153 if (newlen == 0 || temp != NULL)
5154 {
5155 if (hisidx[type] < 0) /* there are no entries yet */
5156 {
5157 for (i = 0; i < newlen; ++i)
5158 {
5159 temp[i].hisnum = 0;
5160 temp[i].hisstr = NULL;
5161 }
5162 }
5163 else if (newlen > hislen) /* array becomes bigger */
5164 {
5165 for (i = 0; i <= hisidx[type]; ++i)
5166 temp[i] = history[type][i];
5167 j = i;
5168 for ( ; i <= newlen - (hislen - hisidx[type]); ++i)
5169 {
5170 temp[i].hisnum = 0;
5171 temp[i].hisstr = NULL;
5172 }
5173 for ( ; j < hislen; ++i, ++j)
5174 temp[i] = history[type][j];
5175 }
5176 else /* array becomes smaller or 0 */
5177 {
5178 j = hisidx[type];
5179 for (i = newlen - 1; ; --i)
5180 {
5181 if (i >= 0) /* copy newest entries */
5182 temp[i] = history[type][j];
5183 else /* remove older entries */
5184 vim_free(history[type][j].hisstr);
5185 if (--j < 0)
5186 j = hislen - 1;
5187 if (j == hisidx[type])
5188 break;
5189 }
5190 hisidx[type] = newlen - 1;
5191 }
5192 vim_free(history[type]);
5193 history[type] = temp;
5194 }
5195 }
5196 hislen = newlen;
5197 }
5198}
5199
5200/*
5201 * Check if command line 'str' is already in history.
5202 * If 'move_to_front' is TRUE, matching entry is moved to end of history.
5203 */
5204 static int
5205in_history(type, str, move_to_front)
5206 int type;
5207 char_u *str;
5208 int move_to_front; /* Move the entry to the front if it exists */
5209{
5210 int i;
5211 int last_i = -1;
5212
5213 if (hisidx[type] < 0)
5214 return FALSE;
5215 i = hisidx[type];
5216 do
5217 {
5218 if (history[type][i].hisstr == NULL)
5219 return FALSE;
5220 if (STRCMP(str, history[type][i].hisstr) == 0)
5221 {
5222 if (!move_to_front)
5223 return TRUE;
5224 last_i = i;
5225 break;
5226 }
5227 if (--i < 0)
5228 i = hislen - 1;
5229 } while (i != hisidx[type]);
5230
5231 if (last_i >= 0)
5232 {
5233 str = history[type][i].hisstr;
5234 while (i != hisidx[type])
5235 {
5236 if (++i >= hislen)
5237 i = 0;
5238 history[type][last_i] = history[type][i];
5239 last_i = i;
5240 }
5241 history[type][i].hisstr = str;
5242 history[type][i].hisnum = ++hisnum[type];
5243 return TRUE;
5244 }
5245 return FALSE;
5246}
5247
5248/*
5249 * Convert history name (from table above) to its HIST_ equivalent.
5250 * When "name" is empty, return "cmd" history.
5251 * Returns -1 for unknown history name.
5252 */
5253 int
5254get_histtype(name)
5255 char_u *name;
5256{
5257 int i;
5258 int len = (int)STRLEN(name);
5259
5260 /* No argument: use current history. */
5261 if (len == 0)
5262 return hist_char2type(ccline.cmdfirstc);
5263
5264 for (i = 0; history_names[i] != NULL; ++i)
5265 if (STRNICMP(name, history_names[i], len) == 0)
5266 return i;
5267
5268 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL)
5269 return hist_char2type(name[0]);
5270
5271 return -1;
5272}
5273
5274static int last_maptick = -1; /* last seen maptick */
5275
5276/*
5277 * Add the given string to the given history. If the string is already in the
5278 * history then it is moved to the front. "histype" may be one of he HIST_
5279 * values.
5280 */
5281 void
5282add_to_history(histype, new_entry, in_map, sep)
5283 int histype;
5284 char_u *new_entry;
5285 int in_map; /* consider maptick when inside a mapping */
5286 int sep; /* separator character used (search hist) */
5287{
5288 histentry_T *hisptr;
5289 int len;
5290
5291 if (hislen == 0) /* no history */
5292 return;
5293
5294 /*
5295 * Searches inside the same mapping overwrite each other, so that only
5296 * the last line is kept. Be careful not to remove a line that was moved
5297 * down, only lines that were added.
5298 */
5299 if (histype == HIST_SEARCH && in_map)
5300 {
5301 if (maptick == last_maptick)
5302 {
5303 /* Current line is from the same mapping, remove it */
5304 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];
5305 vim_free(hisptr->hisstr);
5306 hisptr->hisstr = NULL;
5307 hisptr->hisnum = 0;
5308 --hisnum[histype];
5309 if (--hisidx[HIST_SEARCH] < 0)
5310 hisidx[HIST_SEARCH] = hislen - 1;
5311 }
5312 last_maptick = -1;
5313 }
5314 if (!in_history(histype, new_entry, TRUE))
5315 {
5316 if (++hisidx[histype] == hislen)
5317 hisidx[histype] = 0;
5318 hisptr = &history[histype][hisidx[histype]];
5319 vim_free(hisptr->hisstr);
5320
5321 /* Store the separator after the NUL of the string. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005322 len = (int)STRLEN(new_entry);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323 hisptr->hisstr = vim_strnsave(new_entry, len + 2);
5324 if (hisptr->hisstr != NULL)
5325 hisptr->hisstr[len + 1] = sep;
5326
5327 hisptr->hisnum = ++hisnum[histype];
5328 if (histype == HIST_SEARCH && in_map)
5329 last_maptick = maptick;
5330 }
5331}
5332
5333#if defined(FEAT_EVAL) || defined(PROTO)
5334
5335/*
5336 * Get identifier of newest history entry.
5337 * "histype" may be one of the HIST_ values.
5338 */
5339 int
5340get_history_idx(histype)
5341 int histype;
5342{
5343 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5344 || hisidx[histype] < 0)
5345 return -1;
5346
5347 return history[histype][hisidx[histype]].hisnum;
5348}
5349
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005350static struct cmdline_info *get_ccline_ptr __ARGS((void));
5351
5352/*
5353 * Get pointer to the command line info to use. cmdline_paste() may clear
5354 * ccline and put the previous value in prev_ccline.
5355 */
5356 static struct cmdline_info *
5357get_ccline_ptr()
5358{
5359 if ((State & CMDLINE) == 0)
5360 return NULL;
5361 if (ccline.cmdbuff != NULL)
5362 return &ccline;
5363 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
5364 return &prev_ccline;
5365 return NULL;
5366}
5367
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368/*
5369 * Get the current command line in allocated memory.
5370 * Only works when the command line is being edited.
5371 * Returns NULL when something is wrong.
5372 */
5373 char_u *
5374get_cmdline_str()
5375{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005376 struct cmdline_info *p = get_ccline_ptr();
5377
5378 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005379 return NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005380 return vim_strnsave(p->cmdbuff, p->cmdlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381}
5382
5383/*
5384 * Get the current command line position, counted in bytes.
5385 * Zero is the first position.
5386 * Only works when the command line is being edited.
5387 * Returns -1 when something is wrong.
5388 */
5389 int
5390get_cmdline_pos()
5391{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005392 struct cmdline_info *p = get_ccline_ptr();
5393
5394 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005395 return -1;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005396 return p->cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005397}
5398
5399/*
5400 * Set the command line byte position to "pos". Zero is the first position.
5401 * Only works when the command line is being edited.
5402 * Returns 1 when failed, 0 when OK.
5403 */
5404 int
5405set_cmdline_pos(pos)
5406 int pos;
5407{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005408 struct cmdline_info *p = get_ccline_ptr();
5409
5410 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005411 return 1;
5412
5413 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
5414 * changed the command line. */
5415 if (pos < 0)
5416 new_cmdpos = 0;
5417 else
5418 new_cmdpos = pos;
5419 return 0;
5420}
5421
5422/*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005423 * Get the current command-line type.
Bram Moolenaar1e015462005-09-25 22:16:38 +00005424 * Returns ':' or '/' or '?' or '@' or '>' or '-'
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005425 * Only works when the command line is being edited.
5426 * Returns NUL when something is wrong.
5427 */
5428 int
5429get_cmdline_type()
5430{
5431 struct cmdline_info *p = get_ccline_ptr();
5432
5433 if (p == NULL)
5434 return NUL;
Bram Moolenaar1e015462005-09-25 22:16:38 +00005435 if (p->cmdfirstc == NUL)
5436 return (p->input_fn) ? '@' : '-';
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005437 return p->cmdfirstc;
5438}
5439
5440/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441 * Calculate history index from a number:
5442 * num > 0: seen as identifying number of a history entry
5443 * num < 0: relative position in history wrt newest entry
5444 * "histype" may be one of the HIST_ values.
5445 */
5446 static int
5447calc_hist_idx(histype, num)
5448 int histype;
5449 int num;
5450{
5451 int i;
5452 histentry_T *hist;
5453 int wrapped = FALSE;
5454
5455 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5456 || (i = hisidx[histype]) < 0 || num == 0)
5457 return -1;
5458
5459 hist = history[histype];
5460 if (num > 0)
5461 {
5462 while (hist[i].hisnum > num)
5463 if (--i < 0)
5464 {
5465 if (wrapped)
5466 break;
5467 i += hislen;
5468 wrapped = TRUE;
5469 }
5470 if (hist[i].hisnum == num && hist[i].hisstr != NULL)
5471 return i;
5472 }
5473 else if (-num <= hislen)
5474 {
5475 i += num + 1;
5476 if (i < 0)
5477 i += hislen;
5478 if (hist[i].hisstr != NULL)
5479 return i;
5480 }
5481 return -1;
5482}
5483
5484/*
5485 * Get a history entry by its index.
5486 * "histype" may be one of the HIST_ values.
5487 */
5488 char_u *
5489get_history_entry(histype, idx)
5490 int histype;
5491 int idx;
5492{
5493 idx = calc_hist_idx(histype, idx);
5494 if (idx >= 0)
5495 return history[histype][idx].hisstr;
5496 else
5497 return (char_u *)"";
5498}
5499
5500/*
5501 * Clear all entries of a history.
5502 * "histype" may be one of the HIST_ values.
5503 */
5504 int
5505clr_history(histype)
5506 int histype;
5507{
5508 int i;
5509 histentry_T *hisptr;
5510
5511 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT)
5512 {
5513 hisptr = history[histype];
5514 for (i = hislen; i--;)
5515 {
5516 vim_free(hisptr->hisstr);
5517 hisptr->hisnum = 0;
5518 hisptr++->hisstr = NULL;
5519 }
5520 hisidx[histype] = -1; /* mark history as cleared */
5521 hisnum[histype] = 0; /* reset identifier counter */
5522 return OK;
5523 }
5524 return FAIL;
5525}
5526
5527/*
5528 * Remove all entries matching {str} from a history.
5529 * "histype" may be one of the HIST_ values.
5530 */
5531 int
5532del_history_entry(histype, str)
5533 int histype;
5534 char_u *str;
5535{
5536 regmatch_T regmatch;
5537 histentry_T *hisptr;
5538 int idx;
5539 int i;
5540 int last;
5541 int found = FALSE;
5542
5543 regmatch.regprog = NULL;
5544 regmatch.rm_ic = FALSE; /* always match case */
5545 if (hislen != 0
5546 && histype >= 0
5547 && histype < HIST_COUNT
5548 && *str != NUL
5549 && (idx = hisidx[histype]) >= 0
5550 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING))
5551 != NULL)
5552 {
5553 i = last = idx;
5554 do
5555 {
5556 hisptr = &history[histype][i];
5557 if (hisptr->hisstr == NULL)
5558 break;
5559 if (vim_regexec(&regmatch, hisptr->hisstr, (colnr_T)0))
5560 {
5561 found = TRUE;
5562 vim_free(hisptr->hisstr);
5563 hisptr->hisstr = NULL;
5564 hisptr->hisnum = 0;
5565 }
5566 else
5567 {
5568 if (i != last)
5569 {
5570 history[histype][last] = *hisptr;
5571 hisptr->hisstr = NULL;
5572 hisptr->hisnum = 0;
5573 }
5574 if (--last < 0)
5575 last += hislen;
5576 }
5577 if (--i < 0)
5578 i += hislen;
5579 } while (i != idx);
5580 if (history[histype][idx].hisstr == NULL)
5581 hisidx[histype] = -1;
5582 }
5583 vim_free(regmatch.regprog);
5584 return found;
5585}
5586
5587/*
5588 * Remove an indexed entry from a history.
5589 * "histype" may be one of the HIST_ values.
5590 */
5591 int
5592del_history_idx(histype, idx)
5593 int histype;
5594 int idx;
5595{
5596 int i, j;
5597
5598 i = calc_hist_idx(histype, idx);
5599 if (i < 0)
5600 return FALSE;
5601 idx = hisidx[histype];
5602 vim_free(history[histype][i].hisstr);
5603
5604 /* When deleting the last added search string in a mapping, reset
5605 * last_maptick, so that the last added search string isn't deleted again.
5606 */
5607 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx)
5608 last_maptick = -1;
5609
5610 while (i != idx)
5611 {
5612 j = (i + 1) % hislen;
5613 history[histype][i] = history[histype][j];
5614 i = j;
5615 }
5616 history[histype][i].hisstr = NULL;
5617 history[histype][i].hisnum = 0;
5618 if (--i < 0)
5619 i += hislen;
5620 hisidx[histype] = i;
5621 return TRUE;
5622}
5623
5624#endif /* FEAT_EVAL */
5625
5626#if defined(FEAT_CRYPT) || defined(PROTO)
5627/*
5628 * Very specific function to remove the value in ":set key=val" from the
5629 * history.
5630 */
5631 void
5632remove_key_from_history()
5633{
5634 char_u *p;
5635 int i;
5636
5637 i = hisidx[HIST_CMD];
5638 if (i < 0)
5639 return;
5640 p = history[HIST_CMD][i].hisstr;
5641 if (p != NULL)
5642 for ( ; *p; ++p)
5643 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3]))
5644 {
5645 p = vim_strchr(p + 3, '=');
5646 if (p == NULL)
5647 break;
5648 ++p;
5649 for (i = 0; p[i] && !vim_iswhite(p[i]); ++i)
5650 if (p[i] == '\\' && p[i + 1])
5651 ++i;
Bram Moolenaar446cb832008-06-24 21:56:24 +00005652 STRMOVE(p, p + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005653 --p;
5654 }
5655}
5656#endif
5657
5658#endif /* FEAT_CMDHIST */
5659
5660#if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO)
5661/*
5662 * Get indices "num1,num2" that specify a range within a list (not a range of
5663 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
5664 * Returns OK if parsed successfully, otherwise FAIL.
5665 */
5666 int
5667get_list_range(str, num1, num2)
5668 char_u **str;
5669 int *num1;
5670 int *num2;
5671{
5672 int len;
5673 int first = FALSE;
5674 long num;
5675
5676 *str = skipwhite(*str);
5677 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
5678 {
5679 vim_str2nr(*str, NULL, &len, FALSE, FALSE, &num, NULL);
5680 *str += len;
5681 *num1 = (int)num;
5682 first = TRUE;
5683 }
5684 *str = skipwhite(*str);
5685 if (**str == ',') /* parse "to" part of range */
5686 {
5687 *str = skipwhite(*str + 1);
5688 vim_str2nr(*str, NULL, &len, FALSE, FALSE, &num, NULL);
5689 if (len > 0)
5690 {
5691 *num2 = (int)num;
5692 *str = skipwhite(*str + len);
5693 }
5694 else if (!first) /* no number given at all */
5695 return FAIL;
5696 }
5697 else if (first) /* only one number given */
5698 *num2 = *num1;
5699 return OK;
5700}
5701#endif
5702
5703#if defined(FEAT_CMDHIST) || defined(PROTO)
5704/*
5705 * :history command - print a history
5706 */
5707 void
5708ex_history(eap)
5709 exarg_T *eap;
5710{
5711 histentry_T *hist;
5712 int histype1 = HIST_CMD;
5713 int histype2 = HIST_CMD;
5714 int hisidx1 = 1;
5715 int hisidx2 = -1;
5716 int idx;
5717 int i, j, k;
5718 char_u *end;
5719 char_u *arg = eap->arg;
5720
5721 if (hislen == 0)
5722 {
5723 MSG(_("'history' option is zero"));
5724 return;
5725 }
5726
5727 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ','))
5728 {
5729 end = arg;
5730 while (ASCII_ISALPHA(*end)
5731 || vim_strchr((char_u *)":=@>/?", *end) != NULL)
5732 end++;
5733 i = *end;
5734 *end = NUL;
5735 histype1 = get_histtype(arg);
5736 if (histype1 == -1)
5737 {
Bram Moolenaarb9c1e962009-04-22 11:52:33 +00005738 if (STRNICMP(arg, "all", STRLEN(arg)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739 {
5740 histype1 = 0;
5741 histype2 = HIST_COUNT-1;
5742 }
5743 else
5744 {
5745 *end = i;
5746 EMSG(_(e_trailing));
5747 return;
5748 }
5749 }
5750 else
5751 histype2 = histype1;
5752 *end = i;
5753 }
5754 else
5755 end = arg;
5756 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL)
5757 {
5758 EMSG(_(e_trailing));
5759 return;
5760 }
5761
5762 for (; !got_int && histype1 <= histype2; ++histype1)
5763 {
5764 STRCPY(IObuff, "\n # ");
5765 STRCAT(STRCAT(IObuff, history_names[histype1]), " history");
5766 MSG_PUTS_TITLE(IObuff);
5767 idx = hisidx[histype1];
5768 hist = history[histype1];
5769 j = hisidx1;
5770 k = hisidx2;
5771 if (j < 0)
5772 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum;
5773 if (k < 0)
5774 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum;
5775 if (idx >= 0 && j <= k)
5776 for (i = idx + 1; !got_int; ++i)
5777 {
5778 if (i == hislen)
5779 i = 0;
5780 if (hist[i].hisstr != NULL
5781 && hist[i].hisnum >= j && hist[i].hisnum <= k)
5782 {
5783 msg_putchar('\n');
5784 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ',
5785 hist[i].hisnum);
5786 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10)
5787 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff),
5788 (int)Columns - 10);
5789 else
5790 STRCAT(IObuff, hist[i].hisstr);
5791 msg_outtrans(IObuff);
5792 out_flush();
5793 }
5794 if (i == idx)
5795 break;
5796 }
5797 }
5798}
5799#endif
5800
5801#if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO)
5802static char_u **viminfo_history[HIST_COUNT] = {NULL, NULL, NULL, NULL};
5803static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0};
5804static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0};
5805static int viminfo_add_at_front = FALSE;
5806
5807static int hist_type2char __ARGS((int type, int use_question));
5808
5809/*
5810 * Translate a history type number to the associated character.
5811 */
5812 static int
5813hist_type2char(type, use_question)
5814 int type;
5815 int use_question; /* use '?' instead of '/' */
5816{
5817 if (type == HIST_CMD)
5818 return ':';
5819 if (type == HIST_SEARCH)
5820 {
5821 if (use_question)
5822 return '?';
5823 else
5824 return '/';
5825 }
5826 if (type == HIST_EXPR)
5827 return '=';
5828 return '@';
5829}
5830
5831/*
5832 * Prepare for reading the history from the viminfo file.
5833 * This allocates history arrays to store the read history lines.
5834 */
5835 void
5836prepare_viminfo_history(asklen)
5837 int asklen;
5838{
5839 int i;
5840 int num;
5841 int type;
5842 int len;
5843
5844 init_history();
5845 viminfo_add_at_front = (asklen != 0);
5846 if (asklen > hislen)
5847 asklen = hislen;
5848
5849 for (type = 0; type < HIST_COUNT; ++type)
5850 {
5851 /*
5852 * Count the number of empty spaces in the history list. If there are
5853 * more spaces available than we request, then fill them up.
5854 */
5855 for (i = 0, num = 0; i < hislen; i++)
5856 if (history[type][i].hisstr == NULL)
5857 num++;
5858 len = asklen;
5859 if (num > len)
5860 len = num;
5861 if (len <= 0)
5862 viminfo_history[type] = NULL;
5863 else
5864 viminfo_history[type] =
5865 (char_u **)lalloc((long_u)(len * sizeof(char_u *)), FALSE);
5866 if (viminfo_history[type] == NULL)
5867 len = 0;
5868 viminfo_hislen[type] = len;
5869 viminfo_hisidx[type] = 0;
5870 }
5871}
5872
5873/*
5874 * Accept a line from the viminfo, store it in the history array when it's
5875 * new.
5876 */
5877 int
5878read_viminfo_history(virp)
5879 vir_T *virp;
5880{
5881 int type;
5882 long_u len;
5883 char_u *val;
5884 char_u *p;
5885
5886 type = hist_char2type(virp->vir_line[0]);
5887 if (viminfo_hisidx[type] < viminfo_hislen[type])
5888 {
5889 val = viminfo_readstring(virp, 1, TRUE);
5890 if (val != NULL && *val != NUL)
5891 {
5892 if (!in_history(type, val + (type == HIST_SEARCH),
5893 viminfo_add_at_front))
5894 {
5895 /* Need to re-allocate to append the separator byte. */
5896 len = STRLEN(val);
5897 p = lalloc(len + 2, TRUE);
5898 if (p != NULL)
5899 {
5900 if (type == HIST_SEARCH)
5901 {
5902 /* Search entry: Move the separator from the first
5903 * column to after the NUL. */
5904 mch_memmove(p, val + 1, (size_t)len);
5905 p[len] = (*val == ' ' ? NUL : *val);
5906 }
5907 else
5908 {
5909 /* Not a search entry: No separator in the viminfo
5910 * file, add a NUL separator. */
5911 mch_memmove(p, val, (size_t)len + 1);
5912 p[len + 1] = NUL;
5913 }
5914 viminfo_history[type][viminfo_hisidx[type]++] = p;
5915 }
5916 }
5917 }
5918 vim_free(val);
5919 }
5920 return viminfo_readline(virp);
5921}
5922
5923 void
5924finish_viminfo_history()
5925{
5926 int idx;
5927 int i;
5928 int type;
5929
5930 for (type = 0; type < HIST_COUNT; ++type)
5931 {
5932 if (history[type] == NULL)
5933 return;
5934 idx = hisidx[type] + viminfo_hisidx[type];
5935 if (idx >= hislen)
5936 idx -= hislen;
5937 else if (idx < 0)
5938 idx = hislen - 1;
5939 if (viminfo_add_at_front)
5940 hisidx[type] = idx;
5941 else
5942 {
5943 if (hisidx[type] == -1)
5944 hisidx[type] = hislen - 1;
5945 do
5946 {
5947 if (history[type][idx].hisstr != NULL)
5948 break;
5949 if (++idx == hislen)
5950 idx = 0;
5951 } while (idx != hisidx[type]);
5952 if (idx != hisidx[type] && --idx < 0)
5953 idx = hislen - 1;
5954 }
5955 for (i = 0; i < viminfo_hisidx[type]; i++)
5956 {
5957 vim_free(history[type][idx].hisstr);
5958 history[type][idx].hisstr = viminfo_history[type][i];
5959 if (--idx < 0)
5960 idx = hislen - 1;
5961 }
5962 idx += 1;
5963 idx %= hislen;
5964 for (i = 0; i < viminfo_hisidx[type]; i++)
5965 {
5966 history[type][idx++].hisnum = ++hisnum[type];
5967 idx %= hislen;
5968 }
5969 vim_free(viminfo_history[type]);
5970 viminfo_history[type] = NULL;
5971 }
5972}
5973
5974 void
5975write_viminfo_history(fp)
5976 FILE *fp;
5977{
5978 int i;
5979 int type;
5980 int num_saved;
5981 char_u *p;
5982 int c;
5983
5984 init_history();
5985 if (hislen == 0)
5986 return;
5987 for (type = 0; type < HIST_COUNT; ++type)
5988 {
5989 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE));
5990 if (num_saved == 0)
5991 continue;
5992 if (num_saved < 0) /* Use default */
5993 num_saved = hislen;
5994 fprintf(fp, _("\n# %s History (newest to oldest):\n"),
5995 type == HIST_CMD ? _("Command Line") :
5996 type == HIST_SEARCH ? _("Search String") :
5997 type == HIST_EXPR ? _("Expression") :
5998 _("Input Line"));
5999 if (num_saved > hislen)
6000 num_saved = hislen;
6001 i = hisidx[type];
6002 if (i >= 0)
6003 while (num_saved--)
6004 {
6005 p = history[type][i].hisstr;
6006 if (p != NULL)
6007 {
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006008 fputc(hist_type2char(type, TRUE), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006009 /* For the search history: put the separator in the second
6010 * column; use a space if there isn't one. */
6011 if (type == HIST_SEARCH)
6012 {
6013 c = p[STRLEN(p) + 1];
6014 putc(c == NUL ? ' ' : c, fp);
6015 }
6016 viminfo_writestring(fp, p);
6017 }
6018 if (--i < 0)
6019 i = hislen - 1;
6020 }
6021 }
6022}
6023#endif /* FEAT_VIMINFO */
6024
6025#if defined(FEAT_FKMAP) || defined(PROTO)
6026/*
6027 * Write a character at the current cursor+offset position.
6028 * It is directly written into the command buffer block.
6029 */
6030 void
6031cmd_pchar(c, offset)
6032 int c, offset;
6033{
6034 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6035 {
6036 EMSG(_("E198: cmd_pchar beyond the command length"));
6037 return;
6038 }
6039 ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c;
6040 ccline.cmdbuff[ccline.cmdlen] = NUL;
6041}
6042
6043 int
6044cmd_gchar(offset)
6045 int offset;
6046{
6047 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6048 {
6049 /* EMSG(_("cmd_gchar beyond the command length")); */
6050 return NUL;
6051 }
6052 return (int)ccline.cmdbuff[ccline.cmdpos + offset];
6053}
6054#endif
6055
6056#if defined(FEAT_CMDWIN) || defined(PROTO)
6057/*
6058 * Open a window on the current command line and history. Allow editing in
6059 * the window. Returns when the window is closed.
6060 * Returns:
6061 * CR if the command is to be executed
6062 * Ctrl_C if it is to be abandoned
6063 * K_IGNORE if editing continues
6064 */
6065 static int
6066ex_window()
6067{
6068 struct cmdline_info save_ccline;
6069 buf_T *old_curbuf = curbuf;
6070 win_T *old_curwin = curwin;
6071 buf_T *bp;
6072 win_T *wp;
6073 int i;
6074 linenr_T lnum;
6075 int histtype;
6076 garray_T winsizes;
Bram Moolenaar7693ec62008-07-24 18:29:37 +00006077#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006078 char_u typestr[2];
Bram Moolenaar7693ec62008-07-24 18:29:37 +00006079#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006080 int save_restart_edit = restart_edit;
6081 int save_State = State;
6082 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00006083#ifdef FEAT_RIGHTLEFT
6084 int save_cmdmsg_rl = cmdmsg_rl;
6085#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006086
6087 /* Can't do this recursively. Can't do it when typing a password. */
6088 if (cmdwin_type != 0
6089# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
6090 || cmdline_star > 0
6091# endif
6092 )
6093 {
6094 beep_flush();
6095 return K_IGNORE;
6096 }
6097
6098 /* Save current window sizes. */
6099 win_size_save(&winsizes);
6100
6101# ifdef FEAT_AUTOCMD
6102 /* Don't execute autocommands while creating the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006103 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006104# endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00006105 /* don't use a new tab page */
6106 cmdmod.tab = 0;
6107
Bram Moolenaar071d4272004-06-13 20:20:40 +00006108 /* Create a window for the command-line buffer. */
6109 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
6110 {
6111 beep_flush();
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006112# ifdef FEAT_AUTOCMD
6113 unblock_autocmds();
6114# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006115 return K_IGNORE;
6116 }
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006117 cmdwin_type = get_cmdline_type();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006118
6119 /* Create the command-line buffer empty. */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006120 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL);
Bram Moolenaar446cb832008-06-24 21:56:24 +00006121 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006122 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
6123 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
6124 curbuf->b_p_ma = TRUE;
Bram Moolenaar876f6d72009-04-29 10:05:51 +00006125#ifdef FEAT_FOLDING
6126 curwin->w_p_fen = FALSE;
6127#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006128# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00006129 curwin->w_p_rl = cmdmsg_rl;
6130 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006131# endif
6132# ifdef FEAT_SCROLLBIND
6133 curwin->w_p_scb = FALSE;
6134# endif
6135
6136# ifdef FEAT_AUTOCMD
6137 /* Do execute autocommands for setting the filetype (load syntax). */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006138 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006139# endif
6140
Bram Moolenaar46152342005-09-07 21:18:43 +00006141 /* Showing the prompt may have set need_wait_return, reset it. */
6142 need_wait_return = FALSE;
6143
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006144 histtype = hist_char2type(cmdwin_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006145 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
6146 {
6147 if (p_wc == TAB)
6148 {
6149 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
6150 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
6151 }
6152 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
6153 }
6154
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006155 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
6156 * sets 'textwidth' to 78). */
6157 curbuf->b_p_tw = 0;
6158
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159 /* Fill the buffer with the history. */
6160 init_history();
6161 if (hislen > 0)
6162 {
6163 i = hisidx[histtype];
6164 if (i >= 0)
6165 {
6166 lnum = 0;
6167 do
6168 {
6169 if (++i == hislen)
6170 i = 0;
6171 if (history[histtype][i].hisstr != NULL)
6172 ml_append(lnum++, history[histtype][i].hisstr,
6173 (colnr_T)0, FALSE);
6174 }
6175 while (i != hisidx[histtype]);
6176 }
6177 }
6178
6179 /* Replace the empty last line with the current command-line and put the
6180 * cursor there. */
6181 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
6182 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6183 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00006184 changed_line_abv_curs();
6185 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00006186 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006187
6188 /* Save the command line info, can be used recursively. */
6189 save_ccline = ccline;
6190 ccline.cmdbuff = NULL;
6191 ccline.cmdprompt = NULL;
6192
6193 /* No Ex mode here! */
6194 exmode_active = 0;
6195
6196 State = NORMAL;
6197# ifdef FEAT_MOUSE
6198 setmouse();
6199# endif
6200
6201# ifdef FEAT_AUTOCMD
6202 /* Trigger CmdwinEnter autocommands. */
6203 typestr[0] = cmdwin_type;
6204 typestr[1] = NUL;
6205 apply_autocmds(EVENT_CMDWINENTER, typestr, typestr, FALSE, curbuf);
Bram Moolenaar5495cc92006-08-16 14:23:04 +00006206 if (restart_edit != 0) /* autocmd with ":startinsert" */
6207 stuffcharReadbuff(K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006208# endif
6209
6210 i = RedrawingDisabled;
6211 RedrawingDisabled = 0;
6212
6213 /*
6214 * Call the main loop until <CR> or CTRL-C is typed.
6215 */
6216 cmdwin_result = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00006217 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006218
6219 RedrawingDisabled = i;
6220
6221# ifdef FEAT_AUTOCMD
6222 /* Trigger CmdwinLeave autocommands. */
6223 apply_autocmds(EVENT_CMDWINLEAVE, typestr, typestr, FALSE, curbuf);
6224# endif
6225
Bram Moolenaarccc18222007-05-10 18:25:20 +00006226 /* Restore the command line info. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006227 ccline = save_ccline;
6228 cmdwin_type = 0;
6229
6230 exmode_active = save_exmode;
6231
Bram Moolenaarf9821062008-06-20 16:31:07 +00006232 /* Safety check: The old window or buffer was deleted: It's a bug when
Bram Moolenaar071d4272004-06-13 20:20:40 +00006233 * this happens! */
6234 if (!win_valid(old_curwin) || !buf_valid(old_curbuf))
6235 {
6236 cmdwin_result = Ctrl_C;
6237 EMSG(_("E199: Active window or buffer deleted"));
6238 }
6239 else
6240 {
6241# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
6242 /* autocmds may abort script processing */
6243 if (aborting() && cmdwin_result != K_IGNORE)
6244 cmdwin_result = Ctrl_C;
6245# endif
6246 /* Set the new command line from the cmdline buffer. */
6247 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00006248 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249 {
Bram Moolenaar46152342005-09-07 21:18:43 +00006250 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
6251
6252 if (histtype == HIST_CMD)
6253 {
6254 /* Execute the command directly. */
6255 ccline.cmdbuff = vim_strsave((char_u *)p);
6256 cmdwin_result = CAR;
6257 }
6258 else
6259 {
6260 /* First need to cancel what we were doing. */
6261 ccline.cmdbuff = NULL;
6262 stuffcharReadbuff(':');
6263 stuffReadbuff((char_u *)p);
6264 stuffcharReadbuff(CAR);
6265 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006266 }
6267 else if (cmdwin_result == K_XF2) /* :qa typed */
6268 {
6269 ccline.cmdbuff = vim_strsave((char_u *)"qa");
6270 cmdwin_result = CAR;
6271 }
6272 else
6273 ccline.cmdbuff = vim_strsave(ml_get_curline());
6274 if (ccline.cmdbuff == NULL)
6275 cmdwin_result = Ctrl_C;
6276 else
6277 {
6278 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
6279 ccline.cmdbufflen = ccline.cmdlen + 1;
6280 ccline.cmdpos = curwin->w_cursor.col;
6281 if (ccline.cmdpos > ccline.cmdlen)
6282 ccline.cmdpos = ccline.cmdlen;
6283 if (cmdwin_result == K_IGNORE)
6284 {
6285 set_cmdspos_cursor();
6286 redrawcmd();
6287 }
6288 }
6289
6290# ifdef FEAT_AUTOCMD
6291 /* Don't execute autocommands while deleting the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006292 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006293# endif
6294 wp = curwin;
6295 bp = curbuf;
6296 win_goto(old_curwin);
6297 win_close(wp, TRUE);
Bram Moolenaar8006d692010-03-02 17:23:21 +01006298
6299 /* win_close() may have already wiped the buffer when 'bh' is
6300 * set to 'wipe' */
6301 if (buf_valid(bp))
6302 close_buffer(NULL, bp, DOBUF_WIPE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303
6304 /* Restore window sizes. */
6305 win_size_restore(&winsizes);
6306
6307# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006308 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006309# endif
6310 }
6311
6312 ga_clear(&winsizes);
6313 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00006314# ifdef FEAT_RIGHTLEFT
6315 cmdmsg_rl = save_cmdmsg_rl;
6316# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006317
6318 State = save_State;
6319# ifdef FEAT_MOUSE
6320 setmouse();
6321# endif
6322
6323 return cmdwin_result;
6324}
6325#endif /* FEAT_CMDWIN */
6326
6327/*
6328 * Used for commands that either take a simple command string argument, or:
6329 * cmd << endmarker
6330 * {script}
6331 * endmarker
6332 * Returns a pointer to allocated memory with {script} or NULL.
6333 */
6334 char_u *
6335script_get(eap, cmd)
6336 exarg_T *eap;
6337 char_u *cmd;
6338{
6339 char_u *theline;
6340 char *end_pattern = NULL;
6341 char dot[] = ".";
6342 garray_T ga;
6343
6344 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
6345 return NULL;
6346
6347 ga_init2(&ga, 1, 0x400);
6348
6349 if (cmd[2] != NUL)
6350 end_pattern = (char *)skipwhite(cmd + 2);
6351 else
6352 end_pattern = dot;
6353
6354 for (;;)
6355 {
6356 theline = eap->getline(
6357#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00006358 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00006359#endif
6360 NUL, eap->cookie, 0);
6361
6362 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
Bram Moolenaarbe555e72008-08-06 12:19:26 +00006363 {
6364 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006365 break;
Bram Moolenaarbe555e72008-08-06 12:19:26 +00006366 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006367
6368 ga_concat(&ga, theline);
6369 ga_append(&ga, '\n');
6370 vim_free(theline);
6371 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00006372 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006373
6374 return (char_u *)ga.ga_data;
6375}