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