blob: dfc6dffcf1d59b480a676bf7131ae385185a1566 [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 Moolenaar67b891e2009-09-18 15:25:52 +00003342 p2 = ExpandOne(xp, p1,
3343 vim_strnsave(&ccline.cmdbuff[i], xp->xp_pattern_len),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT|WILD_ESCAPE
3345 |options, type);
3346 vim_free(p1);
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003347 /* longest match: make sure it is not shorter, happens with :help */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348 if (p2 != NULL && type == WILD_LONGEST)
3349 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003350 for (j = 0; j < xp->xp_pattern_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 if (ccline.cmdbuff[i + j] == '*'
3352 || ccline.cmdbuff[i + j] == '?')
3353 break;
3354 if ((int)STRLEN(p2) < j)
3355 {
3356 vim_free(p2);
3357 p2 = NULL;
3358 }
3359 }
3360 }
3361 }
3362
3363 if (p2 != NULL && !got_int)
3364 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003365 difflen = (int)STRLEN(p2) - xp->xp_pattern_len;
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003366 if (ccline.cmdlen + difflen + 4 > ccline.cmdbufflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003368 v = realloc_cmdbuff(ccline.cmdlen + difflen + 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369 xp->xp_pattern = ccline.cmdbuff + i;
3370 }
3371 else
3372 v = OK;
3373 if (v == OK)
3374 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003375 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen],
3376 &ccline.cmdbuff[ccline.cmdpos],
3377 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3378 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 ccline.cmdlen += difflen;
3380 ccline.cmdpos += difflen;
3381 }
3382 }
3383 vim_free(p2);
3384
3385 redrawcmd();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003386 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387
3388 /* When expanding a ":map" command and no matches are found, assume that
3389 * the key is supposed to be inserted literally */
3390 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL)
3391 return FAIL;
3392
3393 if (xp->xp_numfiles <= 0 && p2 == NULL)
3394 beep_flush();
3395 else if (xp->xp_numfiles == 1)
3396 /* free expanded pattern */
3397 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
3398
3399 return OK;
3400}
3401
3402/*
3403 * Do wildcard expansion on the string 'str'.
3404 * Chars that should not be expanded must be preceded with a backslash.
Bram Moolenaarf9821062008-06-20 16:31:07 +00003405 * Return a pointer to allocated memory containing the new string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 * Return NULL for failure.
3407 *
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003408 * "orig" is the originally expanded string, copied to allocated memory. It
3409 * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or
3410 * WILD_PREV "orig" should be NULL.
3411 *
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003412 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode"
3413 * is WILD_EXPAND_FREE or WILD_ALL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 *
3415 * mode = WILD_FREE: just free previously expanded matches
3416 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches
3417 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches
3418 * mode = WILD_NEXT: use next match in multiple match, wrap to first
3419 * mode = WILD_PREV: use previous match in multiple match, wrap to first
3420 * mode = WILD_ALL: return all matches concatenated
3421 * mode = WILD_LONGEST: return longest matched part
3422 *
3423 * options = WILD_LIST_NOTFOUND: list entries without a match
3424 * options = WILD_HOME_REPLACE: do home_replace() for buffer names
3425 * options = WILD_USE_NL: Use '\n' for WILD_ALL
3426 * options = WILD_NO_BEEP: Don't beep for multiple matches
3427 * options = WILD_ADD_SLASH: add a slash after directory names
3428 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries
3429 * options = WILD_SILENT: don't print warning messages
3430 * options = WILD_ESCAPE: put backslash before special chars
3431 *
3432 * The variables xp->xp_context and xp->xp_backslash must have been set!
3433 */
3434 char_u *
3435ExpandOne(xp, str, orig, options, mode)
3436 expand_T *xp;
3437 char_u *str;
3438 char_u *orig; /* allocated copy of original of expanded string */
3439 int options;
3440 int mode;
3441{
3442 char_u *ss = NULL;
3443 static int findex;
3444 static char_u *orig_save = NULL; /* kept value of orig */
Bram Moolenaar96426642007-10-30 16:37:15 +00003445 int orig_saved = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446 int i;
3447 long_u len;
3448 int non_suf_match; /* number without matching suffix */
3449
3450 /*
3451 * first handle the case of using an old match
3452 */
3453 if (mode == WILD_NEXT || mode == WILD_PREV)
3454 {
3455 if (xp->xp_numfiles > 0)
3456 {
3457 if (mode == WILD_PREV)
3458 {
3459 if (findex == -1)
3460 findex = xp->xp_numfiles;
3461 --findex;
3462 }
3463 else /* mode == WILD_NEXT */
3464 ++findex;
3465
3466 /*
3467 * When wrapping around, return the original string, set findex to
3468 * -1.
3469 */
3470 if (findex < 0)
3471 {
3472 if (orig_save == NULL)
3473 findex = xp->xp_numfiles - 1;
3474 else
3475 findex = -1;
3476 }
3477 if (findex >= xp->xp_numfiles)
3478 {
3479 if (orig_save == NULL)
3480 findex = 0;
3481 else
3482 findex = -1;
3483 }
3484#ifdef FEAT_WILDMENU
3485 if (p_wmnu)
3486 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files,
3487 findex, cmd_showtail);
3488#endif
3489 if (findex == -1)
3490 return vim_strsave(orig_save);
3491 return vim_strsave(xp->xp_files[findex]);
3492 }
3493 else
3494 return NULL;
3495 }
3496
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003497 /* free old names */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST)
3499 {
3500 FreeWild(xp->xp_numfiles, xp->xp_files);
3501 xp->xp_numfiles = -1;
3502 vim_free(orig_save);
3503 orig_save = NULL;
3504 }
3505 findex = 0;
3506
3507 if (mode == WILD_FREE) /* only release file name */
3508 return NULL;
3509
3510 if (xp->xp_numfiles == -1)
3511 {
3512 vim_free(orig_save);
3513 orig_save = orig;
Bram Moolenaar96426642007-10-30 16:37:15 +00003514 orig_saved = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515
3516 /*
3517 * Do the expansion.
3518 */
3519 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files,
3520 options) == FAIL)
3521 {
3522#ifdef FNAME_ILLEGAL
3523 /* Illegal file name has been silently skipped. But when there
3524 * are wildcards, the real problem is that there was no match,
3525 * causing the pattern to be added, which has illegal characters.
3526 */
3527 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND))
3528 EMSG2(_(e_nomatch2), str);
3529#endif
3530 }
3531 else if (xp->xp_numfiles == 0)
3532 {
3533 if (!(options & WILD_SILENT))
3534 EMSG2(_(e_nomatch2), str);
3535 }
3536 else
3537 {
3538 /* Escape the matches for use on the command line. */
3539 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options);
3540
3541 /*
3542 * Check for matching suffixes in file names.
3543 */
3544 if (mode != WILD_ALL && mode != WILD_LONGEST)
3545 {
3546 if (xp->xp_numfiles)
3547 non_suf_match = xp->xp_numfiles;
3548 else
3549 non_suf_match = 1;
3550 if ((xp->xp_context == EXPAND_FILES
3551 || xp->xp_context == EXPAND_DIRECTORIES)
3552 && xp->xp_numfiles > 1)
3553 {
3554 /*
3555 * More than one match; check suffix.
3556 * The files will have been sorted on matching suffix in
3557 * expand_wildcards, only need to check the first two.
3558 */
3559 non_suf_match = 0;
3560 for (i = 0; i < 2; ++i)
3561 if (match_suffix(xp->xp_files[i]))
3562 ++non_suf_match;
3563 }
3564 if (non_suf_match != 1)
3565 {
3566 /* Can we ever get here unless it's while expanding
3567 * interactively? If not, we can get rid of this all
3568 * together. Don't really want to wait for this message
3569 * (and possibly have to hit return to continue!).
3570 */
3571 if (!(options & WILD_SILENT))
3572 EMSG(_(e_toomany));
3573 else if (!(options & WILD_NO_BEEP))
3574 beep_flush();
3575 }
3576 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE))
3577 ss = vim_strsave(xp->xp_files[0]);
3578 }
3579 }
3580 }
3581
3582 /* Find longest common part */
3583 if (mode == WILD_LONGEST && xp->xp_numfiles > 0)
3584 {
3585 for (len = 0; xp->xp_files[0][len]; ++len)
3586 {
3587 for (i = 0; i < xp->xp_numfiles; ++i)
3588 {
3589#ifdef CASE_INSENSITIVE_FILENAME
3590 if (xp->xp_context == EXPAND_DIRECTORIES
3591 || xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003592 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593 || xp->xp_context == EXPAND_BUFFERS)
3594 {
3595 if (TOLOWER_LOC(xp->xp_files[i][len]) !=
3596 TOLOWER_LOC(xp->xp_files[0][len]))
3597 break;
3598 }
3599 else
3600#endif
3601 if (xp->xp_files[i][len] != xp->xp_files[0][len])
3602 break;
3603 }
3604 if (i < xp->xp_numfiles)
3605 {
3606 if (!(options & WILD_NO_BEEP))
3607 vim_beep();
3608 break;
3609 }
3610 }
3611 ss = alloc((unsigned)len + 1);
3612 if (ss)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003613 vim_strncpy(ss, xp->xp_files[0], (size_t)len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614 findex = -1; /* next p_wc gets first one */
3615 }
3616
3617 /* Concatenate all matching names */
3618 if (mode == WILD_ALL && xp->xp_numfiles > 0)
3619 {
3620 len = 0;
3621 for (i = 0; i < xp->xp_numfiles; ++i)
3622 len += (long_u)STRLEN(xp->xp_files[i]) + 1;
3623 ss = lalloc(len, TRUE);
3624 if (ss != NULL)
3625 {
3626 *ss = NUL;
3627 for (i = 0; i < xp->xp_numfiles; ++i)
3628 {
3629 STRCAT(ss, xp->xp_files[i]);
3630 if (i != xp->xp_numfiles - 1)
3631 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " ");
3632 }
3633 }
3634 }
3635
3636 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL)
3637 ExpandCleanup(xp);
3638
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003639 /* Free "orig" if it wasn't stored in "orig_save". */
Bram Moolenaar96426642007-10-30 16:37:15 +00003640 if (!orig_saved)
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003641 vim_free(orig);
3642
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 return ss;
3644}
3645
3646/*
3647 * Prepare an expand structure for use.
3648 */
3649 void
3650ExpandInit(xp)
3651 expand_T *xp;
3652{
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003653 xp->xp_pattern = NULL;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003654 xp->xp_pattern_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003656#ifndef BACKSLASH_IN_FILENAME
3657 xp->xp_shell = FALSE;
3658#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 xp->xp_numfiles = -1;
3660 xp->xp_files = NULL;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003661#if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
3662 xp->xp_arg = NULL;
3663#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664}
3665
3666/*
3667 * Cleanup an expand structure after use.
3668 */
3669 void
3670ExpandCleanup(xp)
3671 expand_T *xp;
3672{
3673 if (xp->xp_numfiles >= 0)
3674 {
3675 FreeWild(xp->xp_numfiles, xp->xp_files);
3676 xp->xp_numfiles = -1;
3677 }
3678}
3679
3680 void
3681ExpandEscape(xp, str, numfiles, files, options)
3682 expand_T *xp;
3683 char_u *str;
3684 int numfiles;
3685 char_u **files;
3686 int options;
3687{
3688 int i;
3689 char_u *p;
3690
3691 /*
3692 * May change home directory back to "~"
3693 */
3694 if (options & WILD_HOME_REPLACE)
3695 tilde_replace(str, numfiles, files);
3696
3697 if (options & WILD_ESCAPE)
3698 {
3699 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003700 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701 || xp->xp_context == EXPAND_BUFFERS
3702 || xp->xp_context == EXPAND_DIRECTORIES)
3703 {
3704 /*
3705 * Insert a backslash into a file name before a space, \, %, #
3706 * and wildmatch characters, except '~'.
3707 */
3708 for (i = 0; i < numfiles; ++i)
3709 {
3710 /* for ":set path=" we need to escape spaces twice */
3711 if (xp->xp_backslash == XP_BS_THREE)
3712 {
3713 p = vim_strsave_escaped(files[i], (char_u *)" ");
3714 if (p != NULL)
3715 {
3716 vim_free(files[i]);
3717 files[i] = p;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003718#if defined(BACKSLASH_IN_FILENAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 p = vim_strsave_escaped(files[i], (char_u *)" ");
3720 if (p != NULL)
3721 {
3722 vim_free(files[i]);
3723 files[i] = p;
3724 }
3725#endif
3726 }
3727 }
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00003728#ifdef BACKSLASH_IN_FILENAME
3729 p = vim_strsave_fnameescape(files[i], FALSE);
3730#else
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003731 p = vim_strsave_fnameescape(files[i], xp->xp_shell);
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00003732#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733 if (p != NULL)
3734 {
3735 vim_free(files[i]);
3736 files[i] = p;
3737 }
3738
3739 /* If 'str' starts with "\~", replace "~" at start of
3740 * files[i] with "\~". */
3741 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~')
Bram Moolenaar45360022005-07-21 21:08:21 +00003742 escape_fname(&files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743 }
3744 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar45360022005-07-21 21:08:21 +00003745
3746 /* If the first file starts with a '+' escape it. Otherwise it
3747 * could be seen as "+cmd". */
3748 if (*files[0] == '+')
3749 escape_fname(&files[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 }
3751 else if (xp->xp_context == EXPAND_TAGS)
3752 {
3753 /*
3754 * Insert a backslash before characters in a tag name that
3755 * would terminate the ":tag" command.
3756 */
3757 for (i = 0; i < numfiles; ++i)
3758 {
3759 p = vim_strsave_escaped(files[i], (char_u *)"\\|\"");
3760 if (p != NULL)
3761 {
3762 vim_free(files[i]);
3763 files[i] = p;
3764 }
3765 }
3766 }
3767 }
3768}
3769
3770/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003771 * Escape special characters in "fname" for when used as a file name argument
3772 * after a Vim command, or, when "shell" is non-zero, a shell command.
3773 * Returns the result in allocated memory.
3774 */
3775 char_u *
3776vim_strsave_fnameescape(fname, shell)
3777 char_u *fname;
3778 int shell;
3779{
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003780 char_u *p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003781#ifdef BACKSLASH_IN_FILENAME
3782 char_u buf[20];
3783 int j = 0;
3784
3785 /* Don't escape '[' and '{' if they are in 'isfname'. */
3786 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
3787 if ((*p != '[' && *p != '{') || !vim_isfilec(*p))
3788 buf[j++] = *p;
3789 buf[j] = NUL;
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003790 p = vim_strsave_escaped(fname, buf);
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003791#else
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003792 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
3793 if (shell && csh_like_shell() && p != NULL)
3794 {
3795 char_u *s;
3796
3797 /* For csh and similar shells need to put two backslashes before '!'.
3798 * One is taken by Vim, one by the shell. */
3799 s = vim_strsave_escaped(p, (char_u *)"!");
3800 vim_free(p);
3801 p = s;
3802 }
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003803#endif
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003804
3805 /* '>' and '+' are special at the start of some commands, e.g. ":edit" and
3806 * ":write". "cd -" has a special meaning. */
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003807 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL)))
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003808 escape_fname(&p);
3809
3810 return p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003811}
3812
3813/*
Bram Moolenaar45360022005-07-21 21:08:21 +00003814 * Put a backslash before the file name in "pp", which is in allocated memory.
3815 */
3816 static void
3817escape_fname(pp)
3818 char_u **pp;
3819{
3820 char_u *p;
3821
3822 p = alloc((unsigned)(STRLEN(*pp) + 2));
3823 if (p != NULL)
3824 {
3825 p[0] = '\\';
3826 STRCPY(p + 1, *pp);
3827 vim_free(*pp);
3828 *pp = p;
3829 }
3830}
3831
3832/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833 * For each file name in files[num_files]:
3834 * If 'orig_pat' starts with "~/", replace the home directory with "~".
3835 */
3836 void
3837tilde_replace(orig_pat, num_files, files)
3838 char_u *orig_pat;
3839 int num_files;
3840 char_u **files;
3841{
3842 int i;
3843 char_u *p;
3844
3845 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
3846 {
3847 for (i = 0; i < num_files; ++i)
3848 {
3849 p = home_replace_save(NULL, files[i]);
3850 if (p != NULL)
3851 {
3852 vim_free(files[i]);
3853 files[i] = p;
3854 }
3855 }
3856 }
3857}
3858
3859/*
3860 * Show all matches for completion on the command line.
3861 * Returns EXPAND_NOTHING when the character that triggered expansion should
3862 * be inserted like a normal character.
3863 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864 static int
3865showmatches(xp, wildmenu)
3866 expand_T *xp;
Bram Moolenaar78a15312009-05-15 19:33:18 +00003867 int wildmenu UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868{
3869#define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m])
3870 int num_files;
3871 char_u **files_found;
3872 int i, j, k;
3873 int maxlen;
3874 int lines;
3875 int columns;
3876 char_u *p;
3877 int lastlen;
3878 int attr;
3879 int showtail;
3880
3881 if (xp->xp_numfiles == -1)
3882 {
3883 set_expand_context(xp);
3884 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos,
3885 &num_files, &files_found);
3886 showtail = expand_showtail(xp);
3887 if (i != EXPAND_OK)
3888 return i;
3889
3890 }
3891 else
3892 {
3893 num_files = xp->xp_numfiles;
3894 files_found = xp->xp_files;
3895 showtail = cmd_showtail;
3896 }
3897
3898#ifdef FEAT_WILDMENU
3899 if (!wildmenu)
3900 {
3901#endif
3902 msg_didany = FALSE; /* lines_left will be set */
3903 msg_start(); /* prepare for paging */
3904 msg_putchar('\n');
3905 out_flush();
3906 cmdline_row = msg_row;
3907 msg_didany = FALSE; /* lines_left will be set again */
3908 msg_start(); /* prepare for paging */
3909#ifdef FEAT_WILDMENU
3910 }
3911#endif
3912
3913 if (got_int)
3914 got_int = FALSE; /* only int. the completion, not the cmd line */
3915#ifdef FEAT_WILDMENU
3916 else if (wildmenu)
3917 win_redr_status_matches(xp, num_files, files_found, 0, showtail);
3918#endif
3919 else
3920 {
3921 /* find the length of the longest file name */
3922 maxlen = 0;
3923 for (i = 0; i < num_files; ++i)
3924 {
3925 if (!showtail && (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003926 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 || xp->xp_context == EXPAND_BUFFERS))
3928 {
3929 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE);
3930 j = vim_strsize(NameBuff);
3931 }
3932 else
3933 j = vim_strsize(L_SHOWFILE(i));
3934 if (j > maxlen)
3935 maxlen = j;
3936 }
3937
3938 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3939 lines = num_files;
3940 else
3941 {
3942 /* compute the number of columns and lines for the listing */
3943 maxlen += 2; /* two spaces between file names */
3944 columns = ((int)Columns + 2) / maxlen;
3945 if (columns < 1)
3946 columns = 1;
3947 lines = (num_files + columns - 1) / columns;
3948 }
3949
3950 attr = hl_attr(HLF_D); /* find out highlighting for directories */
3951
3952 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3953 {
3954 MSG_PUTS_ATTR(_("tagname"), hl_attr(HLF_T));
3955 msg_clr_eos();
3956 msg_advance(maxlen - 3);
3957 MSG_PUTS_ATTR(_(" kind file\n"), hl_attr(HLF_T));
3958 }
3959
3960 /* list the files line by line */
3961 for (i = 0; i < lines; ++i)
3962 {
3963 lastlen = 999;
3964 for (k = i; k < num_files; k += lines)
3965 {
3966 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3967 {
3968 msg_outtrans_attr(files_found[k], hl_attr(HLF_D));
3969 p = files_found[k] + STRLEN(files_found[k]) + 1;
3970 msg_advance(maxlen + 1);
3971 msg_puts(p);
3972 msg_advance(maxlen + 3);
3973 msg_puts_long_attr(p + 2, hl_attr(HLF_D));
3974 break;
3975 }
3976 for (j = maxlen - lastlen; --j >= 0; )
3977 msg_putchar(' ');
3978 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003979 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 || xp->xp_context == EXPAND_BUFFERS)
3981 {
Bram Moolenaarb91e59b2010-03-17 19:13:27 +01003982 /* highlight directories */
Bram Moolenaar63fa5262010-03-23 18:06:52 +01003983 if (xp->xp_numfiles != -1)
3984 {
3985 char_u *halved_slash;
3986 char_u *exp_path;
3987
3988 /* Expansion was done before and special characters
3989 * were escaped, need to halve backslashes. Also
3990 * $HOME has been replaced with ~/. */
3991 exp_path = expand_env_save_opt(files_found[k], TRUE);
3992 halved_slash = backslash_halve_save(
3993 exp_path != NULL ? exp_path : files_found[k]);
3994 j = mch_isdir(halved_slash != NULL ? halved_slash
3995 : files_found[k]);
3996 vim_free(exp_path);
3997 vim_free(halved_slash);
3998 }
3999 else
4000 /* Expansion was done here, file names are literal. */
4001 j = mch_isdir(files_found[k]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002 if (showtail)
4003 p = L_SHOWFILE(k);
4004 else
4005 {
4006 home_replace(NULL, files_found[k], NameBuff, MAXPATHL,
4007 TRUE);
4008 p = NameBuff;
4009 }
4010 }
4011 else
4012 {
4013 j = FALSE;
4014 p = L_SHOWFILE(k);
4015 }
4016 lastlen = msg_outtrans_attr(p, j ? attr : 0);
4017 }
4018 if (msg_col > 0) /* when not wrapped around */
4019 {
4020 msg_clr_eos();
4021 msg_putchar('\n');
4022 }
4023 out_flush(); /* show one line at a time */
4024 if (got_int)
4025 {
4026 got_int = FALSE;
4027 break;
4028 }
4029 }
4030
4031 /*
4032 * we redraw the command below the lines that we have just listed
4033 * This is a bit tricky, but it saves a lot of screen updating.
4034 */
4035 cmdline_row = msg_row; /* will put it back later */
4036 }
4037
4038 if (xp->xp_numfiles == -1)
4039 FreeWild(num_files, files_found);
4040
4041 return EXPAND_OK;
4042}
4043
4044/*
4045 * Private gettail for showmatches() (and win_redr_status_matches()):
4046 * Find tail of file name path, but ignore trailing "/".
4047 */
4048 char_u *
4049sm_gettail(s)
4050 char_u *s;
4051{
4052 char_u *p;
4053 char_u *t = s;
4054 int had_sep = FALSE;
4055
4056 for (p = s; *p != NUL; )
4057 {
4058 if (vim_ispathsep(*p)
4059#ifdef BACKSLASH_IN_FILENAME
4060 && !rem_backslash(p)
4061#endif
4062 )
4063 had_sep = TRUE;
4064 else if (had_sep)
4065 {
4066 t = p;
4067 had_sep = FALSE;
4068 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004069 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004070 }
4071 return t;
4072}
4073
4074/*
4075 * Return TRUE if we only need to show the tail of completion matches.
4076 * When not completing file names or there is a wildcard in the path FALSE is
4077 * returned.
4078 */
4079 static int
4080expand_showtail(xp)
4081 expand_T *xp;
4082{
4083 char_u *s;
4084 char_u *end;
4085
4086 /* When not completing file names a "/" may mean something different. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004087 if (xp->xp_context != EXPAND_FILES
4088 && xp->xp_context != EXPAND_SHELLCMD
4089 && xp->xp_context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 return FALSE;
4091
4092 end = gettail(xp->xp_pattern);
4093 if (end == xp->xp_pattern) /* there is no path separator */
4094 return FALSE;
4095
4096 for (s = xp->xp_pattern; s < end; s++)
4097 {
4098 /* Skip escaped wildcards. Only when the backslash is not a path
4099 * separator, on DOS the '*' "path\*\file" must not be skipped. */
4100 if (rem_backslash(s))
4101 ++s;
4102 else if (vim_strchr((char_u *)"*?[", *s) != NULL)
4103 return FALSE;
4104 }
4105 return TRUE;
4106}
4107
4108/*
4109 * Prepare a string for expansion.
4110 * When expanding file names: The string will be used with expand_wildcards().
4111 * Copy the file name into allocated memory and add a '*' at the end.
4112 * When expanding other names: The string will be used with regcomp(). Copy
4113 * the name into allocated memory and prepend "^".
4114 */
4115 char_u *
4116addstar(fname, len, context)
4117 char_u *fname;
4118 int len;
4119 int context; /* EXPAND_FILES etc. */
4120{
4121 char_u *retval;
4122 int i, j;
4123 int new_len;
4124 char_u *tail;
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004125 int ends_in_star;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004127 if (context != EXPAND_FILES
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004128 && context != EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004129 && context != EXPAND_SHELLCMD
4130 && context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131 {
4132 /*
4133 * Matching will be done internally (on something other than files).
4134 * So we convert the file-matching-type wildcards into our kind for
4135 * use with vim_regcomp(). First work out how long it will be:
4136 */
4137
4138 /* For help tags the translation is done in find_help_tags().
4139 * For a tag pattern starting with "/" no translation is needed. */
4140 if (context == EXPAND_HELP
4141 || context == EXPAND_COLORS
4142 || context == EXPAND_COMPILER
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004143 || context == EXPAND_OWNSYNTAX
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004144 || context == EXPAND_FILETYPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004145 || (context == EXPAND_TAGS && fname[0] == '/'))
4146 retval = vim_strnsave(fname, len);
4147 else
4148 {
4149 new_len = len + 2; /* +2 for '^' at start, NUL at end */
4150 for (i = 0; i < len; i++)
4151 {
4152 if (fname[i] == '*' || fname[i] == '~')
4153 new_len++; /* '*' needs to be replaced by ".*"
4154 '~' needs to be replaced by "\~" */
4155
4156 /* Buffer names are like file names. "." should be literal */
4157 if (context == EXPAND_BUFFERS && fname[i] == '.')
4158 new_len++; /* "." becomes "\." */
4159
4160 /* Custom expansion takes care of special things, match
4161 * backslashes literally (perhaps also for other types?) */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004162 if ((context == EXPAND_USER_DEFINED
4163 || context == EXPAND_USER_LIST) && fname[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164 new_len++; /* '\' becomes "\\" */
4165 }
4166 retval = alloc(new_len);
4167 if (retval != NULL)
4168 {
4169 retval[0] = '^';
4170 j = 1;
4171 for (i = 0; i < len; i++, j++)
4172 {
4173 /* Skip backslash. But why? At least keep it for custom
4174 * expansion. */
4175 if (context != EXPAND_USER_DEFINED
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004176 && context != EXPAND_USER_LIST
4177 && fname[i] == '\\'
4178 && ++i == len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179 break;
4180
4181 switch (fname[i])
4182 {
4183 case '*': retval[j++] = '.';
4184 break;
4185 case '~': retval[j++] = '\\';
4186 break;
4187 case '?': retval[j] = '.';
4188 continue;
4189 case '.': if (context == EXPAND_BUFFERS)
4190 retval[j++] = '\\';
4191 break;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004192 case '\\': if (context == EXPAND_USER_DEFINED
4193 || context == EXPAND_USER_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194 retval[j++] = '\\';
4195 break;
4196 }
4197 retval[j] = fname[i];
4198 }
4199 retval[j] = NUL;
4200 }
4201 }
4202 }
4203 else
4204 {
4205 retval = alloc(len + 4);
4206 if (retval != NULL)
4207 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004208 vim_strncpy(retval, fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209
4210 /*
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004211 * Don't add a star to *, ~, ~user, $var or `cmd`.
4212 * * would become **, which walks the whole tree.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004213 * ~ would be at the start of the file name, but not the tail.
4214 * $ could be anywhere in the tail.
4215 * ` could be anywhere in the file name.
Bram Moolenaar066b6222008-01-04 14:17:47 +00004216 * When the name ends in '$' don't add a star, remove the '$'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217 */
4218 tail = gettail(retval);
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004219 ends_in_star = (len > 0 && retval[len - 1] == '*');
4220#ifndef BACKSLASH_IN_FILENAME
4221 for (i = len - 2; i >= 0; --i)
4222 {
4223 if (retval[i] != '\\')
4224 break;
4225 ends_in_star = !ends_in_star;
4226 }
4227#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228 if ((*retval != '~' || tail != retval)
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004229 && !ends_in_star
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230 && vim_strchr(tail, '$') == NULL
4231 && vim_strchr(retval, '`') == NULL)
4232 retval[len++] = '*';
Bram Moolenaar066b6222008-01-04 14:17:47 +00004233 else if (len > 0 && retval[len - 1] == '$')
4234 --len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235 retval[len] = NUL;
4236 }
4237 }
4238 return retval;
4239}
4240
4241/*
4242 * Must parse the command line so far to work out what context we are in.
4243 * Completion can then be done based on that context.
4244 * This routine sets the variables:
4245 * xp->xp_pattern The start of the pattern to be expanded within
4246 * the command line (ends at the cursor).
4247 * xp->xp_context The type of thing to expand. Will be one of:
4248 *
4249 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on
4250 * the command line, like an unknown command. Caller
4251 * should beep.
4252 * EXPAND_NOTHING Unrecognised context for completion, use char like
4253 * a normal char, rather than for completion. eg
4254 * :s/^I/
4255 * EXPAND_COMMANDS Cursor is still touching the command, so complete
4256 * it.
4257 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands.
4258 * EXPAND_FILES After command with XFILE set, or after setting
4259 * with P_EXPAND set. eg :e ^I, :w>>^I
4260 * EXPAND_DIRECTORIES In some cases this is used instead of the latter
4261 * when we know only directories are of interest. eg
4262 * :set dir=^I
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004263 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004264 * EXPAND_SETTINGS Complete variable names. eg :set d^I
4265 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I
4266 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I
4267 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect
4268 * EXPAND_HELP Complete tags from the file 'helpfile'/tags
4269 * EXPAND_EVENTS Complete event names
4270 * EXPAND_SYNTAX Complete :syntax command arguments
4271 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names
4272 * EXPAND_AUGROUP Complete autocommand group names
4273 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I
4274 * EXPAND_MAPPINGS Complete mapping and abbreviation names,
4275 * eg :unmap a^I , :cunab x^I
4276 * EXPAND_FUNCTIONS Complete internal or user defined function names,
4277 * eg :call sub^I
4278 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I
4279 * EXPAND_EXPRESSION Complete internal or user defined function/variable
4280 * names in expressions, eg :while s^I
4281 * EXPAND_ENV_VARS Complete environment variable names
4282 */
4283 static void
4284set_expand_context(xp)
4285 expand_T *xp;
4286{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004287 /* only expansion for ':', '>' and '=' command-lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288 if (ccline.cmdfirstc != ':'
4289#ifdef FEAT_EVAL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004290 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '='
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004291 && !ccline.input_fn
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292#endif
4293 )
4294 {
4295 xp->xp_context = EXPAND_NOTHING;
4296 return;
4297 }
4298 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos);
4299}
4300
4301 void
4302set_cmd_context(xp, str, len, col)
4303 expand_T *xp;
4304 char_u *str; /* start of command line */
4305 int len; /* length of command line (excl. NUL) */
4306 int col; /* position of cursor */
4307{
4308 int old_char = NUL;
4309 char_u *nextcomm;
4310
4311 /*
4312 * Avoid a UMR warning from Purify, only save the character if it has been
4313 * written before.
4314 */
4315 if (col < len)
4316 old_char = str[col];
4317 str[col] = NUL;
4318 nextcomm = str;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004319
4320#ifdef FEAT_EVAL
4321 if (ccline.cmdfirstc == '=')
Bram Moolenaar4f688582007-07-24 12:34:30 +00004322 {
4323# ifdef FEAT_CMDL_COMPL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004324 /* pass CMD_SIZE because there is no real command */
4325 set_context_for_expression(xp, str, CMD_SIZE);
Bram Moolenaar4f688582007-07-24 12:34:30 +00004326# endif
4327 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004328 else if (ccline.input_fn)
4329 {
4330 xp->xp_context = ccline.xp_context;
4331 xp->xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004332# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004333 xp->xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004334# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004335 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004336 else
4337#endif
4338 while (nextcomm != NULL)
4339 nextcomm = set_one_cmd_context(xp, nextcomm);
4340
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 str[col] = old_char;
4342}
4343
4344/*
4345 * Expand the command line "str" from context "xp".
4346 * "xp" must have been set by set_cmd_context().
4347 * xp->xp_pattern points into "str", to where the text that is to be expanded
4348 * starts.
4349 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the
4350 * cursor.
4351 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the
4352 * key that triggered expansion literally.
4353 * Returns EXPAND_OK otherwise.
4354 */
4355 int
4356expand_cmdline(xp, str, col, matchcount, matches)
4357 expand_T *xp;
4358 char_u *str; /* start of command line */
4359 int col; /* position of cursor */
4360 int *matchcount; /* return: nr of matches */
4361 char_u ***matches; /* return: array of pointers to matches */
4362{
4363 char_u *file_str = NULL;
4364
4365 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
4366 {
4367 beep_flush();
4368 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */
4369 }
4370 if (xp->xp_context == EXPAND_NOTHING)
4371 {
4372 /* Caller can use the character as a normal char instead */
4373 return EXPAND_NOTHING;
4374 }
4375
4376 /* add star to file name, or convert to regexp if not exp. files. */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004377 xp->xp_pattern_len = (int)(str + col - xp->xp_pattern);
4378 file_str = addstar(xp->xp_pattern, xp->xp_pattern_len, xp->xp_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379 if (file_str == NULL)
4380 return EXPAND_UNSUCCESSFUL;
4381
4382 /* find all files that match the description */
4383 if (ExpandFromContext(xp, file_str, matchcount, matches,
4384 WILD_ADD_SLASH|WILD_SILENT) == FAIL)
4385 {
4386 *matchcount = 0;
4387 *matches = NULL;
4388 }
4389 vim_free(file_str);
4390
4391 return EXPAND_OK;
4392}
4393
4394#ifdef FEAT_MULTI_LANG
4395/*
4396 * Cleanup matches for help tags: remove "@en" if "en" is the only language.
4397 */
4398static void cleanup_help_tags __ARGS((int num_file, char_u **file));
4399
4400 static void
4401cleanup_help_tags(num_file, file)
4402 int num_file;
4403 char_u **file;
4404{
4405 int i, j;
4406 int len;
4407
4408 for (i = 0; i < num_file; ++i)
4409 {
4410 len = (int)STRLEN(file[i]) - 3;
4411 if (len > 0 && STRCMP(file[i] + len, "@en") == 0)
4412 {
4413 /* Sorting on priority means the same item in another language may
4414 * be anywhere. Search all items for a match up to the "@en". */
4415 for (j = 0; j < num_file; ++j)
4416 if (j != i
4417 && (int)STRLEN(file[j]) == len + 3
4418 && STRNCMP(file[i], file[j], len + 1) == 0)
4419 break;
4420 if (j == num_file)
4421 file[i][len] = NUL;
4422 }
4423 }
4424}
4425#endif
4426
4427/*
4428 * Do the expansion based on xp->xp_context and "pat".
4429 */
4430 static int
4431ExpandFromContext(xp, pat, num_file, file, options)
4432 expand_T *xp;
4433 char_u *pat;
4434 int *num_file;
4435 char_u ***file;
4436 int options;
4437{
4438#ifdef FEAT_CMDL_COMPL
4439 regmatch_T regmatch;
4440#endif
4441 int ret;
4442 int flags;
4443
4444 flags = EW_DIR; /* include directories */
4445 if (options & WILD_LIST_NOTFOUND)
4446 flags |= EW_NOTFOUND;
4447 if (options & WILD_ADD_SLASH)
4448 flags |= EW_ADDSLASH;
4449 if (options & WILD_KEEP_ALL)
4450 flags |= EW_KEEPALL;
4451 if (options & WILD_SILENT)
4452 flags |= EW_SILENT;
4453
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004454 if (xp->xp_context == EXPAND_FILES
4455 || xp->xp_context == EXPAND_DIRECTORIES
4456 || xp->xp_context == EXPAND_FILES_IN_PATH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 {
4458 /*
4459 * Expand file or directory names.
4460 */
4461 int free_pat = FALSE;
4462 int i;
4463
4464 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4465 * space */
4466 if (xp->xp_backslash != XP_BS_NONE)
4467 {
4468 free_pat = TRUE;
4469 pat = vim_strsave(pat);
4470 for (i = 0; pat[i]; ++i)
4471 if (pat[i] == '\\')
4472 {
4473 if (xp->xp_backslash == XP_BS_THREE
4474 && pat[i + 1] == '\\'
4475 && pat[i + 2] == '\\'
4476 && pat[i + 3] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004477 STRMOVE(pat + i, pat + i + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478 if (xp->xp_backslash == XP_BS_ONE
4479 && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004480 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481 }
4482 }
4483
4484 if (xp->xp_context == EXPAND_FILES)
4485 flags |= EW_FILE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004486 else if (xp->xp_context == EXPAND_FILES_IN_PATH)
4487 flags |= (EW_FILE | EW_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488 else
4489 flags = (flags | EW_DIR) & ~EW_FILE;
Bram Moolenaard7834d32009-12-02 16:14:36 +00004490 /* Expand wildcards, supporting %:h and the like. */
4491 ret = expand_wildcards_eval(&pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492 if (free_pat)
4493 vim_free(pat);
4494 return ret;
4495 }
4496
4497 *file = (char_u **)"";
4498 *num_file = 0;
4499 if (xp->xp_context == EXPAND_HELP)
4500 {
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00004501 /* With an empty argument we would get all the help tags, which is
4502 * very slow. Get matches for "help" instead. */
4503 if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat,
4504 num_file, file, FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505 {
4506#ifdef FEAT_MULTI_LANG
4507 cleanup_help_tags(*num_file, *file);
4508#endif
4509 return OK;
4510 }
4511 return FAIL;
4512 }
4513
4514#ifndef FEAT_CMDL_COMPL
4515 return FAIL;
4516#else
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004517 if (xp->xp_context == EXPAND_SHELLCMD)
4518 return expand_shellcmd(pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004519 if (xp->xp_context == EXPAND_OLD_SETTING)
4520 return ExpandOldSetting(num_file, file);
4521 if (xp->xp_context == EXPAND_BUFFERS)
4522 return ExpandBufnames(pat, num_file, file, options);
4523 if (xp->xp_context == EXPAND_TAGS
4524 || xp->xp_context == EXPAND_TAGS_LISTFILES)
4525 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file);
4526 if (xp->xp_context == EXPAND_COLORS)
4527 return ExpandRTDir(pat, num_file, file, "colors");
4528 if (xp->xp_context == EXPAND_COMPILER)
4529 return ExpandRTDir(pat, num_file, file, "compiler");
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004530 if (xp->xp_context == EXPAND_OWNSYNTAX)
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004531 return ExpandRTDir(pat, num_file, file, "syntax");
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004532 if (xp->xp_context == EXPAND_FILETYPE)
4533 return ExpandRTDir(pat, num_file, file, "{syntax,indent,ftplugin}");
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004534# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4535 if (xp->xp_context == EXPAND_USER_LIST)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004536 return ExpandUserList(xp, num_file, file);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004537# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538
4539 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4540 if (regmatch.regprog == NULL)
4541 return FAIL;
4542
4543 /* set ignore-case according to p_ic, p_scs and pat */
4544 regmatch.rm_ic = ignorecase(pat);
4545
4546 if (xp->xp_context == EXPAND_SETTINGS
4547 || xp->xp_context == EXPAND_BOOL_SETTINGS)
4548 ret = ExpandSettings(xp, &regmatch, num_file, file);
4549 else if (xp->xp_context == EXPAND_MAPPINGS)
4550 ret = ExpandMappings(&regmatch, num_file, file);
4551# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4552 else if (xp->xp_context == EXPAND_USER_DEFINED)
4553 ret = ExpandUserDefined(xp, &regmatch, num_file, file);
4554# endif
4555 else
4556 {
4557 static struct expgen
4558 {
4559 int context;
4560 char_u *((*func)__ARGS((expand_T *, int)));
4561 int ic;
4562 } tab[] =
4563 {
4564 {EXPAND_COMMANDS, get_command_name, FALSE},
Bram Moolenaar42b4dda2010-03-02 15:56:05 +01004565 {EXPAND_BEHAVE, get_behave_arg, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566#ifdef FEAT_USR_CMDS
4567 {EXPAND_USER_COMMANDS, get_user_commands, FALSE},
4568 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE},
4569 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE},
4570 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE},
4571#endif
4572#ifdef FEAT_EVAL
4573 {EXPAND_USER_VARS, get_user_var_name, FALSE},
4574 {EXPAND_FUNCTIONS, get_function_name, FALSE},
4575 {EXPAND_USER_FUNC, get_user_func_name, FALSE},
4576 {EXPAND_EXPRESSION, get_expr_name, FALSE},
4577#endif
4578#ifdef FEAT_MENU
4579 {EXPAND_MENUS, get_menu_name, FALSE},
4580 {EXPAND_MENUNAMES, get_menu_names, FALSE},
4581#endif
4582#ifdef FEAT_SYN_HL
4583 {EXPAND_SYNTAX, get_syntax_name, TRUE},
4584#endif
4585 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE},
4586#ifdef FEAT_AUTOCMD
4587 {EXPAND_EVENTS, get_event_name, TRUE},
4588 {EXPAND_AUGROUP, get_augroup_name, TRUE},
4589#endif
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004590#ifdef FEAT_CSCOPE
4591 {EXPAND_CSCOPE, get_cscope_name, TRUE},
4592#endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004593#ifdef FEAT_SIGNS
4594 {EXPAND_SIGN, get_sign_name, TRUE},
4595#endif
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004596#ifdef FEAT_PROFILE
4597 {EXPAND_PROFILE, get_profile_name, TRUE},
4598#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
4600 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
4601 {EXPAND_LANGUAGE, get_lang_arg, TRUE},
4602#endif
4603 {EXPAND_ENV_VARS, get_env_name, TRUE},
4604 };
4605 int i;
4606
4607 /*
4608 * Find a context in the table and call the ExpandGeneric() with the
4609 * right function to do the expansion.
4610 */
4611 ret = FAIL;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00004612 for (i = 0; i < (int)(sizeof(tab) / sizeof(struct expgen)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613 if (xp->xp_context == tab[i].context)
4614 {
4615 if (tab[i].ic)
4616 regmatch.rm_ic = TRUE;
4617 ret = ExpandGeneric(xp, &regmatch, num_file, file, tab[i].func);
4618 break;
4619 }
4620 }
4621
4622 vim_free(regmatch.regprog);
4623
4624 return ret;
4625#endif /* FEAT_CMDL_COMPL */
4626}
4627
4628#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4629/*
4630 * Expand a list of names.
4631 *
4632 * Generic function for command line completion. It calls a function to
4633 * obtain strings, one by one. The strings are matched against a regexp
4634 * program. Matching strings are copied into an array, which is returned.
4635 *
4636 * Returns OK when no problems encountered, FAIL for error (out of memory).
4637 */
4638 int
4639ExpandGeneric(xp, regmatch, num_file, file, func)
4640 expand_T *xp;
4641 regmatch_T *regmatch;
4642 int *num_file;
4643 char_u ***file;
4644 char_u *((*func)__ARGS((expand_T *, int)));
4645 /* returns a string from the list */
4646{
4647 int i;
4648 int count = 0;
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004649 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650 char_u *str;
4651
4652 /* do this loop twice:
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004653 * round == 0: count the number of matching names
4654 * round == 1: copy the matching names into allocated memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655 */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004656 for (round = 0; round <= 1; ++round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657 {
4658 for (i = 0; ; ++i)
4659 {
4660 str = (*func)(xp, i);
4661 if (str == NULL) /* end of list */
4662 break;
4663 if (*str == NUL) /* skip empty strings */
4664 continue;
4665
4666 if (vim_regexec(regmatch, str, (colnr_T)0))
4667 {
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004668 if (round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669 {
4670 str = vim_strsave_escaped(str, (char_u *)" \t\\.");
4671 (*file)[count] = str;
4672#ifdef FEAT_MENU
4673 if (func == get_menu_names && str != NULL)
4674 {
4675 /* test for separator added by get_menu_names() */
4676 str += STRLEN(str) - 1;
4677 if (*str == '\001')
4678 *str = '.';
4679 }
4680#endif
4681 }
4682 ++count;
4683 }
4684 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004685 if (round == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686 {
4687 if (count == 0)
4688 return OK;
4689 *num_file = count;
4690 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
4691 if (*file == NULL)
4692 {
4693 *file = (char_u **)"";
4694 return FAIL;
4695 }
4696 count = 0;
4697 }
4698 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004699
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004700 /* Sort the results. Keep menu's in the specified order. */
4701 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS)
4702 sort_strings(*file, *num_file);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004703
Bram Moolenaar4f688582007-07-24 12:34:30 +00004704#ifdef FEAT_CMDL_COMPL
4705 /* Reset the variables used for special highlight names expansion, so that
4706 * they don't show up when getting normal highlight names by ID. */
4707 reset_expand_highlight();
4708#endif
4709
Bram Moolenaar071d4272004-06-13 20:20:40 +00004710 return OK;
4711}
4712
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004713/*
4714 * Complete a shell command.
4715 * Returns FAIL or OK;
4716 */
4717 static int
4718expand_shellcmd(filepat, num_file, file, flagsarg)
4719 char_u *filepat; /* pattern to match with command names */
4720 int *num_file; /* return: number of matches */
4721 char_u ***file; /* return: array with matches */
4722 int flagsarg; /* EW_ flags */
4723{
4724 char_u *pat;
4725 int i;
4726 char_u *path;
4727 int mustfree = FALSE;
4728 garray_T ga;
4729 char_u *buf = alloc(MAXPATHL);
4730 size_t l;
4731 char_u *s, *e;
4732 int flags = flagsarg;
4733 int ret;
4734
4735 if (buf == NULL)
4736 return FAIL;
4737
4738 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4739 * space */
4740 pat = vim_strsave(filepat);
4741 for (i = 0; pat[i]; ++i)
4742 if (pat[i] == '\\' && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004743 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004744
4745 flags |= EW_FILE | EW_EXEC;
4746
4747 /* For an absolute name we don't use $PATH. */
Bram Moolenaar68c31742006-09-02 15:54:18 +00004748 if (mch_isFullName(pat))
4749 path = (char_u *)" ";
4750 else if ((pat[0] == '.' && (vim_ispathsep(pat[1])
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004751 || (pat[1] == '.' && vim_ispathsep(pat[2])))))
4752 path = (char_u *)".";
4753 else
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01004754 {
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004755 path = vim_getenv((char_u *)"PATH", &mustfree);
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01004756 if (path == NULL)
4757 path = (char_u *)"";
4758 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004759
4760 /*
4761 * Go over all directories in $PATH. Expand matches in that directory and
4762 * collect them in "ga".
4763 */
4764 ga_init2(&ga, (int)sizeof(char *), 10);
4765 for (s = path; *s != NUL; s = e)
4766 {
Bram Moolenaar68c31742006-09-02 15:54:18 +00004767 if (*s == ' ')
4768 ++s; /* Skip space used for absolute path name. */
4769
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004770#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
4771 e = vim_strchr(s, ';');
4772#else
4773 e = vim_strchr(s, ':');
4774#endif
4775 if (e == NULL)
4776 e = s + STRLEN(s);
4777
4778 l = e - s;
4779 if (l > MAXPATHL - 5)
4780 break;
4781 vim_strncpy(buf, s, l);
4782 add_pathsep(buf);
4783 l = STRLEN(buf);
4784 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l);
4785
4786 /* Expand matches in one directory of $PATH. */
4787 ret = expand_wildcards(1, &buf, num_file, file, flags);
4788 if (ret == OK)
4789 {
4790 if (ga_grow(&ga, *num_file) == FAIL)
4791 FreeWild(*num_file, *file);
4792 else
4793 {
4794 for (i = 0; i < *num_file; ++i)
4795 {
4796 s = (*file)[i];
4797 if (STRLEN(s) > l)
4798 {
4799 /* Remove the path again. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004800 STRMOVE(s, s + l);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004801 ((char_u **)ga.ga_data)[ga.ga_len++] = s;
4802 }
4803 else
4804 vim_free(s);
4805 }
4806 vim_free(*file);
4807 }
4808 }
4809 if (*e != NUL)
4810 ++e;
4811 }
4812 *file = ga.ga_data;
4813 *num_file = ga.ga_len;
4814
4815 vim_free(buf);
4816 vim_free(pat);
4817 if (mustfree)
4818 vim_free(path);
4819 return OK;
4820}
4821
4822
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00004824static 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));
4825
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826/*
Bram Moolenaar21669c02008-01-18 12:16:16 +00004827 * Call "user_expand_func()" to invoke a user defined VimL function and return
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004828 * the result (either a string or a List).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004829 */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004830 static void *
4831call_user_expand_func(user_expand_func, xp, num_file, file)
4832 void *(*user_expand_func) __ARGS((char_u *, int, char_u **, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833 expand_T *xp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834 int *num_file;
4835 char_u ***file;
4836{
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004837 char_u keep;
4838 char_u num[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004839 char_u *args[3];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 int save_current_SID = current_SID;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004841 void *ret;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004842 struct cmdline_info save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843
4844 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0')
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004845 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846 *num_file = 0;
4847 *file = NULL;
4848
Bram Moolenaar21669c02008-01-18 12:16:16 +00004849 if (ccline.cmdbuff == NULL)
4850 {
4851 /* Completion from Insert mode, pass fake arguments. */
4852 keep = 0;
Bram Moolenaar9a31f882008-01-22 11:44:47 +00004853 sprintf((char *)num, "%d", (int)STRLEN(xp->xp_pattern));
Bram Moolenaar21669c02008-01-18 12:16:16 +00004854 args[1] = xp->xp_pattern;
4855 }
4856 else
4857 {
4858 /* Completion on the command line, pass real arguments. */
4859 keep = ccline.cmdbuff[ccline.cmdlen];
4860 ccline.cmdbuff[ccline.cmdlen] = 0;
4861 sprintf((char *)num, "%d", ccline.cmdpos);
4862 args[1] = ccline.cmdbuff;
4863 }
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004864 args[0] = vim_strnsave(xp->xp_pattern, xp->xp_pattern_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865 args[2] = num;
4866
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004867 /* Save the cmdline, we don't know what the function may do. */
4868 save_ccline = ccline;
4869 ccline.cmdbuff = NULL;
4870 ccline.cmdprompt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871 current_SID = xp->xp_scriptID;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004872
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004873 ret = user_expand_func(xp->xp_arg, 3, args, FALSE);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004874
4875 ccline = save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876 current_SID = save_current_SID;
Bram Moolenaar21669c02008-01-18 12:16:16 +00004877 if (ccline.cmdbuff != NULL)
4878 ccline.cmdbuff[ccline.cmdlen] = keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004879
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004880 vim_free(args[0]);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004881 return ret;
4882}
4883
4884/*
4885 * Expand names with a function defined by the user.
4886 */
4887 static int
4888ExpandUserDefined(xp, regmatch, num_file, file)
4889 expand_T *xp;
4890 regmatch_T *regmatch;
4891 int *num_file;
4892 char_u ***file;
4893{
4894 char_u *retstr;
4895 char_u *s;
4896 char_u *e;
4897 char_u keep;
4898 garray_T ga;
4899
4900 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file);
4901 if (retstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902 return FAIL;
4903
4904 ga_init2(&ga, (int)sizeof(char *), 3);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004905 for (s = retstr; *s != NUL; s = e)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906 {
4907 e = vim_strchr(s, '\n');
4908 if (e == NULL)
4909 e = s + STRLEN(s);
4910 keep = *e;
4911 *e = 0;
4912
4913 if (xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0)
4914 {
4915 *e = keep;
4916 if (*e != NUL)
4917 ++e;
4918 continue;
4919 }
4920
4921 if (ga_grow(&ga, 1) == FAIL)
4922 break;
4923
4924 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s));
4925 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926
4927 *e = keep;
4928 if (*e != NUL)
4929 ++e;
4930 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004931 vim_free(retstr);
4932 *file = ga.ga_data;
4933 *num_file = ga.ga_len;
4934 return OK;
4935}
4936
4937/*
4938 * Expand names with a list returned by a function defined by the user.
4939 */
4940 static int
4941ExpandUserList(xp, num_file, file)
4942 expand_T *xp;
4943 int *num_file;
4944 char_u ***file;
4945{
4946 list_T *retlist;
4947 listitem_T *li;
4948 garray_T ga;
4949
4950 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file);
4951 if (retlist == NULL)
4952 return FAIL;
4953
4954 ga_init2(&ga, (int)sizeof(char *), 3);
4955 /* Loop over the items in the list. */
4956 for (li = retlist->lv_first; li != NULL; li = li->li_next)
4957 {
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00004958 if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL)
4959 continue; /* Skip non-string items and empty strings */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004960
4961 if (ga_grow(&ga, 1) == FAIL)
4962 break;
4963
4964 ((char_u **)ga.ga_data)[ga.ga_len] =
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00004965 vim_strsave(li->li_tv.vval.v_string);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004966 ++ga.ga_len;
4967 }
4968 list_unref(retlist);
4969
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970 *file = ga.ga_data;
4971 *num_file = ga.ga_len;
4972 return OK;
4973}
4974#endif
4975
4976/*
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004977 * Expand color scheme, compiler or filetype names:
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004978 * 'runtimepath'/{dirnames}/{pat}.vim
4979 * dirnames may contain one directory (ex: "colorscheme") or can be a glob
4980 * expression matching multiple directories (ex: "{syntax,ftplugin,indent}").
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 */
4982 static int
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004983ExpandRTDir(pat, num_file, file, dirnames)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 char_u *pat;
4985 int *num_file;
4986 char_u ***file;
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004987 char *dirnames;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004988{
4989 char_u *all;
4990 char_u *s;
4991 char_u *e;
4992 garray_T ga;
4993
4994 *num_file = 0;
4995 *file = NULL;
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004996 s = alloc((unsigned)(STRLEN(pat) + STRLEN(dirnames) + 7));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 if (s == NULL)
4998 return FAIL;
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004999 sprintf((char *)s, "%s/%s*.vim", dirnames, pat);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005000 all = globpath(p_rtp, s, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001 vim_free(s);
5002 if (all == NULL)
5003 return FAIL;
5004
5005 ga_init2(&ga, (int)sizeof(char *), 3);
5006 for (s = all; *s != NUL; s = e)
5007 {
5008 e = vim_strchr(s, '\n');
5009 if (e == NULL)
5010 e = s + STRLEN(s);
5011 if (ga_grow(&ga, 1) == FAIL)
5012 break;
5013 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0)
5014 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005015 for (s = e - 4; s > all; mb_ptr_back(all, s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016 if (*s == '\n' || vim_ispathsep(*s))
5017 break;
5018 ++s;
5019 ((char_u **)ga.ga_data)[ga.ga_len] =
5020 vim_strnsave(s, (int)(e - s - 4));
5021 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 }
5023 if (*e != NUL)
5024 ++e;
5025 }
5026 vim_free(all);
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005027
5028 /* Sort and remove duplicates which can happen when specifying multiple
Bram Moolenaardc685ab2010-08-13 21:16:49 +02005029 * directories in dirnames such as "{syntax,ftplugin,indent}". */
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005030 remove_duplicates(&ga);
5031
Bram Moolenaar071d4272004-06-13 20:20:40 +00005032 *file = ga.ga_data;
5033 *num_file = ga.ga_len;
5034 return OK;
5035}
5036
5037#endif
5038
5039#if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO)
5040/*
5041 * Expand "file" for all comma-separated directories in "path".
5042 * Returns an allocated string with all matches concatenated, separated by
5043 * newlines. Returns NULL for an error or no matches.
5044 */
5045 char_u *
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005046globpath(path, file, expand_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 char_u *path;
5048 char_u *file;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005049 int expand_options;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050{
5051 expand_T xpc;
5052 char_u *buf;
5053 garray_T ga;
5054 int i;
5055 int len;
5056 int num_p;
5057 char_u **p;
5058 char_u *cur = NULL;
5059
5060 buf = alloc(MAXPATHL);
5061 if (buf == NULL)
5062 return NULL;
5063
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005064 ExpandInit(&xpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005066
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 ga_init2(&ga, 1, 100);
5068
5069 /* Loop over all entries in {path}. */
5070 while (*path != NUL)
5071 {
5072 /* Copy one item of the path to buf[] and concatenate the file name. */
5073 copy_option_part(&path, buf, MAXPATHL, ",");
5074 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
5075 {
Bram Moolenaar2d7c47d2010-08-10 19:50:26 +02005076# if defined(MSWIN) || defined(MSDOS)
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005077 /* Using the platform's path separator (\) makes vim incorrectly
5078 * treat it as an escape character, use '/' instead. */
5079 if (*buf != NUL && !after_pathsep(buf, buf + STRLEN(buf)))
5080 STRCAT(buf, "/");
5081# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082 add_pathsep(buf);
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005083# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 STRCAT(buf, file);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005085 if (ExpandFromContext(&xpc, buf, &num_p, &p,
5086 WILD_SILENT|expand_options) != FAIL && num_p > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005088 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT|expand_options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 for (len = 0, i = 0; i < num_p; ++i)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005090 len += (int)STRLEN(p[i]) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091
5092 /* Concatenate new results to previous ones. */
5093 if (ga_grow(&ga, len) == OK)
5094 {
5095 cur = (char_u *)ga.ga_data + ga.ga_len;
5096 for (i = 0; i < num_p; ++i)
5097 {
5098 STRCPY(cur, p[i]);
5099 cur += STRLEN(p[i]);
5100 *cur++ = '\n';
5101 }
5102 ga.ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005103 }
5104 FreeWild(num_p, p);
5105 }
5106 }
5107 }
5108 if (cur != NULL)
5109 *--cur = 0; /* Replace trailing newline with NUL */
5110
5111 vim_free(buf);
5112 return (char_u *)ga.ga_data;
5113}
5114
5115#endif
5116
5117#if defined(FEAT_CMDHIST) || defined(PROTO)
5118
5119/*********************************
5120 * Command line history stuff *
5121 *********************************/
5122
5123/*
5124 * Translate a history character to the associated type number.
5125 */
5126 static int
5127hist_char2type(c)
5128 int c;
5129{
5130 if (c == ':')
5131 return HIST_CMD;
5132 if (c == '=')
5133 return HIST_EXPR;
5134 if (c == '@')
5135 return HIST_INPUT;
5136 if (c == '>')
5137 return HIST_DEBUG;
5138 return HIST_SEARCH; /* must be '?' or '/' */
5139}
5140
5141/*
5142 * Table of history names.
5143 * These names are used in :history and various hist...() functions.
5144 * It is sufficient to give the significant prefix of a history name.
5145 */
5146
5147static char *(history_names[]) =
5148{
5149 "cmd",
5150 "search",
5151 "expr",
5152 "input",
5153 "debug",
5154 NULL
5155};
5156
5157/*
5158 * init_history() - Initialize the command line history.
5159 * Also used to re-allocate the history when the size changes.
5160 */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00005161 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005162init_history()
5163{
5164 int newlen; /* new length of history table */
5165 histentry_T *temp;
5166 int i;
5167 int j;
5168 int type;
5169
5170 /*
5171 * If size of history table changed, reallocate it
5172 */
5173 newlen = (int)p_hi;
5174 if (newlen != hislen) /* history length changed */
5175 {
5176 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */
5177 {
5178 if (newlen)
5179 {
5180 temp = (histentry_T *)lalloc(
5181 (long_u)(newlen * sizeof(histentry_T)), TRUE);
5182 if (temp == NULL) /* out of memory! */
5183 {
5184 if (type == 0) /* first one: just keep the old length */
5185 {
5186 newlen = hislen;
5187 break;
5188 }
5189 /* Already changed one table, now we can only have zero
5190 * length for all tables. */
5191 newlen = 0;
5192 type = -1;
5193 continue;
5194 }
5195 }
5196 else
5197 temp = NULL;
5198 if (newlen == 0 || temp != NULL)
5199 {
5200 if (hisidx[type] < 0) /* there are no entries yet */
5201 {
5202 for (i = 0; i < newlen; ++i)
5203 {
5204 temp[i].hisnum = 0;
5205 temp[i].hisstr = NULL;
5206 }
5207 }
5208 else if (newlen > hislen) /* array becomes bigger */
5209 {
5210 for (i = 0; i <= hisidx[type]; ++i)
5211 temp[i] = history[type][i];
5212 j = i;
5213 for ( ; i <= newlen - (hislen - hisidx[type]); ++i)
5214 {
5215 temp[i].hisnum = 0;
5216 temp[i].hisstr = NULL;
5217 }
5218 for ( ; j < hislen; ++i, ++j)
5219 temp[i] = history[type][j];
5220 }
5221 else /* array becomes smaller or 0 */
5222 {
5223 j = hisidx[type];
5224 for (i = newlen - 1; ; --i)
5225 {
5226 if (i >= 0) /* copy newest entries */
5227 temp[i] = history[type][j];
5228 else /* remove older entries */
5229 vim_free(history[type][j].hisstr);
5230 if (--j < 0)
5231 j = hislen - 1;
5232 if (j == hisidx[type])
5233 break;
5234 }
5235 hisidx[type] = newlen - 1;
5236 }
5237 vim_free(history[type]);
5238 history[type] = temp;
5239 }
5240 }
5241 hislen = newlen;
5242 }
5243}
5244
5245/*
5246 * Check if command line 'str' is already in history.
5247 * If 'move_to_front' is TRUE, matching entry is moved to end of history.
5248 */
5249 static int
5250in_history(type, str, move_to_front)
5251 int type;
5252 char_u *str;
5253 int move_to_front; /* Move the entry to the front if it exists */
5254{
5255 int i;
5256 int last_i = -1;
5257
5258 if (hisidx[type] < 0)
5259 return FALSE;
5260 i = hisidx[type];
5261 do
5262 {
5263 if (history[type][i].hisstr == NULL)
5264 return FALSE;
5265 if (STRCMP(str, history[type][i].hisstr) == 0)
5266 {
5267 if (!move_to_front)
5268 return TRUE;
5269 last_i = i;
5270 break;
5271 }
5272 if (--i < 0)
5273 i = hislen - 1;
5274 } while (i != hisidx[type]);
5275
5276 if (last_i >= 0)
5277 {
5278 str = history[type][i].hisstr;
5279 while (i != hisidx[type])
5280 {
5281 if (++i >= hislen)
5282 i = 0;
5283 history[type][last_i] = history[type][i];
5284 last_i = i;
5285 }
5286 history[type][i].hisstr = str;
5287 history[type][i].hisnum = ++hisnum[type];
5288 return TRUE;
5289 }
5290 return FALSE;
5291}
5292
5293/*
5294 * Convert history name (from table above) to its HIST_ equivalent.
5295 * When "name" is empty, return "cmd" history.
5296 * Returns -1 for unknown history name.
5297 */
5298 int
5299get_histtype(name)
5300 char_u *name;
5301{
5302 int i;
5303 int len = (int)STRLEN(name);
5304
5305 /* No argument: use current history. */
5306 if (len == 0)
5307 return hist_char2type(ccline.cmdfirstc);
5308
5309 for (i = 0; history_names[i] != NULL; ++i)
5310 if (STRNICMP(name, history_names[i], len) == 0)
5311 return i;
5312
5313 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL)
5314 return hist_char2type(name[0]);
5315
5316 return -1;
5317}
5318
5319static int last_maptick = -1; /* last seen maptick */
5320
5321/*
5322 * Add the given string to the given history. If the string is already in the
5323 * history then it is moved to the front. "histype" may be one of he HIST_
5324 * values.
5325 */
5326 void
5327add_to_history(histype, new_entry, in_map, sep)
5328 int histype;
5329 char_u *new_entry;
5330 int in_map; /* consider maptick when inside a mapping */
5331 int sep; /* separator character used (search hist) */
5332{
5333 histentry_T *hisptr;
5334 int len;
5335
5336 if (hislen == 0) /* no history */
5337 return;
5338
5339 /*
5340 * Searches inside the same mapping overwrite each other, so that only
5341 * the last line is kept. Be careful not to remove a line that was moved
5342 * down, only lines that were added.
5343 */
5344 if (histype == HIST_SEARCH && in_map)
5345 {
5346 if (maptick == last_maptick)
5347 {
5348 /* Current line is from the same mapping, remove it */
5349 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];
5350 vim_free(hisptr->hisstr);
5351 hisptr->hisstr = NULL;
5352 hisptr->hisnum = 0;
5353 --hisnum[histype];
5354 if (--hisidx[HIST_SEARCH] < 0)
5355 hisidx[HIST_SEARCH] = hislen - 1;
5356 }
5357 last_maptick = -1;
5358 }
5359 if (!in_history(histype, new_entry, TRUE))
5360 {
5361 if (++hisidx[histype] == hislen)
5362 hisidx[histype] = 0;
5363 hisptr = &history[histype][hisidx[histype]];
5364 vim_free(hisptr->hisstr);
5365
5366 /* Store the separator after the NUL of the string. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005367 len = (int)STRLEN(new_entry);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368 hisptr->hisstr = vim_strnsave(new_entry, len + 2);
5369 if (hisptr->hisstr != NULL)
5370 hisptr->hisstr[len + 1] = sep;
5371
5372 hisptr->hisnum = ++hisnum[histype];
5373 if (histype == HIST_SEARCH && in_map)
5374 last_maptick = maptick;
5375 }
5376}
5377
5378#if defined(FEAT_EVAL) || defined(PROTO)
5379
5380/*
5381 * Get identifier of newest history entry.
5382 * "histype" may be one of the HIST_ values.
5383 */
5384 int
5385get_history_idx(histype)
5386 int histype;
5387{
5388 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5389 || hisidx[histype] < 0)
5390 return -1;
5391
5392 return history[histype][hisidx[histype]].hisnum;
5393}
5394
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005395static struct cmdline_info *get_ccline_ptr __ARGS((void));
5396
5397/*
5398 * Get pointer to the command line info to use. cmdline_paste() may clear
5399 * ccline and put the previous value in prev_ccline.
5400 */
5401 static struct cmdline_info *
5402get_ccline_ptr()
5403{
5404 if ((State & CMDLINE) == 0)
5405 return NULL;
5406 if (ccline.cmdbuff != NULL)
5407 return &ccline;
5408 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
5409 return &prev_ccline;
5410 return NULL;
5411}
5412
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413/*
5414 * Get the current command line in allocated memory.
5415 * Only works when the command line is being edited.
5416 * Returns NULL when something is wrong.
5417 */
5418 char_u *
5419get_cmdline_str()
5420{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005421 struct cmdline_info *p = get_ccline_ptr();
5422
5423 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424 return NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005425 return vim_strnsave(p->cmdbuff, p->cmdlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005426}
5427
5428/*
5429 * Get the current command line position, counted in bytes.
5430 * Zero is the first position.
5431 * Only works when the command line is being edited.
5432 * Returns -1 when something is wrong.
5433 */
5434 int
5435get_cmdline_pos()
5436{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005437 struct cmdline_info *p = get_ccline_ptr();
5438
5439 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440 return -1;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005441 return p->cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442}
5443
5444/*
5445 * Set the command line byte position to "pos". Zero is the first position.
5446 * Only works when the command line is being edited.
5447 * Returns 1 when failed, 0 when OK.
5448 */
5449 int
5450set_cmdline_pos(pos)
5451 int pos;
5452{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005453 struct cmdline_info *p = get_ccline_ptr();
5454
5455 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456 return 1;
5457
5458 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
5459 * changed the command line. */
5460 if (pos < 0)
5461 new_cmdpos = 0;
5462 else
5463 new_cmdpos = pos;
5464 return 0;
5465}
5466
5467/*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005468 * Get the current command-line type.
Bram Moolenaar1e015462005-09-25 22:16:38 +00005469 * Returns ':' or '/' or '?' or '@' or '>' or '-'
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005470 * Only works when the command line is being edited.
5471 * Returns NUL when something is wrong.
5472 */
5473 int
5474get_cmdline_type()
5475{
5476 struct cmdline_info *p = get_ccline_ptr();
5477
5478 if (p == NULL)
5479 return NUL;
Bram Moolenaar1e015462005-09-25 22:16:38 +00005480 if (p->cmdfirstc == NUL)
5481 return (p->input_fn) ? '@' : '-';
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005482 return p->cmdfirstc;
5483}
5484
5485/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486 * Calculate history index from a number:
5487 * num > 0: seen as identifying number of a history entry
5488 * num < 0: relative position in history wrt newest entry
5489 * "histype" may be one of the HIST_ values.
5490 */
5491 static int
5492calc_hist_idx(histype, num)
5493 int histype;
5494 int num;
5495{
5496 int i;
5497 histentry_T *hist;
5498 int wrapped = FALSE;
5499
5500 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5501 || (i = hisidx[histype]) < 0 || num == 0)
5502 return -1;
5503
5504 hist = history[histype];
5505 if (num > 0)
5506 {
5507 while (hist[i].hisnum > num)
5508 if (--i < 0)
5509 {
5510 if (wrapped)
5511 break;
5512 i += hislen;
5513 wrapped = TRUE;
5514 }
5515 if (hist[i].hisnum == num && hist[i].hisstr != NULL)
5516 return i;
5517 }
5518 else if (-num <= hislen)
5519 {
5520 i += num + 1;
5521 if (i < 0)
5522 i += hislen;
5523 if (hist[i].hisstr != NULL)
5524 return i;
5525 }
5526 return -1;
5527}
5528
5529/*
5530 * Get a history entry by its index.
5531 * "histype" may be one of the HIST_ values.
5532 */
5533 char_u *
5534get_history_entry(histype, idx)
5535 int histype;
5536 int idx;
5537{
5538 idx = calc_hist_idx(histype, idx);
5539 if (idx >= 0)
5540 return history[histype][idx].hisstr;
5541 else
5542 return (char_u *)"";
5543}
5544
5545/*
5546 * Clear all entries of a history.
5547 * "histype" may be one of the HIST_ values.
5548 */
5549 int
5550clr_history(histype)
5551 int histype;
5552{
5553 int i;
5554 histentry_T *hisptr;
5555
5556 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT)
5557 {
5558 hisptr = history[histype];
5559 for (i = hislen; i--;)
5560 {
5561 vim_free(hisptr->hisstr);
5562 hisptr->hisnum = 0;
5563 hisptr++->hisstr = NULL;
5564 }
5565 hisidx[histype] = -1; /* mark history as cleared */
5566 hisnum[histype] = 0; /* reset identifier counter */
5567 return OK;
5568 }
5569 return FAIL;
5570}
5571
5572/*
5573 * Remove all entries matching {str} from a history.
5574 * "histype" may be one of the HIST_ values.
5575 */
5576 int
5577del_history_entry(histype, str)
5578 int histype;
5579 char_u *str;
5580{
5581 regmatch_T regmatch;
5582 histentry_T *hisptr;
5583 int idx;
5584 int i;
5585 int last;
5586 int found = FALSE;
5587
5588 regmatch.regprog = NULL;
5589 regmatch.rm_ic = FALSE; /* always match case */
5590 if (hislen != 0
5591 && histype >= 0
5592 && histype < HIST_COUNT
5593 && *str != NUL
5594 && (idx = hisidx[histype]) >= 0
5595 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING))
5596 != NULL)
5597 {
5598 i = last = idx;
5599 do
5600 {
5601 hisptr = &history[histype][i];
5602 if (hisptr->hisstr == NULL)
5603 break;
5604 if (vim_regexec(&regmatch, hisptr->hisstr, (colnr_T)0))
5605 {
5606 found = TRUE;
5607 vim_free(hisptr->hisstr);
5608 hisptr->hisstr = NULL;
5609 hisptr->hisnum = 0;
5610 }
5611 else
5612 {
5613 if (i != last)
5614 {
5615 history[histype][last] = *hisptr;
5616 hisptr->hisstr = NULL;
5617 hisptr->hisnum = 0;
5618 }
5619 if (--last < 0)
5620 last += hislen;
5621 }
5622 if (--i < 0)
5623 i += hislen;
5624 } while (i != idx);
5625 if (history[histype][idx].hisstr == NULL)
5626 hisidx[histype] = -1;
5627 }
5628 vim_free(regmatch.regprog);
5629 return found;
5630}
5631
5632/*
5633 * Remove an indexed entry from a history.
5634 * "histype" may be one of the HIST_ values.
5635 */
5636 int
5637del_history_idx(histype, idx)
5638 int histype;
5639 int idx;
5640{
5641 int i, j;
5642
5643 i = calc_hist_idx(histype, idx);
5644 if (i < 0)
5645 return FALSE;
5646 idx = hisidx[histype];
5647 vim_free(history[histype][i].hisstr);
5648
5649 /* When deleting the last added search string in a mapping, reset
5650 * last_maptick, so that the last added search string isn't deleted again.
5651 */
5652 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx)
5653 last_maptick = -1;
5654
5655 while (i != idx)
5656 {
5657 j = (i + 1) % hislen;
5658 history[histype][i] = history[histype][j];
5659 i = j;
5660 }
5661 history[histype][i].hisstr = NULL;
5662 history[histype][i].hisnum = 0;
5663 if (--i < 0)
5664 i += hislen;
5665 hisidx[histype] = i;
5666 return TRUE;
5667}
5668
5669#endif /* FEAT_EVAL */
5670
5671#if defined(FEAT_CRYPT) || defined(PROTO)
5672/*
5673 * Very specific function to remove the value in ":set key=val" from the
5674 * history.
5675 */
5676 void
5677remove_key_from_history()
5678{
5679 char_u *p;
5680 int i;
5681
5682 i = hisidx[HIST_CMD];
5683 if (i < 0)
5684 return;
5685 p = history[HIST_CMD][i].hisstr;
5686 if (p != NULL)
5687 for ( ; *p; ++p)
5688 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3]))
5689 {
5690 p = vim_strchr(p + 3, '=');
5691 if (p == NULL)
5692 break;
5693 ++p;
5694 for (i = 0; p[i] && !vim_iswhite(p[i]); ++i)
5695 if (p[i] == '\\' && p[i + 1])
5696 ++i;
Bram Moolenaar446cb832008-06-24 21:56:24 +00005697 STRMOVE(p, p + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698 --p;
5699 }
5700}
5701#endif
5702
5703#endif /* FEAT_CMDHIST */
5704
5705#if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO)
5706/*
5707 * Get indices "num1,num2" that specify a range within a list (not a range of
5708 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
5709 * Returns OK if parsed successfully, otherwise FAIL.
5710 */
5711 int
5712get_list_range(str, num1, num2)
5713 char_u **str;
5714 int *num1;
5715 int *num2;
5716{
5717 int len;
5718 int first = FALSE;
5719 long num;
5720
5721 *str = skipwhite(*str);
5722 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
5723 {
5724 vim_str2nr(*str, NULL, &len, FALSE, FALSE, &num, NULL);
5725 *str += len;
5726 *num1 = (int)num;
5727 first = TRUE;
5728 }
5729 *str = skipwhite(*str);
5730 if (**str == ',') /* parse "to" part of range */
5731 {
5732 *str = skipwhite(*str + 1);
5733 vim_str2nr(*str, NULL, &len, FALSE, FALSE, &num, NULL);
5734 if (len > 0)
5735 {
5736 *num2 = (int)num;
5737 *str = skipwhite(*str + len);
5738 }
5739 else if (!first) /* no number given at all */
5740 return FAIL;
5741 }
5742 else if (first) /* only one number given */
5743 *num2 = *num1;
5744 return OK;
5745}
5746#endif
5747
5748#if defined(FEAT_CMDHIST) || defined(PROTO)
5749/*
5750 * :history command - print a history
5751 */
5752 void
5753ex_history(eap)
5754 exarg_T *eap;
5755{
5756 histentry_T *hist;
5757 int histype1 = HIST_CMD;
5758 int histype2 = HIST_CMD;
5759 int hisidx1 = 1;
5760 int hisidx2 = -1;
5761 int idx;
5762 int i, j, k;
5763 char_u *end;
5764 char_u *arg = eap->arg;
5765
5766 if (hislen == 0)
5767 {
5768 MSG(_("'history' option is zero"));
5769 return;
5770 }
5771
5772 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ','))
5773 {
5774 end = arg;
5775 while (ASCII_ISALPHA(*end)
5776 || vim_strchr((char_u *)":=@>/?", *end) != NULL)
5777 end++;
5778 i = *end;
5779 *end = NUL;
5780 histype1 = get_histtype(arg);
5781 if (histype1 == -1)
5782 {
Bram Moolenaarb9c1e962009-04-22 11:52:33 +00005783 if (STRNICMP(arg, "all", STRLEN(arg)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784 {
5785 histype1 = 0;
5786 histype2 = HIST_COUNT-1;
5787 }
5788 else
5789 {
5790 *end = i;
5791 EMSG(_(e_trailing));
5792 return;
5793 }
5794 }
5795 else
5796 histype2 = histype1;
5797 *end = i;
5798 }
5799 else
5800 end = arg;
5801 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL)
5802 {
5803 EMSG(_(e_trailing));
5804 return;
5805 }
5806
5807 for (; !got_int && histype1 <= histype2; ++histype1)
5808 {
5809 STRCPY(IObuff, "\n # ");
5810 STRCAT(STRCAT(IObuff, history_names[histype1]), " history");
5811 MSG_PUTS_TITLE(IObuff);
5812 idx = hisidx[histype1];
5813 hist = history[histype1];
5814 j = hisidx1;
5815 k = hisidx2;
5816 if (j < 0)
5817 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum;
5818 if (k < 0)
5819 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum;
5820 if (idx >= 0 && j <= k)
5821 for (i = idx + 1; !got_int; ++i)
5822 {
5823 if (i == hislen)
5824 i = 0;
5825 if (hist[i].hisstr != NULL
5826 && hist[i].hisnum >= j && hist[i].hisnum <= k)
5827 {
5828 msg_putchar('\n');
5829 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ',
5830 hist[i].hisnum);
5831 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10)
5832 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff),
5833 (int)Columns - 10);
5834 else
5835 STRCAT(IObuff, hist[i].hisstr);
5836 msg_outtrans(IObuff);
5837 out_flush();
5838 }
5839 if (i == idx)
5840 break;
5841 }
5842 }
5843}
5844#endif
5845
5846#if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO)
5847static char_u **viminfo_history[HIST_COUNT] = {NULL, NULL, NULL, NULL};
5848static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0};
5849static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0};
5850static int viminfo_add_at_front = FALSE;
5851
5852static int hist_type2char __ARGS((int type, int use_question));
5853
5854/*
5855 * Translate a history type number to the associated character.
5856 */
5857 static int
5858hist_type2char(type, use_question)
5859 int type;
5860 int use_question; /* use '?' instead of '/' */
5861{
5862 if (type == HIST_CMD)
5863 return ':';
5864 if (type == HIST_SEARCH)
5865 {
5866 if (use_question)
5867 return '?';
5868 else
5869 return '/';
5870 }
5871 if (type == HIST_EXPR)
5872 return '=';
5873 return '@';
5874}
5875
5876/*
5877 * Prepare for reading the history from the viminfo file.
5878 * This allocates history arrays to store the read history lines.
5879 */
5880 void
5881prepare_viminfo_history(asklen)
5882 int asklen;
5883{
5884 int i;
5885 int num;
5886 int type;
5887 int len;
5888
5889 init_history();
5890 viminfo_add_at_front = (asklen != 0);
5891 if (asklen > hislen)
5892 asklen = hislen;
5893
5894 for (type = 0; type < HIST_COUNT; ++type)
5895 {
5896 /*
5897 * Count the number of empty spaces in the history list. If there are
5898 * more spaces available than we request, then fill them up.
5899 */
5900 for (i = 0, num = 0; i < hislen; i++)
5901 if (history[type][i].hisstr == NULL)
5902 num++;
5903 len = asklen;
5904 if (num > len)
5905 len = num;
5906 if (len <= 0)
5907 viminfo_history[type] = NULL;
5908 else
5909 viminfo_history[type] =
5910 (char_u **)lalloc((long_u)(len * sizeof(char_u *)), FALSE);
5911 if (viminfo_history[type] == NULL)
5912 len = 0;
5913 viminfo_hislen[type] = len;
5914 viminfo_hisidx[type] = 0;
5915 }
5916}
5917
5918/*
5919 * Accept a line from the viminfo, store it in the history array when it's
5920 * new.
5921 */
5922 int
5923read_viminfo_history(virp)
5924 vir_T *virp;
5925{
5926 int type;
5927 long_u len;
5928 char_u *val;
5929 char_u *p;
5930
5931 type = hist_char2type(virp->vir_line[0]);
5932 if (viminfo_hisidx[type] < viminfo_hislen[type])
5933 {
5934 val = viminfo_readstring(virp, 1, TRUE);
5935 if (val != NULL && *val != NUL)
5936 {
5937 if (!in_history(type, val + (type == HIST_SEARCH),
5938 viminfo_add_at_front))
5939 {
5940 /* Need to re-allocate to append the separator byte. */
5941 len = STRLEN(val);
5942 p = lalloc(len + 2, TRUE);
5943 if (p != NULL)
5944 {
5945 if (type == HIST_SEARCH)
5946 {
5947 /* Search entry: Move the separator from the first
5948 * column to after the NUL. */
5949 mch_memmove(p, val + 1, (size_t)len);
5950 p[len] = (*val == ' ' ? NUL : *val);
5951 }
5952 else
5953 {
5954 /* Not a search entry: No separator in the viminfo
5955 * file, add a NUL separator. */
5956 mch_memmove(p, val, (size_t)len + 1);
5957 p[len + 1] = NUL;
5958 }
5959 viminfo_history[type][viminfo_hisidx[type]++] = p;
5960 }
5961 }
5962 }
5963 vim_free(val);
5964 }
5965 return viminfo_readline(virp);
5966}
5967
5968 void
5969finish_viminfo_history()
5970{
5971 int idx;
5972 int i;
5973 int type;
5974
5975 for (type = 0; type < HIST_COUNT; ++type)
5976 {
5977 if (history[type] == NULL)
5978 return;
5979 idx = hisidx[type] + viminfo_hisidx[type];
5980 if (idx >= hislen)
5981 idx -= hislen;
5982 else if (idx < 0)
5983 idx = hislen - 1;
5984 if (viminfo_add_at_front)
5985 hisidx[type] = idx;
5986 else
5987 {
5988 if (hisidx[type] == -1)
5989 hisidx[type] = hislen - 1;
5990 do
5991 {
5992 if (history[type][idx].hisstr != NULL)
5993 break;
5994 if (++idx == hislen)
5995 idx = 0;
5996 } while (idx != hisidx[type]);
5997 if (idx != hisidx[type] && --idx < 0)
5998 idx = hislen - 1;
5999 }
6000 for (i = 0; i < viminfo_hisidx[type]; i++)
6001 {
6002 vim_free(history[type][idx].hisstr);
6003 history[type][idx].hisstr = viminfo_history[type][i];
6004 if (--idx < 0)
6005 idx = hislen - 1;
6006 }
6007 idx += 1;
6008 idx %= hislen;
6009 for (i = 0; i < viminfo_hisidx[type]; i++)
6010 {
6011 history[type][idx++].hisnum = ++hisnum[type];
6012 idx %= hislen;
6013 }
6014 vim_free(viminfo_history[type]);
6015 viminfo_history[type] = NULL;
6016 }
6017}
6018
6019 void
6020write_viminfo_history(fp)
6021 FILE *fp;
6022{
6023 int i;
6024 int type;
6025 int num_saved;
6026 char_u *p;
6027 int c;
6028
6029 init_history();
6030 if (hislen == 0)
6031 return;
6032 for (type = 0; type < HIST_COUNT; ++type)
6033 {
6034 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE));
6035 if (num_saved == 0)
6036 continue;
6037 if (num_saved < 0) /* Use default */
6038 num_saved = hislen;
6039 fprintf(fp, _("\n# %s History (newest to oldest):\n"),
6040 type == HIST_CMD ? _("Command Line") :
6041 type == HIST_SEARCH ? _("Search String") :
6042 type == HIST_EXPR ? _("Expression") :
6043 _("Input Line"));
6044 if (num_saved > hislen)
6045 num_saved = hislen;
6046 i = hisidx[type];
6047 if (i >= 0)
6048 while (num_saved--)
6049 {
6050 p = history[type][i].hisstr;
6051 if (p != NULL)
6052 {
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006053 fputc(hist_type2char(type, TRUE), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006054 /* For the search history: put the separator in the second
6055 * column; use a space if there isn't one. */
6056 if (type == HIST_SEARCH)
6057 {
6058 c = p[STRLEN(p) + 1];
6059 putc(c == NUL ? ' ' : c, fp);
6060 }
6061 viminfo_writestring(fp, p);
6062 }
6063 if (--i < 0)
6064 i = hislen - 1;
6065 }
6066 }
6067}
6068#endif /* FEAT_VIMINFO */
6069
6070#if defined(FEAT_FKMAP) || defined(PROTO)
6071/*
6072 * Write a character at the current cursor+offset position.
6073 * It is directly written into the command buffer block.
6074 */
6075 void
6076cmd_pchar(c, offset)
6077 int c, offset;
6078{
6079 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6080 {
6081 EMSG(_("E198: cmd_pchar beyond the command length"));
6082 return;
6083 }
6084 ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c;
6085 ccline.cmdbuff[ccline.cmdlen] = NUL;
6086}
6087
6088 int
6089cmd_gchar(offset)
6090 int offset;
6091{
6092 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6093 {
6094 /* EMSG(_("cmd_gchar beyond the command length")); */
6095 return NUL;
6096 }
6097 return (int)ccline.cmdbuff[ccline.cmdpos + offset];
6098}
6099#endif
6100
6101#if defined(FEAT_CMDWIN) || defined(PROTO)
6102/*
6103 * Open a window on the current command line and history. Allow editing in
6104 * the window. Returns when the window is closed.
6105 * Returns:
6106 * CR if the command is to be executed
6107 * Ctrl_C if it is to be abandoned
6108 * K_IGNORE if editing continues
6109 */
6110 static int
6111ex_window()
6112{
6113 struct cmdline_info save_ccline;
6114 buf_T *old_curbuf = curbuf;
6115 win_T *old_curwin = curwin;
6116 buf_T *bp;
6117 win_T *wp;
6118 int i;
6119 linenr_T lnum;
6120 int histtype;
6121 garray_T winsizes;
Bram Moolenaar7693ec62008-07-24 18:29:37 +00006122#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006123 char_u typestr[2];
Bram Moolenaar7693ec62008-07-24 18:29:37 +00006124#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006125 int save_restart_edit = restart_edit;
6126 int save_State = State;
6127 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00006128#ifdef FEAT_RIGHTLEFT
6129 int save_cmdmsg_rl = cmdmsg_rl;
6130#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006131
6132 /* Can't do this recursively. Can't do it when typing a password. */
6133 if (cmdwin_type != 0
6134# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
6135 || cmdline_star > 0
6136# endif
6137 )
6138 {
6139 beep_flush();
6140 return K_IGNORE;
6141 }
6142
6143 /* Save current window sizes. */
6144 win_size_save(&winsizes);
6145
6146# ifdef FEAT_AUTOCMD
6147 /* Don't execute autocommands while creating the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006148 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006149# endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00006150 /* don't use a new tab page */
6151 cmdmod.tab = 0;
6152
Bram Moolenaar071d4272004-06-13 20:20:40 +00006153 /* Create a window for the command-line buffer. */
6154 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
6155 {
6156 beep_flush();
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006157# ifdef FEAT_AUTOCMD
6158 unblock_autocmds();
6159# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006160 return K_IGNORE;
6161 }
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006162 cmdwin_type = get_cmdline_type();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006163
6164 /* Create the command-line buffer empty. */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006165 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL);
Bram Moolenaar446cb832008-06-24 21:56:24 +00006166 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006167 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
6168 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
6169 curbuf->b_p_ma = TRUE;
Bram Moolenaar876f6d72009-04-29 10:05:51 +00006170#ifdef FEAT_FOLDING
6171 curwin->w_p_fen = FALSE;
6172#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006173# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00006174 curwin->w_p_rl = cmdmsg_rl;
6175 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006176# endif
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006177 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006178
6179# ifdef FEAT_AUTOCMD
6180 /* Do execute autocommands for setting the filetype (load syntax). */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006181 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006182# endif
6183
Bram Moolenaar46152342005-09-07 21:18:43 +00006184 /* Showing the prompt may have set need_wait_return, reset it. */
6185 need_wait_return = FALSE;
6186
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006187 histtype = hist_char2type(cmdwin_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006188 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
6189 {
6190 if (p_wc == TAB)
6191 {
6192 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
6193 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
6194 }
6195 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
6196 }
6197
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006198 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
6199 * sets 'textwidth' to 78). */
6200 curbuf->b_p_tw = 0;
6201
Bram Moolenaar071d4272004-06-13 20:20:40 +00006202 /* Fill the buffer with the history. */
6203 init_history();
6204 if (hislen > 0)
6205 {
6206 i = hisidx[histtype];
6207 if (i >= 0)
6208 {
6209 lnum = 0;
6210 do
6211 {
6212 if (++i == hislen)
6213 i = 0;
6214 if (history[histtype][i].hisstr != NULL)
6215 ml_append(lnum++, history[histtype][i].hisstr,
6216 (colnr_T)0, FALSE);
6217 }
6218 while (i != hisidx[histtype]);
6219 }
6220 }
6221
6222 /* Replace the empty last line with the current command-line and put the
6223 * cursor there. */
6224 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
6225 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6226 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00006227 changed_line_abv_curs();
6228 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00006229 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230
6231 /* Save the command line info, can be used recursively. */
6232 save_ccline = ccline;
6233 ccline.cmdbuff = NULL;
6234 ccline.cmdprompt = NULL;
6235
6236 /* No Ex mode here! */
6237 exmode_active = 0;
6238
6239 State = NORMAL;
6240# ifdef FEAT_MOUSE
6241 setmouse();
6242# endif
6243
6244# ifdef FEAT_AUTOCMD
6245 /* Trigger CmdwinEnter autocommands. */
6246 typestr[0] = cmdwin_type;
6247 typestr[1] = NUL;
6248 apply_autocmds(EVENT_CMDWINENTER, typestr, typestr, FALSE, curbuf);
Bram Moolenaar5495cc92006-08-16 14:23:04 +00006249 if (restart_edit != 0) /* autocmd with ":startinsert" */
6250 stuffcharReadbuff(K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006251# endif
6252
6253 i = RedrawingDisabled;
6254 RedrawingDisabled = 0;
6255
6256 /*
6257 * Call the main loop until <CR> or CTRL-C is typed.
6258 */
6259 cmdwin_result = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00006260 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006261
6262 RedrawingDisabled = i;
6263
6264# ifdef FEAT_AUTOCMD
6265 /* Trigger CmdwinLeave autocommands. */
6266 apply_autocmds(EVENT_CMDWINLEAVE, typestr, typestr, FALSE, curbuf);
6267# endif
6268
Bram Moolenaarccc18222007-05-10 18:25:20 +00006269 /* Restore the command line info. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006270 ccline = save_ccline;
6271 cmdwin_type = 0;
6272
6273 exmode_active = save_exmode;
6274
Bram Moolenaarf9821062008-06-20 16:31:07 +00006275 /* Safety check: The old window or buffer was deleted: It's a bug when
Bram Moolenaar071d4272004-06-13 20:20:40 +00006276 * this happens! */
6277 if (!win_valid(old_curwin) || !buf_valid(old_curbuf))
6278 {
6279 cmdwin_result = Ctrl_C;
6280 EMSG(_("E199: Active window or buffer deleted"));
6281 }
6282 else
6283 {
6284# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
6285 /* autocmds may abort script processing */
6286 if (aborting() && cmdwin_result != K_IGNORE)
6287 cmdwin_result = Ctrl_C;
6288# endif
6289 /* Set the new command line from the cmdline buffer. */
6290 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00006291 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006292 {
Bram Moolenaar46152342005-09-07 21:18:43 +00006293 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
6294
6295 if (histtype == HIST_CMD)
6296 {
6297 /* Execute the command directly. */
6298 ccline.cmdbuff = vim_strsave((char_u *)p);
6299 cmdwin_result = CAR;
6300 }
6301 else
6302 {
6303 /* First need to cancel what we were doing. */
6304 ccline.cmdbuff = NULL;
6305 stuffcharReadbuff(':');
6306 stuffReadbuff((char_u *)p);
6307 stuffcharReadbuff(CAR);
6308 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006309 }
6310 else if (cmdwin_result == K_XF2) /* :qa typed */
6311 {
6312 ccline.cmdbuff = vim_strsave((char_u *)"qa");
6313 cmdwin_result = CAR;
6314 }
6315 else
6316 ccline.cmdbuff = vim_strsave(ml_get_curline());
6317 if (ccline.cmdbuff == NULL)
6318 cmdwin_result = Ctrl_C;
6319 else
6320 {
6321 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
6322 ccline.cmdbufflen = ccline.cmdlen + 1;
6323 ccline.cmdpos = curwin->w_cursor.col;
6324 if (ccline.cmdpos > ccline.cmdlen)
6325 ccline.cmdpos = ccline.cmdlen;
6326 if (cmdwin_result == K_IGNORE)
6327 {
6328 set_cmdspos_cursor();
6329 redrawcmd();
6330 }
6331 }
6332
6333# ifdef FEAT_AUTOCMD
6334 /* Don't execute autocommands while deleting the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006335 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006336# endif
6337 wp = curwin;
6338 bp = curbuf;
6339 win_goto(old_curwin);
6340 win_close(wp, TRUE);
Bram Moolenaar8006d692010-03-02 17:23:21 +01006341
6342 /* win_close() may have already wiped the buffer when 'bh' is
6343 * set to 'wipe' */
6344 if (buf_valid(bp))
6345 close_buffer(NULL, bp, DOBUF_WIPE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006346
6347 /* Restore window sizes. */
6348 win_size_restore(&winsizes);
6349
6350# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006351 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006352# endif
6353 }
6354
6355 ga_clear(&winsizes);
6356 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00006357# ifdef FEAT_RIGHTLEFT
6358 cmdmsg_rl = save_cmdmsg_rl;
6359# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006360
6361 State = save_State;
6362# ifdef FEAT_MOUSE
6363 setmouse();
6364# endif
6365
6366 return cmdwin_result;
6367}
6368#endif /* FEAT_CMDWIN */
6369
6370/*
6371 * Used for commands that either take a simple command string argument, or:
6372 * cmd << endmarker
6373 * {script}
6374 * endmarker
6375 * Returns a pointer to allocated memory with {script} or NULL.
6376 */
6377 char_u *
6378script_get(eap, cmd)
6379 exarg_T *eap;
6380 char_u *cmd;
6381{
6382 char_u *theline;
6383 char *end_pattern = NULL;
6384 char dot[] = ".";
6385 garray_T ga;
6386
6387 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
6388 return NULL;
6389
6390 ga_init2(&ga, 1, 0x400);
6391
6392 if (cmd[2] != NUL)
6393 end_pattern = (char *)skipwhite(cmd + 2);
6394 else
6395 end_pattern = dot;
6396
6397 for (;;)
6398 {
6399 theline = eap->getline(
6400#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00006401 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00006402#endif
6403 NUL, eap->cookie, 0);
6404
6405 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
Bram Moolenaarbe555e72008-08-06 12:19:26 +00006406 {
6407 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006408 break;
Bram Moolenaarbe555e72008-08-06 12:19:26 +00006409 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006410
6411 ga_concat(&ga, theline);
6412 ga_append(&ga, '\n');
6413 vim_free(theline);
6414 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00006415 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006416
6417 return (char_u *)ga.ga_data;
6418}