blob: f417619894e7096cfaecd36a869e66e0df756eae [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 Moolenaarbfd8fc02005-09-20 23:22:24 +000034 int xp_context; /* type of expansion */
35# ifdef FEAT_EVAL
36 char_u *xp_arg; /* user-defined expansion arg */
Bram Moolenaar93db9752006-11-21 10:29:45 +000037 int input_fn; /* when TRUE Invoked for input() function */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000038# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000039};
40
41static struct cmdline_info ccline; /* current cmdline_info */
42
43static int cmd_showtail; /* Only show path tail in lists ? */
44
45#ifdef FEAT_EVAL
46static int new_cmdpos; /* position set by set_cmdline_pos() */
47#endif
48
49#ifdef FEAT_CMDHIST
50typedef struct hist_entry
51{
52 int hisnum; /* identifying number */
53 char_u *hisstr; /* actual entry, separator char after the NUL */
54} histentry_T;
55
56static histentry_T *(history[HIST_COUNT]) = {NULL, NULL, NULL, NULL, NULL};
57static int hisidx[HIST_COUNT] = {-1, -1, -1, -1, -1}; /* lastused entry */
58static int hisnum[HIST_COUNT] = {0, 0, 0, 0, 0};
59 /* identifying (unique) number of newest history entry */
60static int hislen = 0; /* actual length of history tables */
61
62static int hist_char2type __ARGS((int c));
Bram Moolenaar071d4272004-06-13 20:20:40 +000063
64static int in_history __ARGS((int, char_u *, int));
65# ifdef FEAT_EVAL
66static int calc_hist_idx __ARGS((int histype, int num));
67# endif
68#endif
69
70#ifdef FEAT_RIGHTLEFT
71static int cmd_hkmap = 0; /* Hebrew mapping during command line */
72#endif
73
74#ifdef FEAT_FKMAP
75static int cmd_fkmap = 0; /* Farsi mapping during command line */
76#endif
77
78static int cmdline_charsize __ARGS((int idx));
79static void set_cmdspos __ARGS((void));
80static void set_cmdspos_cursor __ARGS((void));
81#ifdef FEAT_MBYTE
82static void correct_cmdspos __ARGS((int idx, int cells));
83#endif
84static void alloc_cmdbuff __ARGS((int len));
85static int realloc_cmdbuff __ARGS((int len));
86static void draw_cmdline __ARGS((int start, int len));
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +000087static void save_cmdline __ARGS((struct cmdline_info *ccp));
88static void restore_cmdline __ARGS((struct cmdline_info *ccp));
Bram Moolenaar1769d5a2006-10-17 14:25:24 +000089static int cmdline_paste __ARGS((int regname, int literally, int remcr));
Bram Moolenaar071d4272004-06-13 20:20:40 +000090#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
91static void redrawcmd_preedit __ARGS((void));
92#endif
93#ifdef FEAT_WILDMENU
94static void cmdline_del __ARGS((int from));
95#endif
96static void redrawcmdprompt __ARGS((void));
97static void cursorcmd __ARGS((void));
98static int ccheck_abbr __ARGS((int));
99static int nextwild __ARGS((expand_T *xp, int type, int options));
Bram Moolenaar45360022005-07-21 21:08:21 +0000100static void escape_fname __ARGS((char_u **pp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101static int showmatches __ARGS((expand_T *xp, int wildmenu));
102static void set_expand_context __ARGS((expand_T *xp));
103static int ExpandFromContext __ARGS((expand_T *xp, char_u *, int *, char_u ***, int));
104static int expand_showtail __ARGS((expand_T *xp));
105#ifdef FEAT_CMDL_COMPL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000106static int expand_shellcmd __ARGS((char_u *filepat, int *num_file, char_u ***file, int flagsarg));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107static int ExpandRTDir __ARGS((char_u *pat, int *num_file, char_u ***file, char *dirname));
108# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
109static int ExpandUserDefined __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file));
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000110static int ExpandUserList __ARGS((expand_T *xp, int *num_file, char_u ***file));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111# endif
112#endif
113
114#ifdef FEAT_CMDWIN
115static int ex_window __ARGS((void));
116#endif
117
118/*
119 * getcmdline() - accept a command line starting with firstc.
120 *
121 * firstc == ':' get ":" command line.
122 * firstc == '/' or '?' get search pattern
123 * firstc == '=' get expression
124 * firstc == '@' get text for input() function
125 * firstc == '>' get text for debug mode
126 * firstc == NUL get text for :insert command
127 * firstc == -1 like NUL, and break on CTRL-C
128 *
129 * The line is collected in ccline.cmdbuff, which is reallocated to fit the
130 * command line.
131 *
132 * Careful: getcmdline() can be called recursively!
133 *
134 * Return pointer to allocated string if there is a commandline, NULL
135 * otherwise.
136 */
137/*ARGSUSED*/
138 char_u *
139getcmdline(firstc, count, indent)
140 int firstc;
141 long count; /* only used for incremental search */
142 int indent; /* indent for inside conditionals */
143{
144 int c;
145 int i;
146 int j;
147 int gotesc = FALSE; /* TRUE when <ESC> just typed */
148 int do_abbr; /* when TRUE check for abbr. */
149#ifdef FEAT_CMDHIST
150 char_u *lookfor = NULL; /* string to match */
151 int hiscnt; /* current history line in use */
152 int histype; /* history type to be used */
153#endif
154#ifdef FEAT_SEARCH_EXTRA
155 pos_T old_cursor;
156 colnr_T old_curswant;
157 colnr_T old_leftcol;
158 linenr_T old_topline;
159# ifdef FEAT_DIFF
160 int old_topfill;
161# endif
162 linenr_T old_botline;
163 int did_incsearch = FALSE;
164 int incsearch_postponed = FALSE;
165#endif
166 int did_wild_list = FALSE; /* did wild_list() recently */
167 int wim_index = 0; /* index in wim_flags[] */
168 int res;
169 int save_msg_scroll = msg_scroll;
170 int save_State = State; /* remember State when called */
171 int some_key_typed = FALSE; /* one of the keys was typed */
172#ifdef FEAT_MOUSE
173 /* mouse drag and release events are ignored, unless they are
174 * preceded with a mouse down event */
175 int ignore_drag_release = TRUE;
176#endif
177#ifdef FEAT_EVAL
178 int break_ctrl_c = FALSE;
179#endif
180 expand_T xpc;
181 long *b_im_ptr = NULL;
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000182#if defined(FEAT_WILDMENU) || defined(FEAT_EVAL) || defined(FEAT_SEARCH_EXTRA)
183 /* Everything that may work recursively should save and restore the
184 * current command line in save_ccline. That includes update_screen(), a
185 * custom status line may invoke ":normal". */
186 struct cmdline_info save_ccline;
187#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188
189#ifdef FEAT_SNIFF
190 want_sniff_request = 0;
191#endif
192#ifdef FEAT_EVAL
193 if (firstc == -1)
194 {
195 firstc = NUL;
196 break_ctrl_c = TRUE;
197 }
198#endif
199#ifdef FEAT_RIGHTLEFT
200 /* start without Hebrew mapping for a command line */
201 if (firstc == ':' || firstc == '=' || firstc == '>')
202 cmd_hkmap = 0;
203#endif
204
205 ccline.overstrike = FALSE; /* always start in insert mode */
206#ifdef FEAT_SEARCH_EXTRA
207 old_cursor = curwin->w_cursor; /* needs to be restored later */
208 old_curswant = curwin->w_curswant;
209 old_leftcol = curwin->w_leftcol;
210 old_topline = curwin->w_topline;
211# ifdef FEAT_DIFF
212 old_topfill = curwin->w_topfill;
213# endif
214 old_botline = curwin->w_botline;
215#endif
216
217 /*
218 * set some variables for redrawcmd()
219 */
220 ccline.cmdfirstc = (firstc == '@' ? 0 : firstc);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000221 ccline.cmdindent = (firstc > 0 ? indent : 0);
222
223 /* alloc initial ccline.cmdbuff */
224 alloc_cmdbuff(exmode_active ? 250 : indent + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225 if (ccline.cmdbuff == NULL)
226 return NULL; /* out of memory */
227 ccline.cmdlen = ccline.cmdpos = 0;
228 ccline.cmdbuff[0] = NUL;
229
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000230 /* autoindent for :insert and :append */
231 if (firstc <= 0)
232 {
233 copy_spaces(ccline.cmdbuff, indent);
234 ccline.cmdbuff[indent] = NUL;
235 ccline.cmdpos = indent;
236 ccline.cmdspos = indent;
237 ccline.cmdlen = indent;
238 }
239
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240 ExpandInit(&xpc);
241
242#ifdef FEAT_RIGHTLEFT
243 if (curwin->w_p_rl && *curwin->w_p_rlc == 's'
244 && (firstc == '/' || firstc == '?'))
245 cmdmsg_rl = TRUE;
246 else
247 cmdmsg_rl = FALSE;
248#endif
249
250 redir_off = TRUE; /* don't redirect the typed command */
251 if (!cmd_silent)
252 {
253 i = msg_scrolled;
254 msg_scrolled = 0; /* avoid wait_return message */
255 gotocmdline(TRUE);
256 msg_scrolled += i;
257 redrawcmdprompt(); /* draw prompt or indent */
258 set_cmdspos();
259 }
260 xpc.xp_context = EXPAND_NOTHING;
261 xpc.xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000262#ifndef BACKSLASH_IN_FILENAME
263 xpc.xp_shell = FALSE;
264#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000266#if defined(FEAT_EVAL)
267 if (ccline.input_fn)
268 {
269 xpc.xp_context = ccline.xp_context;
270 xpc.xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +0000271# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000272 xpc.xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +0000273# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000274 }
275#endif
276
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277 /*
278 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when
279 * doing ":@0" when register 0 doesn't contain a CR.
280 */
281 msg_scroll = FALSE;
282
283 State = CMDLINE;
284
285 if (firstc == '/' || firstc == '?' || firstc == '@')
286 {
287 /* Use ":lmap" mappings for search pattern and input(). */
288 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT)
289 b_im_ptr = &curbuf->b_p_iminsert;
290 else
291 b_im_ptr = &curbuf->b_p_imsearch;
292 if (*b_im_ptr == B_IMODE_LMAP)
293 State |= LANGMAP;
294#ifdef USE_IM_CONTROL
295 im_set_active(*b_im_ptr == B_IMODE_IM);
296#endif
297 }
298#ifdef USE_IM_CONTROL
299 else if (p_imcmdline)
300 im_set_active(TRUE);
301#endif
302
303#ifdef FEAT_MOUSE
304 setmouse();
305#endif
306#ifdef CURSOR_SHAPE
307 ui_cursor_shape(); /* may show different cursor shape */
308#endif
309
Bram Moolenaarf4d11452005-12-02 00:46:37 +0000310 /* When inside an autocommand for writing "exiting" may be set and
311 * terminal mode set to cooked. Need to set raw mode here then. */
312 settmode(TMODE_RAW);
313
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314#ifdef FEAT_CMDHIST
315 init_history();
316 hiscnt = hislen; /* set hiscnt to impossible history value */
317 histype = hist_char2type(firstc);
318#endif
319
320#ifdef FEAT_DIGRAPHS
321 do_digraph(-1); /* init digraph typahead */
322#endif
323
324 /*
325 * Collect the command string, handling editing keys.
326 */
327 for (;;)
328 {
Bram Moolenaar29b2d262006-09-10 19:07:28 +0000329 redir_off = TRUE; /* Don't redirect the typed command.
330 Repeated, because a ":redir" inside
331 completion may switch it on. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332#ifdef USE_ON_FLY_SCROLL
333 dont_scroll = FALSE; /* allow scrolling here */
334#endif
335 quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */
336
337 cursorcmd(); /* set the cursor on the right spot */
338 c = safe_vgetc();
339 if (KeyTyped)
340 {
341 some_key_typed = TRUE;
342#ifdef FEAT_RIGHTLEFT
343 if (cmd_hkmap)
344 c = hkmap(c);
345# ifdef FEAT_FKMAP
346 if (cmd_fkmap)
347 c = cmdl_fkmap(c);
348# endif
349 if (cmdmsg_rl && !KeyStuffed)
350 {
351 /* Invert horizontal movements and operations. Only when
352 * typed by the user directly, not when the result of a
353 * mapping. */
354 switch (c)
355 {
356 case K_RIGHT: c = K_LEFT; break;
357 case K_S_RIGHT: c = K_S_LEFT; break;
358 case K_C_RIGHT: c = K_C_LEFT; break;
359 case K_LEFT: c = K_RIGHT; break;
360 case K_S_LEFT: c = K_S_RIGHT; break;
361 case K_C_LEFT: c = K_C_RIGHT; break;
362 }
363 }
364#endif
365 }
366
367 /*
368 * Ignore got_int when CTRL-C was typed here.
369 * Don't ignore it in :global, we really need to break then, e.g., for
370 * ":g/pat/normal /pat" (without the <CR>).
371 * Don't ignore it for the input() function.
372 */
373 if ((c == Ctrl_C
374#ifdef UNIX
375 || c == intr_char
376#endif
377 )
378#if defined(FEAT_EVAL) || defined(FEAT_CRYPT)
379 && firstc != '@'
380#endif
381#ifdef FEAT_EVAL
382 && !break_ctrl_c
383#endif
384 && !global_busy)
385 got_int = FALSE;
386
387#ifdef FEAT_CMDHIST
388 /* free old command line when finished moving around in the history
389 * list */
390 if (lookfor != NULL
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000391 && c != K_S_DOWN && c != K_S_UP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000392 && c != K_DOWN && c != K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393 && c != K_PAGEDOWN && c != K_PAGEUP
394 && c != K_KPAGEDOWN && c != K_KPAGEUP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000395 && c != K_LEFT && c != K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N)))
397 {
398 vim_free(lookfor);
399 lookfor = NULL;
400 }
401#endif
402
403 /*
404 * <S-Tab> works like CTRL-P (unless 'wc' is <S-Tab>).
405 */
406 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles != -1)
407 c = Ctrl_P;
408
409#ifdef FEAT_WILDMENU
410 /* Special translations for 'wildmenu' */
411 if (did_wild_list && p_wmnu)
412 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000413 if (c == K_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414 c = Ctrl_P;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000415 else if (c == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416 c = Ctrl_N;
417 }
418 /* Hitting CR after "emenu Name.": complete submenu */
419 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu
420 && ccline.cmdpos > 1
421 && ccline.cmdbuff[ccline.cmdpos - 1] == '.'
422 && ccline.cmdbuff[ccline.cmdpos - 2] != '\\'
423 && (c == '\n' || c == '\r' || c == K_KENTER))
424 c = K_DOWN;
425#endif
426
427 /* free expanded names when finished walking through matches */
428 if (xpc.xp_numfiles != -1
429 && !(c == p_wc && KeyTyped) && c != p_wcm
430 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A
431 && c != Ctrl_L)
432 {
433 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
434 did_wild_list = FALSE;
435#ifdef FEAT_WILDMENU
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000436 if (!p_wmnu || (c != K_UP && c != K_DOWN))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437#endif
438 xpc.xp_context = EXPAND_NOTHING;
439 wim_index = 0;
440#ifdef FEAT_WILDMENU
441 if (p_wmnu && wild_menu_showing != 0)
442 {
443 int skt = KeyTyped;
Bram Moolenaar1e015462005-09-25 22:16:38 +0000444 int old_RedrawingDisabled = RedrawingDisabled;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000445
446 if (ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000447 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448
449 if (wild_menu_showing == WM_SCROLLED)
450 {
451 /* Entered command line, move it up */
452 cmdline_row--;
453 redrawcmd();
454 }
455 else if (save_p_ls != -1)
456 {
457 /* restore 'laststatus' and 'winminheight' */
458 p_ls = save_p_ls;
459 p_wmh = save_p_wmh;
460 last_status(FALSE);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000461 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462 update_screen(VALID); /* redraw the screen NOW */
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000463 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464 redrawcmd();
465 save_p_ls = -1;
466 }
467 else
468 {
469# ifdef FEAT_VERTSPLIT
470 win_redraw_last_status(topframe);
471# else
472 lastwin->w_redr_status = TRUE;
473# endif
474 redraw_statuslines();
475 }
476 KeyTyped = skt;
477 wild_menu_showing = 0;
Bram Moolenaar1e015462005-09-25 22:16:38 +0000478 if (ccline.input_fn)
479 RedrawingDisabled = old_RedrawingDisabled;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480 }
481#endif
482 }
483
484#ifdef FEAT_WILDMENU
485 /* Special translations for 'wildmenu' */
486 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu)
487 {
488 /* Hitting <Down> after "emenu Name.": complete submenu */
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000489 if (c == K_DOWN && ccline.cmdpos > 0
490 && ccline.cmdbuff[ccline.cmdpos - 1] == '.')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491 c = p_wc;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000492 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493 {
494 /* Hitting <Up>: Remove one submenu name in front of the
495 * cursor */
496 int found = FALSE;
497
498 j = (int)(xpc.xp_pattern - ccline.cmdbuff);
499 i = 0;
500 while (--j > 0)
501 {
502 /* check for start of menu name */
503 if (ccline.cmdbuff[j] == ' '
504 && ccline.cmdbuff[j - 1] != '\\')
505 {
506 i = j + 1;
507 break;
508 }
509 /* check for start of submenu name */
510 if (ccline.cmdbuff[j] == '.'
511 && ccline.cmdbuff[j - 1] != '\\')
512 {
513 if (found)
514 {
515 i = j + 1;
516 break;
517 }
518 else
519 found = TRUE;
520 }
521 }
522 if (i > 0)
523 cmdline_del(i);
524 c = p_wc;
525 xpc.xp_context = EXPAND_NOTHING;
526 }
527 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000528 if ((xpc.xp_context == EXPAND_FILES
529 || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 {
531 char_u upseg[5];
532
533 upseg[0] = PATHSEP;
534 upseg[1] = '.';
535 upseg[2] = '.';
536 upseg[3] = PATHSEP;
537 upseg[4] = NUL;
538
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000539 if (c == K_DOWN
540 && ccline.cmdpos > 0
541 && ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP
542 && (ccline.cmdpos < 3
543 || ccline.cmdbuff[ccline.cmdpos - 2] != '.'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000544 || ccline.cmdbuff[ccline.cmdpos - 3] != '.'))
545 {
546 /* go down a directory */
547 c = p_wc;
548 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000549 else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550 {
551 /* If in a direct ancestor, strip off one ../ to go down */
552 int found = FALSE;
553
554 j = ccline.cmdpos;
555 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
556 while (--j > i)
557 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000558#ifdef FEAT_MBYTE
559 if (has_mbyte)
560 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
561#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562 if (vim_ispathsep(ccline.cmdbuff[j]))
563 {
564 found = TRUE;
565 break;
566 }
567 }
568 if (found
569 && ccline.cmdbuff[j - 1] == '.'
570 && ccline.cmdbuff[j - 2] == '.'
571 && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2))
572 {
573 cmdline_del(j - 2);
574 c = p_wc;
575 }
576 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000577 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578 {
579 /* go up a directory */
580 int found = FALSE;
581
582 j = ccline.cmdpos - 1;
583 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
584 while (--j > i)
585 {
586#ifdef FEAT_MBYTE
587 if (has_mbyte)
588 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
589#endif
590 if (vim_ispathsep(ccline.cmdbuff[j])
591#ifdef BACKSLASH_IN_FILENAME
592 && vim_strchr(" *?[{`$%#", ccline.cmdbuff[j + 1])
593 == NULL
594#endif
595 )
596 {
597 if (found)
598 {
599 i = j + 1;
600 break;
601 }
602 else
603 found = TRUE;
604 }
605 }
606
607 if (!found)
608 j = i;
609 else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0)
610 j += 4;
611 else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0
612 && j == i)
613 j += 3;
614 else
615 j = 0;
616 if (j > 0)
617 {
618 /* TODO this is only for DOS/UNIX systems - need to put in
619 * machine-specific stuff here and in upseg init */
620 cmdline_del(j);
621 put_on_cmdline(upseg + 1, 3, FALSE);
622 }
623 else if (ccline.cmdpos > i)
624 cmdline_del(i);
625 c = p_wc;
626 }
627 }
628#if 0 /* If enabled <Down> on a file takes you _completely_ out of wildmenu */
629 if (p_wmnu
630 && (xpc.xp_context == EXPAND_FILES
631 || xpc.xp_context == EXPAND_MENUNAMES)
632 && (c == K_UP || c == K_DOWN))
633 xpc.xp_context = EXPAND_NOTHING;
634#endif
635
636#endif /* FEAT_WILDMENU */
637
638 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert
639 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */
640 if (c == Ctrl_BSL)
641 {
642 ++no_mapping;
643 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000644 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645 --no_mapping;
646 --allow_keys;
647 /* CTRL-\ e doesn't work when obtaining an expression. */
648 if (c != Ctrl_N && c != Ctrl_G
649 && (c != 'e' || ccline.cmdfirstc == '='))
650 {
651 vungetc(c);
652 c = Ctrl_BSL;
653 }
654#ifdef FEAT_EVAL
655 else if (c == 'e')
656 {
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000657 char_u *p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658
659 /*
660 * Replace the command line with the result of an expression.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000661 * Need to save and restore the current command line, to be
662 * able to enter a new one...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663 */
664 if (ccline.cmdpos == ccline.cmdlen)
665 new_cmdpos = 99999; /* keep it at the end */
666 else
667 new_cmdpos = ccline.cmdpos;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000668
669 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000671 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672 if (c == '=')
673 {
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000674 /* Need to save and restore ccline. And set "textlock"
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000675 * to avoid nasty things like going to another buffer when
676 * evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000677 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000678 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679 p = get_expr_line();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000680 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000681 restore_cmdline(&save_ccline);
682
683 if (p != NULL && realloc_cmdbuff((int)STRLEN(p) + 1) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000685 ccline.cmdlen = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686 STRCPY(ccline.cmdbuff, p);
687 vim_free(p);
688
689 /* Restore the cursor or use the position set with
690 * set_cmdline_pos(). */
691 if (new_cmdpos > ccline.cmdlen)
692 ccline.cmdpos = ccline.cmdlen;
693 else
694 ccline.cmdpos = new_cmdpos;
695
696 KeyTyped = FALSE; /* Don't do p_wc completion. */
697 redrawcmd();
698 goto cmdline_changed;
699 }
700 }
701 beep_flush();
702 c = ESC;
703 }
704#endif
705 else
706 {
707 if (c == Ctrl_G && p_im && restart_edit == 0)
708 restart_edit = 'a';
709 gotesc = TRUE; /* will free ccline.cmdbuff after putting it
710 in history */
711 goto returncmd; /* back to Normal mode */
712 }
713 }
714
715#ifdef FEAT_CMDWIN
716 if (c == cedit_key || c == K_CMDWIN)
717 {
718 /*
719 * Open a window to edit the command line (and history).
720 */
721 c = ex_window();
722 some_key_typed = TRUE;
723 }
724# ifdef FEAT_DIGRAPHS
725 else
726# endif
727#endif
728#ifdef FEAT_DIGRAPHS
729 c = do_digraph(c);
730#endif
731
732 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC
733 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL)))
734 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000735 /* In Ex mode a backslash escapes a newline. */
736 if (exmode_active
737 && c != ESC
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000738 && ccline.cmdpos == ccline.cmdlen
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000739 && ccline.cmdpos > 0
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000740 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000742 if (c == K_KENTER)
743 c = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000745 else
746 {
747 gotesc = FALSE; /* Might have typed ESC previously, don't
748 truncate the cmdline now. */
749 if (ccheck_abbr(c + ABBR_OFF))
750 goto cmdline_changed;
751 if (!cmd_silent)
752 {
753 windgoto(msg_row, 0);
754 out_flush();
755 }
756 break;
757 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758 }
759
760 /*
761 * Completion for 'wildchar' or 'wildcharm' key.
762 * - hitting <ESC> twice means: abandon command line.
763 * - wildcard expansion is only done when the 'wildchar' key is really
764 * typed, not when it comes from a macro
765 */
766 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm)
767 {
768 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */
769 {
770 /* if 'wildmode' contains "list" may still need to list */
771 if (xpc.xp_numfiles > 1
772 && !did_wild_list
773 && (wim_flags[wim_index] & WIM_LIST))
774 {
775 (void)showmatches(&xpc, FALSE);
776 redrawcmd();
777 did_wild_list = TRUE;
778 }
779 if (wim_flags[wim_index] & WIM_LONGEST)
780 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP);
781 else if (wim_flags[wim_index] & WIM_FULL)
782 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP);
783 else
784 res = OK; /* don't insert 'wildchar' now */
785 }
786 else /* typed p_wc first time */
787 {
788 wim_index = 0;
789 j = ccline.cmdpos;
790 /* if 'wildmode' first contains "longest", get longest
791 * common part */
792 if (wim_flags[0] & WIM_LONGEST)
793 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP);
794 else
795 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP);
796
797 /* if interrupted while completing, behave like it failed */
798 if (got_int)
799 {
800 (void)vpeekc(); /* remove <C-C> from input stream */
801 got_int = FALSE; /* don't abandon the command line */
802 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
803#ifdef FEAT_WILDMENU
804 xpc.xp_context = EXPAND_NOTHING;
805#endif
806 goto cmdline_changed;
807 }
808
809 /* when more than one match, and 'wildmode' first contains
810 * "list", or no change and 'wildmode' contains "longest,list",
811 * list all matches */
812 if (res == OK && xpc.xp_numfiles > 1)
813 {
814 /* a "longest" that didn't do anything is skipped (but not
815 * "list:longest") */
816 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j)
817 wim_index = 1;
818 if ((wim_flags[wim_index] & WIM_LIST)
819#ifdef FEAT_WILDMENU
820 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0)
821#endif
822 )
823 {
824 if (!(wim_flags[0] & WIM_LONGEST))
825 {
826#ifdef FEAT_WILDMENU
827 int p_wmnu_save = p_wmnu;
828 p_wmnu = 0;
829#endif
830 nextwild(&xpc, WILD_PREV, 0); /* remove match */
831#ifdef FEAT_WILDMENU
832 p_wmnu = p_wmnu_save;
833#endif
834 }
835#ifdef FEAT_WILDMENU
836 (void)showmatches(&xpc, p_wmnu
837 && ((wim_flags[wim_index] & WIM_LIST) == 0));
838#else
839 (void)showmatches(&xpc, FALSE);
840#endif
841 redrawcmd();
842 did_wild_list = TRUE;
843 if (wim_flags[wim_index] & WIM_LONGEST)
844 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP);
845 else if (wim_flags[wim_index] & WIM_FULL)
846 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP);
847 }
848 else
849 vim_beep();
850 }
851#ifdef FEAT_WILDMENU
852 else if (xpc.xp_numfiles == -1)
853 xpc.xp_context = EXPAND_NOTHING;
854#endif
855 }
856 if (wim_index < 3)
857 ++wim_index;
858 if (c == ESC)
859 gotesc = TRUE;
860 if (res == OK)
861 goto cmdline_changed;
862 }
863
864 gotesc = FALSE;
865
866 /* <S-Tab> goes to last match, in a clumsy way */
867 if (c == K_S_TAB && KeyTyped)
868 {
869 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0) == OK
870 && nextwild(&xpc, WILD_PREV, 0) == OK
871 && nextwild(&xpc, WILD_PREV, 0) == OK)
872 goto cmdline_changed;
873 }
874
875 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */
876 c = NL;
877
878 do_abbr = TRUE; /* default: check for abbreviation */
879
880 /*
881 * Big switch for a typed command line character.
882 */
883 switch (c)
884 {
885 case K_BS:
886 case Ctrl_H:
887 case K_DEL:
888 case K_KDEL:
889 case Ctrl_W:
890#ifdef FEAT_FKMAP
891 if (cmd_fkmap && c == K_BS)
892 c = K_DEL;
893#endif
894 if (c == K_KDEL)
895 c = K_DEL;
896
897 /*
898 * delete current character is the same as backspace on next
899 * character, except at end of line
900 */
901 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen)
902 ++ccline.cmdpos;
903#ifdef FEAT_MBYTE
904 if (has_mbyte && c == K_DEL)
905 ccline.cmdpos += mb_off_next(ccline.cmdbuff,
906 ccline.cmdbuff + ccline.cmdpos);
907#endif
908 if (ccline.cmdpos > 0)
909 {
910 char_u *p;
911
912 j = ccline.cmdpos;
913 p = ccline.cmdbuff + j;
914#ifdef FEAT_MBYTE
915 if (has_mbyte)
916 {
917 p = mb_prevptr(ccline.cmdbuff, p);
918 if (c == Ctrl_W)
919 {
920 while (p > ccline.cmdbuff && vim_isspace(*p))
921 p = mb_prevptr(ccline.cmdbuff, p);
922 i = mb_get_class(p);
923 while (p > ccline.cmdbuff && mb_get_class(p) == i)
924 p = mb_prevptr(ccline.cmdbuff, p);
925 if (mb_get_class(p) != i)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000926 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 }
928 }
929 else
930#endif
931 if (c == Ctrl_W)
932 {
933 while (p > ccline.cmdbuff && vim_isspace(p[-1]))
934 --p;
935 i = vim_iswordc(p[-1]);
936 while (p > ccline.cmdbuff && !vim_isspace(p[-1])
937 && vim_iswordc(p[-1]) == i)
938 --p;
939 }
940 else
941 --p;
942 ccline.cmdpos = (int)(p - ccline.cmdbuff);
943 ccline.cmdlen -= j - ccline.cmdpos;
944 i = ccline.cmdpos;
945 while (i < ccline.cmdlen)
946 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
947
948 /* Truncate at the end, required for multi-byte chars. */
949 ccline.cmdbuff[ccline.cmdlen] = NUL;
950 redrawcmd();
951 }
952 else if (ccline.cmdlen == 0 && c != Ctrl_W
953 && ccline.cmdprompt == NULL && indent == 0)
954 {
955 /* In ex and debug mode it doesn't make sense to return. */
956 if (exmode_active
957#ifdef FEAT_EVAL
958 || ccline.cmdfirstc == '>'
959#endif
960 )
961 goto cmdline_not_changed;
962
963 vim_free(ccline.cmdbuff); /* no commandline to return */
964 ccline.cmdbuff = NULL;
965 if (!cmd_silent)
966 {
967#ifdef FEAT_RIGHTLEFT
968 if (cmdmsg_rl)
969 msg_col = Columns;
970 else
971#endif
972 msg_col = 0;
973 msg_putchar(' '); /* delete ':' */
974 }
975 redraw_cmdline = TRUE;
976 goto returncmd; /* back to cmd mode */
977 }
978 goto cmdline_changed;
979
980 case K_INS:
981 case K_KINS:
982#ifdef FEAT_FKMAP
983 /* if Farsi mode set, we are in reverse insert mode -
984 Do not change the mode */
985 if (cmd_fkmap)
986 beep_flush();
987 else
988#endif
989 ccline.overstrike = !ccline.overstrike;
990#ifdef CURSOR_SHAPE
991 ui_cursor_shape(); /* may show different cursor shape */
992#endif
993 goto cmdline_not_changed;
994
995 case Ctrl_HAT:
Bram Moolenaar97b2ad32006-03-18 21:40:56 +0000996 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 {
998 /* ":lmap" mappings exists, toggle use of mappings. */
999 State ^= LANGMAP;
1000#ifdef USE_IM_CONTROL
1001 im_set_active(FALSE); /* Disable input method */
1002#endif
1003 if (b_im_ptr != NULL)
1004 {
1005 if (State & LANGMAP)
1006 *b_im_ptr = B_IMODE_LMAP;
1007 else
1008 *b_im_ptr = B_IMODE_NONE;
1009 }
1010 }
1011#ifdef USE_IM_CONTROL
1012 else
1013 {
1014 /* There are no ":lmap" mappings, toggle IM. When
1015 * 'imdisable' is set don't try getting the status, it's
1016 * always off. */
1017 if ((p_imdisable && b_im_ptr != NULL)
1018 ? *b_im_ptr == B_IMODE_IM : im_get_status())
1019 {
1020 im_set_active(FALSE); /* Disable input method */
1021 if (b_im_ptr != NULL)
1022 *b_im_ptr = B_IMODE_NONE;
1023 }
1024 else
1025 {
1026 im_set_active(TRUE); /* Enable input method */
1027 if (b_im_ptr != NULL)
1028 *b_im_ptr = B_IMODE_IM;
1029 }
1030 }
1031#endif
1032 if (b_im_ptr != NULL)
1033 {
1034 if (b_im_ptr == &curbuf->b_p_iminsert)
1035 set_iminsert_global();
1036 else
1037 set_imsearch_global();
1038 }
1039#ifdef CURSOR_SHAPE
1040 ui_cursor_shape(); /* may show different cursor shape */
1041#endif
1042#if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
1043 /* Show/unshow value of 'keymap' in status lines later. */
1044 status_redraw_curbuf();
1045#endif
1046 goto cmdline_not_changed;
1047
1048/* case '@': only in very old vi */
1049 case Ctrl_U:
1050 /* delete all characters left of the cursor */
1051 j = ccline.cmdpos;
1052 ccline.cmdlen -= j;
1053 i = ccline.cmdpos = 0;
1054 while (i < ccline.cmdlen)
1055 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1056 /* Truncate at the end, required for multi-byte chars. */
1057 ccline.cmdbuff[ccline.cmdlen] = NUL;
1058 redrawcmd();
1059 goto cmdline_changed;
1060
1061#ifdef FEAT_CLIPBOARD
1062 case Ctrl_Y:
1063 /* Copy the modeless selection, if there is one. */
1064 if (clip_star.state != SELECT_CLEARED)
1065 {
1066 if (clip_star.state == SELECT_DONE)
1067 clip_copy_modeless_selection(TRUE);
1068 goto cmdline_not_changed;
1069 }
1070 break;
1071#endif
1072
1073 case ESC: /* get here if p_wc != ESC or when ESC typed twice */
1074 case Ctrl_C:
Bram Moolenaarf4d11452005-12-02 00:46:37 +00001075 /* In exmode it doesn't make sense to return. Except when
Bram Moolenaar7c626922005-02-07 22:01:03 +00001076 * ":normal" runs out of characters. */
1077 if (exmode_active
1078#ifdef FEAT_EX_EXTRA
1079 && (ex_normal_busy == 0 || typebuf.tb_len > 0)
1080#endif
1081 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 goto cmdline_not_changed;
1083
1084 gotesc = TRUE; /* will free ccline.cmdbuff after
1085 putting it in history */
1086 goto returncmd; /* back to cmd mode */
1087
1088 case Ctrl_R: /* insert register */
1089#ifdef USE_ON_FLY_SCROLL
1090 dont_scroll = TRUE; /* disallow scrolling here */
1091#endif
1092 putcmdline('"', TRUE);
1093 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001094 i = c = plain_vgetc(); /* CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095 if (i == Ctrl_O)
1096 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */
1097 if (i == Ctrl_R)
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001098 c = plain_vgetc(); /* CTRL-R CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 --no_mapping;
1100#ifdef FEAT_EVAL
1101 /*
1102 * Insert the result of an expression.
1103 * Need to save the current command line, to be able to enter
1104 * a new one...
1105 */
1106 new_cmdpos = -1;
1107 if (c == '=')
1108 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 if (ccline.cmdfirstc == '=')/* can't do this recursively */
1110 {
1111 beep_flush();
1112 c = ESC;
1113 }
1114 else
1115 {
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001116 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001118 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119 }
1120 }
1121#endif
1122 if (c != ESC) /* use ESC to cancel inserting register */
1123 {
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001124 cmdline_paste(c, i == Ctrl_R, FALSE);
Bram Moolenaaracf53452005-12-17 22:06:52 +00001125
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001126#ifdef FEAT_EVAL
Bram Moolenaaracf53452005-12-17 22:06:52 +00001127 /* When there was a serious error abort getting the
1128 * command line. */
1129 if (aborting())
1130 {
1131 gotesc = TRUE; /* will free ccline.cmdbuff after
1132 putting it in history */
1133 goto returncmd; /* back to cmd mode */
1134 }
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001135#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 KeyTyped = FALSE; /* Don't do p_wc completion. */
1137#ifdef FEAT_EVAL
1138 if (new_cmdpos >= 0)
1139 {
1140 /* set_cmdline_pos() was used */
1141 if (new_cmdpos > ccline.cmdlen)
1142 ccline.cmdpos = ccline.cmdlen;
1143 else
1144 ccline.cmdpos = new_cmdpos;
1145 }
1146#endif
1147 }
1148 redrawcmd();
1149 goto cmdline_changed;
1150
1151 case Ctrl_D:
1152 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING)
1153 break; /* Use ^D as normal char instead */
1154
1155 redrawcmd();
1156 continue; /* don't do incremental search now */
1157
1158 case K_RIGHT:
1159 case K_S_RIGHT:
1160 case K_C_RIGHT:
1161 do
1162 {
1163 if (ccline.cmdpos >= ccline.cmdlen)
1164 break;
1165 i = cmdline_charsize(ccline.cmdpos);
1166 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows)
1167 break;
1168 ccline.cmdspos += i;
1169#ifdef FEAT_MBYTE
1170 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001171 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 + ccline.cmdpos);
1173 else
1174#endif
1175 ++ccline.cmdpos;
1176 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001177 while ((c == K_S_RIGHT || c == K_C_RIGHT
1178 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 && ccline.cmdbuff[ccline.cmdpos] != ' ');
1180#ifdef FEAT_MBYTE
1181 if (has_mbyte)
1182 set_cmdspos_cursor();
1183#endif
1184 goto cmdline_not_changed;
1185
1186 case K_LEFT:
1187 case K_S_LEFT:
1188 case K_C_LEFT:
1189 do
1190 {
1191 if (ccline.cmdpos == 0)
1192 break;
1193 --ccline.cmdpos;
1194#ifdef FEAT_MBYTE
1195 if (has_mbyte) /* move to first byte of char */
1196 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff,
1197 ccline.cmdbuff + ccline.cmdpos);
1198#endif
1199 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos);
1200 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001201 while ((c == K_S_LEFT || c == K_C_LEFT
1202 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 && ccline.cmdbuff[ccline.cmdpos - 1] != ' ');
1204#ifdef FEAT_MBYTE
1205 if (has_mbyte)
1206 set_cmdspos_cursor();
1207#endif
1208 goto cmdline_not_changed;
1209
1210 case K_IGNORE:
1211 goto cmdline_not_changed; /* Ignore mouse */
1212
Bram Moolenaar4770d092006-01-12 23:22:24 +00001213#ifdef FEAT_GUI_W32
1214 /* On Win32 ignore <M-F4>, we get it when closing the window was
1215 * cancelled. */
1216 case K_F4:
1217 if (mod_mask == MOD_MASK_ALT)
1218 {
1219 redrawcmd(); /* somehow the cmdline is cleared */
1220 goto cmdline_not_changed;
1221 }
1222 break;
1223#endif
1224
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225#ifdef FEAT_MOUSE
1226 case K_MIDDLEDRAG:
1227 case K_MIDDLERELEASE:
1228 goto cmdline_not_changed; /* Ignore mouse */
1229
1230 case K_MIDDLEMOUSE:
1231# ifdef FEAT_GUI
1232 /* When GUI is active, also paste when 'mouse' is empty */
1233 if (!gui.in_use)
1234# endif
1235 if (!mouse_has(MOUSE_COMMAND))
1236 goto cmdline_not_changed; /* Ignore mouse */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001237# ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 if (clip_star.available)
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001239 cmdline_paste('*', TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 else
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001241# endif
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001242 cmdline_paste(0, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243 redrawcmd();
1244 goto cmdline_changed;
1245
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001246# ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 case K_DROP:
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001248 cmdline_paste('~', TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 redrawcmd();
1250 goto cmdline_changed;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001251# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252
1253 case K_LEFTDRAG:
1254 case K_LEFTRELEASE:
1255 case K_RIGHTDRAG:
1256 case K_RIGHTRELEASE:
1257 /* Ignore drag and release events when the button-down wasn't
1258 * seen before. */
1259 if (ignore_drag_release)
1260 goto cmdline_not_changed;
1261 /* FALLTHROUGH */
1262 case K_LEFTMOUSE:
1263 case K_RIGHTMOUSE:
1264 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE)
1265 ignore_drag_release = TRUE;
1266 else
1267 ignore_drag_release = FALSE;
1268# ifdef FEAT_GUI
1269 /* When GUI is active, also move when 'mouse' is empty */
1270 if (!gui.in_use)
1271# endif
1272 if (!mouse_has(MOUSE_COMMAND))
1273 goto cmdline_not_changed; /* Ignore mouse */
1274# ifdef FEAT_CLIPBOARD
1275 if (mouse_row < cmdline_row && clip_star.available)
1276 {
1277 int button, is_click, is_drag;
1278
1279 /*
1280 * Handle modeless selection.
1281 */
1282 button = get_mouse_button(KEY2TERMCAP1(c),
1283 &is_click, &is_drag);
1284 if (mouse_model_popup() && button == MOUSE_LEFT
1285 && (mod_mask & MOD_MASK_SHIFT))
1286 {
1287 /* Translate shift-left to right button. */
1288 button = MOUSE_RIGHT;
1289 mod_mask &= ~MOD_MASK_SHIFT;
1290 }
1291 clip_modeless(button, is_click, is_drag);
1292 goto cmdline_not_changed;
1293 }
1294# endif
1295
1296 set_cmdspos();
1297 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen;
1298 ++ccline.cmdpos)
1299 {
1300 i = cmdline_charsize(ccline.cmdpos);
1301 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns
1302 && mouse_col < ccline.cmdspos % Columns + i)
1303 break;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001304# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 if (has_mbyte)
1306 {
1307 /* Count ">" for double-wide char that doesn't fit. */
1308 correct_cmdspos(ccline.cmdpos, i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001309 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 + ccline.cmdpos) - 1;
1311 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001312# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 ccline.cmdspos += i;
1314 }
1315 goto cmdline_not_changed;
1316
1317 /* Mouse scroll wheel: ignored here */
1318 case K_MOUSEDOWN:
1319 case K_MOUSEUP:
1320 /* Alternate buttons ignored here */
1321 case K_X1MOUSE:
1322 case K_X1DRAG:
1323 case K_X1RELEASE:
1324 case K_X2MOUSE:
1325 case K_X2DRAG:
1326 case K_X2RELEASE:
1327 goto cmdline_not_changed;
1328
1329#endif /* FEAT_MOUSE */
1330
1331#ifdef FEAT_GUI
1332 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */
1333 case K_LEFTRELEASE_NM:
1334 goto cmdline_not_changed;
1335
1336 case K_VER_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001337 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 {
1339 gui_do_scroll();
1340 redrawcmd();
1341 }
1342 goto cmdline_not_changed;
1343
1344 case K_HOR_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001345 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346 {
1347 gui_do_horiz_scroll();
1348 redrawcmd();
1349 }
1350 goto cmdline_not_changed;
1351#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001352#ifdef FEAT_GUI_TABLINE
1353 case K_TABLINE:
1354 case K_TABMENU:
1355 /* Don't want to change any tabs here. Make sure the same tab
1356 * is still selected. */
1357 if (gui_use_tabline())
1358 gui_mch_set_curtab(tabpage_index(curtab));
1359 goto cmdline_not_changed;
1360#endif
1361
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362 case K_SELECT: /* end of Select mode mapping - ignore */
1363 goto cmdline_not_changed;
1364
1365 case Ctrl_B: /* begin of command line */
1366 case K_HOME:
1367 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 case K_S_HOME:
1369 case K_C_HOME:
1370 ccline.cmdpos = 0;
1371 set_cmdspos();
1372 goto cmdline_not_changed;
1373
1374 case Ctrl_E: /* end of command line */
1375 case K_END:
1376 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 case K_S_END:
1378 case K_C_END:
1379 ccline.cmdpos = ccline.cmdlen;
1380 set_cmdspos_cursor();
1381 goto cmdline_not_changed;
1382
1383 case Ctrl_A: /* all matches */
1384 if (nextwild(&xpc, WILD_ALL, 0) == FAIL)
1385 break;
1386 goto cmdline_changed;
1387
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001388 case Ctrl_L:
1389#ifdef FEAT_SEARCH_EXTRA
1390 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1391 {
1392 /* Add a character from under the cursor for 'incsearch' */
1393 if (did_incsearch
1394 && !equalpos(curwin->w_cursor, old_cursor))
1395 {
1396 c = gchar_cursor();
1397 if (c != NUL)
Bram Moolenaar93db9752006-11-21 10:29:45 +00001398 {
1399 if (c == firstc || vim_strchr((char_u *)(
1400 p_magic ? "\\^$.*[" : "\\^$"), c)
1401 != NULL)
1402 {
1403 /* put a backslash before special characters */
1404 stuffcharReadbuff(c);
1405 c = '\\';
1406 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001407 break;
Bram Moolenaar93db9752006-11-21 10:29:45 +00001408 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001409 }
1410 goto cmdline_not_changed;
1411 }
1412#endif
1413
1414 /* completion: longest common part */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415 if (nextwild(&xpc, WILD_LONGEST, 0) == FAIL)
1416 break;
1417 goto cmdline_changed;
1418
1419 case Ctrl_N: /* next match */
1420 case Ctrl_P: /* previous match */
1421 if (xpc.xp_numfiles > 0)
1422 {
1423 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT, 0)
1424 == FAIL)
1425 break;
1426 goto cmdline_changed;
1427 }
1428
1429#ifdef FEAT_CMDHIST
1430 case K_UP:
1431 case K_DOWN:
1432 case K_S_UP:
1433 case K_S_DOWN:
1434 case K_PAGEUP:
1435 case K_KPAGEUP:
1436 case K_PAGEDOWN:
1437 case K_KPAGEDOWN:
1438 if (hislen == 0 || firstc == NUL) /* no history */
1439 goto cmdline_not_changed;
1440
1441 i = hiscnt;
1442
1443 /* save current command string so it can be restored later */
1444 if (lookfor == NULL)
1445 {
1446 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL)
1447 goto cmdline_not_changed;
1448 lookfor[ccline.cmdpos] = NUL;
1449 }
1450
1451 j = (int)STRLEN(lookfor);
1452 for (;;)
1453 {
1454 /* one step backwards */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001455 if (c == K_UP|| c == K_S_UP || c == Ctrl_P
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001456 || c == K_PAGEUP || c == K_KPAGEUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 {
1458 if (hiscnt == hislen) /* first time */
1459 hiscnt = hisidx[histype];
1460 else if (hiscnt == 0 && hisidx[histype] != hislen - 1)
1461 hiscnt = hislen - 1;
1462 else if (hiscnt != hisidx[histype] + 1)
1463 --hiscnt;
1464 else /* at top of list */
1465 {
1466 hiscnt = i;
1467 break;
1468 }
1469 }
1470 else /* one step forwards */
1471 {
1472 /* on last entry, clear the line */
1473 if (hiscnt == hisidx[histype])
1474 {
1475 hiscnt = hislen;
1476 break;
1477 }
1478
1479 /* not on a history line, nothing to do */
1480 if (hiscnt == hislen)
1481 break;
1482 if (hiscnt == hislen - 1) /* wrap around */
1483 hiscnt = 0;
1484 else
1485 ++hiscnt;
1486 }
1487 if (hiscnt < 0 || history[histype][hiscnt].hisstr == NULL)
1488 {
1489 hiscnt = i;
1490 break;
1491 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001492 if ((c != K_UP && c != K_DOWN)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001493 || hiscnt == i
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 || STRNCMP(history[histype][hiscnt].hisstr,
1495 lookfor, (size_t)j) == 0)
1496 break;
1497 }
1498
1499 if (hiscnt != i) /* jumped to other entry */
1500 {
1501 char_u *p;
1502 int len;
1503 int old_firstc;
1504
1505 vim_free(ccline.cmdbuff);
1506 if (hiscnt == hislen)
1507 p = lookfor; /* back to the old one */
1508 else
1509 p = history[histype][hiscnt].hisstr;
1510
1511 if (histype == HIST_SEARCH
1512 && p != lookfor
1513 && (old_firstc = p[STRLEN(p) + 1]) != firstc)
1514 {
1515 /* Correct for the separator character used when
1516 * adding the history entry vs the one used now.
1517 * First loop: count length.
1518 * Second loop: copy the characters. */
1519 for (i = 0; i <= 1; ++i)
1520 {
1521 len = 0;
1522 for (j = 0; p[j] != NUL; ++j)
1523 {
1524 /* Replace old sep with new sep, unless it is
1525 * escaped. */
1526 if (p[j] == old_firstc
1527 && (j == 0 || p[j - 1] != '\\'))
1528 {
1529 if (i > 0)
1530 ccline.cmdbuff[len] = firstc;
1531 }
1532 else
1533 {
1534 /* Escape new sep, unless it is already
1535 * escaped. */
1536 if (p[j] == firstc
1537 && (j == 0 || p[j - 1] != '\\'))
1538 {
1539 if (i > 0)
1540 ccline.cmdbuff[len] = '\\';
1541 ++len;
1542 }
1543 if (i > 0)
1544 ccline.cmdbuff[len] = p[j];
1545 }
1546 ++len;
1547 }
1548 if (i == 0)
1549 {
1550 alloc_cmdbuff(len);
1551 if (ccline.cmdbuff == NULL)
1552 goto returncmd;
1553 }
1554 }
1555 ccline.cmdbuff[len] = NUL;
1556 }
1557 else
1558 {
1559 alloc_cmdbuff((int)STRLEN(p));
1560 if (ccline.cmdbuff == NULL)
1561 goto returncmd;
1562 STRCPY(ccline.cmdbuff, p);
1563 }
1564
1565 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
1566 redrawcmd();
1567 goto cmdline_changed;
1568 }
1569 beep_flush();
1570 goto cmdline_not_changed;
1571#endif
1572
1573 case Ctrl_V:
1574 case Ctrl_Q:
1575#ifdef FEAT_MOUSE
1576 ignore_drag_release = TRUE;
1577#endif
1578 putcmdline('^', TRUE);
1579 c = get_literal(); /* get next (two) character(s) */
1580 do_abbr = FALSE; /* don't do abbreviation now */
1581#ifdef FEAT_MBYTE
1582 /* may need to remove ^ when composing char was typed */
1583 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent)
1584 {
1585 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
1586 msg_putchar(' ');
1587 cursorcmd();
1588 }
1589#endif
1590 break;
1591
1592#ifdef FEAT_DIGRAPHS
1593 case Ctrl_K:
1594#ifdef FEAT_MOUSE
1595 ignore_drag_release = TRUE;
1596#endif
1597 putcmdline('?', TRUE);
1598#ifdef USE_ON_FLY_SCROLL
1599 dont_scroll = TRUE; /* disallow scrolling here */
1600#endif
1601 c = get_digraph(TRUE);
1602 if (c != NUL)
1603 break;
1604
1605 redrawcmd();
1606 goto cmdline_not_changed;
1607#endif /* FEAT_DIGRAPHS */
1608
1609#ifdef FEAT_RIGHTLEFT
1610 case Ctrl__: /* CTRL-_: switch language mode */
1611 if (!p_ari)
1612 break;
1613#ifdef FEAT_FKMAP
1614 if (p_altkeymap)
1615 {
1616 cmd_fkmap = !cmd_fkmap;
1617 if (cmd_fkmap) /* in Farsi always in Insert mode */
1618 ccline.overstrike = FALSE;
1619 }
1620 else /* Hebrew is default */
1621#endif
1622 cmd_hkmap = !cmd_hkmap;
1623 goto cmdline_not_changed;
1624#endif
1625
1626 default:
1627#ifdef UNIX
1628 if (c == intr_char)
1629 {
1630 gotesc = TRUE; /* will free ccline.cmdbuff after
1631 putting it in history */
1632 goto returncmd; /* back to Normal mode */
1633 }
1634#endif
1635 /*
1636 * Normal character with no special meaning. Just set mod_mask
1637 * to 0x0 so that typing Shift-Space in the GUI doesn't enter
1638 * the string <S-Space>. This should only happen after ^V.
1639 */
1640 if (!IS_SPECIAL(c))
1641 mod_mask = 0x0;
1642 break;
1643 }
1644 /*
1645 * End of switch on command line character.
1646 * We come here if we have a normal character.
1647 */
1648
1649 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && ccheck_abbr(
1650#ifdef FEAT_MBYTE
1651 /* Add ABBR_OFF for characters above 0x100, this is
1652 * what check_abbr() expects. */
1653 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
1654#endif
1655 c))
1656 goto cmdline_changed;
1657
1658 /*
1659 * put the character in the command line
1660 */
1661 if (IS_SPECIAL(c) || mod_mask != 0)
1662 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE);
1663 else
1664 {
1665#ifdef FEAT_MBYTE
1666 if (has_mbyte)
1667 {
1668 j = (*mb_char2bytes)(c, IObuff);
1669 IObuff[j] = NUL; /* exclude composing chars */
1670 put_on_cmdline(IObuff, j, TRUE);
1671 }
1672 else
1673#endif
1674 {
1675 IObuff[0] = c;
1676 put_on_cmdline(IObuff, 1, TRUE);
1677 }
1678 }
1679 goto cmdline_changed;
1680
1681/*
1682 * This part implements incremental searches for "/" and "?"
1683 * Jump to cmdline_not_changed when a character has been read but the command
1684 * line did not change. Then we only search and redraw if something changed in
1685 * the past.
1686 * Jump to cmdline_changed when the command line did change.
1687 * (Sorry for the goto's, I know it is ugly).
1688 */
1689cmdline_not_changed:
1690#ifdef FEAT_SEARCH_EXTRA
1691 if (!incsearch_postponed)
1692 continue;
1693#endif
1694
1695cmdline_changed:
1696#ifdef FEAT_SEARCH_EXTRA
1697 /*
1698 * 'incsearch' highlighting.
1699 */
1700 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1701 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001702 pos_T end_pos;
1703
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 /* if there is a character waiting, search and redraw later */
1705 if (char_avail())
1706 {
1707 incsearch_postponed = TRUE;
1708 continue;
1709 }
1710 incsearch_postponed = FALSE;
1711 curwin->w_cursor = old_cursor; /* start at old position */
1712
1713 /* If there is no command line, don't do anything */
1714 if (ccline.cmdlen == 0)
1715 i = 0;
1716 else
1717 {
1718 cursor_off(); /* so the user knows we're busy */
1719 out_flush();
1720 ++emsg_off; /* So it doesn't beep if bad expr */
1721 i = do_search(NULL, firstc, ccline.cmdbuff, count,
1722 SEARCH_KEEP + SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK);
1723 --emsg_off;
1724 /* if interrupted while searching, behave like it failed */
1725 if (got_int)
1726 {
1727 (void)vpeekc(); /* remove <C-C> from input stream */
1728 got_int = FALSE; /* don't abandon the command line */
1729 i = 0;
1730 }
1731 else if (char_avail())
1732 /* cancelled searching because a char was typed */
1733 incsearch_postponed = TRUE;
1734 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001735 if (i != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 highlight_match = TRUE; /* highlight position */
1737 else
1738 highlight_match = FALSE; /* remove highlight */
1739
1740 /* first restore the old curwin values, so the screen is
1741 * positioned in the same way as the actual search command */
1742 curwin->w_leftcol = old_leftcol;
1743 curwin->w_topline = old_topline;
1744# ifdef FEAT_DIFF
1745 curwin->w_topfill = old_topfill;
1746# endif
1747 curwin->w_botline = old_botline;
1748 changed_cline_bef_curs();
1749 update_topline();
1750
1751 if (i != 0)
1752 {
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001753 pos_T save_pos = curwin->w_cursor;
1754
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 /*
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001756 * First move cursor to end of match, then to the start. This
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 * moves the whole match onto the screen when 'nowrap' is set.
1758 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 curwin->w_cursor.lnum += search_match_lines;
1760 curwin->w_cursor.col = search_match_endcol;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001761 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
1762 {
1763 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
1764 coladvance((colnr_T)MAXCOL);
1765 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766 validate_cursor();
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001767 end_pos = curwin->w_cursor;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001768 curwin->w_cursor = save_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 }
Bram Moolenaardb552d602006-03-23 22:59:57 +00001770 else
1771 end_pos = curwin->w_cursor; /* shutup gcc 4 */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001772
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 validate_cursor();
Bram Moolenaar27a23192006-09-14 09:27:26 +00001774# ifdef FEAT_WINDOWS
1775 /* May redraw the status line to show the cursor position. */
1776 if (p_ru && curwin->w_status_height > 0)
1777 curwin->w_redr_status = TRUE;
1778# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00001780 save_cmdline(&save_ccline);
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001781 update_screen(SOME_VALID);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00001782 restore_cmdline(&save_ccline);
1783
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001784 /* Leave it at the end to make CTRL-R CTRL-W work. */
1785 if (i != 0)
1786 curwin->w_cursor = end_pos;
1787
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 msg_starthere();
1789 redrawcmdline();
1790 did_incsearch = TRUE;
1791 }
1792#else /* FEAT_SEARCH_EXTRA */
1793 ;
1794#endif
1795
1796#ifdef FEAT_RIGHTLEFT
1797 if (cmdmsg_rl
1798# ifdef FEAT_ARABIC
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001799 || (p_arshape && !p_tbidi && enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800# endif
1801 )
1802 /* Always redraw the whole command line to fix shaping and
1803 * right-left typing. Not efficient, but it works. */
1804 redrawcmd();
1805#endif
1806 }
1807
1808returncmd:
1809
1810#ifdef FEAT_RIGHTLEFT
1811 cmdmsg_rl = FALSE;
1812#endif
1813
1814#ifdef FEAT_FKMAP
1815 cmd_fkmap = 0;
1816#endif
1817
1818 ExpandCleanup(&xpc);
1819
1820#ifdef FEAT_SEARCH_EXTRA
1821 if (did_incsearch)
1822 {
1823 curwin->w_cursor = old_cursor;
1824 curwin->w_curswant = old_curswant;
1825 curwin->w_leftcol = old_leftcol;
1826 curwin->w_topline = old_topline;
1827# ifdef FEAT_DIFF
1828 curwin->w_topfill = old_topfill;
1829# endif
1830 curwin->w_botline = old_botline;
1831 highlight_match = FALSE;
1832 validate_cursor(); /* needed for TAB */
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001833 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 }
1835#endif
1836
1837 if (ccline.cmdbuff != NULL)
1838 {
1839 /*
1840 * Put line in history buffer (":" and "=" only when it was typed).
1841 */
1842#ifdef FEAT_CMDHIST
1843 if (ccline.cmdlen && firstc != NUL
1844 && (some_key_typed || histype == HIST_SEARCH))
1845 {
1846 add_to_history(histype, ccline.cmdbuff, TRUE,
1847 histype == HIST_SEARCH ? firstc : NUL);
1848 if (firstc == ':')
1849 {
1850 vim_free(new_last_cmdline);
1851 new_last_cmdline = vim_strsave(ccline.cmdbuff);
1852 }
1853 }
1854#endif
1855
1856 if (gotesc) /* abandon command line */
1857 {
1858 vim_free(ccline.cmdbuff);
1859 ccline.cmdbuff = NULL;
1860 if (msg_scrolled == 0)
1861 compute_cmdrow();
1862 MSG("");
1863 redraw_cmdline = TRUE;
1864 }
1865 }
1866
1867 /*
1868 * If the screen was shifted up, redraw the whole screen (later).
1869 * If the line is too long, clear it, so ruler and shown command do
1870 * not get printed in the middle of it.
1871 */
1872 msg_check();
1873 msg_scroll = save_msg_scroll;
1874 redir_off = FALSE;
1875
1876 /* When the command line was typed, no need for a wait-return prompt. */
1877 if (some_key_typed)
1878 need_wait_return = FALSE;
1879
1880 State = save_State;
1881#ifdef USE_IM_CONTROL
1882 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP)
1883 im_save_status(b_im_ptr);
1884 im_set_active(FALSE);
1885#endif
1886#ifdef FEAT_MOUSE
1887 setmouse();
1888#endif
1889#ifdef CURSOR_SHAPE
1890 ui_cursor_shape(); /* may show different cursor shape */
1891#endif
1892
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001893 {
1894 char_u *p = ccline.cmdbuff;
1895
1896 /* Make ccline empty, getcmdline() may try to use it. */
1897 ccline.cmdbuff = NULL;
1898 return p;
1899 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900}
1901
1902#if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO)
1903/*
1904 * Get a command line with a prompt.
1905 * This is prepared to be called recursively from getcmdline() (e.g. by
1906 * f_input() when evaluating an expression from CTRL-R =).
1907 * Returns the command line in allocated memory, or NULL.
1908 */
1909 char_u *
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001910getcmdline_prompt(firstc, prompt, attr, xp_context, xp_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911 int firstc;
1912 char_u *prompt; /* command line prompt */
1913 int attr; /* attributes for prompt */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001914 int xp_context; /* type of expansion */
1915 char_u *xp_arg; /* user-defined expansion argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916{
1917 char_u *s;
1918 struct cmdline_info save_ccline;
1919 int msg_col_save = msg_col;
1920
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001921 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 ccline.cmdprompt = prompt;
1923 ccline.cmdattr = attr;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001924# ifdef FEAT_EVAL
1925 ccline.xp_context = xp_context;
1926 ccline.xp_arg = xp_arg;
1927 ccline.input_fn = (firstc == '@');
1928# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929 s = getcmdline(firstc, 1L, 0);
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001930 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 /* Restore msg_col, the prompt from input() may have changed it. */
1932 msg_col = msg_col_save;
1933
1934 return s;
1935}
1936#endif
1937
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001938/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001939 * Return TRUE when the text must not be changed and we can't switch to
1940 * another window or buffer. Used when editing the command line, evaluating
1941 * 'balloonexpr', etc.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001942 */
1943 int
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001944text_locked()
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001945{
1946#ifdef FEAT_CMDWIN
1947 if (cmdwin_type != 0)
1948 return TRUE;
1949#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001950 return textlock != 0;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001951}
1952
1953/*
1954 * Give an error message for a command that isn't allowed while the cmdline
1955 * window is open or editing the cmdline in another way.
1956 */
1957 void
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001958text_locked_msg()
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001959{
1960#ifdef FEAT_CMDWIN
1961 if (cmdwin_type != 0)
1962 EMSG(_(e_cmdwin));
1963 else
1964#endif
1965 EMSG(_(e_secure));
1966}
1967
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001968#if defined(FEAT_AUTOCMD) || defined(PROTO)
1969/*
1970 * Check if "curbuf_lock" is set and return TRUE when it is and give an error
1971 * message.
1972 */
1973 int
1974curbuf_locked()
1975{
1976 if (curbuf_lock > 0)
1977 {
1978 EMSG(_("E788: Not allowed to edit another buffer now"));
1979 return TRUE;
1980 }
1981 return FALSE;
1982}
1983#endif
1984
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985 static int
1986cmdline_charsize(idx)
1987 int idx;
1988{
1989#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
1990 if (cmdline_star > 0) /* showing '*', always 1 position */
1991 return 1;
1992#endif
1993 return ptr2cells(ccline.cmdbuff + idx);
1994}
1995
1996/*
1997 * Compute the offset of the cursor on the command line for the prompt and
1998 * indent.
1999 */
2000 static void
2001set_cmdspos()
2002{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002003 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 ccline.cmdspos = 1 + ccline.cmdindent;
2005 else
2006 ccline.cmdspos = 0 + ccline.cmdindent;
2007}
2008
2009/*
2010 * Compute the screen position for the cursor on the command line.
2011 */
2012 static void
2013set_cmdspos_cursor()
2014{
2015 int i, m, c;
2016
2017 set_cmdspos();
2018 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002019 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002021 if (m < 0) /* overflow, Columns or Rows at weird value */
2022 m = MAXCOL;
2023 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 else
2025 m = MAXCOL;
2026 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
2027 {
2028 c = cmdline_charsize(i);
2029#ifdef FEAT_MBYTE
2030 /* Count ">" for double-wide multi-byte char that doesn't fit. */
2031 if (has_mbyte)
2032 correct_cmdspos(i, c);
2033#endif
2034 /* If the cmdline doesn't fit, put cursor on last visible char. */
2035 if ((ccline.cmdspos += c) >= m)
2036 {
2037 ccline.cmdpos = i - 1;
2038 ccline.cmdspos -= c;
2039 break;
2040 }
2041#ifdef FEAT_MBYTE
2042 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002043 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044#endif
2045 }
2046}
2047
2048#ifdef FEAT_MBYTE
2049/*
2050 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2051 * character that doesn't fit, so that a ">" must be displayed.
2052 */
2053 static void
2054correct_cmdspos(idx, cells)
2055 int idx;
2056 int cells;
2057{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002058 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2060 && ccline.cmdspos % Columns + cells > Columns)
2061 ccline.cmdspos++;
2062}
2063#endif
2064
2065/*
2066 * Get an Ex command line for the ":" command.
2067 */
2068/* ARGSUSED */
2069 char_u *
2070getexline(c, dummy, indent)
2071 int c; /* normally ':', NUL for ":append" */
2072 void *dummy; /* cookie not used */
2073 int indent; /* indent for inside conditionals */
2074{
2075 /* When executing a register, remove ':' that's in front of each line. */
2076 if (exec_from_reg && vpeekc() == ':')
2077 (void)vgetc();
2078 return getcmdline(c, 1L, indent);
2079}
2080
2081/*
2082 * Get an Ex command line for Ex mode.
2083 * In Ex mode we only use the OS supplied line editing features and no
2084 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002085 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 */
2087/* ARGSUSED */
2088 char_u *
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002089getexmodeline(promptc, dummy, indent)
2090 int promptc; /* normally ':', NUL for ":append" and '?' for
2091 :s prompt */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 void *dummy; /* cookie not used */
2093 int indent; /* indent for inside conditionals */
2094{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002095 garray_T line_ga;
2096 char_u *pend;
2097 int startcol = 0;
Bram Moolenaar76624232007-07-28 12:21:47 +00002098 int c1 = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002099 int escaped = FALSE; /* CTRL-V typed */
2100 int vcol = 0;
2101 char_u *p;
Bram Moolenaar76624232007-07-28 12:21:47 +00002102 int prev_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103
2104 /* Switch cursor on now. This avoids that it happens after the "\n", which
2105 * confuses the system function that computes tabstops. */
2106 cursor_on();
2107
2108 /* always start in column 0; write a newline if necessary */
2109 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002110 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002112 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002114 /* indent that is only displayed, not in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002115 if (p_prompt)
2116 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117 while (indent-- > 0)
2118 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 }
2121
2122 ga_init2(&line_ga, 1, 30);
2123
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002124 /* autoindent for :insert and :append is in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002125 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002126 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002127 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002128 while (indent >= 8)
2129 {
2130 ga_append(&line_ga, TAB);
2131 msg_puts((char_u *)" ");
2132 indent -= 8;
2133 }
2134 while (indent-- > 0)
2135 {
2136 ga_append(&line_ga, ' ');
2137 msg_putchar(' ');
2138 }
2139 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002140 ++no_mapping;
2141 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002142
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143 /*
2144 * Get the line, one character at a time.
2145 */
2146 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002147 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148 {
2149 if (ga_grow(&line_ga, 40) == FAIL)
2150 break;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002151 pend = (char_u *)line_ga.ga_data + line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002153 /* Get one character at a time. Don't use inchar(), it can't handle
2154 * special characters. */
Bram Moolenaar76624232007-07-28 12:21:47 +00002155 prev_char = c1;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002156 c1 = vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002157
2158 /*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002159 * Handle line editing.
2160 * Previously this was left to the system, putting the terminal in
2161 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002163 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002165 msg_putchar('\n');
2166 break;
2167 }
2168
2169 if (!escaped)
2170 {
2171 /* CR typed means "enter", which is NL */
2172 if (c1 == '\r')
2173 c1 = '\n';
2174
2175 if (c1 == BS || c1 == K_BS
2176 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002178 if (line_ga.ga_len > 0)
2179 {
2180 --line_ga.ga_len;
2181 goto redraw;
2182 }
2183 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184 }
2185
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002186 if (c1 == Ctrl_U)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002188 msg_col = startcol;
2189 msg_clr_eos();
2190 line_ga.ga_len = 0;
2191 continue;
2192 }
2193
2194 if (c1 == Ctrl_T)
2195 {
2196 p = (char_u *)line_ga.ga_data;
2197 p[line_ga.ga_len] = NUL;
2198 indent = get_indent_str(p, 8);
2199 indent += curbuf->b_p_sw - indent % curbuf->b_p_sw;
2200add_indent:
2201 while (get_indent_str(p, 8) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002203 char_u *s = skipwhite(p);
2204
2205 ga_grow(&line_ga, 1);
2206 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2207 *s = ' ';
2208 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002210redraw:
2211 /* redraw the line */
2212 msg_col = startcol;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002213 vcol = 0;
2214 for (p = (char_u *)line_ga.ga_data;
2215 p < (char_u *)line_ga.ga_data + line_ga.ga_len; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002217 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002219 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002221 msg_putchar(' ');
2222 } while (++vcol % 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002224 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002226 msg_outtrans_len(p, 1);
2227 vcol += char2cells(*p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 }
2229 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002230 msg_clr_eos();
Bram Moolenaar76624232007-07-28 12:21:47 +00002231 windgoto(msg_row, msg_col);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002232 continue;
2233 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002235 if (c1 == Ctrl_D)
2236 {
2237 /* Delete one shiftwidth. */
2238 p = (char_u *)line_ga.ga_data;
2239 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002241 if (prev_char == '^')
2242 ex_keep_indent = TRUE;
2243 indent = 0;
2244 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245 }
2246 else
2247 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002248 p[line_ga.ga_len] = NUL;
2249 indent = get_indent_str(p, 8);
2250 --indent;
2251 indent -= indent % curbuf->b_p_sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002253 while (get_indent_str(p, 8) > indent)
2254 {
2255 char_u *s = skipwhite(p);
2256
2257 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2258 --line_ga.ga_len;
2259 }
2260 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002262
2263 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2264 {
2265 escaped = TRUE;
2266 continue;
2267 }
2268
2269 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
2270 if (IS_SPECIAL(c1))
2271 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002273
2274 if (IS_SPECIAL(c1))
2275 c1 = '?';
2276 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002277 if (c1 == '\n')
2278 msg_putchar('\n');
2279 else if (c1 == TAB)
2280 {
2281 /* Don't use chartabsize(), 'ts' can be different */
2282 do
2283 {
2284 msg_putchar(' ');
2285 } while (++vcol % 8);
2286 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002289 msg_outtrans_len(
2290 ((char_u *)line_ga.ga_data) + line_ga.ga_len, 1);
2291 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002293 ++line_ga.ga_len;
2294 escaped = FALSE;
2295
2296 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002297 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002298
2299 /* we are done when a NL is entered, but not when it comes after a
2300 * backslash */
2301 if (line_ga.ga_len > 0 && pend[-1] == '\n'
2302 && (line_ga.ga_len <= 1 || pend[-2] != '\\'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 --line_ga.ga_len;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002305 --pend;
2306 *pend = NUL;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002307 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 }
2309 }
2310
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002311 --no_mapping;
2312 --allow_keys;
2313
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314 /* make following messages go to the next line */
2315 msg_didout = FALSE;
2316 msg_col = 0;
2317 if (msg_row < Rows - 1)
2318 ++msg_row;
2319 emsg_on_display = FALSE; /* don't want ui_delay() */
2320
2321 if (got_int)
2322 ga_clear(&line_ga);
2323
2324 return (char_u *)line_ga.ga_data;
2325}
2326
Bram Moolenaare344bea2005-09-01 20:46:49 +00002327# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
2328 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329/*
2330 * Return TRUE if ccline.overstrike is on.
2331 */
2332 int
2333cmdline_overstrike()
2334{
2335 return ccline.overstrike;
2336}
2337
2338/*
2339 * Return TRUE if the cursor is at the end of the cmdline.
2340 */
2341 int
2342cmdline_at_end()
2343{
2344 return (ccline.cmdpos >= ccline.cmdlen);
2345}
2346#endif
2347
Bram Moolenaar9372a112005-12-06 19:59:18 +00002348#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349/*
2350 * Return the virtual column number at the current cursor position.
2351 * This is used by the IM code to obtain the start of the preedit string.
2352 */
2353 colnr_T
2354cmdline_getvcol_cursor()
2355{
2356 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
2357 return MAXCOL;
2358
2359# ifdef FEAT_MBYTE
2360 if (has_mbyte)
2361 {
2362 colnr_T col;
2363 int i = 0;
2364
2365 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002366 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367
2368 return col;
2369 }
2370 else
2371# endif
2372 return ccline.cmdpos;
2373}
2374#endif
2375
2376#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2377/*
2378 * If part of the command line is an IM preedit string, redraw it with
2379 * IM feedback attributes. The cursor position is restored after drawing.
2380 */
2381 static void
2382redrawcmd_preedit()
2383{
2384 if ((State & CMDLINE)
2385 && xic != NULL
Bram Moolenaar494c82a2006-09-14 08:25:49 +00002386 /* && im_get_status() doesn't work when using SCIM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387 && !p_imdisable
2388 && im_is_preediting())
2389 {
2390 int cmdpos = 0;
2391 int cmdspos;
2392 int old_row;
2393 int old_col;
2394 colnr_T col;
2395
2396 old_row = msg_row;
2397 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002398 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399
2400# ifdef FEAT_MBYTE
2401 if (has_mbyte)
2402 {
2403 for (col = 0; col < preedit_start_col
2404 && cmdpos < ccline.cmdlen; ++col)
2405 {
2406 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002407 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 }
2409 }
2410 else
2411# endif
2412 {
2413 cmdspos += preedit_start_col;
2414 cmdpos += preedit_start_col;
2415 }
2416
2417 msg_row = cmdline_row + (cmdspos / (int)Columns);
2418 msg_col = cmdspos % (int)Columns;
2419 if (msg_row >= Rows)
2420 msg_row = Rows - 1;
2421
2422 for (col = 0; cmdpos < ccline.cmdlen; ++col)
2423 {
2424 int char_len;
2425 int char_attr;
2426
2427 char_attr = im_get_feedback_attr(col);
2428 if (char_attr < 0)
2429 break; /* end of preedit string */
2430
2431# ifdef FEAT_MBYTE
2432 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002433 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 else
2435# endif
2436 char_len = 1;
2437
2438 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
2439 cmdpos += char_len;
2440 }
2441
2442 msg_row = old_row;
2443 msg_col = old_col;
2444 }
2445}
2446#endif /* FEAT_XIM && FEAT_GUI_GTK */
2447
2448/*
2449 * Allocate a new command line buffer.
2450 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
2451 * Returns the new value of ccline.cmdbuff and ccline.cmdbufflen.
2452 */
2453 static void
2454alloc_cmdbuff(len)
2455 int len;
2456{
2457 /*
2458 * give some extra space to avoid having to allocate all the time
2459 */
2460 if (len < 80)
2461 len = 100;
2462 else
2463 len += 20;
2464
2465 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */
2466 ccline.cmdbufflen = len;
2467}
2468
2469/*
2470 * Re-allocate the command line to length len + something extra.
2471 * return FAIL for failure, OK otherwise
2472 */
2473 static int
2474realloc_cmdbuff(len)
2475 int len;
2476{
2477 char_u *p;
2478
2479 p = ccline.cmdbuff;
2480 alloc_cmdbuff(len); /* will get some more */
2481 if (ccline.cmdbuff == NULL) /* out of memory */
2482 {
2483 ccline.cmdbuff = p; /* keep the old one */
2484 return FAIL;
2485 }
2486 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen + 1);
2487 vim_free(p);
2488 return OK;
2489}
2490
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002491#if defined(FEAT_ARABIC) || defined(PROTO)
2492static char_u *arshape_buf = NULL;
2493
2494# if defined(EXITFREE) || defined(PROTO)
2495 void
2496free_cmdline_buf()
2497{
2498 vim_free(arshape_buf);
2499}
2500# endif
2501#endif
2502
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503/*
2504 * Draw part of the cmdline at the current cursor position. But draw stars
2505 * when cmdline_star is TRUE.
2506 */
2507 static void
2508draw_cmdline(start, len)
2509 int start;
2510 int len;
2511{
2512#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2513 int i;
2514
2515 if (cmdline_star > 0)
2516 for (i = 0; i < len; ++i)
2517 {
2518 msg_putchar('*');
2519# ifdef FEAT_MBYTE
2520 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002521 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522# endif
2523 }
2524 else
2525#endif
2526#ifdef FEAT_ARABIC
2527 if (p_arshape && !p_tbidi && enc_utf8 && len > 0)
2528 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002529 static int buflen = 0;
2530 char_u *p;
2531 int j;
2532 int newlen = 0;
2533 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00002534 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 int prev_c = 0;
2536 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002537 int u8c;
2538 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540
2541 /*
2542 * Do arabic shaping into a temporary buffer. This is very
2543 * inefficient!
2544 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002545 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 {
2547 /* Re-allocate the buffer. We keep it around to avoid a lot of
2548 * alloc()/free() calls. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002549 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002550 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002551 arshape_buf = alloc(buflen);
2552 if (arshape_buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553 return; /* out of memory */
2554 }
2555
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002556 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
2557 {
2558 /* Prepend a space to draw the leading composing char on. */
2559 arshape_buf[0] = ' ';
2560 newlen = 1;
2561 }
2562
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563 for (j = start; j < start + len; j += mb_l)
2564 {
2565 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002566 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002567 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568 if (ARABIC_CHAR(u8c))
2569 {
2570 /* Do Arabic shaping. */
2571 if (cmdmsg_rl)
2572 {
2573 /* displaying from right to left */
2574 pc = prev_c;
2575 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002576 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 if (j + mb_l >= start + len)
2578 nc = NUL;
2579 else
2580 nc = utf_ptr2char(p + mb_l);
2581 }
2582 else
2583 {
2584 /* displaying from left to right */
2585 if (j + mb_l >= start + len)
2586 pc = NUL;
2587 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002588 {
2589 int pcc[MAX_MCO];
2590
2591 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002593 pc1 = pcc[0];
2594 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 nc = prev_c;
2596 }
2597 prev_c = u8c;
2598
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002599 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002601 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002602 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002604 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
2605 if (u8cc[1] != 0)
2606 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002607 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 }
2609 }
2610 else
2611 {
2612 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002613 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 newlen += mb_l;
2615 }
2616 }
2617
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002618 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 }
2620 else
2621#endif
2622 msg_outtrans_len(ccline.cmdbuff + start, len);
2623}
2624
2625/*
2626 * Put a character on the command line. Shifts the following text to the
2627 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
2628 * "c" must be printable (fit in one display cell)!
2629 */
2630 void
2631putcmdline(c, shift)
2632 int c;
2633 int shift;
2634{
2635 if (cmd_silent)
2636 return;
2637 msg_no_more = TRUE;
2638 msg_putchar(c);
2639 if (shift)
2640 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2641 msg_no_more = FALSE;
2642 cursorcmd();
2643}
2644
2645/*
2646 * Undo a putcmdline(c, FALSE).
2647 */
2648 void
2649unputcmdline()
2650{
2651 if (cmd_silent)
2652 return;
2653 msg_no_more = TRUE;
2654 if (ccline.cmdlen == ccline.cmdpos)
2655 msg_putchar(' ');
2656 else
2657 draw_cmdline(ccline.cmdpos, 1);
2658 msg_no_more = FALSE;
2659 cursorcmd();
2660}
2661
2662/*
2663 * Put the given string, of the given length, onto the command line.
2664 * If len is -1, then STRLEN() is used to calculate the length.
2665 * If 'redraw' is TRUE then the new part of the command line, and the remaining
2666 * part will be redrawn, otherwise it will not. If this function is called
2667 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
2668 * called afterwards.
2669 */
2670 int
2671put_on_cmdline(str, len, redraw)
2672 char_u *str;
2673 int len;
2674 int redraw;
2675{
2676 int retval;
2677 int i;
2678 int m;
2679 int c;
2680
2681 if (len < 0)
2682 len = (int)STRLEN(str);
2683
2684 /* Check if ccline.cmdbuff needs to be longer */
2685 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
2686 retval = realloc_cmdbuff(ccline.cmdlen + len);
2687 else
2688 retval = OK;
2689 if (retval == OK)
2690 {
2691 if (!ccline.overstrike)
2692 {
2693 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2694 ccline.cmdbuff + ccline.cmdpos,
2695 (size_t)(ccline.cmdlen - ccline.cmdpos));
2696 ccline.cmdlen += len;
2697 }
2698 else
2699 {
2700#ifdef FEAT_MBYTE
2701 if (has_mbyte)
2702 {
2703 /* Count nr of characters in the new string. */
2704 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002705 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706 ++m;
2707 /* Count nr of bytes in cmdline that are overwritten by these
2708 * characters. */
2709 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002710 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711 --m;
2712 if (i < ccline.cmdlen)
2713 {
2714 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2715 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
2716 ccline.cmdlen += ccline.cmdpos + len - i;
2717 }
2718 else
2719 ccline.cmdlen = ccline.cmdpos + len;
2720 }
2721 else
2722#endif
2723 if (ccline.cmdpos + len > ccline.cmdlen)
2724 ccline.cmdlen = ccline.cmdpos + len;
2725 }
2726 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
2727 ccline.cmdbuff[ccline.cmdlen] = NUL;
2728
2729#ifdef FEAT_MBYTE
2730 if (enc_utf8)
2731 {
2732 /* When the inserted text starts with a composing character,
2733 * backup to the character before it. There could be two of them.
2734 */
2735 i = 0;
2736 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
2737 while (ccline.cmdpos > 0 && utf_iscomposing(c))
2738 {
2739 i = (*mb_head_off)(ccline.cmdbuff,
2740 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
2741 ccline.cmdpos -= i;
2742 len += i;
2743 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
2744 }
2745# ifdef FEAT_ARABIC
2746 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
2747 {
2748 /* Check the previous character for Arabic combining pair. */
2749 i = (*mb_head_off)(ccline.cmdbuff,
2750 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
2751 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
2752 + ccline.cmdpos - i), c))
2753 {
2754 ccline.cmdpos -= i;
2755 len += i;
2756 }
2757 else
2758 i = 0;
2759 }
2760# endif
2761 if (i != 0)
2762 {
2763 /* Also backup the cursor position. */
2764 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
2765 ccline.cmdspos -= i;
2766 msg_col -= i;
2767 if (msg_col < 0)
2768 {
2769 msg_col += Columns;
2770 --msg_row;
2771 }
2772 }
2773 }
2774#endif
2775
2776 if (redraw && !cmd_silent)
2777 {
2778 msg_no_more = TRUE;
2779 i = cmdline_row;
2780 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2781 /* Avoid clearing the rest of the line too often. */
2782 if (cmdline_row != i || ccline.overstrike)
2783 msg_clr_eos();
2784 msg_no_more = FALSE;
2785 }
2786#ifdef FEAT_FKMAP
2787 /*
2788 * If we are in Farsi command mode, the character input must be in
2789 * Insert mode. So do not advance the cmdpos.
2790 */
2791 if (!cmd_fkmap)
2792#endif
2793 {
2794 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002795 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002797 if (m < 0) /* overflow, Columns or Rows at weird value */
2798 m = MAXCOL;
2799 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 else
2801 m = MAXCOL;
2802 for (i = 0; i < len; ++i)
2803 {
2804 c = cmdline_charsize(ccline.cmdpos);
2805#ifdef FEAT_MBYTE
2806 /* count ">" for a double-wide char that doesn't fit. */
2807 if (has_mbyte)
2808 correct_cmdspos(ccline.cmdpos, c);
2809#endif
2810 /* Stop cursor at the end of the screen */
2811 if (ccline.cmdspos + c >= m)
2812 break;
2813 ccline.cmdspos += c;
2814#ifdef FEAT_MBYTE
2815 if (has_mbyte)
2816 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002817 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818 if (c > len - i - 1)
2819 c = len - i - 1;
2820 ccline.cmdpos += c;
2821 i += c;
2822 }
2823#endif
2824 ++ccline.cmdpos;
2825 }
2826 }
2827 }
2828 if (redraw)
2829 msg_check();
2830 return retval;
2831}
2832
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002833static struct cmdline_info prev_ccline;
2834static int prev_ccline_used = FALSE;
2835
2836/*
2837 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
2838 * and overwrite it. But get_cmdline_str() may need it, thus make it
2839 * available globally in prev_ccline.
2840 */
2841 static void
2842save_cmdline(ccp)
2843 struct cmdline_info *ccp;
2844{
2845 if (!prev_ccline_used)
2846 {
2847 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info));
2848 prev_ccline_used = TRUE;
2849 }
2850 *ccp = prev_ccline;
2851 prev_ccline = ccline;
2852 ccline.cmdbuff = NULL;
2853 ccline.cmdprompt = NULL;
2854}
2855
2856/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00002857 * Restore ccline after it has been saved with save_cmdline().
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002858 */
2859 static void
2860restore_cmdline(ccp)
2861 struct cmdline_info *ccp;
2862{
2863 ccline = prev_ccline;
2864 prev_ccline = *ccp;
2865}
2866
Bram Moolenaar5a305422006-04-28 22:38:25 +00002867#if defined(FEAT_EVAL) || defined(PROTO)
2868/*
2869 * Save the command line into allocated memory. Returns a pointer to be
2870 * passed to restore_cmdline_alloc() later.
2871 * Returns NULL when failed.
2872 */
2873 char_u *
2874save_cmdline_alloc()
2875{
2876 struct cmdline_info *p;
2877
2878 p = (struct cmdline_info *)alloc((unsigned)sizeof(struct cmdline_info));
2879 if (p != NULL)
2880 save_cmdline(p);
2881 return (char_u *)p;
2882}
2883
2884/*
2885 * Restore the command line from the return value of save_cmdline_alloc().
2886 */
2887 void
2888restore_cmdline_alloc(p)
2889 char_u *p;
2890{
2891 if (p != NULL)
2892 {
2893 restore_cmdline((struct cmdline_info *)p);
2894 vim_free(p);
2895 }
2896}
2897#endif
2898
Bram Moolenaar8299df92004-07-10 09:47:34 +00002899/*
2900 * paste a yank register into the command line.
2901 * used by CTRL-R command in command-line mode
2902 * insert_reg() can't be used here, because special characters from the
2903 * register contents will be interpreted as commands.
2904 *
2905 * return FAIL for failure, OK otherwise
2906 */
2907 static int
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00002908cmdline_paste(regname, literally, remcr)
Bram Moolenaar8299df92004-07-10 09:47:34 +00002909 int regname;
2910 int literally; /* Insert text literally instead of "as typed" */
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00002911 int remcr; /* remove trailing CR */
Bram Moolenaar8299df92004-07-10 09:47:34 +00002912{
2913 long i;
2914 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002915 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00002916 int allocated;
2917 struct cmdline_info save_ccline;
2918
2919 /* check for valid regname; also accept special characters for CTRL-R in
2920 * the command line */
2921 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
2922 && regname != Ctrl_A && !valid_yank_reg(regname, FALSE))
2923 return FAIL;
2924
2925 /* A register containing CTRL-R can cause an endless loop. Allow using
2926 * CTRL-C to break the loop. */
2927 line_breakcheck();
2928 if (got_int)
2929 return FAIL;
2930
2931#ifdef FEAT_CLIPBOARD
2932 regname = may_get_selection(regname);
2933#endif
2934
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002935 /* Need to save and restore ccline. And set "textlock" to avoid nasty
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002936 * things like going to another buffer when evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002937 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002938 ++textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00002939 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002940 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002941 restore_cmdline(&save_ccline);
Bram Moolenaar8299df92004-07-10 09:47:34 +00002942
2943 if (i)
2944 {
2945 /* Got the value of a special register in "arg". */
2946 if (arg == NULL)
2947 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002948
2949 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
2950 * part of the word. */
2951 p = arg;
2952 if (p_is && regname == Ctrl_W)
2953 {
2954 char_u *w;
2955 int len;
2956
2957 /* Locate start of last word in the cmd buffer. */
2958 for (w = ccline.cmdbuff + ccline.cmdlen; w > ccline.cmdbuff; )
2959 {
2960#ifdef FEAT_MBYTE
2961 if (has_mbyte)
2962 {
2963 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
2964 if (!vim_iswordc(mb_ptr2char(w - len)))
2965 break;
2966 w -= len;
2967 }
2968 else
2969#endif
2970 {
2971 if (!vim_iswordc(w[-1]))
2972 break;
2973 --w;
2974 }
2975 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002976 len = (int)((ccline.cmdbuff + ccline.cmdlen) - w);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002977 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
2978 p += len;
2979 }
2980
2981 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00002982 if (allocated)
2983 vim_free(arg);
2984 return OK;
2985 }
2986
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00002987 return cmdline_paste_reg(regname, literally, remcr);
Bram Moolenaar8299df92004-07-10 09:47:34 +00002988}
2989
2990/*
2991 * Put a string on the command line.
2992 * When "literally" is TRUE, insert literally.
2993 * When "literally" is FALSE, insert as typed, but don't leave the command
2994 * line.
2995 */
2996 void
2997cmdline_paste_str(s, literally)
2998 char_u *s;
2999 int literally;
3000{
3001 int c, cv;
3002
3003 if (literally)
3004 put_on_cmdline(s, -1, TRUE);
3005 else
3006 while (*s != NUL)
3007 {
3008 cv = *s;
3009 if (cv == Ctrl_V && s[1])
3010 ++s;
3011#ifdef FEAT_MBYTE
3012 if (has_mbyte)
3013 {
3014 c = mb_ptr2char(s);
3015 s += mb_char2len(c);
3016 }
3017 else
3018#endif
3019 c = *s++;
3020 if (cv == Ctrl_V || c == ESC || c == Ctrl_C || c == CAR || c == NL
3021#ifdef UNIX
3022 || c == intr_char
3023#endif
3024 || (c == Ctrl_BSL && *s == Ctrl_N))
3025 stuffcharReadbuff(Ctrl_V);
3026 stuffcharReadbuff(c);
3027 }
3028}
3029
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030#ifdef FEAT_WILDMENU
3031/*
3032 * Delete characters on the command line, from "from" to the current
3033 * position.
3034 */
3035 static void
3036cmdline_del(from)
3037 int from;
3038{
3039 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
3040 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3041 ccline.cmdlen -= ccline.cmdpos - from;
3042 ccline.cmdpos = from;
3043}
3044#endif
3045
3046/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003047 * this function is called when the screen size changes and with incremental
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 * search
3049 */
3050 void
3051redrawcmdline()
3052{
3053 if (cmd_silent)
3054 return;
3055 need_wait_return = FALSE;
3056 compute_cmdrow();
3057 redrawcmd();
3058 cursorcmd();
3059}
3060
3061 static void
3062redrawcmdprompt()
3063{
3064 int i;
3065
3066 if (cmd_silent)
3067 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003068 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069 msg_putchar(ccline.cmdfirstc);
3070 if (ccline.cmdprompt != NULL)
3071 {
3072 msg_puts_attr(ccline.cmdprompt, ccline.cmdattr);
3073 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
3074 /* do the reverse of set_cmdspos() */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003075 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076 --ccline.cmdindent;
3077 }
3078 else
3079 for (i = ccline.cmdindent; i > 0; --i)
3080 msg_putchar(' ');
3081}
3082
3083/*
3084 * Redraw what is currently on the command line.
3085 */
3086 void
3087redrawcmd()
3088{
3089 if (cmd_silent)
3090 return;
3091
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003092 /* when 'incsearch' is set there may be no command line while redrawing */
3093 if (ccline.cmdbuff == NULL)
3094 {
3095 windgoto(cmdline_row, 0);
3096 msg_clr_eos();
3097 return;
3098 }
3099
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100 msg_start();
3101 redrawcmdprompt();
3102
3103 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
3104 msg_no_more = TRUE;
3105 draw_cmdline(0, ccline.cmdlen);
3106 msg_clr_eos();
3107 msg_no_more = FALSE;
3108
3109 set_cmdspos_cursor();
3110
3111 /*
3112 * An emsg() before may have set msg_scroll. This is used in normal mode,
3113 * in cmdline mode we can reset them now.
3114 */
3115 msg_scroll = FALSE; /* next message overwrites cmdline */
3116
3117 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
3118 * in cmdline mode */
3119 skip_redraw = FALSE;
3120}
3121
3122 void
3123compute_cmdrow()
3124{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003125 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 cmdline_row = Rows - 1;
3127 else
3128 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
3129 + W_STATUS_HEIGHT(lastwin);
3130}
3131
3132 static void
3133cursorcmd()
3134{
3135 if (cmd_silent)
3136 return;
3137
3138#ifdef FEAT_RIGHTLEFT
3139 if (cmdmsg_rl)
3140 {
3141 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3142 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3143 if (msg_row <= 0)
3144 msg_row = Rows - 1;
3145 }
3146 else
3147#endif
3148 {
3149 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3150 msg_col = ccline.cmdspos % (int)Columns;
3151 if (msg_row >= Rows)
3152 msg_row = Rows - 1;
3153 }
3154
3155 windgoto(msg_row, msg_col);
3156#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
3157 redrawcmd_preedit();
3158#endif
3159#ifdef MCH_CURSOR_SHAPE
3160 mch_update_cursor();
3161#endif
3162}
3163
3164 void
3165gotocmdline(clr)
3166 int clr;
3167{
3168 msg_start();
3169#ifdef FEAT_RIGHTLEFT
3170 if (cmdmsg_rl)
3171 msg_col = Columns - 1;
3172 else
3173#endif
3174 msg_col = 0; /* always start in column 0 */
3175 if (clr) /* clear the bottom line(s) */
3176 msg_clr_eos(); /* will reset clear_cmdline */
3177 windgoto(cmdline_row, 0);
3178}
3179
3180/*
3181 * Check the word in front of the cursor for an abbreviation.
3182 * Called when the non-id character "c" has been entered.
3183 * When an abbreviation is recognized it is removed from the text with
3184 * backspaces and the replacement string is inserted, followed by "c".
3185 */
3186 static int
3187ccheck_abbr(c)
3188 int c;
3189{
3190 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
3191 return FALSE;
3192
3193 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, 0);
3194}
3195
3196/*
3197 * Return FAIL if this is not an appropriate context in which to do
3198 * completion of anything, return OK if it is (even if there are no matches).
3199 * For the caller, this means that the character is just passed through like a
3200 * normal character (instead of being expanded). This allows :s/^I^D etc.
3201 */
3202 static int
3203nextwild(xp, type, options)
3204 expand_T *xp;
3205 int type;
3206 int options; /* extra options for ExpandOne() */
3207{
3208 int i, j;
3209 char_u *p1;
3210 char_u *p2;
3211 int oldlen;
3212 int difflen;
3213 int v;
3214
3215 if (xp->xp_numfiles == -1)
3216 {
3217 set_expand_context(xp);
3218 cmd_showtail = expand_showtail(xp);
3219 }
3220
3221 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
3222 {
3223 beep_flush();
3224 return OK; /* Something illegal on command line */
3225 }
3226 if (xp->xp_context == EXPAND_NOTHING)
3227 {
3228 /* Caller can use the character as a normal char instead */
3229 return FAIL;
3230 }
3231
3232 MSG_PUTS("..."); /* show that we are busy */
3233 out_flush();
3234
3235 i = (int)(xp->xp_pattern - ccline.cmdbuff);
3236 oldlen = ccline.cmdpos - i;
3237
3238 if (type == WILD_NEXT || type == WILD_PREV)
3239 {
3240 /*
3241 * Get next/previous match for a previous expanded pattern.
3242 */
3243 p2 = ExpandOne(xp, NULL, NULL, 0, type);
3244 }
3245 else
3246 {
3247 /*
3248 * Translate string into pattern and expand it.
3249 */
3250 if ((p1 = addstar(&ccline.cmdbuff[i], oldlen, xp->xp_context)) == NULL)
3251 p2 = NULL;
3252 else
3253 {
3254 p2 = ExpandOne(xp, p1, vim_strnsave(&ccline.cmdbuff[i], oldlen),
3255 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT|WILD_ESCAPE
3256 |options, type);
3257 vim_free(p1);
3258 /* longest match: make sure it is not shorter (happens with :help */
3259 if (p2 != NULL && type == WILD_LONGEST)
3260 {
3261 for (j = 0; j < oldlen; ++j)
3262 if (ccline.cmdbuff[i + j] == '*'
3263 || ccline.cmdbuff[i + j] == '?')
3264 break;
3265 if ((int)STRLEN(p2) < j)
3266 {
3267 vim_free(p2);
3268 p2 = NULL;
3269 }
3270 }
3271 }
3272 }
3273
3274 if (p2 != NULL && !got_int)
3275 {
3276 difflen = (int)STRLEN(p2) - oldlen;
3277 if (ccline.cmdlen + difflen > ccline.cmdbufflen - 4)
3278 {
3279 v = realloc_cmdbuff(ccline.cmdlen + difflen);
3280 xp->xp_pattern = ccline.cmdbuff + i;
3281 }
3282 else
3283 v = OK;
3284 if (v == OK)
3285 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003286 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen],
3287 &ccline.cmdbuff[ccline.cmdpos],
3288 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3289 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290 ccline.cmdlen += difflen;
3291 ccline.cmdpos += difflen;
3292 }
3293 }
3294 vim_free(p2);
3295
3296 redrawcmd();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003297 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298
3299 /* When expanding a ":map" command and no matches are found, assume that
3300 * the key is supposed to be inserted literally */
3301 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL)
3302 return FAIL;
3303
3304 if (xp->xp_numfiles <= 0 && p2 == NULL)
3305 beep_flush();
3306 else if (xp->xp_numfiles == 1)
3307 /* free expanded pattern */
3308 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
3309
3310 return OK;
3311}
3312
3313/*
3314 * Do wildcard expansion on the string 'str'.
3315 * Chars that should not be expanded must be preceded with a backslash.
3316 * Return a pointer to alloced memory containing the new string.
3317 * Return NULL for failure.
3318 *
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003319 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode"
3320 * is WILD_EXPAND_FREE or WILD_ALL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 *
3322 * mode = WILD_FREE: just free previously expanded matches
3323 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches
3324 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches
3325 * mode = WILD_NEXT: use next match in multiple match, wrap to first
3326 * mode = WILD_PREV: use previous match in multiple match, wrap to first
3327 * mode = WILD_ALL: return all matches concatenated
3328 * mode = WILD_LONGEST: return longest matched part
3329 *
3330 * options = WILD_LIST_NOTFOUND: list entries without a match
3331 * options = WILD_HOME_REPLACE: do home_replace() for buffer names
3332 * options = WILD_USE_NL: Use '\n' for WILD_ALL
3333 * options = WILD_NO_BEEP: Don't beep for multiple matches
3334 * options = WILD_ADD_SLASH: add a slash after directory names
3335 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries
3336 * options = WILD_SILENT: don't print warning messages
3337 * options = WILD_ESCAPE: put backslash before special chars
3338 *
3339 * The variables xp->xp_context and xp->xp_backslash must have been set!
3340 */
3341 char_u *
3342ExpandOne(xp, str, orig, options, mode)
3343 expand_T *xp;
3344 char_u *str;
3345 char_u *orig; /* allocated copy of original of expanded string */
3346 int options;
3347 int mode;
3348{
3349 char_u *ss = NULL;
3350 static int findex;
3351 static char_u *orig_save = NULL; /* kept value of orig */
3352 int i;
3353 long_u len;
3354 int non_suf_match; /* number without matching suffix */
3355
3356 /*
3357 * first handle the case of using an old match
3358 */
3359 if (mode == WILD_NEXT || mode == WILD_PREV)
3360 {
3361 if (xp->xp_numfiles > 0)
3362 {
3363 if (mode == WILD_PREV)
3364 {
3365 if (findex == -1)
3366 findex = xp->xp_numfiles;
3367 --findex;
3368 }
3369 else /* mode == WILD_NEXT */
3370 ++findex;
3371
3372 /*
3373 * When wrapping around, return the original string, set findex to
3374 * -1.
3375 */
3376 if (findex < 0)
3377 {
3378 if (orig_save == NULL)
3379 findex = xp->xp_numfiles - 1;
3380 else
3381 findex = -1;
3382 }
3383 if (findex >= xp->xp_numfiles)
3384 {
3385 if (orig_save == NULL)
3386 findex = 0;
3387 else
3388 findex = -1;
3389 }
3390#ifdef FEAT_WILDMENU
3391 if (p_wmnu)
3392 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files,
3393 findex, cmd_showtail);
3394#endif
3395 if (findex == -1)
3396 return vim_strsave(orig_save);
3397 return vim_strsave(xp->xp_files[findex]);
3398 }
3399 else
3400 return NULL;
3401 }
3402
3403/* free old names */
3404 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST)
3405 {
3406 FreeWild(xp->xp_numfiles, xp->xp_files);
3407 xp->xp_numfiles = -1;
3408 vim_free(orig_save);
3409 orig_save = NULL;
3410 }
3411 findex = 0;
3412
3413 if (mode == WILD_FREE) /* only release file name */
3414 return NULL;
3415
3416 if (xp->xp_numfiles == -1)
3417 {
3418 vim_free(orig_save);
3419 orig_save = orig;
3420
3421 /*
3422 * Do the expansion.
3423 */
3424 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files,
3425 options) == FAIL)
3426 {
3427#ifdef FNAME_ILLEGAL
3428 /* Illegal file name has been silently skipped. But when there
3429 * are wildcards, the real problem is that there was no match,
3430 * causing the pattern to be added, which has illegal characters.
3431 */
3432 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND))
3433 EMSG2(_(e_nomatch2), str);
3434#endif
3435 }
3436 else if (xp->xp_numfiles == 0)
3437 {
3438 if (!(options & WILD_SILENT))
3439 EMSG2(_(e_nomatch2), str);
3440 }
3441 else
3442 {
3443 /* Escape the matches for use on the command line. */
3444 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options);
3445
3446 /*
3447 * Check for matching suffixes in file names.
3448 */
3449 if (mode != WILD_ALL && mode != WILD_LONGEST)
3450 {
3451 if (xp->xp_numfiles)
3452 non_suf_match = xp->xp_numfiles;
3453 else
3454 non_suf_match = 1;
3455 if ((xp->xp_context == EXPAND_FILES
3456 || xp->xp_context == EXPAND_DIRECTORIES)
3457 && xp->xp_numfiles > 1)
3458 {
3459 /*
3460 * More than one match; check suffix.
3461 * The files will have been sorted on matching suffix in
3462 * expand_wildcards, only need to check the first two.
3463 */
3464 non_suf_match = 0;
3465 for (i = 0; i < 2; ++i)
3466 if (match_suffix(xp->xp_files[i]))
3467 ++non_suf_match;
3468 }
3469 if (non_suf_match != 1)
3470 {
3471 /* Can we ever get here unless it's while expanding
3472 * interactively? If not, we can get rid of this all
3473 * together. Don't really want to wait for this message
3474 * (and possibly have to hit return to continue!).
3475 */
3476 if (!(options & WILD_SILENT))
3477 EMSG(_(e_toomany));
3478 else if (!(options & WILD_NO_BEEP))
3479 beep_flush();
3480 }
3481 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE))
3482 ss = vim_strsave(xp->xp_files[0]);
3483 }
3484 }
3485 }
3486
3487 /* Find longest common part */
3488 if (mode == WILD_LONGEST && xp->xp_numfiles > 0)
3489 {
3490 for (len = 0; xp->xp_files[0][len]; ++len)
3491 {
3492 for (i = 0; i < xp->xp_numfiles; ++i)
3493 {
3494#ifdef CASE_INSENSITIVE_FILENAME
3495 if (xp->xp_context == EXPAND_DIRECTORIES
3496 || xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003497 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 || xp->xp_context == EXPAND_BUFFERS)
3499 {
3500 if (TOLOWER_LOC(xp->xp_files[i][len]) !=
3501 TOLOWER_LOC(xp->xp_files[0][len]))
3502 break;
3503 }
3504 else
3505#endif
3506 if (xp->xp_files[i][len] != xp->xp_files[0][len])
3507 break;
3508 }
3509 if (i < xp->xp_numfiles)
3510 {
3511 if (!(options & WILD_NO_BEEP))
3512 vim_beep();
3513 break;
3514 }
3515 }
3516 ss = alloc((unsigned)len + 1);
3517 if (ss)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003518 vim_strncpy(ss, xp->xp_files[0], (size_t)len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519 findex = -1; /* next p_wc gets first one */
3520 }
3521
3522 /* Concatenate all matching names */
3523 if (mode == WILD_ALL && xp->xp_numfiles > 0)
3524 {
3525 len = 0;
3526 for (i = 0; i < xp->xp_numfiles; ++i)
3527 len += (long_u)STRLEN(xp->xp_files[i]) + 1;
3528 ss = lalloc(len, TRUE);
3529 if (ss != NULL)
3530 {
3531 *ss = NUL;
3532 for (i = 0; i < xp->xp_numfiles; ++i)
3533 {
3534 STRCAT(ss, xp->xp_files[i]);
3535 if (i != xp->xp_numfiles - 1)
3536 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " ");
3537 }
3538 }
3539 }
3540
3541 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL)
3542 ExpandCleanup(xp);
3543
3544 return ss;
3545}
3546
3547/*
3548 * Prepare an expand structure for use.
3549 */
3550 void
3551ExpandInit(xp)
3552 expand_T *xp;
3553{
3554 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003555#ifndef BACKSLASH_IN_FILENAME
3556 xp->xp_shell = FALSE;
3557#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 xp->xp_numfiles = -1;
3559 xp->xp_files = NULL;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003560#if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
3561 xp->xp_arg = NULL;
3562#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563}
3564
3565/*
3566 * Cleanup an expand structure after use.
3567 */
3568 void
3569ExpandCleanup(xp)
3570 expand_T *xp;
3571{
3572 if (xp->xp_numfiles >= 0)
3573 {
3574 FreeWild(xp->xp_numfiles, xp->xp_files);
3575 xp->xp_numfiles = -1;
3576 }
3577}
3578
3579 void
3580ExpandEscape(xp, str, numfiles, files, options)
3581 expand_T *xp;
3582 char_u *str;
3583 int numfiles;
3584 char_u **files;
3585 int options;
3586{
3587 int i;
3588 char_u *p;
3589
3590 /*
3591 * May change home directory back to "~"
3592 */
3593 if (options & WILD_HOME_REPLACE)
3594 tilde_replace(str, numfiles, files);
3595
3596 if (options & WILD_ESCAPE)
3597 {
3598 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003599 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600 || xp->xp_context == EXPAND_BUFFERS
3601 || xp->xp_context == EXPAND_DIRECTORIES)
3602 {
3603 /*
3604 * Insert a backslash into a file name before a space, \, %, #
3605 * and wildmatch characters, except '~'.
3606 */
3607 for (i = 0; i < numfiles; ++i)
3608 {
3609 /* for ":set path=" we need to escape spaces twice */
3610 if (xp->xp_backslash == XP_BS_THREE)
3611 {
3612 p = vim_strsave_escaped(files[i], (char_u *)" ");
3613 if (p != NULL)
3614 {
3615 vim_free(files[i]);
3616 files[i] = p;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003617#if defined(BACKSLASH_IN_FILENAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618 p = vim_strsave_escaped(files[i], (char_u *)" ");
3619 if (p != NULL)
3620 {
3621 vim_free(files[i]);
3622 files[i] = p;
3623 }
3624#endif
3625 }
3626 }
3627#ifdef BACKSLASH_IN_FILENAME
3628 {
3629 char_u buf[20];
3630 int j = 0;
3631
3632 /* Don't escape '[' and '{' if they are in 'isfname'. */
3633 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
3634 if ((*p != '[' && *p != '{') || !vim_isfilec(*p))
3635 buf[j++] = *p;
3636 buf[j] = NUL;
3637 p = vim_strsave_escaped(files[i], buf);
3638 }
3639#else
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003640 p = vim_strsave_escaped(files[i],
3641 xp->xp_shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642#endif
3643 if (p != NULL)
3644 {
3645 vim_free(files[i]);
3646 files[i] = p;
3647 }
3648
3649 /* If 'str' starts with "\~", replace "~" at start of
3650 * files[i] with "\~". */
3651 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~')
Bram Moolenaar45360022005-07-21 21:08:21 +00003652 escape_fname(&files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653 }
3654 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar45360022005-07-21 21:08:21 +00003655
3656 /* If the first file starts with a '+' escape it. Otherwise it
3657 * could be seen as "+cmd". */
3658 if (*files[0] == '+')
3659 escape_fname(&files[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 }
3661 else if (xp->xp_context == EXPAND_TAGS)
3662 {
3663 /*
3664 * Insert a backslash before characters in a tag name that
3665 * would terminate the ":tag" command.
3666 */
3667 for (i = 0; i < numfiles; ++i)
3668 {
3669 p = vim_strsave_escaped(files[i], (char_u *)"\\|\"");
3670 if (p != NULL)
3671 {
3672 vim_free(files[i]);
3673 files[i] = p;
3674 }
3675 }
3676 }
3677 }
3678}
3679
3680/*
Bram Moolenaar45360022005-07-21 21:08:21 +00003681 * Put a backslash before the file name in "pp", which is in allocated memory.
3682 */
3683 static void
3684escape_fname(pp)
3685 char_u **pp;
3686{
3687 char_u *p;
3688
3689 p = alloc((unsigned)(STRLEN(*pp) + 2));
3690 if (p != NULL)
3691 {
3692 p[0] = '\\';
3693 STRCPY(p + 1, *pp);
3694 vim_free(*pp);
3695 *pp = p;
3696 }
3697}
3698
3699/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 * For each file name in files[num_files]:
3701 * If 'orig_pat' starts with "~/", replace the home directory with "~".
3702 */
3703 void
3704tilde_replace(orig_pat, num_files, files)
3705 char_u *orig_pat;
3706 int num_files;
3707 char_u **files;
3708{
3709 int i;
3710 char_u *p;
3711
3712 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
3713 {
3714 for (i = 0; i < num_files; ++i)
3715 {
3716 p = home_replace_save(NULL, files[i]);
3717 if (p != NULL)
3718 {
3719 vim_free(files[i]);
3720 files[i] = p;
3721 }
3722 }
3723 }
3724}
3725
3726/*
3727 * Show all matches for completion on the command line.
3728 * Returns EXPAND_NOTHING when the character that triggered expansion should
3729 * be inserted like a normal character.
3730 */
3731/*ARGSUSED*/
3732 static int
3733showmatches(xp, wildmenu)
3734 expand_T *xp;
3735 int wildmenu;
3736{
3737#define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m])
3738 int num_files;
3739 char_u **files_found;
3740 int i, j, k;
3741 int maxlen;
3742 int lines;
3743 int columns;
3744 char_u *p;
3745 int lastlen;
3746 int attr;
3747 int showtail;
3748
3749 if (xp->xp_numfiles == -1)
3750 {
3751 set_expand_context(xp);
3752 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos,
3753 &num_files, &files_found);
3754 showtail = expand_showtail(xp);
3755 if (i != EXPAND_OK)
3756 return i;
3757
3758 }
3759 else
3760 {
3761 num_files = xp->xp_numfiles;
3762 files_found = xp->xp_files;
3763 showtail = cmd_showtail;
3764 }
3765
3766#ifdef FEAT_WILDMENU
3767 if (!wildmenu)
3768 {
3769#endif
3770 msg_didany = FALSE; /* lines_left will be set */
3771 msg_start(); /* prepare for paging */
3772 msg_putchar('\n');
3773 out_flush();
3774 cmdline_row = msg_row;
3775 msg_didany = FALSE; /* lines_left will be set again */
3776 msg_start(); /* prepare for paging */
3777#ifdef FEAT_WILDMENU
3778 }
3779#endif
3780
3781 if (got_int)
3782 got_int = FALSE; /* only int. the completion, not the cmd line */
3783#ifdef FEAT_WILDMENU
3784 else if (wildmenu)
3785 win_redr_status_matches(xp, num_files, files_found, 0, showtail);
3786#endif
3787 else
3788 {
3789 /* find the length of the longest file name */
3790 maxlen = 0;
3791 for (i = 0; i < num_files; ++i)
3792 {
3793 if (!showtail && (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003794 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 || xp->xp_context == EXPAND_BUFFERS))
3796 {
3797 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE);
3798 j = vim_strsize(NameBuff);
3799 }
3800 else
3801 j = vim_strsize(L_SHOWFILE(i));
3802 if (j > maxlen)
3803 maxlen = j;
3804 }
3805
3806 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3807 lines = num_files;
3808 else
3809 {
3810 /* compute the number of columns and lines for the listing */
3811 maxlen += 2; /* two spaces between file names */
3812 columns = ((int)Columns + 2) / maxlen;
3813 if (columns < 1)
3814 columns = 1;
3815 lines = (num_files + columns - 1) / columns;
3816 }
3817
3818 attr = hl_attr(HLF_D); /* find out highlighting for directories */
3819
3820 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3821 {
3822 MSG_PUTS_ATTR(_("tagname"), hl_attr(HLF_T));
3823 msg_clr_eos();
3824 msg_advance(maxlen - 3);
3825 MSG_PUTS_ATTR(_(" kind file\n"), hl_attr(HLF_T));
3826 }
3827
3828 /* list the files line by line */
3829 for (i = 0; i < lines; ++i)
3830 {
3831 lastlen = 999;
3832 for (k = i; k < num_files; k += lines)
3833 {
3834 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3835 {
3836 msg_outtrans_attr(files_found[k], hl_attr(HLF_D));
3837 p = files_found[k] + STRLEN(files_found[k]) + 1;
3838 msg_advance(maxlen + 1);
3839 msg_puts(p);
3840 msg_advance(maxlen + 3);
3841 msg_puts_long_attr(p + 2, hl_attr(HLF_D));
3842 break;
3843 }
3844 for (j = maxlen - lastlen; --j >= 0; )
3845 msg_putchar(' ');
3846 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003847 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848 || xp->xp_context == EXPAND_BUFFERS)
3849 {
3850 /* highlight directories */
3851 j = (mch_isdir(files_found[k]));
3852 if (showtail)
3853 p = L_SHOWFILE(k);
3854 else
3855 {
3856 home_replace(NULL, files_found[k], NameBuff, MAXPATHL,
3857 TRUE);
3858 p = NameBuff;
3859 }
3860 }
3861 else
3862 {
3863 j = FALSE;
3864 p = L_SHOWFILE(k);
3865 }
3866 lastlen = msg_outtrans_attr(p, j ? attr : 0);
3867 }
3868 if (msg_col > 0) /* when not wrapped around */
3869 {
3870 msg_clr_eos();
3871 msg_putchar('\n');
3872 }
3873 out_flush(); /* show one line at a time */
3874 if (got_int)
3875 {
3876 got_int = FALSE;
3877 break;
3878 }
3879 }
3880
3881 /*
3882 * we redraw the command below the lines that we have just listed
3883 * This is a bit tricky, but it saves a lot of screen updating.
3884 */
3885 cmdline_row = msg_row; /* will put it back later */
3886 }
3887
3888 if (xp->xp_numfiles == -1)
3889 FreeWild(num_files, files_found);
3890
3891 return EXPAND_OK;
3892}
3893
3894/*
3895 * Private gettail for showmatches() (and win_redr_status_matches()):
3896 * Find tail of file name path, but ignore trailing "/".
3897 */
3898 char_u *
3899sm_gettail(s)
3900 char_u *s;
3901{
3902 char_u *p;
3903 char_u *t = s;
3904 int had_sep = FALSE;
3905
3906 for (p = s; *p != NUL; )
3907 {
3908 if (vim_ispathsep(*p)
3909#ifdef BACKSLASH_IN_FILENAME
3910 && !rem_backslash(p)
3911#endif
3912 )
3913 had_sep = TRUE;
3914 else if (had_sep)
3915 {
3916 t = p;
3917 had_sep = FALSE;
3918 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003919 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920 }
3921 return t;
3922}
3923
3924/*
3925 * Return TRUE if we only need to show the tail of completion matches.
3926 * When not completing file names or there is a wildcard in the path FALSE is
3927 * returned.
3928 */
3929 static int
3930expand_showtail(xp)
3931 expand_T *xp;
3932{
3933 char_u *s;
3934 char_u *end;
3935
3936 /* When not completing file names a "/" may mean something different. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003937 if (xp->xp_context != EXPAND_FILES
3938 && xp->xp_context != EXPAND_SHELLCMD
3939 && xp->xp_context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940 return FALSE;
3941
3942 end = gettail(xp->xp_pattern);
3943 if (end == xp->xp_pattern) /* there is no path separator */
3944 return FALSE;
3945
3946 for (s = xp->xp_pattern; s < end; s++)
3947 {
3948 /* Skip escaped wildcards. Only when the backslash is not a path
3949 * separator, on DOS the '*' "path\*\file" must not be skipped. */
3950 if (rem_backslash(s))
3951 ++s;
3952 else if (vim_strchr((char_u *)"*?[", *s) != NULL)
3953 return FALSE;
3954 }
3955 return TRUE;
3956}
3957
3958/*
3959 * Prepare a string for expansion.
3960 * When expanding file names: The string will be used with expand_wildcards().
3961 * Copy the file name into allocated memory and add a '*' at the end.
3962 * When expanding other names: The string will be used with regcomp(). Copy
3963 * the name into allocated memory and prepend "^".
3964 */
3965 char_u *
3966addstar(fname, len, context)
3967 char_u *fname;
3968 int len;
3969 int context; /* EXPAND_FILES etc. */
3970{
3971 char_u *retval;
3972 int i, j;
3973 int new_len;
3974 char_u *tail;
3975
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003976 if (context != EXPAND_FILES
3977 && context != EXPAND_SHELLCMD
3978 && context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979 {
3980 /*
3981 * Matching will be done internally (on something other than files).
3982 * So we convert the file-matching-type wildcards into our kind for
3983 * use with vim_regcomp(). First work out how long it will be:
3984 */
3985
3986 /* For help tags the translation is done in find_help_tags().
3987 * For a tag pattern starting with "/" no translation is needed. */
3988 if (context == EXPAND_HELP
3989 || context == EXPAND_COLORS
3990 || context == EXPAND_COMPILER
3991 || (context == EXPAND_TAGS && fname[0] == '/'))
3992 retval = vim_strnsave(fname, len);
3993 else
3994 {
3995 new_len = len + 2; /* +2 for '^' at start, NUL at end */
3996 for (i = 0; i < len; i++)
3997 {
3998 if (fname[i] == '*' || fname[i] == '~')
3999 new_len++; /* '*' needs to be replaced by ".*"
4000 '~' needs to be replaced by "\~" */
4001
4002 /* Buffer names are like file names. "." should be literal */
4003 if (context == EXPAND_BUFFERS && fname[i] == '.')
4004 new_len++; /* "." becomes "\." */
4005
4006 /* Custom expansion takes care of special things, match
4007 * backslashes literally (perhaps also for other types?) */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004008 if ((context == EXPAND_USER_DEFINED
4009 || context == EXPAND_USER_LIST) && fname[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004010 new_len++; /* '\' becomes "\\" */
4011 }
4012 retval = alloc(new_len);
4013 if (retval != NULL)
4014 {
4015 retval[0] = '^';
4016 j = 1;
4017 for (i = 0; i < len; i++, j++)
4018 {
4019 /* Skip backslash. But why? At least keep it for custom
4020 * expansion. */
4021 if (context != EXPAND_USER_DEFINED
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004022 && context != EXPAND_USER_LIST
4023 && fname[i] == '\\'
4024 && ++i == len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004025 break;
4026
4027 switch (fname[i])
4028 {
4029 case '*': retval[j++] = '.';
4030 break;
4031 case '~': retval[j++] = '\\';
4032 break;
4033 case '?': retval[j] = '.';
4034 continue;
4035 case '.': if (context == EXPAND_BUFFERS)
4036 retval[j++] = '\\';
4037 break;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004038 case '\\': if (context == EXPAND_USER_DEFINED
4039 || context == EXPAND_USER_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040 retval[j++] = '\\';
4041 break;
4042 }
4043 retval[j] = fname[i];
4044 }
4045 retval[j] = NUL;
4046 }
4047 }
4048 }
4049 else
4050 {
4051 retval = alloc(len + 4);
4052 if (retval != NULL)
4053 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004054 vim_strncpy(retval, fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055
4056 /*
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004057 * Don't add a star to *, ~, ~user, $var or `cmd`.
4058 * * would become **, which walks the whole tree.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059 * ~ would be at the start of the file name, but not the tail.
4060 * $ could be anywhere in the tail.
4061 * ` could be anywhere in the file name.
4062 */
4063 tail = gettail(retval);
4064 if ((*retval != '~' || tail != retval)
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004065 && (len == 0 || retval[len - 1] != '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 && vim_strchr(tail, '$') == NULL
4067 && vim_strchr(retval, '`') == NULL)
4068 retval[len++] = '*';
4069 retval[len] = NUL;
4070 }
4071 }
4072 return retval;
4073}
4074
4075/*
4076 * Must parse the command line so far to work out what context we are in.
4077 * Completion can then be done based on that context.
4078 * This routine sets the variables:
4079 * xp->xp_pattern The start of the pattern to be expanded within
4080 * the command line (ends at the cursor).
4081 * xp->xp_context The type of thing to expand. Will be one of:
4082 *
4083 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on
4084 * the command line, like an unknown command. Caller
4085 * should beep.
4086 * EXPAND_NOTHING Unrecognised context for completion, use char like
4087 * a normal char, rather than for completion. eg
4088 * :s/^I/
4089 * EXPAND_COMMANDS Cursor is still touching the command, so complete
4090 * it.
4091 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands.
4092 * EXPAND_FILES After command with XFILE set, or after setting
4093 * with P_EXPAND set. eg :e ^I, :w>>^I
4094 * EXPAND_DIRECTORIES In some cases this is used instead of the latter
4095 * when we know only directories are of interest. eg
4096 * :set dir=^I
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004097 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098 * EXPAND_SETTINGS Complete variable names. eg :set d^I
4099 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I
4100 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I
4101 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect
4102 * EXPAND_HELP Complete tags from the file 'helpfile'/tags
4103 * EXPAND_EVENTS Complete event names
4104 * EXPAND_SYNTAX Complete :syntax command arguments
4105 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names
4106 * EXPAND_AUGROUP Complete autocommand group names
4107 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I
4108 * EXPAND_MAPPINGS Complete mapping and abbreviation names,
4109 * eg :unmap a^I , :cunab x^I
4110 * EXPAND_FUNCTIONS Complete internal or user defined function names,
4111 * eg :call sub^I
4112 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I
4113 * EXPAND_EXPRESSION Complete internal or user defined function/variable
4114 * names in expressions, eg :while s^I
4115 * EXPAND_ENV_VARS Complete environment variable names
4116 */
4117 static void
4118set_expand_context(xp)
4119 expand_T *xp;
4120{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004121 /* only expansion for ':', '>' and '=' command-lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122 if (ccline.cmdfirstc != ':'
4123#ifdef FEAT_EVAL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004124 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '='
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004125 && !ccline.input_fn
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126#endif
4127 )
4128 {
4129 xp->xp_context = EXPAND_NOTHING;
4130 return;
4131 }
4132 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos);
4133}
4134
4135 void
4136set_cmd_context(xp, str, len, col)
4137 expand_T *xp;
4138 char_u *str; /* start of command line */
4139 int len; /* length of command line (excl. NUL) */
4140 int col; /* position of cursor */
4141{
4142 int old_char = NUL;
4143 char_u *nextcomm;
4144
4145 /*
4146 * Avoid a UMR warning from Purify, only save the character if it has been
4147 * written before.
4148 */
4149 if (col < len)
4150 old_char = str[col];
4151 str[col] = NUL;
4152 nextcomm = str;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004153
4154#ifdef FEAT_EVAL
4155 if (ccline.cmdfirstc == '=')
Bram Moolenaar4f688582007-07-24 12:34:30 +00004156 {
4157# ifdef FEAT_CMDL_COMPL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004158 /* pass CMD_SIZE because there is no real command */
4159 set_context_for_expression(xp, str, CMD_SIZE);
Bram Moolenaar4f688582007-07-24 12:34:30 +00004160# endif
4161 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004162 else if (ccline.input_fn)
4163 {
4164 xp->xp_context = ccline.xp_context;
4165 xp->xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004166# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004167 xp->xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004168# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004169 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004170 else
4171#endif
4172 while (nextcomm != NULL)
4173 nextcomm = set_one_cmd_context(xp, nextcomm);
4174
Bram Moolenaar071d4272004-06-13 20:20:40 +00004175 str[col] = old_char;
4176}
4177
4178/*
4179 * Expand the command line "str" from context "xp".
4180 * "xp" must have been set by set_cmd_context().
4181 * xp->xp_pattern points into "str", to where the text that is to be expanded
4182 * starts.
4183 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the
4184 * cursor.
4185 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the
4186 * key that triggered expansion literally.
4187 * Returns EXPAND_OK otherwise.
4188 */
4189 int
4190expand_cmdline(xp, str, col, matchcount, matches)
4191 expand_T *xp;
4192 char_u *str; /* start of command line */
4193 int col; /* position of cursor */
4194 int *matchcount; /* return: nr of matches */
4195 char_u ***matches; /* return: array of pointers to matches */
4196{
4197 char_u *file_str = NULL;
4198
4199 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
4200 {
4201 beep_flush();
4202 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */
4203 }
4204 if (xp->xp_context == EXPAND_NOTHING)
4205 {
4206 /* Caller can use the character as a normal char instead */
4207 return EXPAND_NOTHING;
4208 }
4209
4210 /* add star to file name, or convert to regexp if not exp. files. */
4211 file_str = addstar(xp->xp_pattern,
4212 (int)(str + col - xp->xp_pattern), xp->xp_context);
4213 if (file_str == NULL)
4214 return EXPAND_UNSUCCESSFUL;
4215
4216 /* find all files that match the description */
4217 if (ExpandFromContext(xp, file_str, matchcount, matches,
4218 WILD_ADD_SLASH|WILD_SILENT) == FAIL)
4219 {
4220 *matchcount = 0;
4221 *matches = NULL;
4222 }
4223 vim_free(file_str);
4224
4225 return EXPAND_OK;
4226}
4227
4228#ifdef FEAT_MULTI_LANG
4229/*
4230 * Cleanup matches for help tags: remove "@en" if "en" is the only language.
4231 */
4232static void cleanup_help_tags __ARGS((int num_file, char_u **file));
4233
4234 static void
4235cleanup_help_tags(num_file, file)
4236 int num_file;
4237 char_u **file;
4238{
4239 int i, j;
4240 int len;
4241
4242 for (i = 0; i < num_file; ++i)
4243 {
4244 len = (int)STRLEN(file[i]) - 3;
4245 if (len > 0 && STRCMP(file[i] + len, "@en") == 0)
4246 {
4247 /* Sorting on priority means the same item in another language may
4248 * be anywhere. Search all items for a match up to the "@en". */
4249 for (j = 0; j < num_file; ++j)
4250 if (j != i
4251 && (int)STRLEN(file[j]) == len + 3
4252 && STRNCMP(file[i], file[j], len + 1) == 0)
4253 break;
4254 if (j == num_file)
4255 file[i][len] = NUL;
4256 }
4257 }
4258}
4259#endif
4260
4261/*
4262 * Do the expansion based on xp->xp_context and "pat".
4263 */
4264 static int
4265ExpandFromContext(xp, pat, num_file, file, options)
4266 expand_T *xp;
4267 char_u *pat;
4268 int *num_file;
4269 char_u ***file;
4270 int options;
4271{
4272#ifdef FEAT_CMDL_COMPL
4273 regmatch_T regmatch;
4274#endif
4275 int ret;
4276 int flags;
4277
4278 flags = EW_DIR; /* include directories */
4279 if (options & WILD_LIST_NOTFOUND)
4280 flags |= EW_NOTFOUND;
4281 if (options & WILD_ADD_SLASH)
4282 flags |= EW_ADDSLASH;
4283 if (options & WILD_KEEP_ALL)
4284 flags |= EW_KEEPALL;
4285 if (options & WILD_SILENT)
4286 flags |= EW_SILENT;
4287
4288 if (xp->xp_context == EXPAND_FILES || xp->xp_context == EXPAND_DIRECTORIES)
4289 {
4290 /*
4291 * Expand file or directory names.
4292 */
4293 int free_pat = FALSE;
4294 int i;
4295
4296 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4297 * space */
4298 if (xp->xp_backslash != XP_BS_NONE)
4299 {
4300 free_pat = TRUE;
4301 pat = vim_strsave(pat);
4302 for (i = 0; pat[i]; ++i)
4303 if (pat[i] == '\\')
4304 {
4305 if (xp->xp_backslash == XP_BS_THREE
4306 && pat[i + 1] == '\\'
4307 && pat[i + 2] == '\\'
4308 && pat[i + 3] == ' ')
Bram Moolenaar452a81b2007-08-06 20:28:43 +00004309 mch_memmove(pat + i, pat + i + 3,
4310 STRLEN(pat + i + 3) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311 if (xp->xp_backslash == XP_BS_ONE
4312 && pat[i + 1] == ' ')
Bram Moolenaar452a81b2007-08-06 20:28:43 +00004313 mch_memmove(pat + i, pat + i + 1, STRLEN(pat + i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314 }
4315 }
4316
4317 if (xp->xp_context == EXPAND_FILES)
4318 flags |= EW_FILE;
4319 else
4320 flags = (flags | EW_DIR) & ~EW_FILE;
4321 ret = expand_wildcards(1, &pat, num_file, file, flags);
4322 if (free_pat)
4323 vim_free(pat);
4324 return ret;
4325 }
4326
4327 *file = (char_u **)"";
4328 *num_file = 0;
4329 if (xp->xp_context == EXPAND_HELP)
4330 {
4331 if (find_help_tags(pat, num_file, file, FALSE) == OK)
4332 {
4333#ifdef FEAT_MULTI_LANG
4334 cleanup_help_tags(*num_file, *file);
4335#endif
4336 return OK;
4337 }
4338 return FAIL;
4339 }
4340
4341#ifndef FEAT_CMDL_COMPL
4342 return FAIL;
4343#else
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004344 if (xp->xp_context == EXPAND_SHELLCMD)
4345 return expand_shellcmd(pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004346 if (xp->xp_context == EXPAND_OLD_SETTING)
4347 return ExpandOldSetting(num_file, file);
4348 if (xp->xp_context == EXPAND_BUFFERS)
4349 return ExpandBufnames(pat, num_file, file, options);
4350 if (xp->xp_context == EXPAND_TAGS
4351 || xp->xp_context == EXPAND_TAGS_LISTFILES)
4352 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file);
4353 if (xp->xp_context == EXPAND_COLORS)
4354 return ExpandRTDir(pat, num_file, file, "colors");
4355 if (xp->xp_context == EXPAND_COMPILER)
4356 return ExpandRTDir(pat, num_file, file, "compiler");
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004357# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4358 if (xp->xp_context == EXPAND_USER_LIST)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004359 return ExpandUserList(xp, num_file, file);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004360# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004361
4362 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4363 if (regmatch.regprog == NULL)
4364 return FAIL;
4365
4366 /* set ignore-case according to p_ic, p_scs and pat */
4367 regmatch.rm_ic = ignorecase(pat);
4368
4369 if (xp->xp_context == EXPAND_SETTINGS
4370 || xp->xp_context == EXPAND_BOOL_SETTINGS)
4371 ret = ExpandSettings(xp, &regmatch, num_file, file);
4372 else if (xp->xp_context == EXPAND_MAPPINGS)
4373 ret = ExpandMappings(&regmatch, num_file, file);
4374# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4375 else if (xp->xp_context == EXPAND_USER_DEFINED)
4376 ret = ExpandUserDefined(xp, &regmatch, num_file, file);
4377# endif
4378 else
4379 {
4380 static struct expgen
4381 {
4382 int context;
4383 char_u *((*func)__ARGS((expand_T *, int)));
4384 int ic;
4385 } tab[] =
4386 {
4387 {EXPAND_COMMANDS, get_command_name, FALSE},
4388#ifdef FEAT_USR_CMDS
4389 {EXPAND_USER_COMMANDS, get_user_commands, FALSE},
4390 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE},
4391 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE},
4392 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE},
4393#endif
4394#ifdef FEAT_EVAL
4395 {EXPAND_USER_VARS, get_user_var_name, FALSE},
4396 {EXPAND_FUNCTIONS, get_function_name, FALSE},
4397 {EXPAND_USER_FUNC, get_user_func_name, FALSE},
4398 {EXPAND_EXPRESSION, get_expr_name, FALSE},
4399#endif
4400#ifdef FEAT_MENU
4401 {EXPAND_MENUS, get_menu_name, FALSE},
4402 {EXPAND_MENUNAMES, get_menu_names, FALSE},
4403#endif
4404#ifdef FEAT_SYN_HL
4405 {EXPAND_SYNTAX, get_syntax_name, TRUE},
4406#endif
4407 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE},
4408#ifdef FEAT_AUTOCMD
4409 {EXPAND_EVENTS, get_event_name, TRUE},
4410 {EXPAND_AUGROUP, get_augroup_name, TRUE},
4411#endif
4412#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
4413 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
4414 {EXPAND_LANGUAGE, get_lang_arg, TRUE},
4415#endif
4416 {EXPAND_ENV_VARS, get_env_name, TRUE},
4417 };
4418 int i;
4419
4420 /*
4421 * Find a context in the table and call the ExpandGeneric() with the
4422 * right function to do the expansion.
4423 */
4424 ret = FAIL;
4425 for (i = 0; i < sizeof(tab) / sizeof(struct expgen); ++i)
4426 if (xp->xp_context == tab[i].context)
4427 {
4428 if (tab[i].ic)
4429 regmatch.rm_ic = TRUE;
4430 ret = ExpandGeneric(xp, &regmatch, num_file, file, tab[i].func);
4431 break;
4432 }
4433 }
4434
4435 vim_free(regmatch.regprog);
4436
4437 return ret;
4438#endif /* FEAT_CMDL_COMPL */
4439}
4440
4441#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4442/*
4443 * Expand a list of names.
4444 *
4445 * Generic function for command line completion. It calls a function to
4446 * obtain strings, one by one. The strings are matched against a regexp
4447 * program. Matching strings are copied into an array, which is returned.
4448 *
4449 * Returns OK when no problems encountered, FAIL for error (out of memory).
4450 */
4451 int
4452ExpandGeneric(xp, regmatch, num_file, file, func)
4453 expand_T *xp;
4454 regmatch_T *regmatch;
4455 int *num_file;
4456 char_u ***file;
4457 char_u *((*func)__ARGS((expand_T *, int)));
4458 /* returns a string from the list */
4459{
4460 int i;
4461 int count = 0;
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004462 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 char_u *str;
4464
4465 /* do this loop twice:
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004466 * round == 0: count the number of matching names
4467 * round == 1: copy the matching names into allocated memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468 */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004469 for (round = 0; round <= 1; ++round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 {
4471 for (i = 0; ; ++i)
4472 {
4473 str = (*func)(xp, i);
4474 if (str == NULL) /* end of list */
4475 break;
4476 if (*str == NUL) /* skip empty strings */
4477 continue;
4478
4479 if (vim_regexec(regmatch, str, (colnr_T)0))
4480 {
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004481 if (round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482 {
4483 str = vim_strsave_escaped(str, (char_u *)" \t\\.");
4484 (*file)[count] = str;
4485#ifdef FEAT_MENU
4486 if (func == get_menu_names && str != NULL)
4487 {
4488 /* test for separator added by get_menu_names() */
4489 str += STRLEN(str) - 1;
4490 if (*str == '\001')
4491 *str = '.';
4492 }
4493#endif
4494 }
4495 ++count;
4496 }
4497 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004498 if (round == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 {
4500 if (count == 0)
4501 return OK;
4502 *num_file = count;
4503 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
4504 if (*file == NULL)
4505 {
4506 *file = (char_u **)"";
4507 return FAIL;
4508 }
4509 count = 0;
4510 }
4511 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004512
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004513 /* Sort the results. Keep menu's in the specified order. */
4514 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS)
4515 sort_strings(*file, *num_file);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004516
Bram Moolenaar4f688582007-07-24 12:34:30 +00004517#ifdef FEAT_CMDL_COMPL
4518 /* Reset the variables used for special highlight names expansion, so that
4519 * they don't show up when getting normal highlight names by ID. */
4520 reset_expand_highlight();
4521#endif
4522
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523 return OK;
4524}
4525
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004526/*
4527 * Complete a shell command.
4528 * Returns FAIL or OK;
4529 */
4530 static int
4531expand_shellcmd(filepat, num_file, file, flagsarg)
4532 char_u *filepat; /* pattern to match with command names */
4533 int *num_file; /* return: number of matches */
4534 char_u ***file; /* return: array with matches */
4535 int flagsarg; /* EW_ flags */
4536{
4537 char_u *pat;
4538 int i;
4539 char_u *path;
4540 int mustfree = FALSE;
4541 garray_T ga;
4542 char_u *buf = alloc(MAXPATHL);
4543 size_t l;
4544 char_u *s, *e;
4545 int flags = flagsarg;
4546 int ret;
4547
4548 if (buf == NULL)
4549 return FAIL;
4550
4551 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4552 * space */
4553 pat = vim_strsave(filepat);
4554 for (i = 0; pat[i]; ++i)
4555 if (pat[i] == '\\' && pat[i + 1] == ' ')
Bram Moolenaar452a81b2007-08-06 20:28:43 +00004556 mch_memmove(pat + i, pat + i + 1, STRLEN(pat + i));
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004557
4558 flags |= EW_FILE | EW_EXEC;
4559
4560 /* For an absolute name we don't use $PATH. */
Bram Moolenaar68c31742006-09-02 15:54:18 +00004561 if (mch_isFullName(pat))
4562 path = (char_u *)" ";
4563 else if ((pat[0] == '.' && (vim_ispathsep(pat[1])
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004564 || (pat[1] == '.' && vim_ispathsep(pat[2])))))
4565 path = (char_u *)".";
4566 else
4567 path = vim_getenv((char_u *)"PATH", &mustfree);
4568
4569 /*
4570 * Go over all directories in $PATH. Expand matches in that directory and
4571 * collect them in "ga".
4572 */
4573 ga_init2(&ga, (int)sizeof(char *), 10);
4574 for (s = path; *s != NUL; s = e)
4575 {
Bram Moolenaar68c31742006-09-02 15:54:18 +00004576 if (*s == ' ')
4577 ++s; /* Skip space used for absolute path name. */
4578
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004579#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
4580 e = vim_strchr(s, ';');
4581#else
4582 e = vim_strchr(s, ':');
4583#endif
4584 if (e == NULL)
4585 e = s + STRLEN(s);
4586
4587 l = e - s;
4588 if (l > MAXPATHL - 5)
4589 break;
4590 vim_strncpy(buf, s, l);
4591 add_pathsep(buf);
4592 l = STRLEN(buf);
4593 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l);
4594
4595 /* Expand matches in one directory of $PATH. */
4596 ret = expand_wildcards(1, &buf, num_file, file, flags);
4597 if (ret == OK)
4598 {
4599 if (ga_grow(&ga, *num_file) == FAIL)
4600 FreeWild(*num_file, *file);
4601 else
4602 {
4603 for (i = 0; i < *num_file; ++i)
4604 {
4605 s = (*file)[i];
4606 if (STRLEN(s) > l)
4607 {
4608 /* Remove the path again. */
4609 mch_memmove(s, s + l, STRLEN(s + l) + 1);
4610 ((char_u **)ga.ga_data)[ga.ga_len++] = s;
4611 }
4612 else
4613 vim_free(s);
4614 }
4615 vim_free(*file);
4616 }
4617 }
4618 if (*e != NUL)
4619 ++e;
4620 }
4621 *file = ga.ga_data;
4622 *num_file = ga.ga_len;
4623
4624 vim_free(buf);
4625 vim_free(pat);
4626 if (mustfree)
4627 vim_free(path);
4628 return OK;
4629}
4630
4631
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00004633static 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));
4634
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635/*
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004636 * call "user_expand_func()" to invoke a user defined VimL function and return
4637 * the result (either a string or a List).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638 */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004639 static void *
4640call_user_expand_func(user_expand_func, xp, num_file, file)
4641 void *(*user_expand_func) __ARGS((char_u *, int, char_u **, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642 expand_T *xp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643 int *num_file;
4644 char_u ***file;
4645{
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004646 char_u keep;
4647 char_u num[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648 char_u *args[3];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649 int save_current_SID = current_SID;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004650 void *ret;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004651 struct cmdline_info save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652
4653 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0')
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004654 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655 *num_file = 0;
4656 *file = NULL;
4657
4658 keep = ccline.cmdbuff[ccline.cmdlen];
4659 ccline.cmdbuff[ccline.cmdlen] = 0;
4660 sprintf((char *)num, "%d", ccline.cmdpos);
4661 args[0] = xp->xp_pattern;
4662 args[1] = ccline.cmdbuff;
4663 args[2] = num;
4664
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004665 /* Save the cmdline, we don't know what the function may do. */
4666 save_ccline = ccline;
4667 ccline.cmdbuff = NULL;
4668 ccline.cmdprompt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669 current_SID = xp->xp_scriptID;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004670
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004671 ret = user_expand_func(xp->xp_arg, 3, args, FALSE);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004672
4673 ccline = save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674 current_SID = save_current_SID;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004675
Bram Moolenaar071d4272004-06-13 20:20:40 +00004676 ccline.cmdbuff[ccline.cmdlen] = keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004677
4678 return ret;
4679}
4680
4681/*
4682 * Expand names with a function defined by the user.
4683 */
4684 static int
4685ExpandUserDefined(xp, regmatch, num_file, file)
4686 expand_T *xp;
4687 regmatch_T *regmatch;
4688 int *num_file;
4689 char_u ***file;
4690{
4691 char_u *retstr;
4692 char_u *s;
4693 char_u *e;
4694 char_u keep;
4695 garray_T ga;
4696
4697 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file);
4698 if (retstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 return FAIL;
4700
4701 ga_init2(&ga, (int)sizeof(char *), 3);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004702 for (s = retstr; *s != NUL; s = e)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703 {
4704 e = vim_strchr(s, '\n');
4705 if (e == NULL)
4706 e = s + STRLEN(s);
4707 keep = *e;
4708 *e = 0;
4709
4710 if (xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0)
4711 {
4712 *e = keep;
4713 if (*e != NUL)
4714 ++e;
4715 continue;
4716 }
4717
4718 if (ga_grow(&ga, 1) == FAIL)
4719 break;
4720
4721 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s));
4722 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723
4724 *e = keep;
4725 if (*e != NUL)
4726 ++e;
4727 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004728 vim_free(retstr);
4729 *file = ga.ga_data;
4730 *num_file = ga.ga_len;
4731 return OK;
4732}
4733
4734/*
4735 * Expand names with a list returned by a function defined by the user.
4736 */
4737 static int
4738ExpandUserList(xp, num_file, file)
4739 expand_T *xp;
4740 int *num_file;
4741 char_u ***file;
4742{
4743 list_T *retlist;
4744 listitem_T *li;
4745 garray_T ga;
4746
4747 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file);
4748 if (retlist == NULL)
4749 return FAIL;
4750
4751 ga_init2(&ga, (int)sizeof(char *), 3);
4752 /* Loop over the items in the list. */
4753 for (li = retlist->lv_first; li != NULL; li = li->li_next)
4754 {
4755 if (li->li_tv.v_type != VAR_STRING)
4756 continue; /* Skip non-string items */
4757
4758 if (ga_grow(&ga, 1) == FAIL)
4759 break;
4760
4761 ((char_u **)ga.ga_data)[ga.ga_len] =
4762 vim_strsave(li->li_tv.vval.v_string);
4763 ++ga.ga_len;
4764 }
4765 list_unref(retlist);
4766
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767 *file = ga.ga_data;
4768 *num_file = ga.ga_len;
4769 return OK;
4770}
4771#endif
4772
4773/*
4774 * Expand color scheme names: 'runtimepath'/colors/{pat}.vim
4775 * or compiler names.
4776 */
4777 static int
4778ExpandRTDir(pat, num_file, file, dirname)
4779 char_u *pat;
4780 int *num_file;
4781 char_u ***file;
4782 char *dirname; /* "colors" or "compiler" */
4783{
4784 char_u *all;
4785 char_u *s;
4786 char_u *e;
4787 garray_T ga;
4788
4789 *num_file = 0;
4790 *file = NULL;
4791 s = alloc((unsigned)(STRLEN(pat) + STRLEN(dirname) + 7));
4792 if (s == NULL)
4793 return FAIL;
4794 sprintf((char *)s, "%s/%s*.vim", dirname, pat);
4795 all = globpath(p_rtp, s);
4796 vim_free(s);
4797 if (all == NULL)
4798 return FAIL;
4799
4800 ga_init2(&ga, (int)sizeof(char *), 3);
4801 for (s = all; *s != NUL; s = e)
4802 {
4803 e = vim_strchr(s, '\n');
4804 if (e == NULL)
4805 e = s + STRLEN(s);
4806 if (ga_grow(&ga, 1) == FAIL)
4807 break;
4808 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0)
4809 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004810 for (s = e - 4; s > all; mb_ptr_back(all, s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811 if (*s == '\n' || vim_ispathsep(*s))
4812 break;
4813 ++s;
4814 ((char_u **)ga.ga_data)[ga.ga_len] =
4815 vim_strnsave(s, (int)(e - s - 4));
4816 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817 }
4818 if (*e != NUL)
4819 ++e;
4820 }
4821 vim_free(all);
4822 *file = ga.ga_data;
4823 *num_file = ga.ga_len;
4824 return OK;
4825}
4826
4827#endif
4828
4829#if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO)
4830/*
4831 * Expand "file" for all comma-separated directories in "path".
4832 * Returns an allocated string with all matches concatenated, separated by
4833 * newlines. Returns NULL for an error or no matches.
4834 */
4835 char_u *
4836globpath(path, file)
4837 char_u *path;
4838 char_u *file;
4839{
4840 expand_T xpc;
4841 char_u *buf;
4842 garray_T ga;
4843 int i;
4844 int len;
4845 int num_p;
4846 char_u **p;
4847 char_u *cur = NULL;
4848
4849 buf = alloc(MAXPATHL);
4850 if (buf == NULL)
4851 return NULL;
4852
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00004853 ExpandInit(&xpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00004855
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856 ga_init2(&ga, 1, 100);
4857
4858 /* Loop over all entries in {path}. */
4859 while (*path != NUL)
4860 {
4861 /* Copy one item of the path to buf[] and concatenate the file name. */
4862 copy_option_part(&path, buf, MAXPATHL, ",");
4863 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
4864 {
4865 add_pathsep(buf);
4866 STRCAT(buf, file);
4867 if (ExpandFromContext(&xpc, buf, &num_p, &p, WILD_SILENT) != FAIL
4868 && num_p > 0)
4869 {
4870 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT);
4871 for (len = 0, i = 0; i < num_p; ++i)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004872 len += (int)STRLEN(p[i]) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004873
4874 /* Concatenate new results to previous ones. */
4875 if (ga_grow(&ga, len) == OK)
4876 {
4877 cur = (char_u *)ga.ga_data + ga.ga_len;
4878 for (i = 0; i < num_p; ++i)
4879 {
4880 STRCPY(cur, p[i]);
4881 cur += STRLEN(p[i]);
4882 *cur++ = '\n';
4883 }
4884 ga.ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885 }
4886 FreeWild(num_p, p);
4887 }
4888 }
4889 }
4890 if (cur != NULL)
4891 *--cur = 0; /* Replace trailing newline with NUL */
4892
4893 vim_free(buf);
4894 return (char_u *)ga.ga_data;
4895}
4896
4897#endif
4898
4899#if defined(FEAT_CMDHIST) || defined(PROTO)
4900
4901/*********************************
4902 * Command line history stuff *
4903 *********************************/
4904
4905/*
4906 * Translate a history character to the associated type number.
4907 */
4908 static int
4909hist_char2type(c)
4910 int c;
4911{
4912 if (c == ':')
4913 return HIST_CMD;
4914 if (c == '=')
4915 return HIST_EXPR;
4916 if (c == '@')
4917 return HIST_INPUT;
4918 if (c == '>')
4919 return HIST_DEBUG;
4920 return HIST_SEARCH; /* must be '?' or '/' */
4921}
4922
4923/*
4924 * Table of history names.
4925 * These names are used in :history and various hist...() functions.
4926 * It is sufficient to give the significant prefix of a history name.
4927 */
4928
4929static char *(history_names[]) =
4930{
4931 "cmd",
4932 "search",
4933 "expr",
4934 "input",
4935 "debug",
4936 NULL
4937};
4938
4939/*
4940 * init_history() - Initialize the command line history.
4941 * Also used to re-allocate the history when the size changes.
4942 */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00004943 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944init_history()
4945{
4946 int newlen; /* new length of history table */
4947 histentry_T *temp;
4948 int i;
4949 int j;
4950 int type;
4951
4952 /*
4953 * If size of history table changed, reallocate it
4954 */
4955 newlen = (int)p_hi;
4956 if (newlen != hislen) /* history length changed */
4957 {
4958 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */
4959 {
4960 if (newlen)
4961 {
4962 temp = (histentry_T *)lalloc(
4963 (long_u)(newlen * sizeof(histentry_T)), TRUE);
4964 if (temp == NULL) /* out of memory! */
4965 {
4966 if (type == 0) /* first one: just keep the old length */
4967 {
4968 newlen = hislen;
4969 break;
4970 }
4971 /* Already changed one table, now we can only have zero
4972 * length for all tables. */
4973 newlen = 0;
4974 type = -1;
4975 continue;
4976 }
4977 }
4978 else
4979 temp = NULL;
4980 if (newlen == 0 || temp != NULL)
4981 {
4982 if (hisidx[type] < 0) /* there are no entries yet */
4983 {
4984 for (i = 0; i < newlen; ++i)
4985 {
4986 temp[i].hisnum = 0;
4987 temp[i].hisstr = NULL;
4988 }
4989 }
4990 else if (newlen > hislen) /* array becomes bigger */
4991 {
4992 for (i = 0; i <= hisidx[type]; ++i)
4993 temp[i] = history[type][i];
4994 j = i;
4995 for ( ; i <= newlen - (hislen - hisidx[type]); ++i)
4996 {
4997 temp[i].hisnum = 0;
4998 temp[i].hisstr = NULL;
4999 }
5000 for ( ; j < hislen; ++i, ++j)
5001 temp[i] = history[type][j];
5002 }
5003 else /* array becomes smaller or 0 */
5004 {
5005 j = hisidx[type];
5006 for (i = newlen - 1; ; --i)
5007 {
5008 if (i >= 0) /* copy newest entries */
5009 temp[i] = history[type][j];
5010 else /* remove older entries */
5011 vim_free(history[type][j].hisstr);
5012 if (--j < 0)
5013 j = hislen - 1;
5014 if (j == hisidx[type])
5015 break;
5016 }
5017 hisidx[type] = newlen - 1;
5018 }
5019 vim_free(history[type]);
5020 history[type] = temp;
5021 }
5022 }
5023 hislen = newlen;
5024 }
5025}
5026
5027/*
5028 * Check if command line 'str' is already in history.
5029 * If 'move_to_front' is TRUE, matching entry is moved to end of history.
5030 */
5031 static int
5032in_history(type, str, move_to_front)
5033 int type;
5034 char_u *str;
5035 int move_to_front; /* Move the entry to the front if it exists */
5036{
5037 int i;
5038 int last_i = -1;
5039
5040 if (hisidx[type] < 0)
5041 return FALSE;
5042 i = hisidx[type];
5043 do
5044 {
5045 if (history[type][i].hisstr == NULL)
5046 return FALSE;
5047 if (STRCMP(str, history[type][i].hisstr) == 0)
5048 {
5049 if (!move_to_front)
5050 return TRUE;
5051 last_i = i;
5052 break;
5053 }
5054 if (--i < 0)
5055 i = hislen - 1;
5056 } while (i != hisidx[type]);
5057
5058 if (last_i >= 0)
5059 {
5060 str = history[type][i].hisstr;
5061 while (i != hisidx[type])
5062 {
5063 if (++i >= hislen)
5064 i = 0;
5065 history[type][last_i] = history[type][i];
5066 last_i = i;
5067 }
5068 history[type][i].hisstr = str;
5069 history[type][i].hisnum = ++hisnum[type];
5070 return TRUE;
5071 }
5072 return FALSE;
5073}
5074
5075/*
5076 * Convert history name (from table above) to its HIST_ equivalent.
5077 * When "name" is empty, return "cmd" history.
5078 * Returns -1 for unknown history name.
5079 */
5080 int
5081get_histtype(name)
5082 char_u *name;
5083{
5084 int i;
5085 int len = (int)STRLEN(name);
5086
5087 /* No argument: use current history. */
5088 if (len == 0)
5089 return hist_char2type(ccline.cmdfirstc);
5090
5091 for (i = 0; history_names[i] != NULL; ++i)
5092 if (STRNICMP(name, history_names[i], len) == 0)
5093 return i;
5094
5095 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL)
5096 return hist_char2type(name[0]);
5097
5098 return -1;
5099}
5100
5101static int last_maptick = -1; /* last seen maptick */
5102
5103/*
5104 * Add the given string to the given history. If the string is already in the
5105 * history then it is moved to the front. "histype" may be one of he HIST_
5106 * values.
5107 */
5108 void
5109add_to_history(histype, new_entry, in_map, sep)
5110 int histype;
5111 char_u *new_entry;
5112 int in_map; /* consider maptick when inside a mapping */
5113 int sep; /* separator character used (search hist) */
5114{
5115 histentry_T *hisptr;
5116 int len;
5117
5118 if (hislen == 0) /* no history */
5119 return;
5120
5121 /*
5122 * Searches inside the same mapping overwrite each other, so that only
5123 * the last line is kept. Be careful not to remove a line that was moved
5124 * down, only lines that were added.
5125 */
5126 if (histype == HIST_SEARCH && in_map)
5127 {
5128 if (maptick == last_maptick)
5129 {
5130 /* Current line is from the same mapping, remove it */
5131 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];
5132 vim_free(hisptr->hisstr);
5133 hisptr->hisstr = NULL;
5134 hisptr->hisnum = 0;
5135 --hisnum[histype];
5136 if (--hisidx[HIST_SEARCH] < 0)
5137 hisidx[HIST_SEARCH] = hislen - 1;
5138 }
5139 last_maptick = -1;
5140 }
5141 if (!in_history(histype, new_entry, TRUE))
5142 {
5143 if (++hisidx[histype] == hislen)
5144 hisidx[histype] = 0;
5145 hisptr = &history[histype][hisidx[histype]];
5146 vim_free(hisptr->hisstr);
5147
5148 /* Store the separator after the NUL of the string. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005149 len = (int)STRLEN(new_entry);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 hisptr->hisstr = vim_strnsave(new_entry, len + 2);
5151 if (hisptr->hisstr != NULL)
5152 hisptr->hisstr[len + 1] = sep;
5153
5154 hisptr->hisnum = ++hisnum[histype];
5155 if (histype == HIST_SEARCH && in_map)
5156 last_maptick = maptick;
5157 }
5158}
5159
5160#if defined(FEAT_EVAL) || defined(PROTO)
5161
5162/*
5163 * Get identifier of newest history entry.
5164 * "histype" may be one of the HIST_ values.
5165 */
5166 int
5167get_history_idx(histype)
5168 int histype;
5169{
5170 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5171 || hisidx[histype] < 0)
5172 return -1;
5173
5174 return history[histype][hisidx[histype]].hisnum;
5175}
5176
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005177static struct cmdline_info *get_ccline_ptr __ARGS((void));
5178
5179/*
5180 * Get pointer to the command line info to use. cmdline_paste() may clear
5181 * ccline and put the previous value in prev_ccline.
5182 */
5183 static struct cmdline_info *
5184get_ccline_ptr()
5185{
5186 if ((State & CMDLINE) == 0)
5187 return NULL;
5188 if (ccline.cmdbuff != NULL)
5189 return &ccline;
5190 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
5191 return &prev_ccline;
5192 return NULL;
5193}
5194
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195/*
5196 * Get the current command line in allocated memory.
5197 * Only works when the command line is being edited.
5198 * Returns NULL when something is wrong.
5199 */
5200 char_u *
5201get_cmdline_str()
5202{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005203 struct cmdline_info *p = get_ccline_ptr();
5204
5205 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206 return NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005207 return vim_strnsave(p->cmdbuff, p->cmdlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208}
5209
5210/*
5211 * Get the current command line position, counted in bytes.
5212 * Zero is the first position.
5213 * Only works when the command line is being edited.
5214 * Returns -1 when something is wrong.
5215 */
5216 int
5217get_cmdline_pos()
5218{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005219 struct cmdline_info *p = get_ccline_ptr();
5220
5221 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222 return -1;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005223 return p->cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005224}
5225
5226/*
5227 * Set the command line byte position to "pos". Zero is the first position.
5228 * Only works when the command line is being edited.
5229 * Returns 1 when failed, 0 when OK.
5230 */
5231 int
5232set_cmdline_pos(pos)
5233 int pos;
5234{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005235 struct cmdline_info *p = get_ccline_ptr();
5236
5237 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238 return 1;
5239
5240 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
5241 * changed the command line. */
5242 if (pos < 0)
5243 new_cmdpos = 0;
5244 else
5245 new_cmdpos = pos;
5246 return 0;
5247}
5248
5249/*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005250 * Get the current command-line type.
Bram Moolenaar1e015462005-09-25 22:16:38 +00005251 * Returns ':' or '/' or '?' or '@' or '>' or '-'
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005252 * Only works when the command line is being edited.
5253 * Returns NUL when something is wrong.
5254 */
5255 int
5256get_cmdline_type()
5257{
5258 struct cmdline_info *p = get_ccline_ptr();
5259
5260 if (p == NULL)
5261 return NUL;
Bram Moolenaar1e015462005-09-25 22:16:38 +00005262 if (p->cmdfirstc == NUL)
5263 return (p->input_fn) ? '@' : '-';
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005264 return p->cmdfirstc;
5265}
5266
5267/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268 * Calculate history index from a number:
5269 * num > 0: seen as identifying number of a history entry
5270 * num < 0: relative position in history wrt newest entry
5271 * "histype" may be one of the HIST_ values.
5272 */
5273 static int
5274calc_hist_idx(histype, num)
5275 int histype;
5276 int num;
5277{
5278 int i;
5279 histentry_T *hist;
5280 int wrapped = FALSE;
5281
5282 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5283 || (i = hisidx[histype]) < 0 || num == 0)
5284 return -1;
5285
5286 hist = history[histype];
5287 if (num > 0)
5288 {
5289 while (hist[i].hisnum > num)
5290 if (--i < 0)
5291 {
5292 if (wrapped)
5293 break;
5294 i += hislen;
5295 wrapped = TRUE;
5296 }
5297 if (hist[i].hisnum == num && hist[i].hisstr != NULL)
5298 return i;
5299 }
5300 else if (-num <= hislen)
5301 {
5302 i += num + 1;
5303 if (i < 0)
5304 i += hislen;
5305 if (hist[i].hisstr != NULL)
5306 return i;
5307 }
5308 return -1;
5309}
5310
5311/*
5312 * Get a history entry by its index.
5313 * "histype" may be one of the HIST_ values.
5314 */
5315 char_u *
5316get_history_entry(histype, idx)
5317 int histype;
5318 int idx;
5319{
5320 idx = calc_hist_idx(histype, idx);
5321 if (idx >= 0)
5322 return history[histype][idx].hisstr;
5323 else
5324 return (char_u *)"";
5325}
5326
5327/*
5328 * Clear all entries of a history.
5329 * "histype" may be one of the HIST_ values.
5330 */
5331 int
5332clr_history(histype)
5333 int histype;
5334{
5335 int i;
5336 histentry_T *hisptr;
5337
5338 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT)
5339 {
5340 hisptr = history[histype];
5341 for (i = hislen; i--;)
5342 {
5343 vim_free(hisptr->hisstr);
5344 hisptr->hisnum = 0;
5345 hisptr++->hisstr = NULL;
5346 }
5347 hisidx[histype] = -1; /* mark history as cleared */
5348 hisnum[histype] = 0; /* reset identifier counter */
5349 return OK;
5350 }
5351 return FAIL;
5352}
5353
5354/*
5355 * Remove all entries matching {str} from a history.
5356 * "histype" may be one of the HIST_ values.
5357 */
5358 int
5359del_history_entry(histype, str)
5360 int histype;
5361 char_u *str;
5362{
5363 regmatch_T regmatch;
5364 histentry_T *hisptr;
5365 int idx;
5366 int i;
5367 int last;
5368 int found = FALSE;
5369
5370 regmatch.regprog = NULL;
5371 regmatch.rm_ic = FALSE; /* always match case */
5372 if (hislen != 0
5373 && histype >= 0
5374 && histype < HIST_COUNT
5375 && *str != NUL
5376 && (idx = hisidx[histype]) >= 0
5377 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING))
5378 != NULL)
5379 {
5380 i = last = idx;
5381 do
5382 {
5383 hisptr = &history[histype][i];
5384 if (hisptr->hisstr == NULL)
5385 break;
5386 if (vim_regexec(&regmatch, hisptr->hisstr, (colnr_T)0))
5387 {
5388 found = TRUE;
5389 vim_free(hisptr->hisstr);
5390 hisptr->hisstr = NULL;
5391 hisptr->hisnum = 0;
5392 }
5393 else
5394 {
5395 if (i != last)
5396 {
5397 history[histype][last] = *hisptr;
5398 hisptr->hisstr = NULL;
5399 hisptr->hisnum = 0;
5400 }
5401 if (--last < 0)
5402 last += hislen;
5403 }
5404 if (--i < 0)
5405 i += hislen;
5406 } while (i != idx);
5407 if (history[histype][idx].hisstr == NULL)
5408 hisidx[histype] = -1;
5409 }
5410 vim_free(regmatch.regprog);
5411 return found;
5412}
5413
5414/*
5415 * Remove an indexed entry from a history.
5416 * "histype" may be one of the HIST_ values.
5417 */
5418 int
5419del_history_idx(histype, idx)
5420 int histype;
5421 int idx;
5422{
5423 int i, j;
5424
5425 i = calc_hist_idx(histype, idx);
5426 if (i < 0)
5427 return FALSE;
5428 idx = hisidx[histype];
5429 vim_free(history[histype][i].hisstr);
5430
5431 /* When deleting the last added search string in a mapping, reset
5432 * last_maptick, so that the last added search string isn't deleted again.
5433 */
5434 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx)
5435 last_maptick = -1;
5436
5437 while (i != idx)
5438 {
5439 j = (i + 1) % hislen;
5440 history[histype][i] = history[histype][j];
5441 i = j;
5442 }
5443 history[histype][i].hisstr = NULL;
5444 history[histype][i].hisnum = 0;
5445 if (--i < 0)
5446 i += hislen;
5447 hisidx[histype] = i;
5448 return TRUE;
5449}
5450
5451#endif /* FEAT_EVAL */
5452
5453#if defined(FEAT_CRYPT) || defined(PROTO)
5454/*
5455 * Very specific function to remove the value in ":set key=val" from the
5456 * history.
5457 */
5458 void
5459remove_key_from_history()
5460{
5461 char_u *p;
5462 int i;
5463
5464 i = hisidx[HIST_CMD];
5465 if (i < 0)
5466 return;
5467 p = history[HIST_CMD][i].hisstr;
5468 if (p != NULL)
5469 for ( ; *p; ++p)
5470 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3]))
5471 {
5472 p = vim_strchr(p + 3, '=');
5473 if (p == NULL)
5474 break;
5475 ++p;
5476 for (i = 0; p[i] && !vim_iswhite(p[i]); ++i)
5477 if (p[i] == '\\' && p[i + 1])
5478 ++i;
5479 mch_memmove(p, p + i, STRLEN(p + i) + 1);
5480 --p;
5481 }
5482}
5483#endif
5484
5485#endif /* FEAT_CMDHIST */
5486
5487#if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO)
5488/*
5489 * Get indices "num1,num2" that specify a range within a list (not a range of
5490 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
5491 * Returns OK if parsed successfully, otherwise FAIL.
5492 */
5493 int
5494get_list_range(str, num1, num2)
5495 char_u **str;
5496 int *num1;
5497 int *num2;
5498{
5499 int len;
5500 int first = FALSE;
5501 long num;
5502
5503 *str = skipwhite(*str);
5504 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
5505 {
5506 vim_str2nr(*str, NULL, &len, FALSE, FALSE, &num, NULL);
5507 *str += len;
5508 *num1 = (int)num;
5509 first = TRUE;
5510 }
5511 *str = skipwhite(*str);
5512 if (**str == ',') /* parse "to" part of range */
5513 {
5514 *str = skipwhite(*str + 1);
5515 vim_str2nr(*str, NULL, &len, FALSE, FALSE, &num, NULL);
5516 if (len > 0)
5517 {
5518 *num2 = (int)num;
5519 *str = skipwhite(*str + len);
5520 }
5521 else if (!first) /* no number given at all */
5522 return FAIL;
5523 }
5524 else if (first) /* only one number given */
5525 *num2 = *num1;
5526 return OK;
5527}
5528#endif
5529
5530#if defined(FEAT_CMDHIST) || defined(PROTO)
5531/*
5532 * :history command - print a history
5533 */
5534 void
5535ex_history(eap)
5536 exarg_T *eap;
5537{
5538 histentry_T *hist;
5539 int histype1 = HIST_CMD;
5540 int histype2 = HIST_CMD;
5541 int hisidx1 = 1;
5542 int hisidx2 = -1;
5543 int idx;
5544 int i, j, k;
5545 char_u *end;
5546 char_u *arg = eap->arg;
5547
5548 if (hislen == 0)
5549 {
5550 MSG(_("'history' option is zero"));
5551 return;
5552 }
5553
5554 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ','))
5555 {
5556 end = arg;
5557 while (ASCII_ISALPHA(*end)
5558 || vim_strchr((char_u *)":=@>/?", *end) != NULL)
5559 end++;
5560 i = *end;
5561 *end = NUL;
5562 histype1 = get_histtype(arg);
5563 if (histype1 == -1)
5564 {
5565 if (STRICMP(arg, "all") == 0)
5566 {
5567 histype1 = 0;
5568 histype2 = HIST_COUNT-1;
5569 }
5570 else
5571 {
5572 *end = i;
5573 EMSG(_(e_trailing));
5574 return;
5575 }
5576 }
5577 else
5578 histype2 = histype1;
5579 *end = i;
5580 }
5581 else
5582 end = arg;
5583 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL)
5584 {
5585 EMSG(_(e_trailing));
5586 return;
5587 }
5588
5589 for (; !got_int && histype1 <= histype2; ++histype1)
5590 {
5591 STRCPY(IObuff, "\n # ");
5592 STRCAT(STRCAT(IObuff, history_names[histype1]), " history");
5593 MSG_PUTS_TITLE(IObuff);
5594 idx = hisidx[histype1];
5595 hist = history[histype1];
5596 j = hisidx1;
5597 k = hisidx2;
5598 if (j < 0)
5599 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum;
5600 if (k < 0)
5601 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum;
5602 if (idx >= 0 && j <= k)
5603 for (i = idx + 1; !got_int; ++i)
5604 {
5605 if (i == hislen)
5606 i = 0;
5607 if (hist[i].hisstr != NULL
5608 && hist[i].hisnum >= j && hist[i].hisnum <= k)
5609 {
5610 msg_putchar('\n');
5611 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ',
5612 hist[i].hisnum);
5613 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10)
5614 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff),
5615 (int)Columns - 10);
5616 else
5617 STRCAT(IObuff, hist[i].hisstr);
5618 msg_outtrans(IObuff);
5619 out_flush();
5620 }
5621 if (i == idx)
5622 break;
5623 }
5624 }
5625}
5626#endif
5627
5628#if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO)
5629static char_u **viminfo_history[HIST_COUNT] = {NULL, NULL, NULL, NULL};
5630static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0};
5631static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0};
5632static int viminfo_add_at_front = FALSE;
5633
5634static int hist_type2char __ARGS((int type, int use_question));
5635
5636/*
5637 * Translate a history type number to the associated character.
5638 */
5639 static int
5640hist_type2char(type, use_question)
5641 int type;
5642 int use_question; /* use '?' instead of '/' */
5643{
5644 if (type == HIST_CMD)
5645 return ':';
5646 if (type == HIST_SEARCH)
5647 {
5648 if (use_question)
5649 return '?';
5650 else
5651 return '/';
5652 }
5653 if (type == HIST_EXPR)
5654 return '=';
5655 return '@';
5656}
5657
5658/*
5659 * Prepare for reading the history from the viminfo file.
5660 * This allocates history arrays to store the read history lines.
5661 */
5662 void
5663prepare_viminfo_history(asklen)
5664 int asklen;
5665{
5666 int i;
5667 int num;
5668 int type;
5669 int len;
5670
5671 init_history();
5672 viminfo_add_at_front = (asklen != 0);
5673 if (asklen > hislen)
5674 asklen = hislen;
5675
5676 for (type = 0; type < HIST_COUNT; ++type)
5677 {
5678 /*
5679 * Count the number of empty spaces in the history list. If there are
5680 * more spaces available than we request, then fill them up.
5681 */
5682 for (i = 0, num = 0; i < hislen; i++)
5683 if (history[type][i].hisstr == NULL)
5684 num++;
5685 len = asklen;
5686 if (num > len)
5687 len = num;
5688 if (len <= 0)
5689 viminfo_history[type] = NULL;
5690 else
5691 viminfo_history[type] =
5692 (char_u **)lalloc((long_u)(len * sizeof(char_u *)), FALSE);
5693 if (viminfo_history[type] == NULL)
5694 len = 0;
5695 viminfo_hislen[type] = len;
5696 viminfo_hisidx[type] = 0;
5697 }
5698}
5699
5700/*
5701 * Accept a line from the viminfo, store it in the history array when it's
5702 * new.
5703 */
5704 int
5705read_viminfo_history(virp)
5706 vir_T *virp;
5707{
5708 int type;
5709 long_u len;
5710 char_u *val;
5711 char_u *p;
5712
5713 type = hist_char2type(virp->vir_line[0]);
5714 if (viminfo_hisidx[type] < viminfo_hislen[type])
5715 {
5716 val = viminfo_readstring(virp, 1, TRUE);
5717 if (val != NULL && *val != NUL)
5718 {
5719 if (!in_history(type, val + (type == HIST_SEARCH),
5720 viminfo_add_at_front))
5721 {
5722 /* Need to re-allocate to append the separator byte. */
5723 len = STRLEN(val);
5724 p = lalloc(len + 2, TRUE);
5725 if (p != NULL)
5726 {
5727 if (type == HIST_SEARCH)
5728 {
5729 /* Search entry: Move the separator from the first
5730 * column to after the NUL. */
5731 mch_memmove(p, val + 1, (size_t)len);
5732 p[len] = (*val == ' ' ? NUL : *val);
5733 }
5734 else
5735 {
5736 /* Not a search entry: No separator in the viminfo
5737 * file, add a NUL separator. */
5738 mch_memmove(p, val, (size_t)len + 1);
5739 p[len + 1] = NUL;
5740 }
5741 viminfo_history[type][viminfo_hisidx[type]++] = p;
5742 }
5743 }
5744 }
5745 vim_free(val);
5746 }
5747 return viminfo_readline(virp);
5748}
5749
5750 void
5751finish_viminfo_history()
5752{
5753 int idx;
5754 int i;
5755 int type;
5756
5757 for (type = 0; type < HIST_COUNT; ++type)
5758 {
5759 if (history[type] == NULL)
5760 return;
5761 idx = hisidx[type] + viminfo_hisidx[type];
5762 if (idx >= hislen)
5763 idx -= hislen;
5764 else if (idx < 0)
5765 idx = hislen - 1;
5766 if (viminfo_add_at_front)
5767 hisidx[type] = idx;
5768 else
5769 {
5770 if (hisidx[type] == -1)
5771 hisidx[type] = hislen - 1;
5772 do
5773 {
5774 if (history[type][idx].hisstr != NULL)
5775 break;
5776 if (++idx == hislen)
5777 idx = 0;
5778 } while (idx != hisidx[type]);
5779 if (idx != hisidx[type] && --idx < 0)
5780 idx = hislen - 1;
5781 }
5782 for (i = 0; i < viminfo_hisidx[type]; i++)
5783 {
5784 vim_free(history[type][idx].hisstr);
5785 history[type][idx].hisstr = viminfo_history[type][i];
5786 if (--idx < 0)
5787 idx = hislen - 1;
5788 }
5789 idx += 1;
5790 idx %= hislen;
5791 for (i = 0; i < viminfo_hisidx[type]; i++)
5792 {
5793 history[type][idx++].hisnum = ++hisnum[type];
5794 idx %= hislen;
5795 }
5796 vim_free(viminfo_history[type]);
5797 viminfo_history[type] = NULL;
5798 }
5799}
5800
5801 void
5802write_viminfo_history(fp)
5803 FILE *fp;
5804{
5805 int i;
5806 int type;
5807 int num_saved;
5808 char_u *p;
5809 int c;
5810
5811 init_history();
5812 if (hislen == 0)
5813 return;
5814 for (type = 0; type < HIST_COUNT; ++type)
5815 {
5816 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE));
5817 if (num_saved == 0)
5818 continue;
5819 if (num_saved < 0) /* Use default */
5820 num_saved = hislen;
5821 fprintf(fp, _("\n# %s History (newest to oldest):\n"),
5822 type == HIST_CMD ? _("Command Line") :
5823 type == HIST_SEARCH ? _("Search String") :
5824 type == HIST_EXPR ? _("Expression") :
5825 _("Input Line"));
5826 if (num_saved > hislen)
5827 num_saved = hislen;
5828 i = hisidx[type];
5829 if (i >= 0)
5830 while (num_saved--)
5831 {
5832 p = history[type][i].hisstr;
5833 if (p != NULL)
5834 {
Bram Moolenaar75c50c42005-06-04 22:06:24 +00005835 fputc(hist_type2char(type, TRUE), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005836 /* For the search history: put the separator in the second
5837 * column; use a space if there isn't one. */
5838 if (type == HIST_SEARCH)
5839 {
5840 c = p[STRLEN(p) + 1];
5841 putc(c == NUL ? ' ' : c, fp);
5842 }
5843 viminfo_writestring(fp, p);
5844 }
5845 if (--i < 0)
5846 i = hislen - 1;
5847 }
5848 }
5849}
5850#endif /* FEAT_VIMINFO */
5851
5852#if defined(FEAT_FKMAP) || defined(PROTO)
5853/*
5854 * Write a character at the current cursor+offset position.
5855 * It is directly written into the command buffer block.
5856 */
5857 void
5858cmd_pchar(c, offset)
5859 int c, offset;
5860{
5861 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
5862 {
5863 EMSG(_("E198: cmd_pchar beyond the command length"));
5864 return;
5865 }
5866 ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c;
5867 ccline.cmdbuff[ccline.cmdlen] = NUL;
5868}
5869
5870 int
5871cmd_gchar(offset)
5872 int offset;
5873{
5874 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
5875 {
5876 /* EMSG(_("cmd_gchar beyond the command length")); */
5877 return NUL;
5878 }
5879 return (int)ccline.cmdbuff[ccline.cmdpos + offset];
5880}
5881#endif
5882
5883#if defined(FEAT_CMDWIN) || defined(PROTO)
5884/*
5885 * Open a window on the current command line and history. Allow editing in
5886 * the window. Returns when the window is closed.
5887 * Returns:
5888 * CR if the command is to be executed
5889 * Ctrl_C if it is to be abandoned
5890 * K_IGNORE if editing continues
5891 */
5892 static int
5893ex_window()
5894{
5895 struct cmdline_info save_ccline;
5896 buf_T *old_curbuf = curbuf;
5897 win_T *old_curwin = curwin;
5898 buf_T *bp;
5899 win_T *wp;
5900 int i;
5901 linenr_T lnum;
5902 int histtype;
5903 garray_T winsizes;
5904 char_u typestr[2];
5905 int save_restart_edit = restart_edit;
5906 int save_State = State;
5907 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00005908#ifdef FEAT_RIGHTLEFT
5909 int save_cmdmsg_rl = cmdmsg_rl;
5910#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005911
5912 /* Can't do this recursively. Can't do it when typing a password. */
5913 if (cmdwin_type != 0
5914# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
5915 || cmdline_star > 0
5916# endif
5917 )
5918 {
5919 beep_flush();
5920 return K_IGNORE;
5921 }
5922
5923 /* Save current window sizes. */
5924 win_size_save(&winsizes);
5925
5926# ifdef FEAT_AUTOCMD
5927 /* Don't execute autocommands while creating the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005928 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005929# endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005930 /* don't use a new tab page */
5931 cmdmod.tab = 0;
5932
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 /* Create a window for the command-line buffer. */
5934 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
5935 {
5936 beep_flush();
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005937# ifdef FEAT_AUTOCMD
5938 unblock_autocmds();
5939# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005940 return K_IGNORE;
5941 }
5942 cmdwin_type = ccline.cmdfirstc;
5943 if (cmdwin_type == NUL)
5944 cmdwin_type = '-';
5945
5946 /* Create the command-line buffer empty. */
5947 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE);
5948 (void)setfname(curbuf, (char_u *)"command-line", NULL, TRUE);
5949 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
5950 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
5951 curbuf->b_p_ma = TRUE;
5952# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00005953 curwin->w_p_rl = cmdmsg_rl;
5954 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955# endif
5956# ifdef FEAT_SCROLLBIND
5957 curwin->w_p_scb = FALSE;
5958# endif
5959
5960# ifdef FEAT_AUTOCMD
5961 /* Do execute autocommands for setting the filetype (load syntax). */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005962 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963# endif
5964
Bram Moolenaar46152342005-09-07 21:18:43 +00005965 /* Showing the prompt may have set need_wait_return, reset it. */
5966 need_wait_return = FALSE;
5967
Bram Moolenaar071d4272004-06-13 20:20:40 +00005968 histtype = hist_char2type(ccline.cmdfirstc);
5969 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
5970 {
5971 if (p_wc == TAB)
5972 {
5973 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
5974 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
5975 }
5976 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
5977 }
5978
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00005979 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
5980 * sets 'textwidth' to 78). */
5981 curbuf->b_p_tw = 0;
5982
Bram Moolenaar071d4272004-06-13 20:20:40 +00005983 /* Fill the buffer with the history. */
5984 init_history();
5985 if (hislen > 0)
5986 {
5987 i = hisidx[histtype];
5988 if (i >= 0)
5989 {
5990 lnum = 0;
5991 do
5992 {
5993 if (++i == hislen)
5994 i = 0;
5995 if (history[histtype][i].hisstr != NULL)
5996 ml_append(lnum++, history[histtype][i].hisstr,
5997 (colnr_T)0, FALSE);
5998 }
5999 while (i != hisidx[histtype]);
6000 }
6001 }
6002
6003 /* Replace the empty last line with the current command-line and put the
6004 * cursor there. */
6005 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
6006 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6007 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00006008 changed_line_abv_curs();
6009 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00006010 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006011
6012 /* Save the command line info, can be used recursively. */
6013 save_ccline = ccline;
6014 ccline.cmdbuff = NULL;
6015 ccline.cmdprompt = NULL;
6016
6017 /* No Ex mode here! */
6018 exmode_active = 0;
6019
6020 State = NORMAL;
6021# ifdef FEAT_MOUSE
6022 setmouse();
6023# endif
6024
6025# ifdef FEAT_AUTOCMD
6026 /* Trigger CmdwinEnter autocommands. */
6027 typestr[0] = cmdwin_type;
6028 typestr[1] = NUL;
6029 apply_autocmds(EVENT_CMDWINENTER, typestr, typestr, FALSE, curbuf);
Bram Moolenaar5495cc92006-08-16 14:23:04 +00006030 if (restart_edit != 0) /* autocmd with ":startinsert" */
6031 stuffcharReadbuff(K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006032# endif
6033
6034 i = RedrawingDisabled;
6035 RedrawingDisabled = 0;
6036
6037 /*
6038 * Call the main loop until <CR> or CTRL-C is typed.
6039 */
6040 cmdwin_result = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00006041 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006042
6043 RedrawingDisabled = i;
6044
6045# ifdef FEAT_AUTOCMD
6046 /* Trigger CmdwinLeave autocommands. */
6047 apply_autocmds(EVENT_CMDWINLEAVE, typestr, typestr, FALSE, curbuf);
6048# endif
6049
Bram Moolenaarccc18222007-05-10 18:25:20 +00006050 /* Restore the command line info. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006051 ccline = save_ccline;
6052 cmdwin_type = 0;
6053
6054 exmode_active = save_exmode;
6055
6056 /* Safety check: The old window or buffer was deleted: It's a a bug when
6057 * this happens! */
6058 if (!win_valid(old_curwin) || !buf_valid(old_curbuf))
6059 {
6060 cmdwin_result = Ctrl_C;
6061 EMSG(_("E199: Active window or buffer deleted"));
6062 }
6063 else
6064 {
6065# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
6066 /* autocmds may abort script processing */
6067 if (aborting() && cmdwin_result != K_IGNORE)
6068 cmdwin_result = Ctrl_C;
6069# endif
6070 /* Set the new command line from the cmdline buffer. */
6071 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00006072 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006073 {
Bram Moolenaar46152342005-09-07 21:18:43 +00006074 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
6075
6076 if (histtype == HIST_CMD)
6077 {
6078 /* Execute the command directly. */
6079 ccline.cmdbuff = vim_strsave((char_u *)p);
6080 cmdwin_result = CAR;
6081 }
6082 else
6083 {
6084 /* First need to cancel what we were doing. */
6085 ccline.cmdbuff = NULL;
6086 stuffcharReadbuff(':');
6087 stuffReadbuff((char_u *)p);
6088 stuffcharReadbuff(CAR);
6089 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090 }
6091 else if (cmdwin_result == K_XF2) /* :qa typed */
6092 {
6093 ccline.cmdbuff = vim_strsave((char_u *)"qa");
6094 cmdwin_result = CAR;
6095 }
6096 else
6097 ccline.cmdbuff = vim_strsave(ml_get_curline());
6098 if (ccline.cmdbuff == NULL)
6099 cmdwin_result = Ctrl_C;
6100 else
6101 {
6102 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
6103 ccline.cmdbufflen = ccline.cmdlen + 1;
6104 ccline.cmdpos = curwin->w_cursor.col;
6105 if (ccline.cmdpos > ccline.cmdlen)
6106 ccline.cmdpos = ccline.cmdlen;
6107 if (cmdwin_result == K_IGNORE)
6108 {
6109 set_cmdspos_cursor();
6110 redrawcmd();
6111 }
6112 }
6113
6114# ifdef FEAT_AUTOCMD
6115 /* Don't execute autocommands while deleting the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006116 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006117# endif
6118 wp = curwin;
6119 bp = curbuf;
6120 win_goto(old_curwin);
6121 win_close(wp, TRUE);
6122 close_buffer(NULL, bp, DOBUF_WIPE);
6123
6124 /* Restore window sizes. */
6125 win_size_restore(&winsizes);
6126
6127# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006128 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006129# endif
6130 }
6131
6132 ga_clear(&winsizes);
6133 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00006134# ifdef FEAT_RIGHTLEFT
6135 cmdmsg_rl = save_cmdmsg_rl;
6136# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006137
6138 State = save_State;
6139# ifdef FEAT_MOUSE
6140 setmouse();
6141# endif
6142
6143 return cmdwin_result;
6144}
6145#endif /* FEAT_CMDWIN */
6146
6147/*
6148 * Used for commands that either take a simple command string argument, or:
6149 * cmd << endmarker
6150 * {script}
6151 * endmarker
6152 * Returns a pointer to allocated memory with {script} or NULL.
6153 */
6154 char_u *
6155script_get(eap, cmd)
6156 exarg_T *eap;
6157 char_u *cmd;
6158{
6159 char_u *theline;
6160 char *end_pattern = NULL;
6161 char dot[] = ".";
6162 garray_T ga;
6163
6164 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
6165 return NULL;
6166
6167 ga_init2(&ga, 1, 0x400);
6168
6169 if (cmd[2] != NUL)
6170 end_pattern = (char *)skipwhite(cmd + 2);
6171 else
6172 end_pattern = dot;
6173
6174 for (;;)
6175 {
6176 theline = eap->getline(
6177#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00006178 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00006179#endif
6180 NUL, eap->cookie, 0);
6181
6182 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
6183 break;
6184
6185 ga_concat(&ga, theline);
6186 ga_append(&ga, '\n');
6187 vim_free(theline);
6188 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00006189 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006190
6191 return (char_u *)ga.ga_data;
6192}