blob: 3ac20ff85aea449ce666450c684df85c0cf70755 [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 */
37 int input_fn; /* Invoked for input() function */
38# 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 Moolenaar8299df92004-07-10 09:47:34 +000089static int cmdline_paste __ARGS((int regname, int literally));
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;
271 xpc.xp_arg = ccline.xp_arg;
272 }
273#endif
274
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275 /*
276 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when
277 * doing ":@0" when register 0 doesn't contain a CR.
278 */
279 msg_scroll = FALSE;
280
281 State = CMDLINE;
282
283 if (firstc == '/' || firstc == '?' || firstc == '@')
284 {
285 /* Use ":lmap" mappings for search pattern and input(). */
286 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT)
287 b_im_ptr = &curbuf->b_p_iminsert;
288 else
289 b_im_ptr = &curbuf->b_p_imsearch;
290 if (*b_im_ptr == B_IMODE_LMAP)
291 State |= LANGMAP;
292#ifdef USE_IM_CONTROL
293 im_set_active(*b_im_ptr == B_IMODE_IM);
294#endif
295 }
296#ifdef USE_IM_CONTROL
297 else if (p_imcmdline)
298 im_set_active(TRUE);
299#endif
300
301#ifdef FEAT_MOUSE
302 setmouse();
303#endif
304#ifdef CURSOR_SHAPE
305 ui_cursor_shape(); /* may show different cursor shape */
306#endif
307
Bram Moolenaarf4d11452005-12-02 00:46:37 +0000308 /* When inside an autocommand for writing "exiting" may be set and
309 * terminal mode set to cooked. Need to set raw mode here then. */
310 settmode(TMODE_RAW);
311
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312#ifdef FEAT_CMDHIST
313 init_history();
314 hiscnt = hislen; /* set hiscnt to impossible history value */
315 histype = hist_char2type(firstc);
316#endif
317
318#ifdef FEAT_DIGRAPHS
319 do_digraph(-1); /* init digraph typahead */
320#endif
321
322 /*
323 * Collect the command string, handling editing keys.
324 */
325 for (;;)
326 {
327#ifdef USE_ON_FLY_SCROLL
328 dont_scroll = FALSE; /* allow scrolling here */
329#endif
330 quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */
331
332 cursorcmd(); /* set the cursor on the right spot */
333 c = safe_vgetc();
334 if (KeyTyped)
335 {
336 some_key_typed = TRUE;
337#ifdef FEAT_RIGHTLEFT
338 if (cmd_hkmap)
339 c = hkmap(c);
340# ifdef FEAT_FKMAP
341 if (cmd_fkmap)
342 c = cmdl_fkmap(c);
343# endif
344 if (cmdmsg_rl && !KeyStuffed)
345 {
346 /* Invert horizontal movements and operations. Only when
347 * typed by the user directly, not when the result of a
348 * mapping. */
349 switch (c)
350 {
351 case K_RIGHT: c = K_LEFT; break;
352 case K_S_RIGHT: c = K_S_LEFT; break;
353 case K_C_RIGHT: c = K_C_LEFT; break;
354 case K_LEFT: c = K_RIGHT; break;
355 case K_S_LEFT: c = K_S_RIGHT; break;
356 case K_C_LEFT: c = K_C_RIGHT; break;
357 }
358 }
359#endif
360 }
361
362 /*
363 * Ignore got_int when CTRL-C was typed here.
364 * Don't ignore it in :global, we really need to break then, e.g., for
365 * ":g/pat/normal /pat" (without the <CR>).
366 * Don't ignore it for the input() function.
367 */
368 if ((c == Ctrl_C
369#ifdef UNIX
370 || c == intr_char
371#endif
372 )
373#if defined(FEAT_EVAL) || defined(FEAT_CRYPT)
374 && firstc != '@'
375#endif
376#ifdef FEAT_EVAL
377 && !break_ctrl_c
378#endif
379 && !global_busy)
380 got_int = FALSE;
381
382#ifdef FEAT_CMDHIST
383 /* free old command line when finished moving around in the history
384 * list */
385 if (lookfor != NULL
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000386 && c != K_S_DOWN && c != K_S_UP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000387 && c != K_DOWN && c != K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388 && c != K_PAGEDOWN && c != K_PAGEUP
389 && c != K_KPAGEDOWN && c != K_KPAGEUP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000390 && c != K_LEFT && c != K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N)))
392 {
393 vim_free(lookfor);
394 lookfor = NULL;
395 }
396#endif
397
398 /*
399 * <S-Tab> works like CTRL-P (unless 'wc' is <S-Tab>).
400 */
401 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles != -1)
402 c = Ctrl_P;
403
404#ifdef FEAT_WILDMENU
405 /* Special translations for 'wildmenu' */
406 if (did_wild_list && p_wmnu)
407 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000408 if (c == K_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409 c = Ctrl_P;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000410 else if (c == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411 c = Ctrl_N;
412 }
413 /* Hitting CR after "emenu Name.": complete submenu */
414 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu
415 && ccline.cmdpos > 1
416 && ccline.cmdbuff[ccline.cmdpos - 1] == '.'
417 && ccline.cmdbuff[ccline.cmdpos - 2] != '\\'
418 && (c == '\n' || c == '\r' || c == K_KENTER))
419 c = K_DOWN;
420#endif
421
422 /* free expanded names when finished walking through matches */
423 if (xpc.xp_numfiles != -1
424 && !(c == p_wc && KeyTyped) && c != p_wcm
425 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A
426 && c != Ctrl_L)
427 {
428 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
429 did_wild_list = FALSE;
430#ifdef FEAT_WILDMENU
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000431 if (!p_wmnu || (c != K_UP && c != K_DOWN))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432#endif
433 xpc.xp_context = EXPAND_NOTHING;
434 wim_index = 0;
435#ifdef FEAT_WILDMENU
436 if (p_wmnu && wild_menu_showing != 0)
437 {
438 int skt = KeyTyped;
Bram Moolenaar1e015462005-09-25 22:16:38 +0000439 int old_RedrawingDisabled = RedrawingDisabled;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000440
441 if (ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000442 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443
444 if (wild_menu_showing == WM_SCROLLED)
445 {
446 /* Entered command line, move it up */
447 cmdline_row--;
448 redrawcmd();
449 }
450 else if (save_p_ls != -1)
451 {
452 /* restore 'laststatus' and 'winminheight' */
453 p_ls = save_p_ls;
454 p_wmh = save_p_wmh;
455 last_status(FALSE);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000456 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000457 update_screen(VALID); /* redraw the screen NOW */
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000458 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459 redrawcmd();
460 save_p_ls = -1;
461 }
462 else
463 {
464# ifdef FEAT_VERTSPLIT
465 win_redraw_last_status(topframe);
466# else
467 lastwin->w_redr_status = TRUE;
468# endif
469 redraw_statuslines();
470 }
471 KeyTyped = skt;
472 wild_menu_showing = 0;
Bram Moolenaar1e015462005-09-25 22:16:38 +0000473 if (ccline.input_fn)
474 RedrawingDisabled = old_RedrawingDisabled;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000475 }
476#endif
477 }
478
479#ifdef FEAT_WILDMENU
480 /* Special translations for 'wildmenu' */
481 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu)
482 {
483 /* Hitting <Down> after "emenu Name.": complete submenu */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000484 if (ccline.cmdbuff[ccline.cmdpos - 1] == '.' && c == K_DOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485 c = p_wc;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000486 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000487 {
488 /* Hitting <Up>: Remove one submenu name in front of the
489 * cursor */
490 int found = FALSE;
491
492 j = (int)(xpc.xp_pattern - ccline.cmdbuff);
493 i = 0;
494 while (--j > 0)
495 {
496 /* check for start of menu name */
497 if (ccline.cmdbuff[j] == ' '
498 && ccline.cmdbuff[j - 1] != '\\')
499 {
500 i = j + 1;
501 break;
502 }
503 /* check for start of submenu name */
504 if (ccline.cmdbuff[j] == '.'
505 && ccline.cmdbuff[j - 1] != '\\')
506 {
507 if (found)
508 {
509 i = j + 1;
510 break;
511 }
512 else
513 found = TRUE;
514 }
515 }
516 if (i > 0)
517 cmdline_del(i);
518 c = p_wc;
519 xpc.xp_context = EXPAND_NOTHING;
520 }
521 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000522 if ((xpc.xp_context == EXPAND_FILES
523 || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524 {
525 char_u upseg[5];
526
527 upseg[0] = PATHSEP;
528 upseg[1] = '.';
529 upseg[2] = '.';
530 upseg[3] = PATHSEP;
531 upseg[4] = NUL;
532
533 if (ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000534 && c == K_DOWN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 && (ccline.cmdbuff[ccline.cmdpos - 2] != '.'
536 || ccline.cmdbuff[ccline.cmdpos - 3] != '.'))
537 {
538 /* go down a directory */
539 c = p_wc;
540 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000541 else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542 {
543 /* If in a direct ancestor, strip off one ../ to go down */
544 int found = FALSE;
545
546 j = ccline.cmdpos;
547 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
548 while (--j > i)
549 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000550#ifdef FEAT_MBYTE
551 if (has_mbyte)
552 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
553#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554 if (vim_ispathsep(ccline.cmdbuff[j]))
555 {
556 found = TRUE;
557 break;
558 }
559 }
560 if (found
561 && ccline.cmdbuff[j - 1] == '.'
562 && ccline.cmdbuff[j - 2] == '.'
563 && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2))
564 {
565 cmdline_del(j - 2);
566 c = p_wc;
567 }
568 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000569 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 {
571 /* go up a directory */
572 int found = FALSE;
573
574 j = ccline.cmdpos - 1;
575 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
576 while (--j > i)
577 {
578#ifdef FEAT_MBYTE
579 if (has_mbyte)
580 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
581#endif
582 if (vim_ispathsep(ccline.cmdbuff[j])
583#ifdef BACKSLASH_IN_FILENAME
584 && vim_strchr(" *?[{`$%#", ccline.cmdbuff[j + 1])
585 == NULL
586#endif
587 )
588 {
589 if (found)
590 {
591 i = j + 1;
592 break;
593 }
594 else
595 found = TRUE;
596 }
597 }
598
599 if (!found)
600 j = i;
601 else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0)
602 j += 4;
603 else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0
604 && j == i)
605 j += 3;
606 else
607 j = 0;
608 if (j > 0)
609 {
610 /* TODO this is only for DOS/UNIX systems - need to put in
611 * machine-specific stuff here and in upseg init */
612 cmdline_del(j);
613 put_on_cmdline(upseg + 1, 3, FALSE);
614 }
615 else if (ccline.cmdpos > i)
616 cmdline_del(i);
617 c = p_wc;
618 }
619 }
620#if 0 /* If enabled <Down> on a file takes you _completely_ out of wildmenu */
621 if (p_wmnu
622 && (xpc.xp_context == EXPAND_FILES
623 || xpc.xp_context == EXPAND_MENUNAMES)
624 && (c == K_UP || c == K_DOWN))
625 xpc.xp_context = EXPAND_NOTHING;
626#endif
627
628#endif /* FEAT_WILDMENU */
629
630 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert
631 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */
632 if (c == Ctrl_BSL)
633 {
634 ++no_mapping;
635 ++allow_keys;
636 c = safe_vgetc();
637 --no_mapping;
638 --allow_keys;
639 /* CTRL-\ e doesn't work when obtaining an expression. */
640 if (c != Ctrl_N && c != Ctrl_G
641 && (c != 'e' || ccline.cmdfirstc == '='))
642 {
643 vungetc(c);
644 c = Ctrl_BSL;
645 }
646#ifdef FEAT_EVAL
647 else if (c == 'e')
648 {
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000649 char_u *p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650
651 /*
652 * Replace the command line with the result of an expression.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000653 * Need to save and restore the current command line, to be
654 * able to enter a new one...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655 */
656 if (ccline.cmdpos == ccline.cmdlen)
657 new_cmdpos = 99999; /* keep it at the end */
658 else
659 new_cmdpos = ccline.cmdpos;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000660
661 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000663 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664 if (c == '=')
665 {
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000666 /* Need to save and restore ccline. And set "textlock"
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000667 * to avoid nasty things like going to another buffer when
668 * evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000669 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000670 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671 p = get_expr_line();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000672 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000673 restore_cmdline(&save_ccline);
674
675 if (p != NULL && realloc_cmdbuff((int)STRLEN(p) + 1) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000677 ccline.cmdlen = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 STRCPY(ccline.cmdbuff, p);
679 vim_free(p);
680
681 /* Restore the cursor or use the position set with
682 * set_cmdline_pos(). */
683 if (new_cmdpos > ccline.cmdlen)
684 ccline.cmdpos = ccline.cmdlen;
685 else
686 ccline.cmdpos = new_cmdpos;
687
688 KeyTyped = FALSE; /* Don't do p_wc completion. */
689 redrawcmd();
690 goto cmdline_changed;
691 }
692 }
693 beep_flush();
694 c = ESC;
695 }
696#endif
697 else
698 {
699 if (c == Ctrl_G && p_im && restart_edit == 0)
700 restart_edit = 'a';
701 gotesc = TRUE; /* will free ccline.cmdbuff after putting it
702 in history */
703 goto returncmd; /* back to Normal mode */
704 }
705 }
706
707#ifdef FEAT_CMDWIN
708 if (c == cedit_key || c == K_CMDWIN)
709 {
710 /*
711 * Open a window to edit the command line (and history).
712 */
713 c = ex_window();
714 some_key_typed = TRUE;
715 }
716# ifdef FEAT_DIGRAPHS
717 else
718# endif
719#endif
720#ifdef FEAT_DIGRAPHS
721 c = do_digraph(c);
722#endif
723
724 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC
725 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL)))
726 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000727 /* In Ex mode a backslash escapes a newline. */
728 if (exmode_active
729 && c != ESC
730 && ccline.cmdpos > 0
731 && ccline.cmdpos == ccline.cmdlen
732 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000734 if (c == K_KENTER)
735 c = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000737 else
738 {
739 gotesc = FALSE; /* Might have typed ESC previously, don't
740 truncate the cmdline now. */
741 if (ccheck_abbr(c + ABBR_OFF))
742 goto cmdline_changed;
743 if (!cmd_silent)
744 {
745 windgoto(msg_row, 0);
746 out_flush();
747 }
748 break;
749 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 }
751
752 /*
753 * Completion for 'wildchar' or 'wildcharm' key.
754 * - hitting <ESC> twice means: abandon command line.
755 * - wildcard expansion is only done when the 'wildchar' key is really
756 * typed, not when it comes from a macro
757 */
758 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm)
759 {
760 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */
761 {
762 /* if 'wildmode' contains "list" may still need to list */
763 if (xpc.xp_numfiles > 1
764 && !did_wild_list
765 && (wim_flags[wim_index] & WIM_LIST))
766 {
767 (void)showmatches(&xpc, FALSE);
768 redrawcmd();
769 did_wild_list = TRUE;
770 }
771 if (wim_flags[wim_index] & WIM_LONGEST)
772 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP);
773 else if (wim_flags[wim_index] & WIM_FULL)
774 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP);
775 else
776 res = OK; /* don't insert 'wildchar' now */
777 }
778 else /* typed p_wc first time */
779 {
780 wim_index = 0;
781 j = ccline.cmdpos;
782 /* if 'wildmode' first contains "longest", get longest
783 * common part */
784 if (wim_flags[0] & WIM_LONGEST)
785 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP);
786 else
787 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP);
788
789 /* if interrupted while completing, behave like it failed */
790 if (got_int)
791 {
792 (void)vpeekc(); /* remove <C-C> from input stream */
793 got_int = FALSE; /* don't abandon the command line */
794 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
795#ifdef FEAT_WILDMENU
796 xpc.xp_context = EXPAND_NOTHING;
797#endif
798 goto cmdline_changed;
799 }
800
801 /* when more than one match, and 'wildmode' first contains
802 * "list", or no change and 'wildmode' contains "longest,list",
803 * list all matches */
804 if (res == OK && xpc.xp_numfiles > 1)
805 {
806 /* a "longest" that didn't do anything is skipped (but not
807 * "list:longest") */
808 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j)
809 wim_index = 1;
810 if ((wim_flags[wim_index] & WIM_LIST)
811#ifdef FEAT_WILDMENU
812 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0)
813#endif
814 )
815 {
816 if (!(wim_flags[0] & WIM_LONGEST))
817 {
818#ifdef FEAT_WILDMENU
819 int p_wmnu_save = p_wmnu;
820 p_wmnu = 0;
821#endif
822 nextwild(&xpc, WILD_PREV, 0); /* remove match */
823#ifdef FEAT_WILDMENU
824 p_wmnu = p_wmnu_save;
825#endif
826 }
827#ifdef FEAT_WILDMENU
828 (void)showmatches(&xpc, p_wmnu
829 && ((wim_flags[wim_index] & WIM_LIST) == 0));
830#else
831 (void)showmatches(&xpc, FALSE);
832#endif
833 redrawcmd();
834 did_wild_list = TRUE;
835 if (wim_flags[wim_index] & WIM_LONGEST)
836 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP);
837 else if (wim_flags[wim_index] & WIM_FULL)
838 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP);
839 }
840 else
841 vim_beep();
842 }
843#ifdef FEAT_WILDMENU
844 else if (xpc.xp_numfiles == -1)
845 xpc.xp_context = EXPAND_NOTHING;
846#endif
847 }
848 if (wim_index < 3)
849 ++wim_index;
850 if (c == ESC)
851 gotesc = TRUE;
852 if (res == OK)
853 goto cmdline_changed;
854 }
855
856 gotesc = FALSE;
857
858 /* <S-Tab> goes to last match, in a clumsy way */
859 if (c == K_S_TAB && KeyTyped)
860 {
861 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0) == OK
862 && nextwild(&xpc, WILD_PREV, 0) == OK
863 && nextwild(&xpc, WILD_PREV, 0) == OK)
864 goto cmdline_changed;
865 }
866
867 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */
868 c = NL;
869
870 do_abbr = TRUE; /* default: check for abbreviation */
871
872 /*
873 * Big switch for a typed command line character.
874 */
875 switch (c)
876 {
877 case K_BS:
878 case Ctrl_H:
879 case K_DEL:
880 case K_KDEL:
881 case Ctrl_W:
882#ifdef FEAT_FKMAP
883 if (cmd_fkmap && c == K_BS)
884 c = K_DEL;
885#endif
886 if (c == K_KDEL)
887 c = K_DEL;
888
889 /*
890 * delete current character is the same as backspace on next
891 * character, except at end of line
892 */
893 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen)
894 ++ccline.cmdpos;
895#ifdef FEAT_MBYTE
896 if (has_mbyte && c == K_DEL)
897 ccline.cmdpos += mb_off_next(ccline.cmdbuff,
898 ccline.cmdbuff + ccline.cmdpos);
899#endif
900 if (ccline.cmdpos > 0)
901 {
902 char_u *p;
903
904 j = ccline.cmdpos;
905 p = ccline.cmdbuff + j;
906#ifdef FEAT_MBYTE
907 if (has_mbyte)
908 {
909 p = mb_prevptr(ccline.cmdbuff, p);
910 if (c == Ctrl_W)
911 {
912 while (p > ccline.cmdbuff && vim_isspace(*p))
913 p = mb_prevptr(ccline.cmdbuff, p);
914 i = mb_get_class(p);
915 while (p > ccline.cmdbuff && mb_get_class(p) == i)
916 p = mb_prevptr(ccline.cmdbuff, p);
917 if (mb_get_class(p) != i)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000918 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 }
920 }
921 else
922#endif
923 if (c == Ctrl_W)
924 {
925 while (p > ccline.cmdbuff && vim_isspace(p[-1]))
926 --p;
927 i = vim_iswordc(p[-1]);
928 while (p > ccline.cmdbuff && !vim_isspace(p[-1])
929 && vim_iswordc(p[-1]) == i)
930 --p;
931 }
932 else
933 --p;
934 ccline.cmdpos = (int)(p - ccline.cmdbuff);
935 ccline.cmdlen -= j - ccline.cmdpos;
936 i = ccline.cmdpos;
937 while (i < ccline.cmdlen)
938 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
939
940 /* Truncate at the end, required for multi-byte chars. */
941 ccline.cmdbuff[ccline.cmdlen] = NUL;
942 redrawcmd();
943 }
944 else if (ccline.cmdlen == 0 && c != Ctrl_W
945 && ccline.cmdprompt == NULL && indent == 0)
946 {
947 /* In ex and debug mode it doesn't make sense to return. */
948 if (exmode_active
949#ifdef FEAT_EVAL
950 || ccline.cmdfirstc == '>'
951#endif
952 )
953 goto cmdline_not_changed;
954
955 vim_free(ccline.cmdbuff); /* no commandline to return */
956 ccline.cmdbuff = NULL;
957 if (!cmd_silent)
958 {
959#ifdef FEAT_RIGHTLEFT
960 if (cmdmsg_rl)
961 msg_col = Columns;
962 else
963#endif
964 msg_col = 0;
965 msg_putchar(' '); /* delete ':' */
966 }
967 redraw_cmdline = TRUE;
968 goto returncmd; /* back to cmd mode */
969 }
970 goto cmdline_changed;
971
972 case K_INS:
973 case K_KINS:
974#ifdef FEAT_FKMAP
975 /* if Farsi mode set, we are in reverse insert mode -
976 Do not change the mode */
977 if (cmd_fkmap)
978 beep_flush();
979 else
980#endif
981 ccline.overstrike = !ccline.overstrike;
982#ifdef CURSOR_SHAPE
983 ui_cursor_shape(); /* may show different cursor shape */
984#endif
985 goto cmdline_not_changed;
986
987 case Ctrl_HAT:
Bram Moolenaar97b2ad32006-03-18 21:40:56 +0000988 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 {
990 /* ":lmap" mappings exists, toggle use of mappings. */
991 State ^= LANGMAP;
992#ifdef USE_IM_CONTROL
993 im_set_active(FALSE); /* Disable input method */
994#endif
995 if (b_im_ptr != NULL)
996 {
997 if (State & LANGMAP)
998 *b_im_ptr = B_IMODE_LMAP;
999 else
1000 *b_im_ptr = B_IMODE_NONE;
1001 }
1002 }
1003#ifdef USE_IM_CONTROL
1004 else
1005 {
1006 /* There are no ":lmap" mappings, toggle IM. When
1007 * 'imdisable' is set don't try getting the status, it's
1008 * always off. */
1009 if ((p_imdisable && b_im_ptr != NULL)
1010 ? *b_im_ptr == B_IMODE_IM : im_get_status())
1011 {
1012 im_set_active(FALSE); /* Disable input method */
1013 if (b_im_ptr != NULL)
1014 *b_im_ptr = B_IMODE_NONE;
1015 }
1016 else
1017 {
1018 im_set_active(TRUE); /* Enable input method */
1019 if (b_im_ptr != NULL)
1020 *b_im_ptr = B_IMODE_IM;
1021 }
1022 }
1023#endif
1024 if (b_im_ptr != NULL)
1025 {
1026 if (b_im_ptr == &curbuf->b_p_iminsert)
1027 set_iminsert_global();
1028 else
1029 set_imsearch_global();
1030 }
1031#ifdef CURSOR_SHAPE
1032 ui_cursor_shape(); /* may show different cursor shape */
1033#endif
1034#if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
1035 /* Show/unshow value of 'keymap' in status lines later. */
1036 status_redraw_curbuf();
1037#endif
1038 goto cmdline_not_changed;
1039
1040/* case '@': only in very old vi */
1041 case Ctrl_U:
1042 /* delete all characters left of the cursor */
1043 j = ccline.cmdpos;
1044 ccline.cmdlen -= j;
1045 i = ccline.cmdpos = 0;
1046 while (i < ccline.cmdlen)
1047 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1048 /* Truncate at the end, required for multi-byte chars. */
1049 ccline.cmdbuff[ccline.cmdlen] = NUL;
1050 redrawcmd();
1051 goto cmdline_changed;
1052
1053#ifdef FEAT_CLIPBOARD
1054 case Ctrl_Y:
1055 /* Copy the modeless selection, if there is one. */
1056 if (clip_star.state != SELECT_CLEARED)
1057 {
1058 if (clip_star.state == SELECT_DONE)
1059 clip_copy_modeless_selection(TRUE);
1060 goto cmdline_not_changed;
1061 }
1062 break;
1063#endif
1064
1065 case ESC: /* get here if p_wc != ESC or when ESC typed twice */
1066 case Ctrl_C:
Bram Moolenaarf4d11452005-12-02 00:46:37 +00001067 /* In exmode it doesn't make sense to return. Except when
Bram Moolenaar7c626922005-02-07 22:01:03 +00001068 * ":normal" runs out of characters. */
1069 if (exmode_active
1070#ifdef FEAT_EX_EXTRA
1071 && (ex_normal_busy == 0 || typebuf.tb_len > 0)
1072#endif
1073 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 goto cmdline_not_changed;
1075
1076 gotesc = TRUE; /* will free ccline.cmdbuff after
1077 putting it in history */
1078 goto returncmd; /* back to cmd mode */
1079
1080 case Ctrl_R: /* insert register */
1081#ifdef USE_ON_FLY_SCROLL
1082 dont_scroll = TRUE; /* disallow scrolling here */
1083#endif
1084 putcmdline('"', TRUE);
1085 ++no_mapping;
1086 i = c = safe_vgetc(); /* CTRL-R <char> */
1087 if (i == Ctrl_O)
1088 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */
1089 if (i == Ctrl_R)
1090 c = safe_vgetc(); /* CTRL-R CTRL-R <char> */
1091 --no_mapping;
1092#ifdef FEAT_EVAL
1093 /*
1094 * Insert the result of an expression.
1095 * Need to save the current command line, to be able to enter
1096 * a new one...
1097 */
1098 new_cmdpos = -1;
1099 if (c == '=')
1100 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101 if (ccline.cmdfirstc == '=')/* can't do this recursively */
1102 {
1103 beep_flush();
1104 c = ESC;
1105 }
1106 else
1107 {
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001108 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001110 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111 }
1112 }
1113#endif
1114 if (c != ESC) /* use ESC to cancel inserting register */
1115 {
1116 cmdline_paste(c, i == Ctrl_R);
Bram Moolenaaracf53452005-12-17 22:06:52 +00001117
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001118#ifdef FEAT_EVAL
Bram Moolenaaracf53452005-12-17 22:06:52 +00001119 /* When there was a serious error abort getting the
1120 * command line. */
1121 if (aborting())
1122 {
1123 gotesc = TRUE; /* will free ccline.cmdbuff after
1124 putting it in history */
1125 goto returncmd; /* back to cmd mode */
1126 }
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001127#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128 KeyTyped = FALSE; /* Don't do p_wc completion. */
1129#ifdef FEAT_EVAL
1130 if (new_cmdpos >= 0)
1131 {
1132 /* set_cmdline_pos() was used */
1133 if (new_cmdpos > ccline.cmdlen)
1134 ccline.cmdpos = ccline.cmdlen;
1135 else
1136 ccline.cmdpos = new_cmdpos;
1137 }
1138#endif
1139 }
1140 redrawcmd();
1141 goto cmdline_changed;
1142
1143 case Ctrl_D:
1144 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING)
1145 break; /* Use ^D as normal char instead */
1146
1147 redrawcmd();
1148 continue; /* don't do incremental search now */
1149
1150 case K_RIGHT:
1151 case K_S_RIGHT:
1152 case K_C_RIGHT:
1153 do
1154 {
1155 if (ccline.cmdpos >= ccline.cmdlen)
1156 break;
1157 i = cmdline_charsize(ccline.cmdpos);
1158 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows)
1159 break;
1160 ccline.cmdspos += i;
1161#ifdef FEAT_MBYTE
1162 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001163 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 + ccline.cmdpos);
1165 else
1166#endif
1167 ++ccline.cmdpos;
1168 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001169 while ((c == K_S_RIGHT || c == K_C_RIGHT
1170 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 && ccline.cmdbuff[ccline.cmdpos] != ' ');
1172#ifdef FEAT_MBYTE
1173 if (has_mbyte)
1174 set_cmdspos_cursor();
1175#endif
1176 goto cmdline_not_changed;
1177
1178 case K_LEFT:
1179 case K_S_LEFT:
1180 case K_C_LEFT:
1181 do
1182 {
1183 if (ccline.cmdpos == 0)
1184 break;
1185 --ccline.cmdpos;
1186#ifdef FEAT_MBYTE
1187 if (has_mbyte) /* move to first byte of char */
1188 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff,
1189 ccline.cmdbuff + ccline.cmdpos);
1190#endif
1191 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos);
1192 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001193 while ((c == K_S_LEFT || c == K_C_LEFT
1194 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 && ccline.cmdbuff[ccline.cmdpos - 1] != ' ');
1196#ifdef FEAT_MBYTE
1197 if (has_mbyte)
1198 set_cmdspos_cursor();
1199#endif
1200 goto cmdline_not_changed;
1201
1202 case K_IGNORE:
1203 goto cmdline_not_changed; /* Ignore mouse */
1204
Bram Moolenaar4770d092006-01-12 23:22:24 +00001205#ifdef FEAT_GUI_W32
1206 /* On Win32 ignore <M-F4>, we get it when closing the window was
1207 * cancelled. */
1208 case K_F4:
1209 if (mod_mask == MOD_MASK_ALT)
1210 {
1211 redrawcmd(); /* somehow the cmdline is cleared */
1212 goto cmdline_not_changed;
1213 }
1214 break;
1215#endif
1216
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217#ifdef FEAT_MOUSE
1218 case K_MIDDLEDRAG:
1219 case K_MIDDLERELEASE:
1220 goto cmdline_not_changed; /* Ignore mouse */
1221
1222 case K_MIDDLEMOUSE:
1223# ifdef FEAT_GUI
1224 /* When GUI is active, also paste when 'mouse' is empty */
1225 if (!gui.in_use)
1226# endif
1227 if (!mouse_has(MOUSE_COMMAND))
1228 goto cmdline_not_changed; /* Ignore mouse */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001229# ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 if (clip_star.available)
1231 cmdline_paste('*', TRUE);
1232 else
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001233# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 cmdline_paste(0, TRUE);
1235 redrawcmd();
1236 goto cmdline_changed;
1237
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001238# ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 case K_DROP:
1240 cmdline_paste('~', TRUE);
1241 redrawcmd();
1242 goto cmdline_changed;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001243# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244
1245 case K_LEFTDRAG:
1246 case K_LEFTRELEASE:
1247 case K_RIGHTDRAG:
1248 case K_RIGHTRELEASE:
1249 /* Ignore drag and release events when the button-down wasn't
1250 * seen before. */
1251 if (ignore_drag_release)
1252 goto cmdline_not_changed;
1253 /* FALLTHROUGH */
1254 case K_LEFTMOUSE:
1255 case K_RIGHTMOUSE:
1256 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE)
1257 ignore_drag_release = TRUE;
1258 else
1259 ignore_drag_release = FALSE;
1260# ifdef FEAT_GUI
1261 /* When GUI is active, also move when 'mouse' is empty */
1262 if (!gui.in_use)
1263# endif
1264 if (!mouse_has(MOUSE_COMMAND))
1265 goto cmdline_not_changed; /* Ignore mouse */
1266# ifdef FEAT_CLIPBOARD
1267 if (mouse_row < cmdline_row && clip_star.available)
1268 {
1269 int button, is_click, is_drag;
1270
1271 /*
1272 * Handle modeless selection.
1273 */
1274 button = get_mouse_button(KEY2TERMCAP1(c),
1275 &is_click, &is_drag);
1276 if (mouse_model_popup() && button == MOUSE_LEFT
1277 && (mod_mask & MOD_MASK_SHIFT))
1278 {
1279 /* Translate shift-left to right button. */
1280 button = MOUSE_RIGHT;
1281 mod_mask &= ~MOD_MASK_SHIFT;
1282 }
1283 clip_modeless(button, is_click, is_drag);
1284 goto cmdline_not_changed;
1285 }
1286# endif
1287
1288 set_cmdspos();
1289 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen;
1290 ++ccline.cmdpos)
1291 {
1292 i = cmdline_charsize(ccline.cmdpos);
1293 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns
1294 && mouse_col < ccline.cmdspos % Columns + i)
1295 break;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001296# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 if (has_mbyte)
1298 {
1299 /* Count ">" for double-wide char that doesn't fit. */
1300 correct_cmdspos(ccline.cmdpos, i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001301 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302 + ccline.cmdpos) - 1;
1303 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001304# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 ccline.cmdspos += i;
1306 }
1307 goto cmdline_not_changed;
1308
1309 /* Mouse scroll wheel: ignored here */
1310 case K_MOUSEDOWN:
1311 case K_MOUSEUP:
1312 /* Alternate buttons ignored here */
1313 case K_X1MOUSE:
1314 case K_X1DRAG:
1315 case K_X1RELEASE:
1316 case K_X2MOUSE:
1317 case K_X2DRAG:
1318 case K_X2RELEASE:
1319 goto cmdline_not_changed;
1320
1321#endif /* FEAT_MOUSE */
1322
1323#ifdef FEAT_GUI
1324 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */
1325 case K_LEFTRELEASE_NM:
1326 goto cmdline_not_changed;
1327
1328 case K_VER_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001329 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 {
1331 gui_do_scroll();
1332 redrawcmd();
1333 }
1334 goto cmdline_not_changed;
1335
1336 case K_HOR_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001337 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 {
1339 gui_do_horiz_scroll();
1340 redrawcmd();
1341 }
1342 goto cmdline_not_changed;
1343#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001344#ifdef FEAT_GUI_TABLINE
1345 case K_TABLINE:
1346 case K_TABMENU:
1347 /* Don't want to change any tabs here. Make sure the same tab
1348 * is still selected. */
1349 if (gui_use_tabline())
1350 gui_mch_set_curtab(tabpage_index(curtab));
1351 goto cmdline_not_changed;
1352#endif
1353
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 case K_SELECT: /* end of Select mode mapping - ignore */
1355 goto cmdline_not_changed;
1356
1357 case Ctrl_B: /* begin of command line */
1358 case K_HOME:
1359 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 case K_S_HOME:
1361 case K_C_HOME:
1362 ccline.cmdpos = 0;
1363 set_cmdspos();
1364 goto cmdline_not_changed;
1365
1366 case Ctrl_E: /* end of command line */
1367 case K_END:
1368 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 case K_S_END:
1370 case K_C_END:
1371 ccline.cmdpos = ccline.cmdlen;
1372 set_cmdspos_cursor();
1373 goto cmdline_not_changed;
1374
1375 case Ctrl_A: /* all matches */
1376 if (nextwild(&xpc, WILD_ALL, 0) == FAIL)
1377 break;
1378 goto cmdline_changed;
1379
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001380 case Ctrl_L:
1381#ifdef FEAT_SEARCH_EXTRA
1382 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1383 {
1384 /* Add a character from under the cursor for 'incsearch' */
1385 if (did_incsearch
1386 && !equalpos(curwin->w_cursor, old_cursor))
1387 {
1388 c = gchar_cursor();
1389 if (c != NUL)
1390 break;
1391 }
1392 goto cmdline_not_changed;
1393 }
1394#endif
1395
1396 /* completion: longest common part */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 if (nextwild(&xpc, WILD_LONGEST, 0) == FAIL)
1398 break;
1399 goto cmdline_changed;
1400
1401 case Ctrl_N: /* next match */
1402 case Ctrl_P: /* previous match */
1403 if (xpc.xp_numfiles > 0)
1404 {
1405 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT, 0)
1406 == FAIL)
1407 break;
1408 goto cmdline_changed;
1409 }
1410
1411#ifdef FEAT_CMDHIST
1412 case K_UP:
1413 case K_DOWN:
1414 case K_S_UP:
1415 case K_S_DOWN:
1416 case K_PAGEUP:
1417 case K_KPAGEUP:
1418 case K_PAGEDOWN:
1419 case K_KPAGEDOWN:
1420 if (hislen == 0 || firstc == NUL) /* no history */
1421 goto cmdline_not_changed;
1422
1423 i = hiscnt;
1424
1425 /* save current command string so it can be restored later */
1426 if (lookfor == NULL)
1427 {
1428 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL)
1429 goto cmdline_not_changed;
1430 lookfor[ccline.cmdpos] = NUL;
1431 }
1432
1433 j = (int)STRLEN(lookfor);
1434 for (;;)
1435 {
1436 /* one step backwards */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001437 if (c == K_UP|| c == K_S_UP || c == Ctrl_P
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001438 || c == K_PAGEUP || c == K_KPAGEUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 {
1440 if (hiscnt == hislen) /* first time */
1441 hiscnt = hisidx[histype];
1442 else if (hiscnt == 0 && hisidx[histype] != hislen - 1)
1443 hiscnt = hislen - 1;
1444 else if (hiscnt != hisidx[histype] + 1)
1445 --hiscnt;
1446 else /* at top of list */
1447 {
1448 hiscnt = i;
1449 break;
1450 }
1451 }
1452 else /* one step forwards */
1453 {
1454 /* on last entry, clear the line */
1455 if (hiscnt == hisidx[histype])
1456 {
1457 hiscnt = hislen;
1458 break;
1459 }
1460
1461 /* not on a history line, nothing to do */
1462 if (hiscnt == hislen)
1463 break;
1464 if (hiscnt == hislen - 1) /* wrap around */
1465 hiscnt = 0;
1466 else
1467 ++hiscnt;
1468 }
1469 if (hiscnt < 0 || history[histype][hiscnt].hisstr == NULL)
1470 {
1471 hiscnt = i;
1472 break;
1473 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001474 if ((c != K_UP && c != K_DOWN)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001475 || hiscnt == i
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 || STRNCMP(history[histype][hiscnt].hisstr,
1477 lookfor, (size_t)j) == 0)
1478 break;
1479 }
1480
1481 if (hiscnt != i) /* jumped to other entry */
1482 {
1483 char_u *p;
1484 int len;
1485 int old_firstc;
1486
1487 vim_free(ccline.cmdbuff);
1488 if (hiscnt == hislen)
1489 p = lookfor; /* back to the old one */
1490 else
1491 p = history[histype][hiscnt].hisstr;
1492
1493 if (histype == HIST_SEARCH
1494 && p != lookfor
1495 && (old_firstc = p[STRLEN(p) + 1]) != firstc)
1496 {
1497 /* Correct for the separator character used when
1498 * adding the history entry vs the one used now.
1499 * First loop: count length.
1500 * Second loop: copy the characters. */
1501 for (i = 0; i <= 1; ++i)
1502 {
1503 len = 0;
1504 for (j = 0; p[j] != NUL; ++j)
1505 {
1506 /* Replace old sep with new sep, unless it is
1507 * escaped. */
1508 if (p[j] == old_firstc
1509 && (j == 0 || p[j - 1] != '\\'))
1510 {
1511 if (i > 0)
1512 ccline.cmdbuff[len] = firstc;
1513 }
1514 else
1515 {
1516 /* Escape new sep, unless it is already
1517 * escaped. */
1518 if (p[j] == firstc
1519 && (j == 0 || p[j - 1] != '\\'))
1520 {
1521 if (i > 0)
1522 ccline.cmdbuff[len] = '\\';
1523 ++len;
1524 }
1525 if (i > 0)
1526 ccline.cmdbuff[len] = p[j];
1527 }
1528 ++len;
1529 }
1530 if (i == 0)
1531 {
1532 alloc_cmdbuff(len);
1533 if (ccline.cmdbuff == NULL)
1534 goto returncmd;
1535 }
1536 }
1537 ccline.cmdbuff[len] = NUL;
1538 }
1539 else
1540 {
1541 alloc_cmdbuff((int)STRLEN(p));
1542 if (ccline.cmdbuff == NULL)
1543 goto returncmd;
1544 STRCPY(ccline.cmdbuff, p);
1545 }
1546
1547 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
1548 redrawcmd();
1549 goto cmdline_changed;
1550 }
1551 beep_flush();
1552 goto cmdline_not_changed;
1553#endif
1554
1555 case Ctrl_V:
1556 case Ctrl_Q:
1557#ifdef FEAT_MOUSE
1558 ignore_drag_release = TRUE;
1559#endif
1560 putcmdline('^', TRUE);
1561 c = get_literal(); /* get next (two) character(s) */
1562 do_abbr = FALSE; /* don't do abbreviation now */
1563#ifdef FEAT_MBYTE
1564 /* may need to remove ^ when composing char was typed */
1565 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent)
1566 {
1567 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
1568 msg_putchar(' ');
1569 cursorcmd();
1570 }
1571#endif
1572 break;
1573
1574#ifdef FEAT_DIGRAPHS
1575 case Ctrl_K:
1576#ifdef FEAT_MOUSE
1577 ignore_drag_release = TRUE;
1578#endif
1579 putcmdline('?', TRUE);
1580#ifdef USE_ON_FLY_SCROLL
1581 dont_scroll = TRUE; /* disallow scrolling here */
1582#endif
1583 c = get_digraph(TRUE);
1584 if (c != NUL)
1585 break;
1586
1587 redrawcmd();
1588 goto cmdline_not_changed;
1589#endif /* FEAT_DIGRAPHS */
1590
1591#ifdef FEAT_RIGHTLEFT
1592 case Ctrl__: /* CTRL-_: switch language mode */
1593 if (!p_ari)
1594 break;
1595#ifdef FEAT_FKMAP
1596 if (p_altkeymap)
1597 {
1598 cmd_fkmap = !cmd_fkmap;
1599 if (cmd_fkmap) /* in Farsi always in Insert mode */
1600 ccline.overstrike = FALSE;
1601 }
1602 else /* Hebrew is default */
1603#endif
1604 cmd_hkmap = !cmd_hkmap;
1605 goto cmdline_not_changed;
1606#endif
1607
1608 default:
1609#ifdef UNIX
1610 if (c == intr_char)
1611 {
1612 gotesc = TRUE; /* will free ccline.cmdbuff after
1613 putting it in history */
1614 goto returncmd; /* back to Normal mode */
1615 }
1616#endif
1617 /*
1618 * Normal character with no special meaning. Just set mod_mask
1619 * to 0x0 so that typing Shift-Space in the GUI doesn't enter
1620 * the string <S-Space>. This should only happen after ^V.
1621 */
1622 if (!IS_SPECIAL(c))
1623 mod_mask = 0x0;
1624 break;
1625 }
1626 /*
1627 * End of switch on command line character.
1628 * We come here if we have a normal character.
1629 */
1630
1631 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && ccheck_abbr(
1632#ifdef FEAT_MBYTE
1633 /* Add ABBR_OFF for characters above 0x100, this is
1634 * what check_abbr() expects. */
1635 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
1636#endif
1637 c))
1638 goto cmdline_changed;
1639
1640 /*
1641 * put the character in the command line
1642 */
1643 if (IS_SPECIAL(c) || mod_mask != 0)
1644 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE);
1645 else
1646 {
1647#ifdef FEAT_MBYTE
1648 if (has_mbyte)
1649 {
1650 j = (*mb_char2bytes)(c, IObuff);
1651 IObuff[j] = NUL; /* exclude composing chars */
1652 put_on_cmdline(IObuff, j, TRUE);
1653 }
1654 else
1655#endif
1656 {
1657 IObuff[0] = c;
1658 put_on_cmdline(IObuff, 1, TRUE);
1659 }
1660 }
1661 goto cmdline_changed;
1662
1663/*
1664 * This part implements incremental searches for "/" and "?"
1665 * Jump to cmdline_not_changed when a character has been read but the command
1666 * line did not change. Then we only search and redraw if something changed in
1667 * the past.
1668 * Jump to cmdline_changed when the command line did change.
1669 * (Sorry for the goto's, I know it is ugly).
1670 */
1671cmdline_not_changed:
1672#ifdef FEAT_SEARCH_EXTRA
1673 if (!incsearch_postponed)
1674 continue;
1675#endif
1676
1677cmdline_changed:
1678#ifdef FEAT_SEARCH_EXTRA
1679 /*
1680 * 'incsearch' highlighting.
1681 */
1682 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1683 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001684 pos_T end_pos;
1685
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686 /* if there is a character waiting, search and redraw later */
1687 if (char_avail())
1688 {
1689 incsearch_postponed = TRUE;
1690 continue;
1691 }
1692 incsearch_postponed = FALSE;
1693 curwin->w_cursor = old_cursor; /* start at old position */
1694
1695 /* If there is no command line, don't do anything */
1696 if (ccline.cmdlen == 0)
1697 i = 0;
1698 else
1699 {
1700 cursor_off(); /* so the user knows we're busy */
1701 out_flush();
1702 ++emsg_off; /* So it doesn't beep if bad expr */
1703 i = do_search(NULL, firstc, ccline.cmdbuff, count,
1704 SEARCH_KEEP + SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK);
1705 --emsg_off;
1706 /* if interrupted while searching, behave like it failed */
1707 if (got_int)
1708 {
1709 (void)vpeekc(); /* remove <C-C> from input stream */
1710 got_int = FALSE; /* don't abandon the command line */
1711 i = 0;
1712 }
1713 else if (char_avail())
1714 /* cancelled searching because a char was typed */
1715 incsearch_postponed = TRUE;
1716 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001717 if (i != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 highlight_match = TRUE; /* highlight position */
1719 else
1720 highlight_match = FALSE; /* remove highlight */
1721
1722 /* first restore the old curwin values, so the screen is
1723 * positioned in the same way as the actual search command */
1724 curwin->w_leftcol = old_leftcol;
1725 curwin->w_topline = old_topline;
1726# ifdef FEAT_DIFF
1727 curwin->w_topfill = old_topfill;
1728# endif
1729 curwin->w_botline = old_botline;
1730 changed_cline_bef_curs();
1731 update_topline();
1732
1733 if (i != 0)
1734 {
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001735 pos_T save_pos = curwin->w_cursor;
1736
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 /*
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001738 * First move cursor to end of match, then to the start. This
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 * moves the whole match onto the screen when 'nowrap' is set.
1740 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 curwin->w_cursor.lnum += search_match_lines;
1742 curwin->w_cursor.col = search_match_endcol;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001743 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
1744 {
1745 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
1746 coladvance((colnr_T)MAXCOL);
1747 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 validate_cursor();
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001749 end_pos = curwin->w_cursor;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001750 curwin->w_cursor = save_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 }
Bram Moolenaardb552d602006-03-23 22:59:57 +00001752 else
1753 end_pos = curwin->w_cursor; /* shutup gcc 4 */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001754
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 validate_cursor();
1756
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00001757 save_cmdline(&save_ccline);
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001758 update_screen(SOME_VALID);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00001759 restore_cmdline(&save_ccline);
1760
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001761 /* Leave it at the end to make CTRL-R CTRL-W work. */
1762 if (i != 0)
1763 curwin->w_cursor = end_pos;
1764
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 msg_starthere();
1766 redrawcmdline();
1767 did_incsearch = TRUE;
1768 }
1769#else /* FEAT_SEARCH_EXTRA */
1770 ;
1771#endif
1772
1773#ifdef FEAT_RIGHTLEFT
1774 if (cmdmsg_rl
1775# ifdef FEAT_ARABIC
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001776 || (p_arshape && !p_tbidi && enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777# endif
1778 )
1779 /* Always redraw the whole command line to fix shaping and
1780 * right-left typing. Not efficient, but it works. */
1781 redrawcmd();
1782#endif
1783 }
1784
1785returncmd:
1786
1787#ifdef FEAT_RIGHTLEFT
1788 cmdmsg_rl = FALSE;
1789#endif
1790
1791#ifdef FEAT_FKMAP
1792 cmd_fkmap = 0;
1793#endif
1794
1795 ExpandCleanup(&xpc);
1796
1797#ifdef FEAT_SEARCH_EXTRA
1798 if (did_incsearch)
1799 {
1800 curwin->w_cursor = old_cursor;
1801 curwin->w_curswant = old_curswant;
1802 curwin->w_leftcol = old_leftcol;
1803 curwin->w_topline = old_topline;
1804# ifdef FEAT_DIFF
1805 curwin->w_topfill = old_topfill;
1806# endif
1807 curwin->w_botline = old_botline;
1808 highlight_match = FALSE;
1809 validate_cursor(); /* needed for TAB */
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001810 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 }
1812#endif
1813
1814 if (ccline.cmdbuff != NULL)
1815 {
1816 /*
1817 * Put line in history buffer (":" and "=" only when it was typed).
1818 */
1819#ifdef FEAT_CMDHIST
1820 if (ccline.cmdlen && firstc != NUL
1821 && (some_key_typed || histype == HIST_SEARCH))
1822 {
1823 add_to_history(histype, ccline.cmdbuff, TRUE,
1824 histype == HIST_SEARCH ? firstc : NUL);
1825 if (firstc == ':')
1826 {
1827 vim_free(new_last_cmdline);
1828 new_last_cmdline = vim_strsave(ccline.cmdbuff);
1829 }
1830 }
1831#endif
1832
1833 if (gotesc) /* abandon command line */
1834 {
1835 vim_free(ccline.cmdbuff);
1836 ccline.cmdbuff = NULL;
1837 if (msg_scrolled == 0)
1838 compute_cmdrow();
1839 MSG("");
1840 redraw_cmdline = TRUE;
1841 }
1842 }
1843
1844 /*
1845 * If the screen was shifted up, redraw the whole screen (later).
1846 * If the line is too long, clear it, so ruler and shown command do
1847 * not get printed in the middle of it.
1848 */
1849 msg_check();
1850 msg_scroll = save_msg_scroll;
1851 redir_off = FALSE;
1852
1853 /* When the command line was typed, no need for a wait-return prompt. */
1854 if (some_key_typed)
1855 need_wait_return = FALSE;
1856
1857 State = save_State;
1858#ifdef USE_IM_CONTROL
1859 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP)
1860 im_save_status(b_im_ptr);
1861 im_set_active(FALSE);
1862#endif
1863#ifdef FEAT_MOUSE
1864 setmouse();
1865#endif
1866#ifdef CURSOR_SHAPE
1867 ui_cursor_shape(); /* may show different cursor shape */
1868#endif
1869
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001870 {
1871 char_u *p = ccline.cmdbuff;
1872
1873 /* Make ccline empty, getcmdline() may try to use it. */
1874 ccline.cmdbuff = NULL;
1875 return p;
1876 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877}
1878
1879#if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO)
1880/*
1881 * Get a command line with a prompt.
1882 * This is prepared to be called recursively from getcmdline() (e.g. by
1883 * f_input() when evaluating an expression from CTRL-R =).
1884 * Returns the command line in allocated memory, or NULL.
1885 */
1886 char_u *
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001887getcmdline_prompt(firstc, prompt, attr, xp_context, xp_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 int firstc;
1889 char_u *prompt; /* command line prompt */
1890 int attr; /* attributes for prompt */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001891 int xp_context; /* type of expansion */
1892 char_u *xp_arg; /* user-defined expansion argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893{
1894 char_u *s;
1895 struct cmdline_info save_ccline;
1896 int msg_col_save = msg_col;
1897
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001898 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 ccline.cmdprompt = prompt;
1900 ccline.cmdattr = attr;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001901# ifdef FEAT_EVAL
1902 ccline.xp_context = xp_context;
1903 ccline.xp_arg = xp_arg;
1904 ccline.input_fn = (firstc == '@');
1905# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 s = getcmdline(firstc, 1L, 0);
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001907 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 /* Restore msg_col, the prompt from input() may have changed it. */
1909 msg_col = msg_col_save;
1910
1911 return s;
1912}
1913#endif
1914
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001915/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001916 * Return TRUE when the text must not be changed and we can't switch to
1917 * another window or buffer. Used when editing the command line, evaluating
1918 * 'balloonexpr', etc.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001919 */
1920 int
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001921text_locked()
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001922{
1923#ifdef FEAT_CMDWIN
1924 if (cmdwin_type != 0)
1925 return TRUE;
1926#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001927 return textlock != 0;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001928}
1929
1930/*
1931 * Give an error message for a command that isn't allowed while the cmdline
1932 * window is open or editing the cmdline in another way.
1933 */
1934 void
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001935text_locked_msg()
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001936{
1937#ifdef FEAT_CMDWIN
1938 if (cmdwin_type != 0)
1939 EMSG(_(e_cmdwin));
1940 else
1941#endif
1942 EMSG(_(e_secure));
1943}
1944
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001945#if defined(FEAT_AUTOCMD) || defined(PROTO)
1946/*
1947 * Check if "curbuf_lock" is set and return TRUE when it is and give an error
1948 * message.
1949 */
1950 int
1951curbuf_locked()
1952{
1953 if (curbuf_lock > 0)
1954 {
1955 EMSG(_("E788: Not allowed to edit another buffer now"));
1956 return TRUE;
1957 }
1958 return FALSE;
1959}
1960#endif
1961
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 static int
1963cmdline_charsize(idx)
1964 int idx;
1965{
1966#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
1967 if (cmdline_star > 0) /* showing '*', always 1 position */
1968 return 1;
1969#endif
1970 return ptr2cells(ccline.cmdbuff + idx);
1971}
1972
1973/*
1974 * Compute the offset of the cursor on the command line for the prompt and
1975 * indent.
1976 */
1977 static void
1978set_cmdspos()
1979{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001980 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981 ccline.cmdspos = 1 + ccline.cmdindent;
1982 else
1983 ccline.cmdspos = 0 + ccline.cmdindent;
1984}
1985
1986/*
1987 * Compute the screen position for the cursor on the command line.
1988 */
1989 static void
1990set_cmdspos_cursor()
1991{
1992 int i, m, c;
1993
1994 set_cmdspos();
1995 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001996 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001998 if (m < 0) /* overflow, Columns or Rows at weird value */
1999 m = MAXCOL;
2000 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 else
2002 m = MAXCOL;
2003 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
2004 {
2005 c = cmdline_charsize(i);
2006#ifdef FEAT_MBYTE
2007 /* Count ">" for double-wide multi-byte char that doesn't fit. */
2008 if (has_mbyte)
2009 correct_cmdspos(i, c);
2010#endif
2011 /* If the cmdline doesn't fit, put cursor on last visible char. */
2012 if ((ccline.cmdspos += c) >= m)
2013 {
2014 ccline.cmdpos = i - 1;
2015 ccline.cmdspos -= c;
2016 break;
2017 }
2018#ifdef FEAT_MBYTE
2019 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002020 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021#endif
2022 }
2023}
2024
2025#ifdef FEAT_MBYTE
2026/*
2027 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2028 * character that doesn't fit, so that a ">" must be displayed.
2029 */
2030 static void
2031correct_cmdspos(idx, cells)
2032 int idx;
2033 int cells;
2034{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002035 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2037 && ccline.cmdspos % Columns + cells > Columns)
2038 ccline.cmdspos++;
2039}
2040#endif
2041
2042/*
2043 * Get an Ex command line for the ":" command.
2044 */
2045/* ARGSUSED */
2046 char_u *
2047getexline(c, dummy, indent)
2048 int c; /* normally ':', NUL for ":append" */
2049 void *dummy; /* cookie not used */
2050 int indent; /* indent for inside conditionals */
2051{
2052 /* When executing a register, remove ':' that's in front of each line. */
2053 if (exec_from_reg && vpeekc() == ':')
2054 (void)vgetc();
2055 return getcmdline(c, 1L, indent);
2056}
2057
2058/*
2059 * Get an Ex command line for Ex mode.
2060 * In Ex mode we only use the OS supplied line editing features and no
2061 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002062 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 */
2064/* ARGSUSED */
2065 char_u *
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002066getexmodeline(promptc, dummy, indent)
2067 int promptc; /* normally ':', NUL for ":append" and '?' for
2068 :s prompt */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 void *dummy; /* cookie not used */
2070 int indent; /* indent for inside conditionals */
2071{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002072 garray_T line_ga;
2073 char_u *pend;
2074 int startcol = 0;
2075 int c1;
2076 int escaped = FALSE; /* CTRL-V typed */
2077 int vcol = 0;
2078 char_u *p;
2079 int prev_char = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080
2081 /* Switch cursor on now. This avoids that it happens after the "\n", which
2082 * confuses the system function that computes tabstops. */
2083 cursor_on();
2084
2085 /* always start in column 0; write a newline if necessary */
2086 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002087 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002089 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002091 /* indent that is only displayed, not in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002092 if (p_prompt)
2093 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 while (indent-- > 0)
2095 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097 }
2098
2099 ga_init2(&line_ga, 1, 30);
2100
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002101 /* autoindent for :insert and :append is in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002102 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002103 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002104 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002105 while (indent >= 8)
2106 {
2107 ga_append(&line_ga, TAB);
2108 msg_puts((char_u *)" ");
2109 indent -= 8;
2110 }
2111 while (indent-- > 0)
2112 {
2113 ga_append(&line_ga, ' ');
2114 msg_putchar(' ');
2115 }
2116 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002117 ++no_mapping;
2118 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002119
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 /*
2121 * Get the line, one character at a time.
2122 */
2123 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002124 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 {
2126 if (ga_grow(&line_ga, 40) == FAIL)
2127 break;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002128 pend = (char_u *)line_ga.ga_data + line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002130 /* Get one character at a time. Don't use inchar(), it can't handle
2131 * special characters. */
2132 c1 = vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133
2134 /*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002135 * Handle line editing.
2136 * Previously this was left to the system, putting the terminal in
2137 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002139 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002141 msg_putchar('\n');
2142 break;
2143 }
2144
2145 if (!escaped)
2146 {
2147 /* CR typed means "enter", which is NL */
2148 if (c1 == '\r')
2149 c1 = '\n';
2150
2151 if (c1 == BS || c1 == K_BS
2152 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002154 if (line_ga.ga_len > 0)
2155 {
2156 --line_ga.ga_len;
2157 goto redraw;
2158 }
2159 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 }
2161
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002162 if (c1 == Ctrl_U)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002164 msg_col = startcol;
2165 msg_clr_eos();
2166 line_ga.ga_len = 0;
2167 continue;
2168 }
2169
2170 if (c1 == Ctrl_T)
2171 {
2172 p = (char_u *)line_ga.ga_data;
2173 p[line_ga.ga_len] = NUL;
2174 indent = get_indent_str(p, 8);
2175 indent += curbuf->b_p_sw - indent % curbuf->b_p_sw;
2176add_indent:
2177 while (get_indent_str(p, 8) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002179 char_u *s = skipwhite(p);
2180
2181 ga_grow(&line_ga, 1);
2182 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2183 *s = ' ';
2184 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002186redraw:
2187 /* redraw the line */
2188 msg_col = startcol;
2189 windgoto(msg_row, msg_col);
2190 vcol = 0;
2191 for (p = (char_u *)line_ga.ga_data;
2192 p < (char_u *)line_ga.ga_data + line_ga.ga_len; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002194 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002196 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002198 msg_putchar(' ');
2199 } while (++vcol % 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002201 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002203 msg_outtrans_len(p, 1);
2204 vcol += char2cells(*p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 }
2206 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002207 msg_clr_eos();
2208 continue;
2209 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002211 if (c1 == Ctrl_D)
2212 {
2213 /* Delete one shiftwidth. */
2214 p = (char_u *)line_ga.ga_data;
2215 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002217 if (prev_char == '^')
2218 ex_keep_indent = TRUE;
2219 indent = 0;
2220 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 }
2222 else
2223 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002224 p[line_ga.ga_len] = NUL;
2225 indent = get_indent_str(p, 8);
2226 --indent;
2227 indent -= indent % curbuf->b_p_sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002229 while (get_indent_str(p, 8) > indent)
2230 {
2231 char_u *s = skipwhite(p);
2232
2233 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2234 --line_ga.ga_len;
2235 }
2236 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002238
2239 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2240 {
2241 escaped = TRUE;
2242 continue;
2243 }
2244
2245 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
2246 if (IS_SPECIAL(c1))
2247 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002249
2250 if (IS_SPECIAL(c1))
2251 c1 = '?';
2252 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
2253 prev_char = c1;
2254 if (c1 == '\n')
2255 msg_putchar('\n');
2256 else if (c1 == TAB)
2257 {
2258 /* Don't use chartabsize(), 'ts' can be different */
2259 do
2260 {
2261 msg_putchar(' ');
2262 } while (++vcol % 8);
2263 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002266 msg_outtrans_len(
2267 ((char_u *)line_ga.ga_data) + line_ga.ga_len, 1);
2268 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002270 ++line_ga.ga_len;
2271 escaped = FALSE;
2272
2273 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002274 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002275
2276 /* we are done when a NL is entered, but not when it comes after a
2277 * backslash */
2278 if (line_ga.ga_len > 0 && pend[-1] == '\n'
2279 && (line_ga.ga_len <= 1 || pend[-2] != '\\'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281 --line_ga.ga_len;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002282 --pend;
2283 *pend = NUL;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002284 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285 }
2286 }
2287
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002288 --no_mapping;
2289 --allow_keys;
2290
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291 /* make following messages go to the next line */
2292 msg_didout = FALSE;
2293 msg_col = 0;
2294 if (msg_row < Rows - 1)
2295 ++msg_row;
2296 emsg_on_display = FALSE; /* don't want ui_delay() */
2297
2298 if (got_int)
2299 ga_clear(&line_ga);
2300
2301 return (char_u *)line_ga.ga_data;
2302}
2303
Bram Moolenaare344bea2005-09-01 20:46:49 +00002304# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
2305 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306/*
2307 * Return TRUE if ccline.overstrike is on.
2308 */
2309 int
2310cmdline_overstrike()
2311{
2312 return ccline.overstrike;
2313}
2314
2315/*
2316 * Return TRUE if the cursor is at the end of the cmdline.
2317 */
2318 int
2319cmdline_at_end()
2320{
2321 return (ccline.cmdpos >= ccline.cmdlen);
2322}
2323#endif
2324
Bram Moolenaar9372a112005-12-06 19:59:18 +00002325#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326/*
2327 * Return the virtual column number at the current cursor position.
2328 * This is used by the IM code to obtain the start of the preedit string.
2329 */
2330 colnr_T
2331cmdline_getvcol_cursor()
2332{
2333 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
2334 return MAXCOL;
2335
2336# ifdef FEAT_MBYTE
2337 if (has_mbyte)
2338 {
2339 colnr_T col;
2340 int i = 0;
2341
2342 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002343 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344
2345 return col;
2346 }
2347 else
2348# endif
2349 return ccline.cmdpos;
2350}
2351#endif
2352
2353#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2354/*
2355 * If part of the command line is an IM preedit string, redraw it with
2356 * IM feedback attributes. The cursor position is restored after drawing.
2357 */
2358 static void
2359redrawcmd_preedit()
2360{
2361 if ((State & CMDLINE)
2362 && xic != NULL
2363 && im_get_status()
2364 && !p_imdisable
2365 && im_is_preediting())
2366 {
2367 int cmdpos = 0;
2368 int cmdspos;
2369 int old_row;
2370 int old_col;
2371 colnr_T col;
2372
2373 old_row = msg_row;
2374 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002375 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376
2377# ifdef FEAT_MBYTE
2378 if (has_mbyte)
2379 {
2380 for (col = 0; col < preedit_start_col
2381 && cmdpos < ccline.cmdlen; ++col)
2382 {
2383 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002384 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 }
2386 }
2387 else
2388# endif
2389 {
2390 cmdspos += preedit_start_col;
2391 cmdpos += preedit_start_col;
2392 }
2393
2394 msg_row = cmdline_row + (cmdspos / (int)Columns);
2395 msg_col = cmdspos % (int)Columns;
2396 if (msg_row >= Rows)
2397 msg_row = Rows - 1;
2398
2399 for (col = 0; cmdpos < ccline.cmdlen; ++col)
2400 {
2401 int char_len;
2402 int char_attr;
2403
2404 char_attr = im_get_feedback_attr(col);
2405 if (char_attr < 0)
2406 break; /* end of preedit string */
2407
2408# ifdef FEAT_MBYTE
2409 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002410 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 else
2412# endif
2413 char_len = 1;
2414
2415 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
2416 cmdpos += char_len;
2417 }
2418
2419 msg_row = old_row;
2420 msg_col = old_col;
2421 }
2422}
2423#endif /* FEAT_XIM && FEAT_GUI_GTK */
2424
2425/*
2426 * Allocate a new command line buffer.
2427 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
2428 * Returns the new value of ccline.cmdbuff and ccline.cmdbufflen.
2429 */
2430 static void
2431alloc_cmdbuff(len)
2432 int len;
2433{
2434 /*
2435 * give some extra space to avoid having to allocate all the time
2436 */
2437 if (len < 80)
2438 len = 100;
2439 else
2440 len += 20;
2441
2442 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */
2443 ccline.cmdbufflen = len;
2444}
2445
2446/*
2447 * Re-allocate the command line to length len + something extra.
2448 * return FAIL for failure, OK otherwise
2449 */
2450 static int
2451realloc_cmdbuff(len)
2452 int len;
2453{
2454 char_u *p;
2455
2456 p = ccline.cmdbuff;
2457 alloc_cmdbuff(len); /* will get some more */
2458 if (ccline.cmdbuff == NULL) /* out of memory */
2459 {
2460 ccline.cmdbuff = p; /* keep the old one */
2461 return FAIL;
2462 }
2463 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen + 1);
2464 vim_free(p);
2465 return OK;
2466}
2467
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002468#if defined(FEAT_ARABIC) || defined(PROTO)
2469static char_u *arshape_buf = NULL;
2470
2471# if defined(EXITFREE) || defined(PROTO)
2472 void
2473free_cmdline_buf()
2474{
2475 vim_free(arshape_buf);
2476}
2477# endif
2478#endif
2479
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480/*
2481 * Draw part of the cmdline at the current cursor position. But draw stars
2482 * when cmdline_star is TRUE.
2483 */
2484 static void
2485draw_cmdline(start, len)
2486 int start;
2487 int len;
2488{
2489#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2490 int i;
2491
2492 if (cmdline_star > 0)
2493 for (i = 0; i < len; ++i)
2494 {
2495 msg_putchar('*');
2496# ifdef FEAT_MBYTE
2497 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002498 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499# endif
2500 }
2501 else
2502#endif
2503#ifdef FEAT_ARABIC
2504 if (p_arshape && !p_tbidi && enc_utf8 && len > 0)
2505 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002506 static int buflen = 0;
2507 char_u *p;
2508 int j;
2509 int newlen = 0;
2510 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00002511 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 int prev_c = 0;
2513 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002514 int u8c;
2515 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517
2518 /*
2519 * Do arabic shaping into a temporary buffer. This is very
2520 * inefficient!
2521 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002522 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 {
2524 /* Re-allocate the buffer. We keep it around to avoid a lot of
2525 * alloc()/free() calls. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002526 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002527 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002528 arshape_buf = alloc(buflen);
2529 if (arshape_buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530 return; /* out of memory */
2531 }
2532
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002533 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
2534 {
2535 /* Prepend a space to draw the leading composing char on. */
2536 arshape_buf[0] = ' ';
2537 newlen = 1;
2538 }
2539
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 for (j = start; j < start + len; j += mb_l)
2541 {
2542 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002543 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002544 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 if (ARABIC_CHAR(u8c))
2546 {
2547 /* Do Arabic shaping. */
2548 if (cmdmsg_rl)
2549 {
2550 /* displaying from right to left */
2551 pc = prev_c;
2552 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002553 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 if (j + mb_l >= start + len)
2555 nc = NUL;
2556 else
2557 nc = utf_ptr2char(p + mb_l);
2558 }
2559 else
2560 {
2561 /* displaying from left to right */
2562 if (j + mb_l >= start + len)
2563 pc = NUL;
2564 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002565 {
2566 int pcc[MAX_MCO];
2567
2568 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002570 pc1 = pcc[0];
2571 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 nc = prev_c;
2573 }
2574 prev_c = u8c;
2575
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002576 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002578 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002579 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002581 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
2582 if (u8cc[1] != 0)
2583 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002584 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 }
2586 }
2587 else
2588 {
2589 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002590 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591 newlen += mb_l;
2592 }
2593 }
2594
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002595 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596 }
2597 else
2598#endif
2599 msg_outtrans_len(ccline.cmdbuff + start, len);
2600}
2601
2602/*
2603 * Put a character on the command line. Shifts the following text to the
2604 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
2605 * "c" must be printable (fit in one display cell)!
2606 */
2607 void
2608putcmdline(c, shift)
2609 int c;
2610 int shift;
2611{
2612 if (cmd_silent)
2613 return;
2614 msg_no_more = TRUE;
2615 msg_putchar(c);
2616 if (shift)
2617 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2618 msg_no_more = FALSE;
2619 cursorcmd();
2620}
2621
2622/*
2623 * Undo a putcmdline(c, FALSE).
2624 */
2625 void
2626unputcmdline()
2627{
2628 if (cmd_silent)
2629 return;
2630 msg_no_more = TRUE;
2631 if (ccline.cmdlen == ccline.cmdpos)
2632 msg_putchar(' ');
2633 else
2634 draw_cmdline(ccline.cmdpos, 1);
2635 msg_no_more = FALSE;
2636 cursorcmd();
2637}
2638
2639/*
2640 * Put the given string, of the given length, onto the command line.
2641 * If len is -1, then STRLEN() is used to calculate the length.
2642 * If 'redraw' is TRUE then the new part of the command line, and the remaining
2643 * part will be redrawn, otherwise it will not. If this function is called
2644 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
2645 * called afterwards.
2646 */
2647 int
2648put_on_cmdline(str, len, redraw)
2649 char_u *str;
2650 int len;
2651 int redraw;
2652{
2653 int retval;
2654 int i;
2655 int m;
2656 int c;
2657
2658 if (len < 0)
2659 len = (int)STRLEN(str);
2660
2661 /* Check if ccline.cmdbuff needs to be longer */
2662 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
2663 retval = realloc_cmdbuff(ccline.cmdlen + len);
2664 else
2665 retval = OK;
2666 if (retval == OK)
2667 {
2668 if (!ccline.overstrike)
2669 {
2670 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2671 ccline.cmdbuff + ccline.cmdpos,
2672 (size_t)(ccline.cmdlen - ccline.cmdpos));
2673 ccline.cmdlen += len;
2674 }
2675 else
2676 {
2677#ifdef FEAT_MBYTE
2678 if (has_mbyte)
2679 {
2680 /* Count nr of characters in the new string. */
2681 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002682 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683 ++m;
2684 /* Count nr of bytes in cmdline that are overwritten by these
2685 * characters. */
2686 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002687 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 --m;
2689 if (i < ccline.cmdlen)
2690 {
2691 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2692 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
2693 ccline.cmdlen += ccline.cmdpos + len - i;
2694 }
2695 else
2696 ccline.cmdlen = ccline.cmdpos + len;
2697 }
2698 else
2699#endif
2700 if (ccline.cmdpos + len > ccline.cmdlen)
2701 ccline.cmdlen = ccline.cmdpos + len;
2702 }
2703 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
2704 ccline.cmdbuff[ccline.cmdlen] = NUL;
2705
2706#ifdef FEAT_MBYTE
2707 if (enc_utf8)
2708 {
2709 /* When the inserted text starts with a composing character,
2710 * backup to the character before it. There could be two of them.
2711 */
2712 i = 0;
2713 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
2714 while (ccline.cmdpos > 0 && utf_iscomposing(c))
2715 {
2716 i = (*mb_head_off)(ccline.cmdbuff,
2717 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
2718 ccline.cmdpos -= i;
2719 len += i;
2720 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
2721 }
2722# ifdef FEAT_ARABIC
2723 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
2724 {
2725 /* Check the previous character for Arabic combining pair. */
2726 i = (*mb_head_off)(ccline.cmdbuff,
2727 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
2728 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
2729 + ccline.cmdpos - i), c))
2730 {
2731 ccline.cmdpos -= i;
2732 len += i;
2733 }
2734 else
2735 i = 0;
2736 }
2737# endif
2738 if (i != 0)
2739 {
2740 /* Also backup the cursor position. */
2741 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
2742 ccline.cmdspos -= i;
2743 msg_col -= i;
2744 if (msg_col < 0)
2745 {
2746 msg_col += Columns;
2747 --msg_row;
2748 }
2749 }
2750 }
2751#endif
2752
2753 if (redraw && !cmd_silent)
2754 {
2755 msg_no_more = TRUE;
2756 i = cmdline_row;
2757 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2758 /* Avoid clearing the rest of the line too often. */
2759 if (cmdline_row != i || ccline.overstrike)
2760 msg_clr_eos();
2761 msg_no_more = FALSE;
2762 }
2763#ifdef FEAT_FKMAP
2764 /*
2765 * If we are in Farsi command mode, the character input must be in
2766 * Insert mode. So do not advance the cmdpos.
2767 */
2768 if (!cmd_fkmap)
2769#endif
2770 {
2771 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002772 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002774 if (m < 0) /* overflow, Columns or Rows at weird value */
2775 m = MAXCOL;
2776 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 else
2778 m = MAXCOL;
2779 for (i = 0; i < len; ++i)
2780 {
2781 c = cmdline_charsize(ccline.cmdpos);
2782#ifdef FEAT_MBYTE
2783 /* count ">" for a double-wide char that doesn't fit. */
2784 if (has_mbyte)
2785 correct_cmdspos(ccline.cmdpos, c);
2786#endif
2787 /* Stop cursor at the end of the screen */
2788 if (ccline.cmdspos + c >= m)
2789 break;
2790 ccline.cmdspos += c;
2791#ifdef FEAT_MBYTE
2792 if (has_mbyte)
2793 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002794 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795 if (c > len - i - 1)
2796 c = len - i - 1;
2797 ccline.cmdpos += c;
2798 i += c;
2799 }
2800#endif
2801 ++ccline.cmdpos;
2802 }
2803 }
2804 }
2805 if (redraw)
2806 msg_check();
2807 return retval;
2808}
2809
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002810static struct cmdline_info prev_ccline;
2811static int prev_ccline_used = FALSE;
2812
2813/*
2814 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
2815 * and overwrite it. But get_cmdline_str() may need it, thus make it
2816 * available globally in prev_ccline.
2817 */
2818 static void
2819save_cmdline(ccp)
2820 struct cmdline_info *ccp;
2821{
2822 if (!prev_ccline_used)
2823 {
2824 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info));
2825 prev_ccline_used = TRUE;
2826 }
2827 *ccp = prev_ccline;
2828 prev_ccline = ccline;
2829 ccline.cmdbuff = NULL;
2830 ccline.cmdprompt = NULL;
2831}
2832
2833/*
2834 * Resture ccline after it has been saved with save_cmdline().
2835 */
2836 static void
2837restore_cmdline(ccp)
2838 struct cmdline_info *ccp;
2839{
2840 ccline = prev_ccline;
2841 prev_ccline = *ccp;
2842}
2843
Bram Moolenaar5a305422006-04-28 22:38:25 +00002844#if defined(FEAT_EVAL) || defined(PROTO)
2845/*
2846 * Save the command line into allocated memory. Returns a pointer to be
2847 * passed to restore_cmdline_alloc() later.
2848 * Returns NULL when failed.
2849 */
2850 char_u *
2851save_cmdline_alloc()
2852{
2853 struct cmdline_info *p;
2854
2855 p = (struct cmdline_info *)alloc((unsigned)sizeof(struct cmdline_info));
2856 if (p != NULL)
2857 save_cmdline(p);
2858 return (char_u *)p;
2859}
2860
2861/*
2862 * Restore the command line from the return value of save_cmdline_alloc().
2863 */
2864 void
2865restore_cmdline_alloc(p)
2866 char_u *p;
2867{
2868 if (p != NULL)
2869 {
2870 restore_cmdline((struct cmdline_info *)p);
2871 vim_free(p);
2872 }
2873}
2874#endif
2875
Bram Moolenaar8299df92004-07-10 09:47:34 +00002876/*
2877 * paste a yank register into the command line.
2878 * used by CTRL-R command in command-line mode
2879 * insert_reg() can't be used here, because special characters from the
2880 * register contents will be interpreted as commands.
2881 *
2882 * return FAIL for failure, OK otherwise
2883 */
2884 static int
2885cmdline_paste(regname, literally)
2886 int regname;
2887 int literally; /* Insert text literally instead of "as typed" */
2888{
2889 long i;
2890 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002891 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00002892 int allocated;
2893 struct cmdline_info save_ccline;
2894
2895 /* check for valid regname; also accept special characters for CTRL-R in
2896 * the command line */
2897 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
2898 && regname != Ctrl_A && !valid_yank_reg(regname, FALSE))
2899 return FAIL;
2900
2901 /* A register containing CTRL-R can cause an endless loop. Allow using
2902 * CTRL-C to break the loop. */
2903 line_breakcheck();
2904 if (got_int)
2905 return FAIL;
2906
2907#ifdef FEAT_CLIPBOARD
2908 regname = may_get_selection(regname);
2909#endif
2910
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002911 /* Need to save and restore ccline. And set "textlock" to avoid nasty
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002912 * things like going to another buffer when evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002913 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002914 ++textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00002915 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002916 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002917 restore_cmdline(&save_ccline);
Bram Moolenaar8299df92004-07-10 09:47:34 +00002918
2919 if (i)
2920 {
2921 /* Got the value of a special register in "arg". */
2922 if (arg == NULL)
2923 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002924
2925 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
2926 * part of the word. */
2927 p = arg;
2928 if (p_is && regname == Ctrl_W)
2929 {
2930 char_u *w;
2931 int len;
2932
2933 /* Locate start of last word in the cmd buffer. */
2934 for (w = ccline.cmdbuff + ccline.cmdlen; w > ccline.cmdbuff; )
2935 {
2936#ifdef FEAT_MBYTE
2937 if (has_mbyte)
2938 {
2939 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
2940 if (!vim_iswordc(mb_ptr2char(w - len)))
2941 break;
2942 w -= len;
2943 }
2944 else
2945#endif
2946 {
2947 if (!vim_iswordc(w[-1]))
2948 break;
2949 --w;
2950 }
2951 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002952 len = (int)((ccline.cmdbuff + ccline.cmdlen) - w);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002953 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
2954 p += len;
2955 }
2956
2957 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00002958 if (allocated)
2959 vim_free(arg);
2960 return OK;
2961 }
2962
2963 return cmdline_paste_reg(regname, literally);
2964}
2965
2966/*
2967 * Put a string on the command line.
2968 * When "literally" is TRUE, insert literally.
2969 * When "literally" is FALSE, insert as typed, but don't leave the command
2970 * line.
2971 */
2972 void
2973cmdline_paste_str(s, literally)
2974 char_u *s;
2975 int literally;
2976{
2977 int c, cv;
2978
2979 if (literally)
2980 put_on_cmdline(s, -1, TRUE);
2981 else
2982 while (*s != NUL)
2983 {
2984 cv = *s;
2985 if (cv == Ctrl_V && s[1])
2986 ++s;
2987#ifdef FEAT_MBYTE
2988 if (has_mbyte)
2989 {
2990 c = mb_ptr2char(s);
2991 s += mb_char2len(c);
2992 }
2993 else
2994#endif
2995 c = *s++;
2996 if (cv == Ctrl_V || c == ESC || c == Ctrl_C || c == CAR || c == NL
2997#ifdef UNIX
2998 || c == intr_char
2999#endif
3000 || (c == Ctrl_BSL && *s == Ctrl_N))
3001 stuffcharReadbuff(Ctrl_V);
3002 stuffcharReadbuff(c);
3003 }
3004}
3005
Bram Moolenaar071d4272004-06-13 20:20:40 +00003006#ifdef FEAT_WILDMENU
3007/*
3008 * Delete characters on the command line, from "from" to the current
3009 * position.
3010 */
3011 static void
3012cmdline_del(from)
3013 int from;
3014{
3015 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
3016 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3017 ccline.cmdlen -= ccline.cmdpos - from;
3018 ccline.cmdpos = from;
3019}
3020#endif
3021
3022/*
3023 * this fuction is called when the screen size changes and with incremental
3024 * search
3025 */
3026 void
3027redrawcmdline()
3028{
3029 if (cmd_silent)
3030 return;
3031 need_wait_return = FALSE;
3032 compute_cmdrow();
3033 redrawcmd();
3034 cursorcmd();
3035}
3036
3037 static void
3038redrawcmdprompt()
3039{
3040 int i;
3041
3042 if (cmd_silent)
3043 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003044 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045 msg_putchar(ccline.cmdfirstc);
3046 if (ccline.cmdprompt != NULL)
3047 {
3048 msg_puts_attr(ccline.cmdprompt, ccline.cmdattr);
3049 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
3050 /* do the reverse of set_cmdspos() */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003051 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052 --ccline.cmdindent;
3053 }
3054 else
3055 for (i = ccline.cmdindent; i > 0; --i)
3056 msg_putchar(' ');
3057}
3058
3059/*
3060 * Redraw what is currently on the command line.
3061 */
3062 void
3063redrawcmd()
3064{
3065 if (cmd_silent)
3066 return;
3067
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003068 /* when 'incsearch' is set there may be no command line while redrawing */
3069 if (ccline.cmdbuff == NULL)
3070 {
3071 windgoto(cmdline_row, 0);
3072 msg_clr_eos();
3073 return;
3074 }
3075
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076 msg_start();
3077 redrawcmdprompt();
3078
3079 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
3080 msg_no_more = TRUE;
3081 draw_cmdline(0, ccline.cmdlen);
3082 msg_clr_eos();
3083 msg_no_more = FALSE;
3084
3085 set_cmdspos_cursor();
3086
3087 /*
3088 * An emsg() before may have set msg_scroll. This is used in normal mode,
3089 * in cmdline mode we can reset them now.
3090 */
3091 msg_scroll = FALSE; /* next message overwrites cmdline */
3092
3093 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
3094 * in cmdline mode */
3095 skip_redraw = FALSE;
3096}
3097
3098 void
3099compute_cmdrow()
3100{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003101 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003102 cmdline_row = Rows - 1;
3103 else
3104 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
3105 + W_STATUS_HEIGHT(lastwin);
3106}
3107
3108 static void
3109cursorcmd()
3110{
3111 if (cmd_silent)
3112 return;
3113
3114#ifdef FEAT_RIGHTLEFT
3115 if (cmdmsg_rl)
3116 {
3117 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3118 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3119 if (msg_row <= 0)
3120 msg_row = Rows - 1;
3121 }
3122 else
3123#endif
3124 {
3125 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3126 msg_col = ccline.cmdspos % (int)Columns;
3127 if (msg_row >= Rows)
3128 msg_row = Rows - 1;
3129 }
3130
3131 windgoto(msg_row, msg_col);
3132#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
3133 redrawcmd_preedit();
3134#endif
3135#ifdef MCH_CURSOR_SHAPE
3136 mch_update_cursor();
3137#endif
3138}
3139
3140 void
3141gotocmdline(clr)
3142 int clr;
3143{
3144 msg_start();
3145#ifdef FEAT_RIGHTLEFT
3146 if (cmdmsg_rl)
3147 msg_col = Columns - 1;
3148 else
3149#endif
3150 msg_col = 0; /* always start in column 0 */
3151 if (clr) /* clear the bottom line(s) */
3152 msg_clr_eos(); /* will reset clear_cmdline */
3153 windgoto(cmdline_row, 0);
3154}
3155
3156/*
3157 * Check the word in front of the cursor for an abbreviation.
3158 * Called when the non-id character "c" has been entered.
3159 * When an abbreviation is recognized it is removed from the text with
3160 * backspaces and the replacement string is inserted, followed by "c".
3161 */
3162 static int
3163ccheck_abbr(c)
3164 int c;
3165{
3166 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
3167 return FALSE;
3168
3169 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, 0);
3170}
3171
3172/*
3173 * Return FAIL if this is not an appropriate context in which to do
3174 * completion of anything, return OK if it is (even if there are no matches).
3175 * For the caller, this means that the character is just passed through like a
3176 * normal character (instead of being expanded). This allows :s/^I^D etc.
3177 */
3178 static int
3179nextwild(xp, type, options)
3180 expand_T *xp;
3181 int type;
3182 int options; /* extra options for ExpandOne() */
3183{
3184 int i, j;
3185 char_u *p1;
3186 char_u *p2;
3187 int oldlen;
3188 int difflen;
3189 int v;
3190
3191 if (xp->xp_numfiles == -1)
3192 {
3193 set_expand_context(xp);
3194 cmd_showtail = expand_showtail(xp);
3195 }
3196
3197 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
3198 {
3199 beep_flush();
3200 return OK; /* Something illegal on command line */
3201 }
3202 if (xp->xp_context == EXPAND_NOTHING)
3203 {
3204 /* Caller can use the character as a normal char instead */
3205 return FAIL;
3206 }
3207
3208 MSG_PUTS("..."); /* show that we are busy */
3209 out_flush();
3210
3211 i = (int)(xp->xp_pattern - ccline.cmdbuff);
3212 oldlen = ccline.cmdpos - i;
3213
3214 if (type == WILD_NEXT || type == WILD_PREV)
3215 {
3216 /*
3217 * Get next/previous match for a previous expanded pattern.
3218 */
3219 p2 = ExpandOne(xp, NULL, NULL, 0, type);
3220 }
3221 else
3222 {
3223 /*
3224 * Translate string into pattern and expand it.
3225 */
3226 if ((p1 = addstar(&ccline.cmdbuff[i], oldlen, xp->xp_context)) == NULL)
3227 p2 = NULL;
3228 else
3229 {
3230 p2 = ExpandOne(xp, p1, vim_strnsave(&ccline.cmdbuff[i], oldlen),
3231 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT|WILD_ESCAPE
3232 |options, type);
3233 vim_free(p1);
3234 /* longest match: make sure it is not shorter (happens with :help */
3235 if (p2 != NULL && type == WILD_LONGEST)
3236 {
3237 for (j = 0; j < oldlen; ++j)
3238 if (ccline.cmdbuff[i + j] == '*'
3239 || ccline.cmdbuff[i + j] == '?')
3240 break;
3241 if ((int)STRLEN(p2) < j)
3242 {
3243 vim_free(p2);
3244 p2 = NULL;
3245 }
3246 }
3247 }
3248 }
3249
3250 if (p2 != NULL && !got_int)
3251 {
3252 difflen = (int)STRLEN(p2) - oldlen;
3253 if (ccline.cmdlen + difflen > ccline.cmdbufflen - 4)
3254 {
3255 v = realloc_cmdbuff(ccline.cmdlen + difflen);
3256 xp->xp_pattern = ccline.cmdbuff + i;
3257 }
3258 else
3259 v = OK;
3260 if (v == OK)
3261 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003262 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen],
3263 &ccline.cmdbuff[ccline.cmdpos],
3264 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3265 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 ccline.cmdlen += difflen;
3267 ccline.cmdpos += difflen;
3268 }
3269 }
3270 vim_free(p2);
3271
3272 redrawcmd();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003273 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274
3275 /* When expanding a ":map" command and no matches are found, assume that
3276 * the key is supposed to be inserted literally */
3277 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL)
3278 return FAIL;
3279
3280 if (xp->xp_numfiles <= 0 && p2 == NULL)
3281 beep_flush();
3282 else if (xp->xp_numfiles == 1)
3283 /* free expanded pattern */
3284 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
3285
3286 return OK;
3287}
3288
3289/*
3290 * Do wildcard expansion on the string 'str'.
3291 * Chars that should not be expanded must be preceded with a backslash.
3292 * Return a pointer to alloced memory containing the new string.
3293 * Return NULL for failure.
3294 *
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003295 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode"
3296 * is WILD_EXPAND_FREE or WILD_ALL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297 *
3298 * mode = WILD_FREE: just free previously expanded matches
3299 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches
3300 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches
3301 * mode = WILD_NEXT: use next match in multiple match, wrap to first
3302 * mode = WILD_PREV: use previous match in multiple match, wrap to first
3303 * mode = WILD_ALL: return all matches concatenated
3304 * mode = WILD_LONGEST: return longest matched part
3305 *
3306 * options = WILD_LIST_NOTFOUND: list entries without a match
3307 * options = WILD_HOME_REPLACE: do home_replace() for buffer names
3308 * options = WILD_USE_NL: Use '\n' for WILD_ALL
3309 * options = WILD_NO_BEEP: Don't beep for multiple matches
3310 * options = WILD_ADD_SLASH: add a slash after directory names
3311 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries
3312 * options = WILD_SILENT: don't print warning messages
3313 * options = WILD_ESCAPE: put backslash before special chars
3314 *
3315 * The variables xp->xp_context and xp->xp_backslash must have been set!
3316 */
3317 char_u *
3318ExpandOne(xp, str, orig, options, mode)
3319 expand_T *xp;
3320 char_u *str;
3321 char_u *orig; /* allocated copy of original of expanded string */
3322 int options;
3323 int mode;
3324{
3325 char_u *ss = NULL;
3326 static int findex;
3327 static char_u *orig_save = NULL; /* kept value of orig */
3328 int i;
3329 long_u len;
3330 int non_suf_match; /* number without matching suffix */
3331
3332 /*
3333 * first handle the case of using an old match
3334 */
3335 if (mode == WILD_NEXT || mode == WILD_PREV)
3336 {
3337 if (xp->xp_numfiles > 0)
3338 {
3339 if (mode == WILD_PREV)
3340 {
3341 if (findex == -1)
3342 findex = xp->xp_numfiles;
3343 --findex;
3344 }
3345 else /* mode == WILD_NEXT */
3346 ++findex;
3347
3348 /*
3349 * When wrapping around, return the original string, set findex to
3350 * -1.
3351 */
3352 if (findex < 0)
3353 {
3354 if (orig_save == NULL)
3355 findex = xp->xp_numfiles - 1;
3356 else
3357 findex = -1;
3358 }
3359 if (findex >= xp->xp_numfiles)
3360 {
3361 if (orig_save == NULL)
3362 findex = 0;
3363 else
3364 findex = -1;
3365 }
3366#ifdef FEAT_WILDMENU
3367 if (p_wmnu)
3368 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files,
3369 findex, cmd_showtail);
3370#endif
3371 if (findex == -1)
3372 return vim_strsave(orig_save);
3373 return vim_strsave(xp->xp_files[findex]);
3374 }
3375 else
3376 return NULL;
3377 }
3378
3379/* free old names */
3380 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST)
3381 {
3382 FreeWild(xp->xp_numfiles, xp->xp_files);
3383 xp->xp_numfiles = -1;
3384 vim_free(orig_save);
3385 orig_save = NULL;
3386 }
3387 findex = 0;
3388
3389 if (mode == WILD_FREE) /* only release file name */
3390 return NULL;
3391
3392 if (xp->xp_numfiles == -1)
3393 {
3394 vim_free(orig_save);
3395 orig_save = orig;
3396
3397 /*
3398 * Do the expansion.
3399 */
3400 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files,
3401 options) == FAIL)
3402 {
3403#ifdef FNAME_ILLEGAL
3404 /* Illegal file name has been silently skipped. But when there
3405 * are wildcards, the real problem is that there was no match,
3406 * causing the pattern to be added, which has illegal characters.
3407 */
3408 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND))
3409 EMSG2(_(e_nomatch2), str);
3410#endif
3411 }
3412 else if (xp->xp_numfiles == 0)
3413 {
3414 if (!(options & WILD_SILENT))
3415 EMSG2(_(e_nomatch2), str);
3416 }
3417 else
3418 {
3419 /* Escape the matches for use on the command line. */
3420 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options);
3421
3422 /*
3423 * Check for matching suffixes in file names.
3424 */
3425 if (mode != WILD_ALL && mode != WILD_LONGEST)
3426 {
3427 if (xp->xp_numfiles)
3428 non_suf_match = xp->xp_numfiles;
3429 else
3430 non_suf_match = 1;
3431 if ((xp->xp_context == EXPAND_FILES
3432 || xp->xp_context == EXPAND_DIRECTORIES)
3433 && xp->xp_numfiles > 1)
3434 {
3435 /*
3436 * More than one match; check suffix.
3437 * The files will have been sorted on matching suffix in
3438 * expand_wildcards, only need to check the first two.
3439 */
3440 non_suf_match = 0;
3441 for (i = 0; i < 2; ++i)
3442 if (match_suffix(xp->xp_files[i]))
3443 ++non_suf_match;
3444 }
3445 if (non_suf_match != 1)
3446 {
3447 /* Can we ever get here unless it's while expanding
3448 * interactively? If not, we can get rid of this all
3449 * together. Don't really want to wait for this message
3450 * (and possibly have to hit return to continue!).
3451 */
3452 if (!(options & WILD_SILENT))
3453 EMSG(_(e_toomany));
3454 else if (!(options & WILD_NO_BEEP))
3455 beep_flush();
3456 }
3457 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE))
3458 ss = vim_strsave(xp->xp_files[0]);
3459 }
3460 }
3461 }
3462
3463 /* Find longest common part */
3464 if (mode == WILD_LONGEST && xp->xp_numfiles > 0)
3465 {
3466 for (len = 0; xp->xp_files[0][len]; ++len)
3467 {
3468 for (i = 0; i < xp->xp_numfiles; ++i)
3469 {
3470#ifdef CASE_INSENSITIVE_FILENAME
3471 if (xp->xp_context == EXPAND_DIRECTORIES
3472 || xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003473 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474 || xp->xp_context == EXPAND_BUFFERS)
3475 {
3476 if (TOLOWER_LOC(xp->xp_files[i][len]) !=
3477 TOLOWER_LOC(xp->xp_files[0][len]))
3478 break;
3479 }
3480 else
3481#endif
3482 if (xp->xp_files[i][len] != xp->xp_files[0][len])
3483 break;
3484 }
3485 if (i < xp->xp_numfiles)
3486 {
3487 if (!(options & WILD_NO_BEEP))
3488 vim_beep();
3489 break;
3490 }
3491 }
3492 ss = alloc((unsigned)len + 1);
3493 if (ss)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003494 vim_strncpy(ss, xp->xp_files[0], (size_t)len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 findex = -1; /* next p_wc gets first one */
3496 }
3497
3498 /* Concatenate all matching names */
3499 if (mode == WILD_ALL && xp->xp_numfiles > 0)
3500 {
3501 len = 0;
3502 for (i = 0; i < xp->xp_numfiles; ++i)
3503 len += (long_u)STRLEN(xp->xp_files[i]) + 1;
3504 ss = lalloc(len, TRUE);
3505 if (ss != NULL)
3506 {
3507 *ss = NUL;
3508 for (i = 0; i < xp->xp_numfiles; ++i)
3509 {
3510 STRCAT(ss, xp->xp_files[i]);
3511 if (i != xp->xp_numfiles - 1)
3512 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " ");
3513 }
3514 }
3515 }
3516
3517 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL)
3518 ExpandCleanup(xp);
3519
3520 return ss;
3521}
3522
3523/*
3524 * Prepare an expand structure for use.
3525 */
3526 void
3527ExpandInit(xp)
3528 expand_T *xp;
3529{
3530 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003531#ifndef BACKSLASH_IN_FILENAME
3532 xp->xp_shell = FALSE;
3533#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534 xp->xp_numfiles = -1;
3535 xp->xp_files = NULL;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003536#if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
3537 xp->xp_arg = NULL;
3538#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539}
3540
3541/*
3542 * Cleanup an expand structure after use.
3543 */
3544 void
3545ExpandCleanup(xp)
3546 expand_T *xp;
3547{
3548 if (xp->xp_numfiles >= 0)
3549 {
3550 FreeWild(xp->xp_numfiles, xp->xp_files);
3551 xp->xp_numfiles = -1;
3552 }
3553}
3554
3555 void
3556ExpandEscape(xp, str, numfiles, files, options)
3557 expand_T *xp;
3558 char_u *str;
3559 int numfiles;
3560 char_u **files;
3561 int options;
3562{
3563 int i;
3564 char_u *p;
3565
3566 /*
3567 * May change home directory back to "~"
3568 */
3569 if (options & WILD_HOME_REPLACE)
3570 tilde_replace(str, numfiles, files);
3571
3572 if (options & WILD_ESCAPE)
3573 {
3574 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003575 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576 || xp->xp_context == EXPAND_BUFFERS
3577 || xp->xp_context == EXPAND_DIRECTORIES)
3578 {
3579 /*
3580 * Insert a backslash into a file name before a space, \, %, #
3581 * and wildmatch characters, except '~'.
3582 */
3583 for (i = 0; i < numfiles; ++i)
3584 {
3585 /* for ":set path=" we need to escape spaces twice */
3586 if (xp->xp_backslash == XP_BS_THREE)
3587 {
3588 p = vim_strsave_escaped(files[i], (char_u *)" ");
3589 if (p != NULL)
3590 {
3591 vim_free(files[i]);
3592 files[i] = p;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003593#if defined(BACKSLASH_IN_FILENAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003594 p = vim_strsave_escaped(files[i], (char_u *)" ");
3595 if (p != NULL)
3596 {
3597 vim_free(files[i]);
3598 files[i] = p;
3599 }
3600#endif
3601 }
3602 }
3603#ifdef BACKSLASH_IN_FILENAME
3604 {
3605 char_u buf[20];
3606 int j = 0;
3607
3608 /* Don't escape '[' and '{' if they are in 'isfname'. */
3609 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
3610 if ((*p != '[' && *p != '{') || !vim_isfilec(*p))
3611 buf[j++] = *p;
3612 buf[j] = NUL;
3613 p = vim_strsave_escaped(files[i], buf);
3614 }
3615#else
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003616 p = vim_strsave_escaped(files[i],
3617 xp->xp_shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618#endif
3619 if (p != NULL)
3620 {
3621 vim_free(files[i]);
3622 files[i] = p;
3623 }
3624
3625 /* If 'str' starts with "\~", replace "~" at start of
3626 * files[i] with "\~". */
3627 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~')
Bram Moolenaar45360022005-07-21 21:08:21 +00003628 escape_fname(&files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629 }
3630 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar45360022005-07-21 21:08:21 +00003631
3632 /* If the first file starts with a '+' escape it. Otherwise it
3633 * could be seen as "+cmd". */
3634 if (*files[0] == '+')
3635 escape_fname(&files[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636 }
3637 else if (xp->xp_context == EXPAND_TAGS)
3638 {
3639 /*
3640 * Insert a backslash before characters in a tag name that
3641 * would terminate the ":tag" command.
3642 */
3643 for (i = 0; i < numfiles; ++i)
3644 {
3645 p = vim_strsave_escaped(files[i], (char_u *)"\\|\"");
3646 if (p != NULL)
3647 {
3648 vim_free(files[i]);
3649 files[i] = p;
3650 }
3651 }
3652 }
3653 }
3654}
3655
3656/*
Bram Moolenaar45360022005-07-21 21:08:21 +00003657 * Put a backslash before the file name in "pp", which is in allocated memory.
3658 */
3659 static void
3660escape_fname(pp)
3661 char_u **pp;
3662{
3663 char_u *p;
3664
3665 p = alloc((unsigned)(STRLEN(*pp) + 2));
3666 if (p != NULL)
3667 {
3668 p[0] = '\\';
3669 STRCPY(p + 1, *pp);
3670 vim_free(*pp);
3671 *pp = p;
3672 }
3673}
3674
3675/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 * For each file name in files[num_files]:
3677 * If 'orig_pat' starts with "~/", replace the home directory with "~".
3678 */
3679 void
3680tilde_replace(orig_pat, num_files, files)
3681 char_u *orig_pat;
3682 int num_files;
3683 char_u **files;
3684{
3685 int i;
3686 char_u *p;
3687
3688 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
3689 {
3690 for (i = 0; i < num_files; ++i)
3691 {
3692 p = home_replace_save(NULL, files[i]);
3693 if (p != NULL)
3694 {
3695 vim_free(files[i]);
3696 files[i] = p;
3697 }
3698 }
3699 }
3700}
3701
3702/*
3703 * Show all matches for completion on the command line.
3704 * Returns EXPAND_NOTHING when the character that triggered expansion should
3705 * be inserted like a normal character.
3706 */
3707/*ARGSUSED*/
3708 static int
3709showmatches(xp, wildmenu)
3710 expand_T *xp;
3711 int wildmenu;
3712{
3713#define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m])
3714 int num_files;
3715 char_u **files_found;
3716 int i, j, k;
3717 int maxlen;
3718 int lines;
3719 int columns;
3720 char_u *p;
3721 int lastlen;
3722 int attr;
3723 int showtail;
3724
3725 if (xp->xp_numfiles == -1)
3726 {
3727 set_expand_context(xp);
3728 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos,
3729 &num_files, &files_found);
3730 showtail = expand_showtail(xp);
3731 if (i != EXPAND_OK)
3732 return i;
3733
3734 }
3735 else
3736 {
3737 num_files = xp->xp_numfiles;
3738 files_found = xp->xp_files;
3739 showtail = cmd_showtail;
3740 }
3741
3742#ifdef FEAT_WILDMENU
3743 if (!wildmenu)
3744 {
3745#endif
3746 msg_didany = FALSE; /* lines_left will be set */
3747 msg_start(); /* prepare for paging */
3748 msg_putchar('\n');
3749 out_flush();
3750 cmdline_row = msg_row;
3751 msg_didany = FALSE; /* lines_left will be set again */
3752 msg_start(); /* prepare for paging */
3753#ifdef FEAT_WILDMENU
3754 }
3755#endif
3756
3757 if (got_int)
3758 got_int = FALSE; /* only int. the completion, not the cmd line */
3759#ifdef FEAT_WILDMENU
3760 else if (wildmenu)
3761 win_redr_status_matches(xp, num_files, files_found, 0, showtail);
3762#endif
3763 else
3764 {
3765 /* find the length of the longest file name */
3766 maxlen = 0;
3767 for (i = 0; i < num_files; ++i)
3768 {
3769 if (!showtail && (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003770 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 || xp->xp_context == EXPAND_BUFFERS))
3772 {
3773 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE);
3774 j = vim_strsize(NameBuff);
3775 }
3776 else
3777 j = vim_strsize(L_SHOWFILE(i));
3778 if (j > maxlen)
3779 maxlen = j;
3780 }
3781
3782 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3783 lines = num_files;
3784 else
3785 {
3786 /* compute the number of columns and lines for the listing */
3787 maxlen += 2; /* two spaces between file names */
3788 columns = ((int)Columns + 2) / maxlen;
3789 if (columns < 1)
3790 columns = 1;
3791 lines = (num_files + columns - 1) / columns;
3792 }
3793
3794 attr = hl_attr(HLF_D); /* find out highlighting for directories */
3795
3796 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3797 {
3798 MSG_PUTS_ATTR(_("tagname"), hl_attr(HLF_T));
3799 msg_clr_eos();
3800 msg_advance(maxlen - 3);
3801 MSG_PUTS_ATTR(_(" kind file\n"), hl_attr(HLF_T));
3802 }
3803
3804 /* list the files line by line */
3805 for (i = 0; i < lines; ++i)
3806 {
3807 lastlen = 999;
3808 for (k = i; k < num_files; k += lines)
3809 {
3810 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3811 {
3812 msg_outtrans_attr(files_found[k], hl_attr(HLF_D));
3813 p = files_found[k] + STRLEN(files_found[k]) + 1;
3814 msg_advance(maxlen + 1);
3815 msg_puts(p);
3816 msg_advance(maxlen + 3);
3817 msg_puts_long_attr(p + 2, hl_attr(HLF_D));
3818 break;
3819 }
3820 for (j = maxlen - lastlen; --j >= 0; )
3821 msg_putchar(' ');
3822 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003823 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824 || xp->xp_context == EXPAND_BUFFERS)
3825 {
3826 /* highlight directories */
3827 j = (mch_isdir(files_found[k]));
3828 if (showtail)
3829 p = L_SHOWFILE(k);
3830 else
3831 {
3832 home_replace(NULL, files_found[k], NameBuff, MAXPATHL,
3833 TRUE);
3834 p = NameBuff;
3835 }
3836 }
3837 else
3838 {
3839 j = FALSE;
3840 p = L_SHOWFILE(k);
3841 }
3842 lastlen = msg_outtrans_attr(p, j ? attr : 0);
3843 }
3844 if (msg_col > 0) /* when not wrapped around */
3845 {
3846 msg_clr_eos();
3847 msg_putchar('\n');
3848 }
3849 out_flush(); /* show one line at a time */
3850 if (got_int)
3851 {
3852 got_int = FALSE;
3853 break;
3854 }
3855 }
3856
3857 /*
3858 * we redraw the command below the lines that we have just listed
3859 * This is a bit tricky, but it saves a lot of screen updating.
3860 */
3861 cmdline_row = msg_row; /* will put it back later */
3862 }
3863
3864 if (xp->xp_numfiles == -1)
3865 FreeWild(num_files, files_found);
3866
3867 return EXPAND_OK;
3868}
3869
3870/*
3871 * Private gettail for showmatches() (and win_redr_status_matches()):
3872 * Find tail of file name path, but ignore trailing "/".
3873 */
3874 char_u *
3875sm_gettail(s)
3876 char_u *s;
3877{
3878 char_u *p;
3879 char_u *t = s;
3880 int had_sep = FALSE;
3881
3882 for (p = s; *p != NUL; )
3883 {
3884 if (vim_ispathsep(*p)
3885#ifdef BACKSLASH_IN_FILENAME
3886 && !rem_backslash(p)
3887#endif
3888 )
3889 had_sep = TRUE;
3890 else if (had_sep)
3891 {
3892 t = p;
3893 had_sep = FALSE;
3894 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003895 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896 }
3897 return t;
3898}
3899
3900/*
3901 * Return TRUE if we only need to show the tail of completion matches.
3902 * When not completing file names or there is a wildcard in the path FALSE is
3903 * returned.
3904 */
3905 static int
3906expand_showtail(xp)
3907 expand_T *xp;
3908{
3909 char_u *s;
3910 char_u *end;
3911
3912 /* When not completing file names a "/" may mean something different. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003913 if (xp->xp_context != EXPAND_FILES
3914 && xp->xp_context != EXPAND_SHELLCMD
3915 && xp->xp_context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916 return FALSE;
3917
3918 end = gettail(xp->xp_pattern);
3919 if (end == xp->xp_pattern) /* there is no path separator */
3920 return FALSE;
3921
3922 for (s = xp->xp_pattern; s < end; s++)
3923 {
3924 /* Skip escaped wildcards. Only when the backslash is not a path
3925 * separator, on DOS the '*' "path\*\file" must not be skipped. */
3926 if (rem_backslash(s))
3927 ++s;
3928 else if (vim_strchr((char_u *)"*?[", *s) != NULL)
3929 return FALSE;
3930 }
3931 return TRUE;
3932}
3933
3934/*
3935 * Prepare a string for expansion.
3936 * When expanding file names: The string will be used with expand_wildcards().
3937 * Copy the file name into allocated memory and add a '*' at the end.
3938 * When expanding other names: The string will be used with regcomp(). Copy
3939 * the name into allocated memory and prepend "^".
3940 */
3941 char_u *
3942addstar(fname, len, context)
3943 char_u *fname;
3944 int len;
3945 int context; /* EXPAND_FILES etc. */
3946{
3947 char_u *retval;
3948 int i, j;
3949 int new_len;
3950 char_u *tail;
3951
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003952 if (context != EXPAND_FILES
3953 && context != EXPAND_SHELLCMD
3954 && context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 {
3956 /*
3957 * Matching will be done internally (on something other than files).
3958 * So we convert the file-matching-type wildcards into our kind for
3959 * use with vim_regcomp(). First work out how long it will be:
3960 */
3961
3962 /* For help tags the translation is done in find_help_tags().
3963 * For a tag pattern starting with "/" no translation is needed. */
3964 if (context == EXPAND_HELP
3965 || context == EXPAND_COLORS
3966 || context == EXPAND_COMPILER
3967 || (context == EXPAND_TAGS && fname[0] == '/'))
3968 retval = vim_strnsave(fname, len);
3969 else
3970 {
3971 new_len = len + 2; /* +2 for '^' at start, NUL at end */
3972 for (i = 0; i < len; i++)
3973 {
3974 if (fname[i] == '*' || fname[i] == '~')
3975 new_len++; /* '*' needs to be replaced by ".*"
3976 '~' needs to be replaced by "\~" */
3977
3978 /* Buffer names are like file names. "." should be literal */
3979 if (context == EXPAND_BUFFERS && fname[i] == '.')
3980 new_len++; /* "." becomes "\." */
3981
3982 /* Custom expansion takes care of special things, match
3983 * backslashes literally (perhaps also for other types?) */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003984 if ((context == EXPAND_USER_DEFINED
3985 || context == EXPAND_USER_LIST) && fname[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 new_len++; /* '\' becomes "\\" */
3987 }
3988 retval = alloc(new_len);
3989 if (retval != NULL)
3990 {
3991 retval[0] = '^';
3992 j = 1;
3993 for (i = 0; i < len; i++, j++)
3994 {
3995 /* Skip backslash. But why? At least keep it for custom
3996 * expansion. */
3997 if (context != EXPAND_USER_DEFINED
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00003998 && context != EXPAND_USER_LIST
3999 && fname[i] == '\\'
4000 && ++i == len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001 break;
4002
4003 switch (fname[i])
4004 {
4005 case '*': retval[j++] = '.';
4006 break;
4007 case '~': retval[j++] = '\\';
4008 break;
4009 case '?': retval[j] = '.';
4010 continue;
4011 case '.': if (context == EXPAND_BUFFERS)
4012 retval[j++] = '\\';
4013 break;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004014 case '\\': if (context == EXPAND_USER_DEFINED
4015 || context == EXPAND_USER_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004016 retval[j++] = '\\';
4017 break;
4018 }
4019 retval[j] = fname[i];
4020 }
4021 retval[j] = NUL;
4022 }
4023 }
4024 }
4025 else
4026 {
4027 retval = alloc(len + 4);
4028 if (retval != NULL)
4029 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004030 vim_strncpy(retval, fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031
4032 /*
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004033 * Don't add a star to *, ~, ~user, $var or `cmd`.
4034 * * would become **, which walks the whole tree.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035 * ~ would be at the start of the file name, but not the tail.
4036 * $ could be anywhere in the tail.
4037 * ` could be anywhere in the file name.
4038 */
4039 tail = gettail(retval);
4040 if ((*retval != '~' || tail != retval)
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004041 && (len == 0 || retval[len - 1] != '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042 && vim_strchr(tail, '$') == NULL
4043 && vim_strchr(retval, '`') == NULL)
4044 retval[len++] = '*';
4045 retval[len] = NUL;
4046 }
4047 }
4048 return retval;
4049}
4050
4051/*
4052 * Must parse the command line so far to work out what context we are in.
4053 * Completion can then be done based on that context.
4054 * This routine sets the variables:
4055 * xp->xp_pattern The start of the pattern to be expanded within
4056 * the command line (ends at the cursor).
4057 * xp->xp_context The type of thing to expand. Will be one of:
4058 *
4059 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on
4060 * the command line, like an unknown command. Caller
4061 * should beep.
4062 * EXPAND_NOTHING Unrecognised context for completion, use char like
4063 * a normal char, rather than for completion. eg
4064 * :s/^I/
4065 * EXPAND_COMMANDS Cursor is still touching the command, so complete
4066 * it.
4067 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands.
4068 * EXPAND_FILES After command with XFILE set, or after setting
4069 * with P_EXPAND set. eg :e ^I, :w>>^I
4070 * EXPAND_DIRECTORIES In some cases this is used instead of the latter
4071 * when we know only directories are of interest. eg
4072 * :set dir=^I
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004073 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074 * EXPAND_SETTINGS Complete variable names. eg :set d^I
4075 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I
4076 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I
4077 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect
4078 * EXPAND_HELP Complete tags from the file 'helpfile'/tags
4079 * EXPAND_EVENTS Complete event names
4080 * EXPAND_SYNTAX Complete :syntax command arguments
4081 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names
4082 * EXPAND_AUGROUP Complete autocommand group names
4083 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I
4084 * EXPAND_MAPPINGS Complete mapping and abbreviation names,
4085 * eg :unmap a^I , :cunab x^I
4086 * EXPAND_FUNCTIONS Complete internal or user defined function names,
4087 * eg :call sub^I
4088 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I
4089 * EXPAND_EXPRESSION Complete internal or user defined function/variable
4090 * names in expressions, eg :while s^I
4091 * EXPAND_ENV_VARS Complete environment variable names
4092 */
4093 static void
4094set_expand_context(xp)
4095 expand_T *xp;
4096{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004097 /* only expansion for ':', '>' and '=' command-lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098 if (ccline.cmdfirstc != ':'
4099#ifdef FEAT_EVAL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004100 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '='
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004101 && !ccline.input_fn
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102#endif
4103 )
4104 {
4105 xp->xp_context = EXPAND_NOTHING;
4106 return;
4107 }
4108 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos);
4109}
4110
4111 void
4112set_cmd_context(xp, str, len, col)
4113 expand_T *xp;
4114 char_u *str; /* start of command line */
4115 int len; /* length of command line (excl. NUL) */
4116 int col; /* position of cursor */
4117{
4118 int old_char = NUL;
4119 char_u *nextcomm;
4120
4121 /*
4122 * Avoid a UMR warning from Purify, only save the character if it has been
4123 * written before.
4124 */
4125 if (col < len)
4126 old_char = str[col];
4127 str[col] = NUL;
4128 nextcomm = str;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004129
4130#ifdef FEAT_EVAL
4131 if (ccline.cmdfirstc == '=')
4132 /* pass CMD_SIZE because there is no real command */
4133 set_context_for_expression(xp, str, CMD_SIZE);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004134 else if (ccline.input_fn)
4135 {
4136 xp->xp_context = ccline.xp_context;
4137 xp->xp_pattern = ccline.cmdbuff;
4138 xp->xp_arg = ccline.xp_arg;
4139 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004140 else
4141#endif
4142 while (nextcomm != NULL)
4143 nextcomm = set_one_cmd_context(xp, nextcomm);
4144
Bram Moolenaar071d4272004-06-13 20:20:40 +00004145 str[col] = old_char;
4146}
4147
4148/*
4149 * Expand the command line "str" from context "xp".
4150 * "xp" must have been set by set_cmd_context().
4151 * xp->xp_pattern points into "str", to where the text that is to be expanded
4152 * starts.
4153 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the
4154 * cursor.
4155 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the
4156 * key that triggered expansion literally.
4157 * Returns EXPAND_OK otherwise.
4158 */
4159 int
4160expand_cmdline(xp, str, col, matchcount, matches)
4161 expand_T *xp;
4162 char_u *str; /* start of command line */
4163 int col; /* position of cursor */
4164 int *matchcount; /* return: nr of matches */
4165 char_u ***matches; /* return: array of pointers to matches */
4166{
4167 char_u *file_str = NULL;
4168
4169 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
4170 {
4171 beep_flush();
4172 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */
4173 }
4174 if (xp->xp_context == EXPAND_NOTHING)
4175 {
4176 /* Caller can use the character as a normal char instead */
4177 return EXPAND_NOTHING;
4178 }
4179
4180 /* add star to file name, or convert to regexp if not exp. files. */
4181 file_str = addstar(xp->xp_pattern,
4182 (int)(str + col - xp->xp_pattern), xp->xp_context);
4183 if (file_str == NULL)
4184 return EXPAND_UNSUCCESSFUL;
4185
4186 /* find all files that match the description */
4187 if (ExpandFromContext(xp, file_str, matchcount, matches,
4188 WILD_ADD_SLASH|WILD_SILENT) == FAIL)
4189 {
4190 *matchcount = 0;
4191 *matches = NULL;
4192 }
4193 vim_free(file_str);
4194
4195 return EXPAND_OK;
4196}
4197
4198#ifdef FEAT_MULTI_LANG
4199/*
4200 * Cleanup matches for help tags: remove "@en" if "en" is the only language.
4201 */
4202static void cleanup_help_tags __ARGS((int num_file, char_u **file));
4203
4204 static void
4205cleanup_help_tags(num_file, file)
4206 int num_file;
4207 char_u **file;
4208{
4209 int i, j;
4210 int len;
4211
4212 for (i = 0; i < num_file; ++i)
4213 {
4214 len = (int)STRLEN(file[i]) - 3;
4215 if (len > 0 && STRCMP(file[i] + len, "@en") == 0)
4216 {
4217 /* Sorting on priority means the same item in another language may
4218 * be anywhere. Search all items for a match up to the "@en". */
4219 for (j = 0; j < num_file; ++j)
4220 if (j != i
4221 && (int)STRLEN(file[j]) == len + 3
4222 && STRNCMP(file[i], file[j], len + 1) == 0)
4223 break;
4224 if (j == num_file)
4225 file[i][len] = NUL;
4226 }
4227 }
4228}
4229#endif
4230
4231/*
4232 * Do the expansion based on xp->xp_context and "pat".
4233 */
4234 static int
4235ExpandFromContext(xp, pat, num_file, file, options)
4236 expand_T *xp;
4237 char_u *pat;
4238 int *num_file;
4239 char_u ***file;
4240 int options;
4241{
4242#ifdef FEAT_CMDL_COMPL
4243 regmatch_T regmatch;
4244#endif
4245 int ret;
4246 int flags;
4247
4248 flags = EW_DIR; /* include directories */
4249 if (options & WILD_LIST_NOTFOUND)
4250 flags |= EW_NOTFOUND;
4251 if (options & WILD_ADD_SLASH)
4252 flags |= EW_ADDSLASH;
4253 if (options & WILD_KEEP_ALL)
4254 flags |= EW_KEEPALL;
4255 if (options & WILD_SILENT)
4256 flags |= EW_SILENT;
4257
4258 if (xp->xp_context == EXPAND_FILES || xp->xp_context == EXPAND_DIRECTORIES)
4259 {
4260 /*
4261 * Expand file or directory names.
4262 */
4263 int free_pat = FALSE;
4264 int i;
4265
4266 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4267 * space */
4268 if (xp->xp_backslash != XP_BS_NONE)
4269 {
4270 free_pat = TRUE;
4271 pat = vim_strsave(pat);
4272 for (i = 0; pat[i]; ++i)
4273 if (pat[i] == '\\')
4274 {
4275 if (xp->xp_backslash == XP_BS_THREE
4276 && pat[i + 1] == '\\'
4277 && pat[i + 2] == '\\'
4278 && pat[i + 3] == ' ')
4279 STRCPY(pat + i, pat + i + 3);
4280 if (xp->xp_backslash == XP_BS_ONE
4281 && pat[i + 1] == ' ')
4282 STRCPY(pat + i, pat + i + 1);
4283 }
4284 }
4285
4286 if (xp->xp_context == EXPAND_FILES)
4287 flags |= EW_FILE;
4288 else
4289 flags = (flags | EW_DIR) & ~EW_FILE;
4290 ret = expand_wildcards(1, &pat, num_file, file, flags);
4291 if (free_pat)
4292 vim_free(pat);
4293 return ret;
4294 }
4295
4296 *file = (char_u **)"";
4297 *num_file = 0;
4298 if (xp->xp_context == EXPAND_HELP)
4299 {
4300 if (find_help_tags(pat, num_file, file, FALSE) == OK)
4301 {
4302#ifdef FEAT_MULTI_LANG
4303 cleanup_help_tags(*num_file, *file);
4304#endif
4305 return OK;
4306 }
4307 return FAIL;
4308 }
4309
4310#ifndef FEAT_CMDL_COMPL
4311 return FAIL;
4312#else
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004313 if (xp->xp_context == EXPAND_SHELLCMD)
4314 return expand_shellcmd(pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004315 if (xp->xp_context == EXPAND_OLD_SETTING)
4316 return ExpandOldSetting(num_file, file);
4317 if (xp->xp_context == EXPAND_BUFFERS)
4318 return ExpandBufnames(pat, num_file, file, options);
4319 if (xp->xp_context == EXPAND_TAGS
4320 || xp->xp_context == EXPAND_TAGS_LISTFILES)
4321 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file);
4322 if (xp->xp_context == EXPAND_COLORS)
4323 return ExpandRTDir(pat, num_file, file, "colors");
4324 if (xp->xp_context == EXPAND_COMPILER)
4325 return ExpandRTDir(pat, num_file, file, "compiler");
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004326# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4327 if (xp->xp_context == EXPAND_USER_LIST)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004328 return ExpandUserList(xp, num_file, file);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004329# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330
4331 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4332 if (regmatch.regprog == NULL)
4333 return FAIL;
4334
4335 /* set ignore-case according to p_ic, p_scs and pat */
4336 regmatch.rm_ic = ignorecase(pat);
4337
4338 if (xp->xp_context == EXPAND_SETTINGS
4339 || xp->xp_context == EXPAND_BOOL_SETTINGS)
4340 ret = ExpandSettings(xp, &regmatch, num_file, file);
4341 else if (xp->xp_context == EXPAND_MAPPINGS)
4342 ret = ExpandMappings(&regmatch, num_file, file);
4343# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4344 else if (xp->xp_context == EXPAND_USER_DEFINED)
4345 ret = ExpandUserDefined(xp, &regmatch, num_file, file);
4346# endif
4347 else
4348 {
4349 static struct expgen
4350 {
4351 int context;
4352 char_u *((*func)__ARGS((expand_T *, int)));
4353 int ic;
4354 } tab[] =
4355 {
4356 {EXPAND_COMMANDS, get_command_name, FALSE},
4357#ifdef FEAT_USR_CMDS
4358 {EXPAND_USER_COMMANDS, get_user_commands, FALSE},
4359 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE},
4360 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE},
4361 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE},
4362#endif
4363#ifdef FEAT_EVAL
4364 {EXPAND_USER_VARS, get_user_var_name, FALSE},
4365 {EXPAND_FUNCTIONS, get_function_name, FALSE},
4366 {EXPAND_USER_FUNC, get_user_func_name, FALSE},
4367 {EXPAND_EXPRESSION, get_expr_name, FALSE},
4368#endif
4369#ifdef FEAT_MENU
4370 {EXPAND_MENUS, get_menu_name, FALSE},
4371 {EXPAND_MENUNAMES, get_menu_names, FALSE},
4372#endif
4373#ifdef FEAT_SYN_HL
4374 {EXPAND_SYNTAX, get_syntax_name, TRUE},
4375#endif
4376 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE},
4377#ifdef FEAT_AUTOCMD
4378 {EXPAND_EVENTS, get_event_name, TRUE},
4379 {EXPAND_AUGROUP, get_augroup_name, TRUE},
4380#endif
4381#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
4382 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
4383 {EXPAND_LANGUAGE, get_lang_arg, TRUE},
4384#endif
4385 {EXPAND_ENV_VARS, get_env_name, TRUE},
4386 };
4387 int i;
4388
4389 /*
4390 * Find a context in the table and call the ExpandGeneric() with the
4391 * right function to do the expansion.
4392 */
4393 ret = FAIL;
4394 for (i = 0; i < sizeof(tab) / sizeof(struct expgen); ++i)
4395 if (xp->xp_context == tab[i].context)
4396 {
4397 if (tab[i].ic)
4398 regmatch.rm_ic = TRUE;
4399 ret = ExpandGeneric(xp, &regmatch, num_file, file, tab[i].func);
4400 break;
4401 }
4402 }
4403
4404 vim_free(regmatch.regprog);
4405
4406 return ret;
4407#endif /* FEAT_CMDL_COMPL */
4408}
4409
4410#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4411/*
4412 * Expand a list of names.
4413 *
4414 * Generic function for command line completion. It calls a function to
4415 * obtain strings, one by one. The strings are matched against a regexp
4416 * program. Matching strings are copied into an array, which is returned.
4417 *
4418 * Returns OK when no problems encountered, FAIL for error (out of memory).
4419 */
4420 int
4421ExpandGeneric(xp, regmatch, num_file, file, func)
4422 expand_T *xp;
4423 regmatch_T *regmatch;
4424 int *num_file;
4425 char_u ***file;
4426 char_u *((*func)__ARGS((expand_T *, int)));
4427 /* returns a string from the list */
4428{
4429 int i;
4430 int count = 0;
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004431 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432 char_u *str;
4433
4434 /* do this loop twice:
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004435 * round == 0: count the number of matching names
4436 * round == 1: copy the matching names into allocated memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004438 for (round = 0; round <= 1; ++round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 {
4440 for (i = 0; ; ++i)
4441 {
4442 str = (*func)(xp, i);
4443 if (str == NULL) /* end of list */
4444 break;
4445 if (*str == NUL) /* skip empty strings */
4446 continue;
4447
4448 if (vim_regexec(regmatch, str, (colnr_T)0))
4449 {
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004450 if (round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 {
4452 str = vim_strsave_escaped(str, (char_u *)" \t\\.");
4453 (*file)[count] = str;
4454#ifdef FEAT_MENU
4455 if (func == get_menu_names && str != NULL)
4456 {
4457 /* test for separator added by get_menu_names() */
4458 str += STRLEN(str) - 1;
4459 if (*str == '\001')
4460 *str = '.';
4461 }
4462#endif
4463 }
4464 ++count;
4465 }
4466 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004467 if (round == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468 {
4469 if (count == 0)
4470 return OK;
4471 *num_file = count;
4472 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
4473 if (*file == NULL)
4474 {
4475 *file = (char_u **)"";
4476 return FAIL;
4477 }
4478 count = 0;
4479 }
4480 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004481
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004482 /* Sort the results. Keep menu's in the specified order. */
4483 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS)
4484 sort_strings(*file, *num_file);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004485
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 return OK;
4487}
4488
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004489/*
4490 * Complete a shell command.
4491 * Returns FAIL or OK;
4492 */
4493 static int
4494expand_shellcmd(filepat, num_file, file, flagsarg)
4495 char_u *filepat; /* pattern to match with command names */
4496 int *num_file; /* return: number of matches */
4497 char_u ***file; /* return: array with matches */
4498 int flagsarg; /* EW_ flags */
4499{
4500 char_u *pat;
4501 int i;
4502 char_u *path;
4503 int mustfree = FALSE;
4504 garray_T ga;
4505 char_u *buf = alloc(MAXPATHL);
4506 size_t l;
4507 char_u *s, *e;
4508 int flags = flagsarg;
4509 int ret;
4510
4511 if (buf == NULL)
4512 return FAIL;
4513
4514 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4515 * space */
4516 pat = vim_strsave(filepat);
4517 for (i = 0; pat[i]; ++i)
4518 if (pat[i] == '\\' && pat[i + 1] == ' ')
4519 STRCPY(pat + i, pat + i + 1);
4520
4521 flags |= EW_FILE | EW_EXEC;
4522
4523 /* For an absolute name we don't use $PATH. */
4524 if ((pat[0] == '.' && (vim_ispathsep(pat[1])
4525 || (pat[1] == '.' && vim_ispathsep(pat[2])))))
4526 path = (char_u *)".";
4527 else
4528 path = vim_getenv((char_u *)"PATH", &mustfree);
4529
4530 /*
4531 * Go over all directories in $PATH. Expand matches in that directory and
4532 * collect them in "ga".
4533 */
4534 ga_init2(&ga, (int)sizeof(char *), 10);
4535 for (s = path; *s != NUL; s = e)
4536 {
4537#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
4538 e = vim_strchr(s, ';');
4539#else
4540 e = vim_strchr(s, ':');
4541#endif
4542 if (e == NULL)
4543 e = s + STRLEN(s);
4544
4545 l = e - s;
4546 if (l > MAXPATHL - 5)
4547 break;
4548 vim_strncpy(buf, s, l);
4549 add_pathsep(buf);
4550 l = STRLEN(buf);
4551 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l);
4552
4553 /* Expand matches in one directory of $PATH. */
4554 ret = expand_wildcards(1, &buf, num_file, file, flags);
4555 if (ret == OK)
4556 {
4557 if (ga_grow(&ga, *num_file) == FAIL)
4558 FreeWild(*num_file, *file);
4559 else
4560 {
4561 for (i = 0; i < *num_file; ++i)
4562 {
4563 s = (*file)[i];
4564 if (STRLEN(s) > l)
4565 {
4566 /* Remove the path again. */
4567 mch_memmove(s, s + l, STRLEN(s + l) + 1);
4568 ((char_u **)ga.ga_data)[ga.ga_len++] = s;
4569 }
4570 else
4571 vim_free(s);
4572 }
4573 vim_free(*file);
4574 }
4575 }
4576 if (*e != NUL)
4577 ++e;
4578 }
4579 *file = ga.ga_data;
4580 *num_file = ga.ga_len;
4581
4582 vim_free(buf);
4583 vim_free(pat);
4584 if (mustfree)
4585 vim_free(path);
4586 return OK;
4587}
4588
4589
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00004591static 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));
4592
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593/*
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004594 * call "user_expand_func()" to invoke a user defined VimL function and return
4595 * the result (either a string or a List).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596 */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004597 static void *
4598call_user_expand_func(user_expand_func, xp, num_file, file)
4599 void *(*user_expand_func) __ARGS((char_u *, int, char_u **, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600 expand_T *xp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601 int *num_file;
4602 char_u ***file;
4603{
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004604 char_u keep;
4605 char_u num[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004606 char_u *args[3];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607 int save_current_SID = current_SID;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004608 void *ret;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004609 struct cmdline_info save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004610
4611 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0')
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004612 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613 *num_file = 0;
4614 *file = NULL;
4615
4616 keep = ccline.cmdbuff[ccline.cmdlen];
4617 ccline.cmdbuff[ccline.cmdlen] = 0;
4618 sprintf((char *)num, "%d", ccline.cmdpos);
4619 args[0] = xp->xp_pattern;
4620 args[1] = ccline.cmdbuff;
4621 args[2] = num;
4622
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004623 /* Save the cmdline, we don't know what the function may do. */
4624 save_ccline = ccline;
4625 ccline.cmdbuff = NULL;
4626 ccline.cmdprompt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627 current_SID = xp->xp_scriptID;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004628
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004629 ret = user_expand_func(xp->xp_arg, 3, args, FALSE);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004630
4631 ccline = save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632 current_SID = save_current_SID;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004633
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634 ccline.cmdbuff[ccline.cmdlen] = keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004635
4636 return ret;
4637}
4638
4639/*
4640 * Expand names with a function defined by the user.
4641 */
4642 static int
4643ExpandUserDefined(xp, regmatch, num_file, file)
4644 expand_T *xp;
4645 regmatch_T *regmatch;
4646 int *num_file;
4647 char_u ***file;
4648{
4649 char_u *retstr;
4650 char_u *s;
4651 char_u *e;
4652 char_u keep;
4653 garray_T ga;
4654
4655 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file);
4656 if (retstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657 return FAIL;
4658
4659 ga_init2(&ga, (int)sizeof(char *), 3);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004660 for (s = retstr; *s != NUL; s = e)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661 {
4662 e = vim_strchr(s, '\n');
4663 if (e == NULL)
4664 e = s + STRLEN(s);
4665 keep = *e;
4666 *e = 0;
4667
4668 if (xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0)
4669 {
4670 *e = keep;
4671 if (*e != NUL)
4672 ++e;
4673 continue;
4674 }
4675
4676 if (ga_grow(&ga, 1) == FAIL)
4677 break;
4678
4679 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s));
4680 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681
4682 *e = keep;
4683 if (*e != NUL)
4684 ++e;
4685 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004686 vim_free(retstr);
4687 *file = ga.ga_data;
4688 *num_file = ga.ga_len;
4689 return OK;
4690}
4691
4692/*
4693 * Expand names with a list returned by a function defined by the user.
4694 */
4695 static int
4696ExpandUserList(xp, num_file, file)
4697 expand_T *xp;
4698 int *num_file;
4699 char_u ***file;
4700{
4701 list_T *retlist;
4702 listitem_T *li;
4703 garray_T ga;
4704
4705 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file);
4706 if (retlist == NULL)
4707 return FAIL;
4708
4709 ga_init2(&ga, (int)sizeof(char *), 3);
4710 /* Loop over the items in the list. */
4711 for (li = retlist->lv_first; li != NULL; li = li->li_next)
4712 {
4713 if (li->li_tv.v_type != VAR_STRING)
4714 continue; /* Skip non-string items */
4715
4716 if (ga_grow(&ga, 1) == FAIL)
4717 break;
4718
4719 ((char_u **)ga.ga_data)[ga.ga_len] =
4720 vim_strsave(li->li_tv.vval.v_string);
4721 ++ga.ga_len;
4722 }
4723 list_unref(retlist);
4724
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725 *file = ga.ga_data;
4726 *num_file = ga.ga_len;
4727 return OK;
4728}
4729#endif
4730
4731/*
4732 * Expand color scheme names: 'runtimepath'/colors/{pat}.vim
4733 * or compiler names.
4734 */
4735 static int
4736ExpandRTDir(pat, num_file, file, dirname)
4737 char_u *pat;
4738 int *num_file;
4739 char_u ***file;
4740 char *dirname; /* "colors" or "compiler" */
4741{
4742 char_u *all;
4743 char_u *s;
4744 char_u *e;
4745 garray_T ga;
4746
4747 *num_file = 0;
4748 *file = NULL;
4749 s = alloc((unsigned)(STRLEN(pat) + STRLEN(dirname) + 7));
4750 if (s == NULL)
4751 return FAIL;
4752 sprintf((char *)s, "%s/%s*.vim", dirname, pat);
4753 all = globpath(p_rtp, s);
4754 vim_free(s);
4755 if (all == NULL)
4756 return FAIL;
4757
4758 ga_init2(&ga, (int)sizeof(char *), 3);
4759 for (s = all; *s != NUL; s = e)
4760 {
4761 e = vim_strchr(s, '\n');
4762 if (e == NULL)
4763 e = s + STRLEN(s);
4764 if (ga_grow(&ga, 1) == FAIL)
4765 break;
4766 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0)
4767 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004768 for (s = e - 4; s > all; mb_ptr_back(all, s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769 if (*s == '\n' || vim_ispathsep(*s))
4770 break;
4771 ++s;
4772 ((char_u **)ga.ga_data)[ga.ga_len] =
4773 vim_strnsave(s, (int)(e - s - 4));
4774 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775 }
4776 if (*e != NUL)
4777 ++e;
4778 }
4779 vim_free(all);
4780 *file = ga.ga_data;
4781 *num_file = ga.ga_len;
4782 return OK;
4783}
4784
4785#endif
4786
4787#if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO)
4788/*
4789 * Expand "file" for all comma-separated directories in "path".
4790 * Returns an allocated string with all matches concatenated, separated by
4791 * newlines. Returns NULL for an error or no matches.
4792 */
4793 char_u *
4794globpath(path, file)
4795 char_u *path;
4796 char_u *file;
4797{
4798 expand_T xpc;
4799 char_u *buf;
4800 garray_T ga;
4801 int i;
4802 int len;
4803 int num_p;
4804 char_u **p;
4805 char_u *cur = NULL;
4806
4807 buf = alloc(MAXPATHL);
4808 if (buf == NULL)
4809 return NULL;
4810
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00004811 ExpandInit(&xpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00004813
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 ga_init2(&ga, 1, 100);
4815
4816 /* Loop over all entries in {path}. */
4817 while (*path != NUL)
4818 {
4819 /* Copy one item of the path to buf[] and concatenate the file name. */
4820 copy_option_part(&path, buf, MAXPATHL, ",");
4821 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
4822 {
4823 add_pathsep(buf);
4824 STRCAT(buf, file);
4825 if (ExpandFromContext(&xpc, buf, &num_p, &p, WILD_SILENT) != FAIL
4826 && num_p > 0)
4827 {
4828 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT);
4829 for (len = 0, i = 0; i < num_p; ++i)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004830 len += (int)STRLEN(p[i]) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831
4832 /* Concatenate new results to previous ones. */
4833 if (ga_grow(&ga, len) == OK)
4834 {
4835 cur = (char_u *)ga.ga_data + ga.ga_len;
4836 for (i = 0; i < num_p; ++i)
4837 {
4838 STRCPY(cur, p[i]);
4839 cur += STRLEN(p[i]);
4840 *cur++ = '\n';
4841 }
4842 ga.ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843 }
4844 FreeWild(num_p, p);
4845 }
4846 }
4847 }
4848 if (cur != NULL)
4849 *--cur = 0; /* Replace trailing newline with NUL */
4850
4851 vim_free(buf);
4852 return (char_u *)ga.ga_data;
4853}
4854
4855#endif
4856
4857#if defined(FEAT_CMDHIST) || defined(PROTO)
4858
4859/*********************************
4860 * Command line history stuff *
4861 *********************************/
4862
4863/*
4864 * Translate a history character to the associated type number.
4865 */
4866 static int
4867hist_char2type(c)
4868 int c;
4869{
4870 if (c == ':')
4871 return HIST_CMD;
4872 if (c == '=')
4873 return HIST_EXPR;
4874 if (c == '@')
4875 return HIST_INPUT;
4876 if (c == '>')
4877 return HIST_DEBUG;
4878 return HIST_SEARCH; /* must be '?' or '/' */
4879}
4880
4881/*
4882 * Table of history names.
4883 * These names are used in :history and various hist...() functions.
4884 * It is sufficient to give the significant prefix of a history name.
4885 */
4886
4887static char *(history_names[]) =
4888{
4889 "cmd",
4890 "search",
4891 "expr",
4892 "input",
4893 "debug",
4894 NULL
4895};
4896
4897/*
4898 * init_history() - Initialize the command line history.
4899 * Also used to re-allocate the history when the size changes.
4900 */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00004901 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902init_history()
4903{
4904 int newlen; /* new length of history table */
4905 histentry_T *temp;
4906 int i;
4907 int j;
4908 int type;
4909
4910 /*
4911 * If size of history table changed, reallocate it
4912 */
4913 newlen = (int)p_hi;
4914 if (newlen != hislen) /* history length changed */
4915 {
4916 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */
4917 {
4918 if (newlen)
4919 {
4920 temp = (histentry_T *)lalloc(
4921 (long_u)(newlen * sizeof(histentry_T)), TRUE);
4922 if (temp == NULL) /* out of memory! */
4923 {
4924 if (type == 0) /* first one: just keep the old length */
4925 {
4926 newlen = hislen;
4927 break;
4928 }
4929 /* Already changed one table, now we can only have zero
4930 * length for all tables. */
4931 newlen = 0;
4932 type = -1;
4933 continue;
4934 }
4935 }
4936 else
4937 temp = NULL;
4938 if (newlen == 0 || temp != NULL)
4939 {
4940 if (hisidx[type] < 0) /* there are no entries yet */
4941 {
4942 for (i = 0; i < newlen; ++i)
4943 {
4944 temp[i].hisnum = 0;
4945 temp[i].hisstr = NULL;
4946 }
4947 }
4948 else if (newlen > hislen) /* array becomes bigger */
4949 {
4950 for (i = 0; i <= hisidx[type]; ++i)
4951 temp[i] = history[type][i];
4952 j = i;
4953 for ( ; i <= newlen - (hislen - hisidx[type]); ++i)
4954 {
4955 temp[i].hisnum = 0;
4956 temp[i].hisstr = NULL;
4957 }
4958 for ( ; j < hislen; ++i, ++j)
4959 temp[i] = history[type][j];
4960 }
4961 else /* array becomes smaller or 0 */
4962 {
4963 j = hisidx[type];
4964 for (i = newlen - 1; ; --i)
4965 {
4966 if (i >= 0) /* copy newest entries */
4967 temp[i] = history[type][j];
4968 else /* remove older entries */
4969 vim_free(history[type][j].hisstr);
4970 if (--j < 0)
4971 j = hislen - 1;
4972 if (j == hisidx[type])
4973 break;
4974 }
4975 hisidx[type] = newlen - 1;
4976 }
4977 vim_free(history[type]);
4978 history[type] = temp;
4979 }
4980 }
4981 hislen = newlen;
4982 }
4983}
4984
4985/*
4986 * Check if command line 'str' is already in history.
4987 * If 'move_to_front' is TRUE, matching entry is moved to end of history.
4988 */
4989 static int
4990in_history(type, str, move_to_front)
4991 int type;
4992 char_u *str;
4993 int move_to_front; /* Move the entry to the front if it exists */
4994{
4995 int i;
4996 int last_i = -1;
4997
4998 if (hisidx[type] < 0)
4999 return FALSE;
5000 i = hisidx[type];
5001 do
5002 {
5003 if (history[type][i].hisstr == NULL)
5004 return FALSE;
5005 if (STRCMP(str, history[type][i].hisstr) == 0)
5006 {
5007 if (!move_to_front)
5008 return TRUE;
5009 last_i = i;
5010 break;
5011 }
5012 if (--i < 0)
5013 i = hislen - 1;
5014 } while (i != hisidx[type]);
5015
5016 if (last_i >= 0)
5017 {
5018 str = history[type][i].hisstr;
5019 while (i != hisidx[type])
5020 {
5021 if (++i >= hislen)
5022 i = 0;
5023 history[type][last_i] = history[type][i];
5024 last_i = i;
5025 }
5026 history[type][i].hisstr = str;
5027 history[type][i].hisnum = ++hisnum[type];
5028 return TRUE;
5029 }
5030 return FALSE;
5031}
5032
5033/*
5034 * Convert history name (from table above) to its HIST_ equivalent.
5035 * When "name" is empty, return "cmd" history.
5036 * Returns -1 for unknown history name.
5037 */
5038 int
5039get_histtype(name)
5040 char_u *name;
5041{
5042 int i;
5043 int len = (int)STRLEN(name);
5044
5045 /* No argument: use current history. */
5046 if (len == 0)
5047 return hist_char2type(ccline.cmdfirstc);
5048
5049 for (i = 0; history_names[i] != NULL; ++i)
5050 if (STRNICMP(name, history_names[i], len) == 0)
5051 return i;
5052
5053 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL)
5054 return hist_char2type(name[0]);
5055
5056 return -1;
5057}
5058
5059static int last_maptick = -1; /* last seen maptick */
5060
5061/*
5062 * Add the given string to the given history. If the string is already in the
5063 * history then it is moved to the front. "histype" may be one of he HIST_
5064 * values.
5065 */
5066 void
5067add_to_history(histype, new_entry, in_map, sep)
5068 int histype;
5069 char_u *new_entry;
5070 int in_map; /* consider maptick when inside a mapping */
5071 int sep; /* separator character used (search hist) */
5072{
5073 histentry_T *hisptr;
5074 int len;
5075
5076 if (hislen == 0) /* no history */
5077 return;
5078
5079 /*
5080 * Searches inside the same mapping overwrite each other, so that only
5081 * the last line is kept. Be careful not to remove a line that was moved
5082 * down, only lines that were added.
5083 */
5084 if (histype == HIST_SEARCH && in_map)
5085 {
5086 if (maptick == last_maptick)
5087 {
5088 /* Current line is from the same mapping, remove it */
5089 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];
5090 vim_free(hisptr->hisstr);
5091 hisptr->hisstr = NULL;
5092 hisptr->hisnum = 0;
5093 --hisnum[histype];
5094 if (--hisidx[HIST_SEARCH] < 0)
5095 hisidx[HIST_SEARCH] = hislen - 1;
5096 }
5097 last_maptick = -1;
5098 }
5099 if (!in_history(histype, new_entry, TRUE))
5100 {
5101 if (++hisidx[histype] == hislen)
5102 hisidx[histype] = 0;
5103 hisptr = &history[histype][hisidx[histype]];
5104 vim_free(hisptr->hisstr);
5105
5106 /* Store the separator after the NUL of the string. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005107 len = (int)STRLEN(new_entry);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108 hisptr->hisstr = vim_strnsave(new_entry, len + 2);
5109 if (hisptr->hisstr != NULL)
5110 hisptr->hisstr[len + 1] = sep;
5111
5112 hisptr->hisnum = ++hisnum[histype];
5113 if (histype == HIST_SEARCH && in_map)
5114 last_maptick = maptick;
5115 }
5116}
5117
5118#if defined(FEAT_EVAL) || defined(PROTO)
5119
5120/*
5121 * Get identifier of newest history entry.
5122 * "histype" may be one of the HIST_ values.
5123 */
5124 int
5125get_history_idx(histype)
5126 int histype;
5127{
5128 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5129 || hisidx[histype] < 0)
5130 return -1;
5131
5132 return history[histype][hisidx[histype]].hisnum;
5133}
5134
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005135static struct cmdline_info *get_ccline_ptr __ARGS((void));
5136
5137/*
5138 * Get pointer to the command line info to use. cmdline_paste() may clear
5139 * ccline and put the previous value in prev_ccline.
5140 */
5141 static struct cmdline_info *
5142get_ccline_ptr()
5143{
5144 if ((State & CMDLINE) == 0)
5145 return NULL;
5146 if (ccline.cmdbuff != NULL)
5147 return &ccline;
5148 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
5149 return &prev_ccline;
5150 return NULL;
5151}
5152
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153/*
5154 * Get the current command line in allocated memory.
5155 * Only works when the command line is being edited.
5156 * Returns NULL when something is wrong.
5157 */
5158 char_u *
5159get_cmdline_str()
5160{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005161 struct cmdline_info *p = get_ccline_ptr();
5162
5163 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005164 return NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005165 return vim_strnsave(p->cmdbuff, p->cmdlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166}
5167
5168/*
5169 * Get the current command line position, counted in bytes.
5170 * Zero is the first position.
5171 * Only works when the command line is being edited.
5172 * Returns -1 when something is wrong.
5173 */
5174 int
5175get_cmdline_pos()
5176{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005177 struct cmdline_info *p = get_ccline_ptr();
5178
5179 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180 return -1;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005181 return p->cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005182}
5183
5184/*
5185 * Set the command line byte position to "pos". Zero is the first position.
5186 * Only works when the command line is being edited.
5187 * Returns 1 when failed, 0 when OK.
5188 */
5189 int
5190set_cmdline_pos(pos)
5191 int pos;
5192{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005193 struct cmdline_info *p = get_ccline_ptr();
5194
5195 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196 return 1;
5197
5198 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
5199 * changed the command line. */
5200 if (pos < 0)
5201 new_cmdpos = 0;
5202 else
5203 new_cmdpos = pos;
5204 return 0;
5205}
5206
5207/*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005208 * Get the current command-line type.
Bram Moolenaar1e015462005-09-25 22:16:38 +00005209 * Returns ':' or '/' or '?' or '@' or '>' or '-'
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005210 * Only works when the command line is being edited.
5211 * Returns NUL when something is wrong.
5212 */
5213 int
5214get_cmdline_type()
5215{
5216 struct cmdline_info *p = get_ccline_ptr();
5217
5218 if (p == NULL)
5219 return NUL;
Bram Moolenaar1e015462005-09-25 22:16:38 +00005220 if (p->cmdfirstc == NUL)
5221 return (p->input_fn) ? '@' : '-';
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005222 return p->cmdfirstc;
5223}
5224
5225/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 * Calculate history index from a number:
5227 * num > 0: seen as identifying number of a history entry
5228 * num < 0: relative position in history wrt newest entry
5229 * "histype" may be one of the HIST_ values.
5230 */
5231 static int
5232calc_hist_idx(histype, num)
5233 int histype;
5234 int num;
5235{
5236 int i;
5237 histentry_T *hist;
5238 int wrapped = FALSE;
5239
5240 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5241 || (i = hisidx[histype]) < 0 || num == 0)
5242 return -1;
5243
5244 hist = history[histype];
5245 if (num > 0)
5246 {
5247 while (hist[i].hisnum > num)
5248 if (--i < 0)
5249 {
5250 if (wrapped)
5251 break;
5252 i += hislen;
5253 wrapped = TRUE;
5254 }
5255 if (hist[i].hisnum == num && hist[i].hisstr != NULL)
5256 return i;
5257 }
5258 else if (-num <= hislen)
5259 {
5260 i += num + 1;
5261 if (i < 0)
5262 i += hislen;
5263 if (hist[i].hisstr != NULL)
5264 return i;
5265 }
5266 return -1;
5267}
5268
5269/*
5270 * Get a history entry by its index.
5271 * "histype" may be one of the HIST_ values.
5272 */
5273 char_u *
5274get_history_entry(histype, idx)
5275 int histype;
5276 int idx;
5277{
5278 idx = calc_hist_idx(histype, idx);
5279 if (idx >= 0)
5280 return history[histype][idx].hisstr;
5281 else
5282 return (char_u *)"";
5283}
5284
5285/*
5286 * Clear all entries of a history.
5287 * "histype" may be one of the HIST_ values.
5288 */
5289 int
5290clr_history(histype)
5291 int histype;
5292{
5293 int i;
5294 histentry_T *hisptr;
5295
5296 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT)
5297 {
5298 hisptr = history[histype];
5299 for (i = hislen; i--;)
5300 {
5301 vim_free(hisptr->hisstr);
5302 hisptr->hisnum = 0;
5303 hisptr++->hisstr = NULL;
5304 }
5305 hisidx[histype] = -1; /* mark history as cleared */
5306 hisnum[histype] = 0; /* reset identifier counter */
5307 return OK;
5308 }
5309 return FAIL;
5310}
5311
5312/*
5313 * Remove all entries matching {str} from a history.
5314 * "histype" may be one of the HIST_ values.
5315 */
5316 int
5317del_history_entry(histype, str)
5318 int histype;
5319 char_u *str;
5320{
5321 regmatch_T regmatch;
5322 histentry_T *hisptr;
5323 int idx;
5324 int i;
5325 int last;
5326 int found = FALSE;
5327
5328 regmatch.regprog = NULL;
5329 regmatch.rm_ic = FALSE; /* always match case */
5330 if (hislen != 0
5331 && histype >= 0
5332 && histype < HIST_COUNT
5333 && *str != NUL
5334 && (idx = hisidx[histype]) >= 0
5335 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING))
5336 != NULL)
5337 {
5338 i = last = idx;
5339 do
5340 {
5341 hisptr = &history[histype][i];
5342 if (hisptr->hisstr == NULL)
5343 break;
5344 if (vim_regexec(&regmatch, hisptr->hisstr, (colnr_T)0))
5345 {
5346 found = TRUE;
5347 vim_free(hisptr->hisstr);
5348 hisptr->hisstr = NULL;
5349 hisptr->hisnum = 0;
5350 }
5351 else
5352 {
5353 if (i != last)
5354 {
5355 history[histype][last] = *hisptr;
5356 hisptr->hisstr = NULL;
5357 hisptr->hisnum = 0;
5358 }
5359 if (--last < 0)
5360 last += hislen;
5361 }
5362 if (--i < 0)
5363 i += hislen;
5364 } while (i != idx);
5365 if (history[histype][idx].hisstr == NULL)
5366 hisidx[histype] = -1;
5367 }
5368 vim_free(regmatch.regprog);
5369 return found;
5370}
5371
5372/*
5373 * Remove an indexed entry from a history.
5374 * "histype" may be one of the HIST_ values.
5375 */
5376 int
5377del_history_idx(histype, idx)
5378 int histype;
5379 int idx;
5380{
5381 int i, j;
5382
5383 i = calc_hist_idx(histype, idx);
5384 if (i < 0)
5385 return FALSE;
5386 idx = hisidx[histype];
5387 vim_free(history[histype][i].hisstr);
5388
5389 /* When deleting the last added search string in a mapping, reset
5390 * last_maptick, so that the last added search string isn't deleted again.
5391 */
5392 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx)
5393 last_maptick = -1;
5394
5395 while (i != idx)
5396 {
5397 j = (i + 1) % hislen;
5398 history[histype][i] = history[histype][j];
5399 i = j;
5400 }
5401 history[histype][i].hisstr = NULL;
5402 history[histype][i].hisnum = 0;
5403 if (--i < 0)
5404 i += hislen;
5405 hisidx[histype] = i;
5406 return TRUE;
5407}
5408
5409#endif /* FEAT_EVAL */
5410
5411#if defined(FEAT_CRYPT) || defined(PROTO)
5412/*
5413 * Very specific function to remove the value in ":set key=val" from the
5414 * history.
5415 */
5416 void
5417remove_key_from_history()
5418{
5419 char_u *p;
5420 int i;
5421
5422 i = hisidx[HIST_CMD];
5423 if (i < 0)
5424 return;
5425 p = history[HIST_CMD][i].hisstr;
5426 if (p != NULL)
5427 for ( ; *p; ++p)
5428 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3]))
5429 {
5430 p = vim_strchr(p + 3, '=');
5431 if (p == NULL)
5432 break;
5433 ++p;
5434 for (i = 0; p[i] && !vim_iswhite(p[i]); ++i)
5435 if (p[i] == '\\' && p[i + 1])
5436 ++i;
5437 mch_memmove(p, p + i, STRLEN(p + i) + 1);
5438 --p;
5439 }
5440}
5441#endif
5442
5443#endif /* FEAT_CMDHIST */
5444
5445#if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO)
5446/*
5447 * Get indices "num1,num2" that specify a range within a list (not a range of
5448 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
5449 * Returns OK if parsed successfully, otherwise FAIL.
5450 */
5451 int
5452get_list_range(str, num1, num2)
5453 char_u **str;
5454 int *num1;
5455 int *num2;
5456{
5457 int len;
5458 int first = FALSE;
5459 long num;
5460
5461 *str = skipwhite(*str);
5462 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
5463 {
5464 vim_str2nr(*str, NULL, &len, FALSE, FALSE, &num, NULL);
5465 *str += len;
5466 *num1 = (int)num;
5467 first = TRUE;
5468 }
5469 *str = skipwhite(*str);
5470 if (**str == ',') /* parse "to" part of range */
5471 {
5472 *str = skipwhite(*str + 1);
5473 vim_str2nr(*str, NULL, &len, FALSE, FALSE, &num, NULL);
5474 if (len > 0)
5475 {
5476 *num2 = (int)num;
5477 *str = skipwhite(*str + len);
5478 }
5479 else if (!first) /* no number given at all */
5480 return FAIL;
5481 }
5482 else if (first) /* only one number given */
5483 *num2 = *num1;
5484 return OK;
5485}
5486#endif
5487
5488#if defined(FEAT_CMDHIST) || defined(PROTO)
5489/*
5490 * :history command - print a history
5491 */
5492 void
5493ex_history(eap)
5494 exarg_T *eap;
5495{
5496 histentry_T *hist;
5497 int histype1 = HIST_CMD;
5498 int histype2 = HIST_CMD;
5499 int hisidx1 = 1;
5500 int hisidx2 = -1;
5501 int idx;
5502 int i, j, k;
5503 char_u *end;
5504 char_u *arg = eap->arg;
5505
5506 if (hislen == 0)
5507 {
5508 MSG(_("'history' option is zero"));
5509 return;
5510 }
5511
5512 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ','))
5513 {
5514 end = arg;
5515 while (ASCII_ISALPHA(*end)
5516 || vim_strchr((char_u *)":=@>/?", *end) != NULL)
5517 end++;
5518 i = *end;
5519 *end = NUL;
5520 histype1 = get_histtype(arg);
5521 if (histype1 == -1)
5522 {
5523 if (STRICMP(arg, "all") == 0)
5524 {
5525 histype1 = 0;
5526 histype2 = HIST_COUNT-1;
5527 }
5528 else
5529 {
5530 *end = i;
5531 EMSG(_(e_trailing));
5532 return;
5533 }
5534 }
5535 else
5536 histype2 = histype1;
5537 *end = i;
5538 }
5539 else
5540 end = arg;
5541 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL)
5542 {
5543 EMSG(_(e_trailing));
5544 return;
5545 }
5546
5547 for (; !got_int && histype1 <= histype2; ++histype1)
5548 {
5549 STRCPY(IObuff, "\n # ");
5550 STRCAT(STRCAT(IObuff, history_names[histype1]), " history");
5551 MSG_PUTS_TITLE(IObuff);
5552 idx = hisidx[histype1];
5553 hist = history[histype1];
5554 j = hisidx1;
5555 k = hisidx2;
5556 if (j < 0)
5557 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum;
5558 if (k < 0)
5559 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum;
5560 if (idx >= 0 && j <= k)
5561 for (i = idx + 1; !got_int; ++i)
5562 {
5563 if (i == hislen)
5564 i = 0;
5565 if (hist[i].hisstr != NULL
5566 && hist[i].hisnum >= j && hist[i].hisnum <= k)
5567 {
5568 msg_putchar('\n');
5569 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ',
5570 hist[i].hisnum);
5571 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10)
5572 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff),
5573 (int)Columns - 10);
5574 else
5575 STRCAT(IObuff, hist[i].hisstr);
5576 msg_outtrans(IObuff);
5577 out_flush();
5578 }
5579 if (i == idx)
5580 break;
5581 }
5582 }
5583}
5584#endif
5585
5586#if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO)
5587static char_u **viminfo_history[HIST_COUNT] = {NULL, NULL, NULL, NULL};
5588static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0};
5589static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0};
5590static int viminfo_add_at_front = FALSE;
5591
5592static int hist_type2char __ARGS((int type, int use_question));
5593
5594/*
5595 * Translate a history type number to the associated character.
5596 */
5597 static int
5598hist_type2char(type, use_question)
5599 int type;
5600 int use_question; /* use '?' instead of '/' */
5601{
5602 if (type == HIST_CMD)
5603 return ':';
5604 if (type == HIST_SEARCH)
5605 {
5606 if (use_question)
5607 return '?';
5608 else
5609 return '/';
5610 }
5611 if (type == HIST_EXPR)
5612 return '=';
5613 return '@';
5614}
5615
5616/*
5617 * Prepare for reading the history from the viminfo file.
5618 * This allocates history arrays to store the read history lines.
5619 */
5620 void
5621prepare_viminfo_history(asklen)
5622 int asklen;
5623{
5624 int i;
5625 int num;
5626 int type;
5627 int len;
5628
5629 init_history();
5630 viminfo_add_at_front = (asklen != 0);
5631 if (asklen > hislen)
5632 asklen = hislen;
5633
5634 for (type = 0; type < HIST_COUNT; ++type)
5635 {
5636 /*
5637 * Count the number of empty spaces in the history list. If there are
5638 * more spaces available than we request, then fill them up.
5639 */
5640 for (i = 0, num = 0; i < hislen; i++)
5641 if (history[type][i].hisstr == NULL)
5642 num++;
5643 len = asklen;
5644 if (num > len)
5645 len = num;
5646 if (len <= 0)
5647 viminfo_history[type] = NULL;
5648 else
5649 viminfo_history[type] =
5650 (char_u **)lalloc((long_u)(len * sizeof(char_u *)), FALSE);
5651 if (viminfo_history[type] == NULL)
5652 len = 0;
5653 viminfo_hislen[type] = len;
5654 viminfo_hisidx[type] = 0;
5655 }
5656}
5657
5658/*
5659 * Accept a line from the viminfo, store it in the history array when it's
5660 * new.
5661 */
5662 int
5663read_viminfo_history(virp)
5664 vir_T *virp;
5665{
5666 int type;
5667 long_u len;
5668 char_u *val;
5669 char_u *p;
5670
5671 type = hist_char2type(virp->vir_line[0]);
5672 if (viminfo_hisidx[type] < viminfo_hislen[type])
5673 {
5674 val = viminfo_readstring(virp, 1, TRUE);
5675 if (val != NULL && *val != NUL)
5676 {
5677 if (!in_history(type, val + (type == HIST_SEARCH),
5678 viminfo_add_at_front))
5679 {
5680 /* Need to re-allocate to append the separator byte. */
5681 len = STRLEN(val);
5682 p = lalloc(len + 2, TRUE);
5683 if (p != NULL)
5684 {
5685 if (type == HIST_SEARCH)
5686 {
5687 /* Search entry: Move the separator from the first
5688 * column to after the NUL. */
5689 mch_memmove(p, val + 1, (size_t)len);
5690 p[len] = (*val == ' ' ? NUL : *val);
5691 }
5692 else
5693 {
5694 /* Not a search entry: No separator in the viminfo
5695 * file, add a NUL separator. */
5696 mch_memmove(p, val, (size_t)len + 1);
5697 p[len + 1] = NUL;
5698 }
5699 viminfo_history[type][viminfo_hisidx[type]++] = p;
5700 }
5701 }
5702 }
5703 vim_free(val);
5704 }
5705 return viminfo_readline(virp);
5706}
5707
5708 void
5709finish_viminfo_history()
5710{
5711 int idx;
5712 int i;
5713 int type;
5714
5715 for (type = 0; type < HIST_COUNT; ++type)
5716 {
5717 if (history[type] == NULL)
5718 return;
5719 idx = hisidx[type] + viminfo_hisidx[type];
5720 if (idx >= hislen)
5721 idx -= hislen;
5722 else if (idx < 0)
5723 idx = hislen - 1;
5724 if (viminfo_add_at_front)
5725 hisidx[type] = idx;
5726 else
5727 {
5728 if (hisidx[type] == -1)
5729 hisidx[type] = hislen - 1;
5730 do
5731 {
5732 if (history[type][idx].hisstr != NULL)
5733 break;
5734 if (++idx == hislen)
5735 idx = 0;
5736 } while (idx != hisidx[type]);
5737 if (idx != hisidx[type] && --idx < 0)
5738 idx = hislen - 1;
5739 }
5740 for (i = 0; i < viminfo_hisidx[type]; i++)
5741 {
5742 vim_free(history[type][idx].hisstr);
5743 history[type][idx].hisstr = viminfo_history[type][i];
5744 if (--idx < 0)
5745 idx = hislen - 1;
5746 }
5747 idx += 1;
5748 idx %= hislen;
5749 for (i = 0; i < viminfo_hisidx[type]; i++)
5750 {
5751 history[type][idx++].hisnum = ++hisnum[type];
5752 idx %= hislen;
5753 }
5754 vim_free(viminfo_history[type]);
5755 viminfo_history[type] = NULL;
5756 }
5757}
5758
5759 void
5760write_viminfo_history(fp)
5761 FILE *fp;
5762{
5763 int i;
5764 int type;
5765 int num_saved;
5766 char_u *p;
5767 int c;
5768
5769 init_history();
5770 if (hislen == 0)
5771 return;
5772 for (type = 0; type < HIST_COUNT; ++type)
5773 {
5774 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE));
5775 if (num_saved == 0)
5776 continue;
5777 if (num_saved < 0) /* Use default */
5778 num_saved = hislen;
5779 fprintf(fp, _("\n# %s History (newest to oldest):\n"),
5780 type == HIST_CMD ? _("Command Line") :
5781 type == HIST_SEARCH ? _("Search String") :
5782 type == HIST_EXPR ? _("Expression") :
5783 _("Input Line"));
5784 if (num_saved > hislen)
5785 num_saved = hislen;
5786 i = hisidx[type];
5787 if (i >= 0)
5788 while (num_saved--)
5789 {
5790 p = history[type][i].hisstr;
5791 if (p != NULL)
5792 {
Bram Moolenaar75c50c42005-06-04 22:06:24 +00005793 fputc(hist_type2char(type, TRUE), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005794 /* For the search history: put the separator in the second
5795 * column; use a space if there isn't one. */
5796 if (type == HIST_SEARCH)
5797 {
5798 c = p[STRLEN(p) + 1];
5799 putc(c == NUL ? ' ' : c, fp);
5800 }
5801 viminfo_writestring(fp, p);
5802 }
5803 if (--i < 0)
5804 i = hislen - 1;
5805 }
5806 }
5807}
5808#endif /* FEAT_VIMINFO */
5809
5810#if defined(FEAT_FKMAP) || defined(PROTO)
5811/*
5812 * Write a character at the current cursor+offset position.
5813 * It is directly written into the command buffer block.
5814 */
5815 void
5816cmd_pchar(c, offset)
5817 int c, offset;
5818{
5819 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
5820 {
5821 EMSG(_("E198: cmd_pchar beyond the command length"));
5822 return;
5823 }
5824 ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c;
5825 ccline.cmdbuff[ccline.cmdlen] = NUL;
5826}
5827
5828 int
5829cmd_gchar(offset)
5830 int offset;
5831{
5832 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
5833 {
5834 /* EMSG(_("cmd_gchar beyond the command length")); */
5835 return NUL;
5836 }
5837 return (int)ccline.cmdbuff[ccline.cmdpos + offset];
5838}
5839#endif
5840
5841#if defined(FEAT_CMDWIN) || defined(PROTO)
5842/*
5843 * Open a window on the current command line and history. Allow editing in
5844 * the window. Returns when the window is closed.
5845 * Returns:
5846 * CR if the command is to be executed
5847 * Ctrl_C if it is to be abandoned
5848 * K_IGNORE if editing continues
5849 */
5850 static int
5851ex_window()
5852{
5853 struct cmdline_info save_ccline;
5854 buf_T *old_curbuf = curbuf;
5855 win_T *old_curwin = curwin;
5856 buf_T *bp;
5857 win_T *wp;
5858 int i;
5859 linenr_T lnum;
5860 int histtype;
5861 garray_T winsizes;
5862 char_u typestr[2];
5863 int save_restart_edit = restart_edit;
5864 int save_State = State;
5865 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00005866#ifdef FEAT_RIGHTLEFT
5867 int save_cmdmsg_rl = cmdmsg_rl;
5868#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005869
5870 /* Can't do this recursively. Can't do it when typing a password. */
5871 if (cmdwin_type != 0
5872# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
5873 || cmdline_star > 0
5874# endif
5875 )
5876 {
5877 beep_flush();
5878 return K_IGNORE;
5879 }
5880
5881 /* Save current window sizes. */
5882 win_size_save(&winsizes);
5883
5884# ifdef FEAT_AUTOCMD
5885 /* Don't execute autocommands while creating the window. */
5886 ++autocmd_block;
5887# endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005888 /* don't use a new tab page */
5889 cmdmod.tab = 0;
5890
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891 /* Create a window for the command-line buffer. */
5892 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
5893 {
5894 beep_flush();
5895 return K_IGNORE;
5896 }
5897 cmdwin_type = ccline.cmdfirstc;
5898 if (cmdwin_type == NUL)
5899 cmdwin_type = '-';
5900
5901 /* Create the command-line buffer empty. */
5902 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE);
5903 (void)setfname(curbuf, (char_u *)"command-line", NULL, TRUE);
5904 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
5905 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
5906 curbuf->b_p_ma = TRUE;
5907# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00005908 curwin->w_p_rl = cmdmsg_rl;
5909 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910# endif
5911# ifdef FEAT_SCROLLBIND
5912 curwin->w_p_scb = FALSE;
5913# endif
5914
5915# ifdef FEAT_AUTOCMD
5916 /* Do execute autocommands for setting the filetype (load syntax). */
5917 --autocmd_block;
5918# endif
5919
Bram Moolenaar46152342005-09-07 21:18:43 +00005920 /* Showing the prompt may have set need_wait_return, reset it. */
5921 need_wait_return = FALSE;
5922
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923 histtype = hist_char2type(ccline.cmdfirstc);
5924 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
5925 {
5926 if (p_wc == TAB)
5927 {
5928 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
5929 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
5930 }
5931 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
5932 }
5933
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00005934 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
5935 * sets 'textwidth' to 78). */
5936 curbuf->b_p_tw = 0;
5937
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938 /* Fill the buffer with the history. */
5939 init_history();
5940 if (hislen > 0)
5941 {
5942 i = hisidx[histtype];
5943 if (i >= 0)
5944 {
5945 lnum = 0;
5946 do
5947 {
5948 if (++i == hislen)
5949 i = 0;
5950 if (history[histtype][i].hisstr != NULL)
5951 ml_append(lnum++, history[histtype][i].hisstr,
5952 (colnr_T)0, FALSE);
5953 }
5954 while (i != hisidx[histtype]);
5955 }
5956 }
5957
5958 /* Replace the empty last line with the current command-line and put the
5959 * cursor there. */
5960 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
5961 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5962 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00005963 changed_line_abv_curs();
5964 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00005965 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966
5967 /* Save the command line info, can be used recursively. */
5968 save_ccline = ccline;
5969 ccline.cmdbuff = NULL;
5970 ccline.cmdprompt = NULL;
5971
5972 /* No Ex mode here! */
5973 exmode_active = 0;
5974
5975 State = NORMAL;
5976# ifdef FEAT_MOUSE
5977 setmouse();
5978# endif
5979
5980# ifdef FEAT_AUTOCMD
5981 /* Trigger CmdwinEnter autocommands. */
5982 typestr[0] = cmdwin_type;
5983 typestr[1] = NUL;
5984 apply_autocmds(EVENT_CMDWINENTER, typestr, typestr, FALSE, curbuf);
5985# endif
5986
5987 i = RedrawingDisabled;
5988 RedrawingDisabled = 0;
5989
5990 /*
5991 * Call the main loop until <CR> or CTRL-C is typed.
5992 */
5993 cmdwin_result = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005994 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005995
5996 RedrawingDisabled = i;
5997
5998# ifdef FEAT_AUTOCMD
5999 /* Trigger CmdwinLeave autocommands. */
6000 apply_autocmds(EVENT_CMDWINLEAVE, typestr, typestr, FALSE, curbuf);
6001# endif
6002
6003 /* Restore the comand line info. */
6004 ccline = save_ccline;
6005 cmdwin_type = 0;
6006
6007 exmode_active = save_exmode;
6008
6009 /* Safety check: The old window or buffer was deleted: It's a a bug when
6010 * this happens! */
6011 if (!win_valid(old_curwin) || !buf_valid(old_curbuf))
6012 {
6013 cmdwin_result = Ctrl_C;
6014 EMSG(_("E199: Active window or buffer deleted"));
6015 }
6016 else
6017 {
6018# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
6019 /* autocmds may abort script processing */
6020 if (aborting() && cmdwin_result != K_IGNORE)
6021 cmdwin_result = Ctrl_C;
6022# endif
6023 /* Set the new command line from the cmdline buffer. */
6024 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00006025 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006026 {
Bram Moolenaar46152342005-09-07 21:18:43 +00006027 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
6028
6029 if (histtype == HIST_CMD)
6030 {
6031 /* Execute the command directly. */
6032 ccline.cmdbuff = vim_strsave((char_u *)p);
6033 cmdwin_result = CAR;
6034 }
6035 else
6036 {
6037 /* First need to cancel what we were doing. */
6038 ccline.cmdbuff = NULL;
6039 stuffcharReadbuff(':');
6040 stuffReadbuff((char_u *)p);
6041 stuffcharReadbuff(CAR);
6042 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006043 }
6044 else if (cmdwin_result == K_XF2) /* :qa typed */
6045 {
6046 ccline.cmdbuff = vim_strsave((char_u *)"qa");
6047 cmdwin_result = CAR;
6048 }
6049 else
6050 ccline.cmdbuff = vim_strsave(ml_get_curline());
6051 if (ccline.cmdbuff == NULL)
6052 cmdwin_result = Ctrl_C;
6053 else
6054 {
6055 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
6056 ccline.cmdbufflen = ccline.cmdlen + 1;
6057 ccline.cmdpos = curwin->w_cursor.col;
6058 if (ccline.cmdpos > ccline.cmdlen)
6059 ccline.cmdpos = ccline.cmdlen;
6060 if (cmdwin_result == K_IGNORE)
6061 {
6062 set_cmdspos_cursor();
6063 redrawcmd();
6064 }
6065 }
6066
6067# ifdef FEAT_AUTOCMD
6068 /* Don't execute autocommands while deleting the window. */
6069 ++autocmd_block;
6070# endif
6071 wp = curwin;
6072 bp = curbuf;
6073 win_goto(old_curwin);
6074 win_close(wp, TRUE);
6075 close_buffer(NULL, bp, DOBUF_WIPE);
6076
6077 /* Restore window sizes. */
6078 win_size_restore(&winsizes);
6079
6080# ifdef FEAT_AUTOCMD
6081 --autocmd_block;
6082# endif
6083 }
6084
6085 ga_clear(&winsizes);
6086 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00006087# ifdef FEAT_RIGHTLEFT
6088 cmdmsg_rl = save_cmdmsg_rl;
6089# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090
6091 State = save_State;
6092# ifdef FEAT_MOUSE
6093 setmouse();
6094# endif
6095
6096 return cmdwin_result;
6097}
6098#endif /* FEAT_CMDWIN */
6099
6100/*
6101 * Used for commands that either take a simple command string argument, or:
6102 * cmd << endmarker
6103 * {script}
6104 * endmarker
6105 * Returns a pointer to allocated memory with {script} or NULL.
6106 */
6107 char_u *
6108script_get(eap, cmd)
6109 exarg_T *eap;
6110 char_u *cmd;
6111{
6112 char_u *theline;
6113 char *end_pattern = NULL;
6114 char dot[] = ".";
6115 garray_T ga;
6116
6117 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
6118 return NULL;
6119
6120 ga_init2(&ga, 1, 0x400);
6121
6122 if (cmd[2] != NUL)
6123 end_pattern = (char *)skipwhite(cmd + 2);
6124 else
6125 end_pattern = dot;
6126
6127 for (;;)
6128 {
6129 theline = eap->getline(
6130#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00006131 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132#endif
6133 NUL, eap->cookie, 0);
6134
6135 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
6136 break;
6137
6138 ga_concat(&ga, theline);
6139 ga_append(&ga, '\n');
6140 vim_free(theline);
6141 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00006142 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006143
6144 return (char_u *)ga.ga_data;
6145}