blob: 66d2ec44abbb0b8f548c8637b6005239c50c058b [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 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643
644#endif /* FEAT_WILDMENU */
645
646 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert
647 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */
648 if (c == Ctrl_BSL)
649 {
650 ++no_mapping;
651 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000652 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 --no_mapping;
654 --allow_keys;
655 /* CTRL-\ e doesn't work when obtaining an expression. */
656 if (c != Ctrl_N && c != Ctrl_G
657 && (c != 'e' || ccline.cmdfirstc == '='))
658 {
659 vungetc(c);
660 c = Ctrl_BSL;
661 }
662#ifdef FEAT_EVAL
663 else if (c == 'e')
664 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +0200665 char_u *p = NULL;
666 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667
668 /*
669 * Replace the command line with the result of an expression.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000670 * Need to save and restore the current command line, to be
671 * able to enter a new one...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672 */
673 if (ccline.cmdpos == ccline.cmdlen)
674 new_cmdpos = 99999; /* keep it at the end */
675 else
676 new_cmdpos = ccline.cmdpos;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000677
678 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000680 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681 if (c == '=')
682 {
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000683 /* Need to save and restore ccline. And set "textlock"
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000684 * to avoid nasty things like going to another buffer when
685 * evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000686 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000687 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688 p = get_expr_line();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000689 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000690 restore_cmdline(&save_ccline);
691
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200692 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 {
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200694 len = (int)STRLEN(p);
695 if (realloc_cmdbuff(len + 1) == OK)
696 {
697 ccline.cmdlen = len;
698 STRCPY(ccline.cmdbuff, p);
699 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200701 /* Restore the cursor or use the position set with
702 * set_cmdline_pos(). */
703 if (new_cmdpos > ccline.cmdlen)
704 ccline.cmdpos = ccline.cmdlen;
705 else
706 ccline.cmdpos = new_cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200708 KeyTyped = FALSE; /* Don't do p_wc completion. */
709 redrawcmd();
710 goto cmdline_changed;
711 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 }
713 }
714 beep_flush();
Bram Moolenaar66b4bf82010-11-16 14:06:08 +0100715 got_int = FALSE; /* don't abandon the command line */
716 did_emsg = FALSE;
717 emsg_on_display = FALSE;
718 redrawcmd();
719 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000720 }
721#endif
722 else
723 {
724 if (c == Ctrl_G && p_im && restart_edit == 0)
725 restart_edit = 'a';
726 gotesc = TRUE; /* will free ccline.cmdbuff after putting it
727 in history */
728 goto returncmd; /* back to Normal mode */
729 }
730 }
731
732#ifdef FEAT_CMDWIN
733 if (c == cedit_key || c == K_CMDWIN)
734 {
735 /*
736 * Open a window to edit the command line (and history).
737 */
738 c = ex_window();
739 some_key_typed = TRUE;
740 }
741# ifdef FEAT_DIGRAPHS
742 else
743# endif
744#endif
745#ifdef FEAT_DIGRAPHS
746 c = do_digraph(c);
747#endif
748
749 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC
750 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL)))
751 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000752 /* In Ex mode a backslash escapes a newline. */
753 if (exmode_active
754 && c != ESC
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000755 && ccline.cmdpos == ccline.cmdlen
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000756 && ccline.cmdpos > 0
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000757 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000759 if (c == K_KENTER)
760 c = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000762 else
763 {
764 gotesc = FALSE; /* Might have typed ESC previously, don't
765 truncate the cmdline now. */
766 if (ccheck_abbr(c + ABBR_OFF))
767 goto cmdline_changed;
768 if (!cmd_silent)
769 {
770 windgoto(msg_row, 0);
771 out_flush();
772 }
773 break;
774 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775 }
776
777 /*
778 * Completion for 'wildchar' or 'wildcharm' key.
779 * - hitting <ESC> twice means: abandon command line.
780 * - wildcard expansion is only done when the 'wildchar' key is really
781 * typed, not when it comes from a macro
782 */
783 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm)
784 {
785 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */
786 {
787 /* if 'wildmode' contains "list" may still need to list */
788 if (xpc.xp_numfiles > 1
789 && !did_wild_list
790 && (wim_flags[wim_index] & WIM_LIST))
791 {
792 (void)showmatches(&xpc, FALSE);
793 redrawcmd();
794 did_wild_list = TRUE;
795 }
796 if (wim_flags[wim_index] & WIM_LONGEST)
797 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP);
798 else if (wim_flags[wim_index] & WIM_FULL)
799 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP);
800 else
801 res = OK; /* don't insert 'wildchar' now */
802 }
803 else /* typed p_wc first time */
804 {
805 wim_index = 0;
806 j = ccline.cmdpos;
807 /* if 'wildmode' first contains "longest", get longest
808 * common part */
809 if (wim_flags[0] & WIM_LONGEST)
810 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP);
811 else
812 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP);
813
814 /* if interrupted while completing, behave like it failed */
815 if (got_int)
816 {
817 (void)vpeekc(); /* remove <C-C> from input stream */
818 got_int = FALSE; /* don't abandon the command line */
819 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
820#ifdef FEAT_WILDMENU
821 xpc.xp_context = EXPAND_NOTHING;
822#endif
823 goto cmdline_changed;
824 }
825
826 /* when more than one match, and 'wildmode' first contains
827 * "list", or no change and 'wildmode' contains "longest,list",
828 * list all matches */
829 if (res == OK && xpc.xp_numfiles > 1)
830 {
831 /* a "longest" that didn't do anything is skipped (but not
832 * "list:longest") */
833 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j)
834 wim_index = 1;
835 if ((wim_flags[wim_index] & WIM_LIST)
836#ifdef FEAT_WILDMENU
837 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0)
838#endif
839 )
840 {
841 if (!(wim_flags[0] & WIM_LONGEST))
842 {
843#ifdef FEAT_WILDMENU
844 int p_wmnu_save = p_wmnu;
845 p_wmnu = 0;
846#endif
847 nextwild(&xpc, WILD_PREV, 0); /* remove match */
848#ifdef FEAT_WILDMENU
849 p_wmnu = p_wmnu_save;
850#endif
851 }
852#ifdef FEAT_WILDMENU
853 (void)showmatches(&xpc, p_wmnu
854 && ((wim_flags[wim_index] & WIM_LIST) == 0));
855#else
856 (void)showmatches(&xpc, FALSE);
857#endif
858 redrawcmd();
859 did_wild_list = TRUE;
860 if (wim_flags[wim_index] & WIM_LONGEST)
861 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP);
862 else if (wim_flags[wim_index] & WIM_FULL)
863 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP);
864 }
865 else
866 vim_beep();
867 }
868#ifdef FEAT_WILDMENU
869 else if (xpc.xp_numfiles == -1)
870 xpc.xp_context = EXPAND_NOTHING;
871#endif
872 }
873 if (wim_index < 3)
874 ++wim_index;
875 if (c == ESC)
876 gotesc = TRUE;
877 if (res == OK)
878 goto cmdline_changed;
879 }
880
881 gotesc = FALSE;
882
883 /* <S-Tab> goes to last match, in a clumsy way */
884 if (c == K_S_TAB && KeyTyped)
885 {
886 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0) == OK
887 && nextwild(&xpc, WILD_PREV, 0) == OK
888 && nextwild(&xpc, WILD_PREV, 0) == OK)
889 goto cmdline_changed;
890 }
891
892 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */
893 c = NL;
894
895 do_abbr = TRUE; /* default: check for abbreviation */
896
897 /*
898 * Big switch for a typed command line character.
899 */
900 switch (c)
901 {
902 case K_BS:
903 case Ctrl_H:
904 case K_DEL:
905 case K_KDEL:
906 case Ctrl_W:
907#ifdef FEAT_FKMAP
908 if (cmd_fkmap && c == K_BS)
909 c = K_DEL;
910#endif
911 if (c == K_KDEL)
912 c = K_DEL;
913
914 /*
915 * delete current character is the same as backspace on next
916 * character, except at end of line
917 */
918 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen)
919 ++ccline.cmdpos;
920#ifdef FEAT_MBYTE
921 if (has_mbyte && c == K_DEL)
922 ccline.cmdpos += mb_off_next(ccline.cmdbuff,
923 ccline.cmdbuff + ccline.cmdpos);
924#endif
925 if (ccline.cmdpos > 0)
926 {
927 char_u *p;
928
929 j = ccline.cmdpos;
930 p = ccline.cmdbuff + j;
931#ifdef FEAT_MBYTE
932 if (has_mbyte)
933 {
934 p = mb_prevptr(ccline.cmdbuff, p);
935 if (c == Ctrl_W)
936 {
937 while (p > ccline.cmdbuff && vim_isspace(*p))
938 p = mb_prevptr(ccline.cmdbuff, p);
939 i = mb_get_class(p);
940 while (p > ccline.cmdbuff && mb_get_class(p) == i)
941 p = mb_prevptr(ccline.cmdbuff, p);
942 if (mb_get_class(p) != i)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000943 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 }
945 }
946 else
947#endif
948 if (c == Ctrl_W)
949 {
950 while (p > ccline.cmdbuff && vim_isspace(p[-1]))
951 --p;
952 i = vim_iswordc(p[-1]);
953 while (p > ccline.cmdbuff && !vim_isspace(p[-1])
954 && vim_iswordc(p[-1]) == i)
955 --p;
956 }
957 else
958 --p;
959 ccline.cmdpos = (int)(p - ccline.cmdbuff);
960 ccline.cmdlen -= j - ccline.cmdpos;
961 i = ccline.cmdpos;
962 while (i < ccline.cmdlen)
963 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
964
965 /* Truncate at the end, required for multi-byte chars. */
966 ccline.cmdbuff[ccline.cmdlen] = NUL;
967 redrawcmd();
968 }
969 else if (ccline.cmdlen == 0 && c != Ctrl_W
970 && ccline.cmdprompt == NULL && indent == 0)
971 {
972 /* In ex and debug mode it doesn't make sense to return. */
973 if (exmode_active
974#ifdef FEAT_EVAL
975 || ccline.cmdfirstc == '>'
976#endif
977 )
978 goto cmdline_not_changed;
979
980 vim_free(ccline.cmdbuff); /* no commandline to return */
981 ccline.cmdbuff = NULL;
982 if (!cmd_silent)
983 {
984#ifdef FEAT_RIGHTLEFT
985 if (cmdmsg_rl)
986 msg_col = Columns;
987 else
988#endif
989 msg_col = 0;
990 msg_putchar(' '); /* delete ':' */
991 }
992 redraw_cmdline = TRUE;
993 goto returncmd; /* back to cmd mode */
994 }
995 goto cmdline_changed;
996
997 case K_INS:
998 case K_KINS:
999#ifdef FEAT_FKMAP
1000 /* if Farsi mode set, we are in reverse insert mode -
1001 Do not change the mode */
1002 if (cmd_fkmap)
1003 beep_flush();
1004 else
1005#endif
1006 ccline.overstrike = !ccline.overstrike;
1007#ifdef CURSOR_SHAPE
1008 ui_cursor_shape(); /* may show different cursor shape */
1009#endif
1010 goto cmdline_not_changed;
1011
1012 case Ctrl_HAT:
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00001013 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014 {
1015 /* ":lmap" mappings exists, toggle use of mappings. */
1016 State ^= LANGMAP;
1017#ifdef USE_IM_CONTROL
1018 im_set_active(FALSE); /* Disable input method */
1019#endif
1020 if (b_im_ptr != NULL)
1021 {
1022 if (State & LANGMAP)
1023 *b_im_ptr = B_IMODE_LMAP;
1024 else
1025 *b_im_ptr = B_IMODE_NONE;
1026 }
1027 }
1028#ifdef USE_IM_CONTROL
1029 else
1030 {
1031 /* There are no ":lmap" mappings, toggle IM. When
1032 * 'imdisable' is set don't try getting the status, it's
1033 * always off. */
1034 if ((p_imdisable && b_im_ptr != NULL)
1035 ? *b_im_ptr == B_IMODE_IM : im_get_status())
1036 {
1037 im_set_active(FALSE); /* Disable input method */
1038 if (b_im_ptr != NULL)
1039 *b_im_ptr = B_IMODE_NONE;
1040 }
1041 else
1042 {
1043 im_set_active(TRUE); /* Enable input method */
1044 if (b_im_ptr != NULL)
1045 *b_im_ptr = B_IMODE_IM;
1046 }
1047 }
1048#endif
1049 if (b_im_ptr != NULL)
1050 {
1051 if (b_im_ptr == &curbuf->b_p_iminsert)
1052 set_iminsert_global();
1053 else
1054 set_imsearch_global();
1055 }
1056#ifdef CURSOR_SHAPE
1057 ui_cursor_shape(); /* may show different cursor shape */
1058#endif
1059#if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
1060 /* Show/unshow value of 'keymap' in status lines later. */
1061 status_redraw_curbuf();
1062#endif
1063 goto cmdline_not_changed;
1064
1065/* case '@': only in very old vi */
1066 case Ctrl_U:
1067 /* delete all characters left of the cursor */
1068 j = ccline.cmdpos;
1069 ccline.cmdlen -= j;
1070 i = ccline.cmdpos = 0;
1071 while (i < ccline.cmdlen)
1072 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1073 /* Truncate at the end, required for multi-byte chars. */
1074 ccline.cmdbuff[ccline.cmdlen] = NUL;
1075 redrawcmd();
1076 goto cmdline_changed;
1077
1078#ifdef FEAT_CLIPBOARD
1079 case Ctrl_Y:
1080 /* Copy the modeless selection, if there is one. */
1081 if (clip_star.state != SELECT_CLEARED)
1082 {
1083 if (clip_star.state == SELECT_DONE)
1084 clip_copy_modeless_selection(TRUE);
1085 goto cmdline_not_changed;
1086 }
1087 break;
1088#endif
1089
1090 case ESC: /* get here if p_wc != ESC or when ESC typed twice */
1091 case Ctrl_C:
Bram Moolenaarf4d11452005-12-02 00:46:37 +00001092 /* In exmode it doesn't make sense to return. Except when
Bram Moolenaar7c626922005-02-07 22:01:03 +00001093 * ":normal" runs out of characters. */
1094 if (exmode_active
1095#ifdef FEAT_EX_EXTRA
1096 && (ex_normal_busy == 0 || typebuf.tb_len > 0)
1097#endif
1098 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 goto cmdline_not_changed;
1100
1101 gotesc = TRUE; /* will free ccline.cmdbuff after
1102 putting it in history */
1103 goto returncmd; /* back to cmd mode */
1104
1105 case Ctrl_R: /* insert register */
1106#ifdef USE_ON_FLY_SCROLL
1107 dont_scroll = TRUE; /* disallow scrolling here */
1108#endif
1109 putcmdline('"', TRUE);
1110 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001111 i = c = plain_vgetc(); /* CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112 if (i == Ctrl_O)
1113 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */
1114 if (i == Ctrl_R)
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001115 c = plain_vgetc(); /* CTRL-R CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 --no_mapping;
1117#ifdef FEAT_EVAL
1118 /*
1119 * Insert the result of an expression.
1120 * Need to save the current command line, to be able to enter
1121 * a new one...
1122 */
1123 new_cmdpos = -1;
1124 if (c == '=')
1125 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 if (ccline.cmdfirstc == '=')/* can't do this recursively */
1127 {
1128 beep_flush();
1129 c = ESC;
1130 }
1131 else
1132 {
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001133 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001135 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 }
1137 }
1138#endif
1139 if (c != ESC) /* use ESC to cancel inserting register */
1140 {
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001141 cmdline_paste(c, i == Ctrl_R, FALSE);
Bram Moolenaaracf53452005-12-17 22:06:52 +00001142
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001143#ifdef FEAT_EVAL
Bram Moolenaaracf53452005-12-17 22:06:52 +00001144 /* When there was a serious error abort getting the
1145 * command line. */
1146 if (aborting())
1147 {
1148 gotesc = TRUE; /* will free ccline.cmdbuff after
1149 putting it in history */
1150 goto returncmd; /* back to cmd mode */
1151 }
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001152#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 KeyTyped = FALSE; /* Don't do p_wc completion. */
1154#ifdef FEAT_EVAL
1155 if (new_cmdpos >= 0)
1156 {
1157 /* set_cmdline_pos() was used */
1158 if (new_cmdpos > ccline.cmdlen)
1159 ccline.cmdpos = ccline.cmdlen;
1160 else
1161 ccline.cmdpos = new_cmdpos;
1162 }
1163#endif
1164 }
1165 redrawcmd();
1166 goto cmdline_changed;
1167
1168 case Ctrl_D:
1169 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING)
1170 break; /* Use ^D as normal char instead */
1171
1172 redrawcmd();
1173 continue; /* don't do incremental search now */
1174
1175 case K_RIGHT:
1176 case K_S_RIGHT:
1177 case K_C_RIGHT:
1178 do
1179 {
1180 if (ccline.cmdpos >= ccline.cmdlen)
1181 break;
1182 i = cmdline_charsize(ccline.cmdpos);
1183 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows)
1184 break;
1185 ccline.cmdspos += i;
1186#ifdef FEAT_MBYTE
1187 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001188 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189 + ccline.cmdpos);
1190 else
1191#endif
1192 ++ccline.cmdpos;
1193 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001194 while ((c == K_S_RIGHT || c == K_C_RIGHT
1195 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 && ccline.cmdbuff[ccline.cmdpos] != ' ');
1197#ifdef FEAT_MBYTE
1198 if (has_mbyte)
1199 set_cmdspos_cursor();
1200#endif
1201 goto cmdline_not_changed;
1202
1203 case K_LEFT:
1204 case K_S_LEFT:
1205 case K_C_LEFT:
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001206 if (ccline.cmdpos == 0)
1207 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 do
1209 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210 --ccline.cmdpos;
1211#ifdef FEAT_MBYTE
1212 if (has_mbyte) /* move to first byte of char */
1213 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff,
1214 ccline.cmdbuff + ccline.cmdpos);
1215#endif
1216 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos);
1217 }
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001218 while (ccline.cmdpos > 0
1219 && (c == K_S_LEFT || c == K_C_LEFT
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001220 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 && ccline.cmdbuff[ccline.cmdpos - 1] != ' ');
1222#ifdef FEAT_MBYTE
1223 if (has_mbyte)
1224 set_cmdspos_cursor();
1225#endif
1226 goto cmdline_not_changed;
1227
1228 case K_IGNORE:
Bram Moolenaar30405d32008-01-02 20:55:27 +00001229 /* Ignore mouse event or ex_window() result. */
1230 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231
Bram Moolenaar4770d092006-01-12 23:22:24 +00001232#ifdef FEAT_GUI_W32
1233 /* On Win32 ignore <M-F4>, we get it when closing the window was
1234 * cancelled. */
1235 case K_F4:
1236 if (mod_mask == MOD_MASK_ALT)
1237 {
1238 redrawcmd(); /* somehow the cmdline is cleared */
1239 goto cmdline_not_changed;
1240 }
1241 break;
1242#endif
1243
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244#ifdef FEAT_MOUSE
1245 case K_MIDDLEDRAG:
1246 case K_MIDDLERELEASE:
1247 goto cmdline_not_changed; /* Ignore mouse */
1248
1249 case K_MIDDLEMOUSE:
1250# ifdef FEAT_GUI
1251 /* When GUI is active, also paste when 'mouse' is empty */
1252 if (!gui.in_use)
1253# endif
1254 if (!mouse_has(MOUSE_COMMAND))
1255 goto cmdline_not_changed; /* Ignore mouse */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001256# ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 if (clip_star.available)
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001258 cmdline_paste('*', TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 else
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001260# endif
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001261 cmdline_paste(0, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 redrawcmd();
1263 goto cmdline_changed;
1264
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001265# ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 case K_DROP:
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001267 cmdline_paste('~', TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 redrawcmd();
1269 goto cmdline_changed;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001270# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271
1272 case K_LEFTDRAG:
1273 case K_LEFTRELEASE:
1274 case K_RIGHTDRAG:
1275 case K_RIGHTRELEASE:
1276 /* Ignore drag and release events when the button-down wasn't
1277 * seen before. */
1278 if (ignore_drag_release)
1279 goto cmdline_not_changed;
1280 /* FALLTHROUGH */
1281 case K_LEFTMOUSE:
1282 case K_RIGHTMOUSE:
1283 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE)
1284 ignore_drag_release = TRUE;
1285 else
1286 ignore_drag_release = FALSE;
1287# ifdef FEAT_GUI
1288 /* When GUI is active, also move when 'mouse' is empty */
1289 if (!gui.in_use)
1290# endif
1291 if (!mouse_has(MOUSE_COMMAND))
1292 goto cmdline_not_changed; /* Ignore mouse */
1293# ifdef FEAT_CLIPBOARD
1294 if (mouse_row < cmdline_row && clip_star.available)
1295 {
1296 int button, is_click, is_drag;
1297
1298 /*
1299 * Handle modeless selection.
1300 */
1301 button = get_mouse_button(KEY2TERMCAP1(c),
1302 &is_click, &is_drag);
1303 if (mouse_model_popup() && button == MOUSE_LEFT
1304 && (mod_mask & MOD_MASK_SHIFT))
1305 {
1306 /* Translate shift-left to right button. */
1307 button = MOUSE_RIGHT;
1308 mod_mask &= ~MOD_MASK_SHIFT;
1309 }
1310 clip_modeless(button, is_click, is_drag);
1311 goto cmdline_not_changed;
1312 }
1313# endif
1314
1315 set_cmdspos();
1316 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen;
1317 ++ccline.cmdpos)
1318 {
1319 i = cmdline_charsize(ccline.cmdpos);
1320 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns
1321 && mouse_col < ccline.cmdspos % Columns + i)
1322 break;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001323# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 if (has_mbyte)
1325 {
1326 /* Count ">" for double-wide char that doesn't fit. */
1327 correct_cmdspos(ccline.cmdpos, i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001328 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 + ccline.cmdpos) - 1;
1330 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001331# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 ccline.cmdspos += i;
1333 }
1334 goto cmdline_not_changed;
1335
1336 /* Mouse scroll wheel: ignored here */
1337 case K_MOUSEDOWN:
1338 case K_MOUSEUP:
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001339 case K_MOUSELEFT:
1340 case K_MOUSERIGHT:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 /* Alternate buttons ignored here */
1342 case K_X1MOUSE:
1343 case K_X1DRAG:
1344 case K_X1RELEASE:
1345 case K_X2MOUSE:
1346 case K_X2DRAG:
1347 case K_X2RELEASE:
1348 goto cmdline_not_changed;
1349
1350#endif /* FEAT_MOUSE */
1351
1352#ifdef FEAT_GUI
1353 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */
1354 case K_LEFTRELEASE_NM:
1355 goto cmdline_not_changed;
1356
1357 case K_VER_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001358 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 {
1360 gui_do_scroll();
1361 redrawcmd();
1362 }
1363 goto cmdline_not_changed;
1364
1365 case K_HOR_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001366 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001368 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 redrawcmd();
1370 }
1371 goto cmdline_not_changed;
1372#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001373#ifdef FEAT_GUI_TABLINE
1374 case K_TABLINE:
1375 case K_TABMENU:
1376 /* Don't want to change any tabs here. Make sure the same tab
1377 * is still selected. */
1378 if (gui_use_tabline())
1379 gui_mch_set_curtab(tabpage_index(curtab));
1380 goto cmdline_not_changed;
1381#endif
1382
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 case K_SELECT: /* end of Select mode mapping - ignore */
1384 goto cmdline_not_changed;
1385
1386 case Ctrl_B: /* begin of command line */
1387 case K_HOME:
1388 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 case K_S_HOME:
1390 case K_C_HOME:
1391 ccline.cmdpos = 0;
1392 set_cmdspos();
1393 goto cmdline_not_changed;
1394
1395 case Ctrl_E: /* end of command line */
1396 case K_END:
1397 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 case K_S_END:
1399 case K_C_END:
1400 ccline.cmdpos = ccline.cmdlen;
1401 set_cmdspos_cursor();
1402 goto cmdline_not_changed;
1403
1404 case Ctrl_A: /* all matches */
1405 if (nextwild(&xpc, WILD_ALL, 0) == FAIL)
1406 break;
1407 goto cmdline_changed;
1408
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001409 case Ctrl_L:
1410#ifdef FEAT_SEARCH_EXTRA
1411 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1412 {
1413 /* Add a character from under the cursor for 'incsearch' */
1414 if (did_incsearch
1415 && !equalpos(curwin->w_cursor, old_cursor))
1416 {
1417 c = gchar_cursor();
Bram Moolenaara9dc3752010-07-11 20:46:53 +02001418 /* If 'ignorecase' and 'smartcase' are set and the
1419 * command line has no uppercase characters, convert
1420 * the character to lowercase */
1421 if (p_ic && p_scs && !pat_has_uppercase(ccline.cmdbuff))
1422 c = MB_TOLOWER(c);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001423 if (c != NUL)
Bram Moolenaar93db9752006-11-21 10:29:45 +00001424 {
1425 if (c == firstc || vim_strchr((char_u *)(
1426 p_magic ? "\\^$.*[" : "\\^$"), c)
1427 != NULL)
1428 {
1429 /* put a backslash before special characters */
1430 stuffcharReadbuff(c);
1431 c = '\\';
1432 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001433 break;
Bram Moolenaar93db9752006-11-21 10:29:45 +00001434 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001435 }
1436 goto cmdline_not_changed;
1437 }
1438#endif
1439
1440 /* completion: longest common part */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 if (nextwild(&xpc, WILD_LONGEST, 0) == FAIL)
1442 break;
1443 goto cmdline_changed;
1444
1445 case Ctrl_N: /* next match */
1446 case Ctrl_P: /* previous match */
1447 if (xpc.xp_numfiles > 0)
1448 {
1449 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT, 0)
1450 == FAIL)
1451 break;
1452 goto cmdline_changed;
1453 }
1454
1455#ifdef FEAT_CMDHIST
1456 case K_UP:
1457 case K_DOWN:
1458 case K_S_UP:
1459 case K_S_DOWN:
1460 case K_PAGEUP:
1461 case K_KPAGEUP:
1462 case K_PAGEDOWN:
1463 case K_KPAGEDOWN:
1464 if (hislen == 0 || firstc == NUL) /* no history */
1465 goto cmdline_not_changed;
1466
1467 i = hiscnt;
1468
1469 /* save current command string so it can be restored later */
1470 if (lookfor == NULL)
1471 {
1472 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL)
1473 goto cmdline_not_changed;
1474 lookfor[ccline.cmdpos] = NUL;
1475 }
1476
1477 j = (int)STRLEN(lookfor);
1478 for (;;)
1479 {
1480 /* one step backwards */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001481 if (c == K_UP|| c == K_S_UP || c == Ctrl_P
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001482 || c == K_PAGEUP || c == K_KPAGEUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 {
1484 if (hiscnt == hislen) /* first time */
1485 hiscnt = hisidx[histype];
1486 else if (hiscnt == 0 && hisidx[histype] != hislen - 1)
1487 hiscnt = hislen - 1;
1488 else if (hiscnt != hisidx[histype] + 1)
1489 --hiscnt;
1490 else /* at top of list */
1491 {
1492 hiscnt = i;
1493 break;
1494 }
1495 }
1496 else /* one step forwards */
1497 {
1498 /* on last entry, clear the line */
1499 if (hiscnt == hisidx[histype])
1500 {
1501 hiscnt = hislen;
1502 break;
1503 }
1504
1505 /* not on a history line, nothing to do */
1506 if (hiscnt == hislen)
1507 break;
1508 if (hiscnt == hislen - 1) /* wrap around */
1509 hiscnt = 0;
1510 else
1511 ++hiscnt;
1512 }
1513 if (hiscnt < 0 || history[histype][hiscnt].hisstr == NULL)
1514 {
1515 hiscnt = i;
1516 break;
1517 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001518 if ((c != K_UP && c != K_DOWN)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001519 || hiscnt == i
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520 || STRNCMP(history[histype][hiscnt].hisstr,
1521 lookfor, (size_t)j) == 0)
1522 break;
1523 }
1524
1525 if (hiscnt != i) /* jumped to other entry */
1526 {
1527 char_u *p;
1528 int len;
1529 int old_firstc;
1530
1531 vim_free(ccline.cmdbuff);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001532 xpc.xp_context = EXPAND_NOTHING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 if (hiscnt == hislen)
1534 p = lookfor; /* back to the old one */
1535 else
1536 p = history[histype][hiscnt].hisstr;
1537
1538 if (histype == HIST_SEARCH
1539 && p != lookfor
1540 && (old_firstc = p[STRLEN(p) + 1]) != firstc)
1541 {
1542 /* Correct for the separator character used when
1543 * adding the history entry vs the one used now.
1544 * First loop: count length.
1545 * Second loop: copy the characters. */
1546 for (i = 0; i <= 1; ++i)
1547 {
1548 len = 0;
1549 for (j = 0; p[j] != NUL; ++j)
1550 {
1551 /* Replace old sep with new sep, unless it is
1552 * escaped. */
1553 if (p[j] == old_firstc
1554 && (j == 0 || p[j - 1] != '\\'))
1555 {
1556 if (i > 0)
1557 ccline.cmdbuff[len] = firstc;
1558 }
1559 else
1560 {
1561 /* Escape new sep, unless it is already
1562 * escaped. */
1563 if (p[j] == firstc
1564 && (j == 0 || p[j - 1] != '\\'))
1565 {
1566 if (i > 0)
1567 ccline.cmdbuff[len] = '\\';
1568 ++len;
1569 }
1570 if (i > 0)
1571 ccline.cmdbuff[len] = p[j];
1572 }
1573 ++len;
1574 }
1575 if (i == 0)
1576 {
1577 alloc_cmdbuff(len);
1578 if (ccline.cmdbuff == NULL)
1579 goto returncmd;
1580 }
1581 }
1582 ccline.cmdbuff[len] = NUL;
1583 }
1584 else
1585 {
1586 alloc_cmdbuff((int)STRLEN(p));
1587 if (ccline.cmdbuff == NULL)
1588 goto returncmd;
1589 STRCPY(ccline.cmdbuff, p);
1590 }
1591
1592 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
1593 redrawcmd();
1594 goto cmdline_changed;
1595 }
1596 beep_flush();
1597 goto cmdline_not_changed;
1598#endif
1599
1600 case Ctrl_V:
1601 case Ctrl_Q:
1602#ifdef FEAT_MOUSE
1603 ignore_drag_release = TRUE;
1604#endif
1605 putcmdline('^', TRUE);
1606 c = get_literal(); /* get next (two) character(s) */
1607 do_abbr = FALSE; /* don't do abbreviation now */
1608#ifdef FEAT_MBYTE
1609 /* may need to remove ^ when composing char was typed */
1610 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent)
1611 {
1612 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
1613 msg_putchar(' ');
1614 cursorcmd();
1615 }
1616#endif
1617 break;
1618
1619#ifdef FEAT_DIGRAPHS
1620 case Ctrl_K:
1621#ifdef FEAT_MOUSE
1622 ignore_drag_release = TRUE;
1623#endif
1624 putcmdline('?', TRUE);
1625#ifdef USE_ON_FLY_SCROLL
1626 dont_scroll = TRUE; /* disallow scrolling here */
1627#endif
1628 c = get_digraph(TRUE);
1629 if (c != NUL)
1630 break;
1631
1632 redrawcmd();
1633 goto cmdline_not_changed;
1634#endif /* FEAT_DIGRAPHS */
1635
1636#ifdef FEAT_RIGHTLEFT
1637 case Ctrl__: /* CTRL-_: switch language mode */
1638 if (!p_ari)
1639 break;
1640#ifdef FEAT_FKMAP
1641 if (p_altkeymap)
1642 {
1643 cmd_fkmap = !cmd_fkmap;
1644 if (cmd_fkmap) /* in Farsi always in Insert mode */
1645 ccline.overstrike = FALSE;
1646 }
1647 else /* Hebrew is default */
1648#endif
1649 cmd_hkmap = !cmd_hkmap;
1650 goto cmdline_not_changed;
1651#endif
1652
1653 default:
1654#ifdef UNIX
1655 if (c == intr_char)
1656 {
1657 gotesc = TRUE; /* will free ccline.cmdbuff after
1658 putting it in history */
1659 goto returncmd; /* back to Normal mode */
1660 }
1661#endif
1662 /*
1663 * Normal character with no special meaning. Just set mod_mask
1664 * to 0x0 so that typing Shift-Space in the GUI doesn't enter
1665 * the string <S-Space>. This should only happen after ^V.
1666 */
1667 if (!IS_SPECIAL(c))
1668 mod_mask = 0x0;
1669 break;
1670 }
1671 /*
1672 * End of switch on command line character.
1673 * We come here if we have a normal character.
1674 */
1675
1676 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && ccheck_abbr(
1677#ifdef FEAT_MBYTE
1678 /* Add ABBR_OFF for characters above 0x100, this is
1679 * what check_abbr() expects. */
1680 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
1681#endif
1682 c))
1683 goto cmdline_changed;
1684
1685 /*
1686 * put the character in the command line
1687 */
1688 if (IS_SPECIAL(c) || mod_mask != 0)
1689 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE);
1690 else
1691 {
1692#ifdef FEAT_MBYTE
1693 if (has_mbyte)
1694 {
1695 j = (*mb_char2bytes)(c, IObuff);
1696 IObuff[j] = NUL; /* exclude composing chars */
1697 put_on_cmdline(IObuff, j, TRUE);
1698 }
1699 else
1700#endif
1701 {
1702 IObuff[0] = c;
1703 put_on_cmdline(IObuff, 1, TRUE);
1704 }
1705 }
1706 goto cmdline_changed;
1707
1708/*
1709 * This part implements incremental searches for "/" and "?"
1710 * Jump to cmdline_not_changed when a character has been read but the command
1711 * line did not change. Then we only search and redraw if something changed in
1712 * the past.
1713 * Jump to cmdline_changed when the command line did change.
1714 * (Sorry for the goto's, I know it is ugly).
1715 */
1716cmdline_not_changed:
1717#ifdef FEAT_SEARCH_EXTRA
1718 if (!incsearch_postponed)
1719 continue;
1720#endif
1721
1722cmdline_changed:
1723#ifdef FEAT_SEARCH_EXTRA
1724 /*
1725 * 'incsearch' highlighting.
1726 */
1727 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1728 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001729 pos_T end_pos;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001730#ifdef FEAT_RELTIME
1731 proftime_T tm;
1732#endif
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001733
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 /* if there is a character waiting, search and redraw later */
1735 if (char_avail())
1736 {
1737 incsearch_postponed = TRUE;
1738 continue;
1739 }
1740 incsearch_postponed = FALSE;
1741 curwin->w_cursor = old_cursor; /* start at old position */
1742
1743 /* If there is no command line, don't do anything */
1744 if (ccline.cmdlen == 0)
1745 i = 0;
1746 else
1747 {
1748 cursor_off(); /* so the user knows we're busy */
1749 out_flush();
1750 ++emsg_off; /* So it doesn't beep if bad expr */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001751#ifdef FEAT_RELTIME
1752 /* Set the time limit to half a second. */
1753 profile_setlimit(500L, &tm);
1754#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 i = do_search(NULL, firstc, ccline.cmdbuff, count,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001756 SEARCH_KEEP + SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK,
1757#ifdef FEAT_RELTIME
1758 &tm
1759#else
1760 NULL
1761#endif
1762 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 --emsg_off;
1764 /* if interrupted while searching, behave like it failed */
1765 if (got_int)
1766 {
1767 (void)vpeekc(); /* remove <C-C> from input stream */
1768 got_int = FALSE; /* don't abandon the command line */
1769 i = 0;
1770 }
1771 else if (char_avail())
1772 /* cancelled searching because a char was typed */
1773 incsearch_postponed = TRUE;
1774 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001775 if (i != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 highlight_match = TRUE; /* highlight position */
1777 else
1778 highlight_match = FALSE; /* remove highlight */
1779
1780 /* first restore the old curwin values, so the screen is
1781 * positioned in the same way as the actual search command */
1782 curwin->w_leftcol = old_leftcol;
1783 curwin->w_topline = old_topline;
1784# ifdef FEAT_DIFF
1785 curwin->w_topfill = old_topfill;
1786# endif
1787 curwin->w_botline = old_botline;
1788 changed_cline_bef_curs();
1789 update_topline();
1790
1791 if (i != 0)
1792 {
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001793 pos_T save_pos = curwin->w_cursor;
1794
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 /*
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001796 * First move cursor to end of match, then to the start. This
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 * moves the whole match onto the screen when 'nowrap' is set.
1798 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 curwin->w_cursor.lnum += search_match_lines;
1800 curwin->w_cursor.col = search_match_endcol;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001801 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
1802 {
1803 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
1804 coladvance((colnr_T)MAXCOL);
1805 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806 validate_cursor();
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001807 end_pos = curwin->w_cursor;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001808 curwin->w_cursor = save_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 }
Bram Moolenaardb552d602006-03-23 22:59:57 +00001810 else
1811 end_pos = curwin->w_cursor; /* shutup gcc 4 */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001812
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 validate_cursor();
Bram Moolenaar27a23192006-09-14 09:27:26 +00001814# ifdef FEAT_WINDOWS
1815 /* May redraw the status line to show the cursor position. */
1816 if (p_ru && curwin->w_status_height > 0)
1817 curwin->w_redr_status = TRUE;
1818# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00001820 save_cmdline(&save_ccline);
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001821 update_screen(SOME_VALID);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00001822 restore_cmdline(&save_ccline);
1823
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001824 /* Leave it at the end to make CTRL-R CTRL-W work. */
1825 if (i != 0)
1826 curwin->w_cursor = end_pos;
1827
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828 msg_starthere();
1829 redrawcmdline();
1830 did_incsearch = TRUE;
1831 }
1832#else /* FEAT_SEARCH_EXTRA */
1833 ;
1834#endif
1835
1836#ifdef FEAT_RIGHTLEFT
1837 if (cmdmsg_rl
1838# ifdef FEAT_ARABIC
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001839 || (p_arshape && !p_tbidi && enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840# endif
1841 )
1842 /* Always redraw the whole command line to fix shaping and
1843 * right-left typing. Not efficient, but it works. */
1844 redrawcmd();
1845#endif
1846 }
1847
1848returncmd:
1849
1850#ifdef FEAT_RIGHTLEFT
1851 cmdmsg_rl = FALSE;
1852#endif
1853
1854#ifdef FEAT_FKMAP
1855 cmd_fkmap = 0;
1856#endif
1857
1858 ExpandCleanup(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001859 ccline.xpc = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860
1861#ifdef FEAT_SEARCH_EXTRA
1862 if (did_incsearch)
1863 {
1864 curwin->w_cursor = old_cursor;
1865 curwin->w_curswant = old_curswant;
1866 curwin->w_leftcol = old_leftcol;
1867 curwin->w_topline = old_topline;
1868# ifdef FEAT_DIFF
1869 curwin->w_topfill = old_topfill;
1870# endif
1871 curwin->w_botline = old_botline;
1872 highlight_match = FALSE;
1873 validate_cursor(); /* needed for TAB */
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001874 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 }
1876#endif
1877
1878 if (ccline.cmdbuff != NULL)
1879 {
1880 /*
1881 * Put line in history buffer (":" and "=" only when it was typed).
1882 */
1883#ifdef FEAT_CMDHIST
1884 if (ccline.cmdlen && firstc != NUL
1885 && (some_key_typed || histype == HIST_SEARCH))
1886 {
1887 add_to_history(histype, ccline.cmdbuff, TRUE,
1888 histype == HIST_SEARCH ? firstc : NUL);
1889 if (firstc == ':')
1890 {
1891 vim_free(new_last_cmdline);
1892 new_last_cmdline = vim_strsave(ccline.cmdbuff);
1893 }
1894 }
1895#endif
1896
1897 if (gotesc) /* abandon command line */
1898 {
1899 vim_free(ccline.cmdbuff);
1900 ccline.cmdbuff = NULL;
1901 if (msg_scrolled == 0)
1902 compute_cmdrow();
1903 MSG("");
1904 redraw_cmdline = TRUE;
1905 }
1906 }
1907
1908 /*
1909 * If the screen was shifted up, redraw the whole screen (later).
1910 * If the line is too long, clear it, so ruler and shown command do
1911 * not get printed in the middle of it.
1912 */
1913 msg_check();
1914 msg_scroll = save_msg_scroll;
1915 redir_off = FALSE;
1916
1917 /* When the command line was typed, no need for a wait-return prompt. */
1918 if (some_key_typed)
1919 need_wait_return = FALSE;
1920
1921 State = save_State;
1922#ifdef USE_IM_CONTROL
1923 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP)
1924 im_save_status(b_im_ptr);
1925 im_set_active(FALSE);
1926#endif
1927#ifdef FEAT_MOUSE
1928 setmouse();
1929#endif
1930#ifdef CURSOR_SHAPE
1931 ui_cursor_shape(); /* may show different cursor shape */
1932#endif
1933
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001934 {
1935 char_u *p = ccline.cmdbuff;
1936
1937 /* Make ccline empty, getcmdline() may try to use it. */
1938 ccline.cmdbuff = NULL;
1939 return p;
1940 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941}
1942
1943#if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO)
1944/*
1945 * Get a command line with a prompt.
1946 * This is prepared to be called recursively from getcmdline() (e.g. by
1947 * f_input() when evaluating an expression from CTRL-R =).
1948 * Returns the command line in allocated memory, or NULL.
1949 */
1950 char_u *
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001951getcmdline_prompt(firstc, prompt, attr, xp_context, xp_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 int firstc;
1953 char_u *prompt; /* command line prompt */
1954 int attr; /* attributes for prompt */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001955 int xp_context; /* type of expansion */
1956 char_u *xp_arg; /* user-defined expansion argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957{
1958 char_u *s;
1959 struct cmdline_info save_ccline;
1960 int msg_col_save = msg_col;
1961
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001962 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963 ccline.cmdprompt = prompt;
1964 ccline.cmdattr = attr;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001965# ifdef FEAT_EVAL
1966 ccline.xp_context = xp_context;
1967 ccline.xp_arg = xp_arg;
1968 ccline.input_fn = (firstc == '@');
1969# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970 s = getcmdline(firstc, 1L, 0);
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001971 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 /* Restore msg_col, the prompt from input() may have changed it. */
1973 msg_col = msg_col_save;
1974
1975 return s;
1976}
1977#endif
1978
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001979/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001980 * Return TRUE when the text must not be changed and we can't switch to
1981 * another window or buffer. Used when editing the command line, evaluating
1982 * 'balloonexpr', etc.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001983 */
1984 int
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001985text_locked()
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001986{
1987#ifdef FEAT_CMDWIN
1988 if (cmdwin_type != 0)
1989 return TRUE;
1990#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001991 return textlock != 0;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001992}
1993
1994/*
1995 * Give an error message for a command that isn't allowed while the cmdline
1996 * window is open or editing the cmdline in another way.
1997 */
1998 void
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001999text_locked_msg()
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002000{
2001#ifdef FEAT_CMDWIN
2002 if (cmdwin_type != 0)
2003 EMSG(_(e_cmdwin));
2004 else
2005#endif
2006 EMSG(_(e_secure));
2007}
2008
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002009#if defined(FEAT_AUTOCMD) || defined(PROTO)
2010/*
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002011 * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is
2012 * and give an error message.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002013 */
2014 int
2015curbuf_locked()
2016{
2017 if (curbuf_lock > 0)
2018 {
2019 EMSG(_("E788: Not allowed to edit another buffer now"));
2020 return TRUE;
2021 }
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002022 return allbuf_locked();
2023}
2024
2025/*
2026 * Check if "allbuf_lock" is set and return TRUE when it is and give an error
2027 * message.
2028 */
2029 int
2030allbuf_locked()
2031{
2032 if (allbuf_lock > 0)
2033 {
2034 EMSG(_("E811: Not allowed to change buffer information now"));
2035 return TRUE;
2036 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002037 return FALSE;
2038}
2039#endif
2040
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 static int
2042cmdline_charsize(idx)
2043 int idx;
2044{
2045#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2046 if (cmdline_star > 0) /* showing '*', always 1 position */
2047 return 1;
2048#endif
2049 return ptr2cells(ccline.cmdbuff + idx);
2050}
2051
2052/*
2053 * Compute the offset of the cursor on the command line for the prompt and
2054 * indent.
2055 */
2056 static void
2057set_cmdspos()
2058{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002059 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 ccline.cmdspos = 1 + ccline.cmdindent;
2061 else
2062 ccline.cmdspos = 0 + ccline.cmdindent;
2063}
2064
2065/*
2066 * Compute the screen position for the cursor on the command line.
2067 */
2068 static void
2069set_cmdspos_cursor()
2070{
2071 int i, m, c;
2072
2073 set_cmdspos();
2074 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002075 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002077 if (m < 0) /* overflow, Columns or Rows at weird value */
2078 m = MAXCOL;
2079 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 else
2081 m = MAXCOL;
2082 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
2083 {
2084 c = cmdline_charsize(i);
2085#ifdef FEAT_MBYTE
2086 /* Count ">" for double-wide multi-byte char that doesn't fit. */
2087 if (has_mbyte)
2088 correct_cmdspos(i, c);
2089#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00002090 /* If the cmdline doesn't fit, show cursor on last visible char.
2091 * Don't move the cursor itself, so we can still append. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 if ((ccline.cmdspos += c) >= m)
2093 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 ccline.cmdspos -= c;
2095 break;
2096 }
2097#ifdef FEAT_MBYTE
2098 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002099 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100#endif
2101 }
2102}
2103
2104#ifdef FEAT_MBYTE
2105/*
2106 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2107 * character that doesn't fit, so that a ">" must be displayed.
2108 */
2109 static void
2110correct_cmdspos(idx, cells)
2111 int idx;
2112 int cells;
2113{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002114 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2116 && ccline.cmdspos % Columns + cells > Columns)
2117 ccline.cmdspos++;
2118}
2119#endif
2120
2121/*
2122 * Get an Ex command line for the ":" command.
2123 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124 char_u *
Bram Moolenaar78a15312009-05-15 19:33:18 +00002125getexline(c, cookie, indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126 int c; /* normally ':', NUL for ":append" */
Bram Moolenaar78a15312009-05-15 19:33:18 +00002127 void *cookie UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 int indent; /* indent for inside conditionals */
2129{
2130 /* When executing a register, remove ':' that's in front of each line. */
2131 if (exec_from_reg && vpeekc() == ':')
2132 (void)vgetc();
2133 return getcmdline(c, 1L, indent);
2134}
2135
2136/*
2137 * Get an Ex command line for Ex mode.
2138 * In Ex mode we only use the OS supplied line editing features and no
2139 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002140 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 char_u *
Bram Moolenaar78a15312009-05-15 19:33:18 +00002143getexmodeline(promptc, cookie, indent)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002144 int promptc; /* normally ':', NUL for ":append" and '?' for
2145 :s prompt */
Bram Moolenaar78a15312009-05-15 19:33:18 +00002146 void *cookie UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147 int indent; /* indent for inside conditionals */
2148{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002149 garray_T line_ga;
2150 char_u *pend;
2151 int startcol = 0;
Bram Moolenaar76624232007-07-28 12:21:47 +00002152 int c1 = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002153 int escaped = FALSE; /* CTRL-V typed */
2154 int vcol = 0;
2155 char_u *p;
Bram Moolenaar76624232007-07-28 12:21:47 +00002156 int prev_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002157
2158 /* Switch cursor on now. This avoids that it happens after the "\n", which
2159 * confuses the system function that computes tabstops. */
2160 cursor_on();
2161
2162 /* always start in column 0; write a newline if necessary */
2163 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002164 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002166 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002168 /* indent that is only displayed, not in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002169 if (p_prompt)
2170 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 while (indent-- > 0)
2172 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 }
2175
2176 ga_init2(&line_ga, 1, 30);
2177
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002178 /* autoindent for :insert and :append is in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002179 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002180 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002181 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002182 while (indent >= 8)
2183 {
2184 ga_append(&line_ga, TAB);
2185 msg_puts((char_u *)" ");
2186 indent -= 8;
2187 }
2188 while (indent-- > 0)
2189 {
2190 ga_append(&line_ga, ' ');
2191 msg_putchar(' ');
2192 }
2193 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002194 ++no_mapping;
2195 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002196
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 /*
2198 * Get the line, one character at a time.
2199 */
2200 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002201 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 {
2203 if (ga_grow(&line_ga, 40) == FAIL)
2204 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002206 /* Get one character at a time. Don't use inchar(), it can't handle
2207 * special characters. */
Bram Moolenaar76624232007-07-28 12:21:47 +00002208 prev_char = c1;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002209 c1 = vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210
2211 /*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002212 * Handle line editing.
2213 * Previously this was left to the system, putting the terminal in
2214 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002216 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002218 msg_putchar('\n');
2219 break;
2220 }
2221
2222 if (!escaped)
2223 {
2224 /* CR typed means "enter", which is NL */
2225 if (c1 == '\r')
2226 c1 = '\n';
2227
2228 if (c1 == BS || c1 == K_BS
2229 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002231 if (line_ga.ga_len > 0)
2232 {
2233 --line_ga.ga_len;
2234 goto redraw;
2235 }
2236 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 }
2238
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002239 if (c1 == Ctrl_U)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002241 msg_col = startcol;
2242 msg_clr_eos();
2243 line_ga.ga_len = 0;
2244 continue;
2245 }
2246
2247 if (c1 == Ctrl_T)
2248 {
2249 p = (char_u *)line_ga.ga_data;
2250 p[line_ga.ga_len] = NUL;
2251 indent = get_indent_str(p, 8);
2252 indent += curbuf->b_p_sw - indent % curbuf->b_p_sw;
2253add_indent:
2254 while (get_indent_str(p, 8) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002256 char_u *s = skipwhite(p);
2257
2258 ga_grow(&line_ga, 1);
2259 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2260 *s = ' ';
2261 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002263redraw:
2264 /* redraw the line */
2265 msg_col = startcol;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002266 vcol = 0;
2267 for (p = (char_u *)line_ga.ga_data;
2268 p < (char_u *)line_ga.ga_data + line_ga.ga_len; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002270 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002272 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002274 msg_putchar(' ');
2275 } while (++vcol % 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002277 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002279 msg_outtrans_len(p, 1);
2280 vcol += char2cells(*p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281 }
2282 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002283 msg_clr_eos();
Bram Moolenaar76624232007-07-28 12:21:47 +00002284 windgoto(msg_row, msg_col);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002285 continue;
2286 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002288 if (c1 == Ctrl_D)
2289 {
2290 /* Delete one shiftwidth. */
2291 p = (char_u *)line_ga.ga_data;
2292 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002294 if (prev_char == '^')
2295 ex_keep_indent = TRUE;
2296 indent = 0;
2297 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 }
2299 else
2300 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002301 p[line_ga.ga_len] = NUL;
2302 indent = get_indent_str(p, 8);
2303 --indent;
2304 indent -= indent % curbuf->b_p_sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002306 while (get_indent_str(p, 8) > indent)
2307 {
2308 char_u *s = skipwhite(p);
2309
2310 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2311 --line_ga.ga_len;
2312 }
2313 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002315
2316 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2317 {
2318 escaped = TRUE;
2319 continue;
2320 }
2321
2322 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
2323 if (IS_SPECIAL(c1))
2324 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002326
2327 if (IS_SPECIAL(c1))
2328 c1 = '?';
2329 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002330 if (c1 == '\n')
2331 msg_putchar('\n');
2332 else if (c1 == TAB)
2333 {
2334 /* Don't use chartabsize(), 'ts' can be different */
2335 do
2336 {
2337 msg_putchar(' ');
2338 } while (++vcol % 8);
2339 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002342 msg_outtrans_len(
2343 ((char_u *)line_ga.ga_data) + line_ga.ga_len, 1);
2344 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002345 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002346 ++line_ga.ga_len;
2347 escaped = FALSE;
2348
2349 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002350 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002351
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002352 /* We are done when a NL is entered, but not when it comes after an
2353 * odd number of backslashes, that results in a NUL. */
2354 if (line_ga.ga_len > 0 && pend[-1] == '\n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 {
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002356 int bcount = 0;
2357
2358 while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\')
2359 ++bcount;
2360
2361 if (bcount > 0)
2362 {
2363 /* Halve the number of backslashes: "\NL" -> "NUL", "\\NL" ->
2364 * "\NL", etc. */
2365 line_ga.ga_len -= (bcount + 1) / 2;
2366 pend -= (bcount + 1) / 2;
2367 pend[-1] = '\n';
2368 }
2369
2370 if ((bcount & 1) == 0)
2371 {
2372 --line_ga.ga_len;
2373 --pend;
2374 *pend = NUL;
2375 break;
2376 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 }
2378 }
2379
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002380 --no_mapping;
2381 --allow_keys;
2382
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383 /* make following messages go to the next line */
2384 msg_didout = FALSE;
2385 msg_col = 0;
2386 if (msg_row < Rows - 1)
2387 ++msg_row;
2388 emsg_on_display = FALSE; /* don't want ui_delay() */
2389
2390 if (got_int)
2391 ga_clear(&line_ga);
2392
2393 return (char_u *)line_ga.ga_data;
2394}
2395
Bram Moolenaare344bea2005-09-01 20:46:49 +00002396# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
2397 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398/*
2399 * Return TRUE if ccline.overstrike is on.
2400 */
2401 int
2402cmdline_overstrike()
2403{
2404 return ccline.overstrike;
2405}
2406
2407/*
2408 * Return TRUE if the cursor is at the end of the cmdline.
2409 */
2410 int
2411cmdline_at_end()
2412{
2413 return (ccline.cmdpos >= ccline.cmdlen);
2414}
2415#endif
2416
Bram Moolenaar9372a112005-12-06 19:59:18 +00002417#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418/*
2419 * Return the virtual column number at the current cursor position.
2420 * This is used by the IM code to obtain the start of the preedit string.
2421 */
2422 colnr_T
2423cmdline_getvcol_cursor()
2424{
2425 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
2426 return MAXCOL;
2427
2428# ifdef FEAT_MBYTE
2429 if (has_mbyte)
2430 {
2431 colnr_T col;
2432 int i = 0;
2433
2434 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002435 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436
2437 return col;
2438 }
2439 else
2440# endif
2441 return ccline.cmdpos;
2442}
2443#endif
2444
2445#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2446/*
2447 * If part of the command line is an IM preedit string, redraw it with
2448 * IM feedback attributes. The cursor position is restored after drawing.
2449 */
2450 static void
2451redrawcmd_preedit()
2452{
2453 if ((State & CMDLINE)
2454 && xic != NULL
Bram Moolenaar494c82a2006-09-14 08:25:49 +00002455 /* && im_get_status() doesn't work when using SCIM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 && !p_imdisable
2457 && im_is_preediting())
2458 {
2459 int cmdpos = 0;
2460 int cmdspos;
2461 int old_row;
2462 int old_col;
2463 colnr_T col;
2464
2465 old_row = msg_row;
2466 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002467 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468
2469# ifdef FEAT_MBYTE
2470 if (has_mbyte)
2471 {
2472 for (col = 0; col < preedit_start_col
2473 && cmdpos < ccline.cmdlen; ++col)
2474 {
2475 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002476 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 }
2478 }
2479 else
2480# endif
2481 {
2482 cmdspos += preedit_start_col;
2483 cmdpos += preedit_start_col;
2484 }
2485
2486 msg_row = cmdline_row + (cmdspos / (int)Columns);
2487 msg_col = cmdspos % (int)Columns;
2488 if (msg_row >= Rows)
2489 msg_row = Rows - 1;
2490
2491 for (col = 0; cmdpos < ccline.cmdlen; ++col)
2492 {
2493 int char_len;
2494 int char_attr;
2495
2496 char_attr = im_get_feedback_attr(col);
2497 if (char_attr < 0)
2498 break; /* end of preedit string */
2499
2500# ifdef FEAT_MBYTE
2501 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002502 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 else
2504# endif
2505 char_len = 1;
2506
2507 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
2508 cmdpos += char_len;
2509 }
2510
2511 msg_row = old_row;
2512 msg_col = old_col;
2513 }
2514}
2515#endif /* FEAT_XIM && FEAT_GUI_GTK */
2516
2517/*
2518 * Allocate a new command line buffer.
2519 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
2520 * Returns the new value of ccline.cmdbuff and ccline.cmdbufflen.
2521 */
2522 static void
2523alloc_cmdbuff(len)
2524 int len;
2525{
2526 /*
2527 * give some extra space to avoid having to allocate all the time
2528 */
2529 if (len < 80)
2530 len = 100;
2531 else
2532 len += 20;
2533
2534 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */
2535 ccline.cmdbufflen = len;
2536}
2537
2538/*
2539 * Re-allocate the command line to length len + something extra.
2540 * return FAIL for failure, OK otherwise
2541 */
2542 static int
2543realloc_cmdbuff(len)
2544 int len;
2545{
2546 char_u *p;
2547
Bram Moolenaar673b87b2010-08-13 19:12:07 +02002548 if (len < ccline.cmdbufflen)
2549 return OK; /* no need to resize */
2550
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551 p = ccline.cmdbuff;
2552 alloc_cmdbuff(len); /* will get some more */
2553 if (ccline.cmdbuff == NULL) /* out of memory */
2554 {
2555 ccline.cmdbuff = p; /* keep the old one */
2556 return FAIL;
2557 }
Bram Moolenaar35a34232010-08-13 16:51:26 +02002558 /* There isn't always a NUL after the command, but it may need to be
2559 * there, thus copy up to the NUL and add a NUL. */
2560 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen);
2561 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562 vim_free(p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002563
2564 if (ccline.xpc != NULL
2565 && ccline.xpc->xp_pattern != NULL
2566 && ccline.xpc->xp_context != EXPAND_NOTHING
2567 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL)
2568 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00002569 int i = (int)(ccline.xpc->xp_pattern - p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002570
2571 /* If xp_pattern points inside the old cmdbuff it needs to be adjusted
2572 * to point into the newly allocated memory. */
2573 if (i >= 0 && i <= ccline.cmdlen)
2574 ccline.xpc->xp_pattern = ccline.cmdbuff + i;
2575 }
2576
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 return OK;
2578}
2579
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002580#if defined(FEAT_ARABIC) || defined(PROTO)
2581static char_u *arshape_buf = NULL;
2582
2583# if defined(EXITFREE) || defined(PROTO)
2584 void
2585free_cmdline_buf()
2586{
2587 vim_free(arshape_buf);
2588}
2589# endif
2590#endif
2591
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592/*
2593 * Draw part of the cmdline at the current cursor position. But draw stars
2594 * when cmdline_star is TRUE.
2595 */
2596 static void
2597draw_cmdline(start, len)
2598 int start;
2599 int len;
2600{
2601#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2602 int i;
2603
2604 if (cmdline_star > 0)
2605 for (i = 0; i < len; ++i)
2606 {
2607 msg_putchar('*');
2608# ifdef FEAT_MBYTE
2609 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002610 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611# endif
2612 }
2613 else
2614#endif
2615#ifdef FEAT_ARABIC
2616 if (p_arshape && !p_tbidi && enc_utf8 && len > 0)
2617 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618 static int buflen = 0;
2619 char_u *p;
2620 int j;
2621 int newlen = 0;
2622 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00002623 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624 int prev_c = 0;
2625 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002626 int u8c;
2627 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629
2630 /*
2631 * Do arabic shaping into a temporary buffer. This is very
2632 * inefficient!
2633 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002634 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 {
2636 /* Re-allocate the buffer. We keep it around to avoid a lot of
2637 * alloc()/free() calls. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002638 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002639 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002640 arshape_buf = alloc(buflen);
2641 if (arshape_buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 return; /* out of memory */
2643 }
2644
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002645 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
2646 {
2647 /* Prepend a space to draw the leading composing char on. */
2648 arshape_buf[0] = ' ';
2649 newlen = 1;
2650 }
2651
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652 for (j = start; j < start + len; j += mb_l)
2653 {
2654 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002655 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002656 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 if (ARABIC_CHAR(u8c))
2658 {
2659 /* Do Arabic shaping. */
2660 if (cmdmsg_rl)
2661 {
2662 /* displaying from right to left */
2663 pc = prev_c;
2664 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002665 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 if (j + mb_l >= start + len)
2667 nc = NUL;
2668 else
2669 nc = utf_ptr2char(p + mb_l);
2670 }
2671 else
2672 {
2673 /* displaying from left to right */
2674 if (j + mb_l >= start + len)
2675 pc = NUL;
2676 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002677 {
2678 int pcc[MAX_MCO];
2679
2680 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002682 pc1 = pcc[0];
2683 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684 nc = prev_c;
2685 }
2686 prev_c = u8c;
2687
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002688 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002690 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002691 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002693 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
2694 if (u8cc[1] != 0)
2695 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002696 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697 }
2698 }
2699 else
2700 {
2701 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002702 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703 newlen += mb_l;
2704 }
2705 }
2706
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002707 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 }
2709 else
2710#endif
2711 msg_outtrans_len(ccline.cmdbuff + start, len);
2712}
2713
2714/*
2715 * Put a character on the command line. Shifts the following text to the
2716 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
2717 * "c" must be printable (fit in one display cell)!
2718 */
2719 void
2720putcmdline(c, shift)
2721 int c;
2722 int shift;
2723{
2724 if (cmd_silent)
2725 return;
2726 msg_no_more = TRUE;
2727 msg_putchar(c);
2728 if (shift)
2729 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2730 msg_no_more = FALSE;
2731 cursorcmd();
2732}
2733
2734/*
2735 * Undo a putcmdline(c, FALSE).
2736 */
2737 void
2738unputcmdline()
2739{
2740 if (cmd_silent)
2741 return;
2742 msg_no_more = TRUE;
2743 if (ccline.cmdlen == ccline.cmdpos)
2744 msg_putchar(' ');
2745 else
2746 draw_cmdline(ccline.cmdpos, 1);
2747 msg_no_more = FALSE;
2748 cursorcmd();
2749}
2750
2751/*
2752 * Put the given string, of the given length, onto the command line.
2753 * If len is -1, then STRLEN() is used to calculate the length.
2754 * If 'redraw' is TRUE then the new part of the command line, and the remaining
2755 * part will be redrawn, otherwise it will not. If this function is called
2756 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
2757 * called afterwards.
2758 */
2759 int
2760put_on_cmdline(str, len, redraw)
2761 char_u *str;
2762 int len;
2763 int redraw;
2764{
2765 int retval;
2766 int i;
2767 int m;
2768 int c;
2769
2770 if (len < 0)
2771 len = (int)STRLEN(str);
2772
2773 /* Check if ccline.cmdbuff needs to be longer */
2774 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
Bram Moolenaar673b87b2010-08-13 19:12:07 +02002775 retval = realloc_cmdbuff(ccline.cmdlen + len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776 else
2777 retval = OK;
2778 if (retval == OK)
2779 {
2780 if (!ccline.overstrike)
2781 {
2782 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2783 ccline.cmdbuff + ccline.cmdpos,
2784 (size_t)(ccline.cmdlen - ccline.cmdpos));
2785 ccline.cmdlen += len;
2786 }
2787 else
2788 {
2789#ifdef FEAT_MBYTE
2790 if (has_mbyte)
2791 {
2792 /* Count nr of characters in the new string. */
2793 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002794 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795 ++m;
2796 /* Count nr of bytes in cmdline that are overwritten by these
2797 * characters. */
2798 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002799 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 --m;
2801 if (i < ccline.cmdlen)
2802 {
2803 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2804 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
2805 ccline.cmdlen += ccline.cmdpos + len - i;
2806 }
2807 else
2808 ccline.cmdlen = ccline.cmdpos + len;
2809 }
2810 else
2811#endif
2812 if (ccline.cmdpos + len > ccline.cmdlen)
2813 ccline.cmdlen = ccline.cmdpos + len;
2814 }
2815 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
2816 ccline.cmdbuff[ccline.cmdlen] = NUL;
2817
2818#ifdef FEAT_MBYTE
2819 if (enc_utf8)
2820 {
2821 /* When the inserted text starts with a composing character,
2822 * backup to the character before it. There could be two of them.
2823 */
2824 i = 0;
2825 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
2826 while (ccline.cmdpos > 0 && utf_iscomposing(c))
2827 {
2828 i = (*mb_head_off)(ccline.cmdbuff,
2829 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
2830 ccline.cmdpos -= i;
2831 len += i;
2832 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
2833 }
2834# ifdef FEAT_ARABIC
2835 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
2836 {
2837 /* Check the previous character for Arabic combining pair. */
2838 i = (*mb_head_off)(ccline.cmdbuff,
2839 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
2840 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
2841 + ccline.cmdpos - i), c))
2842 {
2843 ccline.cmdpos -= i;
2844 len += i;
2845 }
2846 else
2847 i = 0;
2848 }
2849# endif
2850 if (i != 0)
2851 {
2852 /* Also backup the cursor position. */
2853 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
2854 ccline.cmdspos -= i;
2855 msg_col -= i;
2856 if (msg_col < 0)
2857 {
2858 msg_col += Columns;
2859 --msg_row;
2860 }
2861 }
2862 }
2863#endif
2864
2865 if (redraw && !cmd_silent)
2866 {
2867 msg_no_more = TRUE;
2868 i = cmdline_row;
2869 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2870 /* Avoid clearing the rest of the line too often. */
2871 if (cmdline_row != i || ccline.overstrike)
2872 msg_clr_eos();
2873 msg_no_more = FALSE;
2874 }
2875#ifdef FEAT_FKMAP
2876 /*
2877 * If we are in Farsi command mode, the character input must be in
2878 * Insert mode. So do not advance the cmdpos.
2879 */
2880 if (!cmd_fkmap)
2881#endif
2882 {
2883 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002884 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002886 if (m < 0) /* overflow, Columns or Rows at weird value */
2887 m = MAXCOL;
2888 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889 else
2890 m = MAXCOL;
2891 for (i = 0; i < len; ++i)
2892 {
2893 c = cmdline_charsize(ccline.cmdpos);
2894#ifdef FEAT_MBYTE
2895 /* count ">" for a double-wide char that doesn't fit. */
2896 if (has_mbyte)
2897 correct_cmdspos(ccline.cmdpos, c);
2898#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00002899 /* Stop cursor at the end of the screen, but do increment the
2900 * insert position, so that entering a very long command
2901 * works, even though you can't see it. */
2902 if (ccline.cmdspos + c < m)
2903 ccline.cmdspos += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904#ifdef FEAT_MBYTE
2905 if (has_mbyte)
2906 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002907 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908 if (c > len - i - 1)
2909 c = len - i - 1;
2910 ccline.cmdpos += c;
2911 i += c;
2912 }
2913#endif
2914 ++ccline.cmdpos;
2915 }
2916 }
2917 }
2918 if (redraw)
2919 msg_check();
2920 return retval;
2921}
2922
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002923static struct cmdline_info prev_ccline;
2924static int prev_ccline_used = FALSE;
2925
2926/*
2927 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
2928 * and overwrite it. But get_cmdline_str() may need it, thus make it
2929 * available globally in prev_ccline.
2930 */
2931 static void
2932save_cmdline(ccp)
2933 struct cmdline_info *ccp;
2934{
2935 if (!prev_ccline_used)
2936 {
2937 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info));
2938 prev_ccline_used = TRUE;
2939 }
2940 *ccp = prev_ccline;
2941 prev_ccline = ccline;
2942 ccline.cmdbuff = NULL;
2943 ccline.cmdprompt = NULL;
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002944 ccline.xpc = NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002945}
2946
2947/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00002948 * Restore ccline after it has been saved with save_cmdline().
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002949 */
2950 static void
2951restore_cmdline(ccp)
2952 struct cmdline_info *ccp;
2953{
2954 ccline = prev_ccline;
2955 prev_ccline = *ccp;
2956}
2957
Bram Moolenaar5a305422006-04-28 22:38:25 +00002958#if defined(FEAT_EVAL) || defined(PROTO)
2959/*
2960 * Save the command line into allocated memory. Returns a pointer to be
2961 * passed to restore_cmdline_alloc() later.
2962 * Returns NULL when failed.
2963 */
2964 char_u *
2965save_cmdline_alloc()
2966{
2967 struct cmdline_info *p;
2968
2969 p = (struct cmdline_info *)alloc((unsigned)sizeof(struct cmdline_info));
2970 if (p != NULL)
2971 save_cmdline(p);
2972 return (char_u *)p;
2973}
2974
2975/*
2976 * Restore the command line from the return value of save_cmdline_alloc().
2977 */
2978 void
2979restore_cmdline_alloc(p)
2980 char_u *p;
2981{
2982 if (p != NULL)
2983 {
2984 restore_cmdline((struct cmdline_info *)p);
2985 vim_free(p);
2986 }
2987}
2988#endif
2989
Bram Moolenaar8299df92004-07-10 09:47:34 +00002990/*
2991 * paste a yank register into the command line.
2992 * used by CTRL-R command in command-line mode
2993 * insert_reg() can't be used here, because special characters from the
2994 * register contents will be interpreted as commands.
2995 *
2996 * return FAIL for failure, OK otherwise
2997 */
2998 static int
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00002999cmdline_paste(regname, literally, remcr)
Bram Moolenaar8299df92004-07-10 09:47:34 +00003000 int regname;
3001 int literally; /* Insert text literally instead of "as typed" */
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003002 int remcr; /* remove trailing CR */
Bram Moolenaar8299df92004-07-10 09:47:34 +00003003{
3004 long i;
3005 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003006 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003007 int allocated;
3008 struct cmdline_info save_ccline;
3009
3010 /* check for valid regname; also accept special characters for CTRL-R in
3011 * the command line */
3012 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
3013 && regname != Ctrl_A && !valid_yank_reg(regname, FALSE))
3014 return FAIL;
3015
3016 /* A register containing CTRL-R can cause an endless loop. Allow using
3017 * CTRL-C to break the loop. */
3018 line_breakcheck();
3019 if (got_int)
3020 return FAIL;
3021
3022#ifdef FEAT_CLIPBOARD
3023 regname = may_get_selection(regname);
3024#endif
3025
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003026 /* Need to save and restore ccline. And set "textlock" to avoid nasty
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003027 * things like going to another buffer when evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003028 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003029 ++textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003030 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003031 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003032 restore_cmdline(&save_ccline);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003033
3034 if (i)
3035 {
3036 /* Got the value of a special register in "arg". */
3037 if (arg == NULL)
3038 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003039
3040 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
3041 * part of the word. */
3042 p = arg;
3043 if (p_is && regname == Ctrl_W)
3044 {
3045 char_u *w;
3046 int len;
3047
3048 /* Locate start of last word in the cmd buffer. */
3049 for (w = ccline.cmdbuff + ccline.cmdlen; w > ccline.cmdbuff; )
3050 {
3051#ifdef FEAT_MBYTE
3052 if (has_mbyte)
3053 {
3054 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
3055 if (!vim_iswordc(mb_ptr2char(w - len)))
3056 break;
3057 w -= len;
3058 }
3059 else
3060#endif
3061 {
3062 if (!vim_iswordc(w[-1]))
3063 break;
3064 --w;
3065 }
3066 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003067 len = (int)((ccline.cmdbuff + ccline.cmdlen) - w);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003068 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
3069 p += len;
3070 }
3071
3072 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003073 if (allocated)
3074 vim_free(arg);
3075 return OK;
3076 }
3077
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003078 return cmdline_paste_reg(regname, literally, remcr);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003079}
3080
3081/*
3082 * Put a string on the command line.
3083 * When "literally" is TRUE, insert literally.
3084 * When "literally" is FALSE, insert as typed, but don't leave the command
3085 * line.
3086 */
3087 void
3088cmdline_paste_str(s, literally)
3089 char_u *s;
3090 int literally;
3091{
3092 int c, cv;
3093
3094 if (literally)
3095 put_on_cmdline(s, -1, TRUE);
3096 else
3097 while (*s != NUL)
3098 {
3099 cv = *s;
3100 if (cv == Ctrl_V && s[1])
3101 ++s;
3102#ifdef FEAT_MBYTE
3103 if (has_mbyte)
Bram Moolenaar48be32b2008-06-20 10:56:16 +00003104 c = mb_cptr2char_adv(&s);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003105 else
3106#endif
3107 c = *s++;
3108 if (cv == Ctrl_V || c == ESC || c == Ctrl_C || c == CAR || c == NL
3109#ifdef UNIX
3110 || c == intr_char
3111#endif
3112 || (c == Ctrl_BSL && *s == Ctrl_N))
3113 stuffcharReadbuff(Ctrl_V);
3114 stuffcharReadbuff(c);
3115 }
3116}
3117
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118#ifdef FEAT_WILDMENU
3119/*
3120 * Delete characters on the command line, from "from" to the current
3121 * position.
3122 */
3123 static void
3124cmdline_del(from)
3125 int from;
3126{
3127 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
3128 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3129 ccline.cmdlen -= ccline.cmdpos - from;
3130 ccline.cmdpos = from;
3131}
3132#endif
3133
3134/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003135 * this function is called when the screen size changes and with incremental
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 * search
3137 */
3138 void
3139redrawcmdline()
3140{
3141 if (cmd_silent)
3142 return;
3143 need_wait_return = FALSE;
3144 compute_cmdrow();
3145 redrawcmd();
3146 cursorcmd();
3147}
3148
3149 static void
3150redrawcmdprompt()
3151{
3152 int i;
3153
3154 if (cmd_silent)
3155 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003156 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 msg_putchar(ccline.cmdfirstc);
3158 if (ccline.cmdprompt != NULL)
3159 {
3160 msg_puts_attr(ccline.cmdprompt, ccline.cmdattr);
3161 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
3162 /* do the reverse of set_cmdspos() */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003163 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164 --ccline.cmdindent;
3165 }
3166 else
3167 for (i = ccline.cmdindent; i > 0; --i)
3168 msg_putchar(' ');
3169}
3170
3171/*
3172 * Redraw what is currently on the command line.
3173 */
3174 void
3175redrawcmd()
3176{
3177 if (cmd_silent)
3178 return;
3179
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003180 /* when 'incsearch' is set there may be no command line while redrawing */
3181 if (ccline.cmdbuff == NULL)
3182 {
3183 windgoto(cmdline_row, 0);
3184 msg_clr_eos();
3185 return;
3186 }
3187
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188 msg_start();
3189 redrawcmdprompt();
3190
3191 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
3192 msg_no_more = TRUE;
3193 draw_cmdline(0, ccline.cmdlen);
3194 msg_clr_eos();
3195 msg_no_more = FALSE;
3196
3197 set_cmdspos_cursor();
3198
3199 /*
3200 * An emsg() before may have set msg_scroll. This is used in normal mode,
3201 * in cmdline mode we can reset them now.
3202 */
3203 msg_scroll = FALSE; /* next message overwrites cmdline */
3204
3205 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
3206 * in cmdline mode */
3207 skip_redraw = FALSE;
3208}
3209
3210 void
3211compute_cmdrow()
3212{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003213 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214 cmdline_row = Rows - 1;
3215 else
3216 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
3217 + W_STATUS_HEIGHT(lastwin);
3218}
3219
3220 static void
3221cursorcmd()
3222{
3223 if (cmd_silent)
3224 return;
3225
3226#ifdef FEAT_RIGHTLEFT
3227 if (cmdmsg_rl)
3228 {
3229 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3230 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3231 if (msg_row <= 0)
3232 msg_row = Rows - 1;
3233 }
3234 else
3235#endif
3236 {
3237 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3238 msg_col = ccline.cmdspos % (int)Columns;
3239 if (msg_row >= Rows)
3240 msg_row = Rows - 1;
3241 }
3242
3243 windgoto(msg_row, msg_col);
3244#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
3245 redrawcmd_preedit();
3246#endif
3247#ifdef MCH_CURSOR_SHAPE
3248 mch_update_cursor();
3249#endif
3250}
3251
3252 void
3253gotocmdline(clr)
3254 int clr;
3255{
3256 msg_start();
3257#ifdef FEAT_RIGHTLEFT
3258 if (cmdmsg_rl)
3259 msg_col = Columns - 1;
3260 else
3261#endif
3262 msg_col = 0; /* always start in column 0 */
3263 if (clr) /* clear the bottom line(s) */
3264 msg_clr_eos(); /* will reset clear_cmdline */
3265 windgoto(cmdline_row, 0);
3266}
3267
3268/*
3269 * Check the word in front of the cursor for an abbreviation.
3270 * Called when the non-id character "c" has been entered.
3271 * When an abbreviation is recognized it is removed from the text with
3272 * backspaces and the replacement string is inserted, followed by "c".
3273 */
3274 static int
3275ccheck_abbr(c)
3276 int c;
3277{
3278 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
3279 return FALSE;
3280
3281 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, 0);
3282}
3283
3284/*
3285 * Return FAIL if this is not an appropriate context in which to do
3286 * completion of anything, return OK if it is (even if there are no matches).
3287 * For the caller, this means that the character is just passed through like a
3288 * normal character (instead of being expanded). This allows :s/^I^D etc.
3289 */
3290 static int
3291nextwild(xp, type, options)
3292 expand_T *xp;
3293 int type;
3294 int options; /* extra options for ExpandOne() */
3295{
3296 int i, j;
3297 char_u *p1;
3298 char_u *p2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003299 int difflen;
3300 int v;
3301
3302 if (xp->xp_numfiles == -1)
3303 {
3304 set_expand_context(xp);
3305 cmd_showtail = expand_showtail(xp);
3306 }
3307
3308 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
3309 {
3310 beep_flush();
3311 return OK; /* Something illegal on command line */
3312 }
3313 if (xp->xp_context == EXPAND_NOTHING)
3314 {
3315 /* Caller can use the character as a normal char instead */
3316 return FAIL;
3317 }
3318
3319 MSG_PUTS("..."); /* show that we are busy */
3320 out_flush();
3321
3322 i = (int)(xp->xp_pattern - ccline.cmdbuff);
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003323 xp->xp_pattern_len = ccline.cmdpos - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324
3325 if (type == WILD_NEXT || type == WILD_PREV)
3326 {
3327 /*
3328 * Get next/previous match for a previous expanded pattern.
3329 */
3330 p2 = ExpandOne(xp, NULL, NULL, 0, type);
3331 }
3332 else
3333 {
3334 /*
3335 * Translate string into pattern and expand it.
3336 */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003337 if ((p1 = addstar(xp->xp_pattern, xp->xp_pattern_len,
3338 xp->xp_context)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339 p2 = NULL;
3340 else
3341 {
Bram Moolenaar94950a92010-12-02 16:01:29 +01003342 int use_options = options |
3343 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT|WILD_ESCAPE;
3344
3345 if (p_wic)
3346 use_options += WILD_ICASE;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003347 p2 = ExpandOne(xp, p1,
3348 vim_strnsave(&ccline.cmdbuff[i], xp->xp_pattern_len),
Bram Moolenaar94950a92010-12-02 16:01:29 +01003349 use_options, type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 vim_free(p1);
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003351 /* longest match: make sure it is not shorter, happens with :help */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352 if (p2 != NULL && type == WILD_LONGEST)
3353 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003354 for (j = 0; j < xp->xp_pattern_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 if (ccline.cmdbuff[i + j] == '*'
3356 || ccline.cmdbuff[i + j] == '?')
3357 break;
3358 if ((int)STRLEN(p2) < j)
3359 {
3360 vim_free(p2);
3361 p2 = NULL;
3362 }
3363 }
3364 }
3365 }
3366
3367 if (p2 != NULL && !got_int)
3368 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003369 difflen = (int)STRLEN(p2) - xp->xp_pattern_len;
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003370 if (ccline.cmdlen + difflen + 4 > ccline.cmdbufflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003372 v = realloc_cmdbuff(ccline.cmdlen + difflen + 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373 xp->xp_pattern = ccline.cmdbuff + i;
3374 }
3375 else
3376 v = OK;
3377 if (v == OK)
3378 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003379 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen],
3380 &ccline.cmdbuff[ccline.cmdpos],
3381 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3382 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383 ccline.cmdlen += difflen;
3384 ccline.cmdpos += difflen;
3385 }
3386 }
3387 vim_free(p2);
3388
3389 redrawcmd();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003390 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391
3392 /* When expanding a ":map" command and no matches are found, assume that
3393 * the key is supposed to be inserted literally */
3394 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL)
3395 return FAIL;
3396
3397 if (xp->xp_numfiles <= 0 && p2 == NULL)
3398 beep_flush();
3399 else if (xp->xp_numfiles == 1)
3400 /* free expanded pattern */
3401 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
3402
3403 return OK;
3404}
3405
3406/*
3407 * Do wildcard expansion on the string 'str'.
3408 * Chars that should not be expanded must be preceded with a backslash.
Bram Moolenaarf9821062008-06-20 16:31:07 +00003409 * Return a pointer to allocated memory containing the new string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 * Return NULL for failure.
3411 *
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003412 * "orig" is the originally expanded string, copied to allocated memory. It
3413 * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or
3414 * WILD_PREV "orig" should be NULL.
3415 *
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003416 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode"
3417 * is WILD_EXPAND_FREE or WILD_ALL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418 *
3419 * mode = WILD_FREE: just free previously expanded matches
3420 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches
3421 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches
3422 * mode = WILD_NEXT: use next match in multiple match, wrap to first
3423 * mode = WILD_PREV: use previous match in multiple match, wrap to first
3424 * mode = WILD_ALL: return all matches concatenated
3425 * mode = WILD_LONGEST: return longest matched part
3426 *
3427 * options = WILD_LIST_NOTFOUND: list entries without a match
3428 * options = WILD_HOME_REPLACE: do home_replace() for buffer names
3429 * options = WILD_USE_NL: Use '\n' for WILD_ALL
3430 * options = WILD_NO_BEEP: Don't beep for multiple matches
3431 * options = WILD_ADD_SLASH: add a slash after directory names
3432 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries
3433 * options = WILD_SILENT: don't print warning messages
3434 * options = WILD_ESCAPE: put backslash before special chars
Bram Moolenaar94950a92010-12-02 16:01:29 +01003435 * options = WILD_ICASE: ignore case for files
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436 *
3437 * The variables xp->xp_context and xp->xp_backslash must have been set!
3438 */
3439 char_u *
3440ExpandOne(xp, str, orig, options, mode)
3441 expand_T *xp;
3442 char_u *str;
3443 char_u *orig; /* allocated copy of original of expanded string */
3444 int options;
3445 int mode;
3446{
3447 char_u *ss = NULL;
3448 static int findex;
3449 static char_u *orig_save = NULL; /* kept value of orig */
Bram Moolenaar96426642007-10-30 16:37:15 +00003450 int orig_saved = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 int i;
3452 long_u len;
3453 int non_suf_match; /* number without matching suffix */
3454
3455 /*
3456 * first handle the case of using an old match
3457 */
3458 if (mode == WILD_NEXT || mode == WILD_PREV)
3459 {
3460 if (xp->xp_numfiles > 0)
3461 {
3462 if (mode == WILD_PREV)
3463 {
3464 if (findex == -1)
3465 findex = xp->xp_numfiles;
3466 --findex;
3467 }
3468 else /* mode == WILD_NEXT */
3469 ++findex;
3470
3471 /*
3472 * When wrapping around, return the original string, set findex to
3473 * -1.
3474 */
3475 if (findex < 0)
3476 {
3477 if (orig_save == NULL)
3478 findex = xp->xp_numfiles - 1;
3479 else
3480 findex = -1;
3481 }
3482 if (findex >= xp->xp_numfiles)
3483 {
3484 if (orig_save == NULL)
3485 findex = 0;
3486 else
3487 findex = -1;
3488 }
3489#ifdef FEAT_WILDMENU
3490 if (p_wmnu)
3491 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files,
3492 findex, cmd_showtail);
3493#endif
3494 if (findex == -1)
3495 return vim_strsave(orig_save);
3496 return vim_strsave(xp->xp_files[findex]);
3497 }
3498 else
3499 return NULL;
3500 }
3501
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003502 /* free old names */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST)
3504 {
3505 FreeWild(xp->xp_numfiles, xp->xp_files);
3506 xp->xp_numfiles = -1;
3507 vim_free(orig_save);
3508 orig_save = NULL;
3509 }
3510 findex = 0;
3511
3512 if (mode == WILD_FREE) /* only release file name */
3513 return NULL;
3514
3515 if (xp->xp_numfiles == -1)
3516 {
3517 vim_free(orig_save);
3518 orig_save = orig;
Bram Moolenaar96426642007-10-30 16:37:15 +00003519 orig_saved = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520
3521 /*
3522 * Do the expansion.
3523 */
3524 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files,
3525 options) == FAIL)
3526 {
3527#ifdef FNAME_ILLEGAL
3528 /* Illegal file name has been silently skipped. But when there
3529 * are wildcards, the real problem is that there was no match,
3530 * causing the pattern to be added, which has illegal characters.
3531 */
3532 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND))
3533 EMSG2(_(e_nomatch2), str);
3534#endif
3535 }
3536 else if (xp->xp_numfiles == 0)
3537 {
3538 if (!(options & WILD_SILENT))
3539 EMSG2(_(e_nomatch2), str);
3540 }
3541 else
3542 {
3543 /* Escape the matches for use on the command line. */
3544 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options);
3545
3546 /*
3547 * Check for matching suffixes in file names.
3548 */
3549 if (mode != WILD_ALL && mode != WILD_LONGEST)
3550 {
3551 if (xp->xp_numfiles)
3552 non_suf_match = xp->xp_numfiles;
3553 else
3554 non_suf_match = 1;
3555 if ((xp->xp_context == EXPAND_FILES
3556 || xp->xp_context == EXPAND_DIRECTORIES)
3557 && xp->xp_numfiles > 1)
3558 {
3559 /*
3560 * More than one match; check suffix.
3561 * The files will have been sorted on matching suffix in
3562 * expand_wildcards, only need to check the first two.
3563 */
3564 non_suf_match = 0;
3565 for (i = 0; i < 2; ++i)
3566 if (match_suffix(xp->xp_files[i]))
3567 ++non_suf_match;
3568 }
3569 if (non_suf_match != 1)
3570 {
3571 /* Can we ever get here unless it's while expanding
3572 * interactively? If not, we can get rid of this all
3573 * together. Don't really want to wait for this message
3574 * (and possibly have to hit return to continue!).
3575 */
3576 if (!(options & WILD_SILENT))
3577 EMSG(_(e_toomany));
3578 else if (!(options & WILD_NO_BEEP))
3579 beep_flush();
3580 }
3581 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE))
3582 ss = vim_strsave(xp->xp_files[0]);
3583 }
3584 }
3585 }
3586
3587 /* Find longest common part */
3588 if (mode == WILD_LONGEST && xp->xp_numfiles > 0)
3589 {
3590 for (len = 0; xp->xp_files[0][len]; ++len)
3591 {
3592 for (i = 0; i < xp->xp_numfiles; ++i)
3593 {
3594#ifdef CASE_INSENSITIVE_FILENAME
3595 if (xp->xp_context == EXPAND_DIRECTORIES
3596 || xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003597 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 || xp->xp_context == EXPAND_BUFFERS)
3599 {
3600 if (TOLOWER_LOC(xp->xp_files[i][len]) !=
3601 TOLOWER_LOC(xp->xp_files[0][len]))
3602 break;
3603 }
3604 else
3605#endif
3606 if (xp->xp_files[i][len] != xp->xp_files[0][len])
3607 break;
3608 }
3609 if (i < xp->xp_numfiles)
3610 {
3611 if (!(options & WILD_NO_BEEP))
3612 vim_beep();
3613 break;
3614 }
3615 }
3616 ss = alloc((unsigned)len + 1);
3617 if (ss)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003618 vim_strncpy(ss, xp->xp_files[0], (size_t)len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003619 findex = -1; /* next p_wc gets first one */
3620 }
3621
3622 /* Concatenate all matching names */
3623 if (mode == WILD_ALL && xp->xp_numfiles > 0)
3624 {
3625 len = 0;
3626 for (i = 0; i < xp->xp_numfiles; ++i)
3627 len += (long_u)STRLEN(xp->xp_files[i]) + 1;
3628 ss = lalloc(len, TRUE);
3629 if (ss != NULL)
3630 {
3631 *ss = NUL;
3632 for (i = 0; i < xp->xp_numfiles; ++i)
3633 {
3634 STRCAT(ss, xp->xp_files[i]);
3635 if (i != xp->xp_numfiles - 1)
3636 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " ");
3637 }
3638 }
3639 }
3640
3641 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL)
3642 ExpandCleanup(xp);
3643
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003644 /* Free "orig" if it wasn't stored in "orig_save". */
Bram Moolenaar96426642007-10-30 16:37:15 +00003645 if (!orig_saved)
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003646 vim_free(orig);
3647
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648 return ss;
3649}
3650
3651/*
3652 * Prepare an expand structure for use.
3653 */
3654 void
3655ExpandInit(xp)
3656 expand_T *xp;
3657{
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003658 xp->xp_pattern = NULL;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003659 xp->xp_pattern_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003661#ifndef BACKSLASH_IN_FILENAME
3662 xp->xp_shell = FALSE;
3663#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664 xp->xp_numfiles = -1;
3665 xp->xp_files = NULL;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003666#if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
3667 xp->xp_arg = NULL;
3668#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669}
3670
3671/*
3672 * Cleanup an expand structure after use.
3673 */
3674 void
3675ExpandCleanup(xp)
3676 expand_T *xp;
3677{
3678 if (xp->xp_numfiles >= 0)
3679 {
3680 FreeWild(xp->xp_numfiles, xp->xp_files);
3681 xp->xp_numfiles = -1;
3682 }
3683}
3684
3685 void
3686ExpandEscape(xp, str, numfiles, files, options)
3687 expand_T *xp;
3688 char_u *str;
3689 int numfiles;
3690 char_u **files;
3691 int options;
3692{
3693 int i;
3694 char_u *p;
3695
3696 /*
3697 * May change home directory back to "~"
3698 */
3699 if (options & WILD_HOME_REPLACE)
3700 tilde_replace(str, numfiles, files);
3701
3702 if (options & WILD_ESCAPE)
3703 {
3704 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003705 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 || xp->xp_context == EXPAND_BUFFERS
3707 || xp->xp_context == EXPAND_DIRECTORIES)
3708 {
3709 /*
3710 * Insert a backslash into a file name before a space, \, %, #
3711 * and wildmatch characters, except '~'.
3712 */
3713 for (i = 0; i < numfiles; ++i)
3714 {
3715 /* for ":set path=" we need to escape spaces twice */
3716 if (xp->xp_backslash == XP_BS_THREE)
3717 {
3718 p = vim_strsave_escaped(files[i], (char_u *)" ");
3719 if (p != NULL)
3720 {
3721 vim_free(files[i]);
3722 files[i] = p;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003723#if defined(BACKSLASH_IN_FILENAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724 p = vim_strsave_escaped(files[i], (char_u *)" ");
3725 if (p != NULL)
3726 {
3727 vim_free(files[i]);
3728 files[i] = p;
3729 }
3730#endif
3731 }
3732 }
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00003733#ifdef BACKSLASH_IN_FILENAME
3734 p = vim_strsave_fnameescape(files[i], FALSE);
3735#else
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003736 p = vim_strsave_fnameescape(files[i], xp->xp_shell);
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00003737#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738 if (p != NULL)
3739 {
3740 vim_free(files[i]);
3741 files[i] = p;
3742 }
3743
3744 /* If 'str' starts with "\~", replace "~" at start of
3745 * files[i] with "\~". */
3746 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~')
Bram Moolenaar45360022005-07-21 21:08:21 +00003747 escape_fname(&files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748 }
3749 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar45360022005-07-21 21:08:21 +00003750
3751 /* If the first file starts with a '+' escape it. Otherwise it
3752 * could be seen as "+cmd". */
3753 if (*files[0] == '+')
3754 escape_fname(&files[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755 }
3756 else if (xp->xp_context == EXPAND_TAGS)
3757 {
3758 /*
3759 * Insert a backslash before characters in a tag name that
3760 * would terminate the ":tag" command.
3761 */
3762 for (i = 0; i < numfiles; ++i)
3763 {
3764 p = vim_strsave_escaped(files[i], (char_u *)"\\|\"");
3765 if (p != NULL)
3766 {
3767 vim_free(files[i]);
3768 files[i] = p;
3769 }
3770 }
3771 }
3772 }
3773}
3774
3775/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003776 * Escape special characters in "fname" for when used as a file name argument
3777 * after a Vim command, or, when "shell" is non-zero, a shell command.
3778 * Returns the result in allocated memory.
3779 */
3780 char_u *
3781vim_strsave_fnameescape(fname, shell)
3782 char_u *fname;
3783 int shell;
3784{
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003785 char_u *p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003786#ifdef BACKSLASH_IN_FILENAME
3787 char_u buf[20];
3788 int j = 0;
3789
3790 /* Don't escape '[' and '{' if they are in 'isfname'. */
3791 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
3792 if ((*p != '[' && *p != '{') || !vim_isfilec(*p))
3793 buf[j++] = *p;
3794 buf[j] = NUL;
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003795 p = vim_strsave_escaped(fname, buf);
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003796#else
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003797 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
3798 if (shell && csh_like_shell() && p != NULL)
3799 {
3800 char_u *s;
3801
3802 /* For csh and similar shells need to put two backslashes before '!'.
3803 * One is taken by Vim, one by the shell. */
3804 s = vim_strsave_escaped(p, (char_u *)"!");
3805 vim_free(p);
3806 p = s;
3807 }
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003808#endif
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003809
3810 /* '>' and '+' are special at the start of some commands, e.g. ":edit" and
3811 * ":write". "cd -" has a special meaning. */
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003812 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL)))
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003813 escape_fname(&p);
3814
3815 return p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003816}
3817
3818/*
Bram Moolenaar45360022005-07-21 21:08:21 +00003819 * Put a backslash before the file name in "pp", which is in allocated memory.
3820 */
3821 static void
3822escape_fname(pp)
3823 char_u **pp;
3824{
3825 char_u *p;
3826
3827 p = alloc((unsigned)(STRLEN(*pp) + 2));
3828 if (p != NULL)
3829 {
3830 p[0] = '\\';
3831 STRCPY(p + 1, *pp);
3832 vim_free(*pp);
3833 *pp = p;
3834 }
3835}
3836
3837/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003838 * For each file name in files[num_files]:
3839 * If 'orig_pat' starts with "~/", replace the home directory with "~".
3840 */
3841 void
3842tilde_replace(orig_pat, num_files, files)
3843 char_u *orig_pat;
3844 int num_files;
3845 char_u **files;
3846{
3847 int i;
3848 char_u *p;
3849
3850 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
3851 {
3852 for (i = 0; i < num_files; ++i)
3853 {
3854 p = home_replace_save(NULL, files[i]);
3855 if (p != NULL)
3856 {
3857 vim_free(files[i]);
3858 files[i] = p;
3859 }
3860 }
3861 }
3862}
3863
3864/*
3865 * Show all matches for completion on the command line.
3866 * Returns EXPAND_NOTHING when the character that triggered expansion should
3867 * be inserted like a normal character.
3868 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 static int
3870showmatches(xp, wildmenu)
3871 expand_T *xp;
Bram Moolenaar78a15312009-05-15 19:33:18 +00003872 int wildmenu UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873{
3874#define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m])
3875 int num_files;
3876 char_u **files_found;
3877 int i, j, k;
3878 int maxlen;
3879 int lines;
3880 int columns;
3881 char_u *p;
3882 int lastlen;
3883 int attr;
3884 int showtail;
3885
3886 if (xp->xp_numfiles == -1)
3887 {
3888 set_expand_context(xp);
3889 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos,
3890 &num_files, &files_found);
3891 showtail = expand_showtail(xp);
3892 if (i != EXPAND_OK)
3893 return i;
3894
3895 }
3896 else
3897 {
3898 num_files = xp->xp_numfiles;
3899 files_found = xp->xp_files;
3900 showtail = cmd_showtail;
3901 }
3902
3903#ifdef FEAT_WILDMENU
3904 if (!wildmenu)
3905 {
3906#endif
3907 msg_didany = FALSE; /* lines_left will be set */
3908 msg_start(); /* prepare for paging */
3909 msg_putchar('\n');
3910 out_flush();
3911 cmdline_row = msg_row;
3912 msg_didany = FALSE; /* lines_left will be set again */
3913 msg_start(); /* prepare for paging */
3914#ifdef FEAT_WILDMENU
3915 }
3916#endif
3917
3918 if (got_int)
3919 got_int = FALSE; /* only int. the completion, not the cmd line */
3920#ifdef FEAT_WILDMENU
3921 else if (wildmenu)
3922 win_redr_status_matches(xp, num_files, files_found, 0, showtail);
3923#endif
3924 else
3925 {
3926 /* find the length of the longest file name */
3927 maxlen = 0;
3928 for (i = 0; i < num_files; ++i)
3929 {
3930 if (!showtail && (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003931 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003932 || xp->xp_context == EXPAND_BUFFERS))
3933 {
3934 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE);
3935 j = vim_strsize(NameBuff);
3936 }
3937 else
3938 j = vim_strsize(L_SHOWFILE(i));
3939 if (j > maxlen)
3940 maxlen = j;
3941 }
3942
3943 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3944 lines = num_files;
3945 else
3946 {
3947 /* compute the number of columns and lines for the listing */
3948 maxlen += 2; /* two spaces between file names */
3949 columns = ((int)Columns + 2) / maxlen;
3950 if (columns < 1)
3951 columns = 1;
3952 lines = (num_files + columns - 1) / columns;
3953 }
3954
3955 attr = hl_attr(HLF_D); /* find out highlighting for directories */
3956
3957 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3958 {
3959 MSG_PUTS_ATTR(_("tagname"), hl_attr(HLF_T));
3960 msg_clr_eos();
3961 msg_advance(maxlen - 3);
3962 MSG_PUTS_ATTR(_(" kind file\n"), hl_attr(HLF_T));
3963 }
3964
3965 /* list the files line by line */
3966 for (i = 0; i < lines; ++i)
3967 {
3968 lastlen = 999;
3969 for (k = i; k < num_files; k += lines)
3970 {
3971 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3972 {
3973 msg_outtrans_attr(files_found[k], hl_attr(HLF_D));
3974 p = files_found[k] + STRLEN(files_found[k]) + 1;
3975 msg_advance(maxlen + 1);
3976 msg_puts(p);
3977 msg_advance(maxlen + 3);
3978 msg_puts_long_attr(p + 2, hl_attr(HLF_D));
3979 break;
3980 }
3981 for (j = maxlen - lastlen; --j >= 0; )
3982 msg_putchar(' ');
3983 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003984 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 || xp->xp_context == EXPAND_BUFFERS)
3986 {
Bram Moolenaarb91e59b2010-03-17 19:13:27 +01003987 /* highlight directories */
Bram Moolenaar63fa5262010-03-23 18:06:52 +01003988 if (xp->xp_numfiles != -1)
3989 {
3990 char_u *halved_slash;
3991 char_u *exp_path;
3992
3993 /* Expansion was done before and special characters
3994 * were escaped, need to halve backslashes. Also
3995 * $HOME has been replaced with ~/. */
3996 exp_path = expand_env_save_opt(files_found[k], TRUE);
3997 halved_slash = backslash_halve_save(
3998 exp_path != NULL ? exp_path : files_found[k]);
3999 j = mch_isdir(halved_slash != NULL ? halved_slash
4000 : files_found[k]);
4001 vim_free(exp_path);
4002 vim_free(halved_slash);
4003 }
4004 else
4005 /* Expansion was done here, file names are literal. */
4006 j = mch_isdir(files_found[k]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007 if (showtail)
4008 p = L_SHOWFILE(k);
4009 else
4010 {
4011 home_replace(NULL, files_found[k], NameBuff, MAXPATHL,
4012 TRUE);
4013 p = NameBuff;
4014 }
4015 }
4016 else
4017 {
4018 j = FALSE;
4019 p = L_SHOWFILE(k);
4020 }
4021 lastlen = msg_outtrans_attr(p, j ? attr : 0);
4022 }
4023 if (msg_col > 0) /* when not wrapped around */
4024 {
4025 msg_clr_eos();
4026 msg_putchar('\n');
4027 }
4028 out_flush(); /* show one line at a time */
4029 if (got_int)
4030 {
4031 got_int = FALSE;
4032 break;
4033 }
4034 }
4035
4036 /*
4037 * we redraw the command below the lines that we have just listed
4038 * This is a bit tricky, but it saves a lot of screen updating.
4039 */
4040 cmdline_row = msg_row; /* will put it back later */
4041 }
4042
4043 if (xp->xp_numfiles == -1)
4044 FreeWild(num_files, files_found);
4045
4046 return EXPAND_OK;
4047}
4048
4049/*
4050 * Private gettail for showmatches() (and win_redr_status_matches()):
4051 * Find tail of file name path, but ignore trailing "/".
4052 */
4053 char_u *
4054sm_gettail(s)
4055 char_u *s;
4056{
4057 char_u *p;
4058 char_u *t = s;
4059 int had_sep = FALSE;
4060
4061 for (p = s; *p != NUL; )
4062 {
4063 if (vim_ispathsep(*p)
4064#ifdef BACKSLASH_IN_FILENAME
4065 && !rem_backslash(p)
4066#endif
4067 )
4068 had_sep = TRUE;
4069 else if (had_sep)
4070 {
4071 t = p;
4072 had_sep = FALSE;
4073 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004074 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 }
4076 return t;
4077}
4078
4079/*
4080 * Return TRUE if we only need to show the tail of completion matches.
4081 * When not completing file names or there is a wildcard in the path FALSE is
4082 * returned.
4083 */
4084 static int
4085expand_showtail(xp)
4086 expand_T *xp;
4087{
4088 char_u *s;
4089 char_u *end;
4090
4091 /* When not completing file names a "/" may mean something different. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004092 if (xp->xp_context != EXPAND_FILES
4093 && xp->xp_context != EXPAND_SHELLCMD
4094 && xp->xp_context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004095 return FALSE;
4096
4097 end = gettail(xp->xp_pattern);
4098 if (end == xp->xp_pattern) /* there is no path separator */
4099 return FALSE;
4100
4101 for (s = xp->xp_pattern; s < end; s++)
4102 {
4103 /* Skip escaped wildcards. Only when the backslash is not a path
4104 * separator, on DOS the '*' "path\*\file" must not be skipped. */
4105 if (rem_backslash(s))
4106 ++s;
4107 else if (vim_strchr((char_u *)"*?[", *s) != NULL)
4108 return FALSE;
4109 }
4110 return TRUE;
4111}
4112
4113/*
4114 * Prepare a string for expansion.
4115 * When expanding file names: The string will be used with expand_wildcards().
4116 * Copy the file name into allocated memory and add a '*' at the end.
4117 * When expanding other names: The string will be used with regcomp(). Copy
4118 * the name into allocated memory and prepend "^".
4119 */
4120 char_u *
4121addstar(fname, len, context)
4122 char_u *fname;
4123 int len;
4124 int context; /* EXPAND_FILES etc. */
4125{
4126 char_u *retval;
4127 int i, j;
4128 int new_len;
4129 char_u *tail;
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004130 int ends_in_star;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004132 if (context != EXPAND_FILES
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004133 && context != EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004134 && context != EXPAND_SHELLCMD
4135 && context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004136 {
4137 /*
4138 * Matching will be done internally (on something other than files).
4139 * So we convert the file-matching-type wildcards into our kind for
4140 * use with vim_regcomp(). First work out how long it will be:
4141 */
4142
4143 /* For help tags the translation is done in find_help_tags().
4144 * For a tag pattern starting with "/" no translation is needed. */
4145 if (context == EXPAND_HELP
4146 || context == EXPAND_COLORS
4147 || context == EXPAND_COMPILER
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004148 || context == EXPAND_OWNSYNTAX
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004149 || context == EXPAND_FILETYPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 || (context == EXPAND_TAGS && fname[0] == '/'))
4151 retval = vim_strnsave(fname, len);
4152 else
4153 {
4154 new_len = len + 2; /* +2 for '^' at start, NUL at end */
4155 for (i = 0; i < len; i++)
4156 {
4157 if (fname[i] == '*' || fname[i] == '~')
4158 new_len++; /* '*' needs to be replaced by ".*"
4159 '~' needs to be replaced by "\~" */
4160
4161 /* Buffer names are like file names. "." should be literal */
4162 if (context == EXPAND_BUFFERS && fname[i] == '.')
4163 new_len++; /* "." becomes "\." */
4164
4165 /* Custom expansion takes care of special things, match
4166 * backslashes literally (perhaps also for other types?) */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004167 if ((context == EXPAND_USER_DEFINED
4168 || context == EXPAND_USER_LIST) && fname[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 new_len++; /* '\' becomes "\\" */
4170 }
4171 retval = alloc(new_len);
4172 if (retval != NULL)
4173 {
4174 retval[0] = '^';
4175 j = 1;
4176 for (i = 0; i < len; i++, j++)
4177 {
4178 /* Skip backslash. But why? At least keep it for custom
4179 * expansion. */
4180 if (context != EXPAND_USER_DEFINED
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004181 && context != EXPAND_USER_LIST
4182 && fname[i] == '\\'
4183 && ++i == len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184 break;
4185
4186 switch (fname[i])
4187 {
4188 case '*': retval[j++] = '.';
4189 break;
4190 case '~': retval[j++] = '\\';
4191 break;
4192 case '?': retval[j] = '.';
4193 continue;
4194 case '.': if (context == EXPAND_BUFFERS)
4195 retval[j++] = '\\';
4196 break;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004197 case '\\': if (context == EXPAND_USER_DEFINED
4198 || context == EXPAND_USER_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 retval[j++] = '\\';
4200 break;
4201 }
4202 retval[j] = fname[i];
4203 }
4204 retval[j] = NUL;
4205 }
4206 }
4207 }
4208 else
4209 {
4210 retval = alloc(len + 4);
4211 if (retval != NULL)
4212 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004213 vim_strncpy(retval, fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004214
4215 /*
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004216 * Don't add a star to *, ~, ~user, $var or `cmd`.
4217 * * would become **, which walks the whole tree.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004218 * ~ would be at the start of the file name, but not the tail.
4219 * $ could be anywhere in the tail.
4220 * ` could be anywhere in the file name.
Bram Moolenaar066b6222008-01-04 14:17:47 +00004221 * When the name ends in '$' don't add a star, remove the '$'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004222 */
4223 tail = gettail(retval);
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004224 ends_in_star = (len > 0 && retval[len - 1] == '*');
4225#ifndef BACKSLASH_IN_FILENAME
4226 for (i = len - 2; i >= 0; --i)
4227 {
4228 if (retval[i] != '\\')
4229 break;
4230 ends_in_star = !ends_in_star;
4231 }
4232#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004233 if ((*retval != '~' || tail != retval)
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004234 && !ends_in_star
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235 && vim_strchr(tail, '$') == NULL
4236 && vim_strchr(retval, '`') == NULL)
4237 retval[len++] = '*';
Bram Moolenaar066b6222008-01-04 14:17:47 +00004238 else if (len > 0 && retval[len - 1] == '$')
4239 --len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240 retval[len] = NUL;
4241 }
4242 }
4243 return retval;
4244}
4245
4246/*
4247 * Must parse the command line so far to work out what context we are in.
4248 * Completion can then be done based on that context.
4249 * This routine sets the variables:
4250 * xp->xp_pattern The start of the pattern to be expanded within
4251 * the command line (ends at the cursor).
4252 * xp->xp_context The type of thing to expand. Will be one of:
4253 *
4254 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on
4255 * the command line, like an unknown command. Caller
4256 * should beep.
4257 * EXPAND_NOTHING Unrecognised context for completion, use char like
4258 * a normal char, rather than for completion. eg
4259 * :s/^I/
4260 * EXPAND_COMMANDS Cursor is still touching the command, so complete
4261 * it.
4262 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands.
4263 * EXPAND_FILES After command with XFILE set, or after setting
4264 * with P_EXPAND set. eg :e ^I, :w>>^I
4265 * EXPAND_DIRECTORIES In some cases this is used instead of the latter
4266 * when we know only directories are of interest. eg
4267 * :set dir=^I
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004268 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269 * EXPAND_SETTINGS Complete variable names. eg :set d^I
4270 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I
4271 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I
4272 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect
4273 * EXPAND_HELP Complete tags from the file 'helpfile'/tags
4274 * EXPAND_EVENTS Complete event names
4275 * EXPAND_SYNTAX Complete :syntax command arguments
4276 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names
4277 * EXPAND_AUGROUP Complete autocommand group names
4278 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I
4279 * EXPAND_MAPPINGS Complete mapping and abbreviation names,
4280 * eg :unmap a^I , :cunab x^I
4281 * EXPAND_FUNCTIONS Complete internal or user defined function names,
4282 * eg :call sub^I
4283 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I
4284 * EXPAND_EXPRESSION Complete internal or user defined function/variable
4285 * names in expressions, eg :while s^I
4286 * EXPAND_ENV_VARS Complete environment variable names
4287 */
4288 static void
4289set_expand_context(xp)
4290 expand_T *xp;
4291{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004292 /* only expansion for ':', '>' and '=' command-lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293 if (ccline.cmdfirstc != ':'
4294#ifdef FEAT_EVAL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004295 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '='
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004296 && !ccline.input_fn
Bram Moolenaar071d4272004-06-13 20:20:40 +00004297#endif
4298 )
4299 {
4300 xp->xp_context = EXPAND_NOTHING;
4301 return;
4302 }
4303 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos);
4304}
4305
4306 void
4307set_cmd_context(xp, str, len, col)
4308 expand_T *xp;
4309 char_u *str; /* start of command line */
4310 int len; /* length of command line (excl. NUL) */
4311 int col; /* position of cursor */
4312{
4313 int old_char = NUL;
4314 char_u *nextcomm;
4315
4316 /*
4317 * Avoid a UMR warning from Purify, only save the character if it has been
4318 * written before.
4319 */
4320 if (col < len)
4321 old_char = str[col];
4322 str[col] = NUL;
4323 nextcomm = str;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004324
4325#ifdef FEAT_EVAL
4326 if (ccline.cmdfirstc == '=')
Bram Moolenaar4f688582007-07-24 12:34:30 +00004327 {
4328# ifdef FEAT_CMDL_COMPL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004329 /* pass CMD_SIZE because there is no real command */
4330 set_context_for_expression(xp, str, CMD_SIZE);
Bram Moolenaar4f688582007-07-24 12:34:30 +00004331# endif
4332 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004333 else if (ccline.input_fn)
4334 {
4335 xp->xp_context = ccline.xp_context;
4336 xp->xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004337# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004338 xp->xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004339# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004340 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004341 else
4342#endif
4343 while (nextcomm != NULL)
4344 nextcomm = set_one_cmd_context(xp, nextcomm);
4345
Bram Moolenaar071d4272004-06-13 20:20:40 +00004346 str[col] = old_char;
4347}
4348
4349/*
4350 * Expand the command line "str" from context "xp".
4351 * "xp" must have been set by set_cmd_context().
4352 * xp->xp_pattern points into "str", to where the text that is to be expanded
4353 * starts.
4354 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the
4355 * cursor.
4356 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the
4357 * key that triggered expansion literally.
4358 * Returns EXPAND_OK otherwise.
4359 */
4360 int
4361expand_cmdline(xp, str, col, matchcount, matches)
4362 expand_T *xp;
4363 char_u *str; /* start of command line */
4364 int col; /* position of cursor */
4365 int *matchcount; /* return: nr of matches */
4366 char_u ***matches; /* return: array of pointers to matches */
4367{
4368 char_u *file_str = NULL;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004369 int options = WILD_ADD_SLASH|WILD_SILENT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370
4371 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
4372 {
4373 beep_flush();
4374 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */
4375 }
4376 if (xp->xp_context == EXPAND_NOTHING)
4377 {
4378 /* Caller can use the character as a normal char instead */
4379 return EXPAND_NOTHING;
4380 }
4381
4382 /* add star to file name, or convert to regexp if not exp. files. */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004383 xp->xp_pattern_len = (int)(str + col - xp->xp_pattern);
4384 file_str = addstar(xp->xp_pattern, xp->xp_pattern_len, xp->xp_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385 if (file_str == NULL)
4386 return EXPAND_UNSUCCESSFUL;
4387
Bram Moolenaar94950a92010-12-02 16:01:29 +01004388 if (p_wic)
4389 options += WILD_ICASE;
4390
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391 /* find all files that match the description */
Bram Moolenaar94950a92010-12-02 16:01:29 +01004392 if (ExpandFromContext(xp, file_str, matchcount, matches, options) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 {
4394 *matchcount = 0;
4395 *matches = NULL;
4396 }
4397 vim_free(file_str);
4398
4399 return EXPAND_OK;
4400}
4401
4402#ifdef FEAT_MULTI_LANG
4403/*
4404 * Cleanup matches for help tags: remove "@en" if "en" is the only language.
4405 */
4406static void cleanup_help_tags __ARGS((int num_file, char_u **file));
4407
4408 static void
4409cleanup_help_tags(num_file, file)
4410 int num_file;
4411 char_u **file;
4412{
4413 int i, j;
4414 int len;
4415
4416 for (i = 0; i < num_file; ++i)
4417 {
4418 len = (int)STRLEN(file[i]) - 3;
4419 if (len > 0 && STRCMP(file[i] + len, "@en") == 0)
4420 {
4421 /* Sorting on priority means the same item in another language may
4422 * be anywhere. Search all items for a match up to the "@en". */
4423 for (j = 0; j < num_file; ++j)
4424 if (j != i
4425 && (int)STRLEN(file[j]) == len + 3
4426 && STRNCMP(file[i], file[j], len + 1) == 0)
4427 break;
4428 if (j == num_file)
4429 file[i][len] = NUL;
4430 }
4431 }
4432}
4433#endif
4434
4435/*
4436 * Do the expansion based on xp->xp_context and "pat".
4437 */
4438 static int
4439ExpandFromContext(xp, pat, num_file, file, options)
4440 expand_T *xp;
4441 char_u *pat;
4442 int *num_file;
4443 char_u ***file;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004444 int options; /* EW_ flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445{
4446#ifdef FEAT_CMDL_COMPL
4447 regmatch_T regmatch;
4448#endif
4449 int ret;
4450 int flags;
4451
4452 flags = EW_DIR; /* include directories */
4453 if (options & WILD_LIST_NOTFOUND)
4454 flags |= EW_NOTFOUND;
4455 if (options & WILD_ADD_SLASH)
4456 flags |= EW_ADDSLASH;
4457 if (options & WILD_KEEP_ALL)
4458 flags |= EW_KEEPALL;
4459 if (options & WILD_SILENT)
4460 flags |= EW_SILENT;
4461
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004462 if (xp->xp_context == EXPAND_FILES
4463 || xp->xp_context == EXPAND_DIRECTORIES
4464 || xp->xp_context == EXPAND_FILES_IN_PATH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465 {
4466 /*
4467 * Expand file or directory names.
4468 */
4469 int free_pat = FALSE;
4470 int i;
4471
4472 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4473 * space */
4474 if (xp->xp_backslash != XP_BS_NONE)
4475 {
4476 free_pat = TRUE;
4477 pat = vim_strsave(pat);
4478 for (i = 0; pat[i]; ++i)
4479 if (pat[i] == '\\')
4480 {
4481 if (xp->xp_backslash == XP_BS_THREE
4482 && pat[i + 1] == '\\'
4483 && pat[i + 2] == '\\'
4484 && pat[i + 3] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004485 STRMOVE(pat + i, pat + i + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 if (xp->xp_backslash == XP_BS_ONE
4487 && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004488 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489 }
4490 }
4491
4492 if (xp->xp_context == EXPAND_FILES)
4493 flags |= EW_FILE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004494 else if (xp->xp_context == EXPAND_FILES_IN_PATH)
4495 flags |= (EW_FILE | EW_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 else
4497 flags = (flags | EW_DIR) & ~EW_FILE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004498 if (options & WILD_ICASE)
4499 flags |= EW_ICASE;
4500
Bram Moolenaard7834d32009-12-02 16:14:36 +00004501 /* Expand wildcards, supporting %:h and the like. */
4502 ret = expand_wildcards_eval(&pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 if (free_pat)
4504 vim_free(pat);
4505 return ret;
4506 }
4507
4508 *file = (char_u **)"";
4509 *num_file = 0;
4510 if (xp->xp_context == EXPAND_HELP)
4511 {
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00004512 /* With an empty argument we would get all the help tags, which is
4513 * very slow. Get matches for "help" instead. */
4514 if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat,
4515 num_file, file, FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004516 {
4517#ifdef FEAT_MULTI_LANG
4518 cleanup_help_tags(*num_file, *file);
4519#endif
4520 return OK;
4521 }
4522 return FAIL;
4523 }
4524
4525#ifndef FEAT_CMDL_COMPL
4526 return FAIL;
4527#else
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004528 if (xp->xp_context == EXPAND_SHELLCMD)
4529 return expand_shellcmd(pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530 if (xp->xp_context == EXPAND_OLD_SETTING)
4531 return ExpandOldSetting(num_file, file);
4532 if (xp->xp_context == EXPAND_BUFFERS)
4533 return ExpandBufnames(pat, num_file, file, options);
4534 if (xp->xp_context == EXPAND_TAGS
4535 || xp->xp_context == EXPAND_TAGS_LISTFILES)
4536 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file);
4537 if (xp->xp_context == EXPAND_COLORS)
4538 return ExpandRTDir(pat, num_file, file, "colors");
4539 if (xp->xp_context == EXPAND_COMPILER)
4540 return ExpandRTDir(pat, num_file, file, "compiler");
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004541 if (xp->xp_context == EXPAND_OWNSYNTAX)
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004542 return ExpandRTDir(pat, num_file, file, "syntax");
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004543 if (xp->xp_context == EXPAND_FILETYPE)
4544 return ExpandRTDir(pat, num_file, file, "{syntax,indent,ftplugin}");
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004545# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4546 if (xp->xp_context == EXPAND_USER_LIST)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004547 return ExpandUserList(xp, num_file, file);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004548# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004549
4550 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4551 if (regmatch.regprog == NULL)
4552 return FAIL;
4553
4554 /* set ignore-case according to p_ic, p_scs and pat */
4555 regmatch.rm_ic = ignorecase(pat);
4556
4557 if (xp->xp_context == EXPAND_SETTINGS
4558 || xp->xp_context == EXPAND_BOOL_SETTINGS)
4559 ret = ExpandSettings(xp, &regmatch, num_file, file);
4560 else if (xp->xp_context == EXPAND_MAPPINGS)
4561 ret = ExpandMappings(&regmatch, num_file, file);
4562# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4563 else if (xp->xp_context == EXPAND_USER_DEFINED)
4564 ret = ExpandUserDefined(xp, &regmatch, num_file, file);
4565# endif
4566 else
4567 {
4568 static struct expgen
4569 {
4570 int context;
4571 char_u *((*func)__ARGS((expand_T *, int)));
4572 int ic;
4573 } tab[] =
4574 {
4575 {EXPAND_COMMANDS, get_command_name, FALSE},
Bram Moolenaar42b4dda2010-03-02 15:56:05 +01004576 {EXPAND_BEHAVE, get_behave_arg, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577#ifdef FEAT_USR_CMDS
4578 {EXPAND_USER_COMMANDS, get_user_commands, FALSE},
4579 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE},
4580 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE},
4581 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE},
4582#endif
4583#ifdef FEAT_EVAL
4584 {EXPAND_USER_VARS, get_user_var_name, FALSE},
4585 {EXPAND_FUNCTIONS, get_function_name, FALSE},
4586 {EXPAND_USER_FUNC, get_user_func_name, FALSE},
4587 {EXPAND_EXPRESSION, get_expr_name, FALSE},
4588#endif
4589#ifdef FEAT_MENU
4590 {EXPAND_MENUS, get_menu_name, FALSE},
4591 {EXPAND_MENUNAMES, get_menu_names, FALSE},
4592#endif
4593#ifdef FEAT_SYN_HL
4594 {EXPAND_SYNTAX, get_syntax_name, TRUE},
4595#endif
4596 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE},
4597#ifdef FEAT_AUTOCMD
4598 {EXPAND_EVENTS, get_event_name, TRUE},
4599 {EXPAND_AUGROUP, get_augroup_name, TRUE},
4600#endif
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004601#ifdef FEAT_CSCOPE
4602 {EXPAND_CSCOPE, get_cscope_name, TRUE},
4603#endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004604#ifdef FEAT_SIGNS
4605 {EXPAND_SIGN, get_sign_name, TRUE},
4606#endif
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004607#ifdef FEAT_PROFILE
4608 {EXPAND_PROFILE, get_profile_name, TRUE},
4609#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004610#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
4611 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
4612 {EXPAND_LANGUAGE, get_lang_arg, TRUE},
4613#endif
4614 {EXPAND_ENV_VARS, get_env_name, TRUE},
4615 };
4616 int i;
4617
4618 /*
4619 * Find a context in the table and call the ExpandGeneric() with the
4620 * right function to do the expansion.
4621 */
4622 ret = FAIL;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00004623 for (i = 0; i < (int)(sizeof(tab) / sizeof(struct expgen)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 if (xp->xp_context == tab[i].context)
4625 {
4626 if (tab[i].ic)
4627 regmatch.rm_ic = TRUE;
4628 ret = ExpandGeneric(xp, &regmatch, num_file, file, tab[i].func);
4629 break;
4630 }
4631 }
4632
4633 vim_free(regmatch.regprog);
4634
4635 return ret;
4636#endif /* FEAT_CMDL_COMPL */
4637}
4638
4639#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4640/*
4641 * Expand a list of names.
4642 *
4643 * Generic function for command line completion. It calls a function to
4644 * obtain strings, one by one. The strings are matched against a regexp
4645 * program. Matching strings are copied into an array, which is returned.
4646 *
4647 * Returns OK when no problems encountered, FAIL for error (out of memory).
4648 */
4649 int
4650ExpandGeneric(xp, regmatch, num_file, file, func)
4651 expand_T *xp;
4652 regmatch_T *regmatch;
4653 int *num_file;
4654 char_u ***file;
4655 char_u *((*func)__ARGS((expand_T *, int)));
4656 /* returns a string from the list */
4657{
4658 int i;
4659 int count = 0;
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004660 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661 char_u *str;
4662
4663 /* do this loop twice:
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004664 * round == 0: count the number of matching names
4665 * round == 1: copy the matching names into allocated memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666 */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004667 for (round = 0; round <= 1; ++round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004668 {
4669 for (i = 0; ; ++i)
4670 {
4671 str = (*func)(xp, i);
4672 if (str == NULL) /* end of list */
4673 break;
4674 if (*str == NUL) /* skip empty strings */
4675 continue;
4676
4677 if (vim_regexec(regmatch, str, (colnr_T)0))
4678 {
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004679 if (round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680 {
4681 str = vim_strsave_escaped(str, (char_u *)" \t\\.");
4682 (*file)[count] = str;
4683#ifdef FEAT_MENU
4684 if (func == get_menu_names && str != NULL)
4685 {
4686 /* test for separator added by get_menu_names() */
4687 str += STRLEN(str) - 1;
4688 if (*str == '\001')
4689 *str = '.';
4690 }
4691#endif
4692 }
4693 ++count;
4694 }
4695 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004696 if (round == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004697 {
4698 if (count == 0)
4699 return OK;
4700 *num_file = count;
4701 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
4702 if (*file == NULL)
4703 {
4704 *file = (char_u **)"";
4705 return FAIL;
4706 }
4707 count = 0;
4708 }
4709 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004710
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004711 /* Sort the results. Keep menu's in the specified order. */
4712 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS)
4713 sort_strings(*file, *num_file);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004714
Bram Moolenaar4f688582007-07-24 12:34:30 +00004715#ifdef FEAT_CMDL_COMPL
4716 /* Reset the variables used for special highlight names expansion, so that
4717 * they don't show up when getting normal highlight names by ID. */
4718 reset_expand_highlight();
4719#endif
4720
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721 return OK;
4722}
4723
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004724/*
4725 * Complete a shell command.
4726 * Returns FAIL or OK;
4727 */
4728 static int
4729expand_shellcmd(filepat, num_file, file, flagsarg)
4730 char_u *filepat; /* pattern to match with command names */
4731 int *num_file; /* return: number of matches */
4732 char_u ***file; /* return: array with matches */
4733 int flagsarg; /* EW_ flags */
4734{
4735 char_u *pat;
4736 int i;
4737 char_u *path;
4738 int mustfree = FALSE;
4739 garray_T ga;
4740 char_u *buf = alloc(MAXPATHL);
4741 size_t l;
4742 char_u *s, *e;
4743 int flags = flagsarg;
4744 int ret;
4745
4746 if (buf == NULL)
4747 return FAIL;
4748
4749 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4750 * space */
4751 pat = vim_strsave(filepat);
4752 for (i = 0; pat[i]; ++i)
4753 if (pat[i] == '\\' && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004754 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004755
4756 flags |= EW_FILE | EW_EXEC;
4757
4758 /* For an absolute name we don't use $PATH. */
Bram Moolenaar68c31742006-09-02 15:54:18 +00004759 if (mch_isFullName(pat))
4760 path = (char_u *)" ";
4761 else if ((pat[0] == '.' && (vim_ispathsep(pat[1])
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004762 || (pat[1] == '.' && vim_ispathsep(pat[2])))))
4763 path = (char_u *)".";
4764 else
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01004765 {
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004766 path = vim_getenv((char_u *)"PATH", &mustfree);
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01004767 if (path == NULL)
4768 path = (char_u *)"";
4769 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004770
4771 /*
4772 * Go over all directories in $PATH. Expand matches in that directory and
4773 * collect them in "ga".
4774 */
4775 ga_init2(&ga, (int)sizeof(char *), 10);
4776 for (s = path; *s != NUL; s = e)
4777 {
Bram Moolenaar68c31742006-09-02 15:54:18 +00004778 if (*s == ' ')
4779 ++s; /* Skip space used for absolute path name. */
4780
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004781#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
4782 e = vim_strchr(s, ';');
4783#else
4784 e = vim_strchr(s, ':');
4785#endif
4786 if (e == NULL)
4787 e = s + STRLEN(s);
4788
4789 l = e - s;
4790 if (l > MAXPATHL - 5)
4791 break;
4792 vim_strncpy(buf, s, l);
4793 add_pathsep(buf);
4794 l = STRLEN(buf);
4795 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l);
4796
4797 /* Expand matches in one directory of $PATH. */
4798 ret = expand_wildcards(1, &buf, num_file, file, flags);
4799 if (ret == OK)
4800 {
4801 if (ga_grow(&ga, *num_file) == FAIL)
4802 FreeWild(*num_file, *file);
4803 else
4804 {
4805 for (i = 0; i < *num_file; ++i)
4806 {
4807 s = (*file)[i];
4808 if (STRLEN(s) > l)
4809 {
4810 /* Remove the path again. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004811 STRMOVE(s, s + l);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004812 ((char_u **)ga.ga_data)[ga.ga_len++] = s;
4813 }
4814 else
4815 vim_free(s);
4816 }
4817 vim_free(*file);
4818 }
4819 }
4820 if (*e != NUL)
4821 ++e;
4822 }
4823 *file = ga.ga_data;
4824 *num_file = ga.ga_len;
4825
4826 vim_free(buf);
4827 vim_free(pat);
4828 if (mustfree)
4829 vim_free(path);
4830 return OK;
4831}
4832
4833
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00004835static 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));
4836
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837/*
Bram Moolenaar21669c02008-01-18 12:16:16 +00004838 * Call "user_expand_func()" to invoke a user defined VimL function and return
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004839 * the result (either a string or a List).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004841 static void *
4842call_user_expand_func(user_expand_func, xp, num_file, file)
4843 void *(*user_expand_func) __ARGS((char_u *, int, char_u **, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844 expand_T *xp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845 int *num_file;
4846 char_u ***file;
4847{
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004848 char_u keep;
4849 char_u num[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850 char_u *args[3];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851 int save_current_SID = current_SID;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004852 void *ret;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004853 struct cmdline_info save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854
4855 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0')
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004856 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004857 *num_file = 0;
4858 *file = NULL;
4859
Bram Moolenaar21669c02008-01-18 12:16:16 +00004860 if (ccline.cmdbuff == NULL)
4861 {
4862 /* Completion from Insert mode, pass fake arguments. */
4863 keep = 0;
Bram Moolenaar9a31f882008-01-22 11:44:47 +00004864 sprintf((char *)num, "%d", (int)STRLEN(xp->xp_pattern));
Bram Moolenaar21669c02008-01-18 12:16:16 +00004865 args[1] = xp->xp_pattern;
4866 }
4867 else
4868 {
4869 /* Completion on the command line, pass real arguments. */
4870 keep = ccline.cmdbuff[ccline.cmdlen];
4871 ccline.cmdbuff[ccline.cmdlen] = 0;
4872 sprintf((char *)num, "%d", ccline.cmdpos);
4873 args[1] = ccline.cmdbuff;
4874 }
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004875 args[0] = vim_strnsave(xp->xp_pattern, xp->xp_pattern_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876 args[2] = num;
4877
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004878 /* Save the cmdline, we don't know what the function may do. */
4879 save_ccline = ccline;
4880 ccline.cmdbuff = NULL;
4881 ccline.cmdprompt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004882 current_SID = xp->xp_scriptID;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004883
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004884 ret = user_expand_func(xp->xp_arg, 3, args, FALSE);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004885
4886 ccline = save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887 current_SID = save_current_SID;
Bram Moolenaar21669c02008-01-18 12:16:16 +00004888 if (ccline.cmdbuff != NULL)
4889 ccline.cmdbuff[ccline.cmdlen] = keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004890
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004891 vim_free(args[0]);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004892 return ret;
4893}
4894
4895/*
4896 * Expand names with a function defined by the user.
4897 */
4898 static int
4899ExpandUserDefined(xp, regmatch, num_file, file)
4900 expand_T *xp;
4901 regmatch_T *regmatch;
4902 int *num_file;
4903 char_u ***file;
4904{
4905 char_u *retstr;
4906 char_u *s;
4907 char_u *e;
4908 char_u keep;
4909 garray_T ga;
4910
4911 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file);
4912 if (retstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 return FAIL;
4914
4915 ga_init2(&ga, (int)sizeof(char *), 3);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004916 for (s = retstr; *s != NUL; s = e)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 {
4918 e = vim_strchr(s, '\n');
4919 if (e == NULL)
4920 e = s + STRLEN(s);
4921 keep = *e;
4922 *e = 0;
4923
4924 if (xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0)
4925 {
4926 *e = keep;
4927 if (*e != NUL)
4928 ++e;
4929 continue;
4930 }
4931
4932 if (ga_grow(&ga, 1) == FAIL)
4933 break;
4934
4935 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s));
4936 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937
4938 *e = keep;
4939 if (*e != NUL)
4940 ++e;
4941 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004942 vim_free(retstr);
4943 *file = ga.ga_data;
4944 *num_file = ga.ga_len;
4945 return OK;
4946}
4947
4948/*
4949 * Expand names with a list returned by a function defined by the user.
4950 */
4951 static int
4952ExpandUserList(xp, num_file, file)
4953 expand_T *xp;
4954 int *num_file;
4955 char_u ***file;
4956{
4957 list_T *retlist;
4958 listitem_T *li;
4959 garray_T ga;
4960
4961 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file);
4962 if (retlist == NULL)
4963 return FAIL;
4964
4965 ga_init2(&ga, (int)sizeof(char *), 3);
4966 /* Loop over the items in the list. */
4967 for (li = retlist->lv_first; li != NULL; li = li->li_next)
4968 {
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00004969 if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL)
4970 continue; /* Skip non-string items and empty strings */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004971
4972 if (ga_grow(&ga, 1) == FAIL)
4973 break;
4974
4975 ((char_u **)ga.ga_data)[ga.ga_len] =
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00004976 vim_strsave(li->li_tv.vval.v_string);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004977 ++ga.ga_len;
4978 }
4979 list_unref(retlist);
4980
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 *file = ga.ga_data;
4982 *num_file = ga.ga_len;
4983 return OK;
4984}
4985#endif
4986
4987/*
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004988 * Expand color scheme, compiler or filetype names:
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004989 * 'runtimepath'/{dirnames}/{pat}.vim
4990 * dirnames may contain one directory (ex: "colorscheme") or can be a glob
4991 * expression matching multiple directories (ex: "{syntax,ftplugin,indent}").
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992 */
4993 static int
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004994ExpandRTDir(pat, num_file, file, dirnames)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995 char_u *pat;
4996 int *num_file;
4997 char_u ***file;
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004998 char *dirnames;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999{
5000 char_u *all;
5001 char_u *s;
5002 char_u *e;
5003 garray_T ga;
5004
5005 *num_file = 0;
5006 *file = NULL;
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005007 s = alloc((unsigned)(STRLEN(pat) + STRLEN(dirnames) + 7));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 if (s == NULL)
5009 return FAIL;
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005010 sprintf((char *)s, "%s/%s*.vim", dirnames, pat);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005011 all = globpath(p_rtp, s, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 vim_free(s);
5013 if (all == NULL)
5014 return FAIL;
5015
5016 ga_init2(&ga, (int)sizeof(char *), 3);
5017 for (s = all; *s != NUL; s = e)
5018 {
5019 e = vim_strchr(s, '\n');
5020 if (e == NULL)
5021 e = s + STRLEN(s);
5022 if (ga_grow(&ga, 1) == FAIL)
5023 break;
5024 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0)
5025 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005026 for (s = e - 4; s > all; mb_ptr_back(all, s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 if (*s == '\n' || vim_ispathsep(*s))
5028 break;
5029 ++s;
5030 ((char_u **)ga.ga_data)[ga.ga_len] =
5031 vim_strnsave(s, (int)(e - s - 4));
5032 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 }
5034 if (*e != NUL)
5035 ++e;
5036 }
5037 vim_free(all);
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005038
5039 /* Sort and remove duplicates which can happen when specifying multiple
Bram Moolenaardc685ab2010-08-13 21:16:49 +02005040 * directories in dirnames such as "{syntax,ftplugin,indent}". */
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005041 remove_duplicates(&ga);
5042
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 *file = ga.ga_data;
5044 *num_file = ga.ga_len;
5045 return OK;
5046}
5047
5048#endif
5049
5050#if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO)
5051/*
5052 * Expand "file" for all comma-separated directories in "path".
5053 * Returns an allocated string with all matches concatenated, separated by
5054 * newlines. Returns NULL for an error or no matches.
5055 */
5056 char_u *
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005057globpath(path, file, expand_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 char_u *path;
5059 char_u *file;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005060 int expand_options;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061{
5062 expand_T xpc;
5063 char_u *buf;
5064 garray_T ga;
5065 int i;
5066 int len;
5067 int num_p;
5068 char_u **p;
5069 char_u *cur = NULL;
5070
5071 buf = alloc(MAXPATHL);
5072 if (buf == NULL)
5073 return NULL;
5074
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005075 ExpandInit(&xpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005077
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078 ga_init2(&ga, 1, 100);
5079
5080 /* Loop over all entries in {path}. */
5081 while (*path != NUL)
5082 {
5083 /* Copy one item of the path to buf[] and concatenate the file name. */
5084 copy_option_part(&path, buf, MAXPATHL, ",");
5085 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
5086 {
Bram Moolenaar2d7c47d2010-08-10 19:50:26 +02005087# if defined(MSWIN) || defined(MSDOS)
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005088 /* Using the platform's path separator (\) makes vim incorrectly
5089 * treat it as an escape character, use '/' instead. */
5090 if (*buf != NUL && !after_pathsep(buf, buf + STRLEN(buf)))
5091 STRCAT(buf, "/");
5092# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093 add_pathsep(buf);
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005094# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 STRCAT(buf, file);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005096 if (ExpandFromContext(&xpc, buf, &num_p, &p,
5097 WILD_SILENT|expand_options) != FAIL && num_p > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005099 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT|expand_options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100 for (len = 0, i = 0; i < num_p; ++i)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005101 len += (int)STRLEN(p[i]) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005102
5103 /* Concatenate new results to previous ones. */
5104 if (ga_grow(&ga, len) == OK)
5105 {
5106 cur = (char_u *)ga.ga_data + ga.ga_len;
5107 for (i = 0; i < num_p; ++i)
5108 {
5109 STRCPY(cur, p[i]);
5110 cur += STRLEN(p[i]);
5111 *cur++ = '\n';
5112 }
5113 ga.ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 }
5115 FreeWild(num_p, p);
5116 }
5117 }
5118 }
5119 if (cur != NULL)
5120 *--cur = 0; /* Replace trailing newline with NUL */
5121
5122 vim_free(buf);
5123 return (char_u *)ga.ga_data;
5124}
5125
5126#endif
5127
5128#if defined(FEAT_CMDHIST) || defined(PROTO)
5129
5130/*********************************
5131 * Command line history stuff *
5132 *********************************/
5133
5134/*
5135 * Translate a history character to the associated type number.
5136 */
5137 static int
5138hist_char2type(c)
5139 int c;
5140{
5141 if (c == ':')
5142 return HIST_CMD;
5143 if (c == '=')
5144 return HIST_EXPR;
5145 if (c == '@')
5146 return HIST_INPUT;
5147 if (c == '>')
5148 return HIST_DEBUG;
5149 return HIST_SEARCH; /* must be '?' or '/' */
5150}
5151
5152/*
5153 * Table of history names.
5154 * These names are used in :history and various hist...() functions.
5155 * It is sufficient to give the significant prefix of a history name.
5156 */
5157
5158static char *(history_names[]) =
5159{
5160 "cmd",
5161 "search",
5162 "expr",
5163 "input",
5164 "debug",
5165 NULL
5166};
5167
5168/*
5169 * init_history() - Initialize the command line history.
5170 * Also used to re-allocate the history when the size changes.
5171 */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00005172 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173init_history()
5174{
5175 int newlen; /* new length of history table */
5176 histentry_T *temp;
5177 int i;
5178 int j;
5179 int type;
5180
5181 /*
5182 * If size of history table changed, reallocate it
5183 */
5184 newlen = (int)p_hi;
5185 if (newlen != hislen) /* history length changed */
5186 {
5187 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */
5188 {
5189 if (newlen)
5190 {
5191 temp = (histentry_T *)lalloc(
5192 (long_u)(newlen * sizeof(histentry_T)), TRUE);
5193 if (temp == NULL) /* out of memory! */
5194 {
5195 if (type == 0) /* first one: just keep the old length */
5196 {
5197 newlen = hislen;
5198 break;
5199 }
5200 /* Already changed one table, now we can only have zero
5201 * length for all tables. */
5202 newlen = 0;
5203 type = -1;
5204 continue;
5205 }
5206 }
5207 else
5208 temp = NULL;
5209 if (newlen == 0 || temp != NULL)
5210 {
5211 if (hisidx[type] < 0) /* there are no entries yet */
5212 {
5213 for (i = 0; i < newlen; ++i)
5214 {
5215 temp[i].hisnum = 0;
5216 temp[i].hisstr = NULL;
5217 }
5218 }
5219 else if (newlen > hislen) /* array becomes bigger */
5220 {
5221 for (i = 0; i <= hisidx[type]; ++i)
5222 temp[i] = history[type][i];
5223 j = i;
5224 for ( ; i <= newlen - (hislen - hisidx[type]); ++i)
5225 {
5226 temp[i].hisnum = 0;
5227 temp[i].hisstr = NULL;
5228 }
5229 for ( ; j < hislen; ++i, ++j)
5230 temp[i] = history[type][j];
5231 }
5232 else /* array becomes smaller or 0 */
5233 {
5234 j = hisidx[type];
5235 for (i = newlen - 1; ; --i)
5236 {
5237 if (i >= 0) /* copy newest entries */
5238 temp[i] = history[type][j];
5239 else /* remove older entries */
5240 vim_free(history[type][j].hisstr);
5241 if (--j < 0)
5242 j = hislen - 1;
5243 if (j == hisidx[type])
5244 break;
5245 }
5246 hisidx[type] = newlen - 1;
5247 }
5248 vim_free(history[type]);
5249 history[type] = temp;
5250 }
5251 }
5252 hislen = newlen;
5253 }
5254}
5255
5256/*
5257 * Check if command line 'str' is already in history.
5258 * If 'move_to_front' is TRUE, matching entry is moved to end of history.
5259 */
5260 static int
5261in_history(type, str, move_to_front)
5262 int type;
5263 char_u *str;
5264 int move_to_front; /* Move the entry to the front if it exists */
5265{
5266 int i;
5267 int last_i = -1;
5268
5269 if (hisidx[type] < 0)
5270 return FALSE;
5271 i = hisidx[type];
5272 do
5273 {
5274 if (history[type][i].hisstr == NULL)
5275 return FALSE;
5276 if (STRCMP(str, history[type][i].hisstr) == 0)
5277 {
5278 if (!move_to_front)
5279 return TRUE;
5280 last_i = i;
5281 break;
5282 }
5283 if (--i < 0)
5284 i = hislen - 1;
5285 } while (i != hisidx[type]);
5286
5287 if (last_i >= 0)
5288 {
5289 str = history[type][i].hisstr;
5290 while (i != hisidx[type])
5291 {
5292 if (++i >= hislen)
5293 i = 0;
5294 history[type][last_i] = history[type][i];
5295 last_i = i;
5296 }
5297 history[type][i].hisstr = str;
5298 history[type][i].hisnum = ++hisnum[type];
5299 return TRUE;
5300 }
5301 return FALSE;
5302}
5303
5304/*
5305 * Convert history name (from table above) to its HIST_ equivalent.
5306 * When "name" is empty, return "cmd" history.
5307 * Returns -1 for unknown history name.
5308 */
5309 int
5310get_histtype(name)
5311 char_u *name;
5312{
5313 int i;
5314 int len = (int)STRLEN(name);
5315
5316 /* No argument: use current history. */
5317 if (len == 0)
5318 return hist_char2type(ccline.cmdfirstc);
5319
5320 for (i = 0; history_names[i] != NULL; ++i)
5321 if (STRNICMP(name, history_names[i], len) == 0)
5322 return i;
5323
5324 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL)
5325 return hist_char2type(name[0]);
5326
5327 return -1;
5328}
5329
5330static int last_maptick = -1; /* last seen maptick */
5331
5332/*
5333 * Add the given string to the given history. If the string is already in the
5334 * history then it is moved to the front. "histype" may be one of he HIST_
5335 * values.
5336 */
5337 void
5338add_to_history(histype, new_entry, in_map, sep)
5339 int histype;
5340 char_u *new_entry;
5341 int in_map; /* consider maptick when inside a mapping */
5342 int sep; /* separator character used (search hist) */
5343{
5344 histentry_T *hisptr;
5345 int len;
5346
5347 if (hislen == 0) /* no history */
5348 return;
5349
5350 /*
5351 * Searches inside the same mapping overwrite each other, so that only
5352 * the last line is kept. Be careful not to remove a line that was moved
5353 * down, only lines that were added.
5354 */
5355 if (histype == HIST_SEARCH && in_map)
5356 {
5357 if (maptick == last_maptick)
5358 {
5359 /* Current line is from the same mapping, remove it */
5360 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];
5361 vim_free(hisptr->hisstr);
5362 hisptr->hisstr = NULL;
5363 hisptr->hisnum = 0;
5364 --hisnum[histype];
5365 if (--hisidx[HIST_SEARCH] < 0)
5366 hisidx[HIST_SEARCH] = hislen - 1;
5367 }
5368 last_maptick = -1;
5369 }
5370 if (!in_history(histype, new_entry, TRUE))
5371 {
5372 if (++hisidx[histype] == hislen)
5373 hisidx[histype] = 0;
5374 hisptr = &history[histype][hisidx[histype]];
5375 vim_free(hisptr->hisstr);
5376
5377 /* Store the separator after the NUL of the string. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005378 len = (int)STRLEN(new_entry);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005379 hisptr->hisstr = vim_strnsave(new_entry, len + 2);
5380 if (hisptr->hisstr != NULL)
5381 hisptr->hisstr[len + 1] = sep;
5382
5383 hisptr->hisnum = ++hisnum[histype];
5384 if (histype == HIST_SEARCH && in_map)
5385 last_maptick = maptick;
5386 }
5387}
5388
5389#if defined(FEAT_EVAL) || defined(PROTO)
5390
5391/*
5392 * Get identifier of newest history entry.
5393 * "histype" may be one of the HIST_ values.
5394 */
5395 int
5396get_history_idx(histype)
5397 int histype;
5398{
5399 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5400 || hisidx[histype] < 0)
5401 return -1;
5402
5403 return history[histype][hisidx[histype]].hisnum;
5404}
5405
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005406static struct cmdline_info *get_ccline_ptr __ARGS((void));
5407
5408/*
5409 * Get pointer to the command line info to use. cmdline_paste() may clear
5410 * ccline and put the previous value in prev_ccline.
5411 */
5412 static struct cmdline_info *
5413get_ccline_ptr()
5414{
5415 if ((State & CMDLINE) == 0)
5416 return NULL;
5417 if (ccline.cmdbuff != NULL)
5418 return &ccline;
5419 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
5420 return &prev_ccline;
5421 return NULL;
5422}
5423
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424/*
5425 * Get the current command line in allocated memory.
5426 * Only works when the command line is being edited.
5427 * Returns NULL when something is wrong.
5428 */
5429 char_u *
5430get_cmdline_str()
5431{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005432 struct cmdline_info *p = get_ccline_ptr();
5433
5434 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005435 return NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005436 return vim_strnsave(p->cmdbuff, p->cmdlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437}
5438
5439/*
5440 * Get the current command line position, counted in bytes.
5441 * Zero is the first position.
5442 * Only works when the command line is being edited.
5443 * Returns -1 when something is wrong.
5444 */
5445 int
5446get_cmdline_pos()
5447{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005448 struct cmdline_info *p = get_ccline_ptr();
5449
5450 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005451 return -1;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005452 return p->cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005453}
5454
5455/*
5456 * Set the command line byte position to "pos". Zero is the first position.
5457 * Only works when the command line is being edited.
5458 * Returns 1 when failed, 0 when OK.
5459 */
5460 int
5461set_cmdline_pos(pos)
5462 int pos;
5463{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005464 struct cmdline_info *p = get_ccline_ptr();
5465
5466 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467 return 1;
5468
5469 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
5470 * changed the command line. */
5471 if (pos < 0)
5472 new_cmdpos = 0;
5473 else
5474 new_cmdpos = pos;
5475 return 0;
5476}
5477
5478/*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005479 * Get the current command-line type.
Bram Moolenaar1e015462005-09-25 22:16:38 +00005480 * Returns ':' or '/' or '?' or '@' or '>' or '-'
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005481 * Only works when the command line is being edited.
5482 * Returns NUL when something is wrong.
5483 */
5484 int
5485get_cmdline_type()
5486{
5487 struct cmdline_info *p = get_ccline_ptr();
5488
5489 if (p == NULL)
5490 return NUL;
Bram Moolenaar1e015462005-09-25 22:16:38 +00005491 if (p->cmdfirstc == NUL)
5492 return (p->input_fn) ? '@' : '-';
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005493 return p->cmdfirstc;
5494}
5495
5496/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005497 * Calculate history index from a number:
5498 * num > 0: seen as identifying number of a history entry
5499 * num < 0: relative position in history wrt newest entry
5500 * "histype" may be one of the HIST_ values.
5501 */
5502 static int
5503calc_hist_idx(histype, num)
5504 int histype;
5505 int num;
5506{
5507 int i;
5508 histentry_T *hist;
5509 int wrapped = FALSE;
5510
5511 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5512 || (i = hisidx[histype]) < 0 || num == 0)
5513 return -1;
5514
5515 hist = history[histype];
5516 if (num > 0)
5517 {
5518 while (hist[i].hisnum > num)
5519 if (--i < 0)
5520 {
5521 if (wrapped)
5522 break;
5523 i += hislen;
5524 wrapped = TRUE;
5525 }
5526 if (hist[i].hisnum == num && hist[i].hisstr != NULL)
5527 return i;
5528 }
5529 else if (-num <= hislen)
5530 {
5531 i += num + 1;
5532 if (i < 0)
5533 i += hislen;
5534 if (hist[i].hisstr != NULL)
5535 return i;
5536 }
5537 return -1;
5538}
5539
5540/*
5541 * Get a history entry by its index.
5542 * "histype" may be one of the HIST_ values.
5543 */
5544 char_u *
5545get_history_entry(histype, idx)
5546 int histype;
5547 int idx;
5548{
5549 idx = calc_hist_idx(histype, idx);
5550 if (idx >= 0)
5551 return history[histype][idx].hisstr;
5552 else
5553 return (char_u *)"";
5554}
5555
5556/*
5557 * Clear all entries of a history.
5558 * "histype" may be one of the HIST_ values.
5559 */
5560 int
5561clr_history(histype)
5562 int histype;
5563{
5564 int i;
5565 histentry_T *hisptr;
5566
5567 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT)
5568 {
5569 hisptr = history[histype];
5570 for (i = hislen; i--;)
5571 {
5572 vim_free(hisptr->hisstr);
5573 hisptr->hisnum = 0;
5574 hisptr++->hisstr = NULL;
5575 }
5576 hisidx[histype] = -1; /* mark history as cleared */
5577 hisnum[histype] = 0; /* reset identifier counter */
5578 return OK;
5579 }
5580 return FAIL;
5581}
5582
5583/*
5584 * Remove all entries matching {str} from a history.
5585 * "histype" may be one of the HIST_ values.
5586 */
5587 int
5588del_history_entry(histype, str)
5589 int histype;
5590 char_u *str;
5591{
5592 regmatch_T regmatch;
5593 histentry_T *hisptr;
5594 int idx;
5595 int i;
5596 int last;
5597 int found = FALSE;
5598
5599 regmatch.regprog = NULL;
5600 regmatch.rm_ic = FALSE; /* always match case */
5601 if (hislen != 0
5602 && histype >= 0
5603 && histype < HIST_COUNT
5604 && *str != NUL
5605 && (idx = hisidx[histype]) >= 0
5606 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING))
5607 != NULL)
5608 {
5609 i = last = idx;
5610 do
5611 {
5612 hisptr = &history[histype][i];
5613 if (hisptr->hisstr == NULL)
5614 break;
5615 if (vim_regexec(&regmatch, hisptr->hisstr, (colnr_T)0))
5616 {
5617 found = TRUE;
5618 vim_free(hisptr->hisstr);
5619 hisptr->hisstr = NULL;
5620 hisptr->hisnum = 0;
5621 }
5622 else
5623 {
5624 if (i != last)
5625 {
5626 history[histype][last] = *hisptr;
5627 hisptr->hisstr = NULL;
5628 hisptr->hisnum = 0;
5629 }
5630 if (--last < 0)
5631 last += hislen;
5632 }
5633 if (--i < 0)
5634 i += hislen;
5635 } while (i != idx);
5636 if (history[histype][idx].hisstr == NULL)
5637 hisidx[histype] = -1;
5638 }
5639 vim_free(regmatch.regprog);
5640 return found;
5641}
5642
5643/*
5644 * Remove an indexed entry from a history.
5645 * "histype" may be one of the HIST_ values.
5646 */
5647 int
5648del_history_idx(histype, idx)
5649 int histype;
5650 int idx;
5651{
5652 int i, j;
5653
5654 i = calc_hist_idx(histype, idx);
5655 if (i < 0)
5656 return FALSE;
5657 idx = hisidx[histype];
5658 vim_free(history[histype][i].hisstr);
5659
5660 /* When deleting the last added search string in a mapping, reset
5661 * last_maptick, so that the last added search string isn't deleted again.
5662 */
5663 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx)
5664 last_maptick = -1;
5665
5666 while (i != idx)
5667 {
5668 j = (i + 1) % hislen;
5669 history[histype][i] = history[histype][j];
5670 i = j;
5671 }
5672 history[histype][i].hisstr = NULL;
5673 history[histype][i].hisnum = 0;
5674 if (--i < 0)
5675 i += hislen;
5676 hisidx[histype] = i;
5677 return TRUE;
5678}
5679
5680#endif /* FEAT_EVAL */
5681
5682#if defined(FEAT_CRYPT) || defined(PROTO)
5683/*
5684 * Very specific function to remove the value in ":set key=val" from the
5685 * history.
5686 */
5687 void
5688remove_key_from_history()
5689{
5690 char_u *p;
5691 int i;
5692
5693 i = hisidx[HIST_CMD];
5694 if (i < 0)
5695 return;
5696 p = history[HIST_CMD][i].hisstr;
5697 if (p != NULL)
5698 for ( ; *p; ++p)
5699 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3]))
5700 {
5701 p = vim_strchr(p + 3, '=');
5702 if (p == NULL)
5703 break;
5704 ++p;
5705 for (i = 0; p[i] && !vim_iswhite(p[i]); ++i)
5706 if (p[i] == '\\' && p[i + 1])
5707 ++i;
Bram Moolenaar446cb832008-06-24 21:56:24 +00005708 STRMOVE(p, p + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005709 --p;
5710 }
5711}
5712#endif
5713
5714#endif /* FEAT_CMDHIST */
5715
5716#if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO)
5717/*
5718 * Get indices "num1,num2" that specify a range within a list (not a range of
5719 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
5720 * Returns OK if parsed successfully, otherwise FAIL.
5721 */
5722 int
5723get_list_range(str, num1, num2)
5724 char_u **str;
5725 int *num1;
5726 int *num2;
5727{
5728 int len;
5729 int first = FALSE;
5730 long num;
5731
5732 *str = skipwhite(*str);
5733 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
5734 {
5735 vim_str2nr(*str, NULL, &len, FALSE, FALSE, &num, NULL);
5736 *str += len;
5737 *num1 = (int)num;
5738 first = TRUE;
5739 }
5740 *str = skipwhite(*str);
5741 if (**str == ',') /* parse "to" part of range */
5742 {
5743 *str = skipwhite(*str + 1);
5744 vim_str2nr(*str, NULL, &len, FALSE, FALSE, &num, NULL);
5745 if (len > 0)
5746 {
5747 *num2 = (int)num;
5748 *str = skipwhite(*str + len);
5749 }
5750 else if (!first) /* no number given at all */
5751 return FAIL;
5752 }
5753 else if (first) /* only one number given */
5754 *num2 = *num1;
5755 return OK;
5756}
5757#endif
5758
5759#if defined(FEAT_CMDHIST) || defined(PROTO)
5760/*
5761 * :history command - print a history
5762 */
5763 void
5764ex_history(eap)
5765 exarg_T *eap;
5766{
5767 histentry_T *hist;
5768 int histype1 = HIST_CMD;
5769 int histype2 = HIST_CMD;
5770 int hisidx1 = 1;
5771 int hisidx2 = -1;
5772 int idx;
5773 int i, j, k;
5774 char_u *end;
5775 char_u *arg = eap->arg;
5776
5777 if (hislen == 0)
5778 {
5779 MSG(_("'history' option is zero"));
5780 return;
5781 }
5782
5783 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ','))
5784 {
5785 end = arg;
5786 while (ASCII_ISALPHA(*end)
5787 || vim_strchr((char_u *)":=@>/?", *end) != NULL)
5788 end++;
5789 i = *end;
5790 *end = NUL;
5791 histype1 = get_histtype(arg);
5792 if (histype1 == -1)
5793 {
Bram Moolenaarb9c1e962009-04-22 11:52:33 +00005794 if (STRNICMP(arg, "all", STRLEN(arg)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005795 {
5796 histype1 = 0;
5797 histype2 = HIST_COUNT-1;
5798 }
5799 else
5800 {
5801 *end = i;
5802 EMSG(_(e_trailing));
5803 return;
5804 }
5805 }
5806 else
5807 histype2 = histype1;
5808 *end = i;
5809 }
5810 else
5811 end = arg;
5812 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL)
5813 {
5814 EMSG(_(e_trailing));
5815 return;
5816 }
5817
5818 for (; !got_int && histype1 <= histype2; ++histype1)
5819 {
5820 STRCPY(IObuff, "\n # ");
5821 STRCAT(STRCAT(IObuff, history_names[histype1]), " history");
5822 MSG_PUTS_TITLE(IObuff);
5823 idx = hisidx[histype1];
5824 hist = history[histype1];
5825 j = hisidx1;
5826 k = hisidx2;
5827 if (j < 0)
5828 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum;
5829 if (k < 0)
5830 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum;
5831 if (idx >= 0 && j <= k)
5832 for (i = idx + 1; !got_int; ++i)
5833 {
5834 if (i == hislen)
5835 i = 0;
5836 if (hist[i].hisstr != NULL
5837 && hist[i].hisnum >= j && hist[i].hisnum <= k)
5838 {
5839 msg_putchar('\n');
5840 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ',
5841 hist[i].hisnum);
5842 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10)
5843 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff),
5844 (int)Columns - 10);
5845 else
5846 STRCAT(IObuff, hist[i].hisstr);
5847 msg_outtrans(IObuff);
5848 out_flush();
5849 }
5850 if (i == idx)
5851 break;
5852 }
5853 }
5854}
5855#endif
5856
5857#if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO)
5858static char_u **viminfo_history[HIST_COUNT] = {NULL, NULL, NULL, NULL};
5859static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0};
5860static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0};
5861static int viminfo_add_at_front = FALSE;
5862
5863static int hist_type2char __ARGS((int type, int use_question));
5864
5865/*
5866 * Translate a history type number to the associated character.
5867 */
5868 static int
5869hist_type2char(type, use_question)
5870 int type;
5871 int use_question; /* use '?' instead of '/' */
5872{
5873 if (type == HIST_CMD)
5874 return ':';
5875 if (type == HIST_SEARCH)
5876 {
5877 if (use_question)
5878 return '?';
5879 else
5880 return '/';
5881 }
5882 if (type == HIST_EXPR)
5883 return '=';
5884 return '@';
5885}
5886
5887/*
5888 * Prepare for reading the history from the viminfo file.
5889 * This allocates history arrays to store the read history lines.
5890 */
5891 void
5892prepare_viminfo_history(asklen)
5893 int asklen;
5894{
5895 int i;
5896 int num;
5897 int type;
5898 int len;
5899
5900 init_history();
5901 viminfo_add_at_front = (asklen != 0);
5902 if (asklen > hislen)
5903 asklen = hislen;
5904
5905 for (type = 0; type < HIST_COUNT; ++type)
5906 {
5907 /*
5908 * Count the number of empty spaces in the history list. If there are
5909 * more spaces available than we request, then fill them up.
5910 */
5911 for (i = 0, num = 0; i < hislen; i++)
5912 if (history[type][i].hisstr == NULL)
5913 num++;
5914 len = asklen;
5915 if (num > len)
5916 len = num;
5917 if (len <= 0)
5918 viminfo_history[type] = NULL;
5919 else
5920 viminfo_history[type] =
5921 (char_u **)lalloc((long_u)(len * sizeof(char_u *)), FALSE);
5922 if (viminfo_history[type] == NULL)
5923 len = 0;
5924 viminfo_hislen[type] = len;
5925 viminfo_hisidx[type] = 0;
5926 }
5927}
5928
5929/*
5930 * Accept a line from the viminfo, store it in the history array when it's
5931 * new.
5932 */
5933 int
5934read_viminfo_history(virp)
5935 vir_T *virp;
5936{
5937 int type;
5938 long_u len;
5939 char_u *val;
5940 char_u *p;
5941
5942 type = hist_char2type(virp->vir_line[0]);
5943 if (viminfo_hisidx[type] < viminfo_hislen[type])
5944 {
5945 val = viminfo_readstring(virp, 1, TRUE);
5946 if (val != NULL && *val != NUL)
5947 {
5948 if (!in_history(type, val + (type == HIST_SEARCH),
5949 viminfo_add_at_front))
5950 {
5951 /* Need to re-allocate to append the separator byte. */
5952 len = STRLEN(val);
5953 p = lalloc(len + 2, TRUE);
5954 if (p != NULL)
5955 {
5956 if (type == HIST_SEARCH)
5957 {
5958 /* Search entry: Move the separator from the first
5959 * column to after the NUL. */
5960 mch_memmove(p, val + 1, (size_t)len);
5961 p[len] = (*val == ' ' ? NUL : *val);
5962 }
5963 else
5964 {
5965 /* Not a search entry: No separator in the viminfo
5966 * file, add a NUL separator. */
5967 mch_memmove(p, val, (size_t)len + 1);
5968 p[len + 1] = NUL;
5969 }
5970 viminfo_history[type][viminfo_hisidx[type]++] = p;
5971 }
5972 }
5973 }
5974 vim_free(val);
5975 }
5976 return viminfo_readline(virp);
5977}
5978
5979 void
5980finish_viminfo_history()
5981{
5982 int idx;
5983 int i;
5984 int type;
5985
5986 for (type = 0; type < HIST_COUNT; ++type)
5987 {
5988 if (history[type] == NULL)
5989 return;
5990 idx = hisidx[type] + viminfo_hisidx[type];
5991 if (idx >= hislen)
5992 idx -= hislen;
5993 else if (idx < 0)
5994 idx = hislen - 1;
5995 if (viminfo_add_at_front)
5996 hisidx[type] = idx;
5997 else
5998 {
5999 if (hisidx[type] == -1)
6000 hisidx[type] = hislen - 1;
6001 do
6002 {
6003 if (history[type][idx].hisstr != NULL)
6004 break;
6005 if (++idx == hislen)
6006 idx = 0;
6007 } while (idx != hisidx[type]);
6008 if (idx != hisidx[type] && --idx < 0)
6009 idx = hislen - 1;
6010 }
6011 for (i = 0; i < viminfo_hisidx[type]; i++)
6012 {
6013 vim_free(history[type][idx].hisstr);
6014 history[type][idx].hisstr = viminfo_history[type][i];
6015 if (--idx < 0)
6016 idx = hislen - 1;
6017 }
6018 idx += 1;
6019 idx %= hislen;
6020 for (i = 0; i < viminfo_hisidx[type]; i++)
6021 {
6022 history[type][idx++].hisnum = ++hisnum[type];
6023 idx %= hislen;
6024 }
6025 vim_free(viminfo_history[type]);
6026 viminfo_history[type] = NULL;
6027 }
6028}
6029
6030 void
6031write_viminfo_history(fp)
6032 FILE *fp;
6033{
6034 int i;
6035 int type;
6036 int num_saved;
6037 char_u *p;
6038 int c;
6039
6040 init_history();
6041 if (hislen == 0)
6042 return;
6043 for (type = 0; type < HIST_COUNT; ++type)
6044 {
6045 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE));
6046 if (num_saved == 0)
6047 continue;
6048 if (num_saved < 0) /* Use default */
6049 num_saved = hislen;
6050 fprintf(fp, _("\n# %s History (newest to oldest):\n"),
6051 type == HIST_CMD ? _("Command Line") :
6052 type == HIST_SEARCH ? _("Search String") :
6053 type == HIST_EXPR ? _("Expression") :
6054 _("Input Line"));
6055 if (num_saved > hislen)
6056 num_saved = hislen;
6057 i = hisidx[type];
6058 if (i >= 0)
6059 while (num_saved--)
6060 {
6061 p = history[type][i].hisstr;
6062 if (p != NULL)
6063 {
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006064 fputc(hist_type2char(type, TRUE), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065 /* For the search history: put the separator in the second
6066 * column; use a space if there isn't one. */
6067 if (type == HIST_SEARCH)
6068 {
6069 c = p[STRLEN(p) + 1];
6070 putc(c == NUL ? ' ' : c, fp);
6071 }
6072 viminfo_writestring(fp, p);
6073 }
6074 if (--i < 0)
6075 i = hislen - 1;
6076 }
6077 }
6078}
6079#endif /* FEAT_VIMINFO */
6080
6081#if defined(FEAT_FKMAP) || defined(PROTO)
6082/*
6083 * Write a character at the current cursor+offset position.
6084 * It is directly written into the command buffer block.
6085 */
6086 void
6087cmd_pchar(c, offset)
6088 int c, offset;
6089{
6090 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6091 {
6092 EMSG(_("E198: cmd_pchar beyond the command length"));
6093 return;
6094 }
6095 ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c;
6096 ccline.cmdbuff[ccline.cmdlen] = NUL;
6097}
6098
6099 int
6100cmd_gchar(offset)
6101 int offset;
6102{
6103 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6104 {
6105 /* EMSG(_("cmd_gchar beyond the command length")); */
6106 return NUL;
6107 }
6108 return (int)ccline.cmdbuff[ccline.cmdpos + offset];
6109}
6110#endif
6111
6112#if defined(FEAT_CMDWIN) || defined(PROTO)
6113/*
6114 * Open a window on the current command line and history. Allow editing in
6115 * the window. Returns when the window is closed.
6116 * Returns:
6117 * CR if the command is to be executed
6118 * Ctrl_C if it is to be abandoned
6119 * K_IGNORE if editing continues
6120 */
6121 static int
6122ex_window()
6123{
6124 struct cmdline_info save_ccline;
6125 buf_T *old_curbuf = curbuf;
6126 win_T *old_curwin = curwin;
6127 buf_T *bp;
6128 win_T *wp;
6129 int i;
6130 linenr_T lnum;
6131 int histtype;
6132 garray_T winsizes;
Bram Moolenaar7693ec62008-07-24 18:29:37 +00006133#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006134 char_u typestr[2];
Bram Moolenaar7693ec62008-07-24 18:29:37 +00006135#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006136 int save_restart_edit = restart_edit;
6137 int save_State = State;
6138 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00006139#ifdef FEAT_RIGHTLEFT
6140 int save_cmdmsg_rl = cmdmsg_rl;
6141#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006142
6143 /* Can't do this recursively. Can't do it when typing a password. */
6144 if (cmdwin_type != 0
6145# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
6146 || cmdline_star > 0
6147# endif
6148 )
6149 {
6150 beep_flush();
6151 return K_IGNORE;
6152 }
6153
6154 /* Save current window sizes. */
6155 win_size_save(&winsizes);
6156
6157# ifdef FEAT_AUTOCMD
6158 /* Don't execute autocommands while creating the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006159 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006160# endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00006161 /* don't use a new tab page */
6162 cmdmod.tab = 0;
6163
Bram Moolenaar071d4272004-06-13 20:20:40 +00006164 /* Create a window for the command-line buffer. */
6165 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
6166 {
6167 beep_flush();
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006168# ifdef FEAT_AUTOCMD
6169 unblock_autocmds();
6170# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171 return K_IGNORE;
6172 }
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006173 cmdwin_type = get_cmdline_type();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006174
6175 /* Create the command-line buffer empty. */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006176 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL);
Bram Moolenaar446cb832008-06-24 21:56:24 +00006177 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006178 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
6179 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
6180 curbuf->b_p_ma = TRUE;
Bram Moolenaar876f6d72009-04-29 10:05:51 +00006181#ifdef FEAT_FOLDING
6182 curwin->w_p_fen = FALSE;
6183#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006184# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00006185 curwin->w_p_rl = cmdmsg_rl;
6186 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006187# endif
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006188 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189
6190# ifdef FEAT_AUTOCMD
6191 /* Do execute autocommands for setting the filetype (load syntax). */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006192 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006193# endif
6194
Bram Moolenaar46152342005-09-07 21:18:43 +00006195 /* Showing the prompt may have set need_wait_return, reset it. */
6196 need_wait_return = FALSE;
6197
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006198 histtype = hist_char2type(cmdwin_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006199 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
6200 {
6201 if (p_wc == TAB)
6202 {
6203 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
6204 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
6205 }
6206 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
6207 }
6208
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006209 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
6210 * sets 'textwidth' to 78). */
6211 curbuf->b_p_tw = 0;
6212
Bram Moolenaar071d4272004-06-13 20:20:40 +00006213 /* Fill the buffer with the history. */
6214 init_history();
6215 if (hislen > 0)
6216 {
6217 i = hisidx[histtype];
6218 if (i >= 0)
6219 {
6220 lnum = 0;
6221 do
6222 {
6223 if (++i == hislen)
6224 i = 0;
6225 if (history[histtype][i].hisstr != NULL)
6226 ml_append(lnum++, history[histtype][i].hisstr,
6227 (colnr_T)0, FALSE);
6228 }
6229 while (i != hisidx[histtype]);
6230 }
6231 }
6232
6233 /* Replace the empty last line with the current command-line and put the
6234 * cursor there. */
6235 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
6236 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6237 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00006238 changed_line_abv_curs();
6239 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00006240 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241
6242 /* Save the command line info, can be used recursively. */
6243 save_ccline = ccline;
6244 ccline.cmdbuff = NULL;
6245 ccline.cmdprompt = NULL;
6246
6247 /* No Ex mode here! */
6248 exmode_active = 0;
6249
6250 State = NORMAL;
6251# ifdef FEAT_MOUSE
6252 setmouse();
6253# endif
6254
6255# ifdef FEAT_AUTOCMD
6256 /* Trigger CmdwinEnter autocommands. */
6257 typestr[0] = cmdwin_type;
6258 typestr[1] = NUL;
6259 apply_autocmds(EVENT_CMDWINENTER, typestr, typestr, FALSE, curbuf);
Bram Moolenaar5495cc92006-08-16 14:23:04 +00006260 if (restart_edit != 0) /* autocmd with ":startinsert" */
6261 stuffcharReadbuff(K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006262# endif
6263
6264 i = RedrawingDisabled;
6265 RedrawingDisabled = 0;
6266
6267 /*
6268 * Call the main loop until <CR> or CTRL-C is typed.
6269 */
6270 cmdwin_result = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00006271 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006272
6273 RedrawingDisabled = i;
6274
6275# ifdef FEAT_AUTOCMD
6276 /* Trigger CmdwinLeave autocommands. */
6277 apply_autocmds(EVENT_CMDWINLEAVE, typestr, typestr, FALSE, curbuf);
6278# endif
6279
Bram Moolenaarccc18222007-05-10 18:25:20 +00006280 /* Restore the command line info. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006281 ccline = save_ccline;
6282 cmdwin_type = 0;
6283
6284 exmode_active = save_exmode;
6285
Bram Moolenaarf9821062008-06-20 16:31:07 +00006286 /* Safety check: The old window or buffer was deleted: It's a bug when
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287 * this happens! */
6288 if (!win_valid(old_curwin) || !buf_valid(old_curbuf))
6289 {
6290 cmdwin_result = Ctrl_C;
6291 EMSG(_("E199: Active window or buffer deleted"));
6292 }
6293 else
6294 {
6295# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
6296 /* autocmds may abort script processing */
6297 if (aborting() && cmdwin_result != K_IGNORE)
6298 cmdwin_result = Ctrl_C;
6299# endif
6300 /* Set the new command line from the cmdline buffer. */
6301 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00006302 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303 {
Bram Moolenaar46152342005-09-07 21:18:43 +00006304 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
6305
6306 if (histtype == HIST_CMD)
6307 {
6308 /* Execute the command directly. */
6309 ccline.cmdbuff = vim_strsave((char_u *)p);
6310 cmdwin_result = CAR;
6311 }
6312 else
6313 {
6314 /* First need to cancel what we were doing. */
6315 ccline.cmdbuff = NULL;
6316 stuffcharReadbuff(':');
6317 stuffReadbuff((char_u *)p);
6318 stuffcharReadbuff(CAR);
6319 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006320 }
6321 else if (cmdwin_result == K_XF2) /* :qa typed */
6322 {
6323 ccline.cmdbuff = vim_strsave((char_u *)"qa");
6324 cmdwin_result = CAR;
6325 }
6326 else
6327 ccline.cmdbuff = vim_strsave(ml_get_curline());
6328 if (ccline.cmdbuff == NULL)
6329 cmdwin_result = Ctrl_C;
6330 else
6331 {
6332 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
6333 ccline.cmdbufflen = ccline.cmdlen + 1;
6334 ccline.cmdpos = curwin->w_cursor.col;
6335 if (ccline.cmdpos > ccline.cmdlen)
6336 ccline.cmdpos = ccline.cmdlen;
6337 if (cmdwin_result == K_IGNORE)
6338 {
6339 set_cmdspos_cursor();
6340 redrawcmd();
6341 }
6342 }
6343
6344# ifdef FEAT_AUTOCMD
6345 /* Don't execute autocommands while deleting the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006346 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006347# endif
6348 wp = curwin;
6349 bp = curbuf;
6350 win_goto(old_curwin);
6351 win_close(wp, TRUE);
Bram Moolenaar8006d692010-03-02 17:23:21 +01006352
6353 /* win_close() may have already wiped the buffer when 'bh' is
6354 * set to 'wipe' */
6355 if (buf_valid(bp))
6356 close_buffer(NULL, bp, DOBUF_WIPE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006357
6358 /* Restore window sizes. */
6359 win_size_restore(&winsizes);
6360
6361# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006362 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006363# endif
6364 }
6365
6366 ga_clear(&winsizes);
6367 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00006368# ifdef FEAT_RIGHTLEFT
6369 cmdmsg_rl = save_cmdmsg_rl;
6370# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006371
6372 State = save_State;
6373# ifdef FEAT_MOUSE
6374 setmouse();
6375# endif
6376
6377 return cmdwin_result;
6378}
6379#endif /* FEAT_CMDWIN */
6380
6381/*
6382 * Used for commands that either take a simple command string argument, or:
6383 * cmd << endmarker
6384 * {script}
6385 * endmarker
6386 * Returns a pointer to allocated memory with {script} or NULL.
6387 */
6388 char_u *
6389script_get(eap, cmd)
6390 exarg_T *eap;
6391 char_u *cmd;
6392{
6393 char_u *theline;
6394 char *end_pattern = NULL;
6395 char dot[] = ".";
6396 garray_T ga;
6397
6398 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
6399 return NULL;
6400
6401 ga_init2(&ga, 1, 0x400);
6402
6403 if (cmd[2] != NUL)
6404 end_pattern = (char *)skipwhite(cmd + 2);
6405 else
6406 end_pattern = dot;
6407
6408 for (;;)
6409 {
6410 theline = eap->getline(
6411#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00006412 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00006413#endif
6414 NUL, eap->cookie, 0);
6415
6416 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
Bram Moolenaarbe555e72008-08-06 12:19:26 +00006417 {
6418 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419 break;
Bram Moolenaarbe555e72008-08-06 12:19:26 +00006420 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006421
6422 ga_concat(&ga, theline);
6423 ga_append(&ga, '\n');
6424 vim_free(theline);
6425 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00006426 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006427
6428 return (char_u *)ga.ga_data;
6429}