blob: ec6ee567a3d3a85134616cad403eed1072568946 [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 {
677 ccline.cmdlen = STRLEN(p);
678 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 Moolenaar071d4272004-06-13 20:20:40 +00001945 static int
1946cmdline_charsize(idx)
1947 int idx;
1948{
1949#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
1950 if (cmdline_star > 0) /* showing '*', always 1 position */
1951 return 1;
1952#endif
1953 return ptr2cells(ccline.cmdbuff + idx);
1954}
1955
1956/*
1957 * Compute the offset of the cursor on the command line for the prompt and
1958 * indent.
1959 */
1960 static void
1961set_cmdspos()
1962{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001963 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964 ccline.cmdspos = 1 + ccline.cmdindent;
1965 else
1966 ccline.cmdspos = 0 + ccline.cmdindent;
1967}
1968
1969/*
1970 * Compute the screen position for the cursor on the command line.
1971 */
1972 static void
1973set_cmdspos_cursor()
1974{
1975 int i, m, c;
1976
1977 set_cmdspos();
1978 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001979 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001981 if (m < 0) /* overflow, Columns or Rows at weird value */
1982 m = MAXCOL;
1983 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 else
1985 m = MAXCOL;
1986 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
1987 {
1988 c = cmdline_charsize(i);
1989#ifdef FEAT_MBYTE
1990 /* Count ">" for double-wide multi-byte char that doesn't fit. */
1991 if (has_mbyte)
1992 correct_cmdspos(i, c);
1993#endif
1994 /* If the cmdline doesn't fit, put cursor on last visible char. */
1995 if ((ccline.cmdspos += c) >= m)
1996 {
1997 ccline.cmdpos = i - 1;
1998 ccline.cmdspos -= c;
1999 break;
2000 }
2001#ifdef FEAT_MBYTE
2002 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002003 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004#endif
2005 }
2006}
2007
2008#ifdef FEAT_MBYTE
2009/*
2010 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2011 * character that doesn't fit, so that a ">" must be displayed.
2012 */
2013 static void
2014correct_cmdspos(idx, cells)
2015 int idx;
2016 int cells;
2017{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002018 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2020 && ccline.cmdspos % Columns + cells > Columns)
2021 ccline.cmdspos++;
2022}
2023#endif
2024
2025/*
2026 * Get an Ex command line for the ":" command.
2027 */
2028/* ARGSUSED */
2029 char_u *
2030getexline(c, dummy, indent)
2031 int c; /* normally ':', NUL for ":append" */
2032 void *dummy; /* cookie not used */
2033 int indent; /* indent for inside conditionals */
2034{
2035 /* When executing a register, remove ':' that's in front of each line. */
2036 if (exec_from_reg && vpeekc() == ':')
2037 (void)vgetc();
2038 return getcmdline(c, 1L, indent);
2039}
2040
2041/*
2042 * Get an Ex command line for Ex mode.
2043 * In Ex mode we only use the OS supplied line editing features and no
2044 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002045 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 */
2047/* ARGSUSED */
2048 char_u *
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002049getexmodeline(promptc, dummy, indent)
2050 int promptc; /* normally ':', NUL for ":append" and '?' for
2051 :s prompt */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 void *dummy; /* cookie not used */
2053 int indent; /* indent for inside conditionals */
2054{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002055 garray_T line_ga;
2056 char_u *pend;
2057 int startcol = 0;
2058 int c1;
2059 int escaped = FALSE; /* CTRL-V typed */
2060 int vcol = 0;
2061 char_u *p;
2062 int prev_char = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063
2064 /* Switch cursor on now. This avoids that it happens after the "\n", which
2065 * confuses the system function that computes tabstops. */
2066 cursor_on();
2067
2068 /* always start in column 0; write a newline if necessary */
2069 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002070 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002072 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002074 /* indent that is only displayed, not in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002075 if (p_prompt)
2076 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 while (indent-- > 0)
2078 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 }
2081
2082 ga_init2(&line_ga, 1, 30);
2083
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002084 /* autoindent for :insert and :append is in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002085 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002086 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002087 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002088 while (indent >= 8)
2089 {
2090 ga_append(&line_ga, TAB);
2091 msg_puts((char_u *)" ");
2092 indent -= 8;
2093 }
2094 while (indent-- > 0)
2095 {
2096 ga_append(&line_ga, ' ');
2097 msg_putchar(' ');
2098 }
2099 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002100 ++no_mapping;
2101 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002102
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 /*
2104 * Get the line, one character at a time.
2105 */
2106 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002107 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 {
2109 if (ga_grow(&line_ga, 40) == FAIL)
2110 break;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002111 pend = (char_u *)line_ga.ga_data + line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002113 /* Get one character at a time. Don't use inchar(), it can't handle
2114 * special characters. */
2115 c1 = vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116
2117 /*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002118 * Handle line editing.
2119 * Previously this was left to the system, putting the terminal in
2120 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002122 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002124 msg_putchar('\n');
2125 break;
2126 }
2127
2128 if (!escaped)
2129 {
2130 /* CR typed means "enter", which is NL */
2131 if (c1 == '\r')
2132 c1 = '\n';
2133
2134 if (c1 == BS || c1 == K_BS
2135 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002137 if (line_ga.ga_len > 0)
2138 {
2139 --line_ga.ga_len;
2140 goto redraw;
2141 }
2142 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143 }
2144
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002145 if (c1 == Ctrl_U)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002147 msg_col = startcol;
2148 msg_clr_eos();
2149 line_ga.ga_len = 0;
2150 continue;
2151 }
2152
2153 if (c1 == Ctrl_T)
2154 {
2155 p = (char_u *)line_ga.ga_data;
2156 p[line_ga.ga_len] = NUL;
2157 indent = get_indent_str(p, 8);
2158 indent += curbuf->b_p_sw - indent % curbuf->b_p_sw;
2159add_indent:
2160 while (get_indent_str(p, 8) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002162 char_u *s = skipwhite(p);
2163
2164 ga_grow(&line_ga, 1);
2165 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2166 *s = ' ';
2167 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002169redraw:
2170 /* redraw the line */
2171 msg_col = startcol;
2172 windgoto(msg_row, msg_col);
2173 vcol = 0;
2174 for (p = (char_u *)line_ga.ga_data;
2175 p < (char_u *)line_ga.ga_data + line_ga.ga_len; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002177 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002179 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002181 msg_putchar(' ');
2182 } while (++vcol % 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002184 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002186 msg_outtrans_len(p, 1);
2187 vcol += char2cells(*p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 }
2189 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002190 msg_clr_eos();
2191 continue;
2192 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002194 if (c1 == Ctrl_D)
2195 {
2196 /* Delete one shiftwidth. */
2197 p = (char_u *)line_ga.ga_data;
2198 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002200 if (prev_char == '^')
2201 ex_keep_indent = TRUE;
2202 indent = 0;
2203 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204 }
2205 else
2206 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002207 p[line_ga.ga_len] = NUL;
2208 indent = get_indent_str(p, 8);
2209 --indent;
2210 indent -= indent % curbuf->b_p_sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002212 while (get_indent_str(p, 8) > indent)
2213 {
2214 char_u *s = skipwhite(p);
2215
2216 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2217 --line_ga.ga_len;
2218 }
2219 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002221
2222 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2223 {
2224 escaped = TRUE;
2225 continue;
2226 }
2227
2228 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
2229 if (IS_SPECIAL(c1))
2230 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002232
2233 if (IS_SPECIAL(c1))
2234 c1 = '?';
2235 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
2236 prev_char = c1;
2237 if (c1 == '\n')
2238 msg_putchar('\n');
2239 else if (c1 == TAB)
2240 {
2241 /* Don't use chartabsize(), 'ts' can be different */
2242 do
2243 {
2244 msg_putchar(' ');
2245 } while (++vcol % 8);
2246 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002249 msg_outtrans_len(
2250 ((char_u *)line_ga.ga_data) + line_ga.ga_len, 1);
2251 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002253 ++line_ga.ga_len;
2254 escaped = FALSE;
2255
2256 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002257 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002258
2259 /* we are done when a NL is entered, but not when it comes after a
2260 * backslash */
2261 if (line_ga.ga_len > 0 && pend[-1] == '\n'
2262 && (line_ga.ga_len <= 1 || pend[-2] != '\\'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 --line_ga.ga_len;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002265 --pend;
2266 *pend = NUL;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002267 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002268 }
2269 }
2270
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002271 --no_mapping;
2272 --allow_keys;
2273
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 /* make following messages go to the next line */
2275 msg_didout = FALSE;
2276 msg_col = 0;
2277 if (msg_row < Rows - 1)
2278 ++msg_row;
2279 emsg_on_display = FALSE; /* don't want ui_delay() */
2280
2281 if (got_int)
2282 ga_clear(&line_ga);
2283
2284 return (char_u *)line_ga.ga_data;
2285}
2286
Bram Moolenaare344bea2005-09-01 20:46:49 +00002287# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
2288 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289/*
2290 * Return TRUE if ccline.overstrike is on.
2291 */
2292 int
2293cmdline_overstrike()
2294{
2295 return ccline.overstrike;
2296}
2297
2298/*
2299 * Return TRUE if the cursor is at the end of the cmdline.
2300 */
2301 int
2302cmdline_at_end()
2303{
2304 return (ccline.cmdpos >= ccline.cmdlen);
2305}
2306#endif
2307
Bram Moolenaar9372a112005-12-06 19:59:18 +00002308#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309/*
2310 * Return the virtual column number at the current cursor position.
2311 * This is used by the IM code to obtain the start of the preedit string.
2312 */
2313 colnr_T
2314cmdline_getvcol_cursor()
2315{
2316 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
2317 return MAXCOL;
2318
2319# ifdef FEAT_MBYTE
2320 if (has_mbyte)
2321 {
2322 colnr_T col;
2323 int i = 0;
2324
2325 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002326 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327
2328 return col;
2329 }
2330 else
2331# endif
2332 return ccline.cmdpos;
2333}
2334#endif
2335
2336#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2337/*
2338 * If part of the command line is an IM preedit string, redraw it with
2339 * IM feedback attributes. The cursor position is restored after drawing.
2340 */
2341 static void
2342redrawcmd_preedit()
2343{
2344 if ((State & CMDLINE)
2345 && xic != NULL
2346 && im_get_status()
2347 && !p_imdisable
2348 && im_is_preediting())
2349 {
2350 int cmdpos = 0;
2351 int cmdspos;
2352 int old_row;
2353 int old_col;
2354 colnr_T col;
2355
2356 old_row = msg_row;
2357 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002358 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359
2360# ifdef FEAT_MBYTE
2361 if (has_mbyte)
2362 {
2363 for (col = 0; col < preedit_start_col
2364 && cmdpos < ccline.cmdlen; ++col)
2365 {
2366 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002367 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 }
2369 }
2370 else
2371# endif
2372 {
2373 cmdspos += preedit_start_col;
2374 cmdpos += preedit_start_col;
2375 }
2376
2377 msg_row = cmdline_row + (cmdspos / (int)Columns);
2378 msg_col = cmdspos % (int)Columns;
2379 if (msg_row >= Rows)
2380 msg_row = Rows - 1;
2381
2382 for (col = 0; cmdpos < ccline.cmdlen; ++col)
2383 {
2384 int char_len;
2385 int char_attr;
2386
2387 char_attr = im_get_feedback_attr(col);
2388 if (char_attr < 0)
2389 break; /* end of preedit string */
2390
2391# ifdef FEAT_MBYTE
2392 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002393 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 else
2395# endif
2396 char_len = 1;
2397
2398 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
2399 cmdpos += char_len;
2400 }
2401
2402 msg_row = old_row;
2403 msg_col = old_col;
2404 }
2405}
2406#endif /* FEAT_XIM && FEAT_GUI_GTK */
2407
2408/*
2409 * Allocate a new command line buffer.
2410 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
2411 * Returns the new value of ccline.cmdbuff and ccline.cmdbufflen.
2412 */
2413 static void
2414alloc_cmdbuff(len)
2415 int len;
2416{
2417 /*
2418 * give some extra space to avoid having to allocate all the time
2419 */
2420 if (len < 80)
2421 len = 100;
2422 else
2423 len += 20;
2424
2425 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */
2426 ccline.cmdbufflen = len;
2427}
2428
2429/*
2430 * Re-allocate the command line to length len + something extra.
2431 * return FAIL for failure, OK otherwise
2432 */
2433 static int
2434realloc_cmdbuff(len)
2435 int len;
2436{
2437 char_u *p;
2438
2439 p = ccline.cmdbuff;
2440 alloc_cmdbuff(len); /* will get some more */
2441 if (ccline.cmdbuff == NULL) /* out of memory */
2442 {
2443 ccline.cmdbuff = p; /* keep the old one */
2444 return FAIL;
2445 }
2446 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen + 1);
2447 vim_free(p);
2448 return OK;
2449}
2450
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002451#if defined(FEAT_ARABIC) || defined(PROTO)
2452static char_u *arshape_buf = NULL;
2453
2454# if defined(EXITFREE) || defined(PROTO)
2455 void
2456free_cmdline_buf()
2457{
2458 vim_free(arshape_buf);
2459}
2460# endif
2461#endif
2462
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463/*
2464 * Draw part of the cmdline at the current cursor position. But draw stars
2465 * when cmdline_star is TRUE.
2466 */
2467 static void
2468draw_cmdline(start, len)
2469 int start;
2470 int len;
2471{
2472#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2473 int i;
2474
2475 if (cmdline_star > 0)
2476 for (i = 0; i < len; ++i)
2477 {
2478 msg_putchar('*');
2479# ifdef FEAT_MBYTE
2480 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002481 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482# endif
2483 }
2484 else
2485#endif
2486#ifdef FEAT_ARABIC
2487 if (p_arshape && !p_tbidi && enc_utf8 && len > 0)
2488 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 static int buflen = 0;
2490 char_u *p;
2491 int j;
2492 int newlen = 0;
2493 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00002494 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 int prev_c = 0;
2496 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002497 int u8c;
2498 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500
2501 /*
2502 * Do arabic shaping into a temporary buffer. This is very
2503 * inefficient!
2504 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002505 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002506 {
2507 /* Re-allocate the buffer. We keep it around to avoid a lot of
2508 * alloc()/free() calls. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002509 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002510 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002511 arshape_buf = alloc(buflen);
2512 if (arshape_buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 return; /* out of memory */
2514 }
2515
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002516 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
2517 {
2518 /* Prepend a space to draw the leading composing char on. */
2519 arshape_buf[0] = ' ';
2520 newlen = 1;
2521 }
2522
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 for (j = start; j < start + len; j += mb_l)
2524 {
2525 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002526 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002527 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528 if (ARABIC_CHAR(u8c))
2529 {
2530 /* Do Arabic shaping. */
2531 if (cmdmsg_rl)
2532 {
2533 /* displaying from right to left */
2534 pc = prev_c;
2535 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002536 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 if (j + mb_l >= start + len)
2538 nc = NUL;
2539 else
2540 nc = utf_ptr2char(p + mb_l);
2541 }
2542 else
2543 {
2544 /* displaying from left to right */
2545 if (j + mb_l >= start + len)
2546 pc = NUL;
2547 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002548 {
2549 int pcc[MAX_MCO];
2550
2551 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002553 pc1 = pcc[0];
2554 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555 nc = prev_c;
2556 }
2557 prev_c = u8c;
2558
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002559 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002561 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002562 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002564 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
2565 if (u8cc[1] != 0)
2566 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002567 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568 }
2569 }
2570 else
2571 {
2572 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002573 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 newlen += mb_l;
2575 }
2576 }
2577
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002578 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 }
2580 else
2581#endif
2582 msg_outtrans_len(ccline.cmdbuff + start, len);
2583}
2584
2585/*
2586 * Put a character on the command line. Shifts the following text to the
2587 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
2588 * "c" must be printable (fit in one display cell)!
2589 */
2590 void
2591putcmdline(c, shift)
2592 int c;
2593 int shift;
2594{
2595 if (cmd_silent)
2596 return;
2597 msg_no_more = TRUE;
2598 msg_putchar(c);
2599 if (shift)
2600 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2601 msg_no_more = FALSE;
2602 cursorcmd();
2603}
2604
2605/*
2606 * Undo a putcmdline(c, FALSE).
2607 */
2608 void
2609unputcmdline()
2610{
2611 if (cmd_silent)
2612 return;
2613 msg_no_more = TRUE;
2614 if (ccline.cmdlen == ccline.cmdpos)
2615 msg_putchar(' ');
2616 else
2617 draw_cmdline(ccline.cmdpos, 1);
2618 msg_no_more = FALSE;
2619 cursorcmd();
2620}
2621
2622/*
2623 * Put the given string, of the given length, onto the command line.
2624 * If len is -1, then STRLEN() is used to calculate the length.
2625 * If 'redraw' is TRUE then the new part of the command line, and the remaining
2626 * part will be redrawn, otherwise it will not. If this function is called
2627 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
2628 * called afterwards.
2629 */
2630 int
2631put_on_cmdline(str, len, redraw)
2632 char_u *str;
2633 int len;
2634 int redraw;
2635{
2636 int retval;
2637 int i;
2638 int m;
2639 int c;
2640
2641 if (len < 0)
2642 len = (int)STRLEN(str);
2643
2644 /* Check if ccline.cmdbuff needs to be longer */
2645 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
2646 retval = realloc_cmdbuff(ccline.cmdlen + len);
2647 else
2648 retval = OK;
2649 if (retval == OK)
2650 {
2651 if (!ccline.overstrike)
2652 {
2653 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2654 ccline.cmdbuff + ccline.cmdpos,
2655 (size_t)(ccline.cmdlen - ccline.cmdpos));
2656 ccline.cmdlen += len;
2657 }
2658 else
2659 {
2660#ifdef FEAT_MBYTE
2661 if (has_mbyte)
2662 {
2663 /* Count nr of characters in the new string. */
2664 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002665 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 ++m;
2667 /* Count nr of bytes in cmdline that are overwritten by these
2668 * characters. */
2669 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002670 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671 --m;
2672 if (i < ccline.cmdlen)
2673 {
2674 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2675 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
2676 ccline.cmdlen += ccline.cmdpos + len - i;
2677 }
2678 else
2679 ccline.cmdlen = ccline.cmdpos + len;
2680 }
2681 else
2682#endif
2683 if (ccline.cmdpos + len > ccline.cmdlen)
2684 ccline.cmdlen = ccline.cmdpos + len;
2685 }
2686 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
2687 ccline.cmdbuff[ccline.cmdlen] = NUL;
2688
2689#ifdef FEAT_MBYTE
2690 if (enc_utf8)
2691 {
2692 /* When the inserted text starts with a composing character,
2693 * backup to the character before it. There could be two of them.
2694 */
2695 i = 0;
2696 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
2697 while (ccline.cmdpos > 0 && utf_iscomposing(c))
2698 {
2699 i = (*mb_head_off)(ccline.cmdbuff,
2700 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
2701 ccline.cmdpos -= i;
2702 len += i;
2703 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
2704 }
2705# ifdef FEAT_ARABIC
2706 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
2707 {
2708 /* Check the previous character for Arabic combining pair. */
2709 i = (*mb_head_off)(ccline.cmdbuff,
2710 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
2711 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
2712 + ccline.cmdpos - i), c))
2713 {
2714 ccline.cmdpos -= i;
2715 len += i;
2716 }
2717 else
2718 i = 0;
2719 }
2720# endif
2721 if (i != 0)
2722 {
2723 /* Also backup the cursor position. */
2724 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
2725 ccline.cmdspos -= i;
2726 msg_col -= i;
2727 if (msg_col < 0)
2728 {
2729 msg_col += Columns;
2730 --msg_row;
2731 }
2732 }
2733 }
2734#endif
2735
2736 if (redraw && !cmd_silent)
2737 {
2738 msg_no_more = TRUE;
2739 i = cmdline_row;
2740 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2741 /* Avoid clearing the rest of the line too often. */
2742 if (cmdline_row != i || ccline.overstrike)
2743 msg_clr_eos();
2744 msg_no_more = FALSE;
2745 }
2746#ifdef FEAT_FKMAP
2747 /*
2748 * If we are in Farsi command mode, the character input must be in
2749 * Insert mode. So do not advance the cmdpos.
2750 */
2751 if (!cmd_fkmap)
2752#endif
2753 {
2754 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002755 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002757 if (m < 0) /* overflow, Columns or Rows at weird value */
2758 m = MAXCOL;
2759 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760 else
2761 m = MAXCOL;
2762 for (i = 0; i < len; ++i)
2763 {
2764 c = cmdline_charsize(ccline.cmdpos);
2765#ifdef FEAT_MBYTE
2766 /* count ">" for a double-wide char that doesn't fit. */
2767 if (has_mbyte)
2768 correct_cmdspos(ccline.cmdpos, c);
2769#endif
2770 /* Stop cursor at the end of the screen */
2771 if (ccline.cmdspos + c >= m)
2772 break;
2773 ccline.cmdspos += c;
2774#ifdef FEAT_MBYTE
2775 if (has_mbyte)
2776 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002777 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778 if (c > len - i - 1)
2779 c = len - i - 1;
2780 ccline.cmdpos += c;
2781 i += c;
2782 }
2783#endif
2784 ++ccline.cmdpos;
2785 }
2786 }
2787 }
2788 if (redraw)
2789 msg_check();
2790 return retval;
2791}
2792
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002793static struct cmdline_info prev_ccline;
2794static int prev_ccline_used = FALSE;
2795
2796/*
2797 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
2798 * and overwrite it. But get_cmdline_str() may need it, thus make it
2799 * available globally in prev_ccline.
2800 */
2801 static void
2802save_cmdline(ccp)
2803 struct cmdline_info *ccp;
2804{
2805 if (!prev_ccline_used)
2806 {
2807 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info));
2808 prev_ccline_used = TRUE;
2809 }
2810 *ccp = prev_ccline;
2811 prev_ccline = ccline;
2812 ccline.cmdbuff = NULL;
2813 ccline.cmdprompt = NULL;
2814}
2815
2816/*
2817 * Resture ccline after it has been saved with save_cmdline().
2818 */
2819 static void
2820restore_cmdline(ccp)
2821 struct cmdline_info *ccp;
2822{
2823 ccline = prev_ccline;
2824 prev_ccline = *ccp;
2825}
2826
Bram Moolenaar8299df92004-07-10 09:47:34 +00002827/*
2828 * paste a yank register into the command line.
2829 * used by CTRL-R command in command-line mode
2830 * insert_reg() can't be used here, because special characters from the
2831 * register contents will be interpreted as commands.
2832 *
2833 * return FAIL for failure, OK otherwise
2834 */
2835 static int
2836cmdline_paste(regname, literally)
2837 int regname;
2838 int literally; /* Insert text literally instead of "as typed" */
2839{
2840 long i;
2841 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002842 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00002843 int allocated;
2844 struct cmdline_info save_ccline;
2845
2846 /* check for valid regname; also accept special characters for CTRL-R in
2847 * the command line */
2848 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
2849 && regname != Ctrl_A && !valid_yank_reg(regname, FALSE))
2850 return FAIL;
2851
2852 /* A register containing CTRL-R can cause an endless loop. Allow using
2853 * CTRL-C to break the loop. */
2854 line_breakcheck();
2855 if (got_int)
2856 return FAIL;
2857
2858#ifdef FEAT_CLIPBOARD
2859 regname = may_get_selection(regname);
2860#endif
2861
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002862 /* Need to save and restore ccline. And set "textlock" to avoid nasty
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002863 * things like going to another buffer when evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002864 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002865 ++textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00002866 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002867 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002868 restore_cmdline(&save_ccline);
Bram Moolenaar8299df92004-07-10 09:47:34 +00002869
2870 if (i)
2871 {
2872 /* Got the value of a special register in "arg". */
2873 if (arg == NULL)
2874 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002875
2876 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
2877 * part of the word. */
2878 p = arg;
2879 if (p_is && regname == Ctrl_W)
2880 {
2881 char_u *w;
2882 int len;
2883
2884 /* Locate start of last word in the cmd buffer. */
2885 for (w = ccline.cmdbuff + ccline.cmdlen; w > ccline.cmdbuff; )
2886 {
2887#ifdef FEAT_MBYTE
2888 if (has_mbyte)
2889 {
2890 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
2891 if (!vim_iswordc(mb_ptr2char(w - len)))
2892 break;
2893 w -= len;
2894 }
2895 else
2896#endif
2897 {
2898 if (!vim_iswordc(w[-1]))
2899 break;
2900 --w;
2901 }
2902 }
2903 len = (ccline.cmdbuff + ccline.cmdlen) - w;
2904 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
2905 p += len;
2906 }
2907
2908 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00002909 if (allocated)
2910 vim_free(arg);
2911 return OK;
2912 }
2913
2914 return cmdline_paste_reg(regname, literally);
2915}
2916
2917/*
2918 * Put a string on the command line.
2919 * When "literally" is TRUE, insert literally.
2920 * When "literally" is FALSE, insert as typed, but don't leave the command
2921 * line.
2922 */
2923 void
2924cmdline_paste_str(s, literally)
2925 char_u *s;
2926 int literally;
2927{
2928 int c, cv;
2929
2930 if (literally)
2931 put_on_cmdline(s, -1, TRUE);
2932 else
2933 while (*s != NUL)
2934 {
2935 cv = *s;
2936 if (cv == Ctrl_V && s[1])
2937 ++s;
2938#ifdef FEAT_MBYTE
2939 if (has_mbyte)
2940 {
2941 c = mb_ptr2char(s);
2942 s += mb_char2len(c);
2943 }
2944 else
2945#endif
2946 c = *s++;
2947 if (cv == Ctrl_V || c == ESC || c == Ctrl_C || c == CAR || c == NL
2948#ifdef UNIX
2949 || c == intr_char
2950#endif
2951 || (c == Ctrl_BSL && *s == Ctrl_N))
2952 stuffcharReadbuff(Ctrl_V);
2953 stuffcharReadbuff(c);
2954 }
2955}
2956
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957#ifdef FEAT_WILDMENU
2958/*
2959 * Delete characters on the command line, from "from" to the current
2960 * position.
2961 */
2962 static void
2963cmdline_del(from)
2964 int from;
2965{
2966 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
2967 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
2968 ccline.cmdlen -= ccline.cmdpos - from;
2969 ccline.cmdpos = from;
2970}
2971#endif
2972
2973/*
2974 * this fuction is called when the screen size changes and with incremental
2975 * search
2976 */
2977 void
2978redrawcmdline()
2979{
2980 if (cmd_silent)
2981 return;
2982 need_wait_return = FALSE;
2983 compute_cmdrow();
2984 redrawcmd();
2985 cursorcmd();
2986}
2987
2988 static void
2989redrawcmdprompt()
2990{
2991 int i;
2992
2993 if (cmd_silent)
2994 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002995 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 msg_putchar(ccline.cmdfirstc);
2997 if (ccline.cmdprompt != NULL)
2998 {
2999 msg_puts_attr(ccline.cmdprompt, ccline.cmdattr);
3000 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
3001 /* do the reverse of set_cmdspos() */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003002 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 --ccline.cmdindent;
3004 }
3005 else
3006 for (i = ccline.cmdindent; i > 0; --i)
3007 msg_putchar(' ');
3008}
3009
3010/*
3011 * Redraw what is currently on the command line.
3012 */
3013 void
3014redrawcmd()
3015{
3016 if (cmd_silent)
3017 return;
3018
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003019 /* when 'incsearch' is set there may be no command line while redrawing */
3020 if (ccline.cmdbuff == NULL)
3021 {
3022 windgoto(cmdline_row, 0);
3023 msg_clr_eos();
3024 return;
3025 }
3026
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 msg_start();
3028 redrawcmdprompt();
3029
3030 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
3031 msg_no_more = TRUE;
3032 draw_cmdline(0, ccline.cmdlen);
3033 msg_clr_eos();
3034 msg_no_more = FALSE;
3035
3036 set_cmdspos_cursor();
3037
3038 /*
3039 * An emsg() before may have set msg_scroll. This is used in normal mode,
3040 * in cmdline mode we can reset them now.
3041 */
3042 msg_scroll = FALSE; /* next message overwrites cmdline */
3043
3044 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
3045 * in cmdline mode */
3046 skip_redraw = FALSE;
3047}
3048
3049 void
3050compute_cmdrow()
3051{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003052 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053 cmdline_row = Rows - 1;
3054 else
3055 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
3056 + W_STATUS_HEIGHT(lastwin);
3057}
3058
3059 static void
3060cursorcmd()
3061{
3062 if (cmd_silent)
3063 return;
3064
3065#ifdef FEAT_RIGHTLEFT
3066 if (cmdmsg_rl)
3067 {
3068 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3069 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3070 if (msg_row <= 0)
3071 msg_row = Rows - 1;
3072 }
3073 else
3074#endif
3075 {
3076 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3077 msg_col = ccline.cmdspos % (int)Columns;
3078 if (msg_row >= Rows)
3079 msg_row = Rows - 1;
3080 }
3081
3082 windgoto(msg_row, msg_col);
3083#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
3084 redrawcmd_preedit();
3085#endif
3086#ifdef MCH_CURSOR_SHAPE
3087 mch_update_cursor();
3088#endif
3089}
3090
3091 void
3092gotocmdline(clr)
3093 int clr;
3094{
3095 msg_start();
3096#ifdef FEAT_RIGHTLEFT
3097 if (cmdmsg_rl)
3098 msg_col = Columns - 1;
3099 else
3100#endif
3101 msg_col = 0; /* always start in column 0 */
3102 if (clr) /* clear the bottom line(s) */
3103 msg_clr_eos(); /* will reset clear_cmdline */
3104 windgoto(cmdline_row, 0);
3105}
3106
3107/*
3108 * Check the word in front of the cursor for an abbreviation.
3109 * Called when the non-id character "c" has been entered.
3110 * When an abbreviation is recognized it is removed from the text with
3111 * backspaces and the replacement string is inserted, followed by "c".
3112 */
3113 static int
3114ccheck_abbr(c)
3115 int c;
3116{
3117 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
3118 return FALSE;
3119
3120 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, 0);
3121}
3122
3123/*
3124 * Return FAIL if this is not an appropriate context in which to do
3125 * completion of anything, return OK if it is (even if there are no matches).
3126 * For the caller, this means that the character is just passed through like a
3127 * normal character (instead of being expanded). This allows :s/^I^D etc.
3128 */
3129 static int
3130nextwild(xp, type, options)
3131 expand_T *xp;
3132 int type;
3133 int options; /* extra options for ExpandOne() */
3134{
3135 int i, j;
3136 char_u *p1;
3137 char_u *p2;
3138 int oldlen;
3139 int difflen;
3140 int v;
3141
3142 if (xp->xp_numfiles == -1)
3143 {
3144 set_expand_context(xp);
3145 cmd_showtail = expand_showtail(xp);
3146 }
3147
3148 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
3149 {
3150 beep_flush();
3151 return OK; /* Something illegal on command line */
3152 }
3153 if (xp->xp_context == EXPAND_NOTHING)
3154 {
3155 /* Caller can use the character as a normal char instead */
3156 return FAIL;
3157 }
3158
3159 MSG_PUTS("..."); /* show that we are busy */
3160 out_flush();
3161
3162 i = (int)(xp->xp_pattern - ccline.cmdbuff);
3163 oldlen = ccline.cmdpos - i;
3164
3165 if (type == WILD_NEXT || type == WILD_PREV)
3166 {
3167 /*
3168 * Get next/previous match for a previous expanded pattern.
3169 */
3170 p2 = ExpandOne(xp, NULL, NULL, 0, type);
3171 }
3172 else
3173 {
3174 /*
3175 * Translate string into pattern and expand it.
3176 */
3177 if ((p1 = addstar(&ccline.cmdbuff[i], oldlen, xp->xp_context)) == NULL)
3178 p2 = NULL;
3179 else
3180 {
3181 p2 = ExpandOne(xp, p1, vim_strnsave(&ccline.cmdbuff[i], oldlen),
3182 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT|WILD_ESCAPE
3183 |options, type);
3184 vim_free(p1);
3185 /* longest match: make sure it is not shorter (happens with :help */
3186 if (p2 != NULL && type == WILD_LONGEST)
3187 {
3188 for (j = 0; j < oldlen; ++j)
3189 if (ccline.cmdbuff[i + j] == '*'
3190 || ccline.cmdbuff[i + j] == '?')
3191 break;
3192 if ((int)STRLEN(p2) < j)
3193 {
3194 vim_free(p2);
3195 p2 = NULL;
3196 }
3197 }
3198 }
3199 }
3200
3201 if (p2 != NULL && !got_int)
3202 {
3203 difflen = (int)STRLEN(p2) - oldlen;
3204 if (ccline.cmdlen + difflen > ccline.cmdbufflen - 4)
3205 {
3206 v = realloc_cmdbuff(ccline.cmdlen + difflen);
3207 xp->xp_pattern = ccline.cmdbuff + i;
3208 }
3209 else
3210 v = OK;
3211 if (v == OK)
3212 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003213 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen],
3214 &ccline.cmdbuff[ccline.cmdpos],
3215 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3216 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217 ccline.cmdlen += difflen;
3218 ccline.cmdpos += difflen;
3219 }
3220 }
3221 vim_free(p2);
3222
3223 redrawcmd();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003224 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225
3226 /* When expanding a ":map" command and no matches are found, assume that
3227 * the key is supposed to be inserted literally */
3228 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL)
3229 return FAIL;
3230
3231 if (xp->xp_numfiles <= 0 && p2 == NULL)
3232 beep_flush();
3233 else if (xp->xp_numfiles == 1)
3234 /* free expanded pattern */
3235 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
3236
3237 return OK;
3238}
3239
3240/*
3241 * Do wildcard expansion on the string 'str'.
3242 * Chars that should not be expanded must be preceded with a backslash.
3243 * Return a pointer to alloced memory containing the new string.
3244 * Return NULL for failure.
3245 *
3246 * Results are cached in xp->xp_files and xp->xp_numfiles.
3247 *
3248 * mode = WILD_FREE: just free previously expanded matches
3249 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches
3250 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches
3251 * mode = WILD_NEXT: use next match in multiple match, wrap to first
3252 * mode = WILD_PREV: use previous match in multiple match, wrap to first
3253 * mode = WILD_ALL: return all matches concatenated
3254 * mode = WILD_LONGEST: return longest matched part
3255 *
3256 * options = WILD_LIST_NOTFOUND: list entries without a match
3257 * options = WILD_HOME_REPLACE: do home_replace() for buffer names
3258 * options = WILD_USE_NL: Use '\n' for WILD_ALL
3259 * options = WILD_NO_BEEP: Don't beep for multiple matches
3260 * options = WILD_ADD_SLASH: add a slash after directory names
3261 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries
3262 * options = WILD_SILENT: don't print warning messages
3263 * options = WILD_ESCAPE: put backslash before special chars
3264 *
3265 * The variables xp->xp_context and xp->xp_backslash must have been set!
3266 */
3267 char_u *
3268ExpandOne(xp, str, orig, options, mode)
3269 expand_T *xp;
3270 char_u *str;
3271 char_u *orig; /* allocated copy of original of expanded string */
3272 int options;
3273 int mode;
3274{
3275 char_u *ss = NULL;
3276 static int findex;
3277 static char_u *orig_save = NULL; /* kept value of orig */
3278 int i;
3279 long_u len;
3280 int non_suf_match; /* number without matching suffix */
3281
3282 /*
3283 * first handle the case of using an old match
3284 */
3285 if (mode == WILD_NEXT || mode == WILD_PREV)
3286 {
3287 if (xp->xp_numfiles > 0)
3288 {
3289 if (mode == WILD_PREV)
3290 {
3291 if (findex == -1)
3292 findex = xp->xp_numfiles;
3293 --findex;
3294 }
3295 else /* mode == WILD_NEXT */
3296 ++findex;
3297
3298 /*
3299 * When wrapping around, return the original string, set findex to
3300 * -1.
3301 */
3302 if (findex < 0)
3303 {
3304 if (orig_save == NULL)
3305 findex = xp->xp_numfiles - 1;
3306 else
3307 findex = -1;
3308 }
3309 if (findex >= xp->xp_numfiles)
3310 {
3311 if (orig_save == NULL)
3312 findex = 0;
3313 else
3314 findex = -1;
3315 }
3316#ifdef FEAT_WILDMENU
3317 if (p_wmnu)
3318 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files,
3319 findex, cmd_showtail);
3320#endif
3321 if (findex == -1)
3322 return vim_strsave(orig_save);
3323 return vim_strsave(xp->xp_files[findex]);
3324 }
3325 else
3326 return NULL;
3327 }
3328
3329/* free old names */
3330 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST)
3331 {
3332 FreeWild(xp->xp_numfiles, xp->xp_files);
3333 xp->xp_numfiles = -1;
3334 vim_free(orig_save);
3335 orig_save = NULL;
3336 }
3337 findex = 0;
3338
3339 if (mode == WILD_FREE) /* only release file name */
3340 return NULL;
3341
3342 if (xp->xp_numfiles == -1)
3343 {
3344 vim_free(orig_save);
3345 orig_save = orig;
3346
3347 /*
3348 * Do the expansion.
3349 */
3350 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files,
3351 options) == FAIL)
3352 {
3353#ifdef FNAME_ILLEGAL
3354 /* Illegal file name has been silently skipped. But when there
3355 * are wildcards, the real problem is that there was no match,
3356 * causing the pattern to be added, which has illegal characters.
3357 */
3358 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND))
3359 EMSG2(_(e_nomatch2), str);
3360#endif
3361 }
3362 else if (xp->xp_numfiles == 0)
3363 {
3364 if (!(options & WILD_SILENT))
3365 EMSG2(_(e_nomatch2), str);
3366 }
3367 else
3368 {
3369 /* Escape the matches for use on the command line. */
3370 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options);
3371
3372 /*
3373 * Check for matching suffixes in file names.
3374 */
3375 if (mode != WILD_ALL && mode != WILD_LONGEST)
3376 {
3377 if (xp->xp_numfiles)
3378 non_suf_match = xp->xp_numfiles;
3379 else
3380 non_suf_match = 1;
3381 if ((xp->xp_context == EXPAND_FILES
3382 || xp->xp_context == EXPAND_DIRECTORIES)
3383 && xp->xp_numfiles > 1)
3384 {
3385 /*
3386 * More than one match; check suffix.
3387 * The files will have been sorted on matching suffix in
3388 * expand_wildcards, only need to check the first two.
3389 */
3390 non_suf_match = 0;
3391 for (i = 0; i < 2; ++i)
3392 if (match_suffix(xp->xp_files[i]))
3393 ++non_suf_match;
3394 }
3395 if (non_suf_match != 1)
3396 {
3397 /* Can we ever get here unless it's while expanding
3398 * interactively? If not, we can get rid of this all
3399 * together. Don't really want to wait for this message
3400 * (and possibly have to hit return to continue!).
3401 */
3402 if (!(options & WILD_SILENT))
3403 EMSG(_(e_toomany));
3404 else if (!(options & WILD_NO_BEEP))
3405 beep_flush();
3406 }
3407 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE))
3408 ss = vim_strsave(xp->xp_files[0]);
3409 }
3410 }
3411 }
3412
3413 /* Find longest common part */
3414 if (mode == WILD_LONGEST && xp->xp_numfiles > 0)
3415 {
3416 for (len = 0; xp->xp_files[0][len]; ++len)
3417 {
3418 for (i = 0; i < xp->xp_numfiles; ++i)
3419 {
3420#ifdef CASE_INSENSITIVE_FILENAME
3421 if (xp->xp_context == EXPAND_DIRECTORIES
3422 || xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003423 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424 || xp->xp_context == EXPAND_BUFFERS)
3425 {
3426 if (TOLOWER_LOC(xp->xp_files[i][len]) !=
3427 TOLOWER_LOC(xp->xp_files[0][len]))
3428 break;
3429 }
3430 else
3431#endif
3432 if (xp->xp_files[i][len] != xp->xp_files[0][len])
3433 break;
3434 }
3435 if (i < xp->xp_numfiles)
3436 {
3437 if (!(options & WILD_NO_BEEP))
3438 vim_beep();
3439 break;
3440 }
3441 }
3442 ss = alloc((unsigned)len + 1);
3443 if (ss)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003444 vim_strncpy(ss, xp->xp_files[0], (size_t)len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 findex = -1; /* next p_wc gets first one */
3446 }
3447
3448 /* Concatenate all matching names */
3449 if (mode == WILD_ALL && xp->xp_numfiles > 0)
3450 {
3451 len = 0;
3452 for (i = 0; i < xp->xp_numfiles; ++i)
3453 len += (long_u)STRLEN(xp->xp_files[i]) + 1;
3454 ss = lalloc(len, TRUE);
3455 if (ss != NULL)
3456 {
3457 *ss = NUL;
3458 for (i = 0; i < xp->xp_numfiles; ++i)
3459 {
3460 STRCAT(ss, xp->xp_files[i]);
3461 if (i != xp->xp_numfiles - 1)
3462 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " ");
3463 }
3464 }
3465 }
3466
3467 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL)
3468 ExpandCleanup(xp);
3469
3470 return ss;
3471}
3472
3473/*
3474 * Prepare an expand structure for use.
3475 */
3476 void
3477ExpandInit(xp)
3478 expand_T *xp;
3479{
3480 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003481#ifndef BACKSLASH_IN_FILENAME
3482 xp->xp_shell = FALSE;
3483#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484 xp->xp_numfiles = -1;
3485 xp->xp_files = NULL;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003486#if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
3487 xp->xp_arg = NULL;
3488#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489}
3490
3491/*
3492 * Cleanup an expand structure after use.
3493 */
3494 void
3495ExpandCleanup(xp)
3496 expand_T *xp;
3497{
3498 if (xp->xp_numfiles >= 0)
3499 {
3500 FreeWild(xp->xp_numfiles, xp->xp_files);
3501 xp->xp_numfiles = -1;
3502 }
3503}
3504
3505 void
3506ExpandEscape(xp, str, numfiles, files, options)
3507 expand_T *xp;
3508 char_u *str;
3509 int numfiles;
3510 char_u **files;
3511 int options;
3512{
3513 int i;
3514 char_u *p;
3515
3516 /*
3517 * May change home directory back to "~"
3518 */
3519 if (options & WILD_HOME_REPLACE)
3520 tilde_replace(str, numfiles, files);
3521
3522 if (options & WILD_ESCAPE)
3523 {
3524 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003525 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003526 || xp->xp_context == EXPAND_BUFFERS
3527 || xp->xp_context == EXPAND_DIRECTORIES)
3528 {
3529 /*
3530 * Insert a backslash into a file name before a space, \, %, #
3531 * and wildmatch characters, except '~'.
3532 */
3533 for (i = 0; i < numfiles; ++i)
3534 {
3535 /* for ":set path=" we need to escape spaces twice */
3536 if (xp->xp_backslash == XP_BS_THREE)
3537 {
3538 p = vim_strsave_escaped(files[i], (char_u *)" ");
3539 if (p != NULL)
3540 {
3541 vim_free(files[i]);
3542 files[i] = p;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003543#if defined(BACKSLASH_IN_FILENAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003544 p = vim_strsave_escaped(files[i], (char_u *)" ");
3545 if (p != NULL)
3546 {
3547 vim_free(files[i]);
3548 files[i] = p;
3549 }
3550#endif
3551 }
3552 }
3553#ifdef BACKSLASH_IN_FILENAME
3554 {
3555 char_u buf[20];
3556 int j = 0;
3557
3558 /* Don't escape '[' and '{' if they are in 'isfname'. */
3559 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
3560 if ((*p != '[' && *p != '{') || !vim_isfilec(*p))
3561 buf[j++] = *p;
3562 buf[j] = NUL;
3563 p = vim_strsave_escaped(files[i], buf);
3564 }
3565#else
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003566 p = vim_strsave_escaped(files[i],
3567 xp->xp_shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568#endif
3569 if (p != NULL)
3570 {
3571 vim_free(files[i]);
3572 files[i] = p;
3573 }
3574
3575 /* If 'str' starts with "\~", replace "~" at start of
3576 * files[i] with "\~". */
3577 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~')
Bram Moolenaar45360022005-07-21 21:08:21 +00003578 escape_fname(&files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579 }
3580 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar45360022005-07-21 21:08:21 +00003581
3582 /* If the first file starts with a '+' escape it. Otherwise it
3583 * could be seen as "+cmd". */
3584 if (*files[0] == '+')
3585 escape_fname(&files[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586 }
3587 else if (xp->xp_context == EXPAND_TAGS)
3588 {
3589 /*
3590 * Insert a backslash before characters in a tag name that
3591 * would terminate the ":tag" command.
3592 */
3593 for (i = 0; i < numfiles; ++i)
3594 {
3595 p = vim_strsave_escaped(files[i], (char_u *)"\\|\"");
3596 if (p != NULL)
3597 {
3598 vim_free(files[i]);
3599 files[i] = p;
3600 }
3601 }
3602 }
3603 }
3604}
3605
3606/*
Bram Moolenaar45360022005-07-21 21:08:21 +00003607 * Put a backslash before the file name in "pp", which is in allocated memory.
3608 */
3609 static void
3610escape_fname(pp)
3611 char_u **pp;
3612{
3613 char_u *p;
3614
3615 p = alloc((unsigned)(STRLEN(*pp) + 2));
3616 if (p != NULL)
3617 {
3618 p[0] = '\\';
3619 STRCPY(p + 1, *pp);
3620 vim_free(*pp);
3621 *pp = p;
3622 }
3623}
3624
3625/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 * For each file name in files[num_files]:
3627 * If 'orig_pat' starts with "~/", replace the home directory with "~".
3628 */
3629 void
3630tilde_replace(orig_pat, num_files, files)
3631 char_u *orig_pat;
3632 int num_files;
3633 char_u **files;
3634{
3635 int i;
3636 char_u *p;
3637
3638 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
3639 {
3640 for (i = 0; i < num_files; ++i)
3641 {
3642 p = home_replace_save(NULL, files[i]);
3643 if (p != NULL)
3644 {
3645 vim_free(files[i]);
3646 files[i] = p;
3647 }
3648 }
3649 }
3650}
3651
3652/*
3653 * Show all matches for completion on the command line.
3654 * Returns EXPAND_NOTHING when the character that triggered expansion should
3655 * be inserted like a normal character.
3656 */
3657/*ARGSUSED*/
3658 static int
3659showmatches(xp, wildmenu)
3660 expand_T *xp;
3661 int wildmenu;
3662{
3663#define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m])
3664 int num_files;
3665 char_u **files_found;
3666 int i, j, k;
3667 int maxlen;
3668 int lines;
3669 int columns;
3670 char_u *p;
3671 int lastlen;
3672 int attr;
3673 int showtail;
3674
3675 if (xp->xp_numfiles == -1)
3676 {
3677 set_expand_context(xp);
3678 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos,
3679 &num_files, &files_found);
3680 showtail = expand_showtail(xp);
3681 if (i != EXPAND_OK)
3682 return i;
3683
3684 }
3685 else
3686 {
3687 num_files = xp->xp_numfiles;
3688 files_found = xp->xp_files;
3689 showtail = cmd_showtail;
3690 }
3691
3692#ifdef FEAT_WILDMENU
3693 if (!wildmenu)
3694 {
3695#endif
3696 msg_didany = FALSE; /* lines_left will be set */
3697 msg_start(); /* prepare for paging */
3698 msg_putchar('\n');
3699 out_flush();
3700 cmdline_row = msg_row;
3701 msg_didany = FALSE; /* lines_left will be set again */
3702 msg_start(); /* prepare for paging */
3703#ifdef FEAT_WILDMENU
3704 }
3705#endif
3706
3707 if (got_int)
3708 got_int = FALSE; /* only int. the completion, not the cmd line */
3709#ifdef FEAT_WILDMENU
3710 else if (wildmenu)
3711 win_redr_status_matches(xp, num_files, files_found, 0, showtail);
3712#endif
3713 else
3714 {
3715 /* find the length of the longest file name */
3716 maxlen = 0;
3717 for (i = 0; i < num_files; ++i)
3718 {
3719 if (!showtail && (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003720 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 || xp->xp_context == EXPAND_BUFFERS))
3722 {
3723 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE);
3724 j = vim_strsize(NameBuff);
3725 }
3726 else
3727 j = vim_strsize(L_SHOWFILE(i));
3728 if (j > maxlen)
3729 maxlen = j;
3730 }
3731
3732 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3733 lines = num_files;
3734 else
3735 {
3736 /* compute the number of columns and lines for the listing */
3737 maxlen += 2; /* two spaces between file names */
3738 columns = ((int)Columns + 2) / maxlen;
3739 if (columns < 1)
3740 columns = 1;
3741 lines = (num_files + columns - 1) / columns;
3742 }
3743
3744 attr = hl_attr(HLF_D); /* find out highlighting for directories */
3745
3746 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3747 {
3748 MSG_PUTS_ATTR(_("tagname"), hl_attr(HLF_T));
3749 msg_clr_eos();
3750 msg_advance(maxlen - 3);
3751 MSG_PUTS_ATTR(_(" kind file\n"), hl_attr(HLF_T));
3752 }
3753
3754 /* list the files line by line */
3755 for (i = 0; i < lines; ++i)
3756 {
3757 lastlen = 999;
3758 for (k = i; k < num_files; k += lines)
3759 {
3760 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
3761 {
3762 msg_outtrans_attr(files_found[k], hl_attr(HLF_D));
3763 p = files_found[k] + STRLEN(files_found[k]) + 1;
3764 msg_advance(maxlen + 1);
3765 msg_puts(p);
3766 msg_advance(maxlen + 3);
3767 msg_puts_long_attr(p + 2, hl_attr(HLF_D));
3768 break;
3769 }
3770 for (j = maxlen - lastlen; --j >= 0; )
3771 msg_putchar(' ');
3772 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003773 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 || xp->xp_context == EXPAND_BUFFERS)
3775 {
3776 /* highlight directories */
3777 j = (mch_isdir(files_found[k]));
3778 if (showtail)
3779 p = L_SHOWFILE(k);
3780 else
3781 {
3782 home_replace(NULL, files_found[k], NameBuff, MAXPATHL,
3783 TRUE);
3784 p = NameBuff;
3785 }
3786 }
3787 else
3788 {
3789 j = FALSE;
3790 p = L_SHOWFILE(k);
3791 }
3792 lastlen = msg_outtrans_attr(p, j ? attr : 0);
3793 }
3794 if (msg_col > 0) /* when not wrapped around */
3795 {
3796 msg_clr_eos();
3797 msg_putchar('\n');
3798 }
3799 out_flush(); /* show one line at a time */
3800 if (got_int)
3801 {
3802 got_int = FALSE;
3803 break;
3804 }
3805 }
3806
3807 /*
3808 * we redraw the command below the lines that we have just listed
3809 * This is a bit tricky, but it saves a lot of screen updating.
3810 */
3811 cmdline_row = msg_row; /* will put it back later */
3812 }
3813
3814 if (xp->xp_numfiles == -1)
3815 FreeWild(num_files, files_found);
3816
3817 return EXPAND_OK;
3818}
3819
3820/*
3821 * Private gettail for showmatches() (and win_redr_status_matches()):
3822 * Find tail of file name path, but ignore trailing "/".
3823 */
3824 char_u *
3825sm_gettail(s)
3826 char_u *s;
3827{
3828 char_u *p;
3829 char_u *t = s;
3830 int had_sep = FALSE;
3831
3832 for (p = s; *p != NUL; )
3833 {
3834 if (vim_ispathsep(*p)
3835#ifdef BACKSLASH_IN_FILENAME
3836 && !rem_backslash(p)
3837#endif
3838 )
3839 had_sep = TRUE;
3840 else if (had_sep)
3841 {
3842 t = p;
3843 had_sep = FALSE;
3844 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003845 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846 }
3847 return t;
3848}
3849
3850/*
3851 * Return TRUE if we only need to show the tail of completion matches.
3852 * When not completing file names or there is a wildcard in the path FALSE is
3853 * returned.
3854 */
3855 static int
3856expand_showtail(xp)
3857 expand_T *xp;
3858{
3859 char_u *s;
3860 char_u *end;
3861
3862 /* When not completing file names a "/" may mean something different. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003863 if (xp->xp_context != EXPAND_FILES
3864 && xp->xp_context != EXPAND_SHELLCMD
3865 && xp->xp_context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 return FALSE;
3867
3868 end = gettail(xp->xp_pattern);
3869 if (end == xp->xp_pattern) /* there is no path separator */
3870 return FALSE;
3871
3872 for (s = xp->xp_pattern; s < end; s++)
3873 {
3874 /* Skip escaped wildcards. Only when the backslash is not a path
3875 * separator, on DOS the '*' "path\*\file" must not be skipped. */
3876 if (rem_backslash(s))
3877 ++s;
3878 else if (vim_strchr((char_u *)"*?[", *s) != NULL)
3879 return FALSE;
3880 }
3881 return TRUE;
3882}
3883
3884/*
3885 * Prepare a string for expansion.
3886 * When expanding file names: The string will be used with expand_wildcards().
3887 * Copy the file name into allocated memory and add a '*' at the end.
3888 * When expanding other names: The string will be used with regcomp(). Copy
3889 * the name into allocated memory and prepend "^".
3890 */
3891 char_u *
3892addstar(fname, len, context)
3893 char_u *fname;
3894 int len;
3895 int context; /* EXPAND_FILES etc. */
3896{
3897 char_u *retval;
3898 int i, j;
3899 int new_len;
3900 char_u *tail;
3901
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003902 if (context != EXPAND_FILES
3903 && context != EXPAND_SHELLCMD
3904 && context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905 {
3906 /*
3907 * Matching will be done internally (on something other than files).
3908 * So we convert the file-matching-type wildcards into our kind for
3909 * use with vim_regcomp(). First work out how long it will be:
3910 */
3911
3912 /* For help tags the translation is done in find_help_tags().
3913 * For a tag pattern starting with "/" no translation is needed. */
3914 if (context == EXPAND_HELP
3915 || context == EXPAND_COLORS
3916 || context == EXPAND_COMPILER
3917 || (context == EXPAND_TAGS && fname[0] == '/'))
3918 retval = vim_strnsave(fname, len);
3919 else
3920 {
3921 new_len = len + 2; /* +2 for '^' at start, NUL at end */
3922 for (i = 0; i < len; i++)
3923 {
3924 if (fname[i] == '*' || fname[i] == '~')
3925 new_len++; /* '*' needs to be replaced by ".*"
3926 '~' needs to be replaced by "\~" */
3927
3928 /* Buffer names are like file names. "." should be literal */
3929 if (context == EXPAND_BUFFERS && fname[i] == '.')
3930 new_len++; /* "." becomes "\." */
3931
3932 /* Custom expansion takes care of special things, match
3933 * backslashes literally (perhaps also for other types?) */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003934 if ((context == EXPAND_USER_DEFINED
3935 || context == EXPAND_USER_LIST) && fname[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936 new_len++; /* '\' becomes "\\" */
3937 }
3938 retval = alloc(new_len);
3939 if (retval != NULL)
3940 {
3941 retval[0] = '^';
3942 j = 1;
3943 for (i = 0; i < len; i++, j++)
3944 {
3945 /* Skip backslash. But why? At least keep it for custom
3946 * expansion. */
3947 if (context != EXPAND_USER_DEFINED
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00003948 && context != EXPAND_USER_LIST
3949 && fname[i] == '\\'
3950 && ++i == len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 break;
3952
3953 switch (fname[i])
3954 {
3955 case '*': retval[j++] = '.';
3956 break;
3957 case '~': retval[j++] = '\\';
3958 break;
3959 case '?': retval[j] = '.';
3960 continue;
3961 case '.': if (context == EXPAND_BUFFERS)
3962 retval[j++] = '\\';
3963 break;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00003964 case '\\': if (context == EXPAND_USER_DEFINED
3965 || context == EXPAND_USER_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 retval[j++] = '\\';
3967 break;
3968 }
3969 retval[j] = fname[i];
3970 }
3971 retval[j] = NUL;
3972 }
3973 }
3974 }
3975 else
3976 {
3977 retval = alloc(len + 4);
3978 if (retval != NULL)
3979 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003980 vim_strncpy(retval, fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981
3982 /*
3983 * Don't add a star to ~, ~user, $var or `cmd`.
3984 * ~ would be at the start of the file name, but not the tail.
3985 * $ could be anywhere in the tail.
3986 * ` could be anywhere in the file name.
3987 */
3988 tail = gettail(retval);
3989 if ((*retval != '~' || tail != retval)
3990 && vim_strchr(tail, '$') == NULL
3991 && vim_strchr(retval, '`') == NULL)
3992 retval[len++] = '*';
3993 retval[len] = NUL;
3994 }
3995 }
3996 return retval;
3997}
3998
3999/*
4000 * Must parse the command line so far to work out what context we are in.
4001 * Completion can then be done based on that context.
4002 * This routine sets the variables:
4003 * xp->xp_pattern The start of the pattern to be expanded within
4004 * the command line (ends at the cursor).
4005 * xp->xp_context The type of thing to expand. Will be one of:
4006 *
4007 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on
4008 * the command line, like an unknown command. Caller
4009 * should beep.
4010 * EXPAND_NOTHING Unrecognised context for completion, use char like
4011 * a normal char, rather than for completion. eg
4012 * :s/^I/
4013 * EXPAND_COMMANDS Cursor is still touching the command, so complete
4014 * it.
4015 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands.
4016 * EXPAND_FILES After command with XFILE set, or after setting
4017 * with P_EXPAND set. eg :e ^I, :w>>^I
4018 * EXPAND_DIRECTORIES In some cases this is used instead of the latter
4019 * when we know only directories are of interest. eg
4020 * :set dir=^I
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004021 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004022 * EXPAND_SETTINGS Complete variable names. eg :set d^I
4023 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I
4024 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I
4025 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect
4026 * EXPAND_HELP Complete tags from the file 'helpfile'/tags
4027 * EXPAND_EVENTS Complete event names
4028 * EXPAND_SYNTAX Complete :syntax command arguments
4029 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names
4030 * EXPAND_AUGROUP Complete autocommand group names
4031 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I
4032 * EXPAND_MAPPINGS Complete mapping and abbreviation names,
4033 * eg :unmap a^I , :cunab x^I
4034 * EXPAND_FUNCTIONS Complete internal or user defined function names,
4035 * eg :call sub^I
4036 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I
4037 * EXPAND_EXPRESSION Complete internal or user defined function/variable
4038 * names in expressions, eg :while s^I
4039 * EXPAND_ENV_VARS Complete environment variable names
4040 */
4041 static void
4042set_expand_context(xp)
4043 expand_T *xp;
4044{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004045 /* only expansion for ':', '>' and '=' command-lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046 if (ccline.cmdfirstc != ':'
4047#ifdef FEAT_EVAL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004048 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '='
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004049 && !ccline.input_fn
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050#endif
4051 )
4052 {
4053 xp->xp_context = EXPAND_NOTHING;
4054 return;
4055 }
4056 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos);
4057}
4058
4059 void
4060set_cmd_context(xp, str, len, col)
4061 expand_T *xp;
4062 char_u *str; /* start of command line */
4063 int len; /* length of command line (excl. NUL) */
4064 int col; /* position of cursor */
4065{
4066 int old_char = NUL;
4067 char_u *nextcomm;
4068
4069 /*
4070 * Avoid a UMR warning from Purify, only save the character if it has been
4071 * written before.
4072 */
4073 if (col < len)
4074 old_char = str[col];
4075 str[col] = NUL;
4076 nextcomm = str;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004077
4078#ifdef FEAT_EVAL
4079 if (ccline.cmdfirstc == '=')
4080 /* pass CMD_SIZE because there is no real command */
4081 set_context_for_expression(xp, str, CMD_SIZE);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004082 else if (ccline.input_fn)
4083 {
4084 xp->xp_context = ccline.xp_context;
4085 xp->xp_pattern = ccline.cmdbuff;
4086 xp->xp_arg = ccline.xp_arg;
4087 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004088 else
4089#endif
4090 while (nextcomm != NULL)
4091 nextcomm = set_one_cmd_context(xp, nextcomm);
4092
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093 str[col] = old_char;
4094}
4095
4096/*
4097 * Expand the command line "str" from context "xp".
4098 * "xp" must have been set by set_cmd_context().
4099 * xp->xp_pattern points into "str", to where the text that is to be expanded
4100 * starts.
4101 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the
4102 * cursor.
4103 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the
4104 * key that triggered expansion literally.
4105 * Returns EXPAND_OK otherwise.
4106 */
4107 int
4108expand_cmdline(xp, str, col, matchcount, matches)
4109 expand_T *xp;
4110 char_u *str; /* start of command line */
4111 int col; /* position of cursor */
4112 int *matchcount; /* return: nr of matches */
4113 char_u ***matches; /* return: array of pointers to matches */
4114{
4115 char_u *file_str = NULL;
4116
4117 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
4118 {
4119 beep_flush();
4120 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */
4121 }
4122 if (xp->xp_context == EXPAND_NOTHING)
4123 {
4124 /* Caller can use the character as a normal char instead */
4125 return EXPAND_NOTHING;
4126 }
4127
4128 /* add star to file name, or convert to regexp if not exp. files. */
4129 file_str = addstar(xp->xp_pattern,
4130 (int)(str + col - xp->xp_pattern), xp->xp_context);
4131 if (file_str == NULL)
4132 return EXPAND_UNSUCCESSFUL;
4133
4134 /* find all files that match the description */
4135 if (ExpandFromContext(xp, file_str, matchcount, matches,
4136 WILD_ADD_SLASH|WILD_SILENT) == FAIL)
4137 {
4138 *matchcount = 0;
4139 *matches = NULL;
4140 }
4141 vim_free(file_str);
4142
4143 return EXPAND_OK;
4144}
4145
4146#ifdef FEAT_MULTI_LANG
4147/*
4148 * Cleanup matches for help tags: remove "@en" if "en" is the only language.
4149 */
4150static void cleanup_help_tags __ARGS((int num_file, char_u **file));
4151
4152 static void
4153cleanup_help_tags(num_file, file)
4154 int num_file;
4155 char_u **file;
4156{
4157 int i, j;
4158 int len;
4159
4160 for (i = 0; i < num_file; ++i)
4161 {
4162 len = (int)STRLEN(file[i]) - 3;
4163 if (len > 0 && STRCMP(file[i] + len, "@en") == 0)
4164 {
4165 /* Sorting on priority means the same item in another language may
4166 * be anywhere. Search all items for a match up to the "@en". */
4167 for (j = 0; j < num_file; ++j)
4168 if (j != i
4169 && (int)STRLEN(file[j]) == len + 3
4170 && STRNCMP(file[i], file[j], len + 1) == 0)
4171 break;
4172 if (j == num_file)
4173 file[i][len] = NUL;
4174 }
4175 }
4176}
4177#endif
4178
4179/*
4180 * Do the expansion based on xp->xp_context and "pat".
4181 */
4182 static int
4183ExpandFromContext(xp, pat, num_file, file, options)
4184 expand_T *xp;
4185 char_u *pat;
4186 int *num_file;
4187 char_u ***file;
4188 int options;
4189{
4190#ifdef FEAT_CMDL_COMPL
4191 regmatch_T regmatch;
4192#endif
4193 int ret;
4194 int flags;
4195
4196 flags = EW_DIR; /* include directories */
4197 if (options & WILD_LIST_NOTFOUND)
4198 flags |= EW_NOTFOUND;
4199 if (options & WILD_ADD_SLASH)
4200 flags |= EW_ADDSLASH;
4201 if (options & WILD_KEEP_ALL)
4202 flags |= EW_KEEPALL;
4203 if (options & WILD_SILENT)
4204 flags |= EW_SILENT;
4205
4206 if (xp->xp_context == EXPAND_FILES || xp->xp_context == EXPAND_DIRECTORIES)
4207 {
4208 /*
4209 * Expand file or directory names.
4210 */
4211 int free_pat = FALSE;
4212 int i;
4213
4214 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4215 * space */
4216 if (xp->xp_backslash != XP_BS_NONE)
4217 {
4218 free_pat = TRUE;
4219 pat = vim_strsave(pat);
4220 for (i = 0; pat[i]; ++i)
4221 if (pat[i] == '\\')
4222 {
4223 if (xp->xp_backslash == XP_BS_THREE
4224 && pat[i + 1] == '\\'
4225 && pat[i + 2] == '\\'
4226 && pat[i + 3] == ' ')
4227 STRCPY(pat + i, pat + i + 3);
4228 if (xp->xp_backslash == XP_BS_ONE
4229 && pat[i + 1] == ' ')
4230 STRCPY(pat + i, pat + i + 1);
4231 }
4232 }
4233
4234 if (xp->xp_context == EXPAND_FILES)
4235 flags |= EW_FILE;
4236 else
4237 flags = (flags | EW_DIR) & ~EW_FILE;
4238 ret = expand_wildcards(1, &pat, num_file, file, flags);
4239 if (free_pat)
4240 vim_free(pat);
4241 return ret;
4242 }
4243
4244 *file = (char_u **)"";
4245 *num_file = 0;
4246 if (xp->xp_context == EXPAND_HELP)
4247 {
4248 if (find_help_tags(pat, num_file, file, FALSE) == OK)
4249 {
4250#ifdef FEAT_MULTI_LANG
4251 cleanup_help_tags(*num_file, *file);
4252#endif
4253 return OK;
4254 }
4255 return FAIL;
4256 }
4257
4258#ifndef FEAT_CMDL_COMPL
4259 return FAIL;
4260#else
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004261 if (xp->xp_context == EXPAND_SHELLCMD)
4262 return expand_shellcmd(pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 if (xp->xp_context == EXPAND_OLD_SETTING)
4264 return ExpandOldSetting(num_file, file);
4265 if (xp->xp_context == EXPAND_BUFFERS)
4266 return ExpandBufnames(pat, num_file, file, options);
4267 if (xp->xp_context == EXPAND_TAGS
4268 || xp->xp_context == EXPAND_TAGS_LISTFILES)
4269 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file);
4270 if (xp->xp_context == EXPAND_COLORS)
4271 return ExpandRTDir(pat, num_file, file, "colors");
4272 if (xp->xp_context == EXPAND_COMPILER)
4273 return ExpandRTDir(pat, num_file, file, "compiler");
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004274# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4275 if (xp->xp_context == EXPAND_USER_LIST)
4276 return ExpandUserList(xp, num_file, file);
4277# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004278
4279 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4280 if (regmatch.regprog == NULL)
4281 return FAIL;
4282
4283 /* set ignore-case according to p_ic, p_scs and pat */
4284 regmatch.rm_ic = ignorecase(pat);
4285
4286 if (xp->xp_context == EXPAND_SETTINGS
4287 || xp->xp_context == EXPAND_BOOL_SETTINGS)
4288 ret = ExpandSettings(xp, &regmatch, num_file, file);
4289 else if (xp->xp_context == EXPAND_MAPPINGS)
4290 ret = ExpandMappings(&regmatch, num_file, file);
4291# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4292 else if (xp->xp_context == EXPAND_USER_DEFINED)
4293 ret = ExpandUserDefined(xp, &regmatch, num_file, file);
4294# endif
4295 else
4296 {
4297 static struct expgen
4298 {
4299 int context;
4300 char_u *((*func)__ARGS((expand_T *, int)));
4301 int ic;
4302 } tab[] =
4303 {
4304 {EXPAND_COMMANDS, get_command_name, FALSE},
4305#ifdef FEAT_USR_CMDS
4306 {EXPAND_USER_COMMANDS, get_user_commands, FALSE},
4307 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE},
4308 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE},
4309 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE},
4310#endif
4311#ifdef FEAT_EVAL
4312 {EXPAND_USER_VARS, get_user_var_name, FALSE},
4313 {EXPAND_FUNCTIONS, get_function_name, FALSE},
4314 {EXPAND_USER_FUNC, get_user_func_name, FALSE},
4315 {EXPAND_EXPRESSION, get_expr_name, FALSE},
4316#endif
4317#ifdef FEAT_MENU
4318 {EXPAND_MENUS, get_menu_name, FALSE},
4319 {EXPAND_MENUNAMES, get_menu_names, FALSE},
4320#endif
4321#ifdef FEAT_SYN_HL
4322 {EXPAND_SYNTAX, get_syntax_name, TRUE},
4323#endif
4324 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE},
4325#ifdef FEAT_AUTOCMD
4326 {EXPAND_EVENTS, get_event_name, TRUE},
4327 {EXPAND_AUGROUP, get_augroup_name, TRUE},
4328#endif
4329#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
4330 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
4331 {EXPAND_LANGUAGE, get_lang_arg, TRUE},
4332#endif
4333 {EXPAND_ENV_VARS, get_env_name, TRUE},
4334 };
4335 int i;
4336
4337 /*
4338 * Find a context in the table and call the ExpandGeneric() with the
4339 * right function to do the expansion.
4340 */
4341 ret = FAIL;
4342 for (i = 0; i < sizeof(tab) / sizeof(struct expgen); ++i)
4343 if (xp->xp_context == tab[i].context)
4344 {
4345 if (tab[i].ic)
4346 regmatch.rm_ic = TRUE;
4347 ret = ExpandGeneric(xp, &regmatch, num_file, file, tab[i].func);
4348 break;
4349 }
4350 }
4351
4352 vim_free(regmatch.regprog);
4353
4354 return ret;
4355#endif /* FEAT_CMDL_COMPL */
4356}
4357
4358#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4359/*
4360 * Expand a list of names.
4361 *
4362 * Generic function for command line completion. It calls a function to
4363 * obtain strings, one by one. The strings are matched against a regexp
4364 * program. Matching strings are copied into an array, which is returned.
4365 *
4366 * Returns OK when no problems encountered, FAIL for error (out of memory).
4367 */
4368 int
4369ExpandGeneric(xp, regmatch, num_file, file, func)
4370 expand_T *xp;
4371 regmatch_T *regmatch;
4372 int *num_file;
4373 char_u ***file;
4374 char_u *((*func)__ARGS((expand_T *, int)));
4375 /* returns a string from the list */
4376{
4377 int i;
4378 int count = 0;
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004379 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 char_u *str;
4381
4382 /* do this loop twice:
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004383 * round == 0: count the number of matching names
4384 * round == 1: copy the matching names into allocated memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385 */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004386 for (round = 0; round <= 1; ++round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387 {
4388 for (i = 0; ; ++i)
4389 {
4390 str = (*func)(xp, i);
4391 if (str == NULL) /* end of list */
4392 break;
4393 if (*str == NUL) /* skip empty strings */
4394 continue;
4395
4396 if (vim_regexec(regmatch, str, (colnr_T)0))
4397 {
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004398 if (round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 {
4400 str = vim_strsave_escaped(str, (char_u *)" \t\\.");
4401 (*file)[count] = str;
4402#ifdef FEAT_MENU
4403 if (func == get_menu_names && str != NULL)
4404 {
4405 /* test for separator added by get_menu_names() */
4406 str += STRLEN(str) - 1;
4407 if (*str == '\001')
4408 *str = '.';
4409 }
4410#endif
4411 }
4412 ++count;
4413 }
4414 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004415 if (round == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416 {
4417 if (count == 0)
4418 return OK;
4419 *num_file = count;
4420 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
4421 if (*file == NULL)
4422 {
4423 *file = (char_u **)"";
4424 return FAIL;
4425 }
4426 count = 0;
4427 }
4428 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004429
4430 /* Sort the results. */
4431 sort_strings(*file, *num_file);
4432
Bram Moolenaar071d4272004-06-13 20:20:40 +00004433 return OK;
4434}
4435
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004436/*
4437 * Complete a shell command.
4438 * Returns FAIL or OK;
4439 */
4440 static int
4441expand_shellcmd(filepat, num_file, file, flagsarg)
4442 char_u *filepat; /* pattern to match with command names */
4443 int *num_file; /* return: number of matches */
4444 char_u ***file; /* return: array with matches */
4445 int flagsarg; /* EW_ flags */
4446{
4447 char_u *pat;
4448 int i;
4449 char_u *path;
4450 int mustfree = FALSE;
4451 garray_T ga;
4452 char_u *buf = alloc(MAXPATHL);
4453 size_t l;
4454 char_u *s, *e;
4455 int flags = flagsarg;
4456 int ret;
4457
4458 if (buf == NULL)
4459 return FAIL;
4460
4461 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4462 * space */
4463 pat = vim_strsave(filepat);
4464 for (i = 0; pat[i]; ++i)
4465 if (pat[i] == '\\' && pat[i + 1] == ' ')
4466 STRCPY(pat + i, pat + i + 1);
4467
4468 flags |= EW_FILE | EW_EXEC;
4469
4470 /* For an absolute name we don't use $PATH. */
4471 if ((pat[0] == '.' && (vim_ispathsep(pat[1])
4472 || (pat[1] == '.' && vim_ispathsep(pat[2])))))
4473 path = (char_u *)".";
4474 else
4475 path = vim_getenv((char_u *)"PATH", &mustfree);
4476
4477 /*
4478 * Go over all directories in $PATH. Expand matches in that directory and
4479 * collect them in "ga".
4480 */
4481 ga_init2(&ga, (int)sizeof(char *), 10);
4482 for (s = path; *s != NUL; s = e)
4483 {
4484#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
4485 e = vim_strchr(s, ';');
4486#else
4487 e = vim_strchr(s, ':');
4488#endif
4489 if (e == NULL)
4490 e = s + STRLEN(s);
4491
4492 l = e - s;
4493 if (l > MAXPATHL - 5)
4494 break;
4495 vim_strncpy(buf, s, l);
4496 add_pathsep(buf);
4497 l = STRLEN(buf);
4498 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l);
4499
4500 /* Expand matches in one directory of $PATH. */
4501 ret = expand_wildcards(1, &buf, num_file, file, flags);
4502 if (ret == OK)
4503 {
4504 if (ga_grow(&ga, *num_file) == FAIL)
4505 FreeWild(*num_file, *file);
4506 else
4507 {
4508 for (i = 0; i < *num_file; ++i)
4509 {
4510 s = (*file)[i];
4511 if (STRLEN(s) > l)
4512 {
4513 /* Remove the path again. */
4514 mch_memmove(s, s + l, STRLEN(s + l) + 1);
4515 ((char_u **)ga.ga_data)[ga.ga_len++] = s;
4516 }
4517 else
4518 vim_free(s);
4519 }
4520 vim_free(*file);
4521 }
4522 }
4523 if (*e != NUL)
4524 ++e;
4525 }
4526 *file = ga.ga_data;
4527 *num_file = ga.ga_len;
4528
4529 vim_free(buf);
4530 vim_free(pat);
4531 if (mustfree)
4532 vim_free(path);
4533 return OK;
4534}
4535
4536
Bram Moolenaar071d4272004-06-13 20:20:40 +00004537# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00004538static 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));
4539
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540/*
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004541 * call "user_expand_func()" to invoke a user defined VimL function and return
4542 * the result (either a string or a List).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004543 */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004544 static void *
4545call_user_expand_func(user_expand_func, xp, num_file, file)
4546 void *(*user_expand_func) __ARGS((char_u *, int, char_u **, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547 expand_T *xp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004548 int *num_file;
4549 char_u ***file;
4550{
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004551 char_u keep;
4552 char_u num[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553 char_u *args[3];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004554 int save_current_SID = current_SID;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004555 void *ret;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004556 struct cmdline_info save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004557
4558 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0')
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004559 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 *num_file = 0;
4561 *file = NULL;
4562
4563 keep = ccline.cmdbuff[ccline.cmdlen];
4564 ccline.cmdbuff[ccline.cmdlen] = 0;
4565 sprintf((char *)num, "%d", ccline.cmdpos);
4566 args[0] = xp->xp_pattern;
4567 args[1] = ccline.cmdbuff;
4568 args[2] = num;
4569
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004570 /* Save the cmdline, we don't know what the function may do. */
4571 save_ccline = ccline;
4572 ccline.cmdbuff = NULL;
4573 ccline.cmdprompt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574 current_SID = xp->xp_scriptID;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004575
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004576 ret = user_expand_func(xp->xp_arg, 3, args, FALSE);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004577
4578 ccline = save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579 current_SID = save_current_SID;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004580
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 ccline.cmdbuff[ccline.cmdlen] = keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004582
4583 return ret;
4584}
4585
4586/*
4587 * Expand names with a function defined by the user.
4588 */
4589 static int
4590ExpandUserDefined(xp, regmatch, num_file, file)
4591 expand_T *xp;
4592 regmatch_T *regmatch;
4593 int *num_file;
4594 char_u ***file;
4595{
4596 char_u *retstr;
4597 char_u *s;
4598 char_u *e;
4599 char_u keep;
4600 garray_T ga;
4601
4602 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file);
4603 if (retstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 return FAIL;
4605
4606 ga_init2(&ga, (int)sizeof(char *), 3);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004607 for (s = retstr; *s != NUL; s = e)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608 {
4609 e = vim_strchr(s, '\n');
4610 if (e == NULL)
4611 e = s + STRLEN(s);
4612 keep = *e;
4613 *e = 0;
4614
4615 if (xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0)
4616 {
4617 *e = keep;
4618 if (*e != NUL)
4619 ++e;
4620 continue;
4621 }
4622
4623 if (ga_grow(&ga, 1) == FAIL)
4624 break;
4625
4626 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s));
4627 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628
4629 *e = keep;
4630 if (*e != NUL)
4631 ++e;
4632 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004633 vim_free(retstr);
4634 *file = ga.ga_data;
4635 *num_file = ga.ga_len;
4636 return OK;
4637}
4638
4639/*
4640 * Expand names with a list returned by a function defined by the user.
4641 */
4642 static int
4643ExpandUserList(xp, num_file, file)
4644 expand_T *xp;
4645 int *num_file;
4646 char_u ***file;
4647{
4648 list_T *retlist;
4649 listitem_T *li;
4650 garray_T ga;
4651
4652 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file);
4653 if (retlist == NULL)
4654 return FAIL;
4655
4656 ga_init2(&ga, (int)sizeof(char *), 3);
4657 /* Loop over the items in the list. */
4658 for (li = retlist->lv_first; li != NULL; li = li->li_next)
4659 {
4660 if (li->li_tv.v_type != VAR_STRING)
4661 continue; /* Skip non-string items */
4662
4663 if (ga_grow(&ga, 1) == FAIL)
4664 break;
4665
4666 ((char_u **)ga.ga_data)[ga.ga_len] =
4667 vim_strsave(li->li_tv.vval.v_string);
4668 ++ga.ga_len;
4669 }
4670 list_unref(retlist);
4671
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672 *file = ga.ga_data;
4673 *num_file = ga.ga_len;
4674 return OK;
4675}
4676#endif
4677
4678/*
4679 * Expand color scheme names: 'runtimepath'/colors/{pat}.vim
4680 * or compiler names.
4681 */
4682 static int
4683ExpandRTDir(pat, num_file, file, dirname)
4684 char_u *pat;
4685 int *num_file;
4686 char_u ***file;
4687 char *dirname; /* "colors" or "compiler" */
4688{
4689 char_u *all;
4690 char_u *s;
4691 char_u *e;
4692 garray_T ga;
4693
4694 *num_file = 0;
4695 *file = NULL;
4696 s = alloc((unsigned)(STRLEN(pat) + STRLEN(dirname) + 7));
4697 if (s == NULL)
4698 return FAIL;
4699 sprintf((char *)s, "%s/%s*.vim", dirname, pat);
4700 all = globpath(p_rtp, s);
4701 vim_free(s);
4702 if (all == NULL)
4703 return FAIL;
4704
4705 ga_init2(&ga, (int)sizeof(char *), 3);
4706 for (s = all; *s != NUL; s = e)
4707 {
4708 e = vim_strchr(s, '\n');
4709 if (e == NULL)
4710 e = s + STRLEN(s);
4711 if (ga_grow(&ga, 1) == FAIL)
4712 break;
4713 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0)
4714 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004715 for (s = e - 4; s > all; mb_ptr_back(all, s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716 if (*s == '\n' || vim_ispathsep(*s))
4717 break;
4718 ++s;
4719 ((char_u **)ga.ga_data)[ga.ga_len] =
4720 vim_strnsave(s, (int)(e - s - 4));
4721 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722 }
4723 if (*e != NUL)
4724 ++e;
4725 }
4726 vim_free(all);
4727 *file = ga.ga_data;
4728 *num_file = ga.ga_len;
4729 return OK;
4730}
4731
4732#endif
4733
4734#if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO)
4735/*
4736 * Expand "file" for all comma-separated directories in "path".
4737 * Returns an allocated string with all matches concatenated, separated by
4738 * newlines. Returns NULL for an error or no matches.
4739 */
4740 char_u *
4741globpath(path, file)
4742 char_u *path;
4743 char_u *file;
4744{
4745 expand_T xpc;
4746 char_u *buf;
4747 garray_T ga;
4748 int i;
4749 int len;
4750 int num_p;
4751 char_u **p;
4752 char_u *cur = NULL;
4753
4754 buf = alloc(MAXPATHL);
4755 if (buf == NULL)
4756 return NULL;
4757
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00004758 ExpandInit(&xpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00004760
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761 ga_init2(&ga, 1, 100);
4762
4763 /* Loop over all entries in {path}. */
4764 while (*path != NUL)
4765 {
4766 /* Copy one item of the path to buf[] and concatenate the file name. */
4767 copy_option_part(&path, buf, MAXPATHL, ",");
4768 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
4769 {
4770 add_pathsep(buf);
4771 STRCAT(buf, file);
4772 if (ExpandFromContext(&xpc, buf, &num_p, &p, WILD_SILENT) != FAIL
4773 && num_p > 0)
4774 {
4775 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT);
4776 for (len = 0, i = 0; i < num_p; ++i)
4777 len += (long_u)STRLEN(p[i]) + 1;
4778
4779 /* Concatenate new results to previous ones. */
4780 if (ga_grow(&ga, len) == OK)
4781 {
4782 cur = (char_u *)ga.ga_data + ga.ga_len;
4783 for (i = 0; i < num_p; ++i)
4784 {
4785 STRCPY(cur, p[i]);
4786 cur += STRLEN(p[i]);
4787 *cur++ = '\n';
4788 }
4789 ga.ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 }
4791 FreeWild(num_p, p);
4792 }
4793 }
4794 }
4795 if (cur != NULL)
4796 *--cur = 0; /* Replace trailing newline with NUL */
4797
4798 vim_free(buf);
4799 return (char_u *)ga.ga_data;
4800}
4801
4802#endif
4803
4804#if defined(FEAT_CMDHIST) || defined(PROTO)
4805
4806/*********************************
4807 * Command line history stuff *
4808 *********************************/
4809
4810/*
4811 * Translate a history character to the associated type number.
4812 */
4813 static int
4814hist_char2type(c)
4815 int c;
4816{
4817 if (c == ':')
4818 return HIST_CMD;
4819 if (c == '=')
4820 return HIST_EXPR;
4821 if (c == '@')
4822 return HIST_INPUT;
4823 if (c == '>')
4824 return HIST_DEBUG;
4825 return HIST_SEARCH; /* must be '?' or '/' */
4826}
4827
4828/*
4829 * Table of history names.
4830 * These names are used in :history and various hist...() functions.
4831 * It is sufficient to give the significant prefix of a history name.
4832 */
4833
4834static char *(history_names[]) =
4835{
4836 "cmd",
4837 "search",
4838 "expr",
4839 "input",
4840 "debug",
4841 NULL
4842};
4843
4844/*
4845 * init_history() - Initialize the command line history.
4846 * Also used to re-allocate the history when the size changes.
4847 */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00004848 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849init_history()
4850{
4851 int newlen; /* new length of history table */
4852 histentry_T *temp;
4853 int i;
4854 int j;
4855 int type;
4856
4857 /*
4858 * If size of history table changed, reallocate it
4859 */
4860 newlen = (int)p_hi;
4861 if (newlen != hislen) /* history length changed */
4862 {
4863 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */
4864 {
4865 if (newlen)
4866 {
4867 temp = (histentry_T *)lalloc(
4868 (long_u)(newlen * sizeof(histentry_T)), TRUE);
4869 if (temp == NULL) /* out of memory! */
4870 {
4871 if (type == 0) /* first one: just keep the old length */
4872 {
4873 newlen = hislen;
4874 break;
4875 }
4876 /* Already changed one table, now we can only have zero
4877 * length for all tables. */
4878 newlen = 0;
4879 type = -1;
4880 continue;
4881 }
4882 }
4883 else
4884 temp = NULL;
4885 if (newlen == 0 || temp != NULL)
4886 {
4887 if (hisidx[type] < 0) /* there are no entries yet */
4888 {
4889 for (i = 0; i < newlen; ++i)
4890 {
4891 temp[i].hisnum = 0;
4892 temp[i].hisstr = NULL;
4893 }
4894 }
4895 else if (newlen > hislen) /* array becomes bigger */
4896 {
4897 for (i = 0; i <= hisidx[type]; ++i)
4898 temp[i] = history[type][i];
4899 j = i;
4900 for ( ; i <= newlen - (hislen - hisidx[type]); ++i)
4901 {
4902 temp[i].hisnum = 0;
4903 temp[i].hisstr = NULL;
4904 }
4905 for ( ; j < hislen; ++i, ++j)
4906 temp[i] = history[type][j];
4907 }
4908 else /* array becomes smaller or 0 */
4909 {
4910 j = hisidx[type];
4911 for (i = newlen - 1; ; --i)
4912 {
4913 if (i >= 0) /* copy newest entries */
4914 temp[i] = history[type][j];
4915 else /* remove older entries */
4916 vim_free(history[type][j].hisstr);
4917 if (--j < 0)
4918 j = hislen - 1;
4919 if (j == hisidx[type])
4920 break;
4921 }
4922 hisidx[type] = newlen - 1;
4923 }
4924 vim_free(history[type]);
4925 history[type] = temp;
4926 }
4927 }
4928 hislen = newlen;
4929 }
4930}
4931
4932/*
4933 * Check if command line 'str' is already in history.
4934 * If 'move_to_front' is TRUE, matching entry is moved to end of history.
4935 */
4936 static int
4937in_history(type, str, move_to_front)
4938 int type;
4939 char_u *str;
4940 int move_to_front; /* Move the entry to the front if it exists */
4941{
4942 int i;
4943 int last_i = -1;
4944
4945 if (hisidx[type] < 0)
4946 return FALSE;
4947 i = hisidx[type];
4948 do
4949 {
4950 if (history[type][i].hisstr == NULL)
4951 return FALSE;
4952 if (STRCMP(str, history[type][i].hisstr) == 0)
4953 {
4954 if (!move_to_front)
4955 return TRUE;
4956 last_i = i;
4957 break;
4958 }
4959 if (--i < 0)
4960 i = hislen - 1;
4961 } while (i != hisidx[type]);
4962
4963 if (last_i >= 0)
4964 {
4965 str = history[type][i].hisstr;
4966 while (i != hisidx[type])
4967 {
4968 if (++i >= hislen)
4969 i = 0;
4970 history[type][last_i] = history[type][i];
4971 last_i = i;
4972 }
4973 history[type][i].hisstr = str;
4974 history[type][i].hisnum = ++hisnum[type];
4975 return TRUE;
4976 }
4977 return FALSE;
4978}
4979
4980/*
4981 * Convert history name (from table above) to its HIST_ equivalent.
4982 * When "name" is empty, return "cmd" history.
4983 * Returns -1 for unknown history name.
4984 */
4985 int
4986get_histtype(name)
4987 char_u *name;
4988{
4989 int i;
4990 int len = (int)STRLEN(name);
4991
4992 /* No argument: use current history. */
4993 if (len == 0)
4994 return hist_char2type(ccline.cmdfirstc);
4995
4996 for (i = 0; history_names[i] != NULL; ++i)
4997 if (STRNICMP(name, history_names[i], len) == 0)
4998 return i;
4999
5000 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL)
5001 return hist_char2type(name[0]);
5002
5003 return -1;
5004}
5005
5006static int last_maptick = -1; /* last seen maptick */
5007
5008/*
5009 * Add the given string to the given history. If the string is already in the
5010 * history then it is moved to the front. "histype" may be one of he HIST_
5011 * values.
5012 */
5013 void
5014add_to_history(histype, new_entry, in_map, sep)
5015 int histype;
5016 char_u *new_entry;
5017 int in_map; /* consider maptick when inside a mapping */
5018 int sep; /* separator character used (search hist) */
5019{
5020 histentry_T *hisptr;
5021 int len;
5022
5023 if (hislen == 0) /* no history */
5024 return;
5025
5026 /*
5027 * Searches inside the same mapping overwrite each other, so that only
5028 * the last line is kept. Be careful not to remove a line that was moved
5029 * down, only lines that were added.
5030 */
5031 if (histype == HIST_SEARCH && in_map)
5032 {
5033 if (maptick == last_maptick)
5034 {
5035 /* Current line is from the same mapping, remove it */
5036 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];
5037 vim_free(hisptr->hisstr);
5038 hisptr->hisstr = NULL;
5039 hisptr->hisnum = 0;
5040 --hisnum[histype];
5041 if (--hisidx[HIST_SEARCH] < 0)
5042 hisidx[HIST_SEARCH] = hislen - 1;
5043 }
5044 last_maptick = -1;
5045 }
5046 if (!in_history(histype, new_entry, TRUE))
5047 {
5048 if (++hisidx[histype] == hislen)
5049 hisidx[histype] = 0;
5050 hisptr = &history[histype][hisidx[histype]];
5051 vim_free(hisptr->hisstr);
5052
5053 /* Store the separator after the NUL of the string. */
5054 len = STRLEN(new_entry);
5055 hisptr->hisstr = vim_strnsave(new_entry, len + 2);
5056 if (hisptr->hisstr != NULL)
5057 hisptr->hisstr[len + 1] = sep;
5058
5059 hisptr->hisnum = ++hisnum[histype];
5060 if (histype == HIST_SEARCH && in_map)
5061 last_maptick = maptick;
5062 }
5063}
5064
5065#if defined(FEAT_EVAL) || defined(PROTO)
5066
5067/*
5068 * Get identifier of newest history entry.
5069 * "histype" may be one of the HIST_ values.
5070 */
5071 int
5072get_history_idx(histype)
5073 int histype;
5074{
5075 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5076 || hisidx[histype] < 0)
5077 return -1;
5078
5079 return history[histype][hisidx[histype]].hisnum;
5080}
5081
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005082static struct cmdline_info *get_ccline_ptr __ARGS((void));
5083
5084/*
5085 * Get pointer to the command line info to use. cmdline_paste() may clear
5086 * ccline and put the previous value in prev_ccline.
5087 */
5088 static struct cmdline_info *
5089get_ccline_ptr()
5090{
5091 if ((State & CMDLINE) == 0)
5092 return NULL;
5093 if (ccline.cmdbuff != NULL)
5094 return &ccline;
5095 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
5096 return &prev_ccline;
5097 return NULL;
5098}
5099
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100/*
5101 * Get the current command line in allocated memory.
5102 * Only works when the command line is being edited.
5103 * Returns NULL when something is wrong.
5104 */
5105 char_u *
5106get_cmdline_str()
5107{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005108 struct cmdline_info *p = get_ccline_ptr();
5109
5110 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111 return NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005112 return vim_strnsave(p->cmdbuff, p->cmdlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113}
5114
5115/*
5116 * Get the current command line position, counted in bytes.
5117 * Zero is the first position.
5118 * Only works when the command line is being edited.
5119 * Returns -1 when something is wrong.
5120 */
5121 int
5122get_cmdline_pos()
5123{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005124 struct cmdline_info *p = get_ccline_ptr();
5125
5126 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 return -1;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005128 return p->cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129}
5130
5131/*
5132 * Set the command line byte position to "pos". Zero is the first position.
5133 * Only works when the command line is being edited.
5134 * Returns 1 when failed, 0 when OK.
5135 */
5136 int
5137set_cmdline_pos(pos)
5138 int pos;
5139{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005140 struct cmdline_info *p = get_ccline_ptr();
5141
5142 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143 return 1;
5144
5145 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
5146 * changed the command line. */
5147 if (pos < 0)
5148 new_cmdpos = 0;
5149 else
5150 new_cmdpos = pos;
5151 return 0;
5152}
5153
5154/*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005155 * Get the current command-line type.
Bram Moolenaar1e015462005-09-25 22:16:38 +00005156 * Returns ':' or '/' or '?' or '@' or '>' or '-'
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005157 * Only works when the command line is being edited.
5158 * Returns NUL when something is wrong.
5159 */
5160 int
5161get_cmdline_type()
5162{
5163 struct cmdline_info *p = get_ccline_ptr();
5164
5165 if (p == NULL)
5166 return NUL;
Bram Moolenaar1e015462005-09-25 22:16:38 +00005167 if (p->cmdfirstc == NUL)
5168 return (p->input_fn) ? '@' : '-';
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005169 return p->cmdfirstc;
5170}
5171
5172/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173 * Calculate history index from a number:
5174 * num > 0: seen as identifying number of a history entry
5175 * num < 0: relative position in history wrt newest entry
5176 * "histype" may be one of the HIST_ values.
5177 */
5178 static int
5179calc_hist_idx(histype, num)
5180 int histype;
5181 int num;
5182{
5183 int i;
5184 histentry_T *hist;
5185 int wrapped = FALSE;
5186
5187 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5188 || (i = hisidx[histype]) < 0 || num == 0)
5189 return -1;
5190
5191 hist = history[histype];
5192 if (num > 0)
5193 {
5194 while (hist[i].hisnum > num)
5195 if (--i < 0)
5196 {
5197 if (wrapped)
5198 break;
5199 i += hislen;
5200 wrapped = TRUE;
5201 }
5202 if (hist[i].hisnum == num && hist[i].hisstr != NULL)
5203 return i;
5204 }
5205 else if (-num <= hislen)
5206 {
5207 i += num + 1;
5208 if (i < 0)
5209 i += hislen;
5210 if (hist[i].hisstr != NULL)
5211 return i;
5212 }
5213 return -1;
5214}
5215
5216/*
5217 * Get a history entry by its index.
5218 * "histype" may be one of the HIST_ values.
5219 */
5220 char_u *
5221get_history_entry(histype, idx)
5222 int histype;
5223 int idx;
5224{
5225 idx = calc_hist_idx(histype, idx);
5226 if (idx >= 0)
5227 return history[histype][idx].hisstr;
5228 else
5229 return (char_u *)"";
5230}
5231
5232/*
5233 * Clear all entries of a history.
5234 * "histype" may be one of the HIST_ values.
5235 */
5236 int
5237clr_history(histype)
5238 int histype;
5239{
5240 int i;
5241 histentry_T *hisptr;
5242
5243 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT)
5244 {
5245 hisptr = history[histype];
5246 for (i = hislen; i--;)
5247 {
5248 vim_free(hisptr->hisstr);
5249 hisptr->hisnum = 0;
5250 hisptr++->hisstr = NULL;
5251 }
5252 hisidx[histype] = -1; /* mark history as cleared */
5253 hisnum[histype] = 0; /* reset identifier counter */
5254 return OK;
5255 }
5256 return FAIL;
5257}
5258
5259/*
5260 * Remove all entries matching {str} from a history.
5261 * "histype" may be one of the HIST_ values.
5262 */
5263 int
5264del_history_entry(histype, str)
5265 int histype;
5266 char_u *str;
5267{
5268 regmatch_T regmatch;
5269 histentry_T *hisptr;
5270 int idx;
5271 int i;
5272 int last;
5273 int found = FALSE;
5274
5275 regmatch.regprog = NULL;
5276 regmatch.rm_ic = FALSE; /* always match case */
5277 if (hislen != 0
5278 && histype >= 0
5279 && histype < HIST_COUNT
5280 && *str != NUL
5281 && (idx = hisidx[histype]) >= 0
5282 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING))
5283 != NULL)
5284 {
5285 i = last = idx;
5286 do
5287 {
5288 hisptr = &history[histype][i];
5289 if (hisptr->hisstr == NULL)
5290 break;
5291 if (vim_regexec(&regmatch, hisptr->hisstr, (colnr_T)0))
5292 {
5293 found = TRUE;
5294 vim_free(hisptr->hisstr);
5295 hisptr->hisstr = NULL;
5296 hisptr->hisnum = 0;
5297 }
5298 else
5299 {
5300 if (i != last)
5301 {
5302 history[histype][last] = *hisptr;
5303 hisptr->hisstr = NULL;
5304 hisptr->hisnum = 0;
5305 }
5306 if (--last < 0)
5307 last += hislen;
5308 }
5309 if (--i < 0)
5310 i += hislen;
5311 } while (i != idx);
5312 if (history[histype][idx].hisstr == NULL)
5313 hisidx[histype] = -1;
5314 }
5315 vim_free(regmatch.regprog);
5316 return found;
5317}
5318
5319/*
5320 * Remove an indexed entry from a history.
5321 * "histype" may be one of the HIST_ values.
5322 */
5323 int
5324del_history_idx(histype, idx)
5325 int histype;
5326 int idx;
5327{
5328 int i, j;
5329
5330 i = calc_hist_idx(histype, idx);
5331 if (i < 0)
5332 return FALSE;
5333 idx = hisidx[histype];
5334 vim_free(history[histype][i].hisstr);
5335
5336 /* When deleting the last added search string in a mapping, reset
5337 * last_maptick, so that the last added search string isn't deleted again.
5338 */
5339 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx)
5340 last_maptick = -1;
5341
5342 while (i != idx)
5343 {
5344 j = (i + 1) % hislen;
5345 history[histype][i] = history[histype][j];
5346 i = j;
5347 }
5348 history[histype][i].hisstr = NULL;
5349 history[histype][i].hisnum = 0;
5350 if (--i < 0)
5351 i += hislen;
5352 hisidx[histype] = i;
5353 return TRUE;
5354}
5355
5356#endif /* FEAT_EVAL */
5357
5358#if defined(FEAT_CRYPT) || defined(PROTO)
5359/*
5360 * Very specific function to remove the value in ":set key=val" from the
5361 * history.
5362 */
5363 void
5364remove_key_from_history()
5365{
5366 char_u *p;
5367 int i;
5368
5369 i = hisidx[HIST_CMD];
5370 if (i < 0)
5371 return;
5372 p = history[HIST_CMD][i].hisstr;
5373 if (p != NULL)
5374 for ( ; *p; ++p)
5375 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3]))
5376 {
5377 p = vim_strchr(p + 3, '=');
5378 if (p == NULL)
5379 break;
5380 ++p;
5381 for (i = 0; p[i] && !vim_iswhite(p[i]); ++i)
5382 if (p[i] == '\\' && p[i + 1])
5383 ++i;
5384 mch_memmove(p, p + i, STRLEN(p + i) + 1);
5385 --p;
5386 }
5387}
5388#endif
5389
5390#endif /* FEAT_CMDHIST */
5391
5392#if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO)
5393/*
5394 * Get indices "num1,num2" that specify a range within a list (not a range of
5395 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
5396 * Returns OK if parsed successfully, otherwise FAIL.
5397 */
5398 int
5399get_list_range(str, num1, num2)
5400 char_u **str;
5401 int *num1;
5402 int *num2;
5403{
5404 int len;
5405 int first = FALSE;
5406 long num;
5407
5408 *str = skipwhite(*str);
5409 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
5410 {
5411 vim_str2nr(*str, NULL, &len, FALSE, FALSE, &num, NULL);
5412 *str += len;
5413 *num1 = (int)num;
5414 first = TRUE;
5415 }
5416 *str = skipwhite(*str);
5417 if (**str == ',') /* parse "to" part of range */
5418 {
5419 *str = skipwhite(*str + 1);
5420 vim_str2nr(*str, NULL, &len, FALSE, FALSE, &num, NULL);
5421 if (len > 0)
5422 {
5423 *num2 = (int)num;
5424 *str = skipwhite(*str + len);
5425 }
5426 else if (!first) /* no number given at all */
5427 return FAIL;
5428 }
5429 else if (first) /* only one number given */
5430 *num2 = *num1;
5431 return OK;
5432}
5433#endif
5434
5435#if defined(FEAT_CMDHIST) || defined(PROTO)
5436/*
5437 * :history command - print a history
5438 */
5439 void
5440ex_history(eap)
5441 exarg_T *eap;
5442{
5443 histentry_T *hist;
5444 int histype1 = HIST_CMD;
5445 int histype2 = HIST_CMD;
5446 int hisidx1 = 1;
5447 int hisidx2 = -1;
5448 int idx;
5449 int i, j, k;
5450 char_u *end;
5451 char_u *arg = eap->arg;
5452
5453 if (hislen == 0)
5454 {
5455 MSG(_("'history' option is zero"));
5456 return;
5457 }
5458
5459 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ','))
5460 {
5461 end = arg;
5462 while (ASCII_ISALPHA(*end)
5463 || vim_strchr((char_u *)":=@>/?", *end) != NULL)
5464 end++;
5465 i = *end;
5466 *end = NUL;
5467 histype1 = get_histtype(arg);
5468 if (histype1 == -1)
5469 {
5470 if (STRICMP(arg, "all") == 0)
5471 {
5472 histype1 = 0;
5473 histype2 = HIST_COUNT-1;
5474 }
5475 else
5476 {
5477 *end = i;
5478 EMSG(_(e_trailing));
5479 return;
5480 }
5481 }
5482 else
5483 histype2 = histype1;
5484 *end = i;
5485 }
5486 else
5487 end = arg;
5488 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL)
5489 {
5490 EMSG(_(e_trailing));
5491 return;
5492 }
5493
5494 for (; !got_int && histype1 <= histype2; ++histype1)
5495 {
5496 STRCPY(IObuff, "\n # ");
5497 STRCAT(STRCAT(IObuff, history_names[histype1]), " history");
5498 MSG_PUTS_TITLE(IObuff);
5499 idx = hisidx[histype1];
5500 hist = history[histype1];
5501 j = hisidx1;
5502 k = hisidx2;
5503 if (j < 0)
5504 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum;
5505 if (k < 0)
5506 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum;
5507 if (idx >= 0 && j <= k)
5508 for (i = idx + 1; !got_int; ++i)
5509 {
5510 if (i == hislen)
5511 i = 0;
5512 if (hist[i].hisstr != NULL
5513 && hist[i].hisnum >= j && hist[i].hisnum <= k)
5514 {
5515 msg_putchar('\n');
5516 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ',
5517 hist[i].hisnum);
5518 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10)
5519 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff),
5520 (int)Columns - 10);
5521 else
5522 STRCAT(IObuff, hist[i].hisstr);
5523 msg_outtrans(IObuff);
5524 out_flush();
5525 }
5526 if (i == idx)
5527 break;
5528 }
5529 }
5530}
5531#endif
5532
5533#if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO)
5534static char_u **viminfo_history[HIST_COUNT] = {NULL, NULL, NULL, NULL};
5535static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0};
5536static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0};
5537static int viminfo_add_at_front = FALSE;
5538
5539static int hist_type2char __ARGS((int type, int use_question));
5540
5541/*
5542 * Translate a history type number to the associated character.
5543 */
5544 static int
5545hist_type2char(type, use_question)
5546 int type;
5547 int use_question; /* use '?' instead of '/' */
5548{
5549 if (type == HIST_CMD)
5550 return ':';
5551 if (type == HIST_SEARCH)
5552 {
5553 if (use_question)
5554 return '?';
5555 else
5556 return '/';
5557 }
5558 if (type == HIST_EXPR)
5559 return '=';
5560 return '@';
5561}
5562
5563/*
5564 * Prepare for reading the history from the viminfo file.
5565 * This allocates history arrays to store the read history lines.
5566 */
5567 void
5568prepare_viminfo_history(asklen)
5569 int asklen;
5570{
5571 int i;
5572 int num;
5573 int type;
5574 int len;
5575
5576 init_history();
5577 viminfo_add_at_front = (asklen != 0);
5578 if (asklen > hislen)
5579 asklen = hislen;
5580
5581 for (type = 0; type < HIST_COUNT; ++type)
5582 {
5583 /*
5584 * Count the number of empty spaces in the history list. If there are
5585 * more spaces available than we request, then fill them up.
5586 */
5587 for (i = 0, num = 0; i < hislen; i++)
5588 if (history[type][i].hisstr == NULL)
5589 num++;
5590 len = asklen;
5591 if (num > len)
5592 len = num;
5593 if (len <= 0)
5594 viminfo_history[type] = NULL;
5595 else
5596 viminfo_history[type] =
5597 (char_u **)lalloc((long_u)(len * sizeof(char_u *)), FALSE);
5598 if (viminfo_history[type] == NULL)
5599 len = 0;
5600 viminfo_hislen[type] = len;
5601 viminfo_hisidx[type] = 0;
5602 }
5603}
5604
5605/*
5606 * Accept a line from the viminfo, store it in the history array when it's
5607 * new.
5608 */
5609 int
5610read_viminfo_history(virp)
5611 vir_T *virp;
5612{
5613 int type;
5614 long_u len;
5615 char_u *val;
5616 char_u *p;
5617
5618 type = hist_char2type(virp->vir_line[0]);
5619 if (viminfo_hisidx[type] < viminfo_hislen[type])
5620 {
5621 val = viminfo_readstring(virp, 1, TRUE);
5622 if (val != NULL && *val != NUL)
5623 {
5624 if (!in_history(type, val + (type == HIST_SEARCH),
5625 viminfo_add_at_front))
5626 {
5627 /* Need to re-allocate to append the separator byte. */
5628 len = STRLEN(val);
5629 p = lalloc(len + 2, TRUE);
5630 if (p != NULL)
5631 {
5632 if (type == HIST_SEARCH)
5633 {
5634 /* Search entry: Move the separator from the first
5635 * column to after the NUL. */
5636 mch_memmove(p, val + 1, (size_t)len);
5637 p[len] = (*val == ' ' ? NUL : *val);
5638 }
5639 else
5640 {
5641 /* Not a search entry: No separator in the viminfo
5642 * file, add a NUL separator. */
5643 mch_memmove(p, val, (size_t)len + 1);
5644 p[len + 1] = NUL;
5645 }
5646 viminfo_history[type][viminfo_hisidx[type]++] = p;
5647 }
5648 }
5649 }
5650 vim_free(val);
5651 }
5652 return viminfo_readline(virp);
5653}
5654
5655 void
5656finish_viminfo_history()
5657{
5658 int idx;
5659 int i;
5660 int type;
5661
5662 for (type = 0; type < HIST_COUNT; ++type)
5663 {
5664 if (history[type] == NULL)
5665 return;
5666 idx = hisidx[type] + viminfo_hisidx[type];
5667 if (idx >= hislen)
5668 idx -= hislen;
5669 else if (idx < 0)
5670 idx = hislen - 1;
5671 if (viminfo_add_at_front)
5672 hisidx[type] = idx;
5673 else
5674 {
5675 if (hisidx[type] == -1)
5676 hisidx[type] = hislen - 1;
5677 do
5678 {
5679 if (history[type][idx].hisstr != NULL)
5680 break;
5681 if (++idx == hislen)
5682 idx = 0;
5683 } while (idx != hisidx[type]);
5684 if (idx != hisidx[type] && --idx < 0)
5685 idx = hislen - 1;
5686 }
5687 for (i = 0; i < viminfo_hisidx[type]; i++)
5688 {
5689 vim_free(history[type][idx].hisstr);
5690 history[type][idx].hisstr = viminfo_history[type][i];
5691 if (--idx < 0)
5692 idx = hislen - 1;
5693 }
5694 idx += 1;
5695 idx %= hislen;
5696 for (i = 0; i < viminfo_hisidx[type]; i++)
5697 {
5698 history[type][idx++].hisnum = ++hisnum[type];
5699 idx %= hislen;
5700 }
5701 vim_free(viminfo_history[type]);
5702 viminfo_history[type] = NULL;
5703 }
5704}
5705
5706 void
5707write_viminfo_history(fp)
5708 FILE *fp;
5709{
5710 int i;
5711 int type;
5712 int num_saved;
5713 char_u *p;
5714 int c;
5715
5716 init_history();
5717 if (hislen == 0)
5718 return;
5719 for (type = 0; type < HIST_COUNT; ++type)
5720 {
5721 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE));
5722 if (num_saved == 0)
5723 continue;
5724 if (num_saved < 0) /* Use default */
5725 num_saved = hislen;
5726 fprintf(fp, _("\n# %s History (newest to oldest):\n"),
5727 type == HIST_CMD ? _("Command Line") :
5728 type == HIST_SEARCH ? _("Search String") :
5729 type == HIST_EXPR ? _("Expression") :
5730 _("Input Line"));
5731 if (num_saved > hislen)
5732 num_saved = hislen;
5733 i = hisidx[type];
5734 if (i >= 0)
5735 while (num_saved--)
5736 {
5737 p = history[type][i].hisstr;
5738 if (p != NULL)
5739 {
Bram Moolenaar75c50c42005-06-04 22:06:24 +00005740 fputc(hist_type2char(type, TRUE), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 /* For the search history: put the separator in the second
5742 * column; use a space if there isn't one. */
5743 if (type == HIST_SEARCH)
5744 {
5745 c = p[STRLEN(p) + 1];
5746 putc(c == NUL ? ' ' : c, fp);
5747 }
5748 viminfo_writestring(fp, p);
5749 }
5750 if (--i < 0)
5751 i = hislen - 1;
5752 }
5753 }
5754}
5755#endif /* FEAT_VIMINFO */
5756
5757#if defined(FEAT_FKMAP) || defined(PROTO)
5758/*
5759 * Write a character at the current cursor+offset position.
5760 * It is directly written into the command buffer block.
5761 */
5762 void
5763cmd_pchar(c, offset)
5764 int c, offset;
5765{
5766 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
5767 {
5768 EMSG(_("E198: cmd_pchar beyond the command length"));
5769 return;
5770 }
5771 ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c;
5772 ccline.cmdbuff[ccline.cmdlen] = NUL;
5773}
5774
5775 int
5776cmd_gchar(offset)
5777 int offset;
5778{
5779 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
5780 {
5781 /* EMSG(_("cmd_gchar beyond the command length")); */
5782 return NUL;
5783 }
5784 return (int)ccline.cmdbuff[ccline.cmdpos + offset];
5785}
5786#endif
5787
5788#if defined(FEAT_CMDWIN) || defined(PROTO)
5789/*
5790 * Open a window on the current command line and history. Allow editing in
5791 * the window. Returns when the window is closed.
5792 * Returns:
5793 * CR if the command is to be executed
5794 * Ctrl_C if it is to be abandoned
5795 * K_IGNORE if editing continues
5796 */
5797 static int
5798ex_window()
5799{
5800 struct cmdline_info save_ccline;
5801 buf_T *old_curbuf = curbuf;
5802 win_T *old_curwin = curwin;
5803 buf_T *bp;
5804 win_T *wp;
5805 int i;
5806 linenr_T lnum;
5807 int histtype;
5808 garray_T winsizes;
5809 char_u typestr[2];
5810 int save_restart_edit = restart_edit;
5811 int save_State = State;
5812 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00005813#ifdef FEAT_RIGHTLEFT
5814 int save_cmdmsg_rl = cmdmsg_rl;
5815#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005816
5817 /* Can't do this recursively. Can't do it when typing a password. */
5818 if (cmdwin_type != 0
5819# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
5820 || cmdline_star > 0
5821# endif
5822 )
5823 {
5824 beep_flush();
5825 return K_IGNORE;
5826 }
5827
5828 /* Save current window sizes. */
5829 win_size_save(&winsizes);
5830
5831# ifdef FEAT_AUTOCMD
5832 /* Don't execute autocommands while creating the window. */
5833 ++autocmd_block;
5834# endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005835 /* don't use a new tab page */
5836 cmdmod.tab = 0;
5837
Bram Moolenaar071d4272004-06-13 20:20:40 +00005838 /* Create a window for the command-line buffer. */
5839 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
5840 {
5841 beep_flush();
5842 return K_IGNORE;
5843 }
5844 cmdwin_type = ccline.cmdfirstc;
5845 if (cmdwin_type == NUL)
5846 cmdwin_type = '-';
5847
5848 /* Create the command-line buffer empty. */
5849 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE);
5850 (void)setfname(curbuf, (char_u *)"command-line", NULL, TRUE);
5851 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
5852 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
5853 curbuf->b_p_ma = TRUE;
5854# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00005855 curwin->w_p_rl = cmdmsg_rl;
5856 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857# endif
5858# ifdef FEAT_SCROLLBIND
5859 curwin->w_p_scb = FALSE;
5860# endif
5861
5862# ifdef FEAT_AUTOCMD
5863 /* Do execute autocommands for setting the filetype (load syntax). */
5864 --autocmd_block;
5865# endif
5866
Bram Moolenaar46152342005-09-07 21:18:43 +00005867 /* Showing the prompt may have set need_wait_return, reset it. */
5868 need_wait_return = FALSE;
5869
Bram Moolenaar071d4272004-06-13 20:20:40 +00005870 histtype = hist_char2type(ccline.cmdfirstc);
5871 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
5872 {
5873 if (p_wc == TAB)
5874 {
5875 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
5876 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
5877 }
5878 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
5879 }
5880
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00005881 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
5882 * sets 'textwidth' to 78). */
5883 curbuf->b_p_tw = 0;
5884
Bram Moolenaar071d4272004-06-13 20:20:40 +00005885 /* Fill the buffer with the history. */
5886 init_history();
5887 if (hislen > 0)
5888 {
5889 i = hisidx[histtype];
5890 if (i >= 0)
5891 {
5892 lnum = 0;
5893 do
5894 {
5895 if (++i == hislen)
5896 i = 0;
5897 if (history[histtype][i].hisstr != NULL)
5898 ml_append(lnum++, history[histtype][i].hisstr,
5899 (colnr_T)0, FALSE);
5900 }
5901 while (i != hisidx[histtype]);
5902 }
5903 }
5904
5905 /* Replace the empty last line with the current command-line and put the
5906 * cursor there. */
5907 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
5908 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5909 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00005910 changed_line_abv_curs();
5911 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00005912 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005913
5914 /* Save the command line info, can be used recursively. */
5915 save_ccline = ccline;
5916 ccline.cmdbuff = NULL;
5917 ccline.cmdprompt = NULL;
5918
5919 /* No Ex mode here! */
5920 exmode_active = 0;
5921
5922 State = NORMAL;
5923# ifdef FEAT_MOUSE
5924 setmouse();
5925# endif
5926
5927# ifdef FEAT_AUTOCMD
5928 /* Trigger CmdwinEnter autocommands. */
5929 typestr[0] = cmdwin_type;
5930 typestr[1] = NUL;
5931 apply_autocmds(EVENT_CMDWINENTER, typestr, typestr, FALSE, curbuf);
5932# endif
5933
5934 i = RedrawingDisabled;
5935 RedrawingDisabled = 0;
5936
5937 /*
5938 * Call the main loop until <CR> or CTRL-C is typed.
5939 */
5940 cmdwin_result = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005941 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942
5943 RedrawingDisabled = i;
5944
5945# ifdef FEAT_AUTOCMD
5946 /* Trigger CmdwinLeave autocommands. */
5947 apply_autocmds(EVENT_CMDWINLEAVE, typestr, typestr, FALSE, curbuf);
5948# endif
5949
5950 /* Restore the comand line info. */
5951 ccline = save_ccline;
5952 cmdwin_type = 0;
5953
5954 exmode_active = save_exmode;
5955
5956 /* Safety check: The old window or buffer was deleted: It's a a bug when
5957 * this happens! */
5958 if (!win_valid(old_curwin) || !buf_valid(old_curbuf))
5959 {
5960 cmdwin_result = Ctrl_C;
5961 EMSG(_("E199: Active window or buffer deleted"));
5962 }
5963 else
5964 {
5965# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5966 /* autocmds may abort script processing */
5967 if (aborting() && cmdwin_result != K_IGNORE)
5968 cmdwin_result = Ctrl_C;
5969# endif
5970 /* Set the new command line from the cmdline buffer. */
5971 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00005972 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005973 {
Bram Moolenaar46152342005-09-07 21:18:43 +00005974 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
5975
5976 if (histtype == HIST_CMD)
5977 {
5978 /* Execute the command directly. */
5979 ccline.cmdbuff = vim_strsave((char_u *)p);
5980 cmdwin_result = CAR;
5981 }
5982 else
5983 {
5984 /* First need to cancel what we were doing. */
5985 ccline.cmdbuff = NULL;
5986 stuffcharReadbuff(':');
5987 stuffReadbuff((char_u *)p);
5988 stuffcharReadbuff(CAR);
5989 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005990 }
5991 else if (cmdwin_result == K_XF2) /* :qa typed */
5992 {
5993 ccline.cmdbuff = vim_strsave((char_u *)"qa");
5994 cmdwin_result = CAR;
5995 }
5996 else
5997 ccline.cmdbuff = vim_strsave(ml_get_curline());
5998 if (ccline.cmdbuff == NULL)
5999 cmdwin_result = Ctrl_C;
6000 else
6001 {
6002 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
6003 ccline.cmdbufflen = ccline.cmdlen + 1;
6004 ccline.cmdpos = curwin->w_cursor.col;
6005 if (ccline.cmdpos > ccline.cmdlen)
6006 ccline.cmdpos = ccline.cmdlen;
6007 if (cmdwin_result == K_IGNORE)
6008 {
6009 set_cmdspos_cursor();
6010 redrawcmd();
6011 }
6012 }
6013
6014# ifdef FEAT_AUTOCMD
6015 /* Don't execute autocommands while deleting the window. */
6016 ++autocmd_block;
6017# endif
6018 wp = curwin;
6019 bp = curbuf;
6020 win_goto(old_curwin);
6021 win_close(wp, TRUE);
6022 close_buffer(NULL, bp, DOBUF_WIPE);
6023
6024 /* Restore window sizes. */
6025 win_size_restore(&winsizes);
6026
6027# ifdef FEAT_AUTOCMD
6028 --autocmd_block;
6029# endif
6030 }
6031
6032 ga_clear(&winsizes);
6033 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00006034# ifdef FEAT_RIGHTLEFT
6035 cmdmsg_rl = save_cmdmsg_rl;
6036# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006037
6038 State = save_State;
6039# ifdef FEAT_MOUSE
6040 setmouse();
6041# endif
6042
6043 return cmdwin_result;
6044}
6045#endif /* FEAT_CMDWIN */
6046
6047/*
6048 * Used for commands that either take a simple command string argument, or:
6049 * cmd << endmarker
6050 * {script}
6051 * endmarker
6052 * Returns a pointer to allocated memory with {script} or NULL.
6053 */
6054 char_u *
6055script_get(eap, cmd)
6056 exarg_T *eap;
6057 char_u *cmd;
6058{
6059 char_u *theline;
6060 char *end_pattern = NULL;
6061 char dot[] = ".";
6062 garray_T ga;
6063
6064 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
6065 return NULL;
6066
6067 ga_init2(&ga, 1, 0x400);
6068
6069 if (cmd[2] != NUL)
6070 end_pattern = (char *)skipwhite(cmd + 2);
6071 else
6072 end_pattern = dot;
6073
6074 for (;;)
6075 {
6076 theline = eap->getline(
6077#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00006078 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00006079#endif
6080 NUL, eap->cookie, 0);
6081
6082 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
6083 break;
6084
6085 ga_concat(&ga, theline);
6086 ga_append(&ga, '\n');
6087 vim_free(theline);
6088 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00006089 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090
6091 return (char_u *)ga.ga_data;
6092}