blob: d8db15abf6610875e6b144c82d0b066af2d5b5f0 [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 */
Bram Moolenaar5ae636b2012-04-30 18:48:53 +020028 int cmdfirstc; /* ':', '/', '?', '=', '>' or NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +000029 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 Moolenaard6e7cc62008-09-14 12:42:29 +000034 expand_T *xpc; /* struct being used for expansion, xp_pattern
35 may point into cmdbuff */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000036 int xp_context; /* type of expansion */
37# ifdef FEAT_EVAL
38 char_u *xp_arg; /* user-defined expansion arg */
Bram Moolenaar93db9752006-11-21 10:29:45 +000039 int input_fn; /* when TRUE Invoked for input() function */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000040# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000041};
42
Bram Moolenaard6e7cc62008-09-14 12:42:29 +000043/* The current cmdline_info. It is initialized in getcmdline() and after that
44 * used by other functions. When invoking getcmdline() recursively it needs
45 * to be saved with save_cmdline() and restored with restore_cmdline().
46 * TODO: make it local to getcmdline() and pass it around. */
47static struct cmdline_info ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +000048
49static int cmd_showtail; /* Only show path tail in lists ? */
50
51#ifdef FEAT_EVAL
52static int new_cmdpos; /* position set by set_cmdline_pos() */
53#endif
54
55#ifdef FEAT_CMDHIST
56typedef struct hist_entry
57{
58 int hisnum; /* identifying number */
Bram Moolenaarb3049f42013-04-05 18:58:47 +020059 int viminfo; /* when TRUE hisstr comes from viminfo */
Bram Moolenaar071d4272004-06-13 20:20:40 +000060 char_u *hisstr; /* actual entry, separator char after the NUL */
61} histentry_T;
62
63static histentry_T *(history[HIST_COUNT]) = {NULL, NULL, NULL, NULL, NULL};
64static int hisidx[HIST_COUNT] = {-1, -1, -1, -1, -1}; /* lastused entry */
65static int hisnum[HIST_COUNT] = {0, 0, 0, 0, 0};
66 /* identifying (unique) number of newest history entry */
67static int hislen = 0; /* actual length of history tables */
68
69static int hist_char2type __ARGS((int c));
Bram Moolenaar071d4272004-06-13 20:20:40 +000070
Bram Moolenaar07219f92013-04-14 23:19:36 +020071static int in_history __ARGS((int, char_u *, int, int, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +000072# ifdef FEAT_EVAL
73static int calc_hist_idx __ARGS((int histype, int num));
74# endif
75#endif
76
77#ifdef FEAT_RIGHTLEFT
78static int cmd_hkmap = 0; /* Hebrew mapping during command line */
79#endif
80
81#ifdef FEAT_FKMAP
82static int cmd_fkmap = 0; /* Farsi mapping during command line */
83#endif
84
85static int cmdline_charsize __ARGS((int idx));
86static void set_cmdspos __ARGS((void));
87static void set_cmdspos_cursor __ARGS((void));
88#ifdef FEAT_MBYTE
89static void correct_cmdspos __ARGS((int idx, int cells));
90#endif
91static void alloc_cmdbuff __ARGS((int len));
92static int realloc_cmdbuff __ARGS((int len));
93static void draw_cmdline __ARGS((int start, int len));
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +000094static void save_cmdline __ARGS((struct cmdline_info *ccp));
95static void restore_cmdline __ARGS((struct cmdline_info *ccp));
Bram Moolenaar1769d5a2006-10-17 14:25:24 +000096static int cmdline_paste __ARGS((int regname, int literally, int remcr));
Bram Moolenaar071d4272004-06-13 20:20:40 +000097#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
98static void redrawcmd_preedit __ARGS((void));
99#endif
100#ifdef FEAT_WILDMENU
101static void cmdline_del __ARGS((int from));
102#endif
103static void redrawcmdprompt __ARGS((void));
104static void cursorcmd __ARGS((void));
105static int ccheck_abbr __ARGS((int));
Bram Moolenaarb3479632012-11-28 16:49:58 +0100106static int nextwild __ARGS((expand_T *xp, int type, int options, int escape));
Bram Moolenaar45360022005-07-21 21:08:21 +0000107static void escape_fname __ARGS((char_u **pp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108static int showmatches __ARGS((expand_T *xp, int wildmenu));
109static void set_expand_context __ARGS((expand_T *xp));
110static int ExpandFromContext __ARGS((expand_T *xp, char_u *, int *, char_u ***, int));
111static int expand_showtail __ARGS((expand_T *xp));
112#ifdef FEAT_CMDL_COMPL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000113static int expand_shellcmd __ARGS((char_u *filepat, int *num_file, char_u ***file, int flagsarg));
Bram Moolenaar0c7437a2011-06-26 19:40:23 +0200114static int ExpandRTDir __ARGS((char_u *pat, int *num_file, char_u ***file, char *dirname[]));
Bram Moolenaar5ae636b2012-04-30 18:48:53 +0200115# ifdef FEAT_CMDHIST
116static char_u *get_history_arg __ARGS((expand_T *xp, int idx));
117# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
119static int ExpandUserDefined __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file));
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000120static int ExpandUserList __ARGS((expand_T *xp, int *num_file, char_u ***file));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121# endif
122#endif
Bram Moolenaar25a6df92013-04-06 14:29:00 +0200123#ifdef FEAT_CMDHIST
124static void clear_hist_entry __ARGS((histentry_T *hisptr));
125#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126
127#ifdef FEAT_CMDWIN
128static int ex_window __ARGS((void));
129#endif
130
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200131#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
132static int
133#ifdef __BORLANDC__
134_RTLENTRYF
135#endif
136sort_func_compare __ARGS((const void *s1, const void *s2));
137#endif
138
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139/*
140 * getcmdline() - accept a command line starting with firstc.
141 *
142 * firstc == ':' get ":" command line.
143 * firstc == '/' or '?' get search pattern
144 * firstc == '=' get expression
145 * firstc == '@' get text for input() function
146 * firstc == '>' get text for debug mode
147 * firstc == NUL get text for :insert command
148 * firstc == -1 like NUL, and break on CTRL-C
149 *
150 * The line is collected in ccline.cmdbuff, which is reallocated to fit the
151 * command line.
152 *
153 * Careful: getcmdline() can be called recursively!
154 *
155 * Return pointer to allocated string if there is a commandline, NULL
156 * otherwise.
157 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158 char_u *
159getcmdline(firstc, count, indent)
160 int firstc;
Bram Moolenaar78a15312009-05-15 19:33:18 +0000161 long count UNUSED; /* only used for incremental search */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162 int indent; /* indent for inside conditionals */
163{
164 int c;
165 int i;
166 int j;
167 int gotesc = FALSE; /* TRUE when <ESC> just typed */
168 int do_abbr; /* when TRUE check for abbr. */
169#ifdef FEAT_CMDHIST
170 char_u *lookfor = NULL; /* string to match */
171 int hiscnt; /* current history line in use */
172 int histype; /* history type to be used */
173#endif
174#ifdef FEAT_SEARCH_EXTRA
175 pos_T old_cursor;
176 colnr_T old_curswant;
177 colnr_T old_leftcol;
178 linenr_T old_topline;
179# ifdef FEAT_DIFF
180 int old_topfill;
181# endif
182 linenr_T old_botline;
183 int did_incsearch = FALSE;
184 int incsearch_postponed = FALSE;
185#endif
186 int did_wild_list = FALSE; /* did wild_list() recently */
187 int wim_index = 0; /* index in wim_flags[] */
188 int res;
189 int save_msg_scroll = msg_scroll;
190 int save_State = State; /* remember State when called */
191 int some_key_typed = FALSE; /* one of the keys was typed */
192#ifdef FEAT_MOUSE
193 /* mouse drag and release events are ignored, unless they are
194 * preceded with a mouse down event */
195 int ignore_drag_release = TRUE;
196#endif
197#ifdef FEAT_EVAL
198 int break_ctrl_c = FALSE;
199#endif
200 expand_T xpc;
201 long *b_im_ptr = NULL;
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000202#if defined(FEAT_WILDMENU) || defined(FEAT_EVAL) || defined(FEAT_SEARCH_EXTRA)
203 /* Everything that may work recursively should save and restore the
204 * current command line in save_ccline. That includes update_screen(), a
205 * custom status line may invoke ":normal". */
206 struct cmdline_info save_ccline;
207#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208
209#ifdef FEAT_SNIFF
210 want_sniff_request = 0;
211#endif
212#ifdef FEAT_EVAL
213 if (firstc == -1)
214 {
215 firstc = NUL;
216 break_ctrl_c = TRUE;
217 }
218#endif
219#ifdef FEAT_RIGHTLEFT
220 /* start without Hebrew mapping for a command line */
221 if (firstc == ':' || firstc == '=' || firstc == '>')
222 cmd_hkmap = 0;
223#endif
224
225 ccline.overstrike = FALSE; /* always start in insert mode */
226#ifdef FEAT_SEARCH_EXTRA
227 old_cursor = curwin->w_cursor; /* needs to be restored later */
228 old_curswant = curwin->w_curswant;
229 old_leftcol = curwin->w_leftcol;
230 old_topline = curwin->w_topline;
231# ifdef FEAT_DIFF
232 old_topfill = curwin->w_topfill;
233# endif
234 old_botline = curwin->w_botline;
235#endif
236
237 /*
238 * set some variables for redrawcmd()
239 */
240 ccline.cmdfirstc = (firstc == '@' ? 0 : firstc);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000241 ccline.cmdindent = (firstc > 0 ? indent : 0);
242
243 /* alloc initial ccline.cmdbuff */
244 alloc_cmdbuff(exmode_active ? 250 : indent + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 if (ccline.cmdbuff == NULL)
246 return NULL; /* out of memory */
247 ccline.cmdlen = ccline.cmdpos = 0;
248 ccline.cmdbuff[0] = NUL;
249
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000250 /* autoindent for :insert and :append */
251 if (firstc <= 0)
252 {
253 copy_spaces(ccline.cmdbuff, indent);
254 ccline.cmdbuff[indent] = NUL;
255 ccline.cmdpos = indent;
256 ccline.cmdspos = indent;
257 ccline.cmdlen = indent;
258 }
259
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260 ExpandInit(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000261 ccline.xpc = &xpc;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262
263#ifdef FEAT_RIGHTLEFT
264 if (curwin->w_p_rl && *curwin->w_p_rlc == 's'
265 && (firstc == '/' || firstc == '?'))
266 cmdmsg_rl = TRUE;
267 else
268 cmdmsg_rl = FALSE;
269#endif
270
271 redir_off = TRUE; /* don't redirect the typed command */
272 if (!cmd_silent)
273 {
274 i = msg_scrolled;
275 msg_scrolled = 0; /* avoid wait_return message */
276 gotocmdline(TRUE);
277 msg_scrolled += i;
278 redrawcmdprompt(); /* draw prompt or indent */
279 set_cmdspos();
280 }
281 xpc.xp_context = EXPAND_NOTHING;
282 xpc.xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000283#ifndef BACKSLASH_IN_FILENAME
284 xpc.xp_shell = FALSE;
285#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000287#if defined(FEAT_EVAL)
288 if (ccline.input_fn)
289 {
290 xpc.xp_context = ccline.xp_context;
291 xpc.xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +0000292# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000293 xpc.xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +0000294# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000295 }
296#endif
297
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298 /*
299 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when
300 * doing ":@0" when register 0 doesn't contain a CR.
301 */
302 msg_scroll = FALSE;
303
304 State = CMDLINE;
305
306 if (firstc == '/' || firstc == '?' || firstc == '@')
307 {
308 /* Use ":lmap" mappings for search pattern and input(). */
309 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT)
310 b_im_ptr = &curbuf->b_p_iminsert;
311 else
312 b_im_ptr = &curbuf->b_p_imsearch;
313 if (*b_im_ptr == B_IMODE_LMAP)
314 State |= LANGMAP;
315#ifdef USE_IM_CONTROL
316 im_set_active(*b_im_ptr == B_IMODE_IM);
317#endif
318 }
319#ifdef USE_IM_CONTROL
320 else if (p_imcmdline)
321 im_set_active(TRUE);
322#endif
323
324#ifdef FEAT_MOUSE
325 setmouse();
326#endif
327#ifdef CURSOR_SHAPE
328 ui_cursor_shape(); /* may show different cursor shape */
329#endif
330
Bram Moolenaarf4d11452005-12-02 00:46:37 +0000331 /* When inside an autocommand for writing "exiting" may be set and
332 * terminal mode set to cooked. Need to set raw mode here then. */
333 settmode(TMODE_RAW);
334
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335#ifdef FEAT_CMDHIST
336 init_history();
337 hiscnt = hislen; /* set hiscnt to impossible history value */
338 histype = hist_char2type(firstc);
339#endif
340
341#ifdef FEAT_DIGRAPHS
Bram Moolenaar3c65e312009-04-29 16:47:23 +0000342 do_digraph(-1); /* init digraph typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343#endif
344
Bram Moolenaar15a35c42014-06-25 12:26:46 +0200345 /* If something above caused an error, reset the flags, we do want to type
346 * and execute commands. Display may be messed up a bit. */
347 if (did_emsg)
348 redrawcmd();
349 did_emsg = FALSE;
350 got_int = FALSE;
351
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352 /*
353 * Collect the command string, handling editing keys.
354 */
355 for (;;)
356 {
Bram Moolenaar29b2d262006-09-10 19:07:28 +0000357 redir_off = TRUE; /* Don't redirect the typed command.
358 Repeated, because a ":redir" inside
359 completion may switch it on. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360#ifdef USE_ON_FLY_SCROLL
361 dont_scroll = FALSE; /* allow scrolling here */
362#endif
363 quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */
364
365 cursorcmd(); /* set the cursor on the right spot */
Bram Moolenaar30405d32008-01-02 20:55:27 +0000366
367 /* Get a character. Ignore K_IGNORE, it should not do anything, such
368 * as stop completion. */
369 do
370 {
371 c = safe_vgetc();
372 } while (c == K_IGNORE);
373
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 if (KeyTyped)
375 {
376 some_key_typed = TRUE;
377#ifdef FEAT_RIGHTLEFT
378 if (cmd_hkmap)
379 c = hkmap(c);
380# ifdef FEAT_FKMAP
381 if (cmd_fkmap)
382 c = cmdl_fkmap(c);
383# endif
384 if (cmdmsg_rl && !KeyStuffed)
385 {
386 /* Invert horizontal movements and operations. Only when
387 * typed by the user directly, not when the result of a
388 * mapping. */
389 switch (c)
390 {
391 case K_RIGHT: c = K_LEFT; break;
392 case K_S_RIGHT: c = K_S_LEFT; break;
393 case K_C_RIGHT: c = K_C_LEFT; break;
394 case K_LEFT: c = K_RIGHT; break;
395 case K_S_LEFT: c = K_S_RIGHT; break;
396 case K_C_LEFT: c = K_C_RIGHT; break;
397 }
398 }
399#endif
400 }
401
402 /*
403 * Ignore got_int when CTRL-C was typed here.
404 * Don't ignore it in :global, we really need to break then, e.g., for
405 * ":g/pat/normal /pat" (without the <CR>).
406 * Don't ignore it for the input() function.
407 */
408 if ((c == Ctrl_C
409#ifdef UNIX
410 || c == intr_char
411#endif
412 )
413#if defined(FEAT_EVAL) || defined(FEAT_CRYPT)
414 && firstc != '@'
415#endif
416#ifdef FEAT_EVAL
417 && !break_ctrl_c
418#endif
419 && !global_busy)
420 got_int = FALSE;
421
422#ifdef FEAT_CMDHIST
423 /* free old command line when finished moving around in the history
424 * list */
425 if (lookfor != NULL
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000426 && c != K_S_DOWN && c != K_S_UP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000427 && c != K_DOWN && c != K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 && c != K_PAGEDOWN && c != K_PAGEUP
429 && c != K_KPAGEDOWN && c != K_KPAGEUP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000430 && c != K_LEFT && c != K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N)))
432 {
433 vim_free(lookfor);
434 lookfor = NULL;
435 }
436#endif
437
438 /*
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000439 * When there are matching completions to select <S-Tab> works like
440 * CTRL-P (unless 'wc' is <S-Tab>).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441 */
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000442 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443 c = Ctrl_P;
444
445#ifdef FEAT_WILDMENU
446 /* Special translations for 'wildmenu' */
447 if (did_wild_list && p_wmnu)
448 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000449 if (c == K_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450 c = Ctrl_P;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000451 else if (c == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452 c = Ctrl_N;
453 }
454 /* Hitting CR after "emenu Name.": complete submenu */
455 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu
456 && ccline.cmdpos > 1
457 && ccline.cmdbuff[ccline.cmdpos - 1] == '.'
458 && ccline.cmdbuff[ccline.cmdpos - 2] != '\\'
459 && (c == '\n' || c == '\r' || c == K_KENTER))
460 c = K_DOWN;
461#endif
462
463 /* free expanded names when finished walking through matches */
464 if (xpc.xp_numfiles != -1
465 && !(c == p_wc && KeyTyped) && c != p_wcm
466 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A
467 && c != Ctrl_L)
468 {
469 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
470 did_wild_list = FALSE;
471#ifdef FEAT_WILDMENU
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000472 if (!p_wmnu || (c != K_UP && c != K_DOWN))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473#endif
474 xpc.xp_context = EXPAND_NOTHING;
475 wim_index = 0;
476#ifdef FEAT_WILDMENU
477 if (p_wmnu && wild_menu_showing != 0)
478 {
479 int skt = KeyTyped;
Bram Moolenaar1e015462005-09-25 22:16:38 +0000480 int old_RedrawingDisabled = RedrawingDisabled;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000481
482 if (ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000483 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484
485 if (wild_menu_showing == WM_SCROLLED)
486 {
487 /* Entered command line, move it up */
488 cmdline_row--;
489 redrawcmd();
490 }
491 else if (save_p_ls != -1)
492 {
493 /* restore 'laststatus' and 'winminheight' */
494 p_ls = save_p_ls;
495 p_wmh = save_p_wmh;
496 last_status(FALSE);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000497 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498 update_screen(VALID); /* redraw the screen NOW */
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000499 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 redrawcmd();
501 save_p_ls = -1;
502 }
503 else
504 {
505# ifdef FEAT_VERTSPLIT
506 win_redraw_last_status(topframe);
507# else
508 lastwin->w_redr_status = TRUE;
509# endif
510 redraw_statuslines();
511 }
512 KeyTyped = skt;
513 wild_menu_showing = 0;
Bram Moolenaar1e015462005-09-25 22:16:38 +0000514 if (ccline.input_fn)
515 RedrawingDisabled = old_RedrawingDisabled;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000516 }
517#endif
518 }
519
520#ifdef FEAT_WILDMENU
521 /* Special translations for 'wildmenu' */
522 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu)
523 {
524 /* Hitting <Down> after "emenu Name.": complete submenu */
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000525 if (c == K_DOWN && ccline.cmdpos > 0
526 && ccline.cmdbuff[ccline.cmdpos - 1] == '.')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 c = p_wc;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000528 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529 {
530 /* Hitting <Up>: Remove one submenu name in front of the
531 * cursor */
532 int found = FALSE;
533
534 j = (int)(xpc.xp_pattern - ccline.cmdbuff);
535 i = 0;
536 while (--j > 0)
537 {
538 /* check for start of menu name */
539 if (ccline.cmdbuff[j] == ' '
540 && ccline.cmdbuff[j - 1] != '\\')
541 {
542 i = j + 1;
543 break;
544 }
545 /* check for start of submenu name */
546 if (ccline.cmdbuff[j] == '.'
547 && ccline.cmdbuff[j - 1] != '\\')
548 {
549 if (found)
550 {
551 i = j + 1;
552 break;
553 }
554 else
555 found = TRUE;
556 }
557 }
558 if (i > 0)
559 cmdline_del(i);
560 c = p_wc;
561 xpc.xp_context = EXPAND_NOTHING;
562 }
563 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000564 if ((xpc.xp_context == EXPAND_FILES
Bram Moolenaar446cb832008-06-24 21:56:24 +0000565 || xpc.xp_context == EXPAND_DIRECTORIES
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000566 || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 {
568 char_u upseg[5];
569
570 upseg[0] = PATHSEP;
571 upseg[1] = '.';
572 upseg[2] = '.';
573 upseg[3] = PATHSEP;
574 upseg[4] = NUL;
575
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000576 if (c == K_DOWN
577 && ccline.cmdpos > 0
578 && ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP
579 && (ccline.cmdpos < 3
580 || ccline.cmdbuff[ccline.cmdpos - 2] != '.'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581 || ccline.cmdbuff[ccline.cmdpos - 3] != '.'))
582 {
583 /* go down a directory */
584 c = p_wc;
585 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000586 else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587 {
588 /* If in a direct ancestor, strip off one ../ to go down */
589 int found = FALSE;
590
591 j = ccline.cmdpos;
592 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
593 while (--j > i)
594 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000595#ifdef FEAT_MBYTE
596 if (has_mbyte)
597 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
598#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 if (vim_ispathsep(ccline.cmdbuff[j]))
600 {
601 found = TRUE;
602 break;
603 }
604 }
605 if (found
606 && ccline.cmdbuff[j - 1] == '.'
607 && ccline.cmdbuff[j - 2] == '.'
608 && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2))
609 {
610 cmdline_del(j - 2);
611 c = p_wc;
612 }
613 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000614 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 {
616 /* go up a directory */
617 int found = FALSE;
618
619 j = ccline.cmdpos - 1;
620 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
621 while (--j > i)
622 {
623#ifdef FEAT_MBYTE
624 if (has_mbyte)
625 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
626#endif
627 if (vim_ispathsep(ccline.cmdbuff[j])
628#ifdef BACKSLASH_IN_FILENAME
629 && vim_strchr(" *?[{`$%#", ccline.cmdbuff[j + 1])
630 == NULL
631#endif
632 )
633 {
634 if (found)
635 {
636 i = j + 1;
637 break;
638 }
639 else
640 found = TRUE;
641 }
642 }
643
644 if (!found)
645 j = i;
646 else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0)
647 j += 4;
648 else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0
649 && j == i)
650 j += 3;
651 else
652 j = 0;
653 if (j > 0)
654 {
655 /* TODO this is only for DOS/UNIX systems - need to put in
656 * machine-specific stuff here and in upseg init */
657 cmdline_del(j);
658 put_on_cmdline(upseg + 1, 3, FALSE);
659 }
660 else if (ccline.cmdpos > i)
661 cmdline_del(i);
Bram Moolenaar96a89642011-12-08 18:44:51 +0100662
663 /* Now complete in the new directory. Set KeyTyped in case the
664 * Up key came from a mapping. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000665 c = p_wc;
Bram Moolenaar96a89642011-12-08 18:44:51 +0100666 KeyTyped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667 }
668 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669
670#endif /* FEAT_WILDMENU */
671
672 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert
673 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */
674 if (c == Ctrl_BSL)
675 {
676 ++no_mapping;
677 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000678 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679 --no_mapping;
680 --allow_keys;
Bram Moolenaarb7356812012-10-11 04:04:37 +0200681 /* CTRL-\ e doesn't work when obtaining an expression, unless it
682 * is in a mapping. */
683 if (c != Ctrl_N && c != Ctrl_G && (c != 'e'
684 || (ccline.cmdfirstc == '=' && KeyTyped)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685 {
686 vungetc(c);
687 c = Ctrl_BSL;
688 }
689#ifdef FEAT_EVAL
690 else if (c == 'e')
691 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +0200692 char_u *p = NULL;
693 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694
695 /*
696 * Replace the command line with the result of an expression.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000697 * Need to save and restore the current command line, to be
698 * able to enter a new one...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 */
700 if (ccline.cmdpos == ccline.cmdlen)
701 new_cmdpos = 99999; /* keep it at the end */
702 else
703 new_cmdpos = ccline.cmdpos;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000704
705 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000707 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 if (c == '=')
709 {
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000710 /* Need to save and restore ccline. And set "textlock"
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000711 * to avoid nasty things like going to another buffer when
712 * evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000713 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000714 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715 p = get_expr_line();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000716 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000717 restore_cmdline(&save_ccline);
718
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200719 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000720 {
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200721 len = (int)STRLEN(p);
722 if (realloc_cmdbuff(len + 1) == OK)
723 {
724 ccline.cmdlen = len;
725 STRCPY(ccline.cmdbuff, p);
726 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200728 /* Restore the cursor or use the position set with
729 * set_cmdline_pos(). */
730 if (new_cmdpos > ccline.cmdlen)
731 ccline.cmdpos = ccline.cmdlen;
732 else
733 ccline.cmdpos = new_cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200735 KeyTyped = FALSE; /* Don't do p_wc completion. */
736 redrawcmd();
737 goto cmdline_changed;
738 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 }
740 }
741 beep_flush();
Bram Moolenaar66b4bf82010-11-16 14:06:08 +0100742 got_int = FALSE; /* don't abandon the command line */
743 did_emsg = FALSE;
744 emsg_on_display = FALSE;
745 redrawcmd();
746 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 }
748#endif
749 else
750 {
751 if (c == Ctrl_G && p_im && restart_edit == 0)
752 restart_edit = 'a';
753 gotesc = TRUE; /* will free ccline.cmdbuff after putting it
754 in history */
755 goto returncmd; /* back to Normal mode */
756 }
757 }
758
759#ifdef FEAT_CMDWIN
760 if (c == cedit_key || c == K_CMDWIN)
761 {
Bram Moolenaar58da7072014-09-09 18:45:49 +0200762 if (ex_normal_busy == 0 && got_int == FALSE)
763 {
764 /*
765 * Open a window to edit the command line (and history).
766 */
767 c = ex_window();
768 some_key_typed = TRUE;
769 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 }
771# ifdef FEAT_DIGRAPHS
772 else
773# endif
774#endif
775#ifdef FEAT_DIGRAPHS
776 c = do_digraph(c);
777#endif
778
779 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC
780 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL)))
781 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000782 /* In Ex mode a backslash escapes a newline. */
783 if (exmode_active
784 && c != ESC
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000785 && ccline.cmdpos == ccline.cmdlen
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000786 && ccline.cmdpos > 0
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000787 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000789 if (c == K_KENTER)
790 c = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000792 else
793 {
794 gotesc = FALSE; /* Might have typed ESC previously, don't
795 truncate the cmdline now. */
796 if (ccheck_abbr(c + ABBR_OFF))
797 goto cmdline_changed;
798 if (!cmd_silent)
799 {
800 windgoto(msg_row, 0);
801 out_flush();
802 }
803 break;
804 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805 }
806
807 /*
808 * Completion for 'wildchar' or 'wildcharm' key.
809 * - hitting <ESC> twice means: abandon command line.
810 * - wildcard expansion is only done when the 'wildchar' key is really
811 * typed, not when it comes from a macro
812 */
813 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm)
814 {
815 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */
816 {
817 /* if 'wildmode' contains "list" may still need to list */
818 if (xpc.xp_numfiles > 1
819 && !did_wild_list
820 && (wim_flags[wim_index] & WIM_LIST))
821 {
822 (void)showmatches(&xpc, FALSE);
823 redrawcmd();
824 did_wild_list = TRUE;
825 }
826 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100827 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
828 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100830 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
831 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 else
833 res = OK; /* don't insert 'wildchar' now */
834 }
835 else /* typed p_wc first time */
836 {
837 wim_index = 0;
838 j = ccline.cmdpos;
839 /* if 'wildmode' first contains "longest", get longest
840 * common part */
841 if (wim_flags[0] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100842 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
843 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 else
Bram Moolenaarb3479632012-11-28 16:49:58 +0100845 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP,
846 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847
848 /* if interrupted while completing, behave like it failed */
849 if (got_int)
850 {
851 (void)vpeekc(); /* remove <C-C> from input stream */
852 got_int = FALSE; /* don't abandon the command line */
853 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
854#ifdef FEAT_WILDMENU
855 xpc.xp_context = EXPAND_NOTHING;
856#endif
857 goto cmdline_changed;
858 }
859
860 /* when more than one match, and 'wildmode' first contains
861 * "list", or no change and 'wildmode' contains "longest,list",
862 * list all matches */
863 if (res == OK && xpc.xp_numfiles > 1)
864 {
865 /* a "longest" that didn't do anything is skipped (but not
866 * "list:longest") */
867 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j)
868 wim_index = 1;
869 if ((wim_flags[wim_index] & WIM_LIST)
870#ifdef FEAT_WILDMENU
871 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0)
872#endif
873 )
874 {
875 if (!(wim_flags[0] & WIM_LONGEST))
876 {
877#ifdef FEAT_WILDMENU
878 int p_wmnu_save = p_wmnu;
879 p_wmnu = 0;
880#endif
Bram Moolenaarb3479632012-11-28 16:49:58 +0100881 /* remove match */
882 nextwild(&xpc, WILD_PREV, 0, firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883#ifdef FEAT_WILDMENU
884 p_wmnu = p_wmnu_save;
885#endif
886 }
887#ifdef FEAT_WILDMENU
888 (void)showmatches(&xpc, p_wmnu
889 && ((wim_flags[wim_index] & WIM_LIST) == 0));
890#else
891 (void)showmatches(&xpc, FALSE);
892#endif
893 redrawcmd();
894 did_wild_list = TRUE;
895 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100896 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
897 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100899 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
900 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901 }
902 else
903 vim_beep();
904 }
905#ifdef FEAT_WILDMENU
906 else if (xpc.xp_numfiles == -1)
907 xpc.xp_context = EXPAND_NOTHING;
908#endif
909 }
910 if (wim_index < 3)
911 ++wim_index;
912 if (c == ESC)
913 gotesc = TRUE;
914 if (res == OK)
915 goto cmdline_changed;
916 }
917
918 gotesc = FALSE;
919
920 /* <S-Tab> goes to last match, in a clumsy way */
921 if (c == K_S_TAB && KeyTyped)
922 {
Bram Moolenaarb3479632012-11-28 16:49:58 +0100923 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0, firstc != '@') == OK
924 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK
925 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 goto cmdline_changed;
927 }
928
929 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */
930 c = NL;
931
932 do_abbr = TRUE; /* default: check for abbreviation */
933
934 /*
935 * Big switch for a typed command line character.
936 */
937 switch (c)
938 {
939 case K_BS:
940 case Ctrl_H:
941 case K_DEL:
942 case K_KDEL:
943 case Ctrl_W:
944#ifdef FEAT_FKMAP
945 if (cmd_fkmap && c == K_BS)
946 c = K_DEL;
947#endif
948 if (c == K_KDEL)
949 c = K_DEL;
950
951 /*
952 * delete current character is the same as backspace on next
953 * character, except at end of line
954 */
955 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen)
956 ++ccline.cmdpos;
957#ifdef FEAT_MBYTE
958 if (has_mbyte && c == K_DEL)
959 ccline.cmdpos += mb_off_next(ccline.cmdbuff,
960 ccline.cmdbuff + ccline.cmdpos);
961#endif
962 if (ccline.cmdpos > 0)
963 {
964 char_u *p;
965
966 j = ccline.cmdpos;
967 p = ccline.cmdbuff + j;
968#ifdef FEAT_MBYTE
969 if (has_mbyte)
970 {
971 p = mb_prevptr(ccline.cmdbuff, p);
972 if (c == Ctrl_W)
973 {
974 while (p > ccline.cmdbuff && vim_isspace(*p))
975 p = mb_prevptr(ccline.cmdbuff, p);
976 i = mb_get_class(p);
977 while (p > ccline.cmdbuff && mb_get_class(p) == i)
978 p = mb_prevptr(ccline.cmdbuff, p);
979 if (mb_get_class(p) != i)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000980 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 }
982 }
983 else
984#endif
985 if (c == Ctrl_W)
986 {
987 while (p > ccline.cmdbuff && vim_isspace(p[-1]))
988 --p;
989 i = vim_iswordc(p[-1]);
990 while (p > ccline.cmdbuff && !vim_isspace(p[-1])
991 && vim_iswordc(p[-1]) == i)
992 --p;
993 }
994 else
995 --p;
996 ccline.cmdpos = (int)(p - ccline.cmdbuff);
997 ccline.cmdlen -= j - ccline.cmdpos;
998 i = ccline.cmdpos;
999 while (i < ccline.cmdlen)
1000 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1001
1002 /* Truncate at the end, required for multi-byte chars. */
1003 ccline.cmdbuff[ccline.cmdlen] = NUL;
1004 redrawcmd();
1005 }
1006 else if (ccline.cmdlen == 0 && c != Ctrl_W
1007 && ccline.cmdprompt == NULL && indent == 0)
1008 {
1009 /* In ex and debug mode it doesn't make sense to return. */
1010 if (exmode_active
1011#ifdef FEAT_EVAL
1012 || ccline.cmdfirstc == '>'
1013#endif
1014 )
1015 goto cmdline_not_changed;
1016
1017 vim_free(ccline.cmdbuff); /* no commandline to return */
1018 ccline.cmdbuff = NULL;
1019 if (!cmd_silent)
1020 {
1021#ifdef FEAT_RIGHTLEFT
1022 if (cmdmsg_rl)
1023 msg_col = Columns;
1024 else
1025#endif
1026 msg_col = 0;
1027 msg_putchar(' '); /* delete ':' */
1028 }
1029 redraw_cmdline = TRUE;
1030 goto returncmd; /* back to cmd mode */
1031 }
1032 goto cmdline_changed;
1033
1034 case K_INS:
1035 case K_KINS:
1036#ifdef FEAT_FKMAP
1037 /* if Farsi mode set, we are in reverse insert mode -
1038 Do not change the mode */
1039 if (cmd_fkmap)
1040 beep_flush();
1041 else
1042#endif
1043 ccline.overstrike = !ccline.overstrike;
1044#ifdef CURSOR_SHAPE
1045 ui_cursor_shape(); /* may show different cursor shape */
1046#endif
1047 goto cmdline_not_changed;
1048
1049 case Ctrl_HAT:
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00001050 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 {
1052 /* ":lmap" mappings exists, toggle use of mappings. */
1053 State ^= LANGMAP;
1054#ifdef USE_IM_CONTROL
1055 im_set_active(FALSE); /* Disable input method */
1056#endif
1057 if (b_im_ptr != NULL)
1058 {
1059 if (State & LANGMAP)
1060 *b_im_ptr = B_IMODE_LMAP;
1061 else
1062 *b_im_ptr = B_IMODE_NONE;
1063 }
1064 }
1065#ifdef USE_IM_CONTROL
1066 else
1067 {
1068 /* There are no ":lmap" mappings, toggle IM. When
1069 * 'imdisable' is set don't try getting the status, it's
1070 * always off. */
1071 if ((p_imdisable && b_im_ptr != NULL)
1072 ? *b_im_ptr == B_IMODE_IM : im_get_status())
1073 {
1074 im_set_active(FALSE); /* Disable input method */
1075 if (b_im_ptr != NULL)
1076 *b_im_ptr = B_IMODE_NONE;
1077 }
1078 else
1079 {
1080 im_set_active(TRUE); /* Enable input method */
1081 if (b_im_ptr != NULL)
1082 *b_im_ptr = B_IMODE_IM;
1083 }
1084 }
1085#endif
1086 if (b_im_ptr != NULL)
1087 {
1088 if (b_im_ptr == &curbuf->b_p_iminsert)
1089 set_iminsert_global();
1090 else
1091 set_imsearch_global();
1092 }
1093#ifdef CURSOR_SHAPE
1094 ui_cursor_shape(); /* may show different cursor shape */
1095#endif
1096#if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
1097 /* Show/unshow value of 'keymap' in status lines later. */
1098 status_redraw_curbuf();
1099#endif
1100 goto cmdline_not_changed;
1101
1102/* case '@': only in very old vi */
1103 case Ctrl_U:
1104 /* delete all characters left of the cursor */
1105 j = ccline.cmdpos;
1106 ccline.cmdlen -= j;
1107 i = ccline.cmdpos = 0;
1108 while (i < ccline.cmdlen)
1109 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1110 /* Truncate at the end, required for multi-byte chars. */
1111 ccline.cmdbuff[ccline.cmdlen] = NUL;
1112 redrawcmd();
1113 goto cmdline_changed;
1114
1115#ifdef FEAT_CLIPBOARD
1116 case Ctrl_Y:
1117 /* Copy the modeless selection, if there is one. */
1118 if (clip_star.state != SELECT_CLEARED)
1119 {
1120 if (clip_star.state == SELECT_DONE)
1121 clip_copy_modeless_selection(TRUE);
1122 goto cmdline_not_changed;
1123 }
1124 break;
1125#endif
1126
1127 case ESC: /* get here if p_wc != ESC or when ESC typed twice */
1128 case Ctrl_C:
Bram Moolenaarf4d11452005-12-02 00:46:37 +00001129 /* In exmode it doesn't make sense to return. Except when
Bram Moolenaar7c626922005-02-07 22:01:03 +00001130 * ":normal" runs out of characters. */
1131 if (exmode_active
1132#ifdef FEAT_EX_EXTRA
1133 && (ex_normal_busy == 0 || typebuf.tb_len > 0)
1134#endif
1135 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 goto cmdline_not_changed;
1137
1138 gotesc = TRUE; /* will free ccline.cmdbuff after
1139 putting it in history */
1140 goto returncmd; /* back to cmd mode */
1141
1142 case Ctrl_R: /* insert register */
1143#ifdef USE_ON_FLY_SCROLL
1144 dont_scroll = TRUE; /* disallow scrolling here */
1145#endif
1146 putcmdline('"', TRUE);
1147 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001148 i = c = plain_vgetc(); /* CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 if (i == Ctrl_O)
1150 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */
1151 if (i == Ctrl_R)
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001152 c = plain_vgetc(); /* CTRL-R CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 --no_mapping;
1154#ifdef FEAT_EVAL
1155 /*
1156 * Insert the result of an expression.
1157 * Need to save the current command line, to be able to enter
1158 * a new one...
1159 */
1160 new_cmdpos = -1;
1161 if (c == '=')
1162 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 if (ccline.cmdfirstc == '=')/* can't do this recursively */
1164 {
1165 beep_flush();
1166 c = ESC;
1167 }
1168 else
1169 {
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001170 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001172 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173 }
1174 }
1175#endif
1176 if (c != ESC) /* use ESC to cancel inserting register */
1177 {
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001178 cmdline_paste(c, i == Ctrl_R, FALSE);
Bram Moolenaaracf53452005-12-17 22:06:52 +00001179
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001180#ifdef FEAT_EVAL
Bram Moolenaaracf53452005-12-17 22:06:52 +00001181 /* When there was a serious error abort getting the
1182 * command line. */
1183 if (aborting())
1184 {
1185 gotesc = TRUE; /* will free ccline.cmdbuff after
1186 putting it in history */
1187 goto returncmd; /* back to cmd mode */
1188 }
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001189#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 KeyTyped = FALSE; /* Don't do p_wc completion. */
1191#ifdef FEAT_EVAL
1192 if (new_cmdpos >= 0)
1193 {
1194 /* set_cmdline_pos() was used */
1195 if (new_cmdpos > ccline.cmdlen)
1196 ccline.cmdpos = ccline.cmdlen;
1197 else
1198 ccline.cmdpos = new_cmdpos;
1199 }
1200#endif
1201 }
1202 redrawcmd();
1203 goto cmdline_changed;
1204
1205 case Ctrl_D:
1206 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING)
1207 break; /* Use ^D as normal char instead */
1208
1209 redrawcmd();
1210 continue; /* don't do incremental search now */
1211
1212 case K_RIGHT:
1213 case K_S_RIGHT:
1214 case K_C_RIGHT:
1215 do
1216 {
1217 if (ccline.cmdpos >= ccline.cmdlen)
1218 break;
1219 i = cmdline_charsize(ccline.cmdpos);
1220 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows)
1221 break;
1222 ccline.cmdspos += i;
1223#ifdef FEAT_MBYTE
1224 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001225 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 + ccline.cmdpos);
1227 else
1228#endif
1229 ++ccline.cmdpos;
1230 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001231 while ((c == K_S_RIGHT || c == K_C_RIGHT
1232 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 && ccline.cmdbuff[ccline.cmdpos] != ' ');
1234#ifdef FEAT_MBYTE
1235 if (has_mbyte)
1236 set_cmdspos_cursor();
1237#endif
1238 goto cmdline_not_changed;
1239
1240 case K_LEFT:
1241 case K_S_LEFT:
1242 case K_C_LEFT:
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001243 if (ccline.cmdpos == 0)
1244 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 do
1246 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 --ccline.cmdpos;
1248#ifdef FEAT_MBYTE
1249 if (has_mbyte) /* move to first byte of char */
1250 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff,
1251 ccline.cmdbuff + ccline.cmdpos);
1252#endif
1253 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos);
1254 }
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001255 while (ccline.cmdpos > 0
1256 && (c == K_S_LEFT || c == K_C_LEFT
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001257 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 && ccline.cmdbuff[ccline.cmdpos - 1] != ' ');
1259#ifdef FEAT_MBYTE
1260 if (has_mbyte)
1261 set_cmdspos_cursor();
1262#endif
1263 goto cmdline_not_changed;
1264
1265 case K_IGNORE:
Bram Moolenaar30405d32008-01-02 20:55:27 +00001266 /* Ignore mouse event or ex_window() result. */
1267 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268
Bram Moolenaar4770d092006-01-12 23:22:24 +00001269#ifdef FEAT_GUI_W32
1270 /* On Win32 ignore <M-F4>, we get it when closing the window was
1271 * cancelled. */
1272 case K_F4:
1273 if (mod_mask == MOD_MASK_ALT)
1274 {
1275 redrawcmd(); /* somehow the cmdline is cleared */
1276 goto cmdline_not_changed;
1277 }
1278 break;
1279#endif
1280
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281#ifdef FEAT_MOUSE
1282 case K_MIDDLEDRAG:
1283 case K_MIDDLERELEASE:
1284 goto cmdline_not_changed; /* Ignore mouse */
1285
1286 case K_MIDDLEMOUSE:
1287# ifdef FEAT_GUI
1288 /* When GUI is active, also paste when 'mouse' is empty */
1289 if (!gui.in_use)
1290# endif
1291 if (!mouse_has(MOUSE_COMMAND))
1292 goto cmdline_not_changed; /* Ignore mouse */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001293# ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 if (clip_star.available)
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001295 cmdline_paste('*', TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296 else
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001297# endif
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001298 cmdline_paste(0, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 redrawcmd();
1300 goto cmdline_changed;
1301
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001302# ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 case K_DROP:
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001304 cmdline_paste('~', TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 redrawcmd();
1306 goto cmdline_changed;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001307# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308
1309 case K_LEFTDRAG:
1310 case K_LEFTRELEASE:
1311 case K_RIGHTDRAG:
1312 case K_RIGHTRELEASE:
1313 /* Ignore drag and release events when the button-down wasn't
1314 * seen before. */
1315 if (ignore_drag_release)
1316 goto cmdline_not_changed;
1317 /* FALLTHROUGH */
1318 case K_LEFTMOUSE:
1319 case K_RIGHTMOUSE:
1320 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE)
1321 ignore_drag_release = TRUE;
1322 else
1323 ignore_drag_release = FALSE;
1324# ifdef FEAT_GUI
1325 /* When GUI is active, also move when 'mouse' is empty */
1326 if (!gui.in_use)
1327# endif
1328 if (!mouse_has(MOUSE_COMMAND))
1329 goto cmdline_not_changed; /* Ignore mouse */
1330# ifdef FEAT_CLIPBOARD
1331 if (mouse_row < cmdline_row && clip_star.available)
1332 {
1333 int button, is_click, is_drag;
1334
1335 /*
1336 * Handle modeless selection.
1337 */
1338 button = get_mouse_button(KEY2TERMCAP1(c),
1339 &is_click, &is_drag);
1340 if (mouse_model_popup() && button == MOUSE_LEFT
1341 && (mod_mask & MOD_MASK_SHIFT))
1342 {
1343 /* Translate shift-left to right button. */
1344 button = MOUSE_RIGHT;
1345 mod_mask &= ~MOD_MASK_SHIFT;
1346 }
1347 clip_modeless(button, is_click, is_drag);
1348 goto cmdline_not_changed;
1349 }
1350# endif
1351
1352 set_cmdspos();
1353 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen;
1354 ++ccline.cmdpos)
1355 {
1356 i = cmdline_charsize(ccline.cmdpos);
1357 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns
1358 && mouse_col < ccline.cmdspos % Columns + i)
1359 break;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001360# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 if (has_mbyte)
1362 {
1363 /* Count ">" for double-wide char that doesn't fit. */
1364 correct_cmdspos(ccline.cmdpos, i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001365 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 + ccline.cmdpos) - 1;
1367 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001368# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 ccline.cmdspos += i;
1370 }
1371 goto cmdline_not_changed;
1372
1373 /* Mouse scroll wheel: ignored here */
1374 case K_MOUSEDOWN:
1375 case K_MOUSEUP:
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001376 case K_MOUSELEFT:
1377 case K_MOUSERIGHT:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 /* Alternate buttons ignored here */
1379 case K_X1MOUSE:
1380 case K_X1DRAG:
1381 case K_X1RELEASE:
1382 case K_X2MOUSE:
1383 case K_X2DRAG:
1384 case K_X2RELEASE:
1385 goto cmdline_not_changed;
1386
1387#endif /* FEAT_MOUSE */
1388
1389#ifdef FEAT_GUI
1390 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */
1391 case K_LEFTRELEASE_NM:
1392 goto cmdline_not_changed;
1393
1394 case K_VER_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001395 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 {
1397 gui_do_scroll();
1398 redrawcmd();
1399 }
1400 goto cmdline_not_changed;
1401
1402 case K_HOR_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001403 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001405 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406 redrawcmd();
1407 }
1408 goto cmdline_not_changed;
1409#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001410#ifdef FEAT_GUI_TABLINE
1411 case K_TABLINE:
1412 case K_TABMENU:
1413 /* Don't want to change any tabs here. Make sure the same tab
1414 * is still selected. */
1415 if (gui_use_tabline())
1416 gui_mch_set_curtab(tabpage_index(curtab));
1417 goto cmdline_not_changed;
1418#endif
1419
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420 case K_SELECT: /* end of Select mode mapping - ignore */
1421 goto cmdline_not_changed;
1422
1423 case Ctrl_B: /* begin of command line */
1424 case K_HOME:
1425 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001426 case K_S_HOME:
1427 case K_C_HOME:
1428 ccline.cmdpos = 0;
1429 set_cmdspos();
1430 goto cmdline_not_changed;
1431
1432 case Ctrl_E: /* end of command line */
1433 case K_END:
1434 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435 case K_S_END:
1436 case K_C_END:
1437 ccline.cmdpos = ccline.cmdlen;
1438 set_cmdspos_cursor();
1439 goto cmdline_not_changed;
1440
1441 case Ctrl_A: /* all matches */
Bram Moolenaarb3479632012-11-28 16:49:58 +01001442 if (nextwild(&xpc, WILD_ALL, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443 break;
1444 goto cmdline_changed;
1445
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001446 case Ctrl_L:
1447#ifdef FEAT_SEARCH_EXTRA
1448 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1449 {
1450 /* Add a character from under the cursor for 'incsearch' */
1451 if (did_incsearch
1452 && !equalpos(curwin->w_cursor, old_cursor))
1453 {
1454 c = gchar_cursor();
Bram Moolenaara9dc3752010-07-11 20:46:53 +02001455 /* If 'ignorecase' and 'smartcase' are set and the
1456 * command line has no uppercase characters, convert
1457 * the character to lowercase */
1458 if (p_ic && p_scs && !pat_has_uppercase(ccline.cmdbuff))
1459 c = MB_TOLOWER(c);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001460 if (c != NUL)
Bram Moolenaar93db9752006-11-21 10:29:45 +00001461 {
1462 if (c == firstc || vim_strchr((char_u *)(
1463 p_magic ? "\\^$.*[" : "\\^$"), c)
1464 != NULL)
1465 {
1466 /* put a backslash before special characters */
1467 stuffcharReadbuff(c);
1468 c = '\\';
1469 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001470 break;
Bram Moolenaar93db9752006-11-21 10:29:45 +00001471 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001472 }
1473 goto cmdline_not_changed;
1474 }
1475#endif
1476
1477 /* completion: longest common part */
Bram Moolenaarb3479632012-11-28 16:49:58 +01001478 if (nextwild(&xpc, WILD_LONGEST, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 break;
1480 goto cmdline_changed;
1481
1482 case Ctrl_N: /* next match */
1483 case Ctrl_P: /* previous match */
1484 if (xpc.xp_numfiles > 0)
1485 {
Bram Moolenaarb3479632012-11-28 16:49:58 +01001486 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT,
1487 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 break;
1489 goto cmdline_changed;
1490 }
1491
1492#ifdef FEAT_CMDHIST
1493 case K_UP:
1494 case K_DOWN:
1495 case K_S_UP:
1496 case K_S_DOWN:
1497 case K_PAGEUP:
1498 case K_KPAGEUP:
1499 case K_PAGEDOWN:
1500 case K_KPAGEDOWN:
1501 if (hislen == 0 || firstc == NUL) /* no history */
1502 goto cmdline_not_changed;
1503
1504 i = hiscnt;
1505
1506 /* save current command string so it can be restored later */
1507 if (lookfor == NULL)
1508 {
1509 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL)
1510 goto cmdline_not_changed;
1511 lookfor[ccline.cmdpos] = NUL;
1512 }
1513
1514 j = (int)STRLEN(lookfor);
1515 for (;;)
1516 {
1517 /* one step backwards */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001518 if (c == K_UP|| c == K_S_UP || c == Ctrl_P
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001519 || c == K_PAGEUP || c == K_KPAGEUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520 {
1521 if (hiscnt == hislen) /* first time */
1522 hiscnt = hisidx[histype];
1523 else if (hiscnt == 0 && hisidx[histype] != hislen - 1)
1524 hiscnt = hislen - 1;
1525 else if (hiscnt != hisidx[histype] + 1)
1526 --hiscnt;
1527 else /* at top of list */
1528 {
1529 hiscnt = i;
1530 break;
1531 }
1532 }
1533 else /* one step forwards */
1534 {
1535 /* on last entry, clear the line */
1536 if (hiscnt == hisidx[histype])
1537 {
1538 hiscnt = hislen;
1539 break;
1540 }
1541
1542 /* not on a history line, nothing to do */
1543 if (hiscnt == hislen)
1544 break;
1545 if (hiscnt == hislen - 1) /* wrap around */
1546 hiscnt = 0;
1547 else
1548 ++hiscnt;
1549 }
1550 if (hiscnt < 0 || history[histype][hiscnt].hisstr == NULL)
1551 {
1552 hiscnt = i;
1553 break;
1554 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001555 if ((c != K_UP && c != K_DOWN)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001556 || hiscnt == i
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557 || STRNCMP(history[histype][hiscnt].hisstr,
1558 lookfor, (size_t)j) == 0)
1559 break;
1560 }
1561
1562 if (hiscnt != i) /* jumped to other entry */
1563 {
1564 char_u *p;
1565 int len;
1566 int old_firstc;
1567
1568 vim_free(ccline.cmdbuff);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001569 xpc.xp_context = EXPAND_NOTHING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 if (hiscnt == hislen)
1571 p = lookfor; /* back to the old one */
1572 else
1573 p = history[histype][hiscnt].hisstr;
1574
1575 if (histype == HIST_SEARCH
1576 && p != lookfor
1577 && (old_firstc = p[STRLEN(p) + 1]) != firstc)
1578 {
1579 /* Correct for the separator character used when
1580 * adding the history entry vs the one used now.
1581 * First loop: count length.
1582 * Second loop: copy the characters. */
1583 for (i = 0; i <= 1; ++i)
1584 {
1585 len = 0;
1586 for (j = 0; p[j] != NUL; ++j)
1587 {
1588 /* Replace old sep with new sep, unless it is
1589 * escaped. */
1590 if (p[j] == old_firstc
1591 && (j == 0 || p[j - 1] != '\\'))
1592 {
1593 if (i > 0)
1594 ccline.cmdbuff[len] = firstc;
1595 }
1596 else
1597 {
1598 /* Escape new sep, unless it is already
1599 * escaped. */
1600 if (p[j] == firstc
1601 && (j == 0 || p[j - 1] != '\\'))
1602 {
1603 if (i > 0)
1604 ccline.cmdbuff[len] = '\\';
1605 ++len;
1606 }
1607 if (i > 0)
1608 ccline.cmdbuff[len] = p[j];
1609 }
1610 ++len;
1611 }
1612 if (i == 0)
1613 {
1614 alloc_cmdbuff(len);
1615 if (ccline.cmdbuff == NULL)
1616 goto returncmd;
1617 }
1618 }
1619 ccline.cmdbuff[len] = NUL;
1620 }
1621 else
1622 {
1623 alloc_cmdbuff((int)STRLEN(p));
1624 if (ccline.cmdbuff == NULL)
1625 goto returncmd;
1626 STRCPY(ccline.cmdbuff, p);
1627 }
1628
1629 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
1630 redrawcmd();
1631 goto cmdline_changed;
1632 }
1633 beep_flush();
1634 goto cmdline_not_changed;
1635#endif
1636
1637 case Ctrl_V:
1638 case Ctrl_Q:
1639#ifdef FEAT_MOUSE
1640 ignore_drag_release = TRUE;
1641#endif
1642 putcmdline('^', TRUE);
1643 c = get_literal(); /* get next (two) character(s) */
1644 do_abbr = FALSE; /* don't do abbreviation now */
1645#ifdef FEAT_MBYTE
1646 /* may need to remove ^ when composing char was typed */
1647 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent)
1648 {
1649 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
1650 msg_putchar(' ');
1651 cursorcmd();
1652 }
1653#endif
1654 break;
1655
1656#ifdef FEAT_DIGRAPHS
1657 case Ctrl_K:
1658#ifdef FEAT_MOUSE
1659 ignore_drag_release = TRUE;
1660#endif
1661 putcmdline('?', TRUE);
1662#ifdef USE_ON_FLY_SCROLL
1663 dont_scroll = TRUE; /* disallow scrolling here */
1664#endif
1665 c = get_digraph(TRUE);
1666 if (c != NUL)
1667 break;
1668
1669 redrawcmd();
1670 goto cmdline_not_changed;
1671#endif /* FEAT_DIGRAPHS */
1672
1673#ifdef FEAT_RIGHTLEFT
1674 case Ctrl__: /* CTRL-_: switch language mode */
1675 if (!p_ari)
1676 break;
1677#ifdef FEAT_FKMAP
1678 if (p_altkeymap)
1679 {
1680 cmd_fkmap = !cmd_fkmap;
1681 if (cmd_fkmap) /* in Farsi always in Insert mode */
1682 ccline.overstrike = FALSE;
1683 }
1684 else /* Hebrew is default */
1685#endif
1686 cmd_hkmap = !cmd_hkmap;
1687 goto cmdline_not_changed;
1688#endif
1689
1690 default:
1691#ifdef UNIX
1692 if (c == intr_char)
1693 {
1694 gotesc = TRUE; /* will free ccline.cmdbuff after
1695 putting it in history */
1696 goto returncmd; /* back to Normal mode */
1697 }
1698#endif
1699 /*
1700 * Normal character with no special meaning. Just set mod_mask
1701 * to 0x0 so that typing Shift-Space in the GUI doesn't enter
1702 * the string <S-Space>. This should only happen after ^V.
1703 */
1704 if (!IS_SPECIAL(c))
1705 mod_mask = 0x0;
1706 break;
1707 }
1708 /*
1709 * End of switch on command line character.
1710 * We come here if we have a normal character.
1711 */
1712
Bram Moolenaarede3e632013-06-23 16:16:19 +02001713 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && (ccheck_abbr(
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714#ifdef FEAT_MBYTE
1715 /* Add ABBR_OFF for characters above 0x100, this is
1716 * what check_abbr() expects. */
1717 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
1718#endif
Bram Moolenaarede3e632013-06-23 16:16:19 +02001719 c) || c == Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 goto cmdline_changed;
1721
1722 /*
1723 * put the character in the command line
1724 */
1725 if (IS_SPECIAL(c) || mod_mask != 0)
1726 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE);
1727 else
1728 {
1729#ifdef FEAT_MBYTE
1730 if (has_mbyte)
1731 {
1732 j = (*mb_char2bytes)(c, IObuff);
1733 IObuff[j] = NUL; /* exclude composing chars */
1734 put_on_cmdline(IObuff, j, TRUE);
1735 }
1736 else
1737#endif
1738 {
1739 IObuff[0] = c;
1740 put_on_cmdline(IObuff, 1, TRUE);
1741 }
1742 }
1743 goto cmdline_changed;
1744
1745/*
1746 * This part implements incremental searches for "/" and "?"
1747 * Jump to cmdline_not_changed when a character has been read but the command
1748 * line did not change. Then we only search and redraw if something changed in
1749 * the past.
1750 * Jump to cmdline_changed when the command line did change.
1751 * (Sorry for the goto's, I know it is ugly).
1752 */
1753cmdline_not_changed:
1754#ifdef FEAT_SEARCH_EXTRA
1755 if (!incsearch_postponed)
1756 continue;
1757#endif
1758
1759cmdline_changed:
1760#ifdef FEAT_SEARCH_EXTRA
1761 /*
1762 * 'incsearch' highlighting.
1763 */
1764 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1765 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001766 pos_T end_pos;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001767#ifdef FEAT_RELTIME
1768 proftime_T tm;
1769#endif
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001770
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771 /* if there is a character waiting, search and redraw later */
1772 if (char_avail())
1773 {
1774 incsearch_postponed = TRUE;
1775 continue;
1776 }
1777 incsearch_postponed = FALSE;
1778 curwin->w_cursor = old_cursor; /* start at old position */
1779
1780 /* If there is no command line, don't do anything */
1781 if (ccline.cmdlen == 0)
1782 i = 0;
1783 else
1784 {
1785 cursor_off(); /* so the user knows we're busy */
1786 out_flush();
1787 ++emsg_off; /* So it doesn't beep if bad expr */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001788#ifdef FEAT_RELTIME
1789 /* Set the time limit to half a second. */
1790 profile_setlimit(500L, &tm);
1791#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 i = do_search(NULL, firstc, ccline.cmdbuff, count,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001793 SEARCH_KEEP + SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK,
1794#ifdef FEAT_RELTIME
1795 &tm
1796#else
1797 NULL
1798#endif
1799 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 --emsg_off;
1801 /* if interrupted while searching, behave like it failed */
1802 if (got_int)
1803 {
1804 (void)vpeekc(); /* remove <C-C> from input stream */
1805 got_int = FALSE; /* don't abandon the command line */
1806 i = 0;
1807 }
1808 else if (char_avail())
1809 /* cancelled searching because a char was typed */
1810 incsearch_postponed = TRUE;
1811 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001812 if (i != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 highlight_match = TRUE; /* highlight position */
1814 else
1815 highlight_match = FALSE; /* remove highlight */
1816
1817 /* first restore the old curwin values, so the screen is
1818 * positioned in the same way as the actual search command */
1819 curwin->w_leftcol = old_leftcol;
1820 curwin->w_topline = old_topline;
1821# ifdef FEAT_DIFF
1822 curwin->w_topfill = old_topfill;
1823# endif
1824 curwin->w_botline = old_botline;
1825 changed_cline_bef_curs();
1826 update_topline();
1827
1828 if (i != 0)
1829 {
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001830 pos_T save_pos = curwin->w_cursor;
1831
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832 /*
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001833 * First move cursor to end of match, then to the start. This
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 * moves the whole match onto the screen when 'nowrap' is set.
1835 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836 curwin->w_cursor.lnum += search_match_lines;
1837 curwin->w_cursor.col = search_match_endcol;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001838 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
1839 {
1840 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
1841 coladvance((colnr_T)MAXCOL);
1842 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 validate_cursor();
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001844 end_pos = curwin->w_cursor;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001845 curwin->w_cursor = save_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 }
Bram Moolenaardb552d602006-03-23 22:59:57 +00001847 else
1848 end_pos = curwin->w_cursor; /* shutup gcc 4 */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001849
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 validate_cursor();
Bram Moolenaar27a23192006-09-14 09:27:26 +00001851# ifdef FEAT_WINDOWS
1852 /* May redraw the status line to show the cursor position. */
1853 if (p_ru && curwin->w_status_height > 0)
1854 curwin->w_redr_status = TRUE;
1855# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00001857 save_cmdline(&save_ccline);
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001858 update_screen(SOME_VALID);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00001859 restore_cmdline(&save_ccline);
1860
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001861 /* Leave it at the end to make CTRL-R CTRL-W work. */
1862 if (i != 0)
1863 curwin->w_cursor = end_pos;
1864
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 msg_starthere();
1866 redrawcmdline();
1867 did_incsearch = TRUE;
1868 }
1869#else /* FEAT_SEARCH_EXTRA */
1870 ;
1871#endif
1872
1873#ifdef FEAT_RIGHTLEFT
1874 if (cmdmsg_rl
1875# ifdef FEAT_ARABIC
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001876 || (p_arshape && !p_tbidi && enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877# endif
1878 )
1879 /* Always redraw the whole command line to fix shaping and
Bram Moolenaar58437e02012-02-22 17:58:04 +01001880 * right-left typing. Not efficient, but it works.
1881 * Do it only when there are no characters left to read
1882 * to avoid useless intermediate redraws. */
1883 if (vpeekc() == NUL)
1884 redrawcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885#endif
1886 }
1887
1888returncmd:
1889
1890#ifdef FEAT_RIGHTLEFT
1891 cmdmsg_rl = FALSE;
1892#endif
1893
1894#ifdef FEAT_FKMAP
1895 cmd_fkmap = 0;
1896#endif
1897
1898 ExpandCleanup(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001899 ccline.xpc = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900
1901#ifdef FEAT_SEARCH_EXTRA
1902 if (did_incsearch)
1903 {
1904 curwin->w_cursor = old_cursor;
1905 curwin->w_curswant = old_curswant;
1906 curwin->w_leftcol = old_leftcol;
1907 curwin->w_topline = old_topline;
1908# ifdef FEAT_DIFF
1909 curwin->w_topfill = old_topfill;
1910# endif
1911 curwin->w_botline = old_botline;
1912 highlight_match = FALSE;
1913 validate_cursor(); /* needed for TAB */
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001914 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915 }
1916#endif
1917
1918 if (ccline.cmdbuff != NULL)
1919 {
1920 /*
1921 * Put line in history buffer (":" and "=" only when it was typed).
1922 */
1923#ifdef FEAT_CMDHIST
1924 if (ccline.cmdlen && firstc != NUL
1925 && (some_key_typed || histype == HIST_SEARCH))
1926 {
1927 add_to_history(histype, ccline.cmdbuff, TRUE,
1928 histype == HIST_SEARCH ? firstc : NUL);
1929 if (firstc == ':')
1930 {
1931 vim_free(new_last_cmdline);
1932 new_last_cmdline = vim_strsave(ccline.cmdbuff);
1933 }
1934 }
1935#endif
1936
1937 if (gotesc) /* abandon command line */
1938 {
1939 vim_free(ccline.cmdbuff);
1940 ccline.cmdbuff = NULL;
1941 if (msg_scrolled == 0)
1942 compute_cmdrow();
1943 MSG("");
1944 redraw_cmdline = TRUE;
1945 }
1946 }
1947
1948 /*
1949 * If the screen was shifted up, redraw the whole screen (later).
1950 * If the line is too long, clear it, so ruler and shown command do
1951 * not get printed in the middle of it.
1952 */
1953 msg_check();
1954 msg_scroll = save_msg_scroll;
1955 redir_off = FALSE;
1956
1957 /* When the command line was typed, no need for a wait-return prompt. */
1958 if (some_key_typed)
1959 need_wait_return = FALSE;
1960
1961 State = save_State;
1962#ifdef USE_IM_CONTROL
1963 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP)
1964 im_save_status(b_im_ptr);
1965 im_set_active(FALSE);
1966#endif
1967#ifdef FEAT_MOUSE
1968 setmouse();
1969#endif
1970#ifdef CURSOR_SHAPE
1971 ui_cursor_shape(); /* may show different cursor shape */
1972#endif
1973
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001974 {
1975 char_u *p = ccline.cmdbuff;
1976
1977 /* Make ccline empty, getcmdline() may try to use it. */
1978 ccline.cmdbuff = NULL;
1979 return p;
1980 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981}
1982
1983#if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO)
1984/*
1985 * Get a command line with a prompt.
1986 * This is prepared to be called recursively from getcmdline() (e.g. by
1987 * f_input() when evaluating an expression from CTRL-R =).
1988 * Returns the command line in allocated memory, or NULL.
1989 */
1990 char_u *
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001991getcmdline_prompt(firstc, prompt, attr, xp_context, xp_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 int firstc;
1993 char_u *prompt; /* command line prompt */
1994 int attr; /* attributes for prompt */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001995 int xp_context; /* type of expansion */
1996 char_u *xp_arg; /* user-defined expansion argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997{
1998 char_u *s;
1999 struct cmdline_info save_ccline;
2000 int msg_col_save = msg_col;
2001
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002002 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 ccline.cmdprompt = prompt;
2004 ccline.cmdattr = attr;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002005# ifdef FEAT_EVAL
2006 ccline.xp_context = xp_context;
2007 ccline.xp_arg = xp_arg;
2008 ccline.input_fn = (firstc == '@');
2009# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010 s = getcmdline(firstc, 1L, 0);
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002011 restore_cmdline(&save_ccline);
Bram Moolenaar1db1f772011-08-17 16:25:48 +02002012 /* Restore msg_col, the prompt from input() may have changed it.
2013 * But only if called recursively and the commandline is therefore being
2014 * restored to an old one; if not, the input() prompt stays on the screen,
2015 * so we need its modified msg_col left intact. */
2016 if (ccline.cmdbuff != NULL)
2017 msg_col = msg_col_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018
2019 return s;
2020}
2021#endif
2022
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002023/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002024 * Return TRUE when the text must not be changed and we can't switch to
2025 * another window or buffer. Used when editing the command line, evaluating
2026 * 'balloonexpr', etc.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002027 */
2028 int
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002029text_locked()
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002030{
2031#ifdef FEAT_CMDWIN
2032 if (cmdwin_type != 0)
2033 return TRUE;
2034#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002035 return textlock != 0;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002036}
2037
2038/*
2039 * Give an error message for a command that isn't allowed while the cmdline
2040 * window is open or editing the cmdline in another way.
2041 */
2042 void
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002043text_locked_msg()
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002044{
2045#ifdef FEAT_CMDWIN
2046 if (cmdwin_type != 0)
2047 EMSG(_(e_cmdwin));
2048 else
2049#endif
2050 EMSG(_(e_secure));
2051}
2052
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002053#if defined(FEAT_AUTOCMD) || defined(PROTO)
2054/*
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002055 * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is
2056 * and give an error message.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002057 */
2058 int
2059curbuf_locked()
2060{
2061 if (curbuf_lock > 0)
2062 {
2063 EMSG(_("E788: Not allowed to edit another buffer now"));
2064 return TRUE;
2065 }
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002066 return allbuf_locked();
2067}
2068
2069/*
2070 * Check if "allbuf_lock" is set and return TRUE when it is and give an error
2071 * message.
2072 */
2073 int
2074allbuf_locked()
2075{
2076 if (allbuf_lock > 0)
2077 {
2078 EMSG(_("E811: Not allowed to change buffer information now"));
2079 return TRUE;
2080 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002081 return FALSE;
2082}
2083#endif
2084
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 static int
2086cmdline_charsize(idx)
2087 int idx;
2088{
2089#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2090 if (cmdline_star > 0) /* showing '*', always 1 position */
2091 return 1;
2092#endif
2093 return ptr2cells(ccline.cmdbuff + idx);
2094}
2095
2096/*
2097 * Compute the offset of the cursor on the command line for the prompt and
2098 * indent.
2099 */
2100 static void
2101set_cmdspos()
2102{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002103 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 ccline.cmdspos = 1 + ccline.cmdindent;
2105 else
2106 ccline.cmdspos = 0 + ccline.cmdindent;
2107}
2108
2109/*
2110 * Compute the screen position for the cursor on the command line.
2111 */
2112 static void
2113set_cmdspos_cursor()
2114{
2115 int i, m, c;
2116
2117 set_cmdspos();
2118 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002119 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002121 if (m < 0) /* overflow, Columns or Rows at weird value */
2122 m = MAXCOL;
2123 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124 else
2125 m = MAXCOL;
2126 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
2127 {
2128 c = cmdline_charsize(i);
2129#ifdef FEAT_MBYTE
2130 /* Count ">" for double-wide multi-byte char that doesn't fit. */
2131 if (has_mbyte)
2132 correct_cmdspos(i, c);
2133#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00002134 /* If the cmdline doesn't fit, show cursor on last visible char.
2135 * Don't move the cursor itself, so we can still append. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 if ((ccline.cmdspos += c) >= m)
2137 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 ccline.cmdspos -= c;
2139 break;
2140 }
2141#ifdef FEAT_MBYTE
2142 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002143 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144#endif
2145 }
2146}
2147
2148#ifdef FEAT_MBYTE
2149/*
2150 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2151 * character that doesn't fit, so that a ">" must be displayed.
2152 */
2153 static void
2154correct_cmdspos(idx, cells)
2155 int idx;
2156 int cells;
2157{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002158 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2160 && ccline.cmdspos % Columns + cells > Columns)
2161 ccline.cmdspos++;
2162}
2163#endif
2164
2165/*
2166 * Get an Ex command line for the ":" command.
2167 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 char_u *
Bram Moolenaar78a15312009-05-15 19:33:18 +00002169getexline(c, cookie, indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170 int c; /* normally ':', NUL for ":append" */
Bram Moolenaar78a15312009-05-15 19:33:18 +00002171 void *cookie UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 int indent; /* indent for inside conditionals */
2173{
2174 /* When executing a register, remove ':' that's in front of each line. */
2175 if (exec_from_reg && vpeekc() == ':')
2176 (void)vgetc();
2177 return getcmdline(c, 1L, indent);
2178}
2179
2180/*
2181 * Get an Ex command line for Ex mode.
2182 * In Ex mode we only use the OS supplied line editing features and no
2183 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002184 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 char_u *
Bram Moolenaar78a15312009-05-15 19:33:18 +00002187getexmodeline(promptc, cookie, indent)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002188 int promptc; /* normally ':', NUL for ":append" and '?' for
2189 :s prompt */
Bram Moolenaar78a15312009-05-15 19:33:18 +00002190 void *cookie UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 int indent; /* indent for inside conditionals */
2192{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002193 garray_T line_ga;
2194 char_u *pend;
2195 int startcol = 0;
Bram Moolenaar76624232007-07-28 12:21:47 +00002196 int c1 = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002197 int escaped = FALSE; /* CTRL-V typed */
2198 int vcol = 0;
2199 char_u *p;
Bram Moolenaar76624232007-07-28 12:21:47 +00002200 int prev_char;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002201 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202
2203 /* Switch cursor on now. This avoids that it happens after the "\n", which
2204 * confuses the system function that computes tabstops. */
2205 cursor_on();
2206
2207 /* always start in column 0; write a newline if necessary */
2208 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002209 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002211 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002213 /* indent that is only displayed, not in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002214 if (p_prompt)
2215 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 while (indent-- > 0)
2217 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 }
2220
2221 ga_init2(&line_ga, 1, 30);
2222
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002223 /* autoindent for :insert and :append is in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002224 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002225 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002226 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002227 while (indent >= 8)
2228 {
2229 ga_append(&line_ga, TAB);
2230 msg_puts((char_u *)" ");
2231 indent -= 8;
2232 }
2233 while (indent-- > 0)
2234 {
2235 ga_append(&line_ga, ' ');
2236 msg_putchar(' ');
2237 }
2238 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002239 ++no_mapping;
2240 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002241
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242 /*
2243 * Get the line, one character at a time.
2244 */
2245 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002246 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 {
2248 if (ga_grow(&line_ga, 40) == FAIL)
2249 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002251 /* Get one character at a time. Don't use inchar(), it can't handle
2252 * special characters. */
Bram Moolenaar76624232007-07-28 12:21:47 +00002253 prev_char = c1;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002254 c1 = vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255
2256 /*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002257 * Handle line editing.
2258 * Previously this was left to the system, putting the terminal in
2259 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002261 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002263 msg_putchar('\n');
2264 break;
2265 }
2266
2267 if (!escaped)
2268 {
2269 /* CR typed means "enter", which is NL */
2270 if (c1 == '\r')
2271 c1 = '\n';
2272
2273 if (c1 == BS || c1 == K_BS
2274 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002276 if (line_ga.ga_len > 0)
2277 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002278#ifdef FEAT_MBYTE
2279 if (has_mbyte)
2280 {
2281 p = (char_u *)line_ga.ga_data;
2282 p[line_ga.ga_len] = NUL;
2283 len = (*mb_head_off)(p, p + line_ga.ga_len - 1) + 1;
2284 line_ga.ga_len -= len;
2285 }
2286 else
2287#endif
2288 --line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002289 goto redraw;
2290 }
2291 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 }
2293
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002294 if (c1 == Ctrl_U)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002296 msg_col = startcol;
2297 msg_clr_eos();
2298 line_ga.ga_len = 0;
2299 continue;
2300 }
2301
2302 if (c1 == Ctrl_T)
2303 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002304 long sw = get_sw_value(curbuf);
Bram Moolenaar14f24742012-08-08 18:01:05 +02002305
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002306 p = (char_u *)line_ga.ga_data;
2307 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002308 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaar14f24742012-08-08 18:01:05 +02002309 indent += sw - indent % sw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002310add_indent:
Bram Moolenaar597a4222014-06-25 14:39:50 +02002311 while (get_indent_str(p, 8, FALSE) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002313 char_u *s = skipwhite(p);
2314
2315 ga_grow(&line_ga, 1);
2316 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2317 *s = ' ';
2318 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002320redraw:
2321 /* redraw the line */
2322 msg_col = startcol;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002323 vcol = 0;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002324 p = (char_u *)line_ga.ga_data;
2325 p[line_ga.ga_len] = NUL;
2326 while (p < (char_u *)line_ga.ga_data + line_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002328 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002330 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002332 msg_putchar(' ');
2333 } while (++vcol % 8);
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002334 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002336 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002338 len = MB_PTR2LEN(p);
2339 msg_outtrans_len(p, len);
2340 vcol += ptr2cells(p);
2341 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 }
2343 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002344 msg_clr_eos();
Bram Moolenaar76624232007-07-28 12:21:47 +00002345 windgoto(msg_row, msg_col);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002346 continue;
2347 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002349 if (c1 == Ctrl_D)
2350 {
2351 /* Delete one shiftwidth. */
2352 p = (char_u *)line_ga.ga_data;
2353 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002355 if (prev_char == '^')
2356 ex_keep_indent = TRUE;
2357 indent = 0;
2358 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359 }
2360 else
2361 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002362 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002363 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002364 --indent;
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01002365 indent -= indent % get_sw_value(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02002367 while (get_indent_str(p, 8, FALSE) > indent)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002368 {
2369 char_u *s = skipwhite(p);
2370
2371 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2372 --line_ga.ga_len;
2373 }
2374 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002376
2377 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2378 {
2379 escaped = TRUE;
2380 continue;
2381 }
2382
2383 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
2384 if (IS_SPECIAL(c1))
2385 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002387
2388 if (IS_SPECIAL(c1))
2389 c1 = '?';
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002390#ifdef FEAT_MBYTE
2391 if (has_mbyte)
2392 len = (*mb_char2bytes)(c1,
2393 (char_u *)line_ga.ga_data + line_ga.ga_len);
2394 else
2395#endif
2396 {
2397 len = 1;
2398 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
2399 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002400 if (c1 == '\n')
2401 msg_putchar('\n');
2402 else if (c1 == TAB)
2403 {
2404 /* Don't use chartabsize(), 'ts' can be different */
2405 do
2406 {
2407 msg_putchar(' ');
2408 } while (++vcol % 8);
2409 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002412 msg_outtrans_len(
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002413 ((char_u *)line_ga.ga_data) + line_ga.ga_len, len);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002414 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 }
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002416 line_ga.ga_len += len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002417 escaped = FALSE;
2418
2419 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002420 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002421
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002422 /* We are done when a NL is entered, but not when it comes after an
2423 * odd number of backslashes, that results in a NUL. */
2424 if (line_ga.ga_len > 0 && pend[-1] == '\n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 {
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002426 int bcount = 0;
2427
2428 while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\')
2429 ++bcount;
2430
2431 if (bcount > 0)
2432 {
2433 /* Halve the number of backslashes: "\NL" -> "NUL", "\\NL" ->
2434 * "\NL", etc. */
2435 line_ga.ga_len -= (bcount + 1) / 2;
2436 pend -= (bcount + 1) / 2;
2437 pend[-1] = '\n';
2438 }
2439
2440 if ((bcount & 1) == 0)
2441 {
2442 --line_ga.ga_len;
2443 --pend;
2444 *pend = NUL;
2445 break;
2446 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 }
2448 }
2449
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002450 --no_mapping;
2451 --allow_keys;
2452
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 /* make following messages go to the next line */
2454 msg_didout = FALSE;
2455 msg_col = 0;
2456 if (msg_row < Rows - 1)
2457 ++msg_row;
2458 emsg_on_display = FALSE; /* don't want ui_delay() */
2459
2460 if (got_int)
2461 ga_clear(&line_ga);
2462
2463 return (char_u *)line_ga.ga_data;
2464}
2465
Bram Moolenaare344bea2005-09-01 20:46:49 +00002466# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
2467 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468/*
2469 * Return TRUE if ccline.overstrike is on.
2470 */
2471 int
2472cmdline_overstrike()
2473{
2474 return ccline.overstrike;
2475}
2476
2477/*
2478 * Return TRUE if the cursor is at the end of the cmdline.
2479 */
2480 int
2481cmdline_at_end()
2482{
2483 return (ccline.cmdpos >= ccline.cmdlen);
2484}
2485#endif
2486
Bram Moolenaar9372a112005-12-06 19:59:18 +00002487#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488/*
2489 * Return the virtual column number at the current cursor position.
2490 * This is used by the IM code to obtain the start of the preedit string.
2491 */
2492 colnr_T
2493cmdline_getvcol_cursor()
2494{
2495 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
2496 return MAXCOL;
2497
2498# ifdef FEAT_MBYTE
2499 if (has_mbyte)
2500 {
2501 colnr_T col;
2502 int i = 0;
2503
2504 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002505 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002506
2507 return col;
2508 }
2509 else
2510# endif
2511 return ccline.cmdpos;
2512}
2513#endif
2514
2515#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2516/*
2517 * If part of the command line is an IM preedit string, redraw it with
2518 * IM feedback attributes. The cursor position is restored after drawing.
2519 */
2520 static void
2521redrawcmd_preedit()
2522{
2523 if ((State & CMDLINE)
2524 && xic != NULL
Bram Moolenaar494c82a2006-09-14 08:25:49 +00002525 /* && im_get_status() doesn't work when using SCIM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 && !p_imdisable
2527 && im_is_preediting())
2528 {
2529 int cmdpos = 0;
2530 int cmdspos;
2531 int old_row;
2532 int old_col;
2533 colnr_T col;
2534
2535 old_row = msg_row;
2536 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002537 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538
2539# ifdef FEAT_MBYTE
2540 if (has_mbyte)
2541 {
2542 for (col = 0; col < preedit_start_col
2543 && cmdpos < ccline.cmdlen; ++col)
2544 {
2545 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002546 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547 }
2548 }
2549 else
2550# endif
2551 {
2552 cmdspos += preedit_start_col;
2553 cmdpos += preedit_start_col;
2554 }
2555
2556 msg_row = cmdline_row + (cmdspos / (int)Columns);
2557 msg_col = cmdspos % (int)Columns;
2558 if (msg_row >= Rows)
2559 msg_row = Rows - 1;
2560
2561 for (col = 0; cmdpos < ccline.cmdlen; ++col)
2562 {
2563 int char_len;
2564 int char_attr;
2565
2566 char_attr = im_get_feedback_attr(col);
2567 if (char_attr < 0)
2568 break; /* end of preedit string */
2569
2570# ifdef FEAT_MBYTE
2571 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002572 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 else
2574# endif
2575 char_len = 1;
2576
2577 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
2578 cmdpos += char_len;
2579 }
2580
2581 msg_row = old_row;
2582 msg_col = old_col;
2583 }
2584}
2585#endif /* FEAT_XIM && FEAT_GUI_GTK */
2586
2587/*
2588 * Allocate a new command line buffer.
2589 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
2590 * Returns the new value of ccline.cmdbuff and ccline.cmdbufflen.
2591 */
2592 static void
2593alloc_cmdbuff(len)
2594 int len;
2595{
2596 /*
2597 * give some extra space to avoid having to allocate all the time
2598 */
2599 if (len < 80)
2600 len = 100;
2601 else
2602 len += 20;
2603
2604 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */
2605 ccline.cmdbufflen = len;
2606}
2607
2608/*
2609 * Re-allocate the command line to length len + something extra.
2610 * return FAIL for failure, OK otherwise
2611 */
2612 static int
2613realloc_cmdbuff(len)
2614 int len;
2615{
2616 char_u *p;
2617
Bram Moolenaar673b87b2010-08-13 19:12:07 +02002618 if (len < ccline.cmdbufflen)
2619 return OK; /* no need to resize */
2620
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621 p = ccline.cmdbuff;
2622 alloc_cmdbuff(len); /* will get some more */
2623 if (ccline.cmdbuff == NULL) /* out of memory */
2624 {
2625 ccline.cmdbuff = p; /* keep the old one */
2626 return FAIL;
2627 }
Bram Moolenaar35a34232010-08-13 16:51:26 +02002628 /* There isn't always a NUL after the command, but it may need to be
2629 * there, thus copy up to the NUL and add a NUL. */
2630 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen);
2631 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 vim_free(p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002633
2634 if (ccline.xpc != NULL
2635 && ccline.xpc->xp_pattern != NULL
2636 && ccline.xpc->xp_context != EXPAND_NOTHING
2637 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL)
2638 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00002639 int i = (int)(ccline.xpc->xp_pattern - p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002640
2641 /* If xp_pattern points inside the old cmdbuff it needs to be adjusted
2642 * to point into the newly allocated memory. */
2643 if (i >= 0 && i <= ccline.cmdlen)
2644 ccline.xpc->xp_pattern = ccline.cmdbuff + i;
2645 }
2646
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 return OK;
2648}
2649
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002650#if defined(FEAT_ARABIC) || defined(PROTO)
2651static char_u *arshape_buf = NULL;
2652
2653# if defined(EXITFREE) || defined(PROTO)
2654 void
2655free_cmdline_buf()
2656{
2657 vim_free(arshape_buf);
2658}
2659# endif
2660#endif
2661
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662/*
2663 * Draw part of the cmdline at the current cursor position. But draw stars
2664 * when cmdline_star is TRUE.
2665 */
2666 static void
2667draw_cmdline(start, len)
2668 int start;
2669 int len;
2670{
2671#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2672 int i;
2673
2674 if (cmdline_star > 0)
2675 for (i = 0; i < len; ++i)
2676 {
2677 msg_putchar('*');
2678# ifdef FEAT_MBYTE
2679 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002680 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681# endif
2682 }
2683 else
2684#endif
2685#ifdef FEAT_ARABIC
2686 if (p_arshape && !p_tbidi && enc_utf8 && len > 0)
2687 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 static int buflen = 0;
2689 char_u *p;
2690 int j;
2691 int newlen = 0;
2692 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00002693 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694 int prev_c = 0;
2695 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002696 int u8c;
2697 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699
2700 /*
2701 * Do arabic shaping into a temporary buffer. This is very
2702 * inefficient!
2703 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002704 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 {
2706 /* Re-allocate the buffer. We keep it around to avoid a lot of
2707 * alloc()/free() calls. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002708 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002709 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002710 arshape_buf = alloc(buflen);
2711 if (arshape_buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 return; /* out of memory */
2713 }
2714
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002715 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
2716 {
2717 /* Prepend a space to draw the leading composing char on. */
2718 arshape_buf[0] = ' ';
2719 newlen = 1;
2720 }
2721
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722 for (j = start; j < start + len; j += mb_l)
2723 {
2724 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002725 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002726 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 if (ARABIC_CHAR(u8c))
2728 {
2729 /* Do Arabic shaping. */
2730 if (cmdmsg_rl)
2731 {
2732 /* displaying from right to left */
2733 pc = prev_c;
2734 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002735 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736 if (j + mb_l >= start + len)
2737 nc = NUL;
2738 else
2739 nc = utf_ptr2char(p + mb_l);
2740 }
2741 else
2742 {
2743 /* displaying from left to right */
2744 if (j + mb_l >= start + len)
2745 pc = NUL;
2746 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002747 {
2748 int pcc[MAX_MCO];
2749
2750 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002752 pc1 = pcc[0];
2753 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 nc = prev_c;
2755 }
2756 prev_c = u8c;
2757
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002758 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002760 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002761 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002763 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
2764 if (u8cc[1] != 0)
2765 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002766 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767 }
2768 }
2769 else
2770 {
2771 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002772 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773 newlen += mb_l;
2774 }
2775 }
2776
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002777 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778 }
2779 else
2780#endif
2781 msg_outtrans_len(ccline.cmdbuff + start, len);
2782}
2783
2784/*
2785 * Put a character on the command line. Shifts the following text to the
2786 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
2787 * "c" must be printable (fit in one display cell)!
2788 */
2789 void
2790putcmdline(c, shift)
2791 int c;
2792 int shift;
2793{
2794 if (cmd_silent)
2795 return;
2796 msg_no_more = TRUE;
2797 msg_putchar(c);
2798 if (shift)
2799 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2800 msg_no_more = FALSE;
2801 cursorcmd();
2802}
2803
2804/*
2805 * Undo a putcmdline(c, FALSE).
2806 */
2807 void
2808unputcmdline()
2809{
2810 if (cmd_silent)
2811 return;
2812 msg_no_more = TRUE;
2813 if (ccline.cmdlen == ccline.cmdpos)
2814 msg_putchar(' ');
Bram Moolenaar64fdf5c2012-06-06 12:03:06 +02002815#ifdef FEAT_MBYTE
2816 else if (has_mbyte)
2817 draw_cmdline(ccline.cmdpos,
2818 (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos));
2819#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 else
2821 draw_cmdline(ccline.cmdpos, 1);
2822 msg_no_more = FALSE;
2823 cursorcmd();
2824}
2825
2826/*
2827 * Put the given string, of the given length, onto the command line.
2828 * If len is -1, then STRLEN() is used to calculate the length.
2829 * If 'redraw' is TRUE then the new part of the command line, and the remaining
2830 * part will be redrawn, otherwise it will not. If this function is called
2831 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
2832 * called afterwards.
2833 */
2834 int
2835put_on_cmdline(str, len, redraw)
2836 char_u *str;
2837 int len;
2838 int redraw;
2839{
2840 int retval;
2841 int i;
2842 int m;
2843 int c;
2844
2845 if (len < 0)
2846 len = (int)STRLEN(str);
2847
2848 /* Check if ccline.cmdbuff needs to be longer */
2849 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
Bram Moolenaar673b87b2010-08-13 19:12:07 +02002850 retval = realloc_cmdbuff(ccline.cmdlen + len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 else
2852 retval = OK;
2853 if (retval == OK)
2854 {
2855 if (!ccline.overstrike)
2856 {
2857 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2858 ccline.cmdbuff + ccline.cmdpos,
2859 (size_t)(ccline.cmdlen - ccline.cmdpos));
2860 ccline.cmdlen += len;
2861 }
2862 else
2863 {
2864#ifdef FEAT_MBYTE
2865 if (has_mbyte)
2866 {
2867 /* Count nr of characters in the new string. */
2868 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002869 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 ++m;
2871 /* Count nr of bytes in cmdline that are overwritten by these
2872 * characters. */
2873 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002874 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875 --m;
2876 if (i < ccline.cmdlen)
2877 {
2878 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2879 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
2880 ccline.cmdlen += ccline.cmdpos + len - i;
2881 }
2882 else
2883 ccline.cmdlen = ccline.cmdpos + len;
2884 }
2885 else
2886#endif
2887 if (ccline.cmdpos + len > ccline.cmdlen)
2888 ccline.cmdlen = ccline.cmdpos + len;
2889 }
2890 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
2891 ccline.cmdbuff[ccline.cmdlen] = NUL;
2892
2893#ifdef FEAT_MBYTE
2894 if (enc_utf8)
2895 {
2896 /* When the inserted text starts with a composing character,
2897 * backup to the character before it. There could be two of them.
2898 */
2899 i = 0;
2900 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
2901 while (ccline.cmdpos > 0 && utf_iscomposing(c))
2902 {
2903 i = (*mb_head_off)(ccline.cmdbuff,
2904 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
2905 ccline.cmdpos -= i;
2906 len += i;
2907 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
2908 }
2909# ifdef FEAT_ARABIC
2910 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
2911 {
2912 /* Check the previous character for Arabic combining pair. */
2913 i = (*mb_head_off)(ccline.cmdbuff,
2914 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
2915 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
2916 + ccline.cmdpos - i), c))
2917 {
2918 ccline.cmdpos -= i;
2919 len += i;
2920 }
2921 else
2922 i = 0;
2923 }
2924# endif
2925 if (i != 0)
2926 {
2927 /* Also backup the cursor position. */
2928 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
2929 ccline.cmdspos -= i;
2930 msg_col -= i;
2931 if (msg_col < 0)
2932 {
2933 msg_col += Columns;
2934 --msg_row;
2935 }
2936 }
2937 }
2938#endif
2939
2940 if (redraw && !cmd_silent)
2941 {
2942 msg_no_more = TRUE;
2943 i = cmdline_row;
Bram Moolenaar73dc59a2011-09-30 17:46:21 +02002944 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2946 /* Avoid clearing the rest of the line too often. */
2947 if (cmdline_row != i || ccline.overstrike)
2948 msg_clr_eos();
2949 msg_no_more = FALSE;
2950 }
2951#ifdef FEAT_FKMAP
2952 /*
2953 * If we are in Farsi command mode, the character input must be in
2954 * Insert mode. So do not advance the cmdpos.
2955 */
2956 if (!cmd_fkmap)
2957#endif
2958 {
2959 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002960 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002962 if (m < 0) /* overflow, Columns or Rows at weird value */
2963 m = MAXCOL;
2964 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965 else
2966 m = MAXCOL;
2967 for (i = 0; i < len; ++i)
2968 {
2969 c = cmdline_charsize(ccline.cmdpos);
2970#ifdef FEAT_MBYTE
2971 /* count ">" for a double-wide char that doesn't fit. */
2972 if (has_mbyte)
2973 correct_cmdspos(ccline.cmdpos, c);
2974#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00002975 /* Stop cursor at the end of the screen, but do increment the
2976 * insert position, so that entering a very long command
2977 * works, even though you can't see it. */
2978 if (ccline.cmdspos + c < m)
2979 ccline.cmdspos += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980#ifdef FEAT_MBYTE
2981 if (has_mbyte)
2982 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002983 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984 if (c > len - i - 1)
2985 c = len - i - 1;
2986 ccline.cmdpos += c;
2987 i += c;
2988 }
2989#endif
2990 ++ccline.cmdpos;
2991 }
2992 }
2993 }
2994 if (redraw)
2995 msg_check();
2996 return retval;
2997}
2998
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002999static struct cmdline_info prev_ccline;
3000static int prev_ccline_used = FALSE;
3001
3002/*
3003 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
3004 * and overwrite it. But get_cmdline_str() may need it, thus make it
3005 * available globally in prev_ccline.
3006 */
3007 static void
3008save_cmdline(ccp)
3009 struct cmdline_info *ccp;
3010{
3011 if (!prev_ccline_used)
3012 {
3013 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info));
3014 prev_ccline_used = TRUE;
3015 }
3016 *ccp = prev_ccline;
3017 prev_ccline = ccline;
3018 ccline.cmdbuff = NULL;
3019 ccline.cmdprompt = NULL;
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003020 ccline.xpc = NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003021}
3022
3023/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003024 * Restore ccline after it has been saved with save_cmdline().
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003025 */
3026 static void
3027restore_cmdline(ccp)
3028 struct cmdline_info *ccp;
3029{
3030 ccline = prev_ccline;
3031 prev_ccline = *ccp;
3032}
3033
Bram Moolenaar5a305422006-04-28 22:38:25 +00003034#if defined(FEAT_EVAL) || defined(PROTO)
3035/*
3036 * Save the command line into allocated memory. Returns a pointer to be
3037 * passed to restore_cmdline_alloc() later.
3038 * Returns NULL when failed.
3039 */
3040 char_u *
3041save_cmdline_alloc()
3042{
3043 struct cmdline_info *p;
3044
3045 p = (struct cmdline_info *)alloc((unsigned)sizeof(struct cmdline_info));
3046 if (p != NULL)
3047 save_cmdline(p);
3048 return (char_u *)p;
3049}
3050
3051/*
3052 * Restore the command line from the return value of save_cmdline_alloc().
3053 */
3054 void
3055restore_cmdline_alloc(p)
3056 char_u *p;
3057{
3058 if (p != NULL)
3059 {
3060 restore_cmdline((struct cmdline_info *)p);
3061 vim_free(p);
3062 }
3063}
3064#endif
3065
Bram Moolenaar8299df92004-07-10 09:47:34 +00003066/*
3067 * paste a yank register into the command line.
3068 * used by CTRL-R command in command-line mode
3069 * insert_reg() can't be used here, because special characters from the
3070 * register contents will be interpreted as commands.
3071 *
3072 * return FAIL for failure, OK otherwise
3073 */
3074 static int
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003075cmdline_paste(regname, literally, remcr)
Bram Moolenaar8299df92004-07-10 09:47:34 +00003076 int regname;
3077 int literally; /* Insert text literally instead of "as typed" */
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003078 int remcr; /* remove trailing CR */
Bram Moolenaar8299df92004-07-10 09:47:34 +00003079{
3080 long i;
3081 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003082 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003083 int allocated;
3084 struct cmdline_info save_ccline;
3085
3086 /* check for valid regname; also accept special characters for CTRL-R in
3087 * the command line */
3088 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
3089 && regname != Ctrl_A && !valid_yank_reg(regname, FALSE))
3090 return FAIL;
3091
3092 /* A register containing CTRL-R can cause an endless loop. Allow using
3093 * CTRL-C to break the loop. */
3094 line_breakcheck();
3095 if (got_int)
3096 return FAIL;
3097
3098#ifdef FEAT_CLIPBOARD
3099 regname = may_get_selection(regname);
3100#endif
3101
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003102 /* Need to save and restore ccline. And set "textlock" to avoid nasty
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003103 * things like going to another buffer when evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003104 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003105 ++textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003106 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003107 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003108 restore_cmdline(&save_ccline);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003109
3110 if (i)
3111 {
3112 /* Got the value of a special register in "arg". */
3113 if (arg == NULL)
3114 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003115
3116 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
3117 * part of the word. */
3118 p = arg;
3119 if (p_is && regname == Ctrl_W)
3120 {
3121 char_u *w;
3122 int len;
3123
3124 /* Locate start of last word in the cmd buffer. */
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003125 for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; )
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003126 {
3127#ifdef FEAT_MBYTE
3128 if (has_mbyte)
3129 {
3130 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
3131 if (!vim_iswordc(mb_ptr2char(w - len)))
3132 break;
3133 w -= len;
3134 }
3135 else
3136#endif
3137 {
3138 if (!vim_iswordc(w[-1]))
3139 break;
3140 --w;
3141 }
3142 }
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003143 len = (int)((ccline.cmdbuff + ccline.cmdpos) - w);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003144 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
3145 p += len;
3146 }
3147
3148 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003149 if (allocated)
3150 vim_free(arg);
3151 return OK;
3152 }
3153
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003154 return cmdline_paste_reg(regname, literally, remcr);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003155}
3156
3157/*
3158 * Put a string on the command line.
3159 * When "literally" is TRUE, insert literally.
3160 * When "literally" is FALSE, insert as typed, but don't leave the command
3161 * line.
3162 */
3163 void
3164cmdline_paste_str(s, literally)
3165 char_u *s;
3166 int literally;
3167{
3168 int c, cv;
3169
3170 if (literally)
3171 put_on_cmdline(s, -1, TRUE);
3172 else
3173 while (*s != NUL)
3174 {
3175 cv = *s;
3176 if (cv == Ctrl_V && s[1])
3177 ++s;
3178#ifdef FEAT_MBYTE
3179 if (has_mbyte)
Bram Moolenaar48be32b2008-06-20 10:56:16 +00003180 c = mb_cptr2char_adv(&s);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003181 else
3182#endif
3183 c = *s++;
Bram Moolenaare79abdd2012-06-29 13:44:41 +02003184 if (cv == Ctrl_V || c == ESC || c == Ctrl_C
3185 || c == CAR || c == NL || c == Ctrl_L
Bram Moolenaar8299df92004-07-10 09:47:34 +00003186#ifdef UNIX
3187 || c == intr_char
3188#endif
3189 || (c == Ctrl_BSL && *s == Ctrl_N))
3190 stuffcharReadbuff(Ctrl_V);
3191 stuffcharReadbuff(c);
3192 }
3193}
3194
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195#ifdef FEAT_WILDMENU
3196/*
3197 * Delete characters on the command line, from "from" to the current
3198 * position.
3199 */
3200 static void
3201cmdline_del(from)
3202 int from;
3203{
3204 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
3205 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3206 ccline.cmdlen -= ccline.cmdpos - from;
3207 ccline.cmdpos = from;
3208}
3209#endif
3210
3211/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003212 * this function is called when the screen size changes and with incremental
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213 * search
3214 */
3215 void
3216redrawcmdline()
3217{
3218 if (cmd_silent)
3219 return;
3220 need_wait_return = FALSE;
3221 compute_cmdrow();
3222 redrawcmd();
3223 cursorcmd();
3224}
3225
3226 static void
3227redrawcmdprompt()
3228{
3229 int i;
3230
3231 if (cmd_silent)
3232 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003233 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003234 msg_putchar(ccline.cmdfirstc);
3235 if (ccline.cmdprompt != NULL)
3236 {
3237 msg_puts_attr(ccline.cmdprompt, ccline.cmdattr);
3238 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
3239 /* do the reverse of set_cmdspos() */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003240 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241 --ccline.cmdindent;
3242 }
3243 else
3244 for (i = ccline.cmdindent; i > 0; --i)
3245 msg_putchar(' ');
3246}
3247
3248/*
3249 * Redraw what is currently on the command line.
3250 */
3251 void
3252redrawcmd()
3253{
3254 if (cmd_silent)
3255 return;
3256
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003257 /* when 'incsearch' is set there may be no command line while redrawing */
3258 if (ccline.cmdbuff == NULL)
3259 {
3260 windgoto(cmdline_row, 0);
3261 msg_clr_eos();
3262 return;
3263 }
3264
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 msg_start();
3266 redrawcmdprompt();
3267
3268 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
3269 msg_no_more = TRUE;
3270 draw_cmdline(0, ccline.cmdlen);
3271 msg_clr_eos();
3272 msg_no_more = FALSE;
3273
3274 set_cmdspos_cursor();
3275
3276 /*
3277 * An emsg() before may have set msg_scroll. This is used in normal mode,
3278 * in cmdline mode we can reset them now.
3279 */
3280 msg_scroll = FALSE; /* next message overwrites cmdline */
3281
3282 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
3283 * in cmdline mode */
3284 skip_redraw = FALSE;
3285}
3286
3287 void
3288compute_cmdrow()
3289{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003290 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291 cmdline_row = Rows - 1;
3292 else
3293 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
3294 + W_STATUS_HEIGHT(lastwin);
3295}
3296
3297 static void
3298cursorcmd()
3299{
3300 if (cmd_silent)
3301 return;
3302
3303#ifdef FEAT_RIGHTLEFT
3304 if (cmdmsg_rl)
3305 {
3306 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3307 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3308 if (msg_row <= 0)
3309 msg_row = Rows - 1;
3310 }
3311 else
3312#endif
3313 {
3314 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3315 msg_col = ccline.cmdspos % (int)Columns;
3316 if (msg_row >= Rows)
3317 msg_row = Rows - 1;
3318 }
3319
3320 windgoto(msg_row, msg_col);
3321#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
3322 redrawcmd_preedit();
3323#endif
3324#ifdef MCH_CURSOR_SHAPE
3325 mch_update_cursor();
3326#endif
3327}
3328
3329 void
3330gotocmdline(clr)
3331 int clr;
3332{
3333 msg_start();
3334#ifdef FEAT_RIGHTLEFT
3335 if (cmdmsg_rl)
3336 msg_col = Columns - 1;
3337 else
3338#endif
3339 msg_col = 0; /* always start in column 0 */
3340 if (clr) /* clear the bottom line(s) */
3341 msg_clr_eos(); /* will reset clear_cmdline */
3342 windgoto(cmdline_row, 0);
3343}
3344
3345/*
3346 * Check the word in front of the cursor for an abbreviation.
3347 * Called when the non-id character "c" has been entered.
3348 * When an abbreviation is recognized it is removed from the text with
3349 * backspaces and the replacement string is inserted, followed by "c".
3350 */
3351 static int
3352ccheck_abbr(c)
3353 int c;
3354{
3355 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
3356 return FALSE;
3357
3358 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, 0);
3359}
3360
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003361#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3362 static int
3363#ifdef __BORLANDC__
3364_RTLENTRYF
3365#endif
3366sort_func_compare(s1, s2)
3367 const void *s1;
3368 const void *s2;
3369{
3370 char_u *p1 = *(char_u **)s1;
3371 char_u *p2 = *(char_u **)s2;
3372
3373 if (*p1 != '<' && *p2 == '<') return -1;
3374 if (*p1 == '<' && *p2 != '<') return 1;
3375 return STRCMP(p1, p2);
3376}
3377#endif
3378
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379/*
3380 * Return FAIL if this is not an appropriate context in which to do
3381 * completion of anything, return OK if it is (even if there are no matches).
3382 * For the caller, this means that the character is just passed through like a
3383 * normal character (instead of being expanded). This allows :s/^I^D etc.
3384 */
3385 static int
Bram Moolenaarb3479632012-11-28 16:49:58 +01003386nextwild(xp, type, options, escape)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387 expand_T *xp;
3388 int type;
3389 int options; /* extra options for ExpandOne() */
Bram Moolenaarb3479632012-11-28 16:49:58 +01003390 int escape; /* if TRUE, escape the returned matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391{
3392 int i, j;
3393 char_u *p1;
3394 char_u *p2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395 int difflen;
3396 int v;
3397
3398 if (xp->xp_numfiles == -1)
3399 {
3400 set_expand_context(xp);
3401 cmd_showtail = expand_showtail(xp);
3402 }
3403
3404 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
3405 {
3406 beep_flush();
3407 return OK; /* Something illegal on command line */
3408 }
3409 if (xp->xp_context == EXPAND_NOTHING)
3410 {
3411 /* Caller can use the character as a normal char instead */
3412 return FAIL;
3413 }
3414
3415 MSG_PUTS("..."); /* show that we are busy */
3416 out_flush();
3417
3418 i = (int)(xp->xp_pattern - ccline.cmdbuff);
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003419 xp->xp_pattern_len = ccline.cmdpos - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420
3421 if (type == WILD_NEXT || type == WILD_PREV)
3422 {
3423 /*
3424 * Get next/previous match for a previous expanded pattern.
3425 */
3426 p2 = ExpandOne(xp, NULL, NULL, 0, type);
3427 }
3428 else
3429 {
3430 /*
3431 * Translate string into pattern and expand it.
3432 */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003433 if ((p1 = addstar(xp->xp_pattern, xp->xp_pattern_len,
3434 xp->xp_context)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435 p2 = NULL;
3436 else
3437 {
Bram Moolenaar94950a92010-12-02 16:01:29 +01003438 int use_options = options |
Bram Moolenaarb3479632012-11-28 16:49:58 +01003439 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT;
3440 if (escape)
3441 use_options |= WILD_ESCAPE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01003442
3443 if (p_wic)
3444 use_options += WILD_ICASE;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003445 p2 = ExpandOne(xp, p1,
3446 vim_strnsave(&ccline.cmdbuff[i], xp->xp_pattern_len),
Bram Moolenaar94950a92010-12-02 16:01:29 +01003447 use_options, type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 vim_free(p1);
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003449 /* longest match: make sure it is not shorter, happens with :help */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003450 if (p2 != NULL && type == WILD_LONGEST)
3451 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003452 for (j = 0; j < xp->xp_pattern_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 if (ccline.cmdbuff[i + j] == '*'
3454 || ccline.cmdbuff[i + j] == '?')
3455 break;
3456 if ((int)STRLEN(p2) < j)
3457 {
3458 vim_free(p2);
3459 p2 = NULL;
3460 }
3461 }
3462 }
3463 }
3464
3465 if (p2 != NULL && !got_int)
3466 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003467 difflen = (int)STRLEN(p2) - xp->xp_pattern_len;
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003468 if (ccline.cmdlen + difflen + 4 > ccline.cmdbufflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003470 v = realloc_cmdbuff(ccline.cmdlen + difflen + 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 xp->xp_pattern = ccline.cmdbuff + i;
3472 }
3473 else
3474 v = OK;
3475 if (v == OK)
3476 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003477 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen],
3478 &ccline.cmdbuff[ccline.cmdpos],
3479 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3480 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481 ccline.cmdlen += difflen;
3482 ccline.cmdpos += difflen;
3483 }
3484 }
3485 vim_free(p2);
3486
3487 redrawcmd();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003488 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489
3490 /* When expanding a ":map" command and no matches are found, assume that
3491 * the key is supposed to be inserted literally */
3492 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL)
3493 return FAIL;
3494
3495 if (xp->xp_numfiles <= 0 && p2 == NULL)
3496 beep_flush();
3497 else if (xp->xp_numfiles == 1)
3498 /* free expanded pattern */
3499 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
3500
3501 return OK;
3502}
3503
3504/*
3505 * Do wildcard expansion on the string 'str'.
3506 * Chars that should not be expanded must be preceded with a backslash.
Bram Moolenaarf9821062008-06-20 16:31:07 +00003507 * Return a pointer to allocated memory containing the new string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508 * Return NULL for failure.
3509 *
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003510 * "orig" is the originally expanded string, copied to allocated memory. It
3511 * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or
3512 * WILD_PREV "orig" should be NULL.
3513 *
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003514 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode"
3515 * is WILD_EXPAND_FREE or WILD_ALL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516 *
3517 * mode = WILD_FREE: just free previously expanded matches
3518 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches
3519 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches
3520 * mode = WILD_NEXT: use next match in multiple match, wrap to first
3521 * mode = WILD_PREV: use previous match in multiple match, wrap to first
3522 * mode = WILD_ALL: return all matches concatenated
3523 * mode = WILD_LONGEST: return longest matched part
Bram Moolenaar146e9c32012-03-07 19:18:23 +01003524 * mode = WILD_ALL_KEEP: get all matches, keep matches
Bram Moolenaar071d4272004-06-13 20:20:40 +00003525 *
3526 * options = WILD_LIST_NOTFOUND: list entries without a match
3527 * options = WILD_HOME_REPLACE: do home_replace() for buffer names
3528 * options = WILD_USE_NL: Use '\n' for WILD_ALL
3529 * options = WILD_NO_BEEP: Don't beep for multiple matches
3530 * options = WILD_ADD_SLASH: add a slash after directory names
3531 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries
3532 * options = WILD_SILENT: don't print warning messages
3533 * options = WILD_ESCAPE: put backslash before special chars
Bram Moolenaar94950a92010-12-02 16:01:29 +01003534 * options = WILD_ICASE: ignore case for files
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535 *
3536 * The variables xp->xp_context and xp->xp_backslash must have been set!
3537 */
3538 char_u *
3539ExpandOne(xp, str, orig, options, mode)
3540 expand_T *xp;
3541 char_u *str;
3542 char_u *orig; /* allocated copy of original of expanded string */
3543 int options;
3544 int mode;
3545{
3546 char_u *ss = NULL;
3547 static int findex;
3548 static char_u *orig_save = NULL; /* kept value of orig */
Bram Moolenaar96426642007-10-30 16:37:15 +00003549 int orig_saved = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550 int i;
3551 long_u len;
3552 int non_suf_match; /* number without matching suffix */
3553
3554 /*
3555 * first handle the case of using an old match
3556 */
3557 if (mode == WILD_NEXT || mode == WILD_PREV)
3558 {
3559 if (xp->xp_numfiles > 0)
3560 {
3561 if (mode == WILD_PREV)
3562 {
3563 if (findex == -1)
3564 findex = xp->xp_numfiles;
3565 --findex;
3566 }
3567 else /* mode == WILD_NEXT */
3568 ++findex;
3569
3570 /*
3571 * When wrapping around, return the original string, set findex to
3572 * -1.
3573 */
3574 if (findex < 0)
3575 {
3576 if (orig_save == NULL)
3577 findex = xp->xp_numfiles - 1;
3578 else
3579 findex = -1;
3580 }
3581 if (findex >= xp->xp_numfiles)
3582 {
3583 if (orig_save == NULL)
3584 findex = 0;
3585 else
3586 findex = -1;
3587 }
3588#ifdef FEAT_WILDMENU
3589 if (p_wmnu)
3590 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files,
3591 findex, cmd_showtail);
3592#endif
3593 if (findex == -1)
3594 return vim_strsave(orig_save);
3595 return vim_strsave(xp->xp_files[findex]);
3596 }
3597 else
3598 return NULL;
3599 }
3600
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003601 /* free old names */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST)
3603 {
3604 FreeWild(xp->xp_numfiles, xp->xp_files);
3605 xp->xp_numfiles = -1;
3606 vim_free(orig_save);
3607 orig_save = NULL;
3608 }
3609 findex = 0;
3610
3611 if (mode == WILD_FREE) /* only release file name */
3612 return NULL;
3613
3614 if (xp->xp_numfiles == -1)
3615 {
3616 vim_free(orig_save);
3617 orig_save = orig;
Bram Moolenaar96426642007-10-30 16:37:15 +00003618 orig_saved = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003619
3620 /*
3621 * Do the expansion.
3622 */
3623 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files,
3624 options) == FAIL)
3625 {
3626#ifdef FNAME_ILLEGAL
3627 /* Illegal file name has been silently skipped. But when there
3628 * are wildcards, the real problem is that there was no match,
3629 * causing the pattern to be added, which has illegal characters.
3630 */
3631 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND))
3632 EMSG2(_(e_nomatch2), str);
3633#endif
3634 }
3635 else if (xp->xp_numfiles == 0)
3636 {
3637 if (!(options & WILD_SILENT))
3638 EMSG2(_(e_nomatch2), str);
3639 }
3640 else
3641 {
3642 /* Escape the matches for use on the command line. */
3643 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options);
3644
3645 /*
3646 * Check for matching suffixes in file names.
3647 */
Bram Moolenaar146e9c32012-03-07 19:18:23 +01003648 if (mode != WILD_ALL && mode != WILD_ALL_KEEP
3649 && mode != WILD_LONGEST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650 {
3651 if (xp->xp_numfiles)
3652 non_suf_match = xp->xp_numfiles;
3653 else
3654 non_suf_match = 1;
3655 if ((xp->xp_context == EXPAND_FILES
3656 || xp->xp_context == EXPAND_DIRECTORIES)
3657 && xp->xp_numfiles > 1)
3658 {
3659 /*
3660 * More than one match; check suffix.
3661 * The files will have been sorted on matching suffix in
3662 * expand_wildcards, only need to check the first two.
3663 */
3664 non_suf_match = 0;
3665 for (i = 0; i < 2; ++i)
3666 if (match_suffix(xp->xp_files[i]))
3667 ++non_suf_match;
3668 }
3669 if (non_suf_match != 1)
3670 {
3671 /* Can we ever get here unless it's while expanding
3672 * interactively? If not, we can get rid of this all
3673 * together. Don't really want to wait for this message
3674 * (and possibly have to hit return to continue!).
3675 */
3676 if (!(options & WILD_SILENT))
3677 EMSG(_(e_toomany));
3678 else if (!(options & WILD_NO_BEEP))
3679 beep_flush();
3680 }
3681 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE))
3682 ss = vim_strsave(xp->xp_files[0]);
3683 }
3684 }
3685 }
3686
3687 /* Find longest common part */
3688 if (mode == WILD_LONGEST && xp->xp_numfiles > 0)
3689 {
3690 for (len = 0; xp->xp_files[0][len]; ++len)
3691 {
3692 for (i = 0; i < xp->xp_numfiles; ++i)
3693 {
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01003694 if (p_fic && (xp->xp_context == EXPAND_DIRECTORIES
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 || xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003696 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01003697 || xp->xp_context == EXPAND_BUFFERS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 {
3699 if (TOLOWER_LOC(xp->xp_files[i][len]) !=
3700 TOLOWER_LOC(xp->xp_files[0][len]))
3701 break;
3702 }
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01003703 else if (xp->xp_files[i][len] != xp->xp_files[0][len])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704 break;
3705 }
3706 if (i < xp->xp_numfiles)
3707 {
3708 if (!(options & WILD_NO_BEEP))
3709 vim_beep();
3710 break;
3711 }
3712 }
3713 ss = alloc((unsigned)len + 1);
3714 if (ss)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003715 vim_strncpy(ss, xp->xp_files[0], (size_t)len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716 findex = -1; /* next p_wc gets first one */
3717 }
3718
3719 /* Concatenate all matching names */
3720 if (mode == WILD_ALL && xp->xp_numfiles > 0)
3721 {
3722 len = 0;
3723 for (i = 0; i < xp->xp_numfiles; ++i)
3724 len += (long_u)STRLEN(xp->xp_files[i]) + 1;
3725 ss = lalloc(len, TRUE);
3726 if (ss != NULL)
3727 {
3728 *ss = NUL;
3729 for (i = 0; i < xp->xp_numfiles; ++i)
3730 {
3731 STRCAT(ss, xp->xp_files[i]);
3732 if (i != xp->xp_numfiles - 1)
3733 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " ");
3734 }
3735 }
3736 }
3737
3738 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL)
3739 ExpandCleanup(xp);
3740
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003741 /* Free "orig" if it wasn't stored in "orig_save". */
Bram Moolenaar96426642007-10-30 16:37:15 +00003742 if (!orig_saved)
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003743 vim_free(orig);
3744
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 return ss;
3746}
3747
3748/*
3749 * Prepare an expand structure for use.
3750 */
3751 void
3752ExpandInit(xp)
3753 expand_T *xp;
3754{
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003755 xp->xp_pattern = NULL;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003756 xp->xp_pattern_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003758#ifndef BACKSLASH_IN_FILENAME
3759 xp->xp_shell = FALSE;
3760#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 xp->xp_numfiles = -1;
3762 xp->xp_files = NULL;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003763#if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
3764 xp->xp_arg = NULL;
3765#endif
Bram Moolenaarb7515462013-06-29 12:58:33 +02003766 xp->xp_line = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767}
3768
3769/*
3770 * Cleanup an expand structure after use.
3771 */
3772 void
3773ExpandCleanup(xp)
3774 expand_T *xp;
3775{
3776 if (xp->xp_numfiles >= 0)
3777 {
3778 FreeWild(xp->xp_numfiles, xp->xp_files);
3779 xp->xp_numfiles = -1;
3780 }
3781}
3782
3783 void
3784ExpandEscape(xp, str, numfiles, files, options)
3785 expand_T *xp;
3786 char_u *str;
3787 int numfiles;
3788 char_u **files;
3789 int options;
3790{
3791 int i;
3792 char_u *p;
3793
3794 /*
3795 * May change home directory back to "~"
3796 */
3797 if (options & WILD_HOME_REPLACE)
3798 tilde_replace(str, numfiles, files);
3799
3800 if (options & WILD_ESCAPE)
3801 {
3802 if (xp->xp_context == EXPAND_FILES
Bram Moolenaarcca92ec2011-04-28 17:21:53 +02003803 || xp->xp_context == EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003804 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805 || xp->xp_context == EXPAND_BUFFERS
3806 || xp->xp_context == EXPAND_DIRECTORIES)
3807 {
3808 /*
3809 * Insert a backslash into a file name before a space, \, %, #
3810 * and wildmatch characters, except '~'.
3811 */
3812 for (i = 0; i < numfiles; ++i)
3813 {
3814 /* for ":set path=" we need to escape spaces twice */
3815 if (xp->xp_backslash == XP_BS_THREE)
3816 {
3817 p = vim_strsave_escaped(files[i], (char_u *)" ");
3818 if (p != NULL)
3819 {
3820 vim_free(files[i]);
3821 files[i] = p;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003822#if defined(BACKSLASH_IN_FILENAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823 p = vim_strsave_escaped(files[i], (char_u *)" ");
3824 if (p != NULL)
3825 {
3826 vim_free(files[i]);
3827 files[i] = p;
3828 }
3829#endif
3830 }
3831 }
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00003832#ifdef BACKSLASH_IN_FILENAME
3833 p = vim_strsave_fnameescape(files[i], FALSE);
3834#else
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003835 p = vim_strsave_fnameescape(files[i], xp->xp_shell);
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00003836#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 if (p != NULL)
3838 {
3839 vim_free(files[i]);
3840 files[i] = p;
3841 }
3842
3843 /* If 'str' starts with "\~", replace "~" at start of
3844 * files[i] with "\~". */
3845 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~')
Bram Moolenaar45360022005-07-21 21:08:21 +00003846 escape_fname(&files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847 }
3848 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar45360022005-07-21 21:08:21 +00003849
3850 /* If the first file starts with a '+' escape it. Otherwise it
3851 * could be seen as "+cmd". */
3852 if (*files[0] == '+')
3853 escape_fname(&files[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854 }
3855 else if (xp->xp_context == EXPAND_TAGS)
3856 {
3857 /*
3858 * Insert a backslash before characters in a tag name that
3859 * would terminate the ":tag" command.
3860 */
3861 for (i = 0; i < numfiles; ++i)
3862 {
3863 p = vim_strsave_escaped(files[i], (char_u *)"\\|\"");
3864 if (p != NULL)
3865 {
3866 vim_free(files[i]);
3867 files[i] = p;
3868 }
3869 }
3870 }
3871 }
3872}
3873
3874/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003875 * Escape special characters in "fname" for when used as a file name argument
3876 * after a Vim command, or, when "shell" is non-zero, a shell command.
3877 * Returns the result in allocated memory.
3878 */
3879 char_u *
3880vim_strsave_fnameescape(fname, shell)
3881 char_u *fname;
3882 int shell;
3883{
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003884 char_u *p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003885#ifdef BACKSLASH_IN_FILENAME
3886 char_u buf[20];
3887 int j = 0;
3888
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01003889 /* Don't escape '[', '{' and '!' if they are in 'isfname'. */
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003890 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01003891 if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p))
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003892 buf[j++] = *p;
3893 buf[j] = NUL;
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003894 p = vim_strsave_escaped(fname, buf);
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003895#else
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003896 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
3897 if (shell && csh_like_shell() && p != NULL)
3898 {
3899 char_u *s;
3900
3901 /* For csh and similar shells need to put two backslashes before '!'.
3902 * One is taken by Vim, one by the shell. */
3903 s = vim_strsave_escaped(p, (char_u *)"!");
3904 vim_free(p);
3905 p = s;
3906 }
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003907#endif
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003908
3909 /* '>' and '+' are special at the start of some commands, e.g. ":edit" and
3910 * ":write". "cd -" has a special meaning. */
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003911 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL)))
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003912 escape_fname(&p);
3913
3914 return p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003915}
3916
3917/*
Bram Moolenaar45360022005-07-21 21:08:21 +00003918 * Put a backslash before the file name in "pp", which is in allocated memory.
3919 */
3920 static void
3921escape_fname(pp)
3922 char_u **pp;
3923{
3924 char_u *p;
3925
3926 p = alloc((unsigned)(STRLEN(*pp) + 2));
3927 if (p != NULL)
3928 {
3929 p[0] = '\\';
3930 STRCPY(p + 1, *pp);
3931 vim_free(*pp);
3932 *pp = p;
3933 }
3934}
3935
3936/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937 * For each file name in files[num_files]:
3938 * If 'orig_pat' starts with "~/", replace the home directory with "~".
3939 */
3940 void
3941tilde_replace(orig_pat, num_files, files)
3942 char_u *orig_pat;
3943 int num_files;
3944 char_u **files;
3945{
3946 int i;
3947 char_u *p;
3948
3949 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
3950 {
3951 for (i = 0; i < num_files; ++i)
3952 {
3953 p = home_replace_save(NULL, files[i]);
3954 if (p != NULL)
3955 {
3956 vim_free(files[i]);
3957 files[i] = p;
3958 }
3959 }
3960 }
3961}
3962
3963/*
3964 * Show all matches for completion on the command line.
3965 * Returns EXPAND_NOTHING when the character that triggered expansion should
3966 * be inserted like a normal character.
3967 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968 static int
3969showmatches(xp, wildmenu)
3970 expand_T *xp;
Bram Moolenaar78a15312009-05-15 19:33:18 +00003971 int wildmenu UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972{
3973#define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m])
3974 int num_files;
3975 char_u **files_found;
3976 int i, j, k;
3977 int maxlen;
3978 int lines;
3979 int columns;
3980 char_u *p;
3981 int lastlen;
3982 int attr;
3983 int showtail;
3984
3985 if (xp->xp_numfiles == -1)
3986 {
3987 set_expand_context(xp);
3988 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos,
3989 &num_files, &files_found);
3990 showtail = expand_showtail(xp);
3991 if (i != EXPAND_OK)
3992 return i;
3993
3994 }
3995 else
3996 {
3997 num_files = xp->xp_numfiles;
3998 files_found = xp->xp_files;
3999 showtail = cmd_showtail;
4000 }
4001
4002#ifdef FEAT_WILDMENU
4003 if (!wildmenu)
4004 {
4005#endif
4006 msg_didany = FALSE; /* lines_left will be set */
4007 msg_start(); /* prepare for paging */
4008 msg_putchar('\n');
4009 out_flush();
4010 cmdline_row = msg_row;
4011 msg_didany = FALSE; /* lines_left will be set again */
4012 msg_start(); /* prepare for paging */
4013#ifdef FEAT_WILDMENU
4014 }
4015#endif
4016
4017 if (got_int)
4018 got_int = FALSE; /* only int. the completion, not the cmd line */
4019#ifdef FEAT_WILDMENU
4020 else if (wildmenu)
4021 win_redr_status_matches(xp, num_files, files_found, 0, showtail);
4022#endif
4023 else
4024 {
4025 /* find the length of the longest file name */
4026 maxlen = 0;
4027 for (i = 0; i < num_files; ++i)
4028 {
4029 if (!showtail && (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004030 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 || xp->xp_context == EXPAND_BUFFERS))
4032 {
4033 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE);
4034 j = vim_strsize(NameBuff);
4035 }
4036 else
4037 j = vim_strsize(L_SHOWFILE(i));
4038 if (j > maxlen)
4039 maxlen = j;
4040 }
4041
4042 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4043 lines = num_files;
4044 else
4045 {
4046 /* compute the number of columns and lines for the listing */
4047 maxlen += 2; /* two spaces between file names */
4048 columns = ((int)Columns + 2) / maxlen;
4049 if (columns < 1)
4050 columns = 1;
4051 lines = (num_files + columns - 1) / columns;
4052 }
4053
4054 attr = hl_attr(HLF_D); /* find out highlighting for directories */
4055
4056 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4057 {
4058 MSG_PUTS_ATTR(_("tagname"), hl_attr(HLF_T));
4059 msg_clr_eos();
4060 msg_advance(maxlen - 3);
4061 MSG_PUTS_ATTR(_(" kind file\n"), hl_attr(HLF_T));
4062 }
4063
4064 /* list the files line by line */
4065 for (i = 0; i < lines; ++i)
4066 {
4067 lastlen = 999;
4068 for (k = i; k < num_files; k += lines)
4069 {
4070 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4071 {
4072 msg_outtrans_attr(files_found[k], hl_attr(HLF_D));
4073 p = files_found[k] + STRLEN(files_found[k]) + 1;
4074 msg_advance(maxlen + 1);
4075 msg_puts(p);
4076 msg_advance(maxlen + 3);
4077 msg_puts_long_attr(p + 2, hl_attr(HLF_D));
4078 break;
4079 }
4080 for (j = maxlen - lastlen; --j >= 0; )
4081 msg_putchar(' ');
4082 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004083 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 || xp->xp_context == EXPAND_BUFFERS)
4085 {
Bram Moolenaarb91e59b2010-03-17 19:13:27 +01004086 /* highlight directories */
Bram Moolenaar63fa5262010-03-23 18:06:52 +01004087 if (xp->xp_numfiles != -1)
4088 {
4089 char_u *halved_slash;
4090 char_u *exp_path;
4091
4092 /* Expansion was done before and special characters
4093 * were escaped, need to halve backslashes. Also
4094 * $HOME has been replaced with ~/. */
4095 exp_path = expand_env_save_opt(files_found[k], TRUE);
4096 halved_slash = backslash_halve_save(
4097 exp_path != NULL ? exp_path : files_found[k]);
4098 j = mch_isdir(halved_slash != NULL ? halved_slash
4099 : files_found[k]);
4100 vim_free(exp_path);
4101 vim_free(halved_slash);
4102 }
4103 else
4104 /* Expansion was done here, file names are literal. */
4105 j = mch_isdir(files_found[k]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106 if (showtail)
4107 p = L_SHOWFILE(k);
4108 else
4109 {
4110 home_replace(NULL, files_found[k], NameBuff, MAXPATHL,
4111 TRUE);
4112 p = NameBuff;
4113 }
4114 }
4115 else
4116 {
4117 j = FALSE;
4118 p = L_SHOWFILE(k);
4119 }
4120 lastlen = msg_outtrans_attr(p, j ? attr : 0);
4121 }
4122 if (msg_col > 0) /* when not wrapped around */
4123 {
4124 msg_clr_eos();
4125 msg_putchar('\n');
4126 }
4127 out_flush(); /* show one line at a time */
4128 if (got_int)
4129 {
4130 got_int = FALSE;
4131 break;
4132 }
4133 }
4134
4135 /*
4136 * we redraw the command below the lines that we have just listed
4137 * This is a bit tricky, but it saves a lot of screen updating.
4138 */
4139 cmdline_row = msg_row; /* will put it back later */
4140 }
4141
4142 if (xp->xp_numfiles == -1)
4143 FreeWild(num_files, files_found);
4144
4145 return EXPAND_OK;
4146}
4147
4148/*
4149 * Private gettail for showmatches() (and win_redr_status_matches()):
4150 * Find tail of file name path, but ignore trailing "/".
4151 */
4152 char_u *
4153sm_gettail(s)
4154 char_u *s;
4155{
4156 char_u *p;
4157 char_u *t = s;
4158 int had_sep = FALSE;
4159
4160 for (p = s; *p != NUL; )
4161 {
4162 if (vim_ispathsep(*p)
4163#ifdef BACKSLASH_IN_FILENAME
4164 && !rem_backslash(p)
4165#endif
4166 )
4167 had_sep = TRUE;
4168 else if (had_sep)
4169 {
4170 t = p;
4171 had_sep = FALSE;
4172 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004173 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174 }
4175 return t;
4176}
4177
4178/*
4179 * Return TRUE if we only need to show the tail of completion matches.
4180 * When not completing file names or there is a wildcard in the path FALSE is
4181 * returned.
4182 */
4183 static int
4184expand_showtail(xp)
4185 expand_T *xp;
4186{
4187 char_u *s;
4188 char_u *end;
4189
4190 /* When not completing file names a "/" may mean something different. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004191 if (xp->xp_context != EXPAND_FILES
4192 && xp->xp_context != EXPAND_SHELLCMD
4193 && xp->xp_context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194 return FALSE;
4195
4196 end = gettail(xp->xp_pattern);
4197 if (end == xp->xp_pattern) /* there is no path separator */
4198 return FALSE;
4199
4200 for (s = xp->xp_pattern; s < end; s++)
4201 {
4202 /* Skip escaped wildcards. Only when the backslash is not a path
4203 * separator, on DOS the '*' "path\*\file" must not be skipped. */
4204 if (rem_backslash(s))
4205 ++s;
4206 else if (vim_strchr((char_u *)"*?[", *s) != NULL)
4207 return FALSE;
4208 }
4209 return TRUE;
4210}
4211
4212/*
4213 * Prepare a string for expansion.
4214 * When expanding file names: The string will be used with expand_wildcards().
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004215 * Copy "fname[len]" into allocated memory and add a '*' at the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216 * When expanding other names: The string will be used with regcomp(). Copy
4217 * the name into allocated memory and prepend "^".
4218 */
4219 char_u *
4220addstar(fname, len, context)
4221 char_u *fname;
4222 int len;
4223 int context; /* EXPAND_FILES etc. */
4224{
4225 char_u *retval;
4226 int i, j;
4227 int new_len;
4228 char_u *tail;
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004229 int ends_in_star;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004231 if (context != EXPAND_FILES
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004232 && context != EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004233 && context != EXPAND_SHELLCMD
4234 && context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235 {
4236 /*
4237 * Matching will be done internally (on something other than files).
4238 * So we convert the file-matching-type wildcards into our kind for
4239 * use with vim_regcomp(). First work out how long it will be:
4240 */
4241
4242 /* For help tags the translation is done in find_help_tags().
4243 * For a tag pattern starting with "/" no translation is needed. */
4244 if (context == EXPAND_HELP
4245 || context == EXPAND_COLORS
4246 || context == EXPAND_COMPILER
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004247 || context == EXPAND_OWNSYNTAX
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004248 || context == EXPAND_FILETYPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249 || (context == EXPAND_TAGS && fname[0] == '/'))
4250 retval = vim_strnsave(fname, len);
4251 else
4252 {
4253 new_len = len + 2; /* +2 for '^' at start, NUL at end */
4254 for (i = 0; i < len; i++)
4255 {
4256 if (fname[i] == '*' || fname[i] == '~')
4257 new_len++; /* '*' needs to be replaced by ".*"
4258 '~' needs to be replaced by "\~" */
4259
4260 /* Buffer names are like file names. "." should be literal */
4261 if (context == EXPAND_BUFFERS && fname[i] == '.')
4262 new_len++; /* "." becomes "\." */
4263
4264 /* Custom expansion takes care of special things, match
4265 * backslashes literally (perhaps also for other types?) */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004266 if ((context == EXPAND_USER_DEFINED
4267 || context == EXPAND_USER_LIST) && fname[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268 new_len++; /* '\' becomes "\\" */
4269 }
4270 retval = alloc(new_len);
4271 if (retval != NULL)
4272 {
4273 retval[0] = '^';
4274 j = 1;
4275 for (i = 0; i < len; i++, j++)
4276 {
4277 /* Skip backslash. But why? At least keep it for custom
4278 * expansion. */
4279 if (context != EXPAND_USER_DEFINED
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004280 && context != EXPAND_USER_LIST
4281 && fname[i] == '\\'
4282 && ++i == len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004283 break;
4284
4285 switch (fname[i])
4286 {
4287 case '*': retval[j++] = '.';
4288 break;
4289 case '~': retval[j++] = '\\';
4290 break;
4291 case '?': retval[j] = '.';
4292 continue;
4293 case '.': if (context == EXPAND_BUFFERS)
4294 retval[j++] = '\\';
4295 break;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004296 case '\\': if (context == EXPAND_USER_DEFINED
4297 || context == EXPAND_USER_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298 retval[j++] = '\\';
4299 break;
4300 }
4301 retval[j] = fname[i];
4302 }
4303 retval[j] = NUL;
4304 }
4305 }
4306 }
4307 else
4308 {
4309 retval = alloc(len + 4);
4310 if (retval != NULL)
4311 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004312 vim_strncpy(retval, fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313
4314 /*
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004315 * Don't add a star to *, ~, ~user, $var or `cmd`.
4316 * * would become **, which walks the whole tree.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 * ~ would be at the start of the file name, but not the tail.
4318 * $ could be anywhere in the tail.
4319 * ` could be anywhere in the file name.
Bram Moolenaar066b6222008-01-04 14:17:47 +00004320 * When the name ends in '$' don't add a star, remove the '$'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321 */
4322 tail = gettail(retval);
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004323 ends_in_star = (len > 0 && retval[len - 1] == '*');
4324#ifndef BACKSLASH_IN_FILENAME
4325 for (i = len - 2; i >= 0; --i)
4326 {
4327 if (retval[i] != '\\')
4328 break;
4329 ends_in_star = !ends_in_star;
4330 }
4331#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004332 if ((*retval != '~' || tail != retval)
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004333 && !ends_in_star
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 && vim_strchr(tail, '$') == NULL
4335 && vim_strchr(retval, '`') == NULL)
4336 retval[len++] = '*';
Bram Moolenaar066b6222008-01-04 14:17:47 +00004337 else if (len > 0 && retval[len - 1] == '$')
4338 --len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 retval[len] = NUL;
4340 }
4341 }
4342 return retval;
4343}
4344
4345/*
4346 * Must parse the command line so far to work out what context we are in.
4347 * Completion can then be done based on that context.
4348 * This routine sets the variables:
4349 * xp->xp_pattern The start of the pattern to be expanded within
4350 * the command line (ends at the cursor).
4351 * xp->xp_context The type of thing to expand. Will be one of:
4352 *
4353 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on
4354 * the command line, like an unknown command. Caller
4355 * should beep.
4356 * EXPAND_NOTHING Unrecognised context for completion, use char like
4357 * a normal char, rather than for completion. eg
4358 * :s/^I/
4359 * EXPAND_COMMANDS Cursor is still touching the command, so complete
4360 * it.
4361 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands.
4362 * EXPAND_FILES After command with XFILE set, or after setting
4363 * with P_EXPAND set. eg :e ^I, :w>>^I
4364 * EXPAND_DIRECTORIES In some cases this is used instead of the latter
4365 * when we know only directories are of interest. eg
4366 * :set dir=^I
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004367 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368 * EXPAND_SETTINGS Complete variable names. eg :set d^I
4369 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I
4370 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I
4371 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect
4372 * EXPAND_HELP Complete tags from the file 'helpfile'/tags
4373 * EXPAND_EVENTS Complete event names
4374 * EXPAND_SYNTAX Complete :syntax command arguments
4375 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names
4376 * EXPAND_AUGROUP Complete autocommand group names
4377 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I
4378 * EXPAND_MAPPINGS Complete mapping and abbreviation names,
4379 * eg :unmap a^I , :cunab x^I
4380 * EXPAND_FUNCTIONS Complete internal or user defined function names,
4381 * eg :call sub^I
4382 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I
4383 * EXPAND_EXPRESSION Complete internal or user defined function/variable
4384 * names in expressions, eg :while s^I
4385 * EXPAND_ENV_VARS Complete environment variable names
Bram Moolenaar24305862012-08-15 14:05:05 +02004386 * EXPAND_USER Complete user names
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387 */
4388 static void
4389set_expand_context(xp)
4390 expand_T *xp;
4391{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004392 /* only expansion for ':', '>' and '=' command-lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 if (ccline.cmdfirstc != ':'
4394#ifdef FEAT_EVAL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004395 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '='
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004396 && !ccline.input_fn
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397#endif
4398 )
4399 {
4400 xp->xp_context = EXPAND_NOTHING;
4401 return;
4402 }
4403 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos);
4404}
4405
4406 void
4407set_cmd_context(xp, str, len, col)
4408 expand_T *xp;
4409 char_u *str; /* start of command line */
4410 int len; /* length of command line (excl. NUL) */
4411 int col; /* position of cursor */
4412{
4413 int old_char = NUL;
4414 char_u *nextcomm;
4415
4416 /*
4417 * Avoid a UMR warning from Purify, only save the character if it has been
4418 * written before.
4419 */
4420 if (col < len)
4421 old_char = str[col];
4422 str[col] = NUL;
4423 nextcomm = str;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004424
4425#ifdef FEAT_EVAL
4426 if (ccline.cmdfirstc == '=')
Bram Moolenaar4f688582007-07-24 12:34:30 +00004427 {
4428# ifdef FEAT_CMDL_COMPL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004429 /* pass CMD_SIZE because there is no real command */
4430 set_context_for_expression(xp, str, CMD_SIZE);
Bram Moolenaar4f688582007-07-24 12:34:30 +00004431# endif
4432 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004433 else if (ccline.input_fn)
4434 {
4435 xp->xp_context = ccline.xp_context;
4436 xp->xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004437# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004438 xp->xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004439# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004440 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004441 else
4442#endif
4443 while (nextcomm != NULL)
4444 nextcomm = set_one_cmd_context(xp, nextcomm);
4445
Bram Moolenaara4c8dcb2013-06-30 12:21:24 +02004446 /* Store the string here so that call_user_expand_func() can get to them
4447 * easily. */
4448 xp->xp_line = str;
4449 xp->xp_col = col;
4450
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 str[col] = old_char;
4452}
4453
4454/*
4455 * Expand the command line "str" from context "xp".
4456 * "xp" must have been set by set_cmd_context().
4457 * xp->xp_pattern points into "str", to where the text that is to be expanded
4458 * starts.
4459 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the
4460 * cursor.
4461 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the
4462 * key that triggered expansion literally.
4463 * Returns EXPAND_OK otherwise.
4464 */
4465 int
4466expand_cmdline(xp, str, col, matchcount, matches)
4467 expand_T *xp;
4468 char_u *str; /* start of command line */
4469 int col; /* position of cursor */
4470 int *matchcount; /* return: nr of matches */
4471 char_u ***matches; /* return: array of pointers to matches */
4472{
4473 char_u *file_str = NULL;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004474 int options = WILD_ADD_SLASH|WILD_SILENT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475
4476 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
4477 {
4478 beep_flush();
4479 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */
4480 }
4481 if (xp->xp_context == EXPAND_NOTHING)
4482 {
4483 /* Caller can use the character as a normal char instead */
4484 return EXPAND_NOTHING;
4485 }
4486
4487 /* add star to file name, or convert to regexp if not exp. files. */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004488 xp->xp_pattern_len = (int)(str + col - xp->xp_pattern);
4489 file_str = addstar(xp->xp_pattern, xp->xp_pattern_len, xp->xp_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490 if (file_str == NULL)
4491 return EXPAND_UNSUCCESSFUL;
4492
Bram Moolenaar94950a92010-12-02 16:01:29 +01004493 if (p_wic)
4494 options += WILD_ICASE;
4495
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 /* find all files that match the description */
Bram Moolenaar94950a92010-12-02 16:01:29 +01004497 if (ExpandFromContext(xp, file_str, matchcount, matches, options) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498 {
4499 *matchcount = 0;
4500 *matches = NULL;
4501 }
4502 vim_free(file_str);
4503
4504 return EXPAND_OK;
4505}
4506
4507#ifdef FEAT_MULTI_LANG
4508/*
4509 * Cleanup matches for help tags: remove "@en" if "en" is the only language.
4510 */
4511static void cleanup_help_tags __ARGS((int num_file, char_u **file));
4512
4513 static void
4514cleanup_help_tags(num_file, file)
4515 int num_file;
4516 char_u **file;
4517{
4518 int i, j;
4519 int len;
4520
4521 for (i = 0; i < num_file; ++i)
4522 {
4523 len = (int)STRLEN(file[i]) - 3;
4524 if (len > 0 && STRCMP(file[i] + len, "@en") == 0)
4525 {
4526 /* Sorting on priority means the same item in another language may
4527 * be anywhere. Search all items for a match up to the "@en". */
4528 for (j = 0; j < num_file; ++j)
4529 if (j != i
4530 && (int)STRLEN(file[j]) == len + 3
4531 && STRNCMP(file[i], file[j], len + 1) == 0)
4532 break;
4533 if (j == num_file)
4534 file[i][len] = NUL;
4535 }
4536 }
4537}
4538#endif
4539
4540/*
4541 * Do the expansion based on xp->xp_context and "pat".
4542 */
4543 static int
4544ExpandFromContext(xp, pat, num_file, file, options)
4545 expand_T *xp;
4546 char_u *pat;
4547 int *num_file;
4548 char_u ***file;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004549 int options; /* EW_ flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550{
4551#ifdef FEAT_CMDL_COMPL
4552 regmatch_T regmatch;
4553#endif
4554 int ret;
4555 int flags;
4556
4557 flags = EW_DIR; /* include directories */
4558 if (options & WILD_LIST_NOTFOUND)
4559 flags |= EW_NOTFOUND;
4560 if (options & WILD_ADD_SLASH)
4561 flags |= EW_ADDSLASH;
4562 if (options & WILD_KEEP_ALL)
4563 flags |= EW_KEEPALL;
4564 if (options & WILD_SILENT)
4565 flags |= EW_SILENT;
4566
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004567 if (xp->xp_context == EXPAND_FILES
4568 || xp->xp_context == EXPAND_DIRECTORIES
4569 || xp->xp_context == EXPAND_FILES_IN_PATH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570 {
4571 /*
4572 * Expand file or directory names.
4573 */
4574 int free_pat = FALSE;
4575 int i;
4576
4577 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4578 * space */
4579 if (xp->xp_backslash != XP_BS_NONE)
4580 {
4581 free_pat = TRUE;
4582 pat = vim_strsave(pat);
4583 for (i = 0; pat[i]; ++i)
4584 if (pat[i] == '\\')
4585 {
4586 if (xp->xp_backslash == XP_BS_THREE
4587 && pat[i + 1] == '\\'
4588 && pat[i + 2] == '\\'
4589 && pat[i + 3] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004590 STRMOVE(pat + i, pat + i + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004591 if (xp->xp_backslash == XP_BS_ONE
4592 && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004593 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 }
4595 }
4596
4597 if (xp->xp_context == EXPAND_FILES)
4598 flags |= EW_FILE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004599 else if (xp->xp_context == EXPAND_FILES_IN_PATH)
4600 flags |= (EW_FILE | EW_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601 else
4602 flags = (flags | EW_DIR) & ~EW_FILE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004603 if (options & WILD_ICASE)
4604 flags |= EW_ICASE;
4605
Bram Moolenaard7834d32009-12-02 16:14:36 +00004606 /* Expand wildcards, supporting %:h and the like. */
4607 ret = expand_wildcards_eval(&pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608 if (free_pat)
4609 vim_free(pat);
4610 return ret;
4611 }
4612
4613 *file = (char_u **)"";
4614 *num_file = 0;
4615 if (xp->xp_context == EXPAND_HELP)
4616 {
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00004617 /* With an empty argument we would get all the help tags, which is
4618 * very slow. Get matches for "help" instead. */
4619 if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat,
4620 num_file, file, FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621 {
4622#ifdef FEAT_MULTI_LANG
4623 cleanup_help_tags(*num_file, *file);
4624#endif
4625 return OK;
4626 }
4627 return FAIL;
4628 }
4629
4630#ifndef FEAT_CMDL_COMPL
4631 return FAIL;
4632#else
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004633 if (xp->xp_context == EXPAND_SHELLCMD)
4634 return expand_shellcmd(pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635 if (xp->xp_context == EXPAND_OLD_SETTING)
4636 return ExpandOldSetting(num_file, file);
4637 if (xp->xp_context == EXPAND_BUFFERS)
4638 return ExpandBufnames(pat, num_file, file, options);
4639 if (xp->xp_context == EXPAND_TAGS
4640 || xp->xp_context == EXPAND_TAGS_LISTFILES)
4641 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file);
4642 if (xp->xp_context == EXPAND_COLORS)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004643 {
4644 char *directories[] = {"colors", NULL};
4645 return ExpandRTDir(pat, num_file, file, directories);
4646 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 if (xp->xp_context == EXPAND_COMPILER)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004648 {
Bram Moolenaara627c962011-09-30 16:23:32 +02004649 char *directories[] = {"compiler", NULL};
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004650 return ExpandRTDir(pat, num_file, file, directories);
4651 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004652 if (xp->xp_context == EXPAND_OWNSYNTAX)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004653 {
4654 char *directories[] = {"syntax", NULL};
4655 return ExpandRTDir(pat, num_file, file, directories);
4656 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004657 if (xp->xp_context == EXPAND_FILETYPE)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004658 {
4659 char *directories[] = {"syntax", "indent", "ftplugin", NULL};
4660 return ExpandRTDir(pat, num_file, file, directories);
4661 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004662# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4663 if (xp->xp_context == EXPAND_USER_LIST)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004664 return ExpandUserList(xp, num_file, file);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004665# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666
4667 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4668 if (regmatch.regprog == NULL)
4669 return FAIL;
4670
4671 /* set ignore-case according to p_ic, p_scs and pat */
4672 regmatch.rm_ic = ignorecase(pat);
4673
4674 if (xp->xp_context == EXPAND_SETTINGS
4675 || xp->xp_context == EXPAND_BOOL_SETTINGS)
4676 ret = ExpandSettings(xp, &regmatch, num_file, file);
4677 else if (xp->xp_context == EXPAND_MAPPINGS)
4678 ret = ExpandMappings(&regmatch, num_file, file);
4679# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4680 else if (xp->xp_context == EXPAND_USER_DEFINED)
4681 ret = ExpandUserDefined(xp, &regmatch, num_file, file);
4682# endif
4683 else
4684 {
4685 static struct expgen
4686 {
4687 int context;
4688 char_u *((*func)__ARGS((expand_T *, int)));
4689 int ic;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004690 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004691 } tab[] =
4692 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004693 {EXPAND_COMMANDS, get_command_name, FALSE, TRUE},
4694 {EXPAND_BEHAVE, get_behave_arg, TRUE, TRUE},
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004695#ifdef FEAT_CMDHIST
4696 {EXPAND_HISTORY, get_history_arg, TRUE, TRUE},
4697#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698#ifdef FEAT_USR_CMDS
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004699 {EXPAND_USER_COMMANDS, get_user_commands, FALSE, TRUE},
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004700 {EXPAND_USER_ADDR_TYPE, get_user_cmd_addr_type, FALSE, TRUE},
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004701 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE, TRUE},
4702 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE, TRUE},
4703 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704#endif
4705#ifdef FEAT_EVAL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004706 {EXPAND_USER_VARS, get_user_var_name, FALSE, TRUE},
4707 {EXPAND_FUNCTIONS, get_function_name, FALSE, TRUE},
4708 {EXPAND_USER_FUNC, get_user_func_name, FALSE, TRUE},
4709 {EXPAND_EXPRESSION, get_expr_name, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004710#endif
4711#ifdef FEAT_MENU
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004712 {EXPAND_MENUS, get_menu_name, FALSE, TRUE},
4713 {EXPAND_MENUNAMES, get_menu_names, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714#endif
4715#ifdef FEAT_SYN_HL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004716 {EXPAND_SYNTAX, get_syntax_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717#endif
Bram Moolenaarcd9c4622013-06-08 15:24:48 +02004718#ifdef FEAT_PROFILE
4719 {EXPAND_SYNTIME, get_syntime_arg, TRUE, TRUE},
4720#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004721 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722#ifdef FEAT_AUTOCMD
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004723 {EXPAND_EVENTS, get_event_name, TRUE, TRUE},
4724 {EXPAND_AUGROUP, get_augroup_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725#endif
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004726#ifdef FEAT_CSCOPE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004727 {EXPAND_CSCOPE, get_cscope_name, TRUE, TRUE},
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004728#endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004729#ifdef FEAT_SIGNS
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004730 {EXPAND_SIGN, get_sign_name, TRUE, TRUE},
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004731#endif
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004732#ifdef FEAT_PROFILE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004733 {EXPAND_PROFILE, get_profile_name, TRUE, TRUE},
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004734#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
4736 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004737 {EXPAND_LANGUAGE, get_lang_arg, TRUE, FALSE},
4738 {EXPAND_LOCALES, get_locales, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004740 {EXPAND_ENV_VARS, get_env_name, TRUE, TRUE},
Bram Moolenaar24305862012-08-15 14:05:05 +02004741 {EXPAND_USER, get_users, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 };
4743 int i;
4744
4745 /*
4746 * Find a context in the table and call the ExpandGeneric() with the
4747 * right function to do the expansion.
4748 */
4749 ret = FAIL;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00004750 for (i = 0; i < (int)(sizeof(tab) / sizeof(struct expgen)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751 if (xp->xp_context == tab[i].context)
4752 {
4753 if (tab[i].ic)
4754 regmatch.rm_ic = TRUE;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004755 ret = ExpandGeneric(xp, &regmatch, num_file, file,
Bram Moolenaare79abdd2012-06-29 13:44:41 +02004756 tab[i].func, tab[i].escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 break;
4758 }
4759 }
4760
Bram Moolenaar473de612013-06-08 18:19:48 +02004761 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762
4763 return ret;
4764#endif /* FEAT_CMDL_COMPL */
4765}
4766
4767#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4768/*
4769 * Expand a list of names.
4770 *
4771 * Generic function for command line completion. It calls a function to
4772 * obtain strings, one by one. The strings are matched against a regexp
4773 * program. Matching strings are copied into an array, which is returned.
4774 *
4775 * Returns OK when no problems encountered, FAIL for error (out of memory).
4776 */
4777 int
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004778ExpandGeneric(xp, regmatch, num_file, file, func, escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779 expand_T *xp;
4780 regmatch_T *regmatch;
4781 int *num_file;
4782 char_u ***file;
4783 char_u *((*func)__ARGS((expand_T *, int)));
4784 /* returns a string from the list */
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004785 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786{
4787 int i;
4788 int count = 0;
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004789 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 char_u *str;
4791
4792 /* do this loop twice:
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004793 * round == 0: count the number of matching names
4794 * round == 1: copy the matching names into allocated memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795 */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004796 for (round = 0; round <= 1; ++round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797 {
4798 for (i = 0; ; ++i)
4799 {
4800 str = (*func)(xp, i);
4801 if (str == NULL) /* end of list */
4802 break;
4803 if (*str == NUL) /* skip empty strings */
4804 continue;
4805
4806 if (vim_regexec(regmatch, str, (colnr_T)0))
4807 {
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004808 if (round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004810 if (escaped)
4811 str = vim_strsave_escaped(str, (char_u *)" \t\\.");
4812 else
4813 str = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 (*file)[count] = str;
4815#ifdef FEAT_MENU
4816 if (func == get_menu_names && str != NULL)
4817 {
4818 /* test for separator added by get_menu_names() */
4819 str += STRLEN(str) - 1;
4820 if (*str == '\001')
4821 *str = '.';
4822 }
4823#endif
4824 }
4825 ++count;
4826 }
4827 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004828 if (round == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004829 {
4830 if (count == 0)
4831 return OK;
4832 *num_file = count;
4833 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
4834 if (*file == NULL)
4835 {
4836 *file = (char_u **)"";
4837 return FAIL;
4838 }
4839 count = 0;
4840 }
4841 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004842
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004843 /* Sort the results. Keep menu's in the specified order. */
4844 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02004845 {
4846 if (xp->xp_context == EXPAND_EXPRESSION
4847 || xp->xp_context == EXPAND_FUNCTIONS
4848 || xp->xp_context == EXPAND_USER_FUNC)
4849 /* <SNR> functions should be sorted to the end. */
4850 qsort((void *)*file, (size_t)*num_file, sizeof(char_u *),
4851 sort_func_compare);
4852 else
4853 sort_strings(*file, *num_file);
4854 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004855
Bram Moolenaar4f688582007-07-24 12:34:30 +00004856#ifdef FEAT_CMDL_COMPL
4857 /* Reset the variables used for special highlight names expansion, so that
4858 * they don't show up when getting normal highlight names by ID. */
4859 reset_expand_highlight();
4860#endif
4861
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862 return OK;
4863}
4864
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004865/*
4866 * Complete a shell command.
4867 * Returns FAIL or OK;
4868 */
4869 static int
4870expand_shellcmd(filepat, num_file, file, flagsarg)
4871 char_u *filepat; /* pattern to match with command names */
4872 int *num_file; /* return: number of matches */
4873 char_u ***file; /* return: array with matches */
4874 int flagsarg; /* EW_ flags */
4875{
4876 char_u *pat;
4877 int i;
4878 char_u *path;
4879 int mustfree = FALSE;
4880 garray_T ga;
4881 char_u *buf = alloc(MAXPATHL);
4882 size_t l;
4883 char_u *s, *e;
4884 int flags = flagsarg;
4885 int ret;
4886
4887 if (buf == NULL)
4888 return FAIL;
4889
4890 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4891 * space */
4892 pat = vim_strsave(filepat);
4893 for (i = 0; pat[i]; ++i)
4894 if (pat[i] == '\\' && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004895 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004896
4897 flags |= EW_FILE | EW_EXEC;
4898
4899 /* For an absolute name we don't use $PATH. */
Bram Moolenaar68c31742006-09-02 15:54:18 +00004900 if (mch_isFullName(pat))
4901 path = (char_u *)" ";
4902 else if ((pat[0] == '.' && (vim_ispathsep(pat[1])
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004903 || (pat[1] == '.' && vim_ispathsep(pat[2])))))
4904 path = (char_u *)".";
4905 else
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01004906 {
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004907 path = vim_getenv((char_u *)"PATH", &mustfree);
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01004908 if (path == NULL)
4909 path = (char_u *)"";
4910 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004911
4912 /*
4913 * Go over all directories in $PATH. Expand matches in that directory and
4914 * collect them in "ga".
4915 */
4916 ga_init2(&ga, (int)sizeof(char *), 10);
4917 for (s = path; *s != NUL; s = e)
4918 {
Bram Moolenaar68c31742006-09-02 15:54:18 +00004919 if (*s == ' ')
4920 ++s; /* Skip space used for absolute path name. */
4921
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004922#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
4923 e = vim_strchr(s, ';');
4924#else
4925 e = vim_strchr(s, ':');
4926#endif
4927 if (e == NULL)
4928 e = s + STRLEN(s);
4929
4930 l = e - s;
4931 if (l > MAXPATHL - 5)
4932 break;
4933 vim_strncpy(buf, s, l);
4934 add_pathsep(buf);
4935 l = STRLEN(buf);
4936 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l);
4937
4938 /* Expand matches in one directory of $PATH. */
4939 ret = expand_wildcards(1, &buf, num_file, file, flags);
4940 if (ret == OK)
4941 {
4942 if (ga_grow(&ga, *num_file) == FAIL)
4943 FreeWild(*num_file, *file);
4944 else
4945 {
4946 for (i = 0; i < *num_file; ++i)
4947 {
4948 s = (*file)[i];
4949 if (STRLEN(s) > l)
4950 {
4951 /* Remove the path again. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004952 STRMOVE(s, s + l);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004953 ((char_u **)ga.ga_data)[ga.ga_len++] = s;
4954 }
4955 else
4956 vim_free(s);
4957 }
4958 vim_free(*file);
4959 }
4960 }
4961 if (*e != NUL)
4962 ++e;
4963 }
4964 *file = ga.ga_data;
4965 *num_file = ga.ga_len;
4966
4967 vim_free(buf);
4968 vim_free(pat);
4969 if (mustfree)
4970 vim_free(path);
4971 return OK;
4972}
4973
4974
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00004976static 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));
4977
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978/*
Bram Moolenaar21669c02008-01-18 12:16:16 +00004979 * Call "user_expand_func()" to invoke a user defined VimL function and return
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004980 * the result (either a string or a List).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004982 static void *
4983call_user_expand_func(user_expand_func, xp, num_file, file)
4984 void *(*user_expand_func) __ARGS((char_u *, int, char_u **, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985 expand_T *xp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 int *num_file;
4987 char_u ***file;
4988{
Bram Moolenaar673b9a32013-06-30 22:43:27 +02004989 int keep = 0;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004990 char_u num[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991 char_u *args[3];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992 int save_current_SID = current_SID;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004993 void *ret;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004994 struct cmdline_info save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995
Bram Moolenaarb7515462013-06-29 12:58:33 +02004996 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0' || xp->xp_line == NULL)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004997 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 *num_file = 0;
4999 *file = NULL;
5000
Bram Moolenaarb7515462013-06-29 12:58:33 +02005001 if (ccline.cmdbuff != NULL)
Bram Moolenaar21669c02008-01-18 12:16:16 +00005002 {
Bram Moolenaar21669c02008-01-18 12:16:16 +00005003 keep = ccline.cmdbuff[ccline.cmdlen];
5004 ccline.cmdbuff[ccline.cmdlen] = 0;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005005 }
Bram Moolenaarb7515462013-06-29 12:58:33 +02005006
Bram Moolenaar67b891e2009-09-18 15:25:52 +00005007 args[0] = vim_strnsave(xp->xp_pattern, xp->xp_pattern_len);
Bram Moolenaarb7515462013-06-29 12:58:33 +02005008 args[1] = xp->xp_line;
5009 sprintf((char *)num, "%d", xp->xp_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 args[2] = num;
5011
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005012 /* Save the cmdline, we don't know what the function may do. */
5013 save_ccline = ccline;
5014 ccline.cmdbuff = NULL;
5015 ccline.cmdprompt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016 current_SID = xp->xp_scriptID;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005017
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005018 ret = user_expand_func(xp->xp_arg, 3, args, FALSE);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005019
5020 ccline = save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 current_SID = save_current_SID;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005022 if (ccline.cmdbuff != NULL)
5023 ccline.cmdbuff[ccline.cmdlen] = keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005024
Bram Moolenaar67b891e2009-09-18 15:25:52 +00005025 vim_free(args[0]);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005026 return ret;
5027}
5028
5029/*
5030 * Expand names with a function defined by the user.
5031 */
5032 static int
5033ExpandUserDefined(xp, regmatch, num_file, file)
5034 expand_T *xp;
5035 regmatch_T *regmatch;
5036 int *num_file;
5037 char_u ***file;
5038{
5039 char_u *retstr;
5040 char_u *s;
5041 char_u *e;
5042 char_u keep;
5043 garray_T ga;
5044
5045 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file);
5046 if (retstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 return FAIL;
5048
5049 ga_init2(&ga, (int)sizeof(char *), 3);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005050 for (s = retstr; *s != NUL; s = e)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051 {
5052 e = vim_strchr(s, '\n');
5053 if (e == NULL)
5054 e = s + STRLEN(s);
5055 keep = *e;
5056 *e = 0;
5057
5058 if (xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0)
5059 {
5060 *e = keep;
5061 if (*e != NUL)
5062 ++e;
5063 continue;
5064 }
5065
5066 if (ga_grow(&ga, 1) == FAIL)
5067 break;
5068
5069 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s));
5070 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071
5072 *e = keep;
5073 if (*e != NUL)
5074 ++e;
5075 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005076 vim_free(retstr);
5077 *file = ga.ga_data;
5078 *num_file = ga.ga_len;
5079 return OK;
5080}
5081
5082/*
5083 * Expand names with a list returned by a function defined by the user.
5084 */
5085 static int
5086ExpandUserList(xp, num_file, file)
5087 expand_T *xp;
5088 int *num_file;
5089 char_u ***file;
5090{
5091 list_T *retlist;
5092 listitem_T *li;
5093 garray_T ga;
5094
5095 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file);
5096 if (retlist == NULL)
5097 return FAIL;
5098
5099 ga_init2(&ga, (int)sizeof(char *), 3);
5100 /* Loop over the items in the list. */
5101 for (li = retlist->lv_first; li != NULL; li = li->li_next)
5102 {
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005103 if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL)
5104 continue; /* Skip non-string items and empty strings */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005105
5106 if (ga_grow(&ga, 1) == FAIL)
5107 break;
5108
5109 ((char_u **)ga.ga_data)[ga.ga_len] =
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005110 vim_strsave(li->li_tv.vval.v_string);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005111 ++ga.ga_len;
5112 }
5113 list_unref(retlist);
5114
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 *file = ga.ga_data;
5116 *num_file = ga.ga_len;
5117 return OK;
5118}
5119#endif
5120
5121/*
Bram Moolenaar883f5d02010-06-21 06:24:34 +02005122 * Expand color scheme, compiler or filetype names:
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005123 * 'runtimepath'/{dirnames}/{pat}.vim
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005124 * "dirnames" is an array with one or more directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125 */
5126 static int
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005127ExpandRTDir(pat, num_file, file, dirnames)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128 char_u *pat;
5129 int *num_file;
5130 char_u ***file;
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005131 char *dirnames[];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133 char_u *s;
5134 char_u *e;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005135 char_u *match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 garray_T ga;
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005137 int i;
5138 int pat_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139
5140 *num_file = 0;
5141 *file = NULL;
Bram Moolenaar5cfe2d72011-07-07 15:04:52 +02005142 pat_len = (int)STRLEN(pat);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005143 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005145 for (i = 0; dirnames[i] != NULL; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 {
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005147 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 7));
5148 if (s == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149 {
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005150 ga_clear_strings(&ga);
5151 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 }
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005153 sprintf((char *)s, "%s/%s*.vim", dirnames[i], pat);
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005154 globpath(p_rtp, s, &ga, 0);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005155 vim_free(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005157
5158 for (i = 0; i < ga.ga_len; ++i)
5159 {
5160 match = ((char_u **)ga.ga_data)[i];
5161 s = match;
5162 e = s + STRLEN(s);
5163 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0)
5164 {
5165 e -= 4;
5166 for (s = e; s > match; mb_ptr_back(match, s))
5167 if (s < match || vim_ispathsep(*s))
5168 break;
5169 ++s;
5170 *e = NUL;
5171 mch_memmove(match, s, e - s + 1);
5172 }
5173 }
5174
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005175 if (ga.ga_len == 0)
Bram Moolenaare79abdd2012-06-29 13:44:41 +02005176 return FAIL;
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005177
5178 /* Sort and remove duplicates which can happen when specifying multiple
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005179 * directories in dirnames. */
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005180 remove_duplicates(&ga);
5181
Bram Moolenaar071d4272004-06-13 20:20:40 +00005182 *file = ga.ga_data;
5183 *num_file = ga.ga_len;
5184 return OK;
5185}
5186
5187#endif
5188
5189#if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO)
5190/*
5191 * Expand "file" for all comma-separated directories in "path".
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005192 * Adds the matches to "ga". Caller must init "ga".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193 */
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005194 void
5195globpath(path, file, ga, expand_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196 char_u *path;
5197 char_u *file;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005198 garray_T *ga;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005199 int expand_options;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005200{
5201 expand_T xpc;
5202 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005204 int num_p;
5205 char_u **p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206
5207 buf = alloc(MAXPATHL);
5208 if (buf == NULL)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005209 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005211 ExpandInit(&xpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005212 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005213
Bram Moolenaar071d4272004-06-13 20:20:40 +00005214 /* Loop over all entries in {path}. */
5215 while (*path != NUL)
5216 {
5217 /* Copy one item of the path to buf[] and concatenate the file name. */
5218 copy_option_part(&path, buf, MAXPATHL, ",");
5219 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
5220 {
Bram Moolenaar2d7c47d2010-08-10 19:50:26 +02005221# if defined(MSWIN) || defined(MSDOS)
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005222 /* Using the platform's path separator (\) makes vim incorrectly
5223 * treat it as an escape character, use '/' instead. */
5224 if (*buf != NUL && !after_pathsep(buf, buf + STRLEN(buf)))
5225 STRCAT(buf, "/");
5226# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227 add_pathsep(buf);
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005228# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229 STRCAT(buf, file);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005230 if (ExpandFromContext(&xpc, buf, &num_p, &p,
5231 WILD_SILENT|expand_options) != FAIL && num_p > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005233 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT|expand_options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005235 if (ga_grow(ga, num_p) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237 for (i = 0; i < num_p; ++i)
5238 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005239 ((char_u **)ga->ga_data)[ga->ga_len] =
Bram Moolenaar7116aa02014-05-29 14:36:29 +02005240 vim_strnsave(p[i], (int)STRLEN(p[i]));
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005241 ++ga->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005243 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005244
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245 FreeWild(num_p, p);
5246 }
5247 }
5248 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005249
5250 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251}
5252
5253#endif
5254
5255#if defined(FEAT_CMDHIST) || defined(PROTO)
5256
5257/*********************************
5258 * Command line history stuff *
5259 *********************************/
5260
5261/*
5262 * Translate a history character to the associated type number.
5263 */
5264 static int
5265hist_char2type(c)
5266 int c;
5267{
5268 if (c == ':')
5269 return HIST_CMD;
5270 if (c == '=')
5271 return HIST_EXPR;
5272 if (c == '@')
5273 return HIST_INPUT;
5274 if (c == '>')
5275 return HIST_DEBUG;
5276 return HIST_SEARCH; /* must be '?' or '/' */
5277}
5278
5279/*
5280 * Table of history names.
5281 * These names are used in :history and various hist...() functions.
5282 * It is sufficient to give the significant prefix of a history name.
5283 */
5284
5285static char *(history_names[]) =
5286{
5287 "cmd",
5288 "search",
5289 "expr",
5290 "input",
5291 "debug",
5292 NULL
5293};
5294
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005295#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5296/*
5297 * Function given to ExpandGeneric() to obtain the possible first
5298 * arguments of the ":history command.
5299 */
5300 static char_u *
5301get_history_arg(xp, idx)
5302 expand_T *xp UNUSED;
5303 int idx;
5304{
5305 static char_u compl[2] = { NUL, NUL };
5306 char *short_names = ":=@>?/";
Bram Moolenaar17bd9dc2012-05-25 11:02:41 +02005307 int short_names_count = (int)STRLEN(short_names);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005308 int history_name_count = sizeof(history_names) / sizeof(char *) - 1;
5309
5310 if (idx < short_names_count)
5311 {
5312 compl[0] = (char_u)short_names[idx];
5313 return compl;
5314 }
5315 if (idx < short_names_count + history_name_count)
5316 return (char_u *)history_names[idx - short_names_count];
5317 if (idx == short_names_count + history_name_count)
5318 return (char_u *)"all";
5319 return NULL;
5320}
5321#endif
5322
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323/*
5324 * init_history() - Initialize the command line history.
5325 * Also used to re-allocate the history when the size changes.
5326 */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00005327 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005328init_history()
5329{
5330 int newlen; /* new length of history table */
5331 histentry_T *temp;
5332 int i;
5333 int j;
5334 int type;
5335
5336 /*
5337 * If size of history table changed, reallocate it
5338 */
5339 newlen = (int)p_hi;
5340 if (newlen != hislen) /* history length changed */
5341 {
5342 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */
5343 {
5344 if (newlen)
5345 {
5346 temp = (histentry_T *)lalloc(
5347 (long_u)(newlen * sizeof(histentry_T)), TRUE);
5348 if (temp == NULL) /* out of memory! */
5349 {
5350 if (type == 0) /* first one: just keep the old length */
5351 {
5352 newlen = hislen;
5353 break;
5354 }
5355 /* Already changed one table, now we can only have zero
5356 * length for all tables. */
5357 newlen = 0;
5358 type = -1;
5359 continue;
5360 }
5361 }
5362 else
5363 temp = NULL;
5364 if (newlen == 0 || temp != NULL)
5365 {
5366 if (hisidx[type] < 0) /* there are no entries yet */
5367 {
5368 for (i = 0; i < newlen; ++i)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005369 clear_hist_entry(&temp[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370 }
5371 else if (newlen > hislen) /* array becomes bigger */
5372 {
5373 for (i = 0; i <= hisidx[type]; ++i)
5374 temp[i] = history[type][i];
5375 j = i;
5376 for ( ; i <= newlen - (hislen - hisidx[type]); ++i)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005377 clear_hist_entry(&temp[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378 for ( ; j < hislen; ++i, ++j)
5379 temp[i] = history[type][j];
5380 }
5381 else /* array becomes smaller or 0 */
5382 {
5383 j = hisidx[type];
5384 for (i = newlen - 1; ; --i)
5385 {
5386 if (i >= 0) /* copy newest entries */
5387 temp[i] = history[type][j];
5388 else /* remove older entries */
5389 vim_free(history[type][j].hisstr);
5390 if (--j < 0)
5391 j = hislen - 1;
5392 if (j == hisidx[type])
5393 break;
5394 }
5395 hisidx[type] = newlen - 1;
5396 }
5397 vim_free(history[type]);
5398 history[type] = temp;
5399 }
5400 }
5401 hislen = newlen;
5402 }
5403}
5404
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005405 static void
5406clear_hist_entry(hisptr)
5407 histentry_T *hisptr;
5408{
5409 hisptr->hisnum = 0;
5410 hisptr->viminfo = FALSE;
5411 hisptr->hisstr = NULL;
5412}
5413
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414/*
5415 * Check if command line 'str' is already in history.
5416 * If 'move_to_front' is TRUE, matching entry is moved to end of history.
5417 */
5418 static int
Bram Moolenaar07219f92013-04-14 23:19:36 +02005419in_history(type, str, move_to_front, sep, writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 int type;
5421 char_u *str;
5422 int move_to_front; /* Move the entry to the front if it exists */
Bram Moolenaar4c402232011-07-27 17:58:46 +02005423 int sep;
Bram Moolenaar07219f92013-04-14 23:19:36 +02005424 int writing; /* ignore entries read from viminfo */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425{
5426 int i;
5427 int last_i = -1;
Bram Moolenaar4c402232011-07-27 17:58:46 +02005428 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429
5430 if (hisidx[type] < 0)
5431 return FALSE;
5432 i = hisidx[type];
5433 do
5434 {
5435 if (history[type][i].hisstr == NULL)
5436 return FALSE;
Bram Moolenaar4c402232011-07-27 17:58:46 +02005437
5438 /* For search history, check that the separator character matches as
5439 * well. */
5440 p = history[type][i].hisstr;
5441 if (STRCMP(str, p) == 0
Bram Moolenaar07219f92013-04-14 23:19:36 +02005442 && !(writing && history[type][i].viminfo)
Bram Moolenaar4c402232011-07-27 17:58:46 +02005443 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444 {
5445 if (!move_to_front)
5446 return TRUE;
5447 last_i = i;
5448 break;
5449 }
5450 if (--i < 0)
5451 i = hislen - 1;
5452 } while (i != hisidx[type]);
5453
5454 if (last_i >= 0)
5455 {
5456 str = history[type][i].hisstr;
5457 while (i != hisidx[type])
5458 {
5459 if (++i >= hislen)
5460 i = 0;
5461 history[type][last_i] = history[type][i];
5462 last_i = i;
5463 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464 history[type][i].hisnum = ++hisnum[type];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005465 history[type][i].viminfo = FALSE;
5466 history[type][i].hisstr = str;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467 return TRUE;
5468 }
5469 return FALSE;
5470}
5471
5472/*
5473 * Convert history name (from table above) to its HIST_ equivalent.
5474 * When "name" is empty, return "cmd" history.
5475 * Returns -1 for unknown history name.
5476 */
5477 int
5478get_histtype(name)
5479 char_u *name;
5480{
5481 int i;
5482 int len = (int)STRLEN(name);
5483
5484 /* No argument: use current history. */
5485 if (len == 0)
5486 return hist_char2type(ccline.cmdfirstc);
5487
5488 for (i = 0; history_names[i] != NULL; ++i)
5489 if (STRNICMP(name, history_names[i], len) == 0)
5490 return i;
5491
5492 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL)
5493 return hist_char2type(name[0]);
5494
5495 return -1;
5496}
5497
5498static int last_maptick = -1; /* last seen maptick */
5499
5500/*
5501 * Add the given string to the given history. If the string is already in the
5502 * history then it is moved to the front. "histype" may be one of he HIST_
5503 * values.
5504 */
5505 void
5506add_to_history(histype, new_entry, in_map, sep)
5507 int histype;
5508 char_u *new_entry;
5509 int in_map; /* consider maptick when inside a mapping */
5510 int sep; /* separator character used (search hist) */
5511{
5512 histentry_T *hisptr;
5513 int len;
5514
5515 if (hislen == 0) /* no history */
5516 return;
5517
Bram Moolenaara939e432013-11-09 05:30:26 +01005518 if (cmdmod.keeppatterns && histype == HIST_SEARCH)
5519 return;
5520
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521 /*
5522 * Searches inside the same mapping overwrite each other, so that only
5523 * the last line is kept. Be careful not to remove a line that was moved
5524 * down, only lines that were added.
5525 */
5526 if (histype == HIST_SEARCH && in_map)
5527 {
5528 if (maptick == last_maptick)
5529 {
5530 /* Current line is from the same mapping, remove it */
5531 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];
5532 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005533 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534 --hisnum[histype];
5535 if (--hisidx[HIST_SEARCH] < 0)
5536 hisidx[HIST_SEARCH] = hislen - 1;
5537 }
5538 last_maptick = -1;
5539 }
Bram Moolenaar07219f92013-04-14 23:19:36 +02005540 if (!in_history(histype, new_entry, TRUE, sep, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 {
5542 if (++hisidx[histype] == hislen)
5543 hisidx[histype] = 0;
5544 hisptr = &history[histype][hisidx[histype]];
5545 vim_free(hisptr->hisstr);
5546
5547 /* Store the separator after the NUL of the string. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005548 len = (int)STRLEN(new_entry);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005549 hisptr->hisstr = vim_strnsave(new_entry, len + 2);
5550 if (hisptr->hisstr != NULL)
5551 hisptr->hisstr[len + 1] = sep;
5552
5553 hisptr->hisnum = ++hisnum[histype];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005554 hisptr->viminfo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005555 if (histype == HIST_SEARCH && in_map)
5556 last_maptick = maptick;
5557 }
5558}
5559
5560#if defined(FEAT_EVAL) || defined(PROTO)
5561
5562/*
5563 * Get identifier of newest history entry.
5564 * "histype" may be one of the HIST_ values.
5565 */
5566 int
5567get_history_idx(histype)
5568 int histype;
5569{
5570 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5571 || hisidx[histype] < 0)
5572 return -1;
5573
5574 return history[histype][hisidx[histype]].hisnum;
5575}
5576
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005577static struct cmdline_info *get_ccline_ptr __ARGS((void));
5578
5579/*
5580 * Get pointer to the command line info to use. cmdline_paste() may clear
5581 * ccline and put the previous value in prev_ccline.
5582 */
5583 static struct cmdline_info *
5584get_ccline_ptr()
5585{
5586 if ((State & CMDLINE) == 0)
5587 return NULL;
5588 if (ccline.cmdbuff != NULL)
5589 return &ccline;
5590 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
5591 return &prev_ccline;
5592 return NULL;
5593}
5594
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595/*
5596 * Get the current command line in allocated memory.
5597 * Only works when the command line is being edited.
5598 * Returns NULL when something is wrong.
5599 */
5600 char_u *
5601get_cmdline_str()
5602{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005603 struct cmdline_info *p = get_ccline_ptr();
5604
5605 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005606 return NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005607 return vim_strnsave(p->cmdbuff, p->cmdlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608}
5609
5610/*
5611 * Get the current command line position, counted in bytes.
5612 * Zero is the first position.
5613 * Only works when the command line is being edited.
5614 * Returns -1 when something is wrong.
5615 */
5616 int
5617get_cmdline_pos()
5618{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005619 struct cmdline_info *p = get_ccline_ptr();
5620
5621 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005622 return -1;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005623 return p->cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624}
5625
5626/*
5627 * Set the command line byte position to "pos". Zero is the first position.
5628 * Only works when the command line is being edited.
5629 * Returns 1 when failed, 0 when OK.
5630 */
5631 int
5632set_cmdline_pos(pos)
5633 int pos;
5634{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005635 struct cmdline_info *p = get_ccline_ptr();
5636
5637 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638 return 1;
5639
5640 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
5641 * changed the command line. */
5642 if (pos < 0)
5643 new_cmdpos = 0;
5644 else
5645 new_cmdpos = pos;
5646 return 0;
5647}
5648
5649/*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005650 * Get the current command-line type.
Bram Moolenaar1e015462005-09-25 22:16:38 +00005651 * Returns ':' or '/' or '?' or '@' or '>' or '-'
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005652 * Only works when the command line is being edited.
5653 * Returns NUL when something is wrong.
5654 */
5655 int
5656get_cmdline_type()
5657{
5658 struct cmdline_info *p = get_ccline_ptr();
5659
5660 if (p == NULL)
5661 return NUL;
Bram Moolenaar1e015462005-09-25 22:16:38 +00005662 if (p->cmdfirstc == NUL)
5663 return (p->input_fn) ? '@' : '-';
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005664 return p->cmdfirstc;
5665}
5666
5667/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005668 * Calculate history index from a number:
5669 * num > 0: seen as identifying number of a history entry
5670 * num < 0: relative position in history wrt newest entry
5671 * "histype" may be one of the HIST_ values.
5672 */
5673 static int
5674calc_hist_idx(histype, num)
5675 int histype;
5676 int num;
5677{
5678 int i;
5679 histentry_T *hist;
5680 int wrapped = FALSE;
5681
5682 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5683 || (i = hisidx[histype]) < 0 || num == 0)
5684 return -1;
5685
5686 hist = history[histype];
5687 if (num > 0)
5688 {
5689 while (hist[i].hisnum > num)
5690 if (--i < 0)
5691 {
5692 if (wrapped)
5693 break;
5694 i += hislen;
5695 wrapped = TRUE;
5696 }
5697 if (hist[i].hisnum == num && hist[i].hisstr != NULL)
5698 return i;
5699 }
5700 else if (-num <= hislen)
5701 {
5702 i += num + 1;
5703 if (i < 0)
5704 i += hislen;
5705 if (hist[i].hisstr != NULL)
5706 return i;
5707 }
5708 return -1;
5709}
5710
5711/*
5712 * Get a history entry by its index.
5713 * "histype" may be one of the HIST_ values.
5714 */
5715 char_u *
5716get_history_entry(histype, idx)
5717 int histype;
5718 int idx;
5719{
5720 idx = calc_hist_idx(histype, idx);
5721 if (idx >= 0)
5722 return history[histype][idx].hisstr;
5723 else
5724 return (char_u *)"";
5725}
5726
5727/*
5728 * Clear all entries of a history.
5729 * "histype" may be one of the HIST_ values.
5730 */
5731 int
5732clr_history(histype)
5733 int histype;
5734{
5735 int i;
5736 histentry_T *hisptr;
5737
5738 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT)
5739 {
5740 hisptr = history[histype];
5741 for (i = hislen; i--;)
5742 {
5743 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005744 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005745 }
5746 hisidx[histype] = -1; /* mark history as cleared */
5747 hisnum[histype] = 0; /* reset identifier counter */
5748 return OK;
5749 }
5750 return FAIL;
5751}
5752
5753/*
5754 * Remove all entries matching {str} from a history.
5755 * "histype" may be one of the HIST_ values.
5756 */
5757 int
5758del_history_entry(histype, str)
5759 int histype;
5760 char_u *str;
5761{
5762 regmatch_T regmatch;
5763 histentry_T *hisptr;
5764 int idx;
5765 int i;
5766 int last;
5767 int found = FALSE;
5768
5769 regmatch.regprog = NULL;
5770 regmatch.rm_ic = FALSE; /* always match case */
5771 if (hislen != 0
5772 && histype >= 0
5773 && histype < HIST_COUNT
5774 && *str != NUL
5775 && (idx = hisidx[histype]) >= 0
5776 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING))
5777 != NULL)
5778 {
5779 i = last = idx;
5780 do
5781 {
5782 hisptr = &history[histype][i];
5783 if (hisptr->hisstr == NULL)
5784 break;
5785 if (vim_regexec(&regmatch, hisptr->hisstr, (colnr_T)0))
5786 {
5787 found = TRUE;
5788 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005789 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790 }
5791 else
5792 {
5793 if (i != last)
5794 {
5795 history[histype][last] = *hisptr;
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005796 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005797 }
5798 if (--last < 0)
5799 last += hislen;
5800 }
5801 if (--i < 0)
5802 i += hislen;
5803 } while (i != idx);
5804 if (history[histype][idx].hisstr == NULL)
5805 hisidx[histype] = -1;
5806 }
Bram Moolenaar473de612013-06-08 18:19:48 +02005807 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808 return found;
5809}
5810
5811/*
5812 * Remove an indexed entry from a history.
5813 * "histype" may be one of the HIST_ values.
5814 */
5815 int
5816del_history_idx(histype, idx)
5817 int histype;
5818 int idx;
5819{
5820 int i, j;
5821
5822 i = calc_hist_idx(histype, idx);
5823 if (i < 0)
5824 return FALSE;
5825 idx = hisidx[histype];
5826 vim_free(history[histype][i].hisstr);
5827
5828 /* When deleting the last added search string in a mapping, reset
5829 * last_maptick, so that the last added search string isn't deleted again.
5830 */
5831 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx)
5832 last_maptick = -1;
5833
5834 while (i != idx)
5835 {
5836 j = (i + 1) % hislen;
5837 history[histype][i] = history[histype][j];
5838 i = j;
5839 }
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005840 clear_hist_entry(&history[histype][i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841 if (--i < 0)
5842 i += hislen;
5843 hisidx[histype] = i;
5844 return TRUE;
5845}
5846
5847#endif /* FEAT_EVAL */
5848
5849#if defined(FEAT_CRYPT) || defined(PROTO)
5850/*
5851 * Very specific function to remove the value in ":set key=val" from the
5852 * history.
5853 */
5854 void
5855remove_key_from_history()
5856{
5857 char_u *p;
5858 int i;
5859
5860 i = hisidx[HIST_CMD];
5861 if (i < 0)
5862 return;
5863 p = history[HIST_CMD][i].hisstr;
5864 if (p != NULL)
5865 for ( ; *p; ++p)
5866 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3]))
5867 {
5868 p = vim_strchr(p + 3, '=');
5869 if (p == NULL)
5870 break;
5871 ++p;
5872 for (i = 0; p[i] && !vim_iswhite(p[i]); ++i)
5873 if (p[i] == '\\' && p[i + 1])
5874 ++i;
Bram Moolenaar446cb832008-06-24 21:56:24 +00005875 STRMOVE(p, p + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876 --p;
5877 }
5878}
5879#endif
5880
5881#endif /* FEAT_CMDHIST */
5882
5883#if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO)
5884/*
5885 * Get indices "num1,num2" that specify a range within a list (not a range of
5886 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
5887 * Returns OK if parsed successfully, otherwise FAIL.
5888 */
5889 int
5890get_list_range(str, num1, num2)
5891 char_u **str;
5892 int *num1;
5893 int *num2;
5894{
5895 int len;
5896 int first = FALSE;
5897 long num;
5898
5899 *str = skipwhite(*str);
5900 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
5901 {
5902 vim_str2nr(*str, NULL, &len, FALSE, FALSE, &num, NULL);
5903 *str += len;
5904 *num1 = (int)num;
5905 first = TRUE;
5906 }
5907 *str = skipwhite(*str);
5908 if (**str == ',') /* parse "to" part of range */
5909 {
5910 *str = skipwhite(*str + 1);
5911 vim_str2nr(*str, NULL, &len, FALSE, FALSE, &num, NULL);
5912 if (len > 0)
5913 {
5914 *num2 = (int)num;
5915 *str = skipwhite(*str + len);
5916 }
5917 else if (!first) /* no number given at all */
5918 return FAIL;
5919 }
5920 else if (first) /* only one number given */
5921 *num2 = *num1;
5922 return OK;
5923}
5924#endif
5925
5926#if defined(FEAT_CMDHIST) || defined(PROTO)
5927/*
5928 * :history command - print a history
5929 */
5930 void
5931ex_history(eap)
5932 exarg_T *eap;
5933{
5934 histentry_T *hist;
5935 int histype1 = HIST_CMD;
5936 int histype2 = HIST_CMD;
5937 int hisidx1 = 1;
5938 int hisidx2 = -1;
5939 int idx;
5940 int i, j, k;
5941 char_u *end;
5942 char_u *arg = eap->arg;
5943
5944 if (hislen == 0)
5945 {
5946 MSG(_("'history' option is zero"));
5947 return;
5948 }
5949
5950 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ','))
5951 {
5952 end = arg;
5953 while (ASCII_ISALPHA(*end)
5954 || vim_strchr((char_u *)":=@>/?", *end) != NULL)
5955 end++;
5956 i = *end;
5957 *end = NUL;
5958 histype1 = get_histtype(arg);
5959 if (histype1 == -1)
5960 {
Bram Moolenaarb9c1e962009-04-22 11:52:33 +00005961 if (STRNICMP(arg, "all", STRLEN(arg)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005962 {
5963 histype1 = 0;
5964 histype2 = HIST_COUNT-1;
5965 }
5966 else
5967 {
5968 *end = i;
5969 EMSG(_(e_trailing));
5970 return;
5971 }
5972 }
5973 else
5974 histype2 = histype1;
5975 *end = i;
5976 }
5977 else
5978 end = arg;
5979 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL)
5980 {
5981 EMSG(_(e_trailing));
5982 return;
5983 }
5984
5985 for (; !got_int && histype1 <= histype2; ++histype1)
5986 {
5987 STRCPY(IObuff, "\n # ");
5988 STRCAT(STRCAT(IObuff, history_names[histype1]), " history");
5989 MSG_PUTS_TITLE(IObuff);
5990 idx = hisidx[histype1];
5991 hist = history[histype1];
5992 j = hisidx1;
5993 k = hisidx2;
5994 if (j < 0)
5995 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum;
5996 if (k < 0)
5997 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum;
5998 if (idx >= 0 && j <= k)
5999 for (i = idx + 1; !got_int; ++i)
6000 {
6001 if (i == hislen)
6002 i = 0;
6003 if (hist[i].hisstr != NULL
6004 && hist[i].hisnum >= j && hist[i].hisnum <= k)
6005 {
6006 msg_putchar('\n');
6007 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ',
6008 hist[i].hisnum);
6009 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10)
6010 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff),
Bram Moolenaar38f5f952012-01-26 13:01:59 +01006011 (int)Columns - 10, IOSIZE - (int)STRLEN(IObuff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006012 else
6013 STRCAT(IObuff, hist[i].hisstr);
6014 msg_outtrans(IObuff);
6015 out_flush();
6016 }
6017 if (i == idx)
6018 break;
6019 }
6020 }
6021}
6022#endif
6023
6024#if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006025/*
6026 * Buffers for history read from a viminfo file. Only valid while reading.
6027 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006028static char_u **viminfo_history[HIST_COUNT] = {NULL, NULL, NULL, NULL};
6029static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0};
6030static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0};
6031static int viminfo_add_at_front = FALSE;
6032
6033static int hist_type2char __ARGS((int type, int use_question));
6034
6035/*
6036 * Translate a history type number to the associated character.
6037 */
6038 static int
6039hist_type2char(type, use_question)
6040 int type;
6041 int use_question; /* use '?' instead of '/' */
6042{
6043 if (type == HIST_CMD)
6044 return ':';
6045 if (type == HIST_SEARCH)
6046 {
6047 if (use_question)
6048 return '?';
6049 else
6050 return '/';
6051 }
6052 if (type == HIST_EXPR)
6053 return '=';
6054 return '@';
6055}
6056
6057/*
6058 * Prepare for reading the history from the viminfo file.
6059 * This allocates history arrays to store the read history lines.
6060 */
6061 void
Bram Moolenaar07219f92013-04-14 23:19:36 +02006062prepare_viminfo_history(asklen, writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006063 int asklen;
Bram Moolenaar07219f92013-04-14 23:19:36 +02006064 int writing;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065{
6066 int i;
6067 int num;
6068 int type;
6069 int len;
6070
6071 init_history();
Bram Moolenaar07219f92013-04-14 23:19:36 +02006072 viminfo_add_at_front = (asklen != 0 && !writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006073 if (asklen > hislen)
6074 asklen = hislen;
6075
6076 for (type = 0; type < HIST_COUNT; ++type)
6077 {
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006078 /* Count the number of empty spaces in the history list. Entries read
6079 * from viminfo previously are also considered empty. If there are
6080 * more spaces available than we request, then fill them up. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006081 for (i = 0, num = 0; i < hislen; i++)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006082 if (history[type][i].hisstr == NULL || history[type][i].viminfo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006083 num++;
6084 len = asklen;
6085 if (num > len)
6086 len = num;
6087 if (len <= 0)
6088 viminfo_history[type] = NULL;
6089 else
6090 viminfo_history[type] =
6091 (char_u **)lalloc((long_u)(len * sizeof(char_u *)), FALSE);
6092 if (viminfo_history[type] == NULL)
6093 len = 0;
6094 viminfo_hislen[type] = len;
6095 viminfo_hisidx[type] = 0;
6096 }
6097}
6098
6099/*
6100 * Accept a line from the viminfo, store it in the history array when it's
6101 * new.
6102 */
6103 int
Bram Moolenaar07219f92013-04-14 23:19:36 +02006104read_viminfo_history(virp, writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006105 vir_T *virp;
Bram Moolenaar07219f92013-04-14 23:19:36 +02006106 int writing;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006107{
6108 int type;
6109 long_u len;
6110 char_u *val;
6111 char_u *p;
6112
6113 type = hist_char2type(virp->vir_line[0]);
6114 if (viminfo_hisidx[type] < viminfo_hislen[type])
6115 {
6116 val = viminfo_readstring(virp, 1, TRUE);
6117 if (val != NULL && *val != NUL)
6118 {
Bram Moolenaard87fbc22012-02-04 22:44:32 +01006119 int sep = (*val == ' ' ? NUL : *val);
6120
Bram Moolenaar071d4272004-06-13 20:20:40 +00006121 if (!in_history(type, val + (type == HIST_SEARCH),
Bram Moolenaar07219f92013-04-14 23:19:36 +02006122 viminfo_add_at_front, sep, writing))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006123 {
6124 /* Need to re-allocate to append the separator byte. */
6125 len = STRLEN(val);
6126 p = lalloc(len + 2, TRUE);
6127 if (p != NULL)
6128 {
6129 if (type == HIST_SEARCH)
6130 {
6131 /* Search entry: Move the separator from the first
6132 * column to after the NUL. */
6133 mch_memmove(p, val + 1, (size_t)len);
Bram Moolenaard87fbc22012-02-04 22:44:32 +01006134 p[len] = sep;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006135 }
6136 else
6137 {
6138 /* Not a search entry: No separator in the viminfo
6139 * file, add a NUL separator. */
6140 mch_memmove(p, val, (size_t)len + 1);
6141 p[len + 1] = NUL;
6142 }
6143 viminfo_history[type][viminfo_hisidx[type]++] = p;
6144 }
6145 }
6146 }
6147 vim_free(val);
6148 }
6149 return viminfo_readline(virp);
6150}
6151
Bram Moolenaar07219f92013-04-14 23:19:36 +02006152/*
6153 * Finish reading history lines from viminfo. Not used when writing viminfo.
6154 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006155 void
6156finish_viminfo_history()
6157{
6158 int idx;
6159 int i;
6160 int type;
6161
6162 for (type = 0; type < HIST_COUNT; ++type)
6163 {
6164 if (history[type] == NULL)
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006165 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006166 idx = hisidx[type] + viminfo_hisidx[type];
6167 if (idx >= hislen)
6168 idx -= hislen;
6169 else if (idx < 0)
6170 idx = hislen - 1;
6171 if (viminfo_add_at_front)
6172 hisidx[type] = idx;
6173 else
6174 {
6175 if (hisidx[type] == -1)
6176 hisidx[type] = hislen - 1;
6177 do
6178 {
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006179 if (history[type][idx].hisstr != NULL
6180 || history[type][idx].viminfo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006181 break;
6182 if (++idx == hislen)
6183 idx = 0;
6184 } while (idx != hisidx[type]);
6185 if (idx != hisidx[type] && --idx < 0)
6186 idx = hislen - 1;
6187 }
6188 for (i = 0; i < viminfo_hisidx[type]; i++)
6189 {
6190 vim_free(history[type][idx].hisstr);
6191 history[type][idx].hisstr = viminfo_history[type][i];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006192 history[type][idx].viminfo = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006193 if (--idx < 0)
6194 idx = hislen - 1;
6195 }
6196 idx += 1;
6197 idx %= hislen;
6198 for (i = 0; i < viminfo_hisidx[type]; i++)
6199 {
6200 history[type][idx++].hisnum = ++hisnum[type];
6201 idx %= hislen;
6202 }
6203 vim_free(viminfo_history[type]);
6204 viminfo_history[type] = NULL;
Bram Moolenaarf687cf32013-04-24 15:39:11 +02006205 viminfo_hisidx[type] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006206 }
6207}
6208
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006209/*
6210 * Write history to viminfo file in "fp".
6211 * When "merge" is TRUE merge history lines with a previously read viminfo
6212 * file, data is in viminfo_history[].
6213 * When "merge" is FALSE just write all history lines. Used for ":wviminfo!".
6214 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006215 void
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006216write_viminfo_history(fp, merge)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006217 FILE *fp;
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006218 int merge;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006219{
6220 int i;
6221 int type;
6222 int num_saved;
6223 char_u *p;
6224 int c;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006225 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006226
6227 init_history();
6228 if (hislen == 0)
6229 return;
6230 for (type = 0; type < HIST_COUNT; ++type)
6231 {
6232 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE));
6233 if (num_saved == 0)
6234 continue;
6235 if (num_saved < 0) /* Use default */
6236 num_saved = hislen;
6237 fprintf(fp, _("\n# %s History (newest to oldest):\n"),
6238 type == HIST_CMD ? _("Command Line") :
6239 type == HIST_SEARCH ? _("Search String") :
6240 type == HIST_EXPR ? _("Expression") :
6241 _("Input Line"));
6242 if (num_saved > hislen)
6243 num_saved = hislen;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006244
6245 /*
6246 * Merge typed and viminfo history:
6247 * round 1: history of typed commands.
6248 * round 2: history from recently read viminfo.
6249 */
6250 for (round = 1; round <= 2; ++round)
6251 {
Bram Moolenaara8565fe2013-04-15 16:14:22 +02006252 if (round == 1)
6253 /* start at newest entry, somewhere in the list */
6254 i = hisidx[type];
6255 else if (viminfo_hisidx[type] > 0)
6256 /* start at newest entry, first in the list */
6257 i = 0;
6258 else
6259 /* empty list */
6260 i = -1;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006261 if (i >= 0)
6262 while (num_saved > 0
6263 && !(round == 2 && i >= viminfo_hisidx[type]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006264 {
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006265 p = round == 1 ? history[type][i].hisstr
Bram Moolenaarf687cf32013-04-24 15:39:11 +02006266 : viminfo_history[type] == NULL ? NULL
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006267 : viminfo_history[type][i];
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006268 if (p != NULL && (round == 2
6269 || !merge
6270 || !history[type][i].viminfo))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006271 {
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006272 --num_saved;
6273 fputc(hist_type2char(type, TRUE), fp);
6274 /* For the search history: put the separator in the
6275 * second column; use a space if there isn't one. */
6276 if (type == HIST_SEARCH)
6277 {
6278 c = p[STRLEN(p) + 1];
6279 putc(c == NUL ? ' ' : c, fp);
6280 }
6281 viminfo_writestring(fp, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006282 }
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006283 if (round == 1)
6284 {
6285 /* Decrement index, loop around and stop when back at
6286 * the start. */
6287 if (--i < 0)
6288 i = hislen - 1;
6289 if (i == hisidx[type])
6290 break;
6291 }
6292 else
6293 {
6294 /* Increment index. Stop at the end in the while. */
6295 ++i;
6296 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006297 }
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006298 }
Bram Moolenaar07219f92013-04-14 23:19:36 +02006299 for (i = 0; i < viminfo_hisidx[type]; ++i)
Bram Moolenaarf687cf32013-04-24 15:39:11 +02006300 if (viminfo_history[type] != NULL)
6301 vim_free(viminfo_history[type][i]);
Bram Moolenaar07219f92013-04-14 23:19:36 +02006302 vim_free(viminfo_history[type]);
6303 viminfo_history[type] = NULL;
Bram Moolenaarb70a4732013-04-15 22:22:57 +02006304 viminfo_hisidx[type] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006305 }
6306}
6307#endif /* FEAT_VIMINFO */
6308
6309#if defined(FEAT_FKMAP) || defined(PROTO)
6310/*
6311 * Write a character at the current cursor+offset position.
6312 * It is directly written into the command buffer block.
6313 */
6314 void
6315cmd_pchar(c, offset)
6316 int c, offset;
6317{
6318 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6319 {
6320 EMSG(_("E198: cmd_pchar beyond the command length"));
6321 return;
6322 }
6323 ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c;
6324 ccline.cmdbuff[ccline.cmdlen] = NUL;
6325}
6326
6327 int
6328cmd_gchar(offset)
6329 int offset;
6330{
6331 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6332 {
6333 /* EMSG(_("cmd_gchar beyond the command length")); */
6334 return NUL;
6335 }
6336 return (int)ccline.cmdbuff[ccline.cmdpos + offset];
6337}
6338#endif
6339
6340#if defined(FEAT_CMDWIN) || defined(PROTO)
6341/*
6342 * Open a window on the current command line and history. Allow editing in
6343 * the window. Returns when the window is closed.
6344 * Returns:
6345 * CR if the command is to be executed
6346 * Ctrl_C if it is to be abandoned
6347 * K_IGNORE if editing continues
6348 */
6349 static int
6350ex_window()
6351{
6352 struct cmdline_info save_ccline;
6353 buf_T *old_curbuf = curbuf;
6354 win_T *old_curwin = curwin;
6355 buf_T *bp;
6356 win_T *wp;
6357 int i;
6358 linenr_T lnum;
6359 int histtype;
6360 garray_T winsizes;
Bram Moolenaar7693ec62008-07-24 18:29:37 +00006361#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006362 char_u typestr[2];
Bram Moolenaar7693ec62008-07-24 18:29:37 +00006363#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006364 int save_restart_edit = restart_edit;
6365 int save_State = State;
6366 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00006367#ifdef FEAT_RIGHTLEFT
6368 int save_cmdmsg_rl = cmdmsg_rl;
6369#endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006370#ifdef FEAT_FOLDING
6371 int save_KeyTyped;
6372#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006373
6374 /* Can't do this recursively. Can't do it when typing a password. */
6375 if (cmdwin_type != 0
6376# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
6377 || cmdline_star > 0
6378# endif
6379 )
6380 {
6381 beep_flush();
6382 return K_IGNORE;
6383 }
6384
6385 /* Save current window sizes. */
6386 win_size_save(&winsizes);
6387
6388# ifdef FEAT_AUTOCMD
6389 /* Don't execute autocommands while creating the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006390 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006391# endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00006392 /* don't use a new tab page */
6393 cmdmod.tab = 0;
6394
Bram Moolenaar071d4272004-06-13 20:20:40 +00006395 /* Create a window for the command-line buffer. */
6396 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
6397 {
6398 beep_flush();
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006399# ifdef FEAT_AUTOCMD
6400 unblock_autocmds();
6401# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006402 return K_IGNORE;
6403 }
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006404 cmdwin_type = get_cmdline_type();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006405
6406 /* Create the command-line buffer empty. */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006407 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL);
Bram Moolenaar446cb832008-06-24 21:56:24 +00006408 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006409 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
6410 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
6411 curbuf->b_p_ma = TRUE;
Bram Moolenaar876f6d72009-04-29 10:05:51 +00006412#ifdef FEAT_FOLDING
6413 curwin->w_p_fen = FALSE;
6414#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006415# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00006416 curwin->w_p_rl = cmdmsg_rl;
6417 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418# endif
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006419 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006420
6421# ifdef FEAT_AUTOCMD
6422 /* Do execute autocommands for setting the filetype (load syntax). */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006423 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006424# endif
6425
Bram Moolenaar46152342005-09-07 21:18:43 +00006426 /* Showing the prompt may have set need_wait_return, reset it. */
6427 need_wait_return = FALSE;
6428
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006429 histtype = hist_char2type(cmdwin_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006430 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
6431 {
6432 if (p_wc == TAB)
6433 {
6434 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
6435 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
6436 }
6437 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
6438 }
6439
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006440 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
6441 * sets 'textwidth' to 78). */
6442 curbuf->b_p_tw = 0;
6443
Bram Moolenaar071d4272004-06-13 20:20:40 +00006444 /* Fill the buffer with the history. */
6445 init_history();
6446 if (hislen > 0)
6447 {
6448 i = hisidx[histtype];
6449 if (i >= 0)
6450 {
6451 lnum = 0;
6452 do
6453 {
6454 if (++i == hislen)
6455 i = 0;
6456 if (history[histtype][i].hisstr != NULL)
6457 ml_append(lnum++, history[histtype][i].hisstr,
6458 (colnr_T)0, FALSE);
6459 }
6460 while (i != hisidx[histtype]);
6461 }
6462 }
6463
6464 /* Replace the empty last line with the current command-line and put the
6465 * cursor there. */
6466 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
6467 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6468 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00006469 changed_line_abv_curs();
6470 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00006471 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472
6473 /* Save the command line info, can be used recursively. */
6474 save_ccline = ccline;
6475 ccline.cmdbuff = NULL;
6476 ccline.cmdprompt = NULL;
6477
6478 /* No Ex mode here! */
6479 exmode_active = 0;
6480
6481 State = NORMAL;
6482# ifdef FEAT_MOUSE
6483 setmouse();
6484# endif
6485
6486# ifdef FEAT_AUTOCMD
6487 /* Trigger CmdwinEnter autocommands. */
6488 typestr[0] = cmdwin_type;
6489 typestr[1] = NUL;
6490 apply_autocmds(EVENT_CMDWINENTER, typestr, typestr, FALSE, curbuf);
Bram Moolenaar5495cc92006-08-16 14:23:04 +00006491 if (restart_edit != 0) /* autocmd with ":startinsert" */
6492 stuffcharReadbuff(K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006493# endif
6494
6495 i = RedrawingDisabled;
6496 RedrawingDisabled = 0;
6497
6498 /*
6499 * Call the main loop until <CR> or CTRL-C is typed.
6500 */
6501 cmdwin_result = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00006502 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006503
6504 RedrawingDisabled = i;
6505
6506# ifdef FEAT_AUTOCMD
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006507
6508# ifdef FEAT_FOLDING
6509 save_KeyTyped = KeyTyped;
6510# endif
6511
Bram Moolenaar071d4272004-06-13 20:20:40 +00006512 /* Trigger CmdwinLeave autocommands. */
6513 apply_autocmds(EVENT_CMDWINLEAVE, typestr, typestr, FALSE, curbuf);
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006514
6515# ifdef FEAT_FOLDING
6516 /* Restore KeyTyped in case it is modified by autocommands */
6517 KeyTyped = save_KeyTyped;
6518# endif
6519
Bram Moolenaar071d4272004-06-13 20:20:40 +00006520# endif
6521
Bram Moolenaarccc18222007-05-10 18:25:20 +00006522 /* Restore the command line info. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006523 ccline = save_ccline;
6524 cmdwin_type = 0;
6525
6526 exmode_active = save_exmode;
6527
Bram Moolenaarf9821062008-06-20 16:31:07 +00006528 /* Safety check: The old window or buffer was deleted: It's a bug when
Bram Moolenaar071d4272004-06-13 20:20:40 +00006529 * this happens! */
6530 if (!win_valid(old_curwin) || !buf_valid(old_curbuf))
6531 {
6532 cmdwin_result = Ctrl_C;
6533 EMSG(_("E199: Active window or buffer deleted"));
6534 }
6535 else
6536 {
6537# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
6538 /* autocmds may abort script processing */
6539 if (aborting() && cmdwin_result != K_IGNORE)
6540 cmdwin_result = Ctrl_C;
6541# endif
6542 /* Set the new command line from the cmdline buffer. */
6543 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00006544 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006545 {
Bram Moolenaar46152342005-09-07 21:18:43 +00006546 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
6547
6548 if (histtype == HIST_CMD)
6549 {
6550 /* Execute the command directly. */
6551 ccline.cmdbuff = vim_strsave((char_u *)p);
6552 cmdwin_result = CAR;
6553 }
6554 else
6555 {
6556 /* First need to cancel what we were doing. */
6557 ccline.cmdbuff = NULL;
6558 stuffcharReadbuff(':');
6559 stuffReadbuff((char_u *)p);
6560 stuffcharReadbuff(CAR);
6561 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006562 }
6563 else if (cmdwin_result == K_XF2) /* :qa typed */
6564 {
6565 ccline.cmdbuff = vim_strsave((char_u *)"qa");
6566 cmdwin_result = CAR;
6567 }
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02006568 else if (cmdwin_result == Ctrl_C)
6569 {
6570 /* :q or :close, don't execute any command
6571 * and don't modify the cmd window. */
6572 ccline.cmdbuff = NULL;
6573 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006574 else
6575 ccline.cmdbuff = vim_strsave(ml_get_curline());
6576 if (ccline.cmdbuff == NULL)
6577 cmdwin_result = Ctrl_C;
6578 else
6579 {
6580 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
6581 ccline.cmdbufflen = ccline.cmdlen + 1;
6582 ccline.cmdpos = curwin->w_cursor.col;
6583 if (ccline.cmdpos > ccline.cmdlen)
6584 ccline.cmdpos = ccline.cmdlen;
6585 if (cmdwin_result == K_IGNORE)
6586 {
6587 set_cmdspos_cursor();
6588 redrawcmd();
6589 }
6590 }
6591
6592# ifdef FEAT_AUTOCMD
6593 /* Don't execute autocommands while deleting the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006594 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006595# endif
6596 wp = curwin;
6597 bp = curbuf;
6598 win_goto(old_curwin);
6599 win_close(wp, TRUE);
Bram Moolenaar8006d692010-03-02 17:23:21 +01006600
6601 /* win_close() may have already wiped the buffer when 'bh' is
6602 * set to 'wipe' */
6603 if (buf_valid(bp))
Bram Moolenaar42ec6562012-02-22 14:58:37 +01006604 close_buffer(NULL, bp, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006605
6606 /* Restore window sizes. */
6607 win_size_restore(&winsizes);
6608
6609# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006610 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006611# endif
6612 }
6613
6614 ga_clear(&winsizes);
6615 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00006616# ifdef FEAT_RIGHTLEFT
6617 cmdmsg_rl = save_cmdmsg_rl;
6618# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619
6620 State = save_State;
6621# ifdef FEAT_MOUSE
6622 setmouse();
6623# endif
6624
6625 return cmdwin_result;
6626}
6627#endif /* FEAT_CMDWIN */
6628
6629/*
6630 * Used for commands that either take a simple command string argument, or:
6631 * cmd << endmarker
6632 * {script}
6633 * endmarker
6634 * Returns a pointer to allocated memory with {script} or NULL.
6635 */
6636 char_u *
6637script_get(eap, cmd)
6638 exarg_T *eap;
6639 char_u *cmd;
6640{
6641 char_u *theline;
6642 char *end_pattern = NULL;
6643 char dot[] = ".";
6644 garray_T ga;
6645
6646 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
6647 return NULL;
6648
6649 ga_init2(&ga, 1, 0x400);
6650
6651 if (cmd[2] != NUL)
6652 end_pattern = (char *)skipwhite(cmd + 2);
6653 else
6654 end_pattern = dot;
6655
6656 for (;;)
6657 {
6658 theline = eap->getline(
6659#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00006660 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00006661#endif
6662 NUL, eap->cookie, 0);
6663
6664 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
Bram Moolenaarbe555e72008-08-06 12:19:26 +00006665 {
6666 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006667 break;
Bram Moolenaarbe555e72008-08-06 12:19:26 +00006668 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006669
6670 ga_concat(&ga, theline);
6671 ga_append(&ga, '\n');
6672 vim_free(theline);
6673 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00006674 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006675
6676 return (char_u *)ga.ga_data;
6677}