blob: c9760d1dba9d377415a72a6da1f6e15bef150897 [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 */
Bram Moolenaar30405d32008-01-02 20:55:27 +0000338
339 /* Get a character. Ignore K_IGNORE, it should not do anything, such
340 * as stop completion. */
341 do
342 {
343 c = safe_vgetc();
344 } while (c == K_IGNORE);
345
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346 if (KeyTyped)
347 {
348 some_key_typed = TRUE;
349#ifdef FEAT_RIGHTLEFT
350 if (cmd_hkmap)
351 c = hkmap(c);
352# ifdef FEAT_FKMAP
353 if (cmd_fkmap)
354 c = cmdl_fkmap(c);
355# endif
356 if (cmdmsg_rl && !KeyStuffed)
357 {
358 /* Invert horizontal movements and operations. Only when
359 * typed by the user directly, not when the result of a
360 * mapping. */
361 switch (c)
362 {
363 case K_RIGHT: c = K_LEFT; break;
364 case K_S_RIGHT: c = K_S_LEFT; break;
365 case K_C_RIGHT: c = K_C_LEFT; break;
366 case K_LEFT: c = K_RIGHT; break;
367 case K_S_LEFT: c = K_S_RIGHT; break;
368 case K_C_LEFT: c = K_C_RIGHT; break;
369 }
370 }
371#endif
372 }
373
374 /*
375 * Ignore got_int when CTRL-C was typed here.
376 * Don't ignore it in :global, we really need to break then, e.g., for
377 * ":g/pat/normal /pat" (without the <CR>).
378 * Don't ignore it for the input() function.
379 */
380 if ((c == Ctrl_C
381#ifdef UNIX
382 || c == intr_char
383#endif
384 )
385#if defined(FEAT_EVAL) || defined(FEAT_CRYPT)
386 && firstc != '@'
387#endif
388#ifdef FEAT_EVAL
389 && !break_ctrl_c
390#endif
391 && !global_busy)
392 got_int = FALSE;
393
394#ifdef FEAT_CMDHIST
395 /* free old command line when finished moving around in the history
396 * list */
397 if (lookfor != NULL
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000398 && c != K_S_DOWN && c != K_S_UP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000399 && c != K_DOWN && c != K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400 && c != K_PAGEDOWN && c != K_PAGEUP
401 && c != K_KPAGEDOWN && c != K_KPAGEUP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000402 && c != K_LEFT && c != K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N)))
404 {
405 vim_free(lookfor);
406 lookfor = NULL;
407 }
408#endif
409
410 /*
411 * <S-Tab> works like CTRL-P (unless 'wc' is <S-Tab>).
412 */
413 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles != -1)
414 c = Ctrl_P;
415
416#ifdef FEAT_WILDMENU
417 /* Special translations for 'wildmenu' */
418 if (did_wild_list && p_wmnu)
419 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000420 if (c == K_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421 c = Ctrl_P;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000422 else if (c == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423 c = Ctrl_N;
424 }
425 /* Hitting CR after "emenu Name.": complete submenu */
426 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu
427 && ccline.cmdpos > 1
428 && ccline.cmdbuff[ccline.cmdpos - 1] == '.'
429 && ccline.cmdbuff[ccline.cmdpos - 2] != '\\'
430 && (c == '\n' || c == '\r' || c == K_KENTER))
431 c = K_DOWN;
432#endif
433
434 /* free expanded names when finished walking through matches */
435 if (xpc.xp_numfiles != -1
436 && !(c == p_wc && KeyTyped) && c != p_wcm
437 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A
438 && c != Ctrl_L)
439 {
440 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
441 did_wild_list = FALSE;
442#ifdef FEAT_WILDMENU
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000443 if (!p_wmnu || (c != K_UP && c != K_DOWN))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444#endif
445 xpc.xp_context = EXPAND_NOTHING;
446 wim_index = 0;
447#ifdef FEAT_WILDMENU
448 if (p_wmnu && wild_menu_showing != 0)
449 {
450 int skt = KeyTyped;
Bram Moolenaar1e015462005-09-25 22:16:38 +0000451 int old_RedrawingDisabled = RedrawingDisabled;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000452
453 if (ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000454 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000455
456 if (wild_menu_showing == WM_SCROLLED)
457 {
458 /* Entered command line, move it up */
459 cmdline_row--;
460 redrawcmd();
461 }
462 else if (save_p_ls != -1)
463 {
464 /* restore 'laststatus' and 'winminheight' */
465 p_ls = save_p_ls;
466 p_wmh = save_p_wmh;
467 last_status(FALSE);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000468 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469 update_screen(VALID); /* redraw the screen NOW */
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000470 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471 redrawcmd();
472 save_p_ls = -1;
473 }
474 else
475 {
476# ifdef FEAT_VERTSPLIT
477 win_redraw_last_status(topframe);
478# else
479 lastwin->w_redr_status = TRUE;
480# endif
481 redraw_statuslines();
482 }
483 KeyTyped = skt;
484 wild_menu_showing = 0;
Bram Moolenaar1e015462005-09-25 22:16:38 +0000485 if (ccline.input_fn)
486 RedrawingDisabled = old_RedrawingDisabled;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000487 }
488#endif
489 }
490
491#ifdef FEAT_WILDMENU
492 /* Special translations for 'wildmenu' */
493 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu)
494 {
495 /* Hitting <Down> after "emenu Name.": complete submenu */
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000496 if (c == K_DOWN && ccline.cmdpos > 0
497 && ccline.cmdbuff[ccline.cmdpos - 1] == '.')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498 c = p_wc;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000499 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 {
501 /* Hitting <Up>: Remove one submenu name in front of the
502 * cursor */
503 int found = FALSE;
504
505 j = (int)(xpc.xp_pattern - ccline.cmdbuff);
506 i = 0;
507 while (--j > 0)
508 {
509 /* check for start of menu name */
510 if (ccline.cmdbuff[j] == ' '
511 && ccline.cmdbuff[j - 1] != '\\')
512 {
513 i = j + 1;
514 break;
515 }
516 /* check for start of submenu name */
517 if (ccline.cmdbuff[j] == '.'
518 && ccline.cmdbuff[j - 1] != '\\')
519 {
520 if (found)
521 {
522 i = j + 1;
523 break;
524 }
525 else
526 found = TRUE;
527 }
528 }
529 if (i > 0)
530 cmdline_del(i);
531 c = p_wc;
532 xpc.xp_context = EXPAND_NOTHING;
533 }
534 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000535 if ((xpc.xp_context == EXPAND_FILES
Bram Moolenaar446cb832008-06-24 21:56:24 +0000536 || xpc.xp_context == EXPAND_DIRECTORIES
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000537 || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538 {
539 char_u upseg[5];
540
541 upseg[0] = PATHSEP;
542 upseg[1] = '.';
543 upseg[2] = '.';
544 upseg[3] = PATHSEP;
545 upseg[4] = NUL;
546
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000547 if (c == K_DOWN
548 && ccline.cmdpos > 0
549 && ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP
550 && (ccline.cmdpos < 3
551 || ccline.cmdbuff[ccline.cmdpos - 2] != '.'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 || ccline.cmdbuff[ccline.cmdpos - 3] != '.'))
553 {
554 /* go down a directory */
555 c = p_wc;
556 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000557 else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558 {
559 /* If in a direct ancestor, strip off one ../ to go down */
560 int found = FALSE;
561
562 j = ccline.cmdpos;
563 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
564 while (--j > i)
565 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000566#ifdef FEAT_MBYTE
567 if (has_mbyte)
568 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
569#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 if (vim_ispathsep(ccline.cmdbuff[j]))
571 {
572 found = TRUE;
573 break;
574 }
575 }
576 if (found
577 && ccline.cmdbuff[j - 1] == '.'
578 && ccline.cmdbuff[j - 2] == '.'
579 && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2))
580 {
581 cmdline_del(j - 2);
582 c = p_wc;
583 }
584 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000585 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 {
587 /* go up a directory */
588 int found = FALSE;
589
590 j = ccline.cmdpos - 1;
591 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
592 while (--j > i)
593 {
594#ifdef FEAT_MBYTE
595 if (has_mbyte)
596 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
597#endif
598 if (vim_ispathsep(ccline.cmdbuff[j])
599#ifdef BACKSLASH_IN_FILENAME
600 && vim_strchr(" *?[{`$%#", ccline.cmdbuff[j + 1])
601 == NULL
602#endif
603 )
604 {
605 if (found)
606 {
607 i = j + 1;
608 break;
609 }
610 else
611 found = TRUE;
612 }
613 }
614
615 if (!found)
616 j = i;
617 else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0)
618 j += 4;
619 else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0
620 && j == i)
621 j += 3;
622 else
623 j = 0;
624 if (j > 0)
625 {
626 /* TODO this is only for DOS/UNIX systems - need to put in
627 * machine-specific stuff here and in upseg init */
628 cmdline_del(j);
629 put_on_cmdline(upseg + 1, 3, FALSE);
630 }
631 else if (ccline.cmdpos > i)
632 cmdline_del(i);
633 c = p_wc;
634 }
635 }
636#if 0 /* If enabled <Down> on a file takes you _completely_ out of wildmenu */
637 if (p_wmnu
638 && (xpc.xp_context == EXPAND_FILES
639 || xpc.xp_context == EXPAND_MENUNAMES)
640 && (c == K_UP || c == K_DOWN))
641 xpc.xp_context = EXPAND_NOTHING;
642#endif
643
644#endif /* FEAT_WILDMENU */
645
646 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert
647 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */
648 if (c == Ctrl_BSL)
649 {
650 ++no_mapping;
651 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000652 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 --no_mapping;
654 --allow_keys;
655 /* CTRL-\ e doesn't work when obtaining an expression. */
656 if (c != Ctrl_N && c != Ctrl_G
657 && (c != 'e' || ccline.cmdfirstc == '='))
658 {
659 vungetc(c);
660 c = Ctrl_BSL;
661 }
662#ifdef FEAT_EVAL
663 else if (c == 'e')
664 {
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000665 char_u *p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666
667 /*
668 * Replace the command line with the result of an expression.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000669 * Need to save and restore the current command line, to be
670 * able to enter a new one...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671 */
672 if (ccline.cmdpos == ccline.cmdlen)
673 new_cmdpos = 99999; /* keep it at the end */
674 else
675 new_cmdpos = ccline.cmdpos;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000676
677 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000679 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680 if (c == '=')
681 {
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000682 /* Need to save and restore ccline. And set "textlock"
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000683 * to avoid nasty things like going to another buffer when
684 * evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000685 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000686 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 p = get_expr_line();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000688 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000689 restore_cmdline(&save_ccline);
690
691 if (p != NULL && realloc_cmdbuff((int)STRLEN(p) + 1) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000693 ccline.cmdlen = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 STRCPY(ccline.cmdbuff, p);
695 vim_free(p);
696
697 /* Restore the cursor or use the position set with
698 * set_cmdline_pos(). */
699 if (new_cmdpos > ccline.cmdlen)
700 ccline.cmdpos = ccline.cmdlen;
701 else
702 ccline.cmdpos = new_cmdpos;
703
704 KeyTyped = FALSE; /* Don't do p_wc completion. */
705 redrawcmd();
706 goto cmdline_changed;
707 }
708 }
709 beep_flush();
710 c = ESC;
711 }
712#endif
713 else
714 {
715 if (c == Ctrl_G && p_im && restart_edit == 0)
716 restart_edit = 'a';
717 gotesc = TRUE; /* will free ccline.cmdbuff after putting it
718 in history */
719 goto returncmd; /* back to Normal mode */
720 }
721 }
722
723#ifdef FEAT_CMDWIN
724 if (c == cedit_key || c == K_CMDWIN)
725 {
726 /*
727 * Open a window to edit the command line (and history).
728 */
729 c = ex_window();
730 some_key_typed = TRUE;
731 }
732# ifdef FEAT_DIGRAPHS
733 else
734# endif
735#endif
736#ifdef FEAT_DIGRAPHS
737 c = do_digraph(c);
738#endif
739
740 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC
741 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL)))
742 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000743 /* In Ex mode a backslash escapes a newline. */
744 if (exmode_active
745 && c != ESC
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000746 && ccline.cmdpos == ccline.cmdlen
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000747 && ccline.cmdpos > 0
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000748 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000750 if (c == K_KENTER)
751 c = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000753 else
754 {
755 gotesc = FALSE; /* Might have typed ESC previously, don't
756 truncate the cmdline now. */
757 if (ccheck_abbr(c + ABBR_OFF))
758 goto cmdline_changed;
759 if (!cmd_silent)
760 {
761 windgoto(msg_row, 0);
762 out_flush();
763 }
764 break;
765 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 }
767
768 /*
769 * Completion for 'wildchar' or 'wildcharm' key.
770 * - hitting <ESC> twice means: abandon command line.
771 * - wildcard expansion is only done when the 'wildchar' key is really
772 * typed, not when it comes from a macro
773 */
774 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm)
775 {
776 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */
777 {
778 /* if 'wildmode' contains "list" may still need to list */
779 if (xpc.xp_numfiles > 1
780 && !did_wild_list
781 && (wim_flags[wim_index] & WIM_LIST))
782 {
783 (void)showmatches(&xpc, FALSE);
784 redrawcmd();
785 did_wild_list = TRUE;
786 }
787 if (wim_flags[wim_index] & WIM_LONGEST)
788 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP);
789 else if (wim_flags[wim_index] & WIM_FULL)
790 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP);
791 else
792 res = OK; /* don't insert 'wildchar' now */
793 }
794 else /* typed p_wc first time */
795 {
796 wim_index = 0;
797 j = ccline.cmdpos;
798 /* if 'wildmode' first contains "longest", get longest
799 * common part */
800 if (wim_flags[0] & WIM_LONGEST)
801 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP);
802 else
803 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP);
804
805 /* if interrupted while completing, behave like it failed */
806 if (got_int)
807 {
808 (void)vpeekc(); /* remove <C-C> from input stream */
809 got_int = FALSE; /* don't abandon the command line */
810 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
811#ifdef FEAT_WILDMENU
812 xpc.xp_context = EXPAND_NOTHING;
813#endif
814 goto cmdline_changed;
815 }
816
817 /* when more than one match, and 'wildmode' first contains
818 * "list", or no change and 'wildmode' contains "longest,list",
819 * list all matches */
820 if (res == OK && xpc.xp_numfiles > 1)
821 {
822 /* a "longest" that didn't do anything is skipped (but not
823 * "list:longest") */
824 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j)
825 wim_index = 1;
826 if ((wim_flags[wim_index] & WIM_LIST)
827#ifdef FEAT_WILDMENU
828 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0)
829#endif
830 )
831 {
832 if (!(wim_flags[0] & WIM_LONGEST))
833 {
834#ifdef FEAT_WILDMENU
835 int p_wmnu_save = p_wmnu;
836 p_wmnu = 0;
837#endif
838 nextwild(&xpc, WILD_PREV, 0); /* remove match */
839#ifdef FEAT_WILDMENU
840 p_wmnu = p_wmnu_save;
841#endif
842 }
843#ifdef FEAT_WILDMENU
844 (void)showmatches(&xpc, p_wmnu
845 && ((wim_flags[wim_index] & WIM_LIST) == 0));
846#else
847 (void)showmatches(&xpc, FALSE);
848#endif
849 redrawcmd();
850 did_wild_list = TRUE;
851 if (wim_flags[wim_index] & WIM_LONGEST)
852 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP);
853 else if (wim_flags[wim_index] & WIM_FULL)
854 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP);
855 }
856 else
857 vim_beep();
858 }
859#ifdef FEAT_WILDMENU
860 else if (xpc.xp_numfiles == -1)
861 xpc.xp_context = EXPAND_NOTHING;
862#endif
863 }
864 if (wim_index < 3)
865 ++wim_index;
866 if (c == ESC)
867 gotesc = TRUE;
868 if (res == OK)
869 goto cmdline_changed;
870 }
871
872 gotesc = FALSE;
873
874 /* <S-Tab> goes to last match, in a clumsy way */
875 if (c == K_S_TAB && KeyTyped)
876 {
877 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0) == OK
878 && nextwild(&xpc, WILD_PREV, 0) == OK
879 && nextwild(&xpc, WILD_PREV, 0) == OK)
880 goto cmdline_changed;
881 }
882
883 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */
884 c = NL;
885
886 do_abbr = TRUE; /* default: check for abbreviation */
887
888 /*
889 * Big switch for a typed command line character.
890 */
891 switch (c)
892 {
893 case K_BS:
894 case Ctrl_H:
895 case K_DEL:
896 case K_KDEL:
897 case Ctrl_W:
898#ifdef FEAT_FKMAP
899 if (cmd_fkmap && c == K_BS)
900 c = K_DEL;
901#endif
902 if (c == K_KDEL)
903 c = K_DEL;
904
905 /*
906 * delete current character is the same as backspace on next
907 * character, except at end of line
908 */
909 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen)
910 ++ccline.cmdpos;
911#ifdef FEAT_MBYTE
912 if (has_mbyte && c == K_DEL)
913 ccline.cmdpos += mb_off_next(ccline.cmdbuff,
914 ccline.cmdbuff + ccline.cmdpos);
915#endif
916 if (ccline.cmdpos > 0)
917 {
918 char_u *p;
919
920 j = ccline.cmdpos;
921 p = ccline.cmdbuff + j;
922#ifdef FEAT_MBYTE
923 if (has_mbyte)
924 {
925 p = mb_prevptr(ccline.cmdbuff, p);
926 if (c == Ctrl_W)
927 {
928 while (p > ccline.cmdbuff && vim_isspace(*p))
929 p = mb_prevptr(ccline.cmdbuff, p);
930 i = mb_get_class(p);
931 while (p > ccline.cmdbuff && mb_get_class(p) == i)
932 p = mb_prevptr(ccline.cmdbuff, p);
933 if (mb_get_class(p) != i)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000934 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 }
936 }
937 else
938#endif
939 if (c == Ctrl_W)
940 {
941 while (p > ccline.cmdbuff && vim_isspace(p[-1]))
942 --p;
943 i = vim_iswordc(p[-1]);
944 while (p > ccline.cmdbuff && !vim_isspace(p[-1])
945 && vim_iswordc(p[-1]) == i)
946 --p;
947 }
948 else
949 --p;
950 ccline.cmdpos = (int)(p - ccline.cmdbuff);
951 ccline.cmdlen -= j - ccline.cmdpos;
952 i = ccline.cmdpos;
953 while (i < ccline.cmdlen)
954 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
955
956 /* Truncate at the end, required for multi-byte chars. */
957 ccline.cmdbuff[ccline.cmdlen] = NUL;
958 redrawcmd();
959 }
960 else if (ccline.cmdlen == 0 && c != Ctrl_W
961 && ccline.cmdprompt == NULL && indent == 0)
962 {
963 /* In ex and debug mode it doesn't make sense to return. */
964 if (exmode_active
965#ifdef FEAT_EVAL
966 || ccline.cmdfirstc == '>'
967#endif
968 )
969 goto cmdline_not_changed;
970
971 vim_free(ccline.cmdbuff); /* no commandline to return */
972 ccline.cmdbuff = NULL;
973 if (!cmd_silent)
974 {
975#ifdef FEAT_RIGHTLEFT
976 if (cmdmsg_rl)
977 msg_col = Columns;
978 else
979#endif
980 msg_col = 0;
981 msg_putchar(' '); /* delete ':' */
982 }
983 redraw_cmdline = TRUE;
984 goto returncmd; /* back to cmd mode */
985 }
986 goto cmdline_changed;
987
988 case K_INS:
989 case K_KINS:
990#ifdef FEAT_FKMAP
991 /* if Farsi mode set, we are in reverse insert mode -
992 Do not change the mode */
993 if (cmd_fkmap)
994 beep_flush();
995 else
996#endif
997 ccline.overstrike = !ccline.overstrike;
998#ifdef CURSOR_SHAPE
999 ui_cursor_shape(); /* may show different cursor shape */
1000#endif
1001 goto cmdline_not_changed;
1002
1003 case Ctrl_HAT:
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00001004 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 {
1006 /* ":lmap" mappings exists, toggle use of mappings. */
1007 State ^= LANGMAP;
1008#ifdef USE_IM_CONTROL
1009 im_set_active(FALSE); /* Disable input method */
1010#endif
1011 if (b_im_ptr != NULL)
1012 {
1013 if (State & LANGMAP)
1014 *b_im_ptr = B_IMODE_LMAP;
1015 else
1016 *b_im_ptr = B_IMODE_NONE;
1017 }
1018 }
1019#ifdef USE_IM_CONTROL
1020 else
1021 {
1022 /* There are no ":lmap" mappings, toggle IM. When
1023 * 'imdisable' is set don't try getting the status, it's
1024 * always off. */
1025 if ((p_imdisable && b_im_ptr != NULL)
1026 ? *b_im_ptr == B_IMODE_IM : im_get_status())
1027 {
1028 im_set_active(FALSE); /* Disable input method */
1029 if (b_im_ptr != NULL)
1030 *b_im_ptr = B_IMODE_NONE;
1031 }
1032 else
1033 {
1034 im_set_active(TRUE); /* Enable input method */
1035 if (b_im_ptr != NULL)
1036 *b_im_ptr = B_IMODE_IM;
1037 }
1038 }
1039#endif
1040 if (b_im_ptr != NULL)
1041 {
1042 if (b_im_ptr == &curbuf->b_p_iminsert)
1043 set_iminsert_global();
1044 else
1045 set_imsearch_global();
1046 }
1047#ifdef CURSOR_SHAPE
1048 ui_cursor_shape(); /* may show different cursor shape */
1049#endif
1050#if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
1051 /* Show/unshow value of 'keymap' in status lines later. */
1052 status_redraw_curbuf();
1053#endif
1054 goto cmdline_not_changed;
1055
1056/* case '@': only in very old vi */
1057 case Ctrl_U:
1058 /* delete all characters left of the cursor */
1059 j = ccline.cmdpos;
1060 ccline.cmdlen -= j;
1061 i = ccline.cmdpos = 0;
1062 while (i < ccline.cmdlen)
1063 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1064 /* Truncate at the end, required for multi-byte chars. */
1065 ccline.cmdbuff[ccline.cmdlen] = NUL;
1066 redrawcmd();
1067 goto cmdline_changed;
1068
1069#ifdef FEAT_CLIPBOARD
1070 case Ctrl_Y:
1071 /* Copy the modeless selection, if there is one. */
1072 if (clip_star.state != SELECT_CLEARED)
1073 {
1074 if (clip_star.state == SELECT_DONE)
1075 clip_copy_modeless_selection(TRUE);
1076 goto cmdline_not_changed;
1077 }
1078 break;
1079#endif
1080
1081 case ESC: /* get here if p_wc != ESC or when ESC typed twice */
1082 case Ctrl_C:
Bram Moolenaarf4d11452005-12-02 00:46:37 +00001083 /* In exmode it doesn't make sense to return. Except when
Bram Moolenaar7c626922005-02-07 22:01:03 +00001084 * ":normal" runs out of characters. */
1085 if (exmode_active
1086#ifdef FEAT_EX_EXTRA
1087 && (ex_normal_busy == 0 || typebuf.tb_len > 0)
1088#endif
1089 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090 goto cmdline_not_changed;
1091
1092 gotesc = TRUE; /* will free ccline.cmdbuff after
1093 putting it in history */
1094 goto returncmd; /* back to cmd mode */
1095
1096 case Ctrl_R: /* insert register */
1097#ifdef USE_ON_FLY_SCROLL
1098 dont_scroll = TRUE; /* disallow scrolling here */
1099#endif
1100 putcmdline('"', TRUE);
1101 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001102 i = c = plain_vgetc(); /* CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 if (i == Ctrl_O)
1104 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */
1105 if (i == Ctrl_R)
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001106 c = plain_vgetc(); /* CTRL-R CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107 --no_mapping;
1108#ifdef FEAT_EVAL
1109 /*
1110 * Insert the result of an expression.
1111 * Need to save the current command line, to be able to enter
1112 * a new one...
1113 */
1114 new_cmdpos = -1;
1115 if (c == '=')
1116 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117 if (ccline.cmdfirstc == '=')/* can't do this recursively */
1118 {
1119 beep_flush();
1120 c = ESC;
1121 }
1122 else
1123 {
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001124 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001126 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127 }
1128 }
1129#endif
1130 if (c != ESC) /* use ESC to cancel inserting register */
1131 {
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001132 cmdline_paste(c, i == Ctrl_R, FALSE);
Bram Moolenaaracf53452005-12-17 22:06:52 +00001133
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001134#ifdef FEAT_EVAL
Bram Moolenaaracf53452005-12-17 22:06:52 +00001135 /* When there was a serious error abort getting the
1136 * command line. */
1137 if (aborting())
1138 {
1139 gotesc = TRUE; /* will free ccline.cmdbuff after
1140 putting it in history */
1141 goto returncmd; /* back to cmd mode */
1142 }
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001143#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 KeyTyped = FALSE; /* Don't do p_wc completion. */
1145#ifdef FEAT_EVAL
1146 if (new_cmdpos >= 0)
1147 {
1148 /* set_cmdline_pos() was used */
1149 if (new_cmdpos > ccline.cmdlen)
1150 ccline.cmdpos = ccline.cmdlen;
1151 else
1152 ccline.cmdpos = new_cmdpos;
1153 }
1154#endif
1155 }
1156 redrawcmd();
1157 goto cmdline_changed;
1158
1159 case Ctrl_D:
1160 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING)
1161 break; /* Use ^D as normal char instead */
1162
1163 redrawcmd();
1164 continue; /* don't do incremental search now */
1165
1166 case K_RIGHT:
1167 case K_S_RIGHT:
1168 case K_C_RIGHT:
1169 do
1170 {
1171 if (ccline.cmdpos >= ccline.cmdlen)
1172 break;
1173 i = cmdline_charsize(ccline.cmdpos);
1174 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows)
1175 break;
1176 ccline.cmdspos += i;
1177#ifdef FEAT_MBYTE
1178 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001179 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180 + ccline.cmdpos);
1181 else
1182#endif
1183 ++ccline.cmdpos;
1184 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001185 while ((c == K_S_RIGHT || c == K_C_RIGHT
1186 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 && ccline.cmdbuff[ccline.cmdpos] != ' ');
1188#ifdef FEAT_MBYTE
1189 if (has_mbyte)
1190 set_cmdspos_cursor();
1191#endif
1192 goto cmdline_not_changed;
1193
1194 case K_LEFT:
1195 case K_S_LEFT:
1196 case K_C_LEFT:
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001197 if (ccline.cmdpos == 0)
1198 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 do
1200 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 --ccline.cmdpos;
1202#ifdef FEAT_MBYTE
1203 if (has_mbyte) /* move to first byte of char */
1204 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff,
1205 ccline.cmdbuff + ccline.cmdpos);
1206#endif
1207 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos);
1208 }
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001209 while (ccline.cmdpos > 0
1210 && (c == K_S_LEFT || c == K_C_LEFT
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001211 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 && ccline.cmdbuff[ccline.cmdpos - 1] != ' ');
1213#ifdef FEAT_MBYTE
1214 if (has_mbyte)
1215 set_cmdspos_cursor();
1216#endif
1217 goto cmdline_not_changed;
1218
1219 case K_IGNORE:
Bram Moolenaar30405d32008-01-02 20:55:27 +00001220 /* Ignore mouse event or ex_window() result. */
1221 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222
Bram Moolenaar4770d092006-01-12 23:22:24 +00001223#ifdef FEAT_GUI_W32
1224 /* On Win32 ignore <M-F4>, we get it when closing the window was
1225 * cancelled. */
1226 case K_F4:
1227 if (mod_mask == MOD_MASK_ALT)
1228 {
1229 redrawcmd(); /* somehow the cmdline is cleared */
1230 goto cmdline_not_changed;
1231 }
1232 break;
1233#endif
1234
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235#ifdef FEAT_MOUSE
1236 case K_MIDDLEDRAG:
1237 case K_MIDDLERELEASE:
1238 goto cmdline_not_changed; /* Ignore mouse */
1239
1240 case K_MIDDLEMOUSE:
1241# ifdef FEAT_GUI
1242 /* When GUI is active, also paste when 'mouse' is empty */
1243 if (!gui.in_use)
1244# endif
1245 if (!mouse_has(MOUSE_COMMAND))
1246 goto cmdline_not_changed; /* Ignore mouse */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001247# ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 if (clip_star.available)
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001249 cmdline_paste('*', TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250 else
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001251# endif
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001252 cmdline_paste(0, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 redrawcmd();
1254 goto cmdline_changed;
1255
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001256# ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 case K_DROP:
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001258 cmdline_paste('~', TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 redrawcmd();
1260 goto cmdline_changed;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001261# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262
1263 case K_LEFTDRAG:
1264 case K_LEFTRELEASE:
1265 case K_RIGHTDRAG:
1266 case K_RIGHTRELEASE:
1267 /* Ignore drag and release events when the button-down wasn't
1268 * seen before. */
1269 if (ignore_drag_release)
1270 goto cmdline_not_changed;
1271 /* FALLTHROUGH */
1272 case K_LEFTMOUSE:
1273 case K_RIGHTMOUSE:
1274 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE)
1275 ignore_drag_release = TRUE;
1276 else
1277 ignore_drag_release = FALSE;
1278# ifdef FEAT_GUI
1279 /* When GUI is active, also move when 'mouse' is empty */
1280 if (!gui.in_use)
1281# endif
1282 if (!mouse_has(MOUSE_COMMAND))
1283 goto cmdline_not_changed; /* Ignore mouse */
1284# ifdef FEAT_CLIPBOARD
1285 if (mouse_row < cmdline_row && clip_star.available)
1286 {
1287 int button, is_click, is_drag;
1288
1289 /*
1290 * Handle modeless selection.
1291 */
1292 button = get_mouse_button(KEY2TERMCAP1(c),
1293 &is_click, &is_drag);
1294 if (mouse_model_popup() && button == MOUSE_LEFT
1295 && (mod_mask & MOD_MASK_SHIFT))
1296 {
1297 /* Translate shift-left to right button. */
1298 button = MOUSE_RIGHT;
1299 mod_mask &= ~MOD_MASK_SHIFT;
1300 }
1301 clip_modeless(button, is_click, is_drag);
1302 goto cmdline_not_changed;
1303 }
1304# endif
1305
1306 set_cmdspos();
1307 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen;
1308 ++ccline.cmdpos)
1309 {
1310 i = cmdline_charsize(ccline.cmdpos);
1311 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns
1312 && mouse_col < ccline.cmdspos % Columns + i)
1313 break;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001314# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 if (has_mbyte)
1316 {
1317 /* Count ">" for double-wide char that doesn't fit. */
1318 correct_cmdspos(ccline.cmdpos, i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001319 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 + ccline.cmdpos) - 1;
1321 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001322# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 ccline.cmdspos += i;
1324 }
1325 goto cmdline_not_changed;
1326
1327 /* Mouse scroll wheel: ignored here */
1328 case K_MOUSEDOWN:
1329 case K_MOUSEUP:
1330 /* Alternate buttons ignored here */
1331 case K_X1MOUSE:
1332 case K_X1DRAG:
1333 case K_X1RELEASE:
1334 case K_X2MOUSE:
1335 case K_X2DRAG:
1336 case K_X2RELEASE:
1337 goto cmdline_not_changed;
1338
1339#endif /* FEAT_MOUSE */
1340
1341#ifdef FEAT_GUI
1342 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */
1343 case K_LEFTRELEASE_NM:
1344 goto cmdline_not_changed;
1345
1346 case K_VER_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001347 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 {
1349 gui_do_scroll();
1350 redrawcmd();
1351 }
1352 goto cmdline_not_changed;
1353
1354 case K_HOR_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001355 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356 {
1357 gui_do_horiz_scroll();
1358 redrawcmd();
1359 }
1360 goto cmdline_not_changed;
1361#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001362#ifdef FEAT_GUI_TABLINE
1363 case K_TABLINE:
1364 case K_TABMENU:
1365 /* Don't want to change any tabs here. Make sure the same tab
1366 * is still selected. */
1367 if (gui_use_tabline())
1368 gui_mch_set_curtab(tabpage_index(curtab));
1369 goto cmdline_not_changed;
1370#endif
1371
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 case K_SELECT: /* end of Select mode mapping - ignore */
1373 goto cmdline_not_changed;
1374
1375 case Ctrl_B: /* begin of command line */
1376 case K_HOME:
1377 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 case K_S_HOME:
1379 case K_C_HOME:
1380 ccline.cmdpos = 0;
1381 set_cmdspos();
1382 goto cmdline_not_changed;
1383
1384 case Ctrl_E: /* end of command line */
1385 case K_END:
1386 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387 case K_S_END:
1388 case K_C_END:
1389 ccline.cmdpos = ccline.cmdlen;
1390 set_cmdspos_cursor();
1391 goto cmdline_not_changed;
1392
1393 case Ctrl_A: /* all matches */
1394 if (nextwild(&xpc, WILD_ALL, 0) == FAIL)
1395 break;
1396 goto cmdline_changed;
1397
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001398 case Ctrl_L:
1399#ifdef FEAT_SEARCH_EXTRA
1400 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1401 {
1402 /* Add a character from under the cursor for 'incsearch' */
1403 if (did_incsearch
1404 && !equalpos(curwin->w_cursor, old_cursor))
1405 {
1406 c = gchar_cursor();
1407 if (c != NUL)
Bram Moolenaar93db9752006-11-21 10:29:45 +00001408 {
1409 if (c == firstc || vim_strchr((char_u *)(
1410 p_magic ? "\\^$.*[" : "\\^$"), c)
1411 != NULL)
1412 {
1413 /* put a backslash before special characters */
1414 stuffcharReadbuff(c);
1415 c = '\\';
1416 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001417 break;
Bram Moolenaar93db9752006-11-21 10:29:45 +00001418 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001419 }
1420 goto cmdline_not_changed;
1421 }
1422#endif
1423
1424 /* completion: longest common part */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 if (nextwild(&xpc, WILD_LONGEST, 0) == FAIL)
1426 break;
1427 goto cmdline_changed;
1428
1429 case Ctrl_N: /* next match */
1430 case Ctrl_P: /* previous match */
1431 if (xpc.xp_numfiles > 0)
1432 {
1433 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT, 0)
1434 == FAIL)
1435 break;
1436 goto cmdline_changed;
1437 }
1438
1439#ifdef FEAT_CMDHIST
1440 case K_UP:
1441 case K_DOWN:
1442 case K_S_UP:
1443 case K_S_DOWN:
1444 case K_PAGEUP:
1445 case K_KPAGEUP:
1446 case K_PAGEDOWN:
1447 case K_KPAGEDOWN:
1448 if (hislen == 0 || firstc == NUL) /* no history */
1449 goto cmdline_not_changed;
1450
1451 i = hiscnt;
1452
1453 /* save current command string so it can be restored later */
1454 if (lookfor == NULL)
1455 {
1456 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL)
1457 goto cmdline_not_changed;
1458 lookfor[ccline.cmdpos] = NUL;
1459 }
1460
1461 j = (int)STRLEN(lookfor);
1462 for (;;)
1463 {
1464 /* one step backwards */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001465 if (c == K_UP|| c == K_S_UP || c == Ctrl_P
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001466 || c == K_PAGEUP || c == K_KPAGEUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467 {
1468 if (hiscnt == hislen) /* first time */
1469 hiscnt = hisidx[histype];
1470 else if (hiscnt == 0 && hisidx[histype] != hislen - 1)
1471 hiscnt = hislen - 1;
1472 else if (hiscnt != hisidx[histype] + 1)
1473 --hiscnt;
1474 else /* at top of list */
1475 {
1476 hiscnt = i;
1477 break;
1478 }
1479 }
1480 else /* one step forwards */
1481 {
1482 /* on last entry, clear the line */
1483 if (hiscnt == hisidx[histype])
1484 {
1485 hiscnt = hislen;
1486 break;
1487 }
1488
1489 /* not on a history line, nothing to do */
1490 if (hiscnt == hislen)
1491 break;
1492 if (hiscnt == hislen - 1) /* wrap around */
1493 hiscnt = 0;
1494 else
1495 ++hiscnt;
1496 }
1497 if (hiscnt < 0 || history[histype][hiscnt].hisstr == NULL)
1498 {
1499 hiscnt = i;
1500 break;
1501 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001502 if ((c != K_UP && c != K_DOWN)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001503 || hiscnt == i
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 || STRNCMP(history[histype][hiscnt].hisstr,
1505 lookfor, (size_t)j) == 0)
1506 break;
1507 }
1508
1509 if (hiscnt != i) /* jumped to other entry */
1510 {
1511 char_u *p;
1512 int len;
1513 int old_firstc;
1514
1515 vim_free(ccline.cmdbuff);
1516 if (hiscnt == hislen)
1517 p = lookfor; /* back to the old one */
1518 else
1519 p = history[histype][hiscnt].hisstr;
1520
1521 if (histype == HIST_SEARCH
1522 && p != lookfor
1523 && (old_firstc = p[STRLEN(p) + 1]) != firstc)
1524 {
1525 /* Correct for the separator character used when
1526 * adding the history entry vs the one used now.
1527 * First loop: count length.
1528 * Second loop: copy the characters. */
1529 for (i = 0; i <= 1; ++i)
1530 {
1531 len = 0;
1532 for (j = 0; p[j] != NUL; ++j)
1533 {
1534 /* Replace old sep with new sep, unless it is
1535 * escaped. */
1536 if (p[j] == old_firstc
1537 && (j == 0 || p[j - 1] != '\\'))
1538 {
1539 if (i > 0)
1540 ccline.cmdbuff[len] = firstc;
1541 }
1542 else
1543 {
1544 /* Escape new sep, unless it is already
1545 * escaped. */
1546 if (p[j] == firstc
1547 && (j == 0 || p[j - 1] != '\\'))
1548 {
1549 if (i > 0)
1550 ccline.cmdbuff[len] = '\\';
1551 ++len;
1552 }
1553 if (i > 0)
1554 ccline.cmdbuff[len] = p[j];
1555 }
1556 ++len;
1557 }
1558 if (i == 0)
1559 {
1560 alloc_cmdbuff(len);
1561 if (ccline.cmdbuff == NULL)
1562 goto returncmd;
1563 }
1564 }
1565 ccline.cmdbuff[len] = NUL;
1566 }
1567 else
1568 {
1569 alloc_cmdbuff((int)STRLEN(p));
1570 if (ccline.cmdbuff == NULL)
1571 goto returncmd;
1572 STRCPY(ccline.cmdbuff, p);
1573 }
1574
1575 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
1576 redrawcmd();
1577 goto cmdline_changed;
1578 }
1579 beep_flush();
1580 goto cmdline_not_changed;
1581#endif
1582
1583 case Ctrl_V:
1584 case Ctrl_Q:
1585#ifdef FEAT_MOUSE
1586 ignore_drag_release = TRUE;
1587#endif
1588 putcmdline('^', TRUE);
1589 c = get_literal(); /* get next (two) character(s) */
1590 do_abbr = FALSE; /* don't do abbreviation now */
1591#ifdef FEAT_MBYTE
1592 /* may need to remove ^ when composing char was typed */
1593 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent)
1594 {
1595 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
1596 msg_putchar(' ');
1597 cursorcmd();
1598 }
1599#endif
1600 break;
1601
1602#ifdef FEAT_DIGRAPHS
1603 case Ctrl_K:
1604#ifdef FEAT_MOUSE
1605 ignore_drag_release = TRUE;
1606#endif
1607 putcmdline('?', TRUE);
1608#ifdef USE_ON_FLY_SCROLL
1609 dont_scroll = TRUE; /* disallow scrolling here */
1610#endif
1611 c = get_digraph(TRUE);
1612 if (c != NUL)
1613 break;
1614
1615 redrawcmd();
1616 goto cmdline_not_changed;
1617#endif /* FEAT_DIGRAPHS */
1618
1619#ifdef FEAT_RIGHTLEFT
1620 case Ctrl__: /* CTRL-_: switch language mode */
1621 if (!p_ari)
1622 break;
1623#ifdef FEAT_FKMAP
1624 if (p_altkeymap)
1625 {
1626 cmd_fkmap = !cmd_fkmap;
1627 if (cmd_fkmap) /* in Farsi always in Insert mode */
1628 ccline.overstrike = FALSE;
1629 }
1630 else /* Hebrew is default */
1631#endif
1632 cmd_hkmap = !cmd_hkmap;
1633 goto cmdline_not_changed;
1634#endif
1635
1636 default:
1637#ifdef UNIX
1638 if (c == intr_char)
1639 {
1640 gotesc = TRUE; /* will free ccline.cmdbuff after
1641 putting it in history */
1642 goto returncmd; /* back to Normal mode */
1643 }
1644#endif
1645 /*
1646 * Normal character with no special meaning. Just set mod_mask
1647 * to 0x0 so that typing Shift-Space in the GUI doesn't enter
1648 * the string <S-Space>. This should only happen after ^V.
1649 */
1650 if (!IS_SPECIAL(c))
1651 mod_mask = 0x0;
1652 break;
1653 }
1654 /*
1655 * End of switch on command line character.
1656 * We come here if we have a normal character.
1657 */
1658
1659 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && ccheck_abbr(
1660#ifdef FEAT_MBYTE
1661 /* Add ABBR_OFF for characters above 0x100, this is
1662 * what check_abbr() expects. */
1663 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
1664#endif
1665 c))
1666 goto cmdline_changed;
1667
1668 /*
1669 * put the character in the command line
1670 */
1671 if (IS_SPECIAL(c) || mod_mask != 0)
1672 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE);
1673 else
1674 {
1675#ifdef FEAT_MBYTE
1676 if (has_mbyte)
1677 {
1678 j = (*mb_char2bytes)(c, IObuff);
1679 IObuff[j] = NUL; /* exclude composing chars */
1680 put_on_cmdline(IObuff, j, TRUE);
1681 }
1682 else
1683#endif
1684 {
1685 IObuff[0] = c;
1686 put_on_cmdline(IObuff, 1, TRUE);
1687 }
1688 }
1689 goto cmdline_changed;
1690
1691/*
1692 * This part implements incremental searches for "/" and "?"
1693 * Jump to cmdline_not_changed when a character has been read but the command
1694 * line did not change. Then we only search and redraw if something changed in
1695 * the past.
1696 * Jump to cmdline_changed when the command line did change.
1697 * (Sorry for the goto's, I know it is ugly).
1698 */
1699cmdline_not_changed:
1700#ifdef FEAT_SEARCH_EXTRA
1701 if (!incsearch_postponed)
1702 continue;
1703#endif
1704
1705cmdline_changed:
1706#ifdef FEAT_SEARCH_EXTRA
1707 /*
1708 * 'incsearch' highlighting.
1709 */
1710 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1711 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001712 pos_T end_pos;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001713#ifdef FEAT_RELTIME
1714 proftime_T tm;
1715#endif
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001716
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 /* if there is a character waiting, search and redraw later */
1718 if (char_avail())
1719 {
1720 incsearch_postponed = TRUE;
1721 continue;
1722 }
1723 incsearch_postponed = FALSE;
1724 curwin->w_cursor = old_cursor; /* start at old position */
1725
1726 /* If there is no command line, don't do anything */
1727 if (ccline.cmdlen == 0)
1728 i = 0;
1729 else
1730 {
1731 cursor_off(); /* so the user knows we're busy */
1732 out_flush();
1733 ++emsg_off; /* So it doesn't beep if bad expr */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001734#ifdef FEAT_RELTIME
1735 /* Set the time limit to half a second. */
1736 profile_setlimit(500L, &tm);
1737#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738 i = do_search(NULL, firstc, ccline.cmdbuff, count,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001739 SEARCH_KEEP + SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK,
1740#ifdef FEAT_RELTIME
1741 &tm
1742#else
1743 NULL
1744#endif
1745 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 --emsg_off;
1747 /* if interrupted while searching, behave like it failed */
1748 if (got_int)
1749 {
1750 (void)vpeekc(); /* remove <C-C> from input stream */
1751 got_int = FALSE; /* don't abandon the command line */
1752 i = 0;
1753 }
1754 else if (char_avail())
1755 /* cancelled searching because a char was typed */
1756 incsearch_postponed = TRUE;
1757 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001758 if (i != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 highlight_match = TRUE; /* highlight position */
1760 else
1761 highlight_match = FALSE; /* remove highlight */
1762
1763 /* first restore the old curwin values, so the screen is
1764 * positioned in the same way as the actual search command */
1765 curwin->w_leftcol = old_leftcol;
1766 curwin->w_topline = old_topline;
1767# ifdef FEAT_DIFF
1768 curwin->w_topfill = old_topfill;
1769# endif
1770 curwin->w_botline = old_botline;
1771 changed_cline_bef_curs();
1772 update_topline();
1773
1774 if (i != 0)
1775 {
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001776 pos_T save_pos = curwin->w_cursor;
1777
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778 /*
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001779 * First move cursor to end of match, then to the start. This
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 * moves the whole match onto the screen when 'nowrap' is set.
1781 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 curwin->w_cursor.lnum += search_match_lines;
1783 curwin->w_cursor.col = search_match_endcol;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001784 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
1785 {
1786 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
1787 coladvance((colnr_T)MAXCOL);
1788 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 validate_cursor();
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001790 end_pos = curwin->w_cursor;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001791 curwin->w_cursor = save_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 }
Bram Moolenaardb552d602006-03-23 22:59:57 +00001793 else
1794 end_pos = curwin->w_cursor; /* shutup gcc 4 */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001795
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796 validate_cursor();
Bram Moolenaar27a23192006-09-14 09:27:26 +00001797# ifdef FEAT_WINDOWS
1798 /* May redraw the status line to show the cursor position. */
1799 if (p_ru && curwin->w_status_height > 0)
1800 curwin->w_redr_status = TRUE;
1801# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00001803 save_cmdline(&save_ccline);
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001804 update_screen(SOME_VALID);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00001805 restore_cmdline(&save_ccline);
1806
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001807 /* Leave it at the end to make CTRL-R CTRL-W work. */
1808 if (i != 0)
1809 curwin->w_cursor = end_pos;
1810
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 msg_starthere();
1812 redrawcmdline();
1813 did_incsearch = TRUE;
1814 }
1815#else /* FEAT_SEARCH_EXTRA */
1816 ;
1817#endif
1818
1819#ifdef FEAT_RIGHTLEFT
1820 if (cmdmsg_rl
1821# ifdef FEAT_ARABIC
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001822 || (p_arshape && !p_tbidi && enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823# endif
1824 )
1825 /* Always redraw the whole command line to fix shaping and
1826 * right-left typing. Not efficient, but it works. */
1827 redrawcmd();
1828#endif
1829 }
1830
1831returncmd:
1832
1833#ifdef FEAT_RIGHTLEFT
1834 cmdmsg_rl = FALSE;
1835#endif
1836
1837#ifdef FEAT_FKMAP
1838 cmd_fkmap = 0;
1839#endif
1840
1841 ExpandCleanup(&xpc);
1842
1843#ifdef FEAT_SEARCH_EXTRA
1844 if (did_incsearch)
1845 {
1846 curwin->w_cursor = old_cursor;
1847 curwin->w_curswant = old_curswant;
1848 curwin->w_leftcol = old_leftcol;
1849 curwin->w_topline = old_topline;
1850# ifdef FEAT_DIFF
1851 curwin->w_topfill = old_topfill;
1852# endif
1853 curwin->w_botline = old_botline;
1854 highlight_match = FALSE;
1855 validate_cursor(); /* needed for TAB */
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001856 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 }
1858#endif
1859
1860 if (ccline.cmdbuff != NULL)
1861 {
1862 /*
1863 * Put line in history buffer (":" and "=" only when it was typed).
1864 */
1865#ifdef FEAT_CMDHIST
1866 if (ccline.cmdlen && firstc != NUL
1867 && (some_key_typed || histype == HIST_SEARCH))
1868 {
1869 add_to_history(histype, ccline.cmdbuff, TRUE,
1870 histype == HIST_SEARCH ? firstc : NUL);
1871 if (firstc == ':')
1872 {
1873 vim_free(new_last_cmdline);
1874 new_last_cmdline = vim_strsave(ccline.cmdbuff);
1875 }
1876 }
1877#endif
1878
1879 if (gotesc) /* abandon command line */
1880 {
1881 vim_free(ccline.cmdbuff);
1882 ccline.cmdbuff = NULL;
1883 if (msg_scrolled == 0)
1884 compute_cmdrow();
1885 MSG("");
1886 redraw_cmdline = TRUE;
1887 }
1888 }
1889
1890 /*
1891 * If the screen was shifted up, redraw the whole screen (later).
1892 * If the line is too long, clear it, so ruler and shown command do
1893 * not get printed in the middle of it.
1894 */
1895 msg_check();
1896 msg_scroll = save_msg_scroll;
1897 redir_off = FALSE;
1898
1899 /* When the command line was typed, no need for a wait-return prompt. */
1900 if (some_key_typed)
1901 need_wait_return = FALSE;
1902
1903 State = save_State;
1904#ifdef USE_IM_CONTROL
1905 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP)
1906 im_save_status(b_im_ptr);
1907 im_set_active(FALSE);
1908#endif
1909#ifdef FEAT_MOUSE
1910 setmouse();
1911#endif
1912#ifdef CURSOR_SHAPE
1913 ui_cursor_shape(); /* may show different cursor shape */
1914#endif
1915
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001916 {
1917 char_u *p = ccline.cmdbuff;
1918
1919 /* Make ccline empty, getcmdline() may try to use it. */
1920 ccline.cmdbuff = NULL;
1921 return p;
1922 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923}
1924
1925#if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO)
1926/*
1927 * Get a command line with a prompt.
1928 * This is prepared to be called recursively from getcmdline() (e.g. by
1929 * f_input() when evaluating an expression from CTRL-R =).
1930 * Returns the command line in allocated memory, or NULL.
1931 */
1932 char_u *
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001933getcmdline_prompt(firstc, prompt, attr, xp_context, xp_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 int firstc;
1935 char_u *prompt; /* command line prompt */
1936 int attr; /* attributes for prompt */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001937 int xp_context; /* type of expansion */
1938 char_u *xp_arg; /* user-defined expansion argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939{
1940 char_u *s;
1941 struct cmdline_info save_ccline;
1942 int msg_col_save = msg_col;
1943
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001944 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 ccline.cmdprompt = prompt;
1946 ccline.cmdattr = attr;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001947# ifdef FEAT_EVAL
1948 ccline.xp_context = xp_context;
1949 ccline.xp_arg = xp_arg;
1950 ccline.input_fn = (firstc == '@');
1951# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 s = getcmdline(firstc, 1L, 0);
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001953 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 /* Restore msg_col, the prompt from input() may have changed it. */
1955 msg_col = msg_col_save;
1956
1957 return s;
1958}
1959#endif
1960
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001961/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001962 * Return TRUE when the text must not be changed and we can't switch to
1963 * another window or buffer. Used when editing the command line, evaluating
1964 * 'balloonexpr', etc.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001965 */
1966 int
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001967text_locked()
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001968{
1969#ifdef FEAT_CMDWIN
1970 if (cmdwin_type != 0)
1971 return TRUE;
1972#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001973 return textlock != 0;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001974}
1975
1976/*
1977 * Give an error message for a command that isn't allowed while the cmdline
1978 * window is open or editing the cmdline in another way.
1979 */
1980 void
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001981text_locked_msg()
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001982{
1983#ifdef FEAT_CMDWIN
1984 if (cmdwin_type != 0)
1985 EMSG(_(e_cmdwin));
1986 else
1987#endif
1988 EMSG(_(e_secure));
1989}
1990
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001991#if defined(FEAT_AUTOCMD) || defined(PROTO)
1992/*
1993 * Check if "curbuf_lock" is set and return TRUE when it is and give an error
1994 * message.
1995 */
1996 int
1997curbuf_locked()
1998{
1999 if (curbuf_lock > 0)
2000 {
2001 EMSG(_("E788: Not allowed to edit another buffer now"));
2002 return TRUE;
2003 }
2004 return FALSE;
2005}
2006#endif
2007
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008 static int
2009cmdline_charsize(idx)
2010 int idx;
2011{
2012#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2013 if (cmdline_star > 0) /* showing '*', always 1 position */
2014 return 1;
2015#endif
2016 return ptr2cells(ccline.cmdbuff + idx);
2017}
2018
2019/*
2020 * Compute the offset of the cursor on the command line for the prompt and
2021 * indent.
2022 */
2023 static void
2024set_cmdspos()
2025{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002026 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027 ccline.cmdspos = 1 + ccline.cmdindent;
2028 else
2029 ccline.cmdspos = 0 + ccline.cmdindent;
2030}
2031
2032/*
2033 * Compute the screen position for the cursor on the command line.
2034 */
2035 static void
2036set_cmdspos_cursor()
2037{
2038 int i, m, c;
2039
2040 set_cmdspos();
2041 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002042 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002044 if (m < 0) /* overflow, Columns or Rows at weird value */
2045 m = MAXCOL;
2046 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047 else
2048 m = MAXCOL;
2049 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
2050 {
2051 c = cmdline_charsize(i);
2052#ifdef FEAT_MBYTE
2053 /* Count ">" for double-wide multi-byte char that doesn't fit. */
2054 if (has_mbyte)
2055 correct_cmdspos(i, c);
2056#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00002057 /* If the cmdline doesn't fit, show cursor on last visible char.
2058 * Don't move the cursor itself, so we can still append. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 if ((ccline.cmdspos += c) >= m)
2060 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 ccline.cmdspos -= c;
2062 break;
2063 }
2064#ifdef FEAT_MBYTE
2065 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002066 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067#endif
2068 }
2069}
2070
2071#ifdef FEAT_MBYTE
2072/*
2073 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2074 * character that doesn't fit, so that a ">" must be displayed.
2075 */
2076 static void
2077correct_cmdspos(idx, cells)
2078 int idx;
2079 int cells;
2080{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002081 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2083 && ccline.cmdspos % Columns + cells > Columns)
2084 ccline.cmdspos++;
2085}
2086#endif
2087
2088/*
2089 * Get an Ex command line for the ":" command.
2090 */
2091/* ARGSUSED */
2092 char_u *
2093getexline(c, dummy, indent)
2094 int c; /* normally ':', NUL for ":append" */
2095 void *dummy; /* cookie not used */
2096 int indent; /* indent for inside conditionals */
2097{
2098 /* When executing a register, remove ':' that's in front of each line. */
2099 if (exec_from_reg && vpeekc() == ':')
2100 (void)vgetc();
2101 return getcmdline(c, 1L, indent);
2102}
2103
2104/*
2105 * Get an Ex command line for Ex mode.
2106 * In Ex mode we only use the OS supplied line editing features and no
2107 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002108 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 */
2110/* ARGSUSED */
2111 char_u *
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002112getexmodeline(promptc, dummy, indent)
2113 int promptc; /* normally ':', NUL for ":append" and '?' for
2114 :s prompt */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115 void *dummy; /* cookie not used */
2116 int indent; /* indent for inside conditionals */
2117{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002118 garray_T line_ga;
2119 char_u *pend;
2120 int startcol = 0;
Bram Moolenaar76624232007-07-28 12:21:47 +00002121 int c1 = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002122 int escaped = FALSE; /* CTRL-V typed */
2123 int vcol = 0;
2124 char_u *p;
Bram Moolenaar76624232007-07-28 12:21:47 +00002125 int prev_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126
2127 /* Switch cursor on now. This avoids that it happens after the "\n", which
2128 * confuses the system function that computes tabstops. */
2129 cursor_on();
2130
2131 /* always start in column 0; write a newline if necessary */
2132 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002133 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002135 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002137 /* indent that is only displayed, not in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002138 if (p_prompt)
2139 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 while (indent-- > 0)
2141 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143 }
2144
2145 ga_init2(&line_ga, 1, 30);
2146
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002147 /* autoindent for :insert and :append is in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002148 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002149 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002150 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002151 while (indent >= 8)
2152 {
2153 ga_append(&line_ga, TAB);
2154 msg_puts((char_u *)" ");
2155 indent -= 8;
2156 }
2157 while (indent-- > 0)
2158 {
2159 ga_append(&line_ga, ' ');
2160 msg_putchar(' ');
2161 }
2162 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002163 ++no_mapping;
2164 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002165
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 /*
2167 * Get the line, one character at a time.
2168 */
2169 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002170 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 {
2172 if (ga_grow(&line_ga, 40) == FAIL)
2173 break;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002174 pend = (char_u *)line_ga.ga_data + line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002176 /* Get one character at a time. Don't use inchar(), it can't handle
2177 * special characters. */
Bram Moolenaar76624232007-07-28 12:21:47 +00002178 prev_char = c1;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002179 c1 = vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180
2181 /*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002182 * Handle line editing.
2183 * Previously this was left to the system, putting the terminal in
2184 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002186 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002188 msg_putchar('\n');
2189 break;
2190 }
2191
2192 if (!escaped)
2193 {
2194 /* CR typed means "enter", which is NL */
2195 if (c1 == '\r')
2196 c1 = '\n';
2197
2198 if (c1 == BS || c1 == K_BS
2199 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002201 if (line_ga.ga_len > 0)
2202 {
2203 --line_ga.ga_len;
2204 goto redraw;
2205 }
2206 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207 }
2208
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002209 if (c1 == Ctrl_U)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002211 msg_col = startcol;
2212 msg_clr_eos();
2213 line_ga.ga_len = 0;
2214 continue;
2215 }
2216
2217 if (c1 == Ctrl_T)
2218 {
2219 p = (char_u *)line_ga.ga_data;
2220 p[line_ga.ga_len] = NUL;
2221 indent = get_indent_str(p, 8);
2222 indent += curbuf->b_p_sw - indent % curbuf->b_p_sw;
2223add_indent:
2224 while (get_indent_str(p, 8) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002226 char_u *s = skipwhite(p);
2227
2228 ga_grow(&line_ga, 1);
2229 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2230 *s = ' ';
2231 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002233redraw:
2234 /* redraw the line */
2235 msg_col = startcol;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002236 vcol = 0;
2237 for (p = (char_u *)line_ga.ga_data;
2238 p < (char_u *)line_ga.ga_data + line_ga.ga_len; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002240 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002242 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002244 msg_putchar(' ');
2245 } while (++vcol % 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002247 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002249 msg_outtrans_len(p, 1);
2250 vcol += char2cells(*p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 }
2252 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002253 msg_clr_eos();
Bram Moolenaar76624232007-07-28 12:21:47 +00002254 windgoto(msg_row, msg_col);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002255 continue;
2256 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002258 if (c1 == Ctrl_D)
2259 {
2260 /* Delete one shiftwidth. */
2261 p = (char_u *)line_ga.ga_data;
2262 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002264 if (prev_char == '^')
2265 ex_keep_indent = TRUE;
2266 indent = 0;
2267 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002268 }
2269 else
2270 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002271 p[line_ga.ga_len] = NUL;
2272 indent = get_indent_str(p, 8);
2273 --indent;
2274 indent -= indent % curbuf->b_p_sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002276 while (get_indent_str(p, 8) > indent)
2277 {
2278 char_u *s = skipwhite(p);
2279
2280 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2281 --line_ga.ga_len;
2282 }
2283 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002285
2286 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2287 {
2288 escaped = TRUE;
2289 continue;
2290 }
2291
2292 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
2293 if (IS_SPECIAL(c1))
2294 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002296
2297 if (IS_SPECIAL(c1))
2298 c1 = '?';
2299 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002300 if (c1 == '\n')
2301 msg_putchar('\n');
2302 else if (c1 == TAB)
2303 {
2304 /* Don't use chartabsize(), 'ts' can be different */
2305 do
2306 {
2307 msg_putchar(' ');
2308 } while (++vcol % 8);
2309 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002312 msg_outtrans_len(
2313 ((char_u *)line_ga.ga_data) + line_ga.ga_len, 1);
2314 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002316 ++line_ga.ga_len;
2317 escaped = FALSE;
2318
2319 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002320 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002321
2322 /* we are done when a NL is entered, but not when it comes after a
2323 * backslash */
2324 if (line_ga.ga_len > 0 && pend[-1] == '\n'
2325 && (line_ga.ga_len <= 1 || pend[-2] != '\\'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327 --line_ga.ga_len;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002328 --pend;
2329 *pend = NUL;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002330 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 }
2332 }
2333
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002334 --no_mapping;
2335 --allow_keys;
2336
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 /* make following messages go to the next line */
2338 msg_didout = FALSE;
2339 msg_col = 0;
2340 if (msg_row < Rows - 1)
2341 ++msg_row;
2342 emsg_on_display = FALSE; /* don't want ui_delay() */
2343
2344 if (got_int)
2345 ga_clear(&line_ga);
2346
2347 return (char_u *)line_ga.ga_data;
2348}
2349
Bram Moolenaare344bea2005-09-01 20:46:49 +00002350# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
2351 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352/*
2353 * Return TRUE if ccline.overstrike is on.
2354 */
2355 int
2356cmdline_overstrike()
2357{
2358 return ccline.overstrike;
2359}
2360
2361/*
2362 * Return TRUE if the cursor is at the end of the cmdline.
2363 */
2364 int
2365cmdline_at_end()
2366{
2367 return (ccline.cmdpos >= ccline.cmdlen);
2368}
2369#endif
2370
Bram Moolenaar9372a112005-12-06 19:59:18 +00002371#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372/*
2373 * Return the virtual column number at the current cursor position.
2374 * This is used by the IM code to obtain the start of the preedit string.
2375 */
2376 colnr_T
2377cmdline_getvcol_cursor()
2378{
2379 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
2380 return MAXCOL;
2381
2382# ifdef FEAT_MBYTE
2383 if (has_mbyte)
2384 {
2385 colnr_T col;
2386 int i = 0;
2387
2388 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002389 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390
2391 return col;
2392 }
2393 else
2394# endif
2395 return ccline.cmdpos;
2396}
2397#endif
2398
2399#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2400/*
2401 * If part of the command line is an IM preedit string, redraw it with
2402 * IM feedback attributes. The cursor position is restored after drawing.
2403 */
2404 static void
2405redrawcmd_preedit()
2406{
2407 if ((State & CMDLINE)
2408 && xic != NULL
Bram Moolenaar494c82a2006-09-14 08:25:49 +00002409 /* && im_get_status() doesn't work when using SCIM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 && !p_imdisable
2411 && im_is_preediting())
2412 {
2413 int cmdpos = 0;
2414 int cmdspos;
2415 int old_row;
2416 int old_col;
2417 colnr_T col;
2418
2419 old_row = msg_row;
2420 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002421 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422
2423# ifdef FEAT_MBYTE
2424 if (has_mbyte)
2425 {
2426 for (col = 0; col < preedit_start_col
2427 && cmdpos < ccline.cmdlen; ++col)
2428 {
2429 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002430 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 }
2432 }
2433 else
2434# endif
2435 {
2436 cmdspos += preedit_start_col;
2437 cmdpos += preedit_start_col;
2438 }
2439
2440 msg_row = cmdline_row + (cmdspos / (int)Columns);
2441 msg_col = cmdspos % (int)Columns;
2442 if (msg_row >= Rows)
2443 msg_row = Rows - 1;
2444
2445 for (col = 0; cmdpos < ccline.cmdlen; ++col)
2446 {
2447 int char_len;
2448 int char_attr;
2449
2450 char_attr = im_get_feedback_attr(col);
2451 if (char_attr < 0)
2452 break; /* end of preedit string */
2453
2454# ifdef FEAT_MBYTE
2455 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002456 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 else
2458# endif
2459 char_len = 1;
2460
2461 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
2462 cmdpos += char_len;
2463 }
2464
2465 msg_row = old_row;
2466 msg_col = old_col;
2467 }
2468}
2469#endif /* FEAT_XIM && FEAT_GUI_GTK */
2470
2471/*
2472 * Allocate a new command line buffer.
2473 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
2474 * Returns the new value of ccline.cmdbuff and ccline.cmdbufflen.
2475 */
2476 static void
2477alloc_cmdbuff(len)
2478 int len;
2479{
2480 /*
2481 * give some extra space to avoid having to allocate all the time
2482 */
2483 if (len < 80)
2484 len = 100;
2485 else
2486 len += 20;
2487
2488 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */
2489 ccline.cmdbufflen = len;
2490}
2491
2492/*
2493 * Re-allocate the command line to length len + something extra.
2494 * return FAIL for failure, OK otherwise
2495 */
2496 static int
2497realloc_cmdbuff(len)
2498 int len;
2499{
2500 char_u *p;
2501
2502 p = ccline.cmdbuff;
2503 alloc_cmdbuff(len); /* will get some more */
2504 if (ccline.cmdbuff == NULL) /* out of memory */
2505 {
2506 ccline.cmdbuff = p; /* keep the old one */
2507 return FAIL;
2508 }
2509 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen + 1);
2510 vim_free(p);
2511 return OK;
2512}
2513
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002514#if defined(FEAT_ARABIC) || defined(PROTO)
2515static char_u *arshape_buf = NULL;
2516
2517# if defined(EXITFREE) || defined(PROTO)
2518 void
2519free_cmdline_buf()
2520{
2521 vim_free(arshape_buf);
2522}
2523# endif
2524#endif
2525
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526/*
2527 * Draw part of the cmdline at the current cursor position. But draw stars
2528 * when cmdline_star is TRUE.
2529 */
2530 static void
2531draw_cmdline(start, len)
2532 int start;
2533 int len;
2534{
2535#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2536 int i;
2537
2538 if (cmdline_star > 0)
2539 for (i = 0; i < len; ++i)
2540 {
2541 msg_putchar('*');
2542# ifdef FEAT_MBYTE
2543 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002544 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545# endif
2546 }
2547 else
2548#endif
2549#ifdef FEAT_ARABIC
2550 if (p_arshape && !p_tbidi && enc_utf8 && len > 0)
2551 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552 static int buflen = 0;
2553 char_u *p;
2554 int j;
2555 int newlen = 0;
2556 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00002557 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 int prev_c = 0;
2559 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002560 int u8c;
2561 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563
2564 /*
2565 * Do arabic shaping into a temporary buffer. This is very
2566 * inefficient!
2567 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002568 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569 {
2570 /* Re-allocate the buffer. We keep it around to avoid a lot of
2571 * alloc()/free() calls. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002572 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002573 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002574 arshape_buf = alloc(buflen);
2575 if (arshape_buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 return; /* out of memory */
2577 }
2578
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002579 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
2580 {
2581 /* Prepend a space to draw the leading composing char on. */
2582 arshape_buf[0] = ' ';
2583 newlen = 1;
2584 }
2585
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586 for (j = start; j < start + len; j += mb_l)
2587 {
2588 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002589 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002590 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591 if (ARABIC_CHAR(u8c))
2592 {
2593 /* Do Arabic shaping. */
2594 if (cmdmsg_rl)
2595 {
2596 /* displaying from right to left */
2597 pc = prev_c;
2598 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002599 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 if (j + mb_l >= start + len)
2601 nc = NUL;
2602 else
2603 nc = utf_ptr2char(p + mb_l);
2604 }
2605 else
2606 {
2607 /* displaying from left to right */
2608 if (j + mb_l >= start + len)
2609 pc = NUL;
2610 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002611 {
2612 int pcc[MAX_MCO];
2613
2614 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002616 pc1 = pcc[0];
2617 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618 nc = prev_c;
2619 }
2620 prev_c = u8c;
2621
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002622 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002624 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002625 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002627 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
2628 if (u8cc[1] != 0)
2629 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002630 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631 }
2632 }
2633 else
2634 {
2635 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002636 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 newlen += mb_l;
2638 }
2639 }
2640
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002641 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 }
2643 else
2644#endif
2645 msg_outtrans_len(ccline.cmdbuff + start, len);
2646}
2647
2648/*
2649 * Put a character on the command line. Shifts the following text to the
2650 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
2651 * "c" must be printable (fit in one display cell)!
2652 */
2653 void
2654putcmdline(c, shift)
2655 int c;
2656 int shift;
2657{
2658 if (cmd_silent)
2659 return;
2660 msg_no_more = TRUE;
2661 msg_putchar(c);
2662 if (shift)
2663 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2664 msg_no_more = FALSE;
2665 cursorcmd();
2666}
2667
2668/*
2669 * Undo a putcmdline(c, FALSE).
2670 */
2671 void
2672unputcmdline()
2673{
2674 if (cmd_silent)
2675 return;
2676 msg_no_more = TRUE;
2677 if (ccline.cmdlen == ccline.cmdpos)
2678 msg_putchar(' ');
2679 else
2680 draw_cmdline(ccline.cmdpos, 1);
2681 msg_no_more = FALSE;
2682 cursorcmd();
2683}
2684
2685/*
2686 * Put the given string, of the given length, onto the command line.
2687 * If len is -1, then STRLEN() is used to calculate the length.
2688 * If 'redraw' is TRUE then the new part of the command line, and the remaining
2689 * part will be redrawn, otherwise it will not. If this function is called
2690 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
2691 * called afterwards.
2692 */
2693 int
2694put_on_cmdline(str, len, redraw)
2695 char_u *str;
2696 int len;
2697 int redraw;
2698{
2699 int retval;
2700 int i;
2701 int m;
2702 int c;
2703
2704 if (len < 0)
2705 len = (int)STRLEN(str);
2706
2707 /* Check if ccline.cmdbuff needs to be longer */
2708 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
2709 retval = realloc_cmdbuff(ccline.cmdlen + len);
2710 else
2711 retval = OK;
2712 if (retval == OK)
2713 {
2714 if (!ccline.overstrike)
2715 {
2716 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2717 ccline.cmdbuff + ccline.cmdpos,
2718 (size_t)(ccline.cmdlen - ccline.cmdpos));
2719 ccline.cmdlen += len;
2720 }
2721 else
2722 {
2723#ifdef FEAT_MBYTE
2724 if (has_mbyte)
2725 {
2726 /* Count nr of characters in the new string. */
2727 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002728 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729 ++m;
2730 /* Count nr of bytes in cmdline that are overwritten by these
2731 * characters. */
2732 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002733 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734 --m;
2735 if (i < ccline.cmdlen)
2736 {
2737 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2738 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
2739 ccline.cmdlen += ccline.cmdpos + len - i;
2740 }
2741 else
2742 ccline.cmdlen = ccline.cmdpos + len;
2743 }
2744 else
2745#endif
2746 if (ccline.cmdpos + len > ccline.cmdlen)
2747 ccline.cmdlen = ccline.cmdpos + len;
2748 }
2749 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
2750 ccline.cmdbuff[ccline.cmdlen] = NUL;
2751
2752#ifdef FEAT_MBYTE
2753 if (enc_utf8)
2754 {
2755 /* When the inserted text starts with a composing character,
2756 * backup to the character before it. There could be two of them.
2757 */
2758 i = 0;
2759 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
2760 while (ccline.cmdpos > 0 && utf_iscomposing(c))
2761 {
2762 i = (*mb_head_off)(ccline.cmdbuff,
2763 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
2764 ccline.cmdpos -= i;
2765 len += i;
2766 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
2767 }
2768# ifdef FEAT_ARABIC
2769 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
2770 {
2771 /* Check the previous character for Arabic combining pair. */
2772 i = (*mb_head_off)(ccline.cmdbuff,
2773 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
2774 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
2775 + ccline.cmdpos - i), c))
2776 {
2777 ccline.cmdpos -= i;
2778 len += i;
2779 }
2780 else
2781 i = 0;
2782 }
2783# endif
2784 if (i != 0)
2785 {
2786 /* Also backup the cursor position. */
2787 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
2788 ccline.cmdspos -= i;
2789 msg_col -= i;
2790 if (msg_col < 0)
2791 {
2792 msg_col += Columns;
2793 --msg_row;
2794 }
2795 }
2796 }
2797#endif
2798
2799 if (redraw && !cmd_silent)
2800 {
2801 msg_no_more = TRUE;
2802 i = cmdline_row;
2803 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2804 /* Avoid clearing the rest of the line too often. */
2805 if (cmdline_row != i || ccline.overstrike)
2806 msg_clr_eos();
2807 msg_no_more = FALSE;
2808 }
2809#ifdef FEAT_FKMAP
2810 /*
2811 * If we are in Farsi command mode, the character input must be in
2812 * Insert mode. So do not advance the cmdpos.
2813 */
2814 if (!cmd_fkmap)
2815#endif
2816 {
2817 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002818 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002820 if (m < 0) /* overflow, Columns or Rows at weird value */
2821 m = MAXCOL;
2822 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823 else
2824 m = MAXCOL;
2825 for (i = 0; i < len; ++i)
2826 {
2827 c = cmdline_charsize(ccline.cmdpos);
2828#ifdef FEAT_MBYTE
2829 /* count ">" for a double-wide char that doesn't fit. */
2830 if (has_mbyte)
2831 correct_cmdspos(ccline.cmdpos, c);
2832#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00002833 /* Stop cursor at the end of the screen, but do increment the
2834 * insert position, so that entering a very long command
2835 * works, even though you can't see it. */
2836 if (ccline.cmdspos + c < m)
2837 ccline.cmdspos += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838#ifdef FEAT_MBYTE
2839 if (has_mbyte)
2840 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002841 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002842 if (c > len - i - 1)
2843 c = len - i - 1;
2844 ccline.cmdpos += c;
2845 i += c;
2846 }
2847#endif
2848 ++ccline.cmdpos;
2849 }
2850 }
2851 }
2852 if (redraw)
2853 msg_check();
2854 return retval;
2855}
2856
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002857static struct cmdline_info prev_ccline;
2858static int prev_ccline_used = FALSE;
2859
2860/*
2861 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
2862 * and overwrite it. But get_cmdline_str() may need it, thus make it
2863 * available globally in prev_ccline.
2864 */
2865 static void
2866save_cmdline(ccp)
2867 struct cmdline_info *ccp;
2868{
2869 if (!prev_ccline_used)
2870 {
2871 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info));
2872 prev_ccline_used = TRUE;
2873 }
2874 *ccp = prev_ccline;
2875 prev_ccline = ccline;
2876 ccline.cmdbuff = NULL;
2877 ccline.cmdprompt = NULL;
2878}
2879
2880/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00002881 * Restore ccline after it has been saved with save_cmdline().
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002882 */
2883 static void
2884restore_cmdline(ccp)
2885 struct cmdline_info *ccp;
2886{
2887 ccline = prev_ccline;
2888 prev_ccline = *ccp;
2889}
2890
Bram Moolenaar5a305422006-04-28 22:38:25 +00002891#if defined(FEAT_EVAL) || defined(PROTO)
2892/*
2893 * Save the command line into allocated memory. Returns a pointer to be
2894 * passed to restore_cmdline_alloc() later.
2895 * Returns NULL when failed.
2896 */
2897 char_u *
2898save_cmdline_alloc()
2899{
2900 struct cmdline_info *p;
2901
2902 p = (struct cmdline_info *)alloc((unsigned)sizeof(struct cmdline_info));
2903 if (p != NULL)
2904 save_cmdline(p);
2905 return (char_u *)p;
2906}
2907
2908/*
2909 * Restore the command line from the return value of save_cmdline_alloc().
2910 */
2911 void
2912restore_cmdline_alloc(p)
2913 char_u *p;
2914{
2915 if (p != NULL)
2916 {
2917 restore_cmdline((struct cmdline_info *)p);
2918 vim_free(p);
2919 }
2920}
2921#endif
2922
Bram Moolenaar8299df92004-07-10 09:47:34 +00002923/*
2924 * paste a yank register into the command line.
2925 * used by CTRL-R command in command-line mode
2926 * insert_reg() can't be used here, because special characters from the
2927 * register contents will be interpreted as commands.
2928 *
2929 * return FAIL for failure, OK otherwise
2930 */
2931 static int
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00002932cmdline_paste(regname, literally, remcr)
Bram Moolenaar8299df92004-07-10 09:47:34 +00002933 int regname;
2934 int literally; /* Insert text literally instead of "as typed" */
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00002935 int remcr; /* remove trailing CR */
Bram Moolenaar8299df92004-07-10 09:47:34 +00002936{
2937 long i;
2938 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002939 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00002940 int allocated;
2941 struct cmdline_info save_ccline;
2942
2943 /* check for valid regname; also accept special characters for CTRL-R in
2944 * the command line */
2945 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
2946 && regname != Ctrl_A && !valid_yank_reg(regname, FALSE))
2947 return FAIL;
2948
2949 /* A register containing CTRL-R can cause an endless loop. Allow using
2950 * CTRL-C to break the loop. */
2951 line_breakcheck();
2952 if (got_int)
2953 return FAIL;
2954
2955#ifdef FEAT_CLIPBOARD
2956 regname = may_get_selection(regname);
2957#endif
2958
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002959 /* Need to save and restore ccline. And set "textlock" to avoid nasty
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002960 * things like going to another buffer when evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002961 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002962 ++textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00002963 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002964 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002965 restore_cmdline(&save_ccline);
Bram Moolenaar8299df92004-07-10 09:47:34 +00002966
2967 if (i)
2968 {
2969 /* Got the value of a special register in "arg". */
2970 if (arg == NULL)
2971 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002972
2973 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
2974 * part of the word. */
2975 p = arg;
2976 if (p_is && regname == Ctrl_W)
2977 {
2978 char_u *w;
2979 int len;
2980
2981 /* Locate start of last word in the cmd buffer. */
2982 for (w = ccline.cmdbuff + ccline.cmdlen; w > ccline.cmdbuff; )
2983 {
2984#ifdef FEAT_MBYTE
2985 if (has_mbyte)
2986 {
2987 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
2988 if (!vim_iswordc(mb_ptr2char(w - len)))
2989 break;
2990 w -= len;
2991 }
2992 else
2993#endif
2994 {
2995 if (!vim_iswordc(w[-1]))
2996 break;
2997 --w;
2998 }
2999 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003000 len = (int)((ccline.cmdbuff + ccline.cmdlen) - w);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003001 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
3002 p += len;
3003 }
3004
3005 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003006 if (allocated)
3007 vim_free(arg);
3008 return OK;
3009 }
3010
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003011 return cmdline_paste_reg(regname, literally, remcr);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003012}
3013
3014/*
3015 * Put a string on the command line.
3016 * When "literally" is TRUE, insert literally.
3017 * When "literally" is FALSE, insert as typed, but don't leave the command
3018 * line.
3019 */
3020 void
3021cmdline_paste_str(s, literally)
3022 char_u *s;
3023 int literally;
3024{
3025 int c, cv;
3026
3027 if (literally)
3028 put_on_cmdline(s, -1, TRUE);
3029 else
3030 while (*s != NUL)
3031 {
3032 cv = *s;
3033 if (cv == Ctrl_V && s[1])
3034 ++s;
3035#ifdef FEAT_MBYTE
3036 if (has_mbyte)
Bram Moolenaar48be32b2008-06-20 10:56:16 +00003037 c = mb_cptr2char_adv(&s);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003038 else
3039#endif
3040 c = *s++;
3041 if (cv == Ctrl_V || c == ESC || c == Ctrl_C || c == CAR || c == NL
3042#ifdef UNIX
3043 || c == intr_char
3044#endif
3045 || (c == Ctrl_BSL && *s == Ctrl_N))
3046 stuffcharReadbuff(Ctrl_V);
3047 stuffcharReadbuff(c);
3048 }
3049}
3050
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051#ifdef FEAT_WILDMENU
3052/*
3053 * Delete characters on the command line, from "from" to the current
3054 * position.
3055 */
3056 static void
3057cmdline_del(from)
3058 int from;
3059{
3060 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
3061 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3062 ccline.cmdlen -= ccline.cmdpos - from;
3063 ccline.cmdpos = from;
3064}
3065#endif
3066
3067/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003068 * this function is called when the screen size changes and with incremental
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069 * search
3070 */
3071 void
3072redrawcmdline()
3073{
3074 if (cmd_silent)
3075 return;
3076 need_wait_return = FALSE;
3077 compute_cmdrow();
3078 redrawcmd();
3079 cursorcmd();
3080}
3081
3082 static void
3083redrawcmdprompt()
3084{
3085 int i;
3086
3087 if (cmd_silent)
3088 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003089 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090 msg_putchar(ccline.cmdfirstc);
3091 if (ccline.cmdprompt != NULL)
3092 {
3093 msg_puts_attr(ccline.cmdprompt, ccline.cmdattr);
3094 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
3095 /* do the reverse of set_cmdspos() */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003096 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003097 --ccline.cmdindent;
3098 }
3099 else
3100 for (i = ccline.cmdindent; i > 0; --i)
3101 msg_putchar(' ');
3102}
3103
3104/*
3105 * Redraw what is currently on the command line.
3106 */
3107 void
3108redrawcmd()
3109{
3110 if (cmd_silent)
3111 return;
3112
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003113 /* when 'incsearch' is set there may be no command line while redrawing */
3114 if (ccline.cmdbuff == NULL)
3115 {
3116 windgoto(cmdline_row, 0);
3117 msg_clr_eos();
3118 return;
3119 }
3120
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121 msg_start();
3122 redrawcmdprompt();
3123
3124 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
3125 msg_no_more = TRUE;
3126 draw_cmdline(0, ccline.cmdlen);
3127 msg_clr_eos();
3128 msg_no_more = FALSE;
3129
3130 set_cmdspos_cursor();
3131
3132 /*
3133 * An emsg() before may have set msg_scroll. This is used in normal mode,
3134 * in cmdline mode we can reset them now.
3135 */
3136 msg_scroll = FALSE; /* next message overwrites cmdline */
3137
3138 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
3139 * in cmdline mode */
3140 skip_redraw = FALSE;
3141}
3142
3143 void
3144compute_cmdrow()
3145{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003146 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147 cmdline_row = Rows - 1;
3148 else
3149 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
3150 + W_STATUS_HEIGHT(lastwin);
3151}
3152
3153 static void
3154cursorcmd()
3155{
3156 if (cmd_silent)
3157 return;
3158
3159#ifdef FEAT_RIGHTLEFT
3160 if (cmdmsg_rl)
3161 {
3162 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3163 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3164 if (msg_row <= 0)
3165 msg_row = Rows - 1;
3166 }
3167 else
3168#endif
3169 {
3170 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3171 msg_col = ccline.cmdspos % (int)Columns;
3172 if (msg_row >= Rows)
3173 msg_row = Rows - 1;
3174 }
3175
3176 windgoto(msg_row, msg_col);
3177#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
3178 redrawcmd_preedit();
3179#endif
3180#ifdef MCH_CURSOR_SHAPE
3181 mch_update_cursor();
3182#endif
3183}
3184
3185 void
3186gotocmdline(clr)
3187 int clr;
3188{
3189 msg_start();
3190#ifdef FEAT_RIGHTLEFT
3191 if (cmdmsg_rl)
3192 msg_col = Columns - 1;
3193 else
3194#endif
3195 msg_col = 0; /* always start in column 0 */
3196 if (clr) /* clear the bottom line(s) */
3197 msg_clr_eos(); /* will reset clear_cmdline */
3198 windgoto(cmdline_row, 0);
3199}
3200
3201/*
3202 * Check the word in front of the cursor for an abbreviation.
3203 * Called when the non-id character "c" has been entered.
3204 * When an abbreviation is recognized it is removed from the text with
3205 * backspaces and the replacement string is inserted, followed by "c".
3206 */
3207 static int
3208ccheck_abbr(c)
3209 int c;
3210{
3211 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
3212 return FALSE;
3213
3214 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, 0);
3215}
3216
3217/*
3218 * Return FAIL if this is not an appropriate context in which to do
3219 * completion of anything, return OK if it is (even if there are no matches).
3220 * For the caller, this means that the character is just passed through like a
3221 * normal character (instead of being expanded). This allows :s/^I^D etc.
3222 */
3223 static int
3224nextwild(xp, type, options)
3225 expand_T *xp;
3226 int type;
3227 int options; /* extra options for ExpandOne() */
3228{
3229 int i, j;
3230 char_u *p1;
3231 char_u *p2;
3232 int oldlen;
3233 int difflen;
3234 int v;
3235
3236 if (xp->xp_numfiles == -1)
3237 {
3238 set_expand_context(xp);
3239 cmd_showtail = expand_showtail(xp);
3240 }
3241
3242 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
3243 {
3244 beep_flush();
3245 return OK; /* Something illegal on command line */
3246 }
3247 if (xp->xp_context == EXPAND_NOTHING)
3248 {
3249 /* Caller can use the character as a normal char instead */
3250 return FAIL;
3251 }
3252
3253 MSG_PUTS("..."); /* show that we are busy */
3254 out_flush();
3255
3256 i = (int)(xp->xp_pattern - ccline.cmdbuff);
3257 oldlen = ccline.cmdpos - i;
3258
3259 if (type == WILD_NEXT || type == WILD_PREV)
3260 {
3261 /*
3262 * Get next/previous match for a previous expanded pattern.
3263 */
3264 p2 = ExpandOne(xp, NULL, NULL, 0, type);
3265 }
3266 else
3267 {
3268 /*
3269 * Translate string into pattern and expand it.
3270 */
3271 if ((p1 = addstar(&ccline.cmdbuff[i], oldlen, xp->xp_context)) == NULL)
3272 p2 = NULL;
3273 else
3274 {
3275 p2 = ExpandOne(xp, p1, vim_strnsave(&ccline.cmdbuff[i], oldlen),
3276 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT|WILD_ESCAPE
3277 |options, type);
3278 vim_free(p1);
3279 /* longest match: make sure it is not shorter (happens with :help */
3280 if (p2 != NULL && type == WILD_LONGEST)
3281 {
3282 for (j = 0; j < oldlen; ++j)
3283 if (ccline.cmdbuff[i + j] == '*'
3284 || ccline.cmdbuff[i + j] == '?')
3285 break;
3286 if ((int)STRLEN(p2) < j)
3287 {
3288 vim_free(p2);
3289 p2 = NULL;
3290 }
3291 }
3292 }
3293 }
3294
3295 if (p2 != NULL && !got_int)
3296 {
3297 difflen = (int)STRLEN(p2) - oldlen;
3298 if (ccline.cmdlen + difflen > ccline.cmdbufflen - 4)
3299 {
3300 v = realloc_cmdbuff(ccline.cmdlen + difflen);
3301 xp->xp_pattern = ccline.cmdbuff + i;
3302 }
3303 else
3304 v = OK;
3305 if (v == OK)
3306 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003307 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen],
3308 &ccline.cmdbuff[ccline.cmdpos],
3309 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3310 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311 ccline.cmdlen += difflen;
3312 ccline.cmdpos += difflen;
3313 }
3314 }
3315 vim_free(p2);
3316
3317 redrawcmd();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003318 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319
3320 /* When expanding a ":map" command and no matches are found, assume that
3321 * the key is supposed to be inserted literally */
3322 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL)
3323 return FAIL;
3324
3325 if (xp->xp_numfiles <= 0 && p2 == NULL)
3326 beep_flush();
3327 else if (xp->xp_numfiles == 1)
3328 /* free expanded pattern */
3329 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
3330
3331 return OK;
3332}
3333
3334/*
3335 * Do wildcard expansion on the string 'str'.
3336 * Chars that should not be expanded must be preceded with a backslash.
Bram Moolenaarf9821062008-06-20 16:31:07 +00003337 * Return a pointer to allocated memory containing the new string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003338 * Return NULL for failure.
3339 *
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003340 * "orig" is the originally expanded string, copied to allocated memory. It
3341 * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or
3342 * WILD_PREV "orig" should be NULL.
3343 *
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003344 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode"
3345 * is WILD_EXPAND_FREE or WILD_ALL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346 *
3347 * mode = WILD_FREE: just free previously expanded matches
3348 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches
3349 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches
3350 * mode = WILD_NEXT: use next match in multiple match, wrap to first
3351 * mode = WILD_PREV: use previous match in multiple match, wrap to first
3352 * mode = WILD_ALL: return all matches concatenated
3353 * mode = WILD_LONGEST: return longest matched part
3354 *
3355 * options = WILD_LIST_NOTFOUND: list entries without a match
3356 * options = WILD_HOME_REPLACE: do home_replace() for buffer names
3357 * options = WILD_USE_NL: Use '\n' for WILD_ALL
3358 * options = WILD_NO_BEEP: Don't beep for multiple matches
3359 * options = WILD_ADD_SLASH: add a slash after directory names
3360 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries
3361 * options = WILD_SILENT: don't print warning messages
3362 * options = WILD_ESCAPE: put backslash before special chars
3363 *
3364 * The variables xp->xp_context and xp->xp_backslash must have been set!
3365 */
3366 char_u *
3367ExpandOne(xp, str, orig, options, mode)
3368 expand_T *xp;
3369 char_u *str;
3370 char_u *orig; /* allocated copy of original of expanded string */
3371 int options;
3372 int mode;
3373{
3374 char_u *ss = NULL;
3375 static int findex;
3376 static char_u *orig_save = NULL; /* kept value of orig */
Bram Moolenaar96426642007-10-30 16:37:15 +00003377 int orig_saved = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378 int i;
3379 long_u len;
3380 int non_suf_match; /* number without matching suffix */
3381
3382 /*
3383 * first handle the case of using an old match
3384 */
3385 if (mode == WILD_NEXT || mode == WILD_PREV)
3386 {
3387 if (xp->xp_numfiles > 0)
3388 {
3389 if (mode == WILD_PREV)
3390 {
3391 if (findex == -1)
3392 findex = xp->xp_numfiles;
3393 --findex;
3394 }
3395 else /* mode == WILD_NEXT */
3396 ++findex;
3397
3398 /*
3399 * When wrapping around, return the original string, set findex to
3400 * -1.
3401 */
3402 if (findex < 0)
3403 {
3404 if (orig_save == NULL)
3405 findex = xp->xp_numfiles - 1;
3406 else
3407 findex = -1;
3408 }
3409 if (findex >= xp->xp_numfiles)
3410 {
3411 if (orig_save == NULL)
3412 findex = 0;
3413 else
3414 findex = -1;
3415 }
3416#ifdef FEAT_WILDMENU
3417 if (p_wmnu)
3418 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files,
3419 findex, cmd_showtail);
3420#endif
3421 if (findex == -1)
3422 return vim_strsave(orig_save);
3423 return vim_strsave(xp->xp_files[findex]);
3424 }
3425 else
3426 return NULL;
3427 }
3428
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003429 /* free old names */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST)
3431 {
3432 FreeWild(xp->xp_numfiles, xp->xp_files);
3433 xp->xp_numfiles = -1;
3434 vim_free(orig_save);
3435 orig_save = NULL;
3436 }
3437 findex = 0;
3438
3439 if (mode == WILD_FREE) /* only release file name */
3440 return NULL;
3441
3442 if (xp->xp_numfiles == -1)
3443 {
3444 vim_free(orig_save);
3445 orig_save = orig;
Bram Moolenaar96426642007-10-30 16:37:15 +00003446 orig_saved = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447
3448 /*
3449 * Do the expansion.
3450 */
3451 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files,
3452 options) == FAIL)
3453 {
3454#ifdef FNAME_ILLEGAL
3455 /* Illegal file name has been silently skipped. But when there
3456 * are wildcards, the real problem is that there was no match,
3457 * causing the pattern to be added, which has illegal characters.
3458 */
3459 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND))
3460 EMSG2(_(e_nomatch2), str);
3461#endif
3462 }
3463 else if (xp->xp_numfiles == 0)
3464 {
3465 if (!(options & WILD_SILENT))
3466 EMSG2(_(e_nomatch2), str);
3467 }
3468 else
3469 {
3470 /* Escape the matches for use on the command line. */
3471 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options);
3472
3473 /*
3474 * Check for matching suffixes in file names.
3475 */
3476 if (mode != WILD_ALL && mode != WILD_LONGEST)
3477 {
3478 if (xp->xp_numfiles)
3479 non_suf_match = xp->xp_numfiles;
3480 else
3481 non_suf_match = 1;
3482 if ((xp->xp_context == EXPAND_FILES
3483 || xp->xp_context == EXPAND_DIRECTORIES)
3484 && xp->xp_numfiles > 1)
3485 {
3486 /*
3487 * More than one match; check suffix.
3488 * The files will have been sorted on matching suffix in
3489 * expand_wildcards, only need to check the first two.
3490 */
3491 non_suf_match = 0;
3492 for (i = 0; i < 2; ++i)
3493 if (match_suffix(xp->xp_files[i]))
3494 ++non_suf_match;
3495 }
3496 if (non_suf_match != 1)
3497 {
3498 /* Can we ever get here unless it's while expanding
3499 * interactively? If not, we can get rid of this all
3500 * together. Don't really want to wait for this message
3501 * (and possibly have to hit return to continue!).
3502 */
3503 if (!(options & WILD_SILENT))
3504 EMSG(_(e_toomany));
3505 else if (!(options & WILD_NO_BEEP))
3506 beep_flush();
3507 }
3508 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE))
3509 ss = vim_strsave(xp->xp_files[0]);
3510 }
3511 }
3512 }
3513
3514 /* Find longest common part */
3515 if (mode == WILD_LONGEST && xp->xp_numfiles > 0)
3516 {
3517 for (len = 0; xp->xp_files[0][len]; ++len)
3518 {
3519 for (i = 0; i < xp->xp_numfiles; ++i)
3520 {
3521#ifdef CASE_INSENSITIVE_FILENAME
3522 if (xp->xp_context == EXPAND_DIRECTORIES
3523 || xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003524 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003525 || xp->xp_context == EXPAND_BUFFERS)
3526 {
3527 if (TOLOWER_LOC(xp->xp_files[i][len]) !=
3528 TOLOWER_LOC(xp->xp_files[0][len]))
3529 break;
3530 }
3531 else
3532#endif
3533 if (xp->xp_files[i][len] != xp->xp_files[0][len])
3534 break;
3535 }
3536 if (i < xp->xp_numfiles)
3537 {
3538 if (!(options & WILD_NO_BEEP))
3539 vim_beep();
3540 break;
3541 }
3542 }
3543 ss = alloc((unsigned)len + 1);
3544 if (ss)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003545 vim_strncpy(ss, xp->xp_files[0], (size_t)len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546 findex = -1; /* next p_wc gets first one */
3547 }
3548
3549 /* Concatenate all matching names */
3550 if (mode == WILD_ALL && xp->xp_numfiles > 0)
3551 {
3552 len = 0;
3553 for (i = 0; i < xp->xp_numfiles; ++i)
3554 len += (long_u)STRLEN(xp->xp_files[i]) + 1;
3555 ss = lalloc(len, TRUE);
3556 if (ss != NULL)
3557 {
3558 *ss = NUL;
3559 for (i = 0; i < xp->xp_numfiles; ++i)
3560 {
3561 STRCAT(ss, xp->xp_files[i]);
3562 if (i != xp->xp_numfiles - 1)
3563 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " ");
3564 }
3565 }
3566 }
3567
3568 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL)
3569 ExpandCleanup(xp);
3570
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003571 /* Free "orig" if it wasn't stored in "orig_save". */
Bram Moolenaar96426642007-10-30 16:37:15 +00003572 if (!orig_saved)
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003573 vim_free(orig);
3574
Bram Moolenaar071d4272004-06-13 20:20:40 +00003575 return ss;
3576}
3577
3578/*
3579 * Prepare an expand structure for use.
3580 */
3581 void
3582ExpandInit(xp)
3583 expand_T *xp;
3584{
3585 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003586#ifndef BACKSLASH_IN_FILENAME
3587 xp->xp_shell = FALSE;
3588#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589 xp->xp_numfiles = -1;
3590 xp->xp_files = NULL;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003591#if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
3592 xp->xp_arg = NULL;
3593#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003594}
3595
3596/*
3597 * Cleanup an expand structure after use.
3598 */
3599 void
3600ExpandCleanup(xp)
3601 expand_T *xp;
3602{
3603 if (xp->xp_numfiles >= 0)
3604 {
3605 FreeWild(xp->xp_numfiles, xp->xp_files);
3606 xp->xp_numfiles = -1;
3607 }
3608}
3609
3610 void
3611ExpandEscape(xp, str, numfiles, files, options)
3612 expand_T *xp;
3613 char_u *str;
3614 int numfiles;
3615 char_u **files;
3616 int options;
3617{
3618 int i;
3619 char_u *p;
3620
3621 /*
3622 * May change home directory back to "~"
3623 */
3624 if (options & WILD_HOME_REPLACE)
3625 tilde_replace(str, numfiles, files);
3626
3627 if (options & WILD_ESCAPE)
3628 {
3629 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003630 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631 || xp->xp_context == EXPAND_BUFFERS
3632 || xp->xp_context == EXPAND_DIRECTORIES)
3633 {
3634 /*
3635 * Insert a backslash into a file name before a space, \, %, #
3636 * and wildmatch characters, except '~'.
3637 */
3638 for (i = 0; i < numfiles; ++i)
3639 {
3640 /* for ":set path=" we need to escape spaces twice */
3641 if (xp->xp_backslash == XP_BS_THREE)
3642 {
3643 p = vim_strsave_escaped(files[i], (char_u *)" ");
3644 if (p != NULL)
3645 {
3646 vim_free(files[i]);
3647 files[i] = p;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003648#if defined(BACKSLASH_IN_FILENAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 p = vim_strsave_escaped(files[i], (char_u *)" ");
3650 if (p != NULL)
3651 {
3652 vim_free(files[i]);
3653 files[i] = p;
3654 }
3655#endif
3656 }
3657 }
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00003658#ifdef BACKSLASH_IN_FILENAME
3659 p = vim_strsave_fnameescape(files[i], FALSE);
3660#else
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003661 p = vim_strsave_fnameescape(files[i], xp->xp_shell);
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00003662#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663 if (p != NULL)
3664 {
3665 vim_free(files[i]);
3666 files[i] = p;
3667 }
3668
3669 /* If 'str' starts with "\~", replace "~" at start of
3670 * files[i] with "\~". */
3671 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~')
Bram Moolenaar45360022005-07-21 21:08:21 +00003672 escape_fname(&files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673 }
3674 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar45360022005-07-21 21:08:21 +00003675
3676 /* If the first file starts with a '+' escape it. Otherwise it
3677 * could be seen as "+cmd". */
3678 if (*files[0] == '+')
3679 escape_fname(&files[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680 }
3681 else if (xp->xp_context == EXPAND_TAGS)
3682 {
3683 /*
3684 * Insert a backslash before characters in a tag name that
3685 * would terminate the ":tag" command.
3686 */
3687 for (i = 0; i < numfiles; ++i)
3688 {
3689 p = vim_strsave_escaped(files[i], (char_u *)"\\|\"");
3690 if (p != NULL)
3691 {
3692 vim_free(files[i]);
3693 files[i] = p;
3694 }
3695 }
3696 }
3697 }
3698}
3699
3700/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003701 * Escape special characters in "fname" for when used as a file name argument
3702 * after a Vim command, or, when "shell" is non-zero, a shell command.
3703 * Returns the result in allocated memory.
3704 */
3705 char_u *
3706vim_strsave_fnameescape(fname, shell)
3707 char_u *fname;
3708 int shell;
3709{
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003710 char_u *p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003711#ifdef BACKSLASH_IN_FILENAME
3712 char_u buf[20];
3713 int j = 0;
3714
3715 /* Don't escape '[' and '{' if they are in 'isfname'. */
3716 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
3717 if ((*p != '[' && *p != '{') || !vim_isfilec(*p))
3718 buf[j++] = *p;
3719 buf[j] = NUL;
3720 return vim_strsave_escaped(fname, buf);
3721#else
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003722 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
3723 if (shell && csh_like_shell() && p != NULL)
3724 {
3725 char_u *s;
3726
3727 /* For csh and similar shells need to put two backslashes before '!'.
3728 * One is taken by Vim, one by the shell. */
3729 s = vim_strsave_escaped(p, (char_u *)"!");
3730 vim_free(p);
3731 p = s;
3732 }
3733 return p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003734#endif
3735}
3736
3737/*
Bram Moolenaar45360022005-07-21 21:08:21 +00003738 * Put a backslash before the file name in "pp", which is in allocated memory.
3739 */
3740 static void
3741escape_fname(pp)
3742 char_u **pp;
3743{
3744 char_u *p;
3745
3746 p = alloc((unsigned)(STRLEN(*pp) + 2));
3747 if (p != NULL)
3748 {
3749 p[0] = '\\';
3750 STRCPY(p + 1, *pp);
3751 vim_free(*pp);
3752 *pp = p;
3753 }
3754}
3755
3756/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757 * For each file name in files[num_files]:
3758 * If 'orig_pat' starts with "~/", replace the home directory with "~".
3759 */
3760 void
3761tilde_replace(orig_pat, num_files, files)
3762 char_u *orig_pat;
3763 int num_files;
3764 char_u **files;
3765{
3766 int i;
3767 char_u *p;
3768
3769 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
3770 {
3771 for (i = 0; i < num_files; ++i)
3772 {
3773 p = home_replace_save(NULL, files[i]);
3774 if (p != NULL)
3775 {
3776 vim_free(files[i]);
3777 files[i] = p;
3778 }
3779 }
3780 }
3781}
3782
3783/*
3784 * Show all matches for completion on the command line.
3785 * Returns EXPAND_NOTHING when the character that triggered expansion should
3786 * be inserted like a normal character.
3787 */
3788/*ARGSUSED*/
3789 static int
3790showmatches(xp, wildmenu)
3791 expand_T *xp;
3792 int wildmenu;
3793{
3794#define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m])
3795 int num_files;
3796 char_u **files_found;
3797 int i, j, k;
3798 int maxlen;
3799 int lines;
3800 int columns;
3801 char_u *p;
3802 int lastlen;
3803 int attr;
3804 int showtail;
3805
3806 if (xp->xp_numfiles == -1)
3807 {
3808 set_expand_context(xp);
3809 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos,
3810 &num_files, &files_found);
3811 showtail = expand_showtail(xp);
3812 if (i != EXPAND_OK)
3813 return i;
3814
3815 }
3816 else
3817 {
3818 num_files = xp->xp_numfiles;
3819 files_found = xp->xp_files;
3820 showtail = cmd_showtail;
3821 }
3822
3823#ifdef FEAT_WILDMENU
3824 if (!wildmenu)
3825 {
3826#endif
3827 msg_didany = FALSE; /* lines_left will be set */
3828 msg_start(); /* prepare for paging */
3829 msg_putchar('\n');
3830 out_flush();
3831 cmdline_row = msg_row;
3832 msg_didany = FALSE; /* lines_left will be set again */
3833 msg_start(); /* prepare for paging */
3834#ifdef FEAT_WILDMENU
3835 }
3836#endif
3837
3838 if (got_int)
3839 got_int = FALSE; /* only int. the completion, not the cmd line */
3840#ifdef FEAT_WILDMENU
3841 else if (wildmenu)
3842 win_redr_status_matches(xp, num_files, files_found, 0, showtail);
3843#endif
3844 else
3845 {
3846 /* find the length of the longest file name */
3847 maxlen = 0;
3848 for (i = 0; i < num_files; ++i)
3849 {
3850 if (!showtail && (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003851 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003852 || xp->xp_context == EXPAND_BUFFERS))
3853 {
3854 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE);
3855 j = vim_strsize(NameBuff);
3856 }
3857 else
3858 j = vim_strsize(L_SHOWFILE(i));
3859 if (j > maxlen)
3860 maxlen = j;
3861 }
3862
3863 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3864 lines = num_files;
3865 else
3866 {
3867 /* compute the number of columns and lines for the listing */
3868 maxlen += 2; /* two spaces between file names */
3869 columns = ((int)Columns + 2) / maxlen;
3870 if (columns < 1)
3871 columns = 1;
3872 lines = (num_files + columns - 1) / columns;
3873 }
3874
3875 attr = hl_attr(HLF_D); /* find out highlighting for directories */
3876
3877 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3878 {
3879 MSG_PUTS_ATTR(_("tagname"), hl_attr(HLF_T));
3880 msg_clr_eos();
3881 msg_advance(maxlen - 3);
3882 MSG_PUTS_ATTR(_(" kind file\n"), hl_attr(HLF_T));
3883 }
3884
3885 /* list the files line by line */
3886 for (i = 0; i < lines; ++i)
3887 {
3888 lastlen = 999;
3889 for (k = i; k < num_files; k += lines)
3890 {
3891 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3892 {
3893 msg_outtrans_attr(files_found[k], hl_attr(HLF_D));
3894 p = files_found[k] + STRLEN(files_found[k]) + 1;
3895 msg_advance(maxlen + 1);
3896 msg_puts(p);
3897 msg_advance(maxlen + 3);
3898 msg_puts_long_attr(p + 2, hl_attr(HLF_D));
3899 break;
3900 }
3901 for (j = maxlen - lastlen; --j >= 0; )
3902 msg_putchar(' ');
3903 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003904 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905 || xp->xp_context == EXPAND_BUFFERS)
3906 {
3907 /* highlight directories */
3908 j = (mch_isdir(files_found[k]));
3909 if (showtail)
3910 p = L_SHOWFILE(k);
3911 else
3912 {
3913 home_replace(NULL, files_found[k], NameBuff, MAXPATHL,
3914 TRUE);
3915 p = NameBuff;
3916 }
3917 }
3918 else
3919 {
3920 j = FALSE;
3921 p = L_SHOWFILE(k);
3922 }
3923 lastlen = msg_outtrans_attr(p, j ? attr : 0);
3924 }
3925 if (msg_col > 0) /* when not wrapped around */
3926 {
3927 msg_clr_eos();
3928 msg_putchar('\n');
3929 }
3930 out_flush(); /* show one line at a time */
3931 if (got_int)
3932 {
3933 got_int = FALSE;
3934 break;
3935 }
3936 }
3937
3938 /*
3939 * we redraw the command below the lines that we have just listed
3940 * This is a bit tricky, but it saves a lot of screen updating.
3941 */
3942 cmdline_row = msg_row; /* will put it back later */
3943 }
3944
3945 if (xp->xp_numfiles == -1)
3946 FreeWild(num_files, files_found);
3947
3948 return EXPAND_OK;
3949}
3950
3951/*
3952 * Private gettail for showmatches() (and win_redr_status_matches()):
3953 * Find tail of file name path, but ignore trailing "/".
3954 */
3955 char_u *
3956sm_gettail(s)
3957 char_u *s;
3958{
3959 char_u *p;
3960 char_u *t = s;
3961 int had_sep = FALSE;
3962
3963 for (p = s; *p != NUL; )
3964 {
3965 if (vim_ispathsep(*p)
3966#ifdef BACKSLASH_IN_FILENAME
3967 && !rem_backslash(p)
3968#endif
3969 )
3970 had_sep = TRUE;
3971 else if (had_sep)
3972 {
3973 t = p;
3974 had_sep = FALSE;
3975 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003976 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977 }
3978 return t;
3979}
3980
3981/*
3982 * Return TRUE if we only need to show the tail of completion matches.
3983 * When not completing file names or there is a wildcard in the path FALSE is
3984 * returned.
3985 */
3986 static int
3987expand_showtail(xp)
3988 expand_T *xp;
3989{
3990 char_u *s;
3991 char_u *end;
3992
3993 /* When not completing file names a "/" may mean something different. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003994 if (xp->xp_context != EXPAND_FILES
3995 && xp->xp_context != EXPAND_SHELLCMD
3996 && xp->xp_context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997 return FALSE;
3998
3999 end = gettail(xp->xp_pattern);
4000 if (end == xp->xp_pattern) /* there is no path separator */
4001 return FALSE;
4002
4003 for (s = xp->xp_pattern; s < end; s++)
4004 {
4005 /* Skip escaped wildcards. Only when the backslash is not a path
4006 * separator, on DOS the '*' "path\*\file" must not be skipped. */
4007 if (rem_backslash(s))
4008 ++s;
4009 else if (vim_strchr((char_u *)"*?[", *s) != NULL)
4010 return FALSE;
4011 }
4012 return TRUE;
4013}
4014
4015/*
4016 * Prepare a string for expansion.
4017 * When expanding file names: The string will be used with expand_wildcards().
4018 * Copy the file name into allocated memory and add a '*' at the end.
4019 * When expanding other names: The string will be used with regcomp(). Copy
4020 * the name into allocated memory and prepend "^".
4021 */
4022 char_u *
4023addstar(fname, len, context)
4024 char_u *fname;
4025 int len;
4026 int context; /* EXPAND_FILES etc. */
4027{
4028 char_u *retval;
4029 int i, j;
4030 int new_len;
4031 char_u *tail;
4032
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004033 if (context != EXPAND_FILES
4034 && context != EXPAND_SHELLCMD
4035 && context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 {
4037 /*
4038 * Matching will be done internally (on something other than files).
4039 * So we convert the file-matching-type wildcards into our kind for
4040 * use with vim_regcomp(). First work out how long it will be:
4041 */
4042
4043 /* For help tags the translation is done in find_help_tags().
4044 * For a tag pattern starting with "/" no translation is needed. */
4045 if (context == EXPAND_HELP
4046 || context == EXPAND_COLORS
4047 || context == EXPAND_COMPILER
4048 || (context == EXPAND_TAGS && fname[0] == '/'))
4049 retval = vim_strnsave(fname, len);
4050 else
4051 {
4052 new_len = len + 2; /* +2 for '^' at start, NUL at end */
4053 for (i = 0; i < len; i++)
4054 {
4055 if (fname[i] == '*' || fname[i] == '~')
4056 new_len++; /* '*' needs to be replaced by ".*"
4057 '~' needs to be replaced by "\~" */
4058
4059 /* Buffer names are like file names. "." should be literal */
4060 if (context == EXPAND_BUFFERS && fname[i] == '.')
4061 new_len++; /* "." becomes "\." */
4062
4063 /* Custom expansion takes care of special things, match
4064 * backslashes literally (perhaps also for other types?) */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004065 if ((context == EXPAND_USER_DEFINED
4066 || context == EXPAND_USER_LIST) && fname[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067 new_len++; /* '\' becomes "\\" */
4068 }
4069 retval = alloc(new_len);
4070 if (retval != NULL)
4071 {
4072 retval[0] = '^';
4073 j = 1;
4074 for (i = 0; i < len; i++, j++)
4075 {
4076 /* Skip backslash. But why? At least keep it for custom
4077 * expansion. */
4078 if (context != EXPAND_USER_DEFINED
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004079 && context != EXPAND_USER_LIST
4080 && fname[i] == '\\'
4081 && ++i == len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082 break;
4083
4084 switch (fname[i])
4085 {
4086 case '*': retval[j++] = '.';
4087 break;
4088 case '~': retval[j++] = '\\';
4089 break;
4090 case '?': retval[j] = '.';
4091 continue;
4092 case '.': if (context == EXPAND_BUFFERS)
4093 retval[j++] = '\\';
4094 break;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004095 case '\\': if (context == EXPAND_USER_DEFINED
4096 || context == EXPAND_USER_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097 retval[j++] = '\\';
4098 break;
4099 }
4100 retval[j] = fname[i];
4101 }
4102 retval[j] = NUL;
4103 }
4104 }
4105 }
4106 else
4107 {
4108 retval = alloc(len + 4);
4109 if (retval != NULL)
4110 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004111 vim_strncpy(retval, fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112
4113 /*
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004114 * Don't add a star to *, ~, ~user, $var or `cmd`.
4115 * * would become **, which walks the whole tree.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 * ~ would be at the start of the file name, but not the tail.
4117 * $ could be anywhere in the tail.
4118 * ` could be anywhere in the file name.
Bram Moolenaar066b6222008-01-04 14:17:47 +00004119 * When the name ends in '$' don't add a star, remove the '$'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120 */
4121 tail = gettail(retval);
4122 if ((*retval != '~' || tail != retval)
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004123 && (len == 0 || retval[len - 1] != '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 && vim_strchr(tail, '$') == NULL
4125 && vim_strchr(retval, '`') == NULL)
4126 retval[len++] = '*';
Bram Moolenaar066b6222008-01-04 14:17:47 +00004127 else if (len > 0 && retval[len - 1] == '$')
4128 --len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129 retval[len] = NUL;
4130 }
4131 }
4132 return retval;
4133}
4134
4135/*
4136 * Must parse the command line so far to work out what context we are in.
4137 * Completion can then be done based on that context.
4138 * This routine sets the variables:
4139 * xp->xp_pattern The start of the pattern to be expanded within
4140 * the command line (ends at the cursor).
4141 * xp->xp_context The type of thing to expand. Will be one of:
4142 *
4143 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on
4144 * the command line, like an unknown command. Caller
4145 * should beep.
4146 * EXPAND_NOTHING Unrecognised context for completion, use char like
4147 * a normal char, rather than for completion. eg
4148 * :s/^I/
4149 * EXPAND_COMMANDS Cursor is still touching the command, so complete
4150 * it.
4151 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands.
4152 * EXPAND_FILES After command with XFILE set, or after setting
4153 * with P_EXPAND set. eg :e ^I, :w>>^I
4154 * EXPAND_DIRECTORIES In some cases this is used instead of the latter
4155 * when we know only directories are of interest. eg
4156 * :set dir=^I
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004157 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 * EXPAND_SETTINGS Complete variable names. eg :set d^I
4159 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I
4160 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I
4161 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect
4162 * EXPAND_HELP Complete tags from the file 'helpfile'/tags
4163 * EXPAND_EVENTS Complete event names
4164 * EXPAND_SYNTAX Complete :syntax command arguments
4165 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names
4166 * EXPAND_AUGROUP Complete autocommand group names
4167 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I
4168 * EXPAND_MAPPINGS Complete mapping and abbreviation names,
4169 * eg :unmap a^I , :cunab x^I
4170 * EXPAND_FUNCTIONS Complete internal or user defined function names,
4171 * eg :call sub^I
4172 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I
4173 * EXPAND_EXPRESSION Complete internal or user defined function/variable
4174 * names in expressions, eg :while s^I
4175 * EXPAND_ENV_VARS Complete environment variable names
4176 */
4177 static void
4178set_expand_context(xp)
4179 expand_T *xp;
4180{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004181 /* only expansion for ':', '>' and '=' command-lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 if (ccline.cmdfirstc != ':'
4183#ifdef FEAT_EVAL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004184 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '='
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004185 && !ccline.input_fn
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186#endif
4187 )
4188 {
4189 xp->xp_context = EXPAND_NOTHING;
4190 return;
4191 }
4192 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos);
4193}
4194
4195 void
4196set_cmd_context(xp, str, len, col)
4197 expand_T *xp;
4198 char_u *str; /* start of command line */
4199 int len; /* length of command line (excl. NUL) */
4200 int col; /* position of cursor */
4201{
4202 int old_char = NUL;
4203 char_u *nextcomm;
4204
4205 /*
4206 * Avoid a UMR warning from Purify, only save the character if it has been
4207 * written before.
4208 */
4209 if (col < len)
4210 old_char = str[col];
4211 str[col] = NUL;
4212 nextcomm = str;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004213
4214#ifdef FEAT_EVAL
4215 if (ccline.cmdfirstc == '=')
Bram Moolenaar4f688582007-07-24 12:34:30 +00004216 {
4217# ifdef FEAT_CMDL_COMPL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004218 /* pass CMD_SIZE because there is no real command */
4219 set_context_for_expression(xp, str, CMD_SIZE);
Bram Moolenaar4f688582007-07-24 12:34:30 +00004220# endif
4221 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004222 else if (ccline.input_fn)
4223 {
4224 xp->xp_context = ccline.xp_context;
4225 xp->xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004226# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004227 xp->xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004228# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004229 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004230 else
4231#endif
4232 while (nextcomm != NULL)
4233 nextcomm = set_one_cmd_context(xp, nextcomm);
4234
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235 str[col] = old_char;
4236}
4237
4238/*
4239 * Expand the command line "str" from context "xp".
4240 * "xp" must have been set by set_cmd_context().
4241 * xp->xp_pattern points into "str", to where the text that is to be expanded
4242 * starts.
4243 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the
4244 * cursor.
4245 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the
4246 * key that triggered expansion literally.
4247 * Returns EXPAND_OK otherwise.
4248 */
4249 int
4250expand_cmdline(xp, str, col, matchcount, matches)
4251 expand_T *xp;
4252 char_u *str; /* start of command line */
4253 int col; /* position of cursor */
4254 int *matchcount; /* return: nr of matches */
4255 char_u ***matches; /* return: array of pointers to matches */
4256{
4257 char_u *file_str = NULL;
4258
4259 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
4260 {
4261 beep_flush();
4262 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */
4263 }
4264 if (xp->xp_context == EXPAND_NOTHING)
4265 {
4266 /* Caller can use the character as a normal char instead */
4267 return EXPAND_NOTHING;
4268 }
4269
4270 /* add star to file name, or convert to regexp if not exp. files. */
4271 file_str = addstar(xp->xp_pattern,
4272 (int)(str + col - xp->xp_pattern), xp->xp_context);
4273 if (file_str == NULL)
4274 return EXPAND_UNSUCCESSFUL;
4275
4276 /* find all files that match the description */
4277 if (ExpandFromContext(xp, file_str, matchcount, matches,
4278 WILD_ADD_SLASH|WILD_SILENT) == FAIL)
4279 {
4280 *matchcount = 0;
4281 *matches = NULL;
4282 }
4283 vim_free(file_str);
4284
4285 return EXPAND_OK;
4286}
4287
4288#ifdef FEAT_MULTI_LANG
4289/*
4290 * Cleanup matches for help tags: remove "@en" if "en" is the only language.
4291 */
4292static void cleanup_help_tags __ARGS((int num_file, char_u **file));
4293
4294 static void
4295cleanup_help_tags(num_file, file)
4296 int num_file;
4297 char_u **file;
4298{
4299 int i, j;
4300 int len;
4301
4302 for (i = 0; i < num_file; ++i)
4303 {
4304 len = (int)STRLEN(file[i]) - 3;
4305 if (len > 0 && STRCMP(file[i] + len, "@en") == 0)
4306 {
4307 /* Sorting on priority means the same item in another language may
4308 * be anywhere. Search all items for a match up to the "@en". */
4309 for (j = 0; j < num_file; ++j)
4310 if (j != i
4311 && (int)STRLEN(file[j]) == len + 3
4312 && STRNCMP(file[i], file[j], len + 1) == 0)
4313 break;
4314 if (j == num_file)
4315 file[i][len] = NUL;
4316 }
4317 }
4318}
4319#endif
4320
4321/*
4322 * Do the expansion based on xp->xp_context and "pat".
4323 */
4324 static int
4325ExpandFromContext(xp, pat, num_file, file, options)
4326 expand_T *xp;
4327 char_u *pat;
4328 int *num_file;
4329 char_u ***file;
4330 int options;
4331{
4332#ifdef FEAT_CMDL_COMPL
4333 regmatch_T regmatch;
4334#endif
4335 int ret;
4336 int flags;
4337
4338 flags = EW_DIR; /* include directories */
4339 if (options & WILD_LIST_NOTFOUND)
4340 flags |= EW_NOTFOUND;
4341 if (options & WILD_ADD_SLASH)
4342 flags |= EW_ADDSLASH;
4343 if (options & WILD_KEEP_ALL)
4344 flags |= EW_KEEPALL;
4345 if (options & WILD_SILENT)
4346 flags |= EW_SILENT;
4347
4348 if (xp->xp_context == EXPAND_FILES || xp->xp_context == EXPAND_DIRECTORIES)
4349 {
4350 /*
4351 * Expand file or directory names.
4352 */
4353 int free_pat = FALSE;
4354 int i;
4355
4356 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4357 * space */
4358 if (xp->xp_backslash != XP_BS_NONE)
4359 {
4360 free_pat = TRUE;
4361 pat = vim_strsave(pat);
4362 for (i = 0; pat[i]; ++i)
4363 if (pat[i] == '\\')
4364 {
4365 if (xp->xp_backslash == XP_BS_THREE
4366 && pat[i + 1] == '\\'
4367 && pat[i + 2] == '\\'
4368 && pat[i + 3] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004369 STRMOVE(pat + i, pat + i + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 if (xp->xp_backslash == XP_BS_ONE
4371 && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004372 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373 }
4374 }
4375
4376 if (xp->xp_context == EXPAND_FILES)
4377 flags |= EW_FILE;
4378 else
4379 flags = (flags | EW_DIR) & ~EW_FILE;
4380 ret = expand_wildcards(1, &pat, num_file, file, flags);
4381 if (free_pat)
4382 vim_free(pat);
4383 return ret;
4384 }
4385
4386 *file = (char_u **)"";
4387 *num_file = 0;
4388 if (xp->xp_context == EXPAND_HELP)
4389 {
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00004390 /* With an empty argument we would get all the help tags, which is
4391 * very slow. Get matches for "help" instead. */
4392 if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat,
4393 num_file, file, FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394 {
4395#ifdef FEAT_MULTI_LANG
4396 cleanup_help_tags(*num_file, *file);
4397#endif
4398 return OK;
4399 }
4400 return FAIL;
4401 }
4402
4403#ifndef FEAT_CMDL_COMPL
4404 return FAIL;
4405#else
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004406 if (xp->xp_context == EXPAND_SHELLCMD)
4407 return expand_shellcmd(pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408 if (xp->xp_context == EXPAND_OLD_SETTING)
4409 return ExpandOldSetting(num_file, file);
4410 if (xp->xp_context == EXPAND_BUFFERS)
4411 return ExpandBufnames(pat, num_file, file, options);
4412 if (xp->xp_context == EXPAND_TAGS
4413 || xp->xp_context == EXPAND_TAGS_LISTFILES)
4414 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file);
4415 if (xp->xp_context == EXPAND_COLORS)
4416 return ExpandRTDir(pat, num_file, file, "colors");
4417 if (xp->xp_context == EXPAND_COMPILER)
4418 return ExpandRTDir(pat, num_file, file, "compiler");
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004419# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4420 if (xp->xp_context == EXPAND_USER_LIST)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004421 return ExpandUserList(xp, num_file, file);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004422# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423
4424 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4425 if (regmatch.regprog == NULL)
4426 return FAIL;
4427
4428 /* set ignore-case according to p_ic, p_scs and pat */
4429 regmatch.rm_ic = ignorecase(pat);
4430
4431 if (xp->xp_context == EXPAND_SETTINGS
4432 || xp->xp_context == EXPAND_BOOL_SETTINGS)
4433 ret = ExpandSettings(xp, &regmatch, num_file, file);
4434 else if (xp->xp_context == EXPAND_MAPPINGS)
4435 ret = ExpandMappings(&regmatch, num_file, file);
4436# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4437 else if (xp->xp_context == EXPAND_USER_DEFINED)
4438 ret = ExpandUserDefined(xp, &regmatch, num_file, file);
4439# endif
4440 else
4441 {
4442 static struct expgen
4443 {
4444 int context;
4445 char_u *((*func)__ARGS((expand_T *, int)));
4446 int ic;
4447 } tab[] =
4448 {
4449 {EXPAND_COMMANDS, get_command_name, FALSE},
4450#ifdef FEAT_USR_CMDS
4451 {EXPAND_USER_COMMANDS, get_user_commands, FALSE},
4452 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE},
4453 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE},
4454 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE},
4455#endif
4456#ifdef FEAT_EVAL
4457 {EXPAND_USER_VARS, get_user_var_name, FALSE},
4458 {EXPAND_FUNCTIONS, get_function_name, FALSE},
4459 {EXPAND_USER_FUNC, get_user_func_name, FALSE},
4460 {EXPAND_EXPRESSION, get_expr_name, FALSE},
4461#endif
4462#ifdef FEAT_MENU
4463 {EXPAND_MENUS, get_menu_name, FALSE},
4464 {EXPAND_MENUNAMES, get_menu_names, FALSE},
4465#endif
4466#ifdef FEAT_SYN_HL
4467 {EXPAND_SYNTAX, get_syntax_name, TRUE},
4468#endif
4469 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE},
4470#ifdef FEAT_AUTOCMD
4471 {EXPAND_EVENTS, get_event_name, TRUE},
4472 {EXPAND_AUGROUP, get_augroup_name, TRUE},
4473#endif
4474#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
4475 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
4476 {EXPAND_LANGUAGE, get_lang_arg, TRUE},
4477#endif
4478 {EXPAND_ENV_VARS, get_env_name, TRUE},
4479 };
4480 int i;
4481
4482 /*
4483 * Find a context in the table and call the ExpandGeneric() with the
4484 * right function to do the expansion.
4485 */
4486 ret = FAIL;
4487 for (i = 0; i < sizeof(tab) / sizeof(struct expgen); ++i)
4488 if (xp->xp_context == tab[i].context)
4489 {
4490 if (tab[i].ic)
4491 regmatch.rm_ic = TRUE;
4492 ret = ExpandGeneric(xp, &regmatch, num_file, file, tab[i].func);
4493 break;
4494 }
4495 }
4496
4497 vim_free(regmatch.regprog);
4498
4499 return ret;
4500#endif /* FEAT_CMDL_COMPL */
4501}
4502
4503#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4504/*
4505 * Expand a list of names.
4506 *
4507 * Generic function for command line completion. It calls a function to
4508 * obtain strings, one by one. The strings are matched against a regexp
4509 * program. Matching strings are copied into an array, which is returned.
4510 *
4511 * Returns OK when no problems encountered, FAIL for error (out of memory).
4512 */
4513 int
4514ExpandGeneric(xp, regmatch, num_file, file, func)
4515 expand_T *xp;
4516 regmatch_T *regmatch;
4517 int *num_file;
4518 char_u ***file;
4519 char_u *((*func)__ARGS((expand_T *, int)));
4520 /* returns a string from the list */
4521{
4522 int i;
4523 int count = 0;
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004524 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 char_u *str;
4526
4527 /* do this loop twice:
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004528 * round == 0: count the number of matching names
4529 * round == 1: copy the matching names into allocated memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530 */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004531 for (round = 0; round <= 1; ++round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532 {
4533 for (i = 0; ; ++i)
4534 {
4535 str = (*func)(xp, i);
4536 if (str == NULL) /* end of list */
4537 break;
4538 if (*str == NUL) /* skip empty strings */
4539 continue;
4540
4541 if (vim_regexec(regmatch, str, (colnr_T)0))
4542 {
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004543 if (round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 {
4545 str = vim_strsave_escaped(str, (char_u *)" \t\\.");
4546 (*file)[count] = str;
4547#ifdef FEAT_MENU
4548 if (func == get_menu_names && str != NULL)
4549 {
4550 /* test for separator added by get_menu_names() */
4551 str += STRLEN(str) - 1;
4552 if (*str == '\001')
4553 *str = '.';
4554 }
4555#endif
4556 }
4557 ++count;
4558 }
4559 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004560 if (round == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004561 {
4562 if (count == 0)
4563 return OK;
4564 *num_file = count;
4565 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
4566 if (*file == NULL)
4567 {
4568 *file = (char_u **)"";
4569 return FAIL;
4570 }
4571 count = 0;
4572 }
4573 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004574
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004575 /* Sort the results. Keep menu's in the specified order. */
4576 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS)
4577 sort_strings(*file, *num_file);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004578
Bram Moolenaar4f688582007-07-24 12:34:30 +00004579#ifdef FEAT_CMDL_COMPL
4580 /* Reset the variables used for special highlight names expansion, so that
4581 * they don't show up when getting normal highlight names by ID. */
4582 reset_expand_highlight();
4583#endif
4584
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585 return OK;
4586}
4587
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004588/*
4589 * Complete a shell command.
4590 * Returns FAIL or OK;
4591 */
4592 static int
4593expand_shellcmd(filepat, num_file, file, flagsarg)
4594 char_u *filepat; /* pattern to match with command names */
4595 int *num_file; /* return: number of matches */
4596 char_u ***file; /* return: array with matches */
4597 int flagsarg; /* EW_ flags */
4598{
4599 char_u *pat;
4600 int i;
4601 char_u *path;
4602 int mustfree = FALSE;
4603 garray_T ga;
4604 char_u *buf = alloc(MAXPATHL);
4605 size_t l;
4606 char_u *s, *e;
4607 int flags = flagsarg;
4608 int ret;
4609
4610 if (buf == NULL)
4611 return FAIL;
4612
4613 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4614 * space */
4615 pat = vim_strsave(filepat);
4616 for (i = 0; pat[i]; ++i)
4617 if (pat[i] == '\\' && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004618 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004619
4620 flags |= EW_FILE | EW_EXEC;
4621
4622 /* For an absolute name we don't use $PATH. */
Bram Moolenaar68c31742006-09-02 15:54:18 +00004623 if (mch_isFullName(pat))
4624 path = (char_u *)" ";
4625 else if ((pat[0] == '.' && (vim_ispathsep(pat[1])
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004626 || (pat[1] == '.' && vim_ispathsep(pat[2])))))
4627 path = (char_u *)".";
4628 else
4629 path = vim_getenv((char_u *)"PATH", &mustfree);
4630
4631 /*
4632 * Go over all directories in $PATH. Expand matches in that directory and
4633 * collect them in "ga".
4634 */
4635 ga_init2(&ga, (int)sizeof(char *), 10);
4636 for (s = path; *s != NUL; s = e)
4637 {
Bram Moolenaar68c31742006-09-02 15:54:18 +00004638 if (*s == ' ')
4639 ++s; /* Skip space used for absolute path name. */
4640
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004641#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
4642 e = vim_strchr(s, ';');
4643#else
4644 e = vim_strchr(s, ':');
4645#endif
4646 if (e == NULL)
4647 e = s + STRLEN(s);
4648
4649 l = e - s;
4650 if (l > MAXPATHL - 5)
4651 break;
4652 vim_strncpy(buf, s, l);
4653 add_pathsep(buf);
4654 l = STRLEN(buf);
4655 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l);
4656
4657 /* Expand matches in one directory of $PATH. */
4658 ret = expand_wildcards(1, &buf, num_file, file, flags);
4659 if (ret == OK)
4660 {
4661 if (ga_grow(&ga, *num_file) == FAIL)
4662 FreeWild(*num_file, *file);
4663 else
4664 {
4665 for (i = 0; i < *num_file; ++i)
4666 {
4667 s = (*file)[i];
4668 if (STRLEN(s) > l)
4669 {
4670 /* Remove the path again. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004671 STRMOVE(s, s + l);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004672 ((char_u **)ga.ga_data)[ga.ga_len++] = s;
4673 }
4674 else
4675 vim_free(s);
4676 }
4677 vim_free(*file);
4678 }
4679 }
4680 if (*e != NUL)
4681 ++e;
4682 }
4683 *file = ga.ga_data;
4684 *num_file = ga.ga_len;
4685
4686 vim_free(buf);
4687 vim_free(pat);
4688 if (mustfree)
4689 vim_free(path);
4690 return OK;
4691}
4692
4693
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00004695static 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));
4696
Bram Moolenaar071d4272004-06-13 20:20:40 +00004697/*
Bram Moolenaar21669c02008-01-18 12:16:16 +00004698 * Call "user_expand_func()" to invoke a user defined VimL function and return
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004699 * the result (either a string or a List).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004700 */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004701 static void *
4702call_user_expand_func(user_expand_func, xp, num_file, file)
4703 void *(*user_expand_func) __ARGS((char_u *, int, char_u **, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 expand_T *xp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705 int *num_file;
4706 char_u ***file;
4707{
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004708 char_u keep;
4709 char_u num[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004710 char_u *args[3];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 int save_current_SID = current_SID;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004712 void *ret;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004713 struct cmdline_info save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714
4715 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0')
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004716 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 *num_file = 0;
4718 *file = NULL;
4719
Bram Moolenaar21669c02008-01-18 12:16:16 +00004720 if (ccline.cmdbuff == NULL)
4721 {
4722 /* Completion from Insert mode, pass fake arguments. */
4723 keep = 0;
Bram Moolenaar9a31f882008-01-22 11:44:47 +00004724 sprintf((char *)num, "%d", (int)STRLEN(xp->xp_pattern));
Bram Moolenaar21669c02008-01-18 12:16:16 +00004725 args[1] = xp->xp_pattern;
4726 }
4727 else
4728 {
4729 /* Completion on the command line, pass real arguments. */
4730 keep = ccline.cmdbuff[ccline.cmdlen];
4731 ccline.cmdbuff[ccline.cmdlen] = 0;
4732 sprintf((char *)num, "%d", ccline.cmdpos);
4733 args[1] = ccline.cmdbuff;
4734 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735 args[0] = xp->xp_pattern;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736 args[2] = num;
4737
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004738 /* Save the cmdline, we don't know what the function may do. */
4739 save_ccline = ccline;
4740 ccline.cmdbuff = NULL;
4741 ccline.cmdprompt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 current_SID = xp->xp_scriptID;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004743
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004744 ret = user_expand_func(xp->xp_arg, 3, args, FALSE);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004745
4746 ccline = save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004747 current_SID = save_current_SID;
Bram Moolenaar21669c02008-01-18 12:16:16 +00004748 if (ccline.cmdbuff != NULL)
4749 ccline.cmdbuff[ccline.cmdlen] = keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004750
4751 return ret;
4752}
4753
4754/*
4755 * Expand names with a function defined by the user.
4756 */
4757 static int
4758ExpandUserDefined(xp, regmatch, num_file, file)
4759 expand_T *xp;
4760 regmatch_T *regmatch;
4761 int *num_file;
4762 char_u ***file;
4763{
4764 char_u *retstr;
4765 char_u *s;
4766 char_u *e;
4767 char_u keep;
4768 garray_T ga;
4769
4770 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file);
4771 if (retstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 return FAIL;
4773
4774 ga_init2(&ga, (int)sizeof(char *), 3);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004775 for (s = retstr; *s != NUL; s = e)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776 {
4777 e = vim_strchr(s, '\n');
4778 if (e == NULL)
4779 e = s + STRLEN(s);
4780 keep = *e;
4781 *e = 0;
4782
4783 if (xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0)
4784 {
4785 *e = keep;
4786 if (*e != NUL)
4787 ++e;
4788 continue;
4789 }
4790
4791 if (ga_grow(&ga, 1) == FAIL)
4792 break;
4793
4794 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s));
4795 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796
4797 *e = keep;
4798 if (*e != NUL)
4799 ++e;
4800 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004801 vim_free(retstr);
4802 *file = ga.ga_data;
4803 *num_file = ga.ga_len;
4804 return OK;
4805}
4806
4807/*
4808 * Expand names with a list returned by a function defined by the user.
4809 */
4810 static int
4811ExpandUserList(xp, num_file, file)
4812 expand_T *xp;
4813 int *num_file;
4814 char_u ***file;
4815{
4816 list_T *retlist;
4817 listitem_T *li;
4818 garray_T ga;
4819
4820 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file);
4821 if (retlist == NULL)
4822 return FAIL;
4823
4824 ga_init2(&ga, (int)sizeof(char *), 3);
4825 /* Loop over the items in the list. */
4826 for (li = retlist->lv_first; li != NULL; li = li->li_next)
4827 {
4828 if (li->li_tv.v_type != VAR_STRING)
4829 continue; /* Skip non-string items */
4830
4831 if (ga_grow(&ga, 1) == FAIL)
4832 break;
4833
4834 ((char_u **)ga.ga_data)[ga.ga_len] =
4835 vim_strsave(li->li_tv.vval.v_string);
4836 ++ga.ga_len;
4837 }
4838 list_unref(retlist);
4839
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 *file = ga.ga_data;
4841 *num_file = ga.ga_len;
4842 return OK;
4843}
4844#endif
4845
4846/*
4847 * Expand color scheme names: 'runtimepath'/colors/{pat}.vim
4848 * or compiler names.
4849 */
4850 static int
4851ExpandRTDir(pat, num_file, file, dirname)
4852 char_u *pat;
4853 int *num_file;
4854 char_u ***file;
4855 char *dirname; /* "colors" or "compiler" */
4856{
4857 char_u *all;
4858 char_u *s;
4859 char_u *e;
4860 garray_T ga;
4861
4862 *num_file = 0;
4863 *file = NULL;
4864 s = alloc((unsigned)(STRLEN(pat) + STRLEN(dirname) + 7));
4865 if (s == NULL)
4866 return FAIL;
4867 sprintf((char *)s, "%s/%s*.vim", dirname, pat);
4868 all = globpath(p_rtp, s);
4869 vim_free(s);
4870 if (all == NULL)
4871 return FAIL;
4872
4873 ga_init2(&ga, (int)sizeof(char *), 3);
4874 for (s = all; *s != NUL; s = e)
4875 {
4876 e = vim_strchr(s, '\n');
4877 if (e == NULL)
4878 e = s + STRLEN(s);
4879 if (ga_grow(&ga, 1) == FAIL)
4880 break;
4881 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0)
4882 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004883 for (s = e - 4; s > all; mb_ptr_back(all, s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884 if (*s == '\n' || vim_ispathsep(*s))
4885 break;
4886 ++s;
4887 ((char_u **)ga.ga_data)[ga.ga_len] =
4888 vim_strnsave(s, (int)(e - s - 4));
4889 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 }
4891 if (*e != NUL)
4892 ++e;
4893 }
4894 vim_free(all);
4895 *file = ga.ga_data;
4896 *num_file = ga.ga_len;
4897 return OK;
4898}
4899
4900#endif
4901
4902#if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO)
4903/*
4904 * Expand "file" for all comma-separated directories in "path".
4905 * Returns an allocated string with all matches concatenated, separated by
4906 * newlines. Returns NULL for an error or no matches.
4907 */
4908 char_u *
4909globpath(path, file)
4910 char_u *path;
4911 char_u *file;
4912{
4913 expand_T xpc;
4914 char_u *buf;
4915 garray_T ga;
4916 int i;
4917 int len;
4918 int num_p;
4919 char_u **p;
4920 char_u *cur = NULL;
4921
4922 buf = alloc(MAXPATHL);
4923 if (buf == NULL)
4924 return NULL;
4925
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00004926 ExpandInit(&xpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00004928
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 ga_init2(&ga, 1, 100);
4930
4931 /* Loop over all entries in {path}. */
4932 while (*path != NUL)
4933 {
4934 /* Copy one item of the path to buf[] and concatenate the file name. */
4935 copy_option_part(&path, buf, MAXPATHL, ",");
4936 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
4937 {
4938 add_pathsep(buf);
4939 STRCAT(buf, file);
4940 if (ExpandFromContext(&xpc, buf, &num_p, &p, WILD_SILENT) != FAIL
4941 && num_p > 0)
4942 {
4943 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT);
4944 for (len = 0, i = 0; i < num_p; ++i)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004945 len += (int)STRLEN(p[i]) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946
4947 /* Concatenate new results to previous ones. */
4948 if (ga_grow(&ga, len) == OK)
4949 {
4950 cur = (char_u *)ga.ga_data + ga.ga_len;
4951 for (i = 0; i < num_p; ++i)
4952 {
4953 STRCPY(cur, p[i]);
4954 cur += STRLEN(p[i]);
4955 *cur++ = '\n';
4956 }
4957 ga.ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004958 }
4959 FreeWild(num_p, p);
4960 }
4961 }
4962 }
4963 if (cur != NULL)
4964 *--cur = 0; /* Replace trailing newline with NUL */
4965
4966 vim_free(buf);
4967 return (char_u *)ga.ga_data;
4968}
4969
4970#endif
4971
4972#if defined(FEAT_CMDHIST) || defined(PROTO)
4973
4974/*********************************
4975 * Command line history stuff *
4976 *********************************/
4977
4978/*
4979 * Translate a history character to the associated type number.
4980 */
4981 static int
4982hist_char2type(c)
4983 int c;
4984{
4985 if (c == ':')
4986 return HIST_CMD;
4987 if (c == '=')
4988 return HIST_EXPR;
4989 if (c == '@')
4990 return HIST_INPUT;
4991 if (c == '>')
4992 return HIST_DEBUG;
4993 return HIST_SEARCH; /* must be '?' or '/' */
4994}
4995
4996/*
4997 * Table of history names.
4998 * These names are used in :history and various hist...() functions.
4999 * It is sufficient to give the significant prefix of a history name.
5000 */
5001
5002static char *(history_names[]) =
5003{
5004 "cmd",
5005 "search",
5006 "expr",
5007 "input",
5008 "debug",
5009 NULL
5010};
5011
5012/*
5013 * init_history() - Initialize the command line history.
5014 * Also used to re-allocate the history when the size changes.
5015 */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00005016 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017init_history()
5018{
5019 int newlen; /* new length of history table */
5020 histentry_T *temp;
5021 int i;
5022 int j;
5023 int type;
5024
5025 /*
5026 * If size of history table changed, reallocate it
5027 */
5028 newlen = (int)p_hi;
5029 if (newlen != hislen) /* history length changed */
5030 {
5031 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */
5032 {
5033 if (newlen)
5034 {
5035 temp = (histentry_T *)lalloc(
5036 (long_u)(newlen * sizeof(histentry_T)), TRUE);
5037 if (temp == NULL) /* out of memory! */
5038 {
5039 if (type == 0) /* first one: just keep the old length */
5040 {
5041 newlen = hislen;
5042 break;
5043 }
5044 /* Already changed one table, now we can only have zero
5045 * length for all tables. */
5046 newlen = 0;
5047 type = -1;
5048 continue;
5049 }
5050 }
5051 else
5052 temp = NULL;
5053 if (newlen == 0 || temp != NULL)
5054 {
5055 if (hisidx[type] < 0) /* there are no entries yet */
5056 {
5057 for (i = 0; i < newlen; ++i)
5058 {
5059 temp[i].hisnum = 0;
5060 temp[i].hisstr = NULL;
5061 }
5062 }
5063 else if (newlen > hislen) /* array becomes bigger */
5064 {
5065 for (i = 0; i <= hisidx[type]; ++i)
5066 temp[i] = history[type][i];
5067 j = i;
5068 for ( ; i <= newlen - (hislen - hisidx[type]); ++i)
5069 {
5070 temp[i].hisnum = 0;
5071 temp[i].hisstr = NULL;
5072 }
5073 for ( ; j < hislen; ++i, ++j)
5074 temp[i] = history[type][j];
5075 }
5076 else /* array becomes smaller or 0 */
5077 {
5078 j = hisidx[type];
5079 for (i = newlen - 1; ; --i)
5080 {
5081 if (i >= 0) /* copy newest entries */
5082 temp[i] = history[type][j];
5083 else /* remove older entries */
5084 vim_free(history[type][j].hisstr);
5085 if (--j < 0)
5086 j = hislen - 1;
5087 if (j == hisidx[type])
5088 break;
5089 }
5090 hisidx[type] = newlen - 1;
5091 }
5092 vim_free(history[type]);
5093 history[type] = temp;
5094 }
5095 }
5096 hislen = newlen;
5097 }
5098}
5099
5100/*
5101 * Check if command line 'str' is already in history.
5102 * If 'move_to_front' is TRUE, matching entry is moved to end of history.
5103 */
5104 static int
5105in_history(type, str, move_to_front)
5106 int type;
5107 char_u *str;
5108 int move_to_front; /* Move the entry to the front if it exists */
5109{
5110 int i;
5111 int last_i = -1;
5112
5113 if (hisidx[type] < 0)
5114 return FALSE;
5115 i = hisidx[type];
5116 do
5117 {
5118 if (history[type][i].hisstr == NULL)
5119 return FALSE;
5120 if (STRCMP(str, history[type][i].hisstr) == 0)
5121 {
5122 if (!move_to_front)
5123 return TRUE;
5124 last_i = i;
5125 break;
5126 }
5127 if (--i < 0)
5128 i = hislen - 1;
5129 } while (i != hisidx[type]);
5130
5131 if (last_i >= 0)
5132 {
5133 str = history[type][i].hisstr;
5134 while (i != hisidx[type])
5135 {
5136 if (++i >= hislen)
5137 i = 0;
5138 history[type][last_i] = history[type][i];
5139 last_i = i;
5140 }
5141 history[type][i].hisstr = str;
5142 history[type][i].hisnum = ++hisnum[type];
5143 return TRUE;
5144 }
5145 return FALSE;
5146}
5147
5148/*
5149 * Convert history name (from table above) to its HIST_ equivalent.
5150 * When "name" is empty, return "cmd" history.
5151 * Returns -1 for unknown history name.
5152 */
5153 int
5154get_histtype(name)
5155 char_u *name;
5156{
5157 int i;
5158 int len = (int)STRLEN(name);
5159
5160 /* No argument: use current history. */
5161 if (len == 0)
5162 return hist_char2type(ccline.cmdfirstc);
5163
5164 for (i = 0; history_names[i] != NULL; ++i)
5165 if (STRNICMP(name, history_names[i], len) == 0)
5166 return i;
5167
5168 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL)
5169 return hist_char2type(name[0]);
5170
5171 return -1;
5172}
5173
5174static int last_maptick = -1; /* last seen maptick */
5175
5176/*
5177 * Add the given string to the given history. If the string is already in the
5178 * history then it is moved to the front. "histype" may be one of he HIST_
5179 * values.
5180 */
5181 void
5182add_to_history(histype, new_entry, in_map, sep)
5183 int histype;
5184 char_u *new_entry;
5185 int in_map; /* consider maptick when inside a mapping */
5186 int sep; /* separator character used (search hist) */
5187{
5188 histentry_T *hisptr;
5189 int len;
5190
5191 if (hislen == 0) /* no history */
5192 return;
5193
5194 /*
5195 * Searches inside the same mapping overwrite each other, so that only
5196 * the last line is kept. Be careful not to remove a line that was moved
5197 * down, only lines that were added.
5198 */
5199 if (histype == HIST_SEARCH && in_map)
5200 {
5201 if (maptick == last_maptick)
5202 {
5203 /* Current line is from the same mapping, remove it */
5204 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];
5205 vim_free(hisptr->hisstr);
5206 hisptr->hisstr = NULL;
5207 hisptr->hisnum = 0;
5208 --hisnum[histype];
5209 if (--hisidx[HIST_SEARCH] < 0)
5210 hisidx[HIST_SEARCH] = hislen - 1;
5211 }
5212 last_maptick = -1;
5213 }
5214 if (!in_history(histype, new_entry, TRUE))
5215 {
5216 if (++hisidx[histype] == hislen)
5217 hisidx[histype] = 0;
5218 hisptr = &history[histype][hisidx[histype]];
5219 vim_free(hisptr->hisstr);
5220
5221 /* Store the separator after the NUL of the string. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005222 len = (int)STRLEN(new_entry);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223 hisptr->hisstr = vim_strnsave(new_entry, len + 2);
5224 if (hisptr->hisstr != NULL)
5225 hisptr->hisstr[len + 1] = sep;
5226
5227 hisptr->hisnum = ++hisnum[histype];
5228 if (histype == HIST_SEARCH && in_map)
5229 last_maptick = maptick;
5230 }
5231}
5232
5233#if defined(FEAT_EVAL) || defined(PROTO)
5234
5235/*
5236 * Get identifier of newest history entry.
5237 * "histype" may be one of the HIST_ values.
5238 */
5239 int
5240get_history_idx(histype)
5241 int histype;
5242{
5243 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5244 || hisidx[histype] < 0)
5245 return -1;
5246
5247 return history[histype][hisidx[histype]].hisnum;
5248}
5249
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005250static struct cmdline_info *get_ccline_ptr __ARGS((void));
5251
5252/*
5253 * Get pointer to the command line info to use. cmdline_paste() may clear
5254 * ccline and put the previous value in prev_ccline.
5255 */
5256 static struct cmdline_info *
5257get_ccline_ptr()
5258{
5259 if ((State & CMDLINE) == 0)
5260 return NULL;
5261 if (ccline.cmdbuff != NULL)
5262 return &ccline;
5263 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
5264 return &prev_ccline;
5265 return NULL;
5266}
5267
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268/*
5269 * Get the current command line in allocated memory.
5270 * Only works when the command line is being edited.
5271 * Returns NULL when something is wrong.
5272 */
5273 char_u *
5274get_cmdline_str()
5275{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005276 struct cmdline_info *p = get_ccline_ptr();
5277
5278 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005279 return NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005280 return vim_strnsave(p->cmdbuff, p->cmdlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281}
5282
5283/*
5284 * Get the current command line position, counted in bytes.
5285 * Zero is the first position.
5286 * Only works when the command line is being edited.
5287 * Returns -1 when something is wrong.
5288 */
5289 int
5290get_cmdline_pos()
5291{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005292 struct cmdline_info *p = get_ccline_ptr();
5293
5294 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295 return -1;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005296 return p->cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297}
5298
5299/*
5300 * Set the command line byte position to "pos". Zero is the first position.
5301 * Only works when the command line is being edited.
5302 * Returns 1 when failed, 0 when OK.
5303 */
5304 int
5305set_cmdline_pos(pos)
5306 int pos;
5307{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005308 struct cmdline_info *p = get_ccline_ptr();
5309
5310 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311 return 1;
5312
5313 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
5314 * changed the command line. */
5315 if (pos < 0)
5316 new_cmdpos = 0;
5317 else
5318 new_cmdpos = pos;
5319 return 0;
5320}
5321
5322/*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005323 * Get the current command-line type.
Bram Moolenaar1e015462005-09-25 22:16:38 +00005324 * Returns ':' or '/' or '?' or '@' or '>' or '-'
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005325 * Only works when the command line is being edited.
5326 * Returns NUL when something is wrong.
5327 */
5328 int
5329get_cmdline_type()
5330{
5331 struct cmdline_info *p = get_ccline_ptr();
5332
5333 if (p == NULL)
5334 return NUL;
Bram Moolenaar1e015462005-09-25 22:16:38 +00005335 if (p->cmdfirstc == NUL)
5336 return (p->input_fn) ? '@' : '-';
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005337 return p->cmdfirstc;
5338}
5339
5340/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005341 * Calculate history index from a number:
5342 * num > 0: seen as identifying number of a history entry
5343 * num < 0: relative position in history wrt newest entry
5344 * "histype" may be one of the HIST_ values.
5345 */
5346 static int
5347calc_hist_idx(histype, num)
5348 int histype;
5349 int num;
5350{
5351 int i;
5352 histentry_T *hist;
5353 int wrapped = FALSE;
5354
5355 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5356 || (i = hisidx[histype]) < 0 || num == 0)
5357 return -1;
5358
5359 hist = history[histype];
5360 if (num > 0)
5361 {
5362 while (hist[i].hisnum > num)
5363 if (--i < 0)
5364 {
5365 if (wrapped)
5366 break;
5367 i += hislen;
5368 wrapped = TRUE;
5369 }
5370 if (hist[i].hisnum == num && hist[i].hisstr != NULL)
5371 return i;
5372 }
5373 else if (-num <= hislen)
5374 {
5375 i += num + 1;
5376 if (i < 0)
5377 i += hislen;
5378 if (hist[i].hisstr != NULL)
5379 return i;
5380 }
5381 return -1;
5382}
5383
5384/*
5385 * Get a history entry by its index.
5386 * "histype" may be one of the HIST_ values.
5387 */
5388 char_u *
5389get_history_entry(histype, idx)
5390 int histype;
5391 int idx;
5392{
5393 idx = calc_hist_idx(histype, idx);
5394 if (idx >= 0)
5395 return history[histype][idx].hisstr;
5396 else
5397 return (char_u *)"";
5398}
5399
5400/*
5401 * Clear all entries of a history.
5402 * "histype" may be one of the HIST_ values.
5403 */
5404 int
5405clr_history(histype)
5406 int histype;
5407{
5408 int i;
5409 histentry_T *hisptr;
5410
5411 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT)
5412 {
5413 hisptr = history[histype];
5414 for (i = hislen; i--;)
5415 {
5416 vim_free(hisptr->hisstr);
5417 hisptr->hisnum = 0;
5418 hisptr++->hisstr = NULL;
5419 }
5420 hisidx[histype] = -1; /* mark history as cleared */
5421 hisnum[histype] = 0; /* reset identifier counter */
5422 return OK;
5423 }
5424 return FAIL;
5425}
5426
5427/*
5428 * Remove all entries matching {str} from a history.
5429 * "histype" may be one of the HIST_ values.
5430 */
5431 int
5432del_history_entry(histype, str)
5433 int histype;
5434 char_u *str;
5435{
5436 regmatch_T regmatch;
5437 histentry_T *hisptr;
5438 int idx;
5439 int i;
5440 int last;
5441 int found = FALSE;
5442
5443 regmatch.regprog = NULL;
5444 regmatch.rm_ic = FALSE; /* always match case */
5445 if (hislen != 0
5446 && histype >= 0
5447 && histype < HIST_COUNT
5448 && *str != NUL
5449 && (idx = hisidx[histype]) >= 0
5450 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING))
5451 != NULL)
5452 {
5453 i = last = idx;
5454 do
5455 {
5456 hisptr = &history[histype][i];
5457 if (hisptr->hisstr == NULL)
5458 break;
5459 if (vim_regexec(&regmatch, hisptr->hisstr, (colnr_T)0))
5460 {
5461 found = TRUE;
5462 vim_free(hisptr->hisstr);
5463 hisptr->hisstr = NULL;
5464 hisptr->hisnum = 0;
5465 }
5466 else
5467 {
5468 if (i != last)
5469 {
5470 history[histype][last] = *hisptr;
5471 hisptr->hisstr = NULL;
5472 hisptr->hisnum = 0;
5473 }
5474 if (--last < 0)
5475 last += hislen;
5476 }
5477 if (--i < 0)
5478 i += hislen;
5479 } while (i != idx);
5480 if (history[histype][idx].hisstr == NULL)
5481 hisidx[histype] = -1;
5482 }
5483 vim_free(regmatch.regprog);
5484 return found;
5485}
5486
5487/*
5488 * Remove an indexed entry from a history.
5489 * "histype" may be one of the HIST_ values.
5490 */
5491 int
5492del_history_idx(histype, idx)
5493 int histype;
5494 int idx;
5495{
5496 int i, j;
5497
5498 i = calc_hist_idx(histype, idx);
5499 if (i < 0)
5500 return FALSE;
5501 idx = hisidx[histype];
5502 vim_free(history[histype][i].hisstr);
5503
5504 /* When deleting the last added search string in a mapping, reset
5505 * last_maptick, so that the last added search string isn't deleted again.
5506 */
5507 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx)
5508 last_maptick = -1;
5509
5510 while (i != idx)
5511 {
5512 j = (i + 1) % hislen;
5513 history[histype][i] = history[histype][j];
5514 i = j;
5515 }
5516 history[histype][i].hisstr = NULL;
5517 history[histype][i].hisnum = 0;
5518 if (--i < 0)
5519 i += hislen;
5520 hisidx[histype] = i;
5521 return TRUE;
5522}
5523
5524#endif /* FEAT_EVAL */
5525
5526#if defined(FEAT_CRYPT) || defined(PROTO)
5527/*
5528 * Very specific function to remove the value in ":set key=val" from the
5529 * history.
5530 */
5531 void
5532remove_key_from_history()
5533{
5534 char_u *p;
5535 int i;
5536
5537 i = hisidx[HIST_CMD];
5538 if (i < 0)
5539 return;
5540 p = history[HIST_CMD][i].hisstr;
5541 if (p != NULL)
5542 for ( ; *p; ++p)
5543 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3]))
5544 {
5545 p = vim_strchr(p + 3, '=');
5546 if (p == NULL)
5547 break;
5548 ++p;
5549 for (i = 0; p[i] && !vim_iswhite(p[i]); ++i)
5550 if (p[i] == '\\' && p[i + 1])
5551 ++i;
Bram Moolenaar446cb832008-06-24 21:56:24 +00005552 STRMOVE(p, p + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553 --p;
5554 }
5555}
5556#endif
5557
5558#endif /* FEAT_CMDHIST */
5559
5560#if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO)
5561/*
5562 * Get indices "num1,num2" that specify a range within a list (not a range of
5563 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
5564 * Returns OK if parsed successfully, otherwise FAIL.
5565 */
5566 int
5567get_list_range(str, num1, num2)
5568 char_u **str;
5569 int *num1;
5570 int *num2;
5571{
5572 int len;
5573 int first = FALSE;
5574 long num;
5575
5576 *str = skipwhite(*str);
5577 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
5578 {
5579 vim_str2nr(*str, NULL, &len, FALSE, FALSE, &num, NULL);
5580 *str += len;
5581 *num1 = (int)num;
5582 first = TRUE;
5583 }
5584 *str = skipwhite(*str);
5585 if (**str == ',') /* parse "to" part of range */
5586 {
5587 *str = skipwhite(*str + 1);
5588 vim_str2nr(*str, NULL, &len, FALSE, FALSE, &num, NULL);
5589 if (len > 0)
5590 {
5591 *num2 = (int)num;
5592 *str = skipwhite(*str + len);
5593 }
5594 else if (!first) /* no number given at all */
5595 return FAIL;
5596 }
5597 else if (first) /* only one number given */
5598 *num2 = *num1;
5599 return OK;
5600}
5601#endif
5602
5603#if defined(FEAT_CMDHIST) || defined(PROTO)
5604/*
5605 * :history command - print a history
5606 */
5607 void
5608ex_history(eap)
5609 exarg_T *eap;
5610{
5611 histentry_T *hist;
5612 int histype1 = HIST_CMD;
5613 int histype2 = HIST_CMD;
5614 int hisidx1 = 1;
5615 int hisidx2 = -1;
5616 int idx;
5617 int i, j, k;
5618 char_u *end;
5619 char_u *arg = eap->arg;
5620
5621 if (hislen == 0)
5622 {
5623 MSG(_("'history' option is zero"));
5624 return;
5625 }
5626
5627 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ','))
5628 {
5629 end = arg;
5630 while (ASCII_ISALPHA(*end)
5631 || vim_strchr((char_u *)":=@>/?", *end) != NULL)
5632 end++;
5633 i = *end;
5634 *end = NUL;
5635 histype1 = get_histtype(arg);
5636 if (histype1 == -1)
5637 {
5638 if (STRICMP(arg, "all") == 0)
5639 {
5640 histype1 = 0;
5641 histype2 = HIST_COUNT-1;
5642 }
5643 else
5644 {
5645 *end = i;
5646 EMSG(_(e_trailing));
5647 return;
5648 }
5649 }
5650 else
5651 histype2 = histype1;
5652 *end = i;
5653 }
5654 else
5655 end = arg;
5656 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL)
5657 {
5658 EMSG(_(e_trailing));
5659 return;
5660 }
5661
5662 for (; !got_int && histype1 <= histype2; ++histype1)
5663 {
5664 STRCPY(IObuff, "\n # ");
5665 STRCAT(STRCAT(IObuff, history_names[histype1]), " history");
5666 MSG_PUTS_TITLE(IObuff);
5667 idx = hisidx[histype1];
5668 hist = history[histype1];
5669 j = hisidx1;
5670 k = hisidx2;
5671 if (j < 0)
5672 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum;
5673 if (k < 0)
5674 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum;
5675 if (idx >= 0 && j <= k)
5676 for (i = idx + 1; !got_int; ++i)
5677 {
5678 if (i == hislen)
5679 i = 0;
5680 if (hist[i].hisstr != NULL
5681 && hist[i].hisnum >= j && hist[i].hisnum <= k)
5682 {
5683 msg_putchar('\n');
5684 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ',
5685 hist[i].hisnum);
5686 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10)
5687 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff),
5688 (int)Columns - 10);
5689 else
5690 STRCAT(IObuff, hist[i].hisstr);
5691 msg_outtrans(IObuff);
5692 out_flush();
5693 }
5694 if (i == idx)
5695 break;
5696 }
5697 }
5698}
5699#endif
5700
5701#if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO)
5702static char_u **viminfo_history[HIST_COUNT] = {NULL, NULL, NULL, NULL};
5703static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0};
5704static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0};
5705static int viminfo_add_at_front = FALSE;
5706
5707static int hist_type2char __ARGS((int type, int use_question));
5708
5709/*
5710 * Translate a history type number to the associated character.
5711 */
5712 static int
5713hist_type2char(type, use_question)
5714 int type;
5715 int use_question; /* use '?' instead of '/' */
5716{
5717 if (type == HIST_CMD)
5718 return ':';
5719 if (type == HIST_SEARCH)
5720 {
5721 if (use_question)
5722 return '?';
5723 else
5724 return '/';
5725 }
5726 if (type == HIST_EXPR)
5727 return '=';
5728 return '@';
5729}
5730
5731/*
5732 * Prepare for reading the history from the viminfo file.
5733 * This allocates history arrays to store the read history lines.
5734 */
5735 void
5736prepare_viminfo_history(asklen)
5737 int asklen;
5738{
5739 int i;
5740 int num;
5741 int type;
5742 int len;
5743
5744 init_history();
5745 viminfo_add_at_front = (asklen != 0);
5746 if (asklen > hislen)
5747 asklen = hislen;
5748
5749 for (type = 0; type < HIST_COUNT; ++type)
5750 {
5751 /*
5752 * Count the number of empty spaces in the history list. If there are
5753 * more spaces available than we request, then fill them up.
5754 */
5755 for (i = 0, num = 0; i < hislen; i++)
5756 if (history[type][i].hisstr == NULL)
5757 num++;
5758 len = asklen;
5759 if (num > len)
5760 len = num;
5761 if (len <= 0)
5762 viminfo_history[type] = NULL;
5763 else
5764 viminfo_history[type] =
5765 (char_u **)lalloc((long_u)(len * sizeof(char_u *)), FALSE);
5766 if (viminfo_history[type] == NULL)
5767 len = 0;
5768 viminfo_hislen[type] = len;
5769 viminfo_hisidx[type] = 0;
5770 }
5771}
5772
5773/*
5774 * Accept a line from the viminfo, store it in the history array when it's
5775 * new.
5776 */
5777 int
5778read_viminfo_history(virp)
5779 vir_T *virp;
5780{
5781 int type;
5782 long_u len;
5783 char_u *val;
5784 char_u *p;
5785
5786 type = hist_char2type(virp->vir_line[0]);
5787 if (viminfo_hisidx[type] < viminfo_hislen[type])
5788 {
5789 val = viminfo_readstring(virp, 1, TRUE);
5790 if (val != NULL && *val != NUL)
5791 {
5792 if (!in_history(type, val + (type == HIST_SEARCH),
5793 viminfo_add_at_front))
5794 {
5795 /* Need to re-allocate to append the separator byte. */
5796 len = STRLEN(val);
5797 p = lalloc(len + 2, TRUE);
5798 if (p != NULL)
5799 {
5800 if (type == HIST_SEARCH)
5801 {
5802 /* Search entry: Move the separator from the first
5803 * column to after the NUL. */
5804 mch_memmove(p, val + 1, (size_t)len);
5805 p[len] = (*val == ' ' ? NUL : *val);
5806 }
5807 else
5808 {
5809 /* Not a search entry: No separator in the viminfo
5810 * file, add a NUL separator. */
5811 mch_memmove(p, val, (size_t)len + 1);
5812 p[len + 1] = NUL;
5813 }
5814 viminfo_history[type][viminfo_hisidx[type]++] = p;
5815 }
5816 }
5817 }
5818 vim_free(val);
5819 }
5820 return viminfo_readline(virp);
5821}
5822
5823 void
5824finish_viminfo_history()
5825{
5826 int idx;
5827 int i;
5828 int type;
5829
5830 for (type = 0; type < HIST_COUNT; ++type)
5831 {
5832 if (history[type] == NULL)
5833 return;
5834 idx = hisidx[type] + viminfo_hisidx[type];
5835 if (idx >= hislen)
5836 idx -= hislen;
5837 else if (idx < 0)
5838 idx = hislen - 1;
5839 if (viminfo_add_at_front)
5840 hisidx[type] = idx;
5841 else
5842 {
5843 if (hisidx[type] == -1)
5844 hisidx[type] = hislen - 1;
5845 do
5846 {
5847 if (history[type][idx].hisstr != NULL)
5848 break;
5849 if (++idx == hislen)
5850 idx = 0;
5851 } while (idx != hisidx[type]);
5852 if (idx != hisidx[type] && --idx < 0)
5853 idx = hislen - 1;
5854 }
5855 for (i = 0; i < viminfo_hisidx[type]; i++)
5856 {
5857 vim_free(history[type][idx].hisstr);
5858 history[type][idx].hisstr = viminfo_history[type][i];
5859 if (--idx < 0)
5860 idx = hislen - 1;
5861 }
5862 idx += 1;
5863 idx %= hislen;
5864 for (i = 0; i < viminfo_hisidx[type]; i++)
5865 {
5866 history[type][idx++].hisnum = ++hisnum[type];
5867 idx %= hislen;
5868 }
5869 vim_free(viminfo_history[type]);
5870 viminfo_history[type] = NULL;
5871 }
5872}
5873
5874 void
5875write_viminfo_history(fp)
5876 FILE *fp;
5877{
5878 int i;
5879 int type;
5880 int num_saved;
5881 char_u *p;
5882 int c;
5883
5884 init_history();
5885 if (hislen == 0)
5886 return;
5887 for (type = 0; type < HIST_COUNT; ++type)
5888 {
5889 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE));
5890 if (num_saved == 0)
5891 continue;
5892 if (num_saved < 0) /* Use default */
5893 num_saved = hislen;
5894 fprintf(fp, _("\n# %s History (newest to oldest):\n"),
5895 type == HIST_CMD ? _("Command Line") :
5896 type == HIST_SEARCH ? _("Search String") :
5897 type == HIST_EXPR ? _("Expression") :
5898 _("Input Line"));
5899 if (num_saved > hislen)
5900 num_saved = hislen;
5901 i = hisidx[type];
5902 if (i >= 0)
5903 while (num_saved--)
5904 {
5905 p = history[type][i].hisstr;
5906 if (p != NULL)
5907 {
Bram Moolenaar75c50c42005-06-04 22:06:24 +00005908 fputc(hist_type2char(type, TRUE), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005909 /* For the search history: put the separator in the second
5910 * column; use a space if there isn't one. */
5911 if (type == HIST_SEARCH)
5912 {
5913 c = p[STRLEN(p) + 1];
5914 putc(c == NUL ? ' ' : c, fp);
5915 }
5916 viminfo_writestring(fp, p);
5917 }
5918 if (--i < 0)
5919 i = hislen - 1;
5920 }
5921 }
5922}
5923#endif /* FEAT_VIMINFO */
5924
5925#if defined(FEAT_FKMAP) || defined(PROTO)
5926/*
5927 * Write a character at the current cursor+offset position.
5928 * It is directly written into the command buffer block.
5929 */
5930 void
5931cmd_pchar(c, offset)
5932 int c, offset;
5933{
5934 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
5935 {
5936 EMSG(_("E198: cmd_pchar beyond the command length"));
5937 return;
5938 }
5939 ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c;
5940 ccline.cmdbuff[ccline.cmdlen] = NUL;
5941}
5942
5943 int
5944cmd_gchar(offset)
5945 int offset;
5946{
5947 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
5948 {
5949 /* EMSG(_("cmd_gchar beyond the command length")); */
5950 return NUL;
5951 }
5952 return (int)ccline.cmdbuff[ccline.cmdpos + offset];
5953}
5954#endif
5955
5956#if defined(FEAT_CMDWIN) || defined(PROTO)
5957/*
5958 * Open a window on the current command line and history. Allow editing in
5959 * the window. Returns when the window is closed.
5960 * Returns:
5961 * CR if the command is to be executed
5962 * Ctrl_C if it is to be abandoned
5963 * K_IGNORE if editing continues
5964 */
5965 static int
5966ex_window()
5967{
5968 struct cmdline_info save_ccline;
5969 buf_T *old_curbuf = curbuf;
5970 win_T *old_curwin = curwin;
5971 buf_T *bp;
5972 win_T *wp;
5973 int i;
5974 linenr_T lnum;
5975 int histtype;
5976 garray_T winsizes;
Bram Moolenaar7693ec62008-07-24 18:29:37 +00005977#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00005978 char_u typestr[2];
Bram Moolenaar7693ec62008-07-24 18:29:37 +00005979#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005980 int save_restart_edit = restart_edit;
5981 int save_State = State;
5982 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00005983#ifdef FEAT_RIGHTLEFT
5984 int save_cmdmsg_rl = cmdmsg_rl;
5985#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005986
5987 /* Can't do this recursively. Can't do it when typing a password. */
5988 if (cmdwin_type != 0
5989# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
5990 || cmdline_star > 0
5991# endif
5992 )
5993 {
5994 beep_flush();
5995 return K_IGNORE;
5996 }
5997
5998 /* Save current window sizes. */
5999 win_size_save(&winsizes);
6000
6001# ifdef FEAT_AUTOCMD
6002 /* Don't execute autocommands while creating the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006003 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006004# endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00006005 /* don't use a new tab page */
6006 cmdmod.tab = 0;
6007
Bram Moolenaar071d4272004-06-13 20:20:40 +00006008 /* Create a window for the command-line buffer. */
6009 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
6010 {
6011 beep_flush();
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006012# ifdef FEAT_AUTOCMD
6013 unblock_autocmds();
6014# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015 return K_IGNORE;
6016 }
6017 cmdwin_type = ccline.cmdfirstc;
6018 if (cmdwin_type == NUL)
6019 cmdwin_type = '-';
6020
6021 /* Create the command-line buffer empty. */
6022 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE);
Bram Moolenaar446cb832008-06-24 21:56:24 +00006023 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006024 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
6025 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
6026 curbuf->b_p_ma = TRUE;
6027# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00006028 curwin->w_p_rl = cmdmsg_rl;
6029 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006030# endif
6031# ifdef FEAT_SCROLLBIND
6032 curwin->w_p_scb = FALSE;
6033# endif
6034
6035# ifdef FEAT_AUTOCMD
6036 /* Do execute autocommands for setting the filetype (load syntax). */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006037 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038# endif
6039
Bram Moolenaar46152342005-09-07 21:18:43 +00006040 /* Showing the prompt may have set need_wait_return, reset it. */
6041 need_wait_return = FALSE;
6042
Bram Moolenaar071d4272004-06-13 20:20:40 +00006043 histtype = hist_char2type(ccline.cmdfirstc);
6044 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
6045 {
6046 if (p_wc == TAB)
6047 {
6048 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
6049 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
6050 }
6051 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
6052 }
6053
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006054 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
6055 * sets 'textwidth' to 78). */
6056 curbuf->b_p_tw = 0;
6057
Bram Moolenaar071d4272004-06-13 20:20:40 +00006058 /* Fill the buffer with the history. */
6059 init_history();
6060 if (hislen > 0)
6061 {
6062 i = hisidx[histtype];
6063 if (i >= 0)
6064 {
6065 lnum = 0;
6066 do
6067 {
6068 if (++i == hislen)
6069 i = 0;
6070 if (history[histtype][i].hisstr != NULL)
6071 ml_append(lnum++, history[histtype][i].hisstr,
6072 (colnr_T)0, FALSE);
6073 }
6074 while (i != hisidx[histtype]);
6075 }
6076 }
6077
6078 /* Replace the empty last line with the current command-line and put the
6079 * cursor there. */
6080 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
6081 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6082 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00006083 changed_line_abv_curs();
6084 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00006085 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006086
6087 /* Save the command line info, can be used recursively. */
6088 save_ccline = ccline;
6089 ccline.cmdbuff = NULL;
6090 ccline.cmdprompt = NULL;
6091
6092 /* No Ex mode here! */
6093 exmode_active = 0;
6094
6095 State = NORMAL;
6096# ifdef FEAT_MOUSE
6097 setmouse();
6098# endif
6099
6100# ifdef FEAT_AUTOCMD
6101 /* Trigger CmdwinEnter autocommands. */
6102 typestr[0] = cmdwin_type;
6103 typestr[1] = NUL;
6104 apply_autocmds(EVENT_CMDWINENTER, typestr, typestr, FALSE, curbuf);
Bram Moolenaar5495cc92006-08-16 14:23:04 +00006105 if (restart_edit != 0) /* autocmd with ":startinsert" */
6106 stuffcharReadbuff(K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006107# endif
6108
6109 i = RedrawingDisabled;
6110 RedrawingDisabled = 0;
6111
6112 /*
6113 * Call the main loop until <CR> or CTRL-C is typed.
6114 */
6115 cmdwin_result = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00006116 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006117
6118 RedrawingDisabled = i;
6119
6120# ifdef FEAT_AUTOCMD
6121 /* Trigger CmdwinLeave autocommands. */
6122 apply_autocmds(EVENT_CMDWINLEAVE, typestr, typestr, FALSE, curbuf);
6123# endif
6124
Bram Moolenaarccc18222007-05-10 18:25:20 +00006125 /* Restore the command line info. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006126 ccline = save_ccline;
6127 cmdwin_type = 0;
6128
6129 exmode_active = save_exmode;
6130
Bram Moolenaarf9821062008-06-20 16:31:07 +00006131 /* Safety check: The old window or buffer was deleted: It's a bug when
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132 * this happens! */
6133 if (!win_valid(old_curwin) || !buf_valid(old_curbuf))
6134 {
6135 cmdwin_result = Ctrl_C;
6136 EMSG(_("E199: Active window or buffer deleted"));
6137 }
6138 else
6139 {
6140# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
6141 /* autocmds may abort script processing */
6142 if (aborting() && cmdwin_result != K_IGNORE)
6143 cmdwin_result = Ctrl_C;
6144# endif
6145 /* Set the new command line from the cmdline buffer. */
6146 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00006147 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006148 {
Bram Moolenaar46152342005-09-07 21:18:43 +00006149 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
6150
6151 if (histtype == HIST_CMD)
6152 {
6153 /* Execute the command directly. */
6154 ccline.cmdbuff = vim_strsave((char_u *)p);
6155 cmdwin_result = CAR;
6156 }
6157 else
6158 {
6159 /* First need to cancel what we were doing. */
6160 ccline.cmdbuff = NULL;
6161 stuffcharReadbuff(':');
6162 stuffReadbuff((char_u *)p);
6163 stuffcharReadbuff(CAR);
6164 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006165 }
6166 else if (cmdwin_result == K_XF2) /* :qa typed */
6167 {
6168 ccline.cmdbuff = vim_strsave((char_u *)"qa");
6169 cmdwin_result = CAR;
6170 }
6171 else
6172 ccline.cmdbuff = vim_strsave(ml_get_curline());
6173 if (ccline.cmdbuff == NULL)
6174 cmdwin_result = Ctrl_C;
6175 else
6176 {
6177 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
6178 ccline.cmdbufflen = ccline.cmdlen + 1;
6179 ccline.cmdpos = curwin->w_cursor.col;
6180 if (ccline.cmdpos > ccline.cmdlen)
6181 ccline.cmdpos = ccline.cmdlen;
6182 if (cmdwin_result == K_IGNORE)
6183 {
6184 set_cmdspos_cursor();
6185 redrawcmd();
6186 }
6187 }
6188
6189# ifdef FEAT_AUTOCMD
6190 /* Don't execute autocommands while deleting the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006191 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006192# endif
6193 wp = curwin;
6194 bp = curbuf;
6195 win_goto(old_curwin);
6196 win_close(wp, TRUE);
6197 close_buffer(NULL, bp, DOBUF_WIPE);
6198
6199 /* Restore window sizes. */
6200 win_size_restore(&winsizes);
6201
6202# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006203 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006204# endif
6205 }
6206
6207 ga_clear(&winsizes);
6208 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00006209# ifdef FEAT_RIGHTLEFT
6210 cmdmsg_rl = save_cmdmsg_rl;
6211# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006212
6213 State = save_State;
6214# ifdef FEAT_MOUSE
6215 setmouse();
6216# endif
6217
6218 return cmdwin_result;
6219}
6220#endif /* FEAT_CMDWIN */
6221
6222/*
6223 * Used for commands that either take a simple command string argument, or:
6224 * cmd << endmarker
6225 * {script}
6226 * endmarker
6227 * Returns a pointer to allocated memory with {script} or NULL.
6228 */
6229 char_u *
6230script_get(eap, cmd)
6231 exarg_T *eap;
6232 char_u *cmd;
6233{
6234 char_u *theline;
6235 char *end_pattern = NULL;
6236 char dot[] = ".";
6237 garray_T ga;
6238
6239 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
6240 return NULL;
6241
6242 ga_init2(&ga, 1, 0x400);
6243
6244 if (cmd[2] != NUL)
6245 end_pattern = (char *)skipwhite(cmd + 2);
6246 else
6247 end_pattern = dot;
6248
6249 for (;;)
6250 {
6251 theline = eap->getline(
6252#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00006253 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00006254#endif
6255 NUL, eap->cookie, 0);
6256
6257 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
Bram Moolenaarbe555e72008-08-06 12:19:26 +00006258 {
6259 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006260 break;
Bram Moolenaarbe555e72008-08-06 12:19:26 +00006261 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006262
6263 ga_concat(&ga, theline);
6264 ga_append(&ga, '\n');
6265 vim_free(theline);
6266 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00006267 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006268
6269 return (char_u *)ga.ga_data;
6270}