blob: 9a49f9f4fad091f5195075bd26e5937ef1ecd3a6 [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
Bram Moolenaard25c16e2016-01-29 22:13:30 +010069static int hist_char2type(int c);
Bram Moolenaar071d4272004-06-13 20:20:40 +000070
Bram Moolenaard25c16e2016-01-29 22:13:30 +010071static int in_history(int, char_u *, int, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000072# ifdef FEAT_EVAL
Bram Moolenaard25c16e2016-01-29 22:13:30 +010073static int calc_hist_idx(int histype, int num);
Bram Moolenaar071d4272004-06-13 20:20:40 +000074# 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
Bram Moolenaard25c16e2016-01-29 22:13:30 +010085static int cmdline_charsize(int idx);
86static void set_cmdspos(void);
87static void set_cmdspos_cursor(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000088#ifdef FEAT_MBYTE
Bram Moolenaard25c16e2016-01-29 22:13:30 +010089static void correct_cmdspos(int idx, int cells);
Bram Moolenaar071d4272004-06-13 20:20:40 +000090#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010091static void alloc_cmdbuff(int len);
92static int realloc_cmdbuff(int len);
93static void draw_cmdline(int start, int len);
94static void save_cmdline(struct cmdline_info *ccp);
95static void restore_cmdline(struct cmdline_info *ccp);
96static int cmdline_paste(int regname, int literally, int remcr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000097#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaard25c16e2016-01-29 22:13:30 +010098static void redrawcmd_preedit(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000099#endif
100#ifdef FEAT_WILDMENU
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100101static void cmdline_del(int from);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100103static void redrawcmdprompt(void);
104static void cursorcmd(void);
105static int ccheck_abbr(int);
106static int nextwild(expand_T *xp, int type, int options, int escape);
107static void escape_fname(char_u **pp);
108static int showmatches(expand_T *xp, int wildmenu);
109static void set_expand_context(expand_T *xp);
110static int ExpandFromContext(expand_T *xp, char_u *, int *, char_u ***, int);
111static int expand_showtail(expand_T *xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000112#ifdef FEAT_CMDL_COMPL
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100113static int expand_shellcmd(char_u *filepat, int *num_file, char_u ***file, int flagsarg);
114static int ExpandRTDir(char_u *pat, int *num_file, char_u ***file, char *dirname[]);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +0200115# ifdef FEAT_CMDHIST
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100116static char_u *get_history_arg(expand_T *xp, int idx);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +0200117# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100119static int ExpandUserDefined(expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file);
120static int ExpandUserList(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
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100124static void clear_hist_entry(histentry_T *hisptr);
Bram Moolenaar25a6df92013-04-06 14:29:00 +0200125#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126
127#ifdef FEAT_CMDWIN
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100128static int ex_window(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129#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
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100136sort_func_compare(const void *s1, const void *s2);
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200137#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 *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100159getcmdline(
160 int firstc,
161 long count UNUSED, /* only used for incremental search */
162 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163{
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 {
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200253 vim_memset(ccline.cmdbuff, ' ', indent);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000254 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
Bram Moolenaar165bc692015-07-21 17:53:25 +0200903 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 }
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 Moolenaar78c0b7d2016-01-30 15:52:46 +01001991getcmdline_prompt(
1992 int firstc,
1993 char_u *prompt, /* command line prompt */
1994 int attr, /* attributes for prompt */
1995 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 Moolenaar78c0b7d2016-01-30 15:52:46 +01002029text_locked(void)
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 Moolenaar78c0b7d2016-01-30 15:52:46 +01002043text_locked_msg(void)
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
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002059curbuf_locked(void)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002060{
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
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002074allbuf_locked(void)
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002075{
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
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002086cmdline_charsize(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087{
2088#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2089 if (cmdline_star > 0) /* showing '*', always 1 position */
2090 return 1;
2091#endif
2092 return ptr2cells(ccline.cmdbuff + idx);
2093}
2094
2095/*
2096 * Compute the offset of the cursor on the command line for the prompt and
2097 * indent.
2098 */
2099 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002100set_cmdspos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002102 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 ccline.cmdspos = 1 + ccline.cmdindent;
2104 else
2105 ccline.cmdspos = 0 + ccline.cmdindent;
2106}
2107
2108/*
2109 * Compute the screen position for the cursor on the command line.
2110 */
2111 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002112set_cmdspos_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113{
2114 int i, m, c;
2115
2116 set_cmdspos();
2117 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002118 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002120 if (m < 0) /* overflow, Columns or Rows at weird value */
2121 m = MAXCOL;
2122 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 else
2124 m = MAXCOL;
2125 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
2126 {
2127 c = cmdline_charsize(i);
2128#ifdef FEAT_MBYTE
2129 /* Count ">" for double-wide multi-byte char that doesn't fit. */
2130 if (has_mbyte)
2131 correct_cmdspos(i, c);
2132#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00002133 /* If the cmdline doesn't fit, show cursor on last visible char.
2134 * Don't move the cursor itself, so we can still append. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 if ((ccline.cmdspos += c) >= m)
2136 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 ccline.cmdspos -= c;
2138 break;
2139 }
2140#ifdef FEAT_MBYTE
2141 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002142 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143#endif
2144 }
2145}
2146
2147#ifdef FEAT_MBYTE
2148/*
2149 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2150 * character that doesn't fit, so that a ">" must be displayed.
2151 */
2152 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002153correct_cmdspos(int idx, int cells)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002155 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2157 && ccline.cmdspos % Columns + cells > Columns)
2158 ccline.cmdspos++;
2159}
2160#endif
2161
2162/*
2163 * Get an Ex command line for the ":" command.
2164 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002166getexline(
2167 int c, /* normally ':', NUL for ":append" */
2168 void *cookie UNUSED,
2169 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170{
2171 /* When executing a register, remove ':' that's in front of each line. */
2172 if (exec_from_reg && vpeekc() == ':')
2173 (void)vgetc();
2174 return getcmdline(c, 1L, indent);
2175}
2176
2177/*
2178 * Get an Ex command line for Ex mode.
2179 * In Ex mode we only use the OS supplied line editing features and no
2180 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002181 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002184getexmodeline(
2185 int promptc, /* normally ':', NUL for ":append" and '?' for
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002186 :s prompt */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002187 void *cookie UNUSED,
2188 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002190 garray_T line_ga;
2191 char_u *pend;
2192 int startcol = 0;
Bram Moolenaar76624232007-07-28 12:21:47 +00002193 int c1 = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002194 int escaped = FALSE; /* CTRL-V typed */
2195 int vcol = 0;
2196 char_u *p;
Bram Moolenaar76624232007-07-28 12:21:47 +00002197 int prev_char;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002198 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199
2200 /* Switch cursor on now. This avoids that it happens after the "\n", which
2201 * confuses the system function that computes tabstops. */
2202 cursor_on();
2203
2204 /* always start in column 0; write a newline if necessary */
2205 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002206 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002208 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002210 /* indent that is only displayed, not in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002211 if (p_prompt)
2212 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 while (indent-- > 0)
2214 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 }
2217
2218 ga_init2(&line_ga, 1, 30);
2219
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002220 /* autoindent for :insert and :append is in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002221 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002222 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002223 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002224 while (indent >= 8)
2225 {
2226 ga_append(&line_ga, TAB);
2227 msg_puts((char_u *)" ");
2228 indent -= 8;
2229 }
2230 while (indent-- > 0)
2231 {
2232 ga_append(&line_ga, ' ');
2233 msg_putchar(' ');
2234 }
2235 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002236 ++no_mapping;
2237 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002238
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 /*
2240 * Get the line, one character at a time.
2241 */
2242 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002243 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002245 long sw;
2246 char_u *s;
2247
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248 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;
Bram Moolenaarda636572015-04-03 17:11:45 +02002299 goto redraw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002300 }
2301
2302 if (c1 == Ctrl_T)
2303 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002304 sw = get_sw_value(curbuf);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002305 p = (char_u *)line_ga.ga_data;
2306 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002307 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaar14f24742012-08-08 18:01:05 +02002308 indent += sw - indent % sw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002309add_indent:
Bram Moolenaar597a4222014-06-25 14:39:50 +02002310 while (get_indent_str(p, 8, FALSE) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002312 (void)ga_grow(&line_ga, 2); /* one more for the NUL */
Bram Moolenaarda636572015-04-03 17:11:45 +02002313 p = (char_u *)line_ga.ga_data;
2314 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002315 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2316 *s = ' ';
2317 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002319redraw:
2320 /* redraw the line */
2321 msg_col = startcol;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002322 vcol = 0;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002323 p = (char_u *)line_ga.ga_data;
2324 p[line_ga.ga_len] = NUL;
2325 while (p < (char_u *)line_ga.ga_data + line_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002327 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002329 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002331 msg_putchar(' ');
2332 } while (++vcol % 8);
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002333 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002335 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002337 len = MB_PTR2LEN(p);
2338 msg_outtrans_len(p, len);
2339 vcol += ptr2cells(p);
2340 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 }
2342 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002343 msg_clr_eos();
Bram Moolenaar76624232007-07-28 12:21:47 +00002344 windgoto(msg_row, msg_col);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002345 continue;
2346 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002348 if (c1 == Ctrl_D)
2349 {
2350 /* Delete one shiftwidth. */
2351 p = (char_u *)line_ga.ga_data;
2352 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002354 if (prev_char == '^')
2355 ex_keep_indent = TRUE;
2356 indent = 0;
2357 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 }
2359 else
2360 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002361 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002362 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaarda636572015-04-03 17:11:45 +02002363 if (indent > 0)
2364 {
2365 --indent;
2366 indent -= indent % get_sw_value(curbuf);
2367 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02002369 while (get_indent_str(p, 8, FALSE) > indent)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002370 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002371 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002372 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2373 --line_ga.ga_len;
2374 }
2375 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002377
2378 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2379 {
2380 escaped = TRUE;
2381 continue;
2382 }
2383
2384 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
2385 if (IS_SPECIAL(c1))
2386 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002388
2389 if (IS_SPECIAL(c1))
2390 c1 = '?';
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002391#ifdef FEAT_MBYTE
2392 if (has_mbyte)
2393 len = (*mb_char2bytes)(c1,
2394 (char_u *)line_ga.ga_data + line_ga.ga_len);
2395 else
2396#endif
2397 {
2398 len = 1;
2399 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
2400 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002401 if (c1 == '\n')
2402 msg_putchar('\n');
2403 else if (c1 == TAB)
2404 {
2405 /* Don't use chartabsize(), 'ts' can be different */
2406 do
2407 {
2408 msg_putchar(' ');
2409 } while (++vcol % 8);
2410 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002413 msg_outtrans_len(
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002414 ((char_u *)line_ga.ga_data) + line_ga.ga_len, len);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002415 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 }
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002417 line_ga.ga_len += len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002418 escaped = FALSE;
2419
2420 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002421 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002422
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002423 /* We are done when a NL is entered, but not when it comes after an
2424 * odd number of backslashes, that results in a NUL. */
2425 if (line_ga.ga_len > 0 && pend[-1] == '\n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 {
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002427 int bcount = 0;
2428
2429 while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\')
2430 ++bcount;
2431
2432 if (bcount > 0)
2433 {
2434 /* Halve the number of backslashes: "\NL" -> "NUL", "\\NL" ->
2435 * "\NL", etc. */
2436 line_ga.ga_len -= (bcount + 1) / 2;
2437 pend -= (bcount + 1) / 2;
2438 pend[-1] = '\n';
2439 }
2440
2441 if ((bcount & 1) == 0)
2442 {
2443 --line_ga.ga_len;
2444 --pend;
2445 *pend = NUL;
2446 break;
2447 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 }
2449 }
2450
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002451 --no_mapping;
2452 --allow_keys;
2453
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 /* make following messages go to the next line */
2455 msg_didout = FALSE;
2456 msg_col = 0;
2457 if (msg_row < Rows - 1)
2458 ++msg_row;
2459 emsg_on_display = FALSE; /* don't want ui_delay() */
2460
2461 if (got_int)
2462 ga_clear(&line_ga);
2463
2464 return (char_u *)line_ga.ga_data;
2465}
2466
Bram Moolenaare344bea2005-09-01 20:46:49 +00002467# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
2468 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469/*
2470 * Return TRUE if ccline.overstrike is on.
2471 */
2472 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002473cmdline_overstrike(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474{
2475 return ccline.overstrike;
2476}
2477
2478/*
2479 * Return TRUE if the cursor is at the end of the cmdline.
2480 */
2481 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002482cmdline_at_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483{
2484 return (ccline.cmdpos >= ccline.cmdlen);
2485}
2486#endif
2487
Bram Moolenaar9372a112005-12-06 19:59:18 +00002488#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489/*
2490 * Return the virtual column number at the current cursor position.
2491 * This is used by the IM code to obtain the start of the preedit string.
2492 */
2493 colnr_T
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002494cmdline_getvcol_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495{
2496 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
2497 return MAXCOL;
2498
2499# ifdef FEAT_MBYTE
2500 if (has_mbyte)
2501 {
2502 colnr_T col;
2503 int i = 0;
2504
2505 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002506 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507
2508 return col;
2509 }
2510 else
2511# endif
2512 return ccline.cmdpos;
2513}
2514#endif
2515
2516#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2517/*
2518 * If part of the command line is an IM preedit string, redraw it with
2519 * IM feedback attributes. The cursor position is restored after drawing.
2520 */
2521 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002522redrawcmd_preedit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523{
2524 if ((State & CMDLINE)
2525 && xic != NULL
Bram Moolenaar494c82a2006-09-14 08:25:49 +00002526 /* && im_get_status() doesn't work when using SCIM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 && !p_imdisable
2528 && im_is_preediting())
2529 {
2530 int cmdpos = 0;
2531 int cmdspos;
2532 int old_row;
2533 int old_col;
2534 colnr_T col;
2535
2536 old_row = msg_row;
2537 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002538 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539
2540# ifdef FEAT_MBYTE
2541 if (has_mbyte)
2542 {
2543 for (col = 0; col < preedit_start_col
2544 && cmdpos < ccline.cmdlen; ++col)
2545 {
2546 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002547 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 }
2549 }
2550 else
2551# endif
2552 {
2553 cmdspos += preedit_start_col;
2554 cmdpos += preedit_start_col;
2555 }
2556
2557 msg_row = cmdline_row + (cmdspos / (int)Columns);
2558 msg_col = cmdspos % (int)Columns;
2559 if (msg_row >= Rows)
2560 msg_row = Rows - 1;
2561
2562 for (col = 0; cmdpos < ccline.cmdlen; ++col)
2563 {
2564 int char_len;
2565 int char_attr;
2566
2567 char_attr = im_get_feedback_attr(col);
2568 if (char_attr < 0)
2569 break; /* end of preedit string */
2570
2571# ifdef FEAT_MBYTE
2572 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002573 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 else
2575# endif
2576 char_len = 1;
2577
2578 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
2579 cmdpos += char_len;
2580 }
2581
2582 msg_row = old_row;
2583 msg_col = old_col;
2584 }
2585}
2586#endif /* FEAT_XIM && FEAT_GUI_GTK */
2587
2588/*
2589 * Allocate a new command line buffer.
2590 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
2591 * Returns the new value of ccline.cmdbuff and ccline.cmdbufflen.
2592 */
2593 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002594alloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595{
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
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002613realloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614{
2615 char_u *p;
2616
Bram Moolenaar673b87b2010-08-13 19:12:07 +02002617 if (len < ccline.cmdbufflen)
2618 return OK; /* no need to resize */
2619
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620 p = ccline.cmdbuff;
2621 alloc_cmdbuff(len); /* will get some more */
2622 if (ccline.cmdbuff == NULL) /* out of memory */
2623 {
2624 ccline.cmdbuff = p; /* keep the old one */
2625 return FAIL;
2626 }
Bram Moolenaar35a34232010-08-13 16:51:26 +02002627 /* There isn't always a NUL after the command, but it may need to be
2628 * there, thus copy up to the NUL and add a NUL. */
2629 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen);
2630 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631 vim_free(p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002632
2633 if (ccline.xpc != NULL
2634 && ccline.xpc->xp_pattern != NULL
2635 && ccline.xpc->xp_context != EXPAND_NOTHING
2636 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL)
2637 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00002638 int i = (int)(ccline.xpc->xp_pattern - p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002639
2640 /* If xp_pattern points inside the old cmdbuff it needs to be adjusted
2641 * to point into the newly allocated memory. */
2642 if (i >= 0 && i <= ccline.cmdlen)
2643 ccline.xpc->xp_pattern = ccline.cmdbuff + i;
2644 }
2645
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 return OK;
2647}
2648
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002649#if defined(FEAT_ARABIC) || defined(PROTO)
2650static char_u *arshape_buf = NULL;
2651
2652# if defined(EXITFREE) || defined(PROTO)
2653 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002654free_cmdline_buf(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002655{
2656 vim_free(arshape_buf);
2657}
2658# endif
2659#endif
2660
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661/*
2662 * Draw part of the cmdline at the current cursor position. But draw stars
2663 * when cmdline_star is TRUE.
2664 */
2665 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002666draw_cmdline(int start, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667{
2668#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2669 int i;
2670
2671 if (cmdline_star > 0)
2672 for (i = 0; i < len; ++i)
2673 {
2674 msg_putchar('*');
2675# ifdef FEAT_MBYTE
2676 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002677 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678# endif
2679 }
2680 else
2681#endif
2682#ifdef FEAT_ARABIC
2683 if (p_arshape && !p_tbidi && enc_utf8 && len > 0)
2684 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685 static int buflen = 0;
2686 char_u *p;
2687 int j;
2688 int newlen = 0;
2689 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00002690 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 int prev_c = 0;
2692 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002693 int u8c;
2694 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696
2697 /*
2698 * Do arabic shaping into a temporary buffer. This is very
2699 * inefficient!
2700 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002701 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702 {
2703 /* Re-allocate the buffer. We keep it around to avoid a lot of
2704 * alloc()/free() calls. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002705 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002706 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002707 arshape_buf = alloc(buflen);
2708 if (arshape_buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 return; /* out of memory */
2710 }
2711
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002712 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
2713 {
2714 /* Prepend a space to draw the leading composing char on. */
2715 arshape_buf[0] = ' ';
2716 newlen = 1;
2717 }
2718
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719 for (j = start; j < start + len; j += mb_l)
2720 {
2721 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002722 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002723 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 if (ARABIC_CHAR(u8c))
2725 {
2726 /* Do Arabic shaping. */
2727 if (cmdmsg_rl)
2728 {
2729 /* displaying from right to left */
2730 pc = prev_c;
2731 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002732 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733 if (j + mb_l >= start + len)
2734 nc = NUL;
2735 else
2736 nc = utf_ptr2char(p + mb_l);
2737 }
2738 else
2739 {
2740 /* displaying from left to right */
2741 if (j + mb_l >= start + len)
2742 pc = NUL;
2743 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002744 {
2745 int pcc[MAX_MCO];
2746
2747 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002749 pc1 = pcc[0];
2750 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 nc = prev_c;
2752 }
2753 prev_c = u8c;
2754
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002755 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002757 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002758 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002760 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
2761 if (u8cc[1] != 0)
2762 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002763 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 }
2765 }
2766 else
2767 {
2768 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002769 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770 newlen += mb_l;
2771 }
2772 }
2773
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002774 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775 }
2776 else
2777#endif
2778 msg_outtrans_len(ccline.cmdbuff + start, len);
2779}
2780
2781/*
2782 * Put a character on the command line. Shifts the following text to the
2783 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
2784 * "c" must be printable (fit in one display cell)!
2785 */
2786 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002787putcmdline(int c, int shift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788{
2789 if (cmd_silent)
2790 return;
2791 msg_no_more = TRUE;
2792 msg_putchar(c);
2793 if (shift)
2794 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2795 msg_no_more = FALSE;
2796 cursorcmd();
2797}
2798
2799/*
2800 * Undo a putcmdline(c, FALSE).
2801 */
2802 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002803unputcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804{
2805 if (cmd_silent)
2806 return;
2807 msg_no_more = TRUE;
2808 if (ccline.cmdlen == ccline.cmdpos)
2809 msg_putchar(' ');
Bram Moolenaar64fdf5c2012-06-06 12:03:06 +02002810#ifdef FEAT_MBYTE
2811 else if (has_mbyte)
2812 draw_cmdline(ccline.cmdpos,
2813 (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos));
2814#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815 else
2816 draw_cmdline(ccline.cmdpos, 1);
2817 msg_no_more = FALSE;
2818 cursorcmd();
2819}
2820
2821/*
2822 * Put the given string, of the given length, onto the command line.
2823 * If len is -1, then STRLEN() is used to calculate the length.
2824 * If 'redraw' is TRUE then the new part of the command line, and the remaining
2825 * part will be redrawn, otherwise it will not. If this function is called
2826 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
2827 * called afterwards.
2828 */
2829 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002830put_on_cmdline(char_u *str, int len, int redraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002831{
2832 int retval;
2833 int i;
2834 int m;
2835 int c;
2836
2837 if (len < 0)
2838 len = (int)STRLEN(str);
2839
2840 /* Check if ccline.cmdbuff needs to be longer */
2841 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
Bram Moolenaar673b87b2010-08-13 19:12:07 +02002842 retval = realloc_cmdbuff(ccline.cmdlen + len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 else
2844 retval = OK;
2845 if (retval == OK)
2846 {
2847 if (!ccline.overstrike)
2848 {
2849 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2850 ccline.cmdbuff + ccline.cmdpos,
2851 (size_t)(ccline.cmdlen - ccline.cmdpos));
2852 ccline.cmdlen += len;
2853 }
2854 else
2855 {
2856#ifdef FEAT_MBYTE
2857 if (has_mbyte)
2858 {
2859 /* Count nr of characters in the new string. */
2860 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002861 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 ++m;
2863 /* Count nr of bytes in cmdline that are overwritten by these
2864 * characters. */
2865 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002866 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 --m;
2868 if (i < ccline.cmdlen)
2869 {
2870 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2871 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
2872 ccline.cmdlen += ccline.cmdpos + len - i;
2873 }
2874 else
2875 ccline.cmdlen = ccline.cmdpos + len;
2876 }
2877 else
2878#endif
2879 if (ccline.cmdpos + len > ccline.cmdlen)
2880 ccline.cmdlen = ccline.cmdpos + len;
2881 }
2882 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
2883 ccline.cmdbuff[ccline.cmdlen] = NUL;
2884
2885#ifdef FEAT_MBYTE
2886 if (enc_utf8)
2887 {
2888 /* When the inserted text starts with a composing character,
2889 * backup to the character before it. There could be two of them.
2890 */
2891 i = 0;
2892 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
2893 while (ccline.cmdpos > 0 && utf_iscomposing(c))
2894 {
2895 i = (*mb_head_off)(ccline.cmdbuff,
2896 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
2897 ccline.cmdpos -= i;
2898 len += i;
2899 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
2900 }
2901# ifdef FEAT_ARABIC
2902 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
2903 {
2904 /* Check the previous character for Arabic combining pair. */
2905 i = (*mb_head_off)(ccline.cmdbuff,
2906 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
2907 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
2908 + ccline.cmdpos - i), c))
2909 {
2910 ccline.cmdpos -= i;
2911 len += i;
2912 }
2913 else
2914 i = 0;
2915 }
2916# endif
2917 if (i != 0)
2918 {
2919 /* Also backup the cursor position. */
2920 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
2921 ccline.cmdspos -= i;
2922 msg_col -= i;
2923 if (msg_col < 0)
2924 {
2925 msg_col += Columns;
2926 --msg_row;
2927 }
2928 }
2929 }
2930#endif
2931
2932 if (redraw && !cmd_silent)
2933 {
2934 msg_no_more = TRUE;
2935 i = cmdline_row;
Bram Moolenaar73dc59a2011-09-30 17:46:21 +02002936 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2938 /* Avoid clearing the rest of the line too often. */
2939 if (cmdline_row != i || ccline.overstrike)
2940 msg_clr_eos();
2941 msg_no_more = FALSE;
2942 }
2943#ifdef FEAT_FKMAP
2944 /*
2945 * If we are in Farsi command mode, the character input must be in
2946 * Insert mode. So do not advance the cmdpos.
2947 */
2948 if (!cmd_fkmap)
2949#endif
2950 {
2951 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002952 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002954 if (m < 0) /* overflow, Columns or Rows at weird value */
2955 m = MAXCOL;
2956 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957 else
2958 m = MAXCOL;
2959 for (i = 0; i < len; ++i)
2960 {
2961 c = cmdline_charsize(ccline.cmdpos);
2962#ifdef FEAT_MBYTE
2963 /* count ">" for a double-wide char that doesn't fit. */
2964 if (has_mbyte)
2965 correct_cmdspos(ccline.cmdpos, c);
2966#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00002967 /* Stop cursor at the end of the screen, but do increment the
2968 * insert position, so that entering a very long command
2969 * works, even though you can't see it. */
2970 if (ccline.cmdspos + c < m)
2971 ccline.cmdspos += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972#ifdef FEAT_MBYTE
2973 if (has_mbyte)
2974 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002975 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976 if (c > len - i - 1)
2977 c = len - i - 1;
2978 ccline.cmdpos += c;
2979 i += c;
2980 }
2981#endif
2982 ++ccline.cmdpos;
2983 }
2984 }
2985 }
2986 if (redraw)
2987 msg_check();
2988 return retval;
2989}
2990
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002991static struct cmdline_info prev_ccline;
2992static int prev_ccline_used = FALSE;
2993
2994/*
2995 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
2996 * and overwrite it. But get_cmdline_str() may need it, thus make it
2997 * available globally in prev_ccline.
2998 */
2999 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003000save_cmdline(struct cmdline_info *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003001{
3002 if (!prev_ccline_used)
3003 {
3004 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info));
3005 prev_ccline_used = TRUE;
3006 }
3007 *ccp = prev_ccline;
3008 prev_ccline = ccline;
3009 ccline.cmdbuff = NULL;
3010 ccline.cmdprompt = NULL;
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003011 ccline.xpc = NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003012}
3013
3014/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003015 * Restore ccline after it has been saved with save_cmdline().
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003016 */
3017 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003018restore_cmdline(struct cmdline_info *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003019{
3020 ccline = prev_ccline;
3021 prev_ccline = *ccp;
3022}
3023
Bram Moolenaar5a305422006-04-28 22:38:25 +00003024#if defined(FEAT_EVAL) || defined(PROTO)
3025/*
3026 * Save the command line into allocated memory. Returns a pointer to be
3027 * passed to restore_cmdline_alloc() later.
3028 * Returns NULL when failed.
3029 */
3030 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003031save_cmdline_alloc(void)
Bram Moolenaar5a305422006-04-28 22:38:25 +00003032{
3033 struct cmdline_info *p;
3034
3035 p = (struct cmdline_info *)alloc((unsigned)sizeof(struct cmdline_info));
3036 if (p != NULL)
3037 save_cmdline(p);
3038 return (char_u *)p;
3039}
3040
3041/*
3042 * Restore the command line from the return value of save_cmdline_alloc().
3043 */
3044 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003045restore_cmdline_alloc(char_u *p)
Bram Moolenaar5a305422006-04-28 22:38:25 +00003046{
3047 if (p != NULL)
3048 {
3049 restore_cmdline((struct cmdline_info *)p);
3050 vim_free(p);
3051 }
3052}
3053#endif
3054
Bram Moolenaar8299df92004-07-10 09:47:34 +00003055/*
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003056 * Paste a yank register into the command line.
3057 * Used by CTRL-R command in command-line mode.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003058 * insert_reg() can't be used here, because special characters from the
3059 * register contents will be interpreted as commands.
3060 *
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003061 * Return FAIL for failure, OK otherwise.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003062 */
3063 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003064cmdline_paste(
3065 int regname,
3066 int literally, /* Insert text literally instead of "as typed" */
3067 int remcr) /* remove trailing CR */
Bram Moolenaar8299df92004-07-10 09:47:34 +00003068{
3069 long i;
3070 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003071 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003072 int allocated;
3073 struct cmdline_info save_ccline;
3074
3075 /* check for valid regname; also accept special characters for CTRL-R in
3076 * the command line */
3077 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
3078 && regname != Ctrl_A && !valid_yank_reg(regname, FALSE))
3079 return FAIL;
3080
3081 /* A register containing CTRL-R can cause an endless loop. Allow using
3082 * CTRL-C to break the loop. */
3083 line_breakcheck();
3084 if (got_int)
3085 return FAIL;
3086
3087#ifdef FEAT_CLIPBOARD
3088 regname = may_get_selection(regname);
3089#endif
3090
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003091 /* Need to save and restore ccline. And set "textlock" to avoid nasty
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003092 * things like going to another buffer when evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003093 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003094 ++textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003095 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003096 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003097 restore_cmdline(&save_ccline);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003098
3099 if (i)
3100 {
3101 /* Got the value of a special register in "arg". */
3102 if (arg == NULL)
3103 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003104
3105 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
3106 * part of the word. */
3107 p = arg;
3108 if (p_is && regname == Ctrl_W)
3109 {
3110 char_u *w;
3111 int len;
3112
3113 /* Locate start of last word in the cmd buffer. */
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003114 for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; )
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003115 {
3116#ifdef FEAT_MBYTE
3117 if (has_mbyte)
3118 {
3119 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
3120 if (!vim_iswordc(mb_ptr2char(w - len)))
3121 break;
3122 w -= len;
3123 }
3124 else
3125#endif
3126 {
3127 if (!vim_iswordc(w[-1]))
3128 break;
3129 --w;
3130 }
3131 }
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003132 len = (int)((ccline.cmdbuff + ccline.cmdpos) - w);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003133 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
3134 p += len;
3135 }
3136
3137 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003138 if (allocated)
3139 vim_free(arg);
3140 return OK;
3141 }
3142
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003143 return cmdline_paste_reg(regname, literally, remcr);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003144}
3145
3146/*
3147 * Put a string on the command line.
3148 * When "literally" is TRUE, insert literally.
3149 * When "literally" is FALSE, insert as typed, but don't leave the command
3150 * line.
3151 */
3152 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003153cmdline_paste_str(char_u *s, int literally)
Bram Moolenaar8299df92004-07-10 09:47:34 +00003154{
3155 int c, cv;
3156
3157 if (literally)
3158 put_on_cmdline(s, -1, TRUE);
3159 else
3160 while (*s != NUL)
3161 {
3162 cv = *s;
3163 if (cv == Ctrl_V && s[1])
3164 ++s;
3165#ifdef FEAT_MBYTE
3166 if (has_mbyte)
Bram Moolenaar48be32b2008-06-20 10:56:16 +00003167 c = mb_cptr2char_adv(&s);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003168 else
3169#endif
3170 c = *s++;
Bram Moolenaare79abdd2012-06-29 13:44:41 +02003171 if (cv == Ctrl_V || c == ESC || c == Ctrl_C
3172 || c == CAR || c == NL || c == Ctrl_L
Bram Moolenaar8299df92004-07-10 09:47:34 +00003173#ifdef UNIX
3174 || c == intr_char
3175#endif
3176 || (c == Ctrl_BSL && *s == Ctrl_N))
3177 stuffcharReadbuff(Ctrl_V);
3178 stuffcharReadbuff(c);
3179 }
3180}
3181
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182#ifdef FEAT_WILDMENU
3183/*
3184 * Delete characters on the command line, from "from" to the current
3185 * position.
3186 */
3187 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003188cmdline_del(int from)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189{
3190 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
3191 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3192 ccline.cmdlen -= ccline.cmdpos - from;
3193 ccline.cmdpos = from;
3194}
3195#endif
3196
3197/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003198 * this function is called when the screen size changes and with incremental
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199 * search
3200 */
3201 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003202redrawcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003203{
3204 if (cmd_silent)
3205 return;
3206 need_wait_return = FALSE;
3207 compute_cmdrow();
3208 redrawcmd();
3209 cursorcmd();
3210}
3211
3212 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003213redrawcmdprompt(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214{
3215 int i;
3216
3217 if (cmd_silent)
3218 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003219 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 msg_putchar(ccline.cmdfirstc);
3221 if (ccline.cmdprompt != NULL)
3222 {
3223 msg_puts_attr(ccline.cmdprompt, ccline.cmdattr);
3224 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
3225 /* do the reverse of set_cmdspos() */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003226 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227 --ccline.cmdindent;
3228 }
3229 else
3230 for (i = ccline.cmdindent; i > 0; --i)
3231 msg_putchar(' ');
3232}
3233
3234/*
3235 * Redraw what is currently on the command line.
3236 */
3237 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003238redrawcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239{
3240 if (cmd_silent)
3241 return;
3242
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003243 /* when 'incsearch' is set there may be no command line while redrawing */
3244 if (ccline.cmdbuff == NULL)
3245 {
3246 windgoto(cmdline_row, 0);
3247 msg_clr_eos();
3248 return;
3249 }
3250
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251 msg_start();
3252 redrawcmdprompt();
3253
3254 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
3255 msg_no_more = TRUE;
3256 draw_cmdline(0, ccline.cmdlen);
3257 msg_clr_eos();
3258 msg_no_more = FALSE;
3259
3260 set_cmdspos_cursor();
3261
3262 /*
3263 * An emsg() before may have set msg_scroll. This is used in normal mode,
3264 * in cmdline mode we can reset them now.
3265 */
3266 msg_scroll = FALSE; /* next message overwrites cmdline */
3267
3268 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
3269 * in cmdline mode */
3270 skip_redraw = FALSE;
3271}
3272
3273 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003274compute_cmdrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003276 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277 cmdline_row = Rows - 1;
3278 else
3279 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
3280 + W_STATUS_HEIGHT(lastwin);
3281}
3282
3283 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003284cursorcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285{
3286 if (cmd_silent)
3287 return;
3288
3289#ifdef FEAT_RIGHTLEFT
3290 if (cmdmsg_rl)
3291 {
3292 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3293 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3294 if (msg_row <= 0)
3295 msg_row = Rows - 1;
3296 }
3297 else
3298#endif
3299 {
3300 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3301 msg_col = ccline.cmdspos % (int)Columns;
3302 if (msg_row >= Rows)
3303 msg_row = Rows - 1;
3304 }
3305
3306 windgoto(msg_row, msg_col);
3307#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
3308 redrawcmd_preedit();
3309#endif
3310#ifdef MCH_CURSOR_SHAPE
3311 mch_update_cursor();
3312#endif
3313}
3314
3315 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003316gotocmdline(int clr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317{
3318 msg_start();
3319#ifdef FEAT_RIGHTLEFT
3320 if (cmdmsg_rl)
3321 msg_col = Columns - 1;
3322 else
3323#endif
3324 msg_col = 0; /* always start in column 0 */
3325 if (clr) /* clear the bottom line(s) */
3326 msg_clr_eos(); /* will reset clear_cmdline */
3327 windgoto(cmdline_row, 0);
3328}
3329
3330/*
3331 * Check the word in front of the cursor for an abbreviation.
3332 * Called when the non-id character "c" has been entered.
3333 * When an abbreviation is recognized it is removed from the text with
3334 * backspaces and the replacement string is inserted, followed by "c".
3335 */
3336 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003337ccheck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003338{
3339 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
3340 return FALSE;
3341
3342 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, 0);
3343}
3344
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003345#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3346 static int
3347#ifdef __BORLANDC__
3348_RTLENTRYF
3349#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003350sort_func_compare(const void *s1, const void *s2)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003351{
3352 char_u *p1 = *(char_u **)s1;
3353 char_u *p2 = *(char_u **)s2;
3354
3355 if (*p1 != '<' && *p2 == '<') return -1;
3356 if (*p1 == '<' && *p2 != '<') return 1;
3357 return STRCMP(p1, p2);
3358}
3359#endif
3360
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361/*
3362 * Return FAIL if this is not an appropriate context in which to do
3363 * completion of anything, return OK if it is (even if there are no matches).
3364 * For the caller, this means that the character is just passed through like a
3365 * normal character (instead of being expanded). This allows :s/^I^D etc.
3366 */
3367 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003368nextwild(
3369 expand_T *xp,
3370 int type,
3371 int options, /* extra options for ExpandOne() */
3372 int escape) /* if TRUE, escape the returned matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373{
3374 int i, j;
3375 char_u *p1;
3376 char_u *p2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377 int difflen;
3378 int v;
3379
3380 if (xp->xp_numfiles == -1)
3381 {
3382 set_expand_context(xp);
3383 cmd_showtail = expand_showtail(xp);
3384 }
3385
3386 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
3387 {
3388 beep_flush();
3389 return OK; /* Something illegal on command line */
3390 }
3391 if (xp->xp_context == EXPAND_NOTHING)
3392 {
3393 /* Caller can use the character as a normal char instead */
3394 return FAIL;
3395 }
3396
3397 MSG_PUTS("..."); /* show that we are busy */
3398 out_flush();
3399
3400 i = (int)(xp->xp_pattern - ccline.cmdbuff);
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003401 xp->xp_pattern_len = ccline.cmdpos - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402
3403 if (type == WILD_NEXT || type == WILD_PREV)
3404 {
3405 /*
3406 * Get next/previous match for a previous expanded pattern.
3407 */
3408 p2 = ExpandOne(xp, NULL, NULL, 0, type);
3409 }
3410 else
3411 {
3412 /*
3413 * Translate string into pattern and expand it.
3414 */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003415 if ((p1 = addstar(xp->xp_pattern, xp->xp_pattern_len,
3416 xp->xp_context)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417 p2 = NULL;
3418 else
3419 {
Bram Moolenaar94950a92010-12-02 16:01:29 +01003420 int use_options = options |
Bram Moolenaarb3479632012-11-28 16:49:58 +01003421 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT;
3422 if (escape)
3423 use_options |= WILD_ESCAPE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01003424
3425 if (p_wic)
3426 use_options += WILD_ICASE;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003427 p2 = ExpandOne(xp, p1,
3428 vim_strnsave(&ccline.cmdbuff[i], xp->xp_pattern_len),
Bram Moolenaar94950a92010-12-02 16:01:29 +01003429 use_options, type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 vim_free(p1);
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003431 /* longest match: make sure it is not shorter, happens with :help */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 if (p2 != NULL && type == WILD_LONGEST)
3433 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003434 for (j = 0; j < xp->xp_pattern_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435 if (ccline.cmdbuff[i + j] == '*'
3436 || ccline.cmdbuff[i + j] == '?')
3437 break;
3438 if ((int)STRLEN(p2) < j)
3439 {
3440 vim_free(p2);
3441 p2 = NULL;
3442 }
3443 }
3444 }
3445 }
3446
3447 if (p2 != NULL && !got_int)
3448 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003449 difflen = (int)STRLEN(p2) - xp->xp_pattern_len;
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003450 if (ccline.cmdlen + difflen + 4 > ccline.cmdbufflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003452 v = realloc_cmdbuff(ccline.cmdlen + difflen + 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 xp->xp_pattern = ccline.cmdbuff + i;
3454 }
3455 else
3456 v = OK;
3457 if (v == OK)
3458 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003459 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen],
3460 &ccline.cmdbuff[ccline.cmdpos],
3461 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3462 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 ccline.cmdlen += difflen;
3464 ccline.cmdpos += difflen;
3465 }
3466 }
3467 vim_free(p2);
3468
3469 redrawcmd();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003470 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471
3472 /* When expanding a ":map" command and no matches are found, assume that
3473 * the key is supposed to be inserted literally */
3474 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL)
3475 return FAIL;
3476
3477 if (xp->xp_numfiles <= 0 && p2 == NULL)
3478 beep_flush();
3479 else if (xp->xp_numfiles == 1)
3480 /* free expanded pattern */
3481 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
3482
3483 return OK;
3484}
3485
3486/*
3487 * Do wildcard expansion on the string 'str'.
3488 * Chars that should not be expanded must be preceded with a backslash.
Bram Moolenaarf9821062008-06-20 16:31:07 +00003489 * Return a pointer to allocated memory containing the new string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490 * Return NULL for failure.
3491 *
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003492 * "orig" is the originally expanded string, copied to allocated memory. It
3493 * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or
3494 * WILD_PREV "orig" should be NULL.
3495 *
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003496 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode"
3497 * is WILD_EXPAND_FREE or WILD_ALL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 *
3499 * mode = WILD_FREE: just free previously expanded matches
3500 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches
3501 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches
3502 * mode = WILD_NEXT: use next match in multiple match, wrap to first
3503 * mode = WILD_PREV: use previous match in multiple match, wrap to first
3504 * mode = WILD_ALL: return all matches concatenated
3505 * mode = WILD_LONGEST: return longest matched part
Bram Moolenaar146e9c32012-03-07 19:18:23 +01003506 * mode = WILD_ALL_KEEP: get all matches, keep matches
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507 *
3508 * options = WILD_LIST_NOTFOUND: list entries without a match
3509 * options = WILD_HOME_REPLACE: do home_replace() for buffer names
3510 * options = WILD_USE_NL: Use '\n' for WILD_ALL
3511 * options = WILD_NO_BEEP: Don't beep for multiple matches
3512 * options = WILD_ADD_SLASH: add a slash after directory names
3513 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries
3514 * options = WILD_SILENT: don't print warning messages
3515 * options = WILD_ESCAPE: put backslash before special chars
Bram Moolenaar94950a92010-12-02 16:01:29 +01003516 * options = WILD_ICASE: ignore case for files
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517 *
3518 * The variables xp->xp_context and xp->xp_backslash must have been set!
3519 */
3520 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003521ExpandOne(
3522 expand_T *xp,
3523 char_u *str,
3524 char_u *orig, /* allocated copy of original of expanded string */
3525 int options,
3526 int mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527{
3528 char_u *ss = NULL;
3529 static int findex;
3530 static char_u *orig_save = NULL; /* kept value of orig */
Bram Moolenaar96426642007-10-30 16:37:15 +00003531 int orig_saved = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003532 int i;
3533 long_u len;
3534 int non_suf_match; /* number without matching suffix */
3535
3536 /*
3537 * first handle the case of using an old match
3538 */
3539 if (mode == WILD_NEXT || mode == WILD_PREV)
3540 {
3541 if (xp->xp_numfiles > 0)
3542 {
3543 if (mode == WILD_PREV)
3544 {
3545 if (findex == -1)
3546 findex = xp->xp_numfiles;
3547 --findex;
3548 }
3549 else /* mode == WILD_NEXT */
3550 ++findex;
3551
3552 /*
3553 * When wrapping around, return the original string, set findex to
3554 * -1.
3555 */
3556 if (findex < 0)
3557 {
3558 if (orig_save == NULL)
3559 findex = xp->xp_numfiles - 1;
3560 else
3561 findex = -1;
3562 }
3563 if (findex >= xp->xp_numfiles)
3564 {
3565 if (orig_save == NULL)
3566 findex = 0;
3567 else
3568 findex = -1;
3569 }
3570#ifdef FEAT_WILDMENU
3571 if (p_wmnu)
3572 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files,
3573 findex, cmd_showtail);
3574#endif
3575 if (findex == -1)
3576 return vim_strsave(orig_save);
3577 return vim_strsave(xp->xp_files[findex]);
3578 }
3579 else
3580 return NULL;
3581 }
3582
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003583 /* free old names */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST)
3585 {
3586 FreeWild(xp->xp_numfiles, xp->xp_files);
3587 xp->xp_numfiles = -1;
3588 vim_free(orig_save);
3589 orig_save = NULL;
3590 }
3591 findex = 0;
3592
3593 if (mode == WILD_FREE) /* only release file name */
3594 return NULL;
3595
3596 if (xp->xp_numfiles == -1)
3597 {
3598 vim_free(orig_save);
3599 orig_save = orig;
Bram Moolenaar96426642007-10-30 16:37:15 +00003600 orig_saved = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601
3602 /*
3603 * Do the expansion.
3604 */
3605 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files,
3606 options) == FAIL)
3607 {
3608#ifdef FNAME_ILLEGAL
3609 /* Illegal file name has been silently skipped. But when there
3610 * are wildcards, the real problem is that there was no match,
3611 * causing the pattern to be added, which has illegal characters.
3612 */
3613 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND))
3614 EMSG2(_(e_nomatch2), str);
3615#endif
3616 }
3617 else if (xp->xp_numfiles == 0)
3618 {
3619 if (!(options & WILD_SILENT))
3620 EMSG2(_(e_nomatch2), str);
3621 }
3622 else
3623 {
3624 /* Escape the matches for use on the command line. */
3625 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options);
3626
3627 /*
3628 * Check for matching suffixes in file names.
3629 */
Bram Moolenaar146e9c32012-03-07 19:18:23 +01003630 if (mode != WILD_ALL && mode != WILD_ALL_KEEP
3631 && mode != WILD_LONGEST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003632 {
3633 if (xp->xp_numfiles)
3634 non_suf_match = xp->xp_numfiles;
3635 else
3636 non_suf_match = 1;
3637 if ((xp->xp_context == EXPAND_FILES
3638 || xp->xp_context == EXPAND_DIRECTORIES)
3639 && xp->xp_numfiles > 1)
3640 {
3641 /*
3642 * More than one match; check suffix.
3643 * The files will have been sorted on matching suffix in
3644 * expand_wildcards, only need to check the first two.
3645 */
3646 non_suf_match = 0;
3647 for (i = 0; i < 2; ++i)
3648 if (match_suffix(xp->xp_files[i]))
3649 ++non_suf_match;
3650 }
3651 if (non_suf_match != 1)
3652 {
3653 /* Can we ever get here unless it's while expanding
3654 * interactively? If not, we can get rid of this all
3655 * together. Don't really want to wait for this message
3656 * (and possibly have to hit return to continue!).
3657 */
3658 if (!(options & WILD_SILENT))
3659 EMSG(_(e_toomany));
3660 else if (!(options & WILD_NO_BEEP))
3661 beep_flush();
3662 }
3663 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE))
3664 ss = vim_strsave(xp->xp_files[0]);
3665 }
3666 }
3667 }
3668
3669 /* Find longest common part */
3670 if (mode == WILD_LONGEST && xp->xp_numfiles > 0)
3671 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003672 int mb_len = 1;
3673 int c0, ci;
3674
3675 for (len = 0; xp->xp_files[0][len]; len += mb_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003677#ifdef FEAT_MBYTE
3678 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003680 mb_len = (*mb_ptr2len)(&xp->xp_files[0][len]);
3681 c0 =(* mb_ptr2char)(&xp->xp_files[0][len]);
3682 }
3683 else
3684#endif
Bram Moolenaare4eda3b2015-11-21 16:28:50 +01003685 c0 = xp->xp_files[0][len];
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003686 for (i = 1; i < xp->xp_numfiles; ++i)
3687 {
3688#ifdef FEAT_MBYTE
3689 if (has_mbyte)
3690 ci =(* mb_ptr2char)(&xp->xp_files[i][len]);
3691 else
3692#endif
3693 ci = xp->xp_files[i][len];
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 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003699 if (MB_TOLOWER(c0) != MB_TOLOWER(ci))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 break;
3701 }
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003702 else if (c0 != ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 break;
3704 }
3705 if (i < xp->xp_numfiles)
3706 {
3707 if (!(options & WILD_NO_BEEP))
Bram Moolenaar165bc692015-07-21 17:53:25 +02003708 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709 break;
3710 }
3711 }
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003712
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 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
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003752ExpandInit(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753{
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003754 xp->xp_pattern = NULL;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003755 xp->xp_pattern_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003757#ifndef BACKSLASH_IN_FILENAME
3758 xp->xp_shell = FALSE;
3759#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 xp->xp_numfiles = -1;
3761 xp->xp_files = NULL;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003762#if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
3763 xp->xp_arg = NULL;
3764#endif
Bram Moolenaarb7515462013-06-29 12:58:33 +02003765 xp->xp_line = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766}
3767
3768/*
3769 * Cleanup an expand structure after use.
3770 */
3771 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003772ExpandCleanup(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773{
3774 if (xp->xp_numfiles >= 0)
3775 {
3776 FreeWild(xp->xp_numfiles, xp->xp_files);
3777 xp->xp_numfiles = -1;
3778 }
3779}
3780
3781 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003782ExpandEscape(
3783 expand_T *xp,
3784 char_u *str,
3785 int numfiles,
3786 char_u **files,
3787 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003788{
3789 int i;
3790 char_u *p;
3791
3792 /*
3793 * May change home directory back to "~"
3794 */
3795 if (options & WILD_HOME_REPLACE)
3796 tilde_replace(str, numfiles, files);
3797
3798 if (options & WILD_ESCAPE)
3799 {
3800 if (xp->xp_context == EXPAND_FILES
Bram Moolenaarcca92ec2011-04-28 17:21:53 +02003801 || xp->xp_context == EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003802 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803 || xp->xp_context == EXPAND_BUFFERS
3804 || xp->xp_context == EXPAND_DIRECTORIES)
3805 {
3806 /*
3807 * Insert a backslash into a file name before a space, \, %, #
3808 * and wildmatch characters, except '~'.
3809 */
3810 for (i = 0; i < numfiles; ++i)
3811 {
3812 /* for ":set path=" we need to escape spaces twice */
3813 if (xp->xp_backslash == XP_BS_THREE)
3814 {
3815 p = vim_strsave_escaped(files[i], (char_u *)" ");
3816 if (p != NULL)
3817 {
3818 vim_free(files[i]);
3819 files[i] = p;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003820#if defined(BACKSLASH_IN_FILENAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821 p = vim_strsave_escaped(files[i], (char_u *)" ");
3822 if (p != NULL)
3823 {
3824 vim_free(files[i]);
3825 files[i] = p;
3826 }
3827#endif
3828 }
3829 }
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00003830#ifdef BACKSLASH_IN_FILENAME
3831 p = vim_strsave_fnameescape(files[i], FALSE);
3832#else
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003833 p = vim_strsave_fnameescape(files[i], xp->xp_shell);
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00003834#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 if (p != NULL)
3836 {
3837 vim_free(files[i]);
3838 files[i] = p;
3839 }
3840
3841 /* If 'str' starts with "\~", replace "~" at start of
3842 * files[i] with "\~". */
3843 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~')
Bram Moolenaar45360022005-07-21 21:08:21 +00003844 escape_fname(&files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845 }
3846 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar45360022005-07-21 21:08:21 +00003847
3848 /* If the first file starts with a '+' escape it. Otherwise it
3849 * could be seen as "+cmd". */
3850 if (*files[0] == '+')
3851 escape_fname(&files[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003852 }
3853 else if (xp->xp_context == EXPAND_TAGS)
3854 {
3855 /*
3856 * Insert a backslash before characters in a tag name that
3857 * would terminate the ":tag" command.
3858 */
3859 for (i = 0; i < numfiles; ++i)
3860 {
3861 p = vim_strsave_escaped(files[i], (char_u *)"\\|\"");
3862 if (p != NULL)
3863 {
3864 vim_free(files[i]);
3865 files[i] = p;
3866 }
3867 }
3868 }
3869 }
3870}
3871
3872/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003873 * Escape special characters in "fname" for when used as a file name argument
3874 * after a Vim command, or, when "shell" is non-zero, a shell command.
3875 * Returns the result in allocated memory.
3876 */
3877 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003878vim_strsave_fnameescape(char_u *fname, int shell)
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003879{
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003880 char_u *p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003881#ifdef BACKSLASH_IN_FILENAME
3882 char_u buf[20];
3883 int j = 0;
3884
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01003885 /* Don't escape '[', '{' and '!' if they are in 'isfname'. */
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003886 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01003887 if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p))
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003888 buf[j++] = *p;
3889 buf[j] = NUL;
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003890 p = vim_strsave_escaped(fname, buf);
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003891#else
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003892 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
3893 if (shell && csh_like_shell() && p != NULL)
3894 {
3895 char_u *s;
3896
3897 /* For csh and similar shells need to put two backslashes before '!'.
3898 * One is taken by Vim, one by the shell. */
3899 s = vim_strsave_escaped(p, (char_u *)"!");
3900 vim_free(p);
3901 p = s;
3902 }
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003903#endif
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003904
3905 /* '>' and '+' are special at the start of some commands, e.g. ":edit" and
3906 * ":write". "cd -" has a special meaning. */
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003907 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL)))
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003908 escape_fname(&p);
3909
3910 return p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003911}
3912
3913/*
Bram Moolenaar45360022005-07-21 21:08:21 +00003914 * Put a backslash before the file name in "pp", which is in allocated memory.
3915 */
3916 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003917escape_fname(char_u **pp)
Bram Moolenaar45360022005-07-21 21:08:21 +00003918{
3919 char_u *p;
3920
3921 p = alloc((unsigned)(STRLEN(*pp) + 2));
3922 if (p != NULL)
3923 {
3924 p[0] = '\\';
3925 STRCPY(p + 1, *pp);
3926 vim_free(*pp);
3927 *pp = p;
3928 }
3929}
3930
3931/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003932 * For each file name in files[num_files]:
3933 * If 'orig_pat' starts with "~/", replace the home directory with "~".
3934 */
3935 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003936tilde_replace(
3937 char_u *orig_pat,
3938 int num_files,
3939 char_u **files)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940{
3941 int i;
3942 char_u *p;
3943
3944 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
3945 {
3946 for (i = 0; i < num_files; ++i)
3947 {
3948 p = home_replace_save(NULL, files[i]);
3949 if (p != NULL)
3950 {
3951 vim_free(files[i]);
3952 files[i] = p;
3953 }
3954 }
3955 }
3956}
3957
3958/*
3959 * Show all matches for completion on the command line.
3960 * Returns EXPAND_NOTHING when the character that triggered expansion should
3961 * be inserted like a normal character.
3962 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003963 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003964showmatches(expand_T *xp, int wildmenu UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965{
3966#define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m])
3967 int num_files;
3968 char_u **files_found;
3969 int i, j, k;
3970 int maxlen;
3971 int lines;
3972 int columns;
3973 char_u *p;
3974 int lastlen;
3975 int attr;
3976 int showtail;
3977
3978 if (xp->xp_numfiles == -1)
3979 {
3980 set_expand_context(xp);
3981 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos,
3982 &num_files, &files_found);
3983 showtail = expand_showtail(xp);
3984 if (i != EXPAND_OK)
3985 return i;
3986
3987 }
3988 else
3989 {
3990 num_files = xp->xp_numfiles;
3991 files_found = xp->xp_files;
3992 showtail = cmd_showtail;
3993 }
3994
3995#ifdef FEAT_WILDMENU
3996 if (!wildmenu)
3997 {
3998#endif
3999 msg_didany = FALSE; /* lines_left will be set */
4000 msg_start(); /* prepare for paging */
4001 msg_putchar('\n');
4002 out_flush();
4003 cmdline_row = msg_row;
4004 msg_didany = FALSE; /* lines_left will be set again */
4005 msg_start(); /* prepare for paging */
4006#ifdef FEAT_WILDMENU
4007 }
4008#endif
4009
4010 if (got_int)
4011 got_int = FALSE; /* only int. the completion, not the cmd line */
4012#ifdef FEAT_WILDMENU
4013 else if (wildmenu)
4014 win_redr_status_matches(xp, num_files, files_found, 0, showtail);
4015#endif
4016 else
4017 {
4018 /* find the length of the longest file name */
4019 maxlen = 0;
4020 for (i = 0; i < num_files; ++i)
4021 {
4022 if (!showtail && (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004023 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024 || xp->xp_context == EXPAND_BUFFERS))
4025 {
4026 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE);
4027 j = vim_strsize(NameBuff);
4028 }
4029 else
4030 j = vim_strsize(L_SHOWFILE(i));
4031 if (j > maxlen)
4032 maxlen = j;
4033 }
4034
4035 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4036 lines = num_files;
4037 else
4038 {
4039 /* compute the number of columns and lines for the listing */
4040 maxlen += 2; /* two spaces between file names */
4041 columns = ((int)Columns + 2) / maxlen;
4042 if (columns < 1)
4043 columns = 1;
4044 lines = (num_files + columns - 1) / columns;
4045 }
4046
4047 attr = hl_attr(HLF_D); /* find out highlighting for directories */
4048
4049 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4050 {
4051 MSG_PUTS_ATTR(_("tagname"), hl_attr(HLF_T));
4052 msg_clr_eos();
4053 msg_advance(maxlen - 3);
4054 MSG_PUTS_ATTR(_(" kind file\n"), hl_attr(HLF_T));
4055 }
4056
4057 /* list the files line by line */
4058 for (i = 0; i < lines; ++i)
4059 {
4060 lastlen = 999;
4061 for (k = i; k < num_files; k += lines)
4062 {
4063 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4064 {
4065 msg_outtrans_attr(files_found[k], hl_attr(HLF_D));
4066 p = files_found[k] + STRLEN(files_found[k]) + 1;
4067 msg_advance(maxlen + 1);
4068 msg_puts(p);
4069 msg_advance(maxlen + 3);
4070 msg_puts_long_attr(p + 2, hl_attr(HLF_D));
4071 break;
4072 }
4073 for (j = maxlen - lastlen; --j >= 0; )
4074 msg_putchar(' ');
4075 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004076 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077 || xp->xp_context == EXPAND_BUFFERS)
4078 {
Bram Moolenaarb91e59b2010-03-17 19:13:27 +01004079 /* highlight directories */
Bram Moolenaar63fa5262010-03-23 18:06:52 +01004080 if (xp->xp_numfiles != -1)
4081 {
4082 char_u *halved_slash;
4083 char_u *exp_path;
4084
4085 /* Expansion was done before and special characters
4086 * were escaped, need to halve backslashes. Also
4087 * $HOME has been replaced with ~/. */
4088 exp_path = expand_env_save_opt(files_found[k], TRUE);
4089 halved_slash = backslash_halve_save(
4090 exp_path != NULL ? exp_path : files_found[k]);
4091 j = mch_isdir(halved_slash != NULL ? halved_slash
4092 : files_found[k]);
4093 vim_free(exp_path);
4094 vim_free(halved_slash);
4095 }
4096 else
4097 /* Expansion was done here, file names are literal. */
4098 j = mch_isdir(files_found[k]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 if (showtail)
4100 p = L_SHOWFILE(k);
4101 else
4102 {
4103 home_replace(NULL, files_found[k], NameBuff, MAXPATHL,
4104 TRUE);
4105 p = NameBuff;
4106 }
4107 }
4108 else
4109 {
4110 j = FALSE;
4111 p = L_SHOWFILE(k);
4112 }
4113 lastlen = msg_outtrans_attr(p, j ? attr : 0);
4114 }
4115 if (msg_col > 0) /* when not wrapped around */
4116 {
4117 msg_clr_eos();
4118 msg_putchar('\n');
4119 }
4120 out_flush(); /* show one line at a time */
4121 if (got_int)
4122 {
4123 got_int = FALSE;
4124 break;
4125 }
4126 }
4127
4128 /*
4129 * we redraw the command below the lines that we have just listed
4130 * This is a bit tricky, but it saves a lot of screen updating.
4131 */
4132 cmdline_row = msg_row; /* will put it back later */
4133 }
4134
4135 if (xp->xp_numfiles == -1)
4136 FreeWild(num_files, files_found);
4137
4138 return EXPAND_OK;
4139}
4140
4141/*
4142 * Private gettail for showmatches() (and win_redr_status_matches()):
4143 * Find tail of file name path, but ignore trailing "/".
4144 */
4145 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004146sm_gettail(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004147{
4148 char_u *p;
4149 char_u *t = s;
4150 int had_sep = FALSE;
4151
4152 for (p = s; *p != NUL; )
4153 {
4154 if (vim_ispathsep(*p)
4155#ifdef BACKSLASH_IN_FILENAME
4156 && !rem_backslash(p)
4157#endif
4158 )
4159 had_sep = TRUE;
4160 else if (had_sep)
4161 {
4162 t = p;
4163 had_sep = FALSE;
4164 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004165 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166 }
4167 return t;
4168}
4169
4170/*
4171 * Return TRUE if we only need to show the tail of completion matches.
4172 * When not completing file names or there is a wildcard in the path FALSE is
4173 * returned.
4174 */
4175 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004176expand_showtail(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177{
4178 char_u *s;
4179 char_u *end;
4180
4181 /* When not completing file names a "/" may mean something different. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004182 if (xp->xp_context != EXPAND_FILES
4183 && xp->xp_context != EXPAND_SHELLCMD
4184 && xp->xp_context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185 return FALSE;
4186
4187 end = gettail(xp->xp_pattern);
4188 if (end == xp->xp_pattern) /* there is no path separator */
4189 return FALSE;
4190
4191 for (s = xp->xp_pattern; s < end; s++)
4192 {
4193 /* Skip escaped wildcards. Only when the backslash is not a path
4194 * separator, on DOS the '*' "path\*\file" must not be skipped. */
4195 if (rem_backslash(s))
4196 ++s;
4197 else if (vim_strchr((char_u *)"*?[", *s) != NULL)
4198 return FALSE;
4199 }
4200 return TRUE;
4201}
4202
4203/*
4204 * Prepare a string for expansion.
4205 * When expanding file names: The string will be used with expand_wildcards().
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004206 * Copy "fname[len]" into allocated memory and add a '*' at the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207 * When expanding other names: The string will be used with regcomp(). Copy
4208 * the name into allocated memory and prepend "^".
4209 */
4210 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004211addstar(
4212 char_u *fname,
4213 int len,
4214 int context) /* EXPAND_FILES etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215{
4216 char_u *retval;
4217 int i, j;
4218 int new_len;
4219 char_u *tail;
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004220 int ends_in_star;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004222 if (context != EXPAND_FILES
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004223 && context != EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004224 && context != EXPAND_SHELLCMD
4225 && context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 {
4227 /*
4228 * Matching will be done internally (on something other than files).
4229 * So we convert the file-matching-type wildcards into our kind for
4230 * use with vim_regcomp(). First work out how long it will be:
4231 */
4232
4233 /* For help tags the translation is done in find_help_tags().
4234 * For a tag pattern starting with "/" no translation is needed. */
4235 if (context == EXPAND_HELP
4236 || context == EXPAND_COLORS
4237 || context == EXPAND_COMPILER
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004238 || context == EXPAND_OWNSYNTAX
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004239 || context == EXPAND_FILETYPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240 || (context == EXPAND_TAGS && fname[0] == '/'))
4241 retval = vim_strnsave(fname, len);
4242 else
4243 {
4244 new_len = len + 2; /* +2 for '^' at start, NUL at end */
4245 for (i = 0; i < len; i++)
4246 {
4247 if (fname[i] == '*' || fname[i] == '~')
4248 new_len++; /* '*' needs to be replaced by ".*"
4249 '~' needs to be replaced by "\~" */
4250
4251 /* Buffer names are like file names. "." should be literal */
4252 if (context == EXPAND_BUFFERS && fname[i] == '.')
4253 new_len++; /* "." becomes "\." */
4254
4255 /* Custom expansion takes care of special things, match
4256 * backslashes literally (perhaps also for other types?) */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004257 if ((context == EXPAND_USER_DEFINED
4258 || context == EXPAND_USER_LIST) && fname[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259 new_len++; /* '\' becomes "\\" */
4260 }
4261 retval = alloc(new_len);
4262 if (retval != NULL)
4263 {
4264 retval[0] = '^';
4265 j = 1;
4266 for (i = 0; i < len; i++, j++)
4267 {
4268 /* Skip backslash. But why? At least keep it for custom
4269 * expansion. */
4270 if (context != EXPAND_USER_DEFINED
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004271 && context != EXPAND_USER_LIST
4272 && fname[i] == '\\'
4273 && ++i == len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274 break;
4275
4276 switch (fname[i])
4277 {
4278 case '*': retval[j++] = '.';
4279 break;
4280 case '~': retval[j++] = '\\';
4281 break;
4282 case '?': retval[j] = '.';
4283 continue;
4284 case '.': if (context == EXPAND_BUFFERS)
4285 retval[j++] = '\\';
4286 break;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004287 case '\\': if (context == EXPAND_USER_DEFINED
4288 || context == EXPAND_USER_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 retval[j++] = '\\';
4290 break;
4291 }
4292 retval[j] = fname[i];
4293 }
4294 retval[j] = NUL;
4295 }
4296 }
4297 }
4298 else
4299 {
4300 retval = alloc(len + 4);
4301 if (retval != NULL)
4302 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004303 vim_strncpy(retval, fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304
4305 /*
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004306 * Don't add a star to *, ~, ~user, $var or `cmd`.
4307 * * would become **, which walks the whole tree.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 * ~ would be at the start of the file name, but not the tail.
4309 * $ could be anywhere in the tail.
4310 * ` could be anywhere in the file name.
Bram Moolenaar066b6222008-01-04 14:17:47 +00004311 * When the name ends in '$' don't add a star, remove the '$'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004312 */
4313 tail = gettail(retval);
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004314 ends_in_star = (len > 0 && retval[len - 1] == '*');
4315#ifndef BACKSLASH_IN_FILENAME
4316 for (i = len - 2; i >= 0; --i)
4317 {
4318 if (retval[i] != '\\')
4319 break;
4320 ends_in_star = !ends_in_star;
4321 }
4322#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323 if ((*retval != '~' || tail != retval)
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004324 && !ends_in_star
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 && vim_strchr(tail, '$') == NULL
4326 && vim_strchr(retval, '`') == NULL)
4327 retval[len++] = '*';
Bram Moolenaar066b6222008-01-04 14:17:47 +00004328 else if (len > 0 && retval[len - 1] == '$')
4329 --len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330 retval[len] = NUL;
4331 }
4332 }
4333 return retval;
4334}
4335
4336/*
4337 * Must parse the command line so far to work out what context we are in.
4338 * Completion can then be done based on that context.
4339 * This routine sets the variables:
4340 * xp->xp_pattern The start of the pattern to be expanded within
4341 * the command line (ends at the cursor).
4342 * xp->xp_context The type of thing to expand. Will be one of:
4343 *
4344 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on
4345 * the command line, like an unknown command. Caller
4346 * should beep.
4347 * EXPAND_NOTHING Unrecognised context for completion, use char like
4348 * a normal char, rather than for completion. eg
4349 * :s/^I/
4350 * EXPAND_COMMANDS Cursor is still touching the command, so complete
4351 * it.
4352 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands.
4353 * EXPAND_FILES After command with XFILE set, or after setting
4354 * with P_EXPAND set. eg :e ^I, :w>>^I
4355 * EXPAND_DIRECTORIES In some cases this is used instead of the latter
4356 * when we know only directories are of interest. eg
4357 * :set dir=^I
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004358 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 * EXPAND_SETTINGS Complete variable names. eg :set d^I
4360 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I
4361 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I
4362 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect
4363 * EXPAND_HELP Complete tags from the file 'helpfile'/tags
4364 * EXPAND_EVENTS Complete event names
4365 * EXPAND_SYNTAX Complete :syntax command arguments
4366 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names
4367 * EXPAND_AUGROUP Complete autocommand group names
4368 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I
4369 * EXPAND_MAPPINGS Complete mapping and abbreviation names,
4370 * eg :unmap a^I , :cunab x^I
4371 * EXPAND_FUNCTIONS Complete internal or user defined function names,
4372 * eg :call sub^I
4373 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I
4374 * EXPAND_EXPRESSION Complete internal or user defined function/variable
4375 * names in expressions, eg :while s^I
4376 * EXPAND_ENV_VARS Complete environment variable names
Bram Moolenaar24305862012-08-15 14:05:05 +02004377 * EXPAND_USER Complete user names
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378 */
4379 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004380set_expand_context(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004382 /* only expansion for ':', '>' and '=' command-lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004383 if (ccline.cmdfirstc != ':'
4384#ifdef FEAT_EVAL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004385 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '='
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004386 && !ccline.input_fn
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387#endif
4388 )
4389 {
4390 xp->xp_context = EXPAND_NOTHING;
4391 return;
4392 }
4393 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos);
4394}
4395
4396 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004397set_cmd_context(
4398 expand_T *xp,
4399 char_u *str, /* start of command line */
4400 int len, /* length of command line (excl. NUL) */
4401 int col) /* position of cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402{
4403 int old_char = NUL;
4404 char_u *nextcomm;
4405
4406 /*
4407 * Avoid a UMR warning from Purify, only save the character if it has been
4408 * written before.
4409 */
4410 if (col < len)
4411 old_char = str[col];
4412 str[col] = NUL;
4413 nextcomm = str;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004414
4415#ifdef FEAT_EVAL
4416 if (ccline.cmdfirstc == '=')
Bram Moolenaar4f688582007-07-24 12:34:30 +00004417 {
4418# ifdef FEAT_CMDL_COMPL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004419 /* pass CMD_SIZE because there is no real command */
4420 set_context_for_expression(xp, str, CMD_SIZE);
Bram Moolenaar4f688582007-07-24 12:34:30 +00004421# endif
4422 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004423 else if (ccline.input_fn)
4424 {
4425 xp->xp_context = ccline.xp_context;
4426 xp->xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004427# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004428 xp->xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004429# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004430 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004431 else
4432#endif
4433 while (nextcomm != NULL)
4434 nextcomm = set_one_cmd_context(xp, nextcomm);
4435
Bram Moolenaara4c8dcb2013-06-30 12:21:24 +02004436 /* Store the string here so that call_user_expand_func() can get to them
4437 * easily. */
4438 xp->xp_line = str;
4439 xp->xp_col = col;
4440
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441 str[col] = old_char;
4442}
4443
4444/*
4445 * Expand the command line "str" from context "xp".
4446 * "xp" must have been set by set_cmd_context().
4447 * xp->xp_pattern points into "str", to where the text that is to be expanded
4448 * starts.
4449 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the
4450 * cursor.
4451 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the
4452 * key that triggered expansion literally.
4453 * Returns EXPAND_OK otherwise.
4454 */
4455 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004456expand_cmdline(
4457 expand_T *xp,
4458 char_u *str, /* start of command line */
4459 int col, /* position of cursor */
4460 int *matchcount, /* return: nr of matches */
4461 char_u ***matches) /* return: array of pointers to matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462{
4463 char_u *file_str = NULL;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004464 int options = WILD_ADD_SLASH|WILD_SILENT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465
4466 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
4467 {
4468 beep_flush();
4469 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */
4470 }
4471 if (xp->xp_context == EXPAND_NOTHING)
4472 {
4473 /* Caller can use the character as a normal char instead */
4474 return EXPAND_NOTHING;
4475 }
4476
4477 /* add star to file name, or convert to regexp if not exp. files. */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004478 xp->xp_pattern_len = (int)(str + col - xp->xp_pattern);
4479 file_str = addstar(xp->xp_pattern, xp->xp_pattern_len, xp->xp_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480 if (file_str == NULL)
4481 return EXPAND_UNSUCCESSFUL;
4482
Bram Moolenaar94950a92010-12-02 16:01:29 +01004483 if (p_wic)
4484 options += WILD_ICASE;
4485
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 /* find all files that match the description */
Bram Moolenaar94950a92010-12-02 16:01:29 +01004487 if (ExpandFromContext(xp, file_str, matchcount, matches, options) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488 {
4489 *matchcount = 0;
4490 *matches = NULL;
4491 }
4492 vim_free(file_str);
4493
4494 return EXPAND_OK;
4495}
4496
4497#ifdef FEAT_MULTI_LANG
4498/*
4499 * Cleanup matches for help tags: remove "@en" if "en" is the only language.
4500 */
Bram Moolenaard25c16e2016-01-29 22:13:30 +01004501static void cleanup_help_tags(int num_file, char_u **file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502
4503 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004504cleanup_help_tags(int num_file, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505{
4506 int i, j;
4507 int len;
4508
4509 for (i = 0; i < num_file; ++i)
4510 {
4511 len = (int)STRLEN(file[i]) - 3;
4512 if (len > 0 && STRCMP(file[i] + len, "@en") == 0)
4513 {
4514 /* Sorting on priority means the same item in another language may
4515 * be anywhere. Search all items for a match up to the "@en". */
4516 for (j = 0; j < num_file; ++j)
4517 if (j != i
4518 && (int)STRLEN(file[j]) == len + 3
4519 && STRNCMP(file[i], file[j], len + 1) == 0)
4520 break;
4521 if (j == num_file)
4522 file[i][len] = NUL;
4523 }
4524 }
4525}
4526#endif
4527
4528/*
4529 * Do the expansion based on xp->xp_context and "pat".
4530 */
4531 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004532ExpandFromContext(
4533 expand_T *xp,
4534 char_u *pat,
4535 int *num_file,
4536 char_u ***file,
4537 int options) /* EW_ flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538{
4539#ifdef FEAT_CMDL_COMPL
4540 regmatch_T regmatch;
4541#endif
4542 int ret;
4543 int flags;
4544
4545 flags = EW_DIR; /* include directories */
4546 if (options & WILD_LIST_NOTFOUND)
4547 flags |= EW_NOTFOUND;
4548 if (options & WILD_ADD_SLASH)
4549 flags |= EW_ADDSLASH;
4550 if (options & WILD_KEEP_ALL)
4551 flags |= EW_KEEPALL;
4552 if (options & WILD_SILENT)
4553 flags |= EW_SILENT;
Bram Moolenaara245bc72015-03-05 19:35:25 +01004554 if (options & WILD_ALLLINKS)
4555 flags |= EW_ALLLINKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004557 if (xp->xp_context == EXPAND_FILES
4558 || xp->xp_context == EXPAND_DIRECTORIES
4559 || xp->xp_context == EXPAND_FILES_IN_PATH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 {
4561 /*
4562 * Expand file or directory names.
4563 */
4564 int free_pat = FALSE;
4565 int i;
4566
4567 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4568 * space */
4569 if (xp->xp_backslash != XP_BS_NONE)
4570 {
4571 free_pat = TRUE;
4572 pat = vim_strsave(pat);
4573 for (i = 0; pat[i]; ++i)
4574 if (pat[i] == '\\')
4575 {
4576 if (xp->xp_backslash == XP_BS_THREE
4577 && pat[i + 1] == '\\'
4578 && pat[i + 2] == '\\'
4579 && pat[i + 3] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004580 STRMOVE(pat + i, pat + i + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 if (xp->xp_backslash == XP_BS_ONE
4582 && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004583 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 }
4585 }
4586
4587 if (xp->xp_context == EXPAND_FILES)
4588 flags |= EW_FILE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004589 else if (xp->xp_context == EXPAND_FILES_IN_PATH)
4590 flags |= (EW_FILE | EW_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004591 else
4592 flags = (flags | EW_DIR) & ~EW_FILE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004593 if (options & WILD_ICASE)
4594 flags |= EW_ICASE;
4595
Bram Moolenaard7834d32009-12-02 16:14:36 +00004596 /* Expand wildcards, supporting %:h and the like. */
4597 ret = expand_wildcards_eval(&pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004598 if (free_pat)
4599 vim_free(pat);
4600 return ret;
4601 }
4602
4603 *file = (char_u **)"";
4604 *num_file = 0;
4605 if (xp->xp_context == EXPAND_HELP)
4606 {
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00004607 /* With an empty argument we would get all the help tags, which is
4608 * very slow. Get matches for "help" instead. */
4609 if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat,
4610 num_file, file, FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611 {
4612#ifdef FEAT_MULTI_LANG
4613 cleanup_help_tags(*num_file, *file);
4614#endif
4615 return OK;
4616 }
4617 return FAIL;
4618 }
4619
4620#ifndef FEAT_CMDL_COMPL
4621 return FAIL;
4622#else
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004623 if (xp->xp_context == EXPAND_SHELLCMD)
4624 return expand_shellcmd(pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625 if (xp->xp_context == EXPAND_OLD_SETTING)
4626 return ExpandOldSetting(num_file, file);
4627 if (xp->xp_context == EXPAND_BUFFERS)
4628 return ExpandBufnames(pat, num_file, file, options);
4629 if (xp->xp_context == EXPAND_TAGS
4630 || xp->xp_context == EXPAND_TAGS_LISTFILES)
4631 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file);
4632 if (xp->xp_context == EXPAND_COLORS)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004633 {
4634 char *directories[] = {"colors", NULL};
4635 return ExpandRTDir(pat, num_file, file, directories);
4636 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637 if (xp->xp_context == EXPAND_COMPILER)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004638 {
Bram Moolenaara627c962011-09-30 16:23:32 +02004639 char *directories[] = {"compiler", NULL};
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004640 return ExpandRTDir(pat, num_file, file, directories);
4641 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004642 if (xp->xp_context == EXPAND_OWNSYNTAX)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004643 {
4644 char *directories[] = {"syntax", NULL};
4645 return ExpandRTDir(pat, num_file, file, directories);
4646 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004647 if (xp->xp_context == EXPAND_FILETYPE)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004648 {
4649 char *directories[] = {"syntax", "indent", "ftplugin", NULL};
4650 return ExpandRTDir(pat, num_file, file, directories);
4651 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004652# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4653 if (xp->xp_context == EXPAND_USER_LIST)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004654 return ExpandUserList(xp, num_file, file);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004655# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656
4657 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4658 if (regmatch.regprog == NULL)
4659 return FAIL;
4660
4661 /* set ignore-case according to p_ic, p_scs and pat */
4662 regmatch.rm_ic = ignorecase(pat);
4663
4664 if (xp->xp_context == EXPAND_SETTINGS
4665 || xp->xp_context == EXPAND_BOOL_SETTINGS)
4666 ret = ExpandSettings(xp, &regmatch, num_file, file);
4667 else if (xp->xp_context == EXPAND_MAPPINGS)
4668 ret = ExpandMappings(&regmatch, num_file, file);
4669# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4670 else if (xp->xp_context == EXPAND_USER_DEFINED)
4671 ret = ExpandUserDefined(xp, &regmatch, num_file, file);
4672# endif
4673 else
4674 {
4675 static struct expgen
4676 {
4677 int context;
Bram Moolenaard99df422016-01-29 23:20:40 +01004678 char_u *((*func)(expand_T *, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 int ic;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004680 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681 } tab[] =
4682 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004683 {EXPAND_COMMANDS, get_command_name, FALSE, TRUE},
4684 {EXPAND_BEHAVE, get_behave_arg, TRUE, TRUE},
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004685#ifdef FEAT_CMDHIST
4686 {EXPAND_HISTORY, get_history_arg, TRUE, TRUE},
4687#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688#ifdef FEAT_USR_CMDS
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004689 {EXPAND_USER_COMMANDS, get_user_commands, FALSE, TRUE},
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004690 {EXPAND_USER_ADDR_TYPE, get_user_cmd_addr_type, FALSE, TRUE},
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004691 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE, TRUE},
4692 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE, TRUE},
4693 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694#endif
4695#ifdef FEAT_EVAL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004696 {EXPAND_USER_VARS, get_user_var_name, FALSE, TRUE},
4697 {EXPAND_FUNCTIONS, get_function_name, FALSE, TRUE},
4698 {EXPAND_USER_FUNC, get_user_func_name, FALSE, TRUE},
4699 {EXPAND_EXPRESSION, get_expr_name, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004700#endif
4701#ifdef FEAT_MENU
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004702 {EXPAND_MENUS, get_menu_name, FALSE, TRUE},
4703 {EXPAND_MENUNAMES, get_menu_names, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704#endif
4705#ifdef FEAT_SYN_HL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004706 {EXPAND_SYNTAX, get_syntax_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707#endif
Bram Moolenaarcd9c4622013-06-08 15:24:48 +02004708#ifdef FEAT_PROFILE
4709 {EXPAND_SYNTIME, get_syntime_arg, TRUE, TRUE},
4710#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004711 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004712#ifdef FEAT_AUTOCMD
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004713 {EXPAND_EVENTS, get_event_name, TRUE, TRUE},
4714 {EXPAND_AUGROUP, get_augroup_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715#endif
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004716#ifdef FEAT_CSCOPE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004717 {EXPAND_CSCOPE, get_cscope_name, TRUE, TRUE},
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004718#endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004719#ifdef FEAT_SIGNS
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004720 {EXPAND_SIGN, get_sign_name, TRUE, TRUE},
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004721#endif
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004722#ifdef FEAT_PROFILE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004723 {EXPAND_PROFILE, get_profile_name, TRUE, TRUE},
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004724#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
4726 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004727 {EXPAND_LANGUAGE, get_lang_arg, TRUE, FALSE},
4728 {EXPAND_LOCALES, get_locales, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004730 {EXPAND_ENV_VARS, get_env_name, TRUE, TRUE},
Bram Moolenaar24305862012-08-15 14:05:05 +02004731 {EXPAND_USER, get_users, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 };
4733 int i;
4734
4735 /*
4736 * Find a context in the table and call the ExpandGeneric() with the
4737 * right function to do the expansion.
4738 */
4739 ret = FAIL;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00004740 for (i = 0; i < (int)(sizeof(tab) / sizeof(struct expgen)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741 if (xp->xp_context == tab[i].context)
4742 {
4743 if (tab[i].ic)
4744 regmatch.rm_ic = TRUE;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004745 ret = ExpandGeneric(xp, &regmatch, num_file, file,
Bram Moolenaare79abdd2012-06-29 13:44:41 +02004746 tab[i].func, tab[i].escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004747 break;
4748 }
4749 }
4750
Bram Moolenaar473de612013-06-08 18:19:48 +02004751 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752
4753 return ret;
4754#endif /* FEAT_CMDL_COMPL */
4755}
4756
4757#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4758/*
4759 * Expand a list of names.
4760 *
4761 * Generic function for command line completion. It calls a function to
4762 * obtain strings, one by one. The strings are matched against a regexp
4763 * program. Matching strings are copied into an array, which is returned.
4764 *
4765 * Returns OK when no problems encountered, FAIL for error (out of memory).
4766 */
4767 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004768ExpandGeneric(
4769 expand_T *xp,
4770 regmatch_T *regmatch,
4771 int *num_file,
4772 char_u ***file,
4773 char_u *((*func)(expand_T *, int)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774 /* returns a string from the list */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004775 int escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776{
4777 int i;
4778 int count = 0;
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004779 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780 char_u *str;
4781
4782 /* do this loop twice:
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004783 * round == 0: count the number of matching names
4784 * round == 1: copy the matching names into allocated memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004785 */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004786 for (round = 0; round <= 1; ++round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787 {
4788 for (i = 0; ; ++i)
4789 {
4790 str = (*func)(xp, i);
4791 if (str == NULL) /* end of list */
4792 break;
4793 if (*str == NUL) /* skip empty strings */
4794 continue;
4795
4796 if (vim_regexec(regmatch, str, (colnr_T)0))
4797 {
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004798 if (round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004800 if (escaped)
4801 str = vim_strsave_escaped(str, (char_u *)" \t\\.");
4802 else
4803 str = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804 (*file)[count] = str;
4805#ifdef FEAT_MENU
4806 if (func == get_menu_names && str != NULL)
4807 {
4808 /* test for separator added by get_menu_names() */
4809 str += STRLEN(str) - 1;
4810 if (*str == '\001')
4811 *str = '.';
4812 }
4813#endif
4814 }
4815 ++count;
4816 }
4817 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004818 if (round == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819 {
4820 if (count == 0)
4821 return OK;
4822 *num_file = count;
4823 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
4824 if (*file == NULL)
4825 {
4826 *file = (char_u **)"";
4827 return FAIL;
4828 }
4829 count = 0;
4830 }
4831 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004832
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004833 /* Sort the results. Keep menu's in the specified order. */
4834 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02004835 {
4836 if (xp->xp_context == EXPAND_EXPRESSION
4837 || xp->xp_context == EXPAND_FUNCTIONS
4838 || xp->xp_context == EXPAND_USER_FUNC)
4839 /* <SNR> functions should be sorted to the end. */
4840 qsort((void *)*file, (size_t)*num_file, sizeof(char_u *),
4841 sort_func_compare);
4842 else
4843 sort_strings(*file, *num_file);
4844 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004845
Bram Moolenaar4f688582007-07-24 12:34:30 +00004846#ifdef FEAT_CMDL_COMPL
4847 /* Reset the variables used for special highlight names expansion, so that
4848 * they don't show up when getting normal highlight names by ID. */
4849 reset_expand_highlight();
4850#endif
4851
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852 return OK;
4853}
4854
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004855/*
4856 * Complete a shell command.
4857 * Returns FAIL or OK;
4858 */
4859 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004860expand_shellcmd(
4861 char_u *filepat, /* pattern to match with command names */
4862 int *num_file, /* return: number of matches */
4863 char_u ***file, /* return: array with matches */
4864 int flagsarg) /* EW_ flags */
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004865{
4866 char_u *pat;
4867 int i;
4868 char_u *path;
4869 int mustfree = FALSE;
4870 garray_T ga;
4871 char_u *buf = alloc(MAXPATHL);
4872 size_t l;
4873 char_u *s, *e;
4874 int flags = flagsarg;
4875 int ret;
Bram Moolenaarb5971142015-03-21 17:32:19 +01004876 int did_curdir = FALSE;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004877
4878 if (buf == NULL)
4879 return FAIL;
4880
4881 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4882 * space */
4883 pat = vim_strsave(filepat);
4884 for (i = 0; pat[i]; ++i)
4885 if (pat[i] == '\\' && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004886 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004887
Bram Moolenaarb5971142015-03-21 17:32:19 +01004888 flags |= EW_FILE | EW_EXEC | EW_SHELLCMD;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004889
4890 /* For an absolute name we don't use $PATH. */
Bram Moolenaar68c31742006-09-02 15:54:18 +00004891 if (mch_isFullName(pat))
4892 path = (char_u *)" ";
4893 else if ((pat[0] == '.' && (vim_ispathsep(pat[1])
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004894 || (pat[1] == '.' && vim_ispathsep(pat[2])))))
4895 path = (char_u *)".";
4896 else
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01004897 {
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004898 path = vim_getenv((char_u *)"PATH", &mustfree);
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01004899 if (path == NULL)
4900 path = (char_u *)"";
4901 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004902
4903 /*
4904 * Go over all directories in $PATH. Expand matches in that directory and
Bram Moolenaarb5971142015-03-21 17:32:19 +01004905 * collect them in "ga". When "." is not in $PATH also expand for the
4906 * current directory, to find "subdir/cmd".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004907 */
4908 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaarb5971142015-03-21 17:32:19 +01004909 for (s = path; ; s = e)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004910 {
Bram Moolenaarb5971142015-03-21 17:32:19 +01004911 if (*s == NUL)
4912 {
4913 if (did_curdir)
4914 break;
4915 /* Find directories in the current directory, path is empty. */
4916 did_curdir = TRUE;
4917 }
4918 else if (*s == '.')
4919 did_curdir = TRUE;
4920
Bram Moolenaar68c31742006-09-02 15:54:18 +00004921 if (*s == ' ')
4922 ++s; /* Skip space used for absolute path name. */
4923
Bram Moolenaare7fedb62015-12-31 19:07:19 +01004924#if defined(MSDOS) || defined(MSWIN)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004925 e = vim_strchr(s, ';');
4926#else
4927 e = vim_strchr(s, ':');
4928#endif
4929 if (e == NULL)
4930 e = s + STRLEN(s);
4931
4932 l = e - s;
4933 if (l > MAXPATHL - 5)
4934 break;
4935 vim_strncpy(buf, s, l);
4936 add_pathsep(buf);
4937 l = STRLEN(buf);
4938 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l);
4939
4940 /* Expand matches in one directory of $PATH. */
4941 ret = expand_wildcards(1, &buf, num_file, file, flags);
4942 if (ret == OK)
4943 {
4944 if (ga_grow(&ga, *num_file) == FAIL)
4945 FreeWild(*num_file, *file);
4946 else
4947 {
4948 for (i = 0; i < *num_file; ++i)
4949 {
4950 s = (*file)[i];
4951 if (STRLEN(s) > l)
4952 {
4953 /* Remove the path again. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004954 STRMOVE(s, s + l);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004955 ((char_u **)ga.ga_data)[ga.ga_len++] = s;
4956 }
4957 else
4958 vim_free(s);
4959 }
4960 vim_free(*file);
4961 }
4962 }
4963 if (*e != NUL)
4964 ++e;
4965 }
4966 *file = ga.ga_data;
4967 *num_file = ga.ga_len;
4968
4969 vim_free(buf);
4970 vim_free(pat);
4971 if (mustfree)
4972 vim_free(path);
4973 return OK;
4974}
4975
4976
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaard25c16e2016-01-29 22:13:30 +01004978static void * call_user_expand_func(void *(*user_expand_func)(char_u *, int, char_u **, int), expand_T *xp, int *num_file, char_u ***file);
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00004979
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980/*
Bram Moolenaar21669c02008-01-18 12:16:16 +00004981 * Call "user_expand_func()" to invoke a user defined VimL function and return
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004982 * the result (either a string or a List).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004984 static void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004985call_user_expand_func(
4986 void *(*user_expand_func)(char_u *, int, char_u **, int),
4987 expand_T *xp,
4988 int *num_file,
4989 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990{
Bram Moolenaar673b9a32013-06-30 22:43:27 +02004991 int keep = 0;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004992 char_u num[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004993 char_u *args[3];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 int save_current_SID = current_SID;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004995 void *ret;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004996 struct cmdline_info save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997
Bram Moolenaarb7515462013-06-29 12:58:33 +02004998 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0' || xp->xp_line == NULL)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004999 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005000 *num_file = 0;
5001 *file = NULL;
5002
Bram Moolenaarb7515462013-06-29 12:58:33 +02005003 if (ccline.cmdbuff != NULL)
Bram Moolenaar21669c02008-01-18 12:16:16 +00005004 {
Bram Moolenaar21669c02008-01-18 12:16:16 +00005005 keep = ccline.cmdbuff[ccline.cmdlen];
5006 ccline.cmdbuff[ccline.cmdlen] = 0;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005007 }
Bram Moolenaarb7515462013-06-29 12:58:33 +02005008
Bram Moolenaar67b891e2009-09-18 15:25:52 +00005009 args[0] = vim_strnsave(xp->xp_pattern, xp->xp_pattern_len);
Bram Moolenaarb7515462013-06-29 12:58:33 +02005010 args[1] = xp->xp_line;
5011 sprintf((char *)num, "%d", xp->xp_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 args[2] = num;
5013
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005014 /* Save the cmdline, we don't know what the function may do. */
5015 save_ccline = ccline;
5016 ccline.cmdbuff = NULL;
5017 ccline.cmdprompt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018 current_SID = xp->xp_scriptID;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005019
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005020 ret = user_expand_func(xp->xp_arg, 3, args, FALSE);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005021
5022 ccline = save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 current_SID = save_current_SID;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005024 if (ccline.cmdbuff != NULL)
5025 ccline.cmdbuff[ccline.cmdlen] = keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005026
Bram Moolenaar67b891e2009-09-18 15:25:52 +00005027 vim_free(args[0]);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005028 return ret;
5029}
5030
5031/*
5032 * Expand names with a function defined by the user.
5033 */
5034 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005035ExpandUserDefined(
5036 expand_T *xp,
5037 regmatch_T *regmatch,
5038 int *num_file,
5039 char_u ***file)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005040{
5041 char_u *retstr;
5042 char_u *s;
5043 char_u *e;
5044 char_u keep;
5045 garray_T ga;
5046
5047 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file);
5048 if (retstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 return FAIL;
5050
5051 ga_init2(&ga, (int)sizeof(char *), 3);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005052 for (s = retstr; *s != NUL; s = e)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 {
5054 e = vim_strchr(s, '\n');
5055 if (e == NULL)
5056 e = s + STRLEN(s);
5057 keep = *e;
5058 *e = 0;
5059
5060 if (xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0)
5061 {
5062 *e = keep;
5063 if (*e != NUL)
5064 ++e;
5065 continue;
5066 }
5067
5068 if (ga_grow(&ga, 1) == FAIL)
5069 break;
5070
5071 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s));
5072 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073
5074 *e = keep;
5075 if (*e != NUL)
5076 ++e;
5077 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005078 vim_free(retstr);
5079 *file = ga.ga_data;
5080 *num_file = ga.ga_len;
5081 return OK;
5082}
5083
5084/*
5085 * Expand names with a list returned by a function defined by the user.
5086 */
5087 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005088ExpandUserList(
5089 expand_T *xp,
5090 int *num_file,
5091 char_u ***file)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005092{
5093 list_T *retlist;
5094 listitem_T *li;
5095 garray_T ga;
5096
5097 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file);
5098 if (retlist == NULL)
5099 return FAIL;
5100
5101 ga_init2(&ga, (int)sizeof(char *), 3);
5102 /* Loop over the items in the list. */
5103 for (li = retlist->lv_first; li != NULL; li = li->li_next)
5104 {
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005105 if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL)
5106 continue; /* Skip non-string items and empty strings */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005107
5108 if (ga_grow(&ga, 1) == FAIL)
5109 break;
5110
5111 ((char_u **)ga.ga_data)[ga.ga_len] =
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005112 vim_strsave(li->li_tv.vval.v_string);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005113 ++ga.ga_len;
5114 }
5115 list_unref(retlist);
5116
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117 *file = ga.ga_data;
5118 *num_file = ga.ga_len;
5119 return OK;
5120}
5121#endif
5122
5123/*
Bram Moolenaar883f5d02010-06-21 06:24:34 +02005124 * Expand color scheme, compiler or filetype names:
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005125 * 'runtimepath'/{dirnames}/{pat}.vim
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005126 * "dirnames" is an array with one or more directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 */
5128 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005129ExpandRTDir(
5130 char_u *pat,
5131 int *num_file,
5132 char_u ***file,
5133 char *dirnames[])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 char_u *s;
5136 char_u *e;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005137 char_u *match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138 garray_T ga;
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005139 int i;
5140 int pat_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141
5142 *num_file = 0;
5143 *file = NULL;
Bram Moolenaar5cfe2d72011-07-07 15:04:52 +02005144 pat_len = (int)STRLEN(pat);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005145 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005147 for (i = 0; dirnames[i] != NULL; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148 {
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005149 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 7));
5150 if (s == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151 {
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005152 ga_clear_strings(&ga);
5153 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154 }
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005155 sprintf((char *)s, "%s/%s*.vim", dirnames[i], pat);
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005156 globpath(p_rtp, s, &ga, 0);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005157 vim_free(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005158 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005159
5160 for (i = 0; i < ga.ga_len; ++i)
5161 {
5162 match = ((char_u **)ga.ga_data)[i];
5163 s = match;
5164 e = s + STRLEN(s);
5165 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0)
5166 {
5167 e -= 4;
5168 for (s = e; s > match; mb_ptr_back(match, s))
5169 if (s < match || vim_ispathsep(*s))
5170 break;
5171 ++s;
5172 *e = NUL;
5173 mch_memmove(match, s, e - s + 1);
5174 }
5175 }
5176
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005177 if (ga.ga_len == 0)
Bram Moolenaare79abdd2012-06-29 13:44:41 +02005178 return FAIL;
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005179
5180 /* Sort and remove duplicates which can happen when specifying multiple
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005181 * directories in dirnames. */
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005182 remove_duplicates(&ga);
5183
Bram Moolenaar071d4272004-06-13 20:20:40 +00005184 *file = ga.ga_data;
5185 *num_file = ga.ga_len;
5186 return OK;
5187}
5188
5189#endif
5190
5191#if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO)
5192/*
5193 * Expand "file" for all comma-separated directories in "path".
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005194 * Adds the matches to "ga". Caller must init "ga".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195 */
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005196 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005197globpath(
5198 char_u *path,
5199 char_u *file,
5200 garray_T *ga,
5201 int expand_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005202{
5203 expand_T xpc;
5204 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206 int num_p;
5207 char_u **p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208
5209 buf = alloc(MAXPATHL);
5210 if (buf == NULL)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005211 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005212
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005213 ExpandInit(&xpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005214 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005215
Bram Moolenaar071d4272004-06-13 20:20:40 +00005216 /* Loop over all entries in {path}. */
5217 while (*path != NUL)
5218 {
5219 /* Copy one item of the path to buf[] and concatenate the file name. */
5220 copy_option_part(&path, buf, MAXPATHL, ",");
5221 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
5222 {
Bram Moolenaar2d7c47d2010-08-10 19:50:26 +02005223# if defined(MSWIN) || defined(MSDOS)
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005224 /* Using the platform's path separator (\) makes vim incorrectly
5225 * treat it as an escape character, use '/' instead. */
5226 if (*buf != NUL && !after_pathsep(buf, buf + STRLEN(buf)))
5227 STRCAT(buf, "/");
5228# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229 add_pathsep(buf);
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005230# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005231 STRCAT(buf, file);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005232 if (ExpandFromContext(&xpc, buf, &num_p, &p,
5233 WILD_SILENT|expand_options) != FAIL && num_p > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005235 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT|expand_options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005237 if (ga_grow(ga, num_p) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005239 for (i = 0; i < num_p; ++i)
5240 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005241 ((char_u **)ga->ga_data)[ga->ga_len] =
Bram Moolenaar7116aa02014-05-29 14:36:29 +02005242 vim_strnsave(p[i], (int)STRLEN(p[i]));
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005243 ++ga->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005246
Bram Moolenaar071d4272004-06-13 20:20:40 +00005247 FreeWild(num_p, p);
5248 }
5249 }
5250 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251
5252 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253}
5254
5255#endif
5256
5257#if defined(FEAT_CMDHIST) || defined(PROTO)
5258
5259/*********************************
5260 * Command line history stuff *
5261 *********************************/
5262
5263/*
5264 * Translate a history character to the associated type number.
5265 */
5266 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005267hist_char2type(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268{
5269 if (c == ':')
5270 return HIST_CMD;
5271 if (c == '=')
5272 return HIST_EXPR;
5273 if (c == '@')
5274 return HIST_INPUT;
5275 if (c == '>')
5276 return HIST_DEBUG;
5277 return HIST_SEARCH; /* must be '?' or '/' */
5278}
5279
5280/*
5281 * Table of history names.
5282 * These names are used in :history and various hist...() functions.
5283 * It is sufficient to give the significant prefix of a history name.
5284 */
5285
5286static char *(history_names[]) =
5287{
5288 "cmd",
5289 "search",
5290 "expr",
5291 "input",
5292 "debug",
5293 NULL
5294};
5295
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005296#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5297/*
5298 * Function given to ExpandGeneric() to obtain the possible first
5299 * arguments of the ":history command.
5300 */
5301 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005302get_history_arg(expand_T *xp UNUSED, int idx)
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005303{
5304 static char_u compl[2] = { NUL, NUL };
5305 char *short_names = ":=@>?/";
Bram Moolenaar17bd9dc2012-05-25 11:02:41 +02005306 int short_names_count = (int)STRLEN(short_names);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005307 int history_name_count = sizeof(history_names) / sizeof(char *) - 1;
5308
5309 if (idx < short_names_count)
5310 {
5311 compl[0] = (char_u)short_names[idx];
5312 return compl;
5313 }
5314 if (idx < short_names_count + history_name_count)
5315 return (char_u *)history_names[idx - short_names_count];
5316 if (idx == short_names_count + history_name_count)
5317 return (char_u *)"all";
5318 return NULL;
5319}
5320#endif
5321
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322/*
5323 * init_history() - Initialize the command line history.
5324 * Also used to re-allocate the history when the size changes.
5325 */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00005326 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005327init_history(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005328{
5329 int newlen; /* new length of history table */
5330 histentry_T *temp;
5331 int i;
5332 int j;
5333 int type;
5334
5335 /*
5336 * If size of history table changed, reallocate it
5337 */
5338 newlen = (int)p_hi;
5339 if (newlen != hislen) /* history length changed */
5340 {
5341 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */
5342 {
5343 if (newlen)
5344 {
5345 temp = (histentry_T *)lalloc(
5346 (long_u)(newlen * sizeof(histentry_T)), TRUE);
5347 if (temp == NULL) /* out of memory! */
5348 {
5349 if (type == 0) /* first one: just keep the old length */
5350 {
5351 newlen = hislen;
5352 break;
5353 }
5354 /* Already changed one table, now we can only have zero
5355 * length for all tables. */
5356 newlen = 0;
5357 type = -1;
5358 continue;
5359 }
5360 }
5361 else
5362 temp = NULL;
5363 if (newlen == 0 || temp != NULL)
5364 {
5365 if (hisidx[type] < 0) /* there are no entries yet */
5366 {
5367 for (i = 0; i < newlen; ++i)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005368 clear_hist_entry(&temp[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005369 }
5370 else if (newlen > hislen) /* array becomes bigger */
5371 {
5372 for (i = 0; i <= hisidx[type]; ++i)
5373 temp[i] = history[type][i];
5374 j = i;
5375 for ( ; i <= newlen - (hislen - hisidx[type]); ++i)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005376 clear_hist_entry(&temp[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005377 for ( ; j < hislen; ++i, ++j)
5378 temp[i] = history[type][j];
5379 }
5380 else /* array becomes smaller or 0 */
5381 {
5382 j = hisidx[type];
5383 for (i = newlen - 1; ; --i)
5384 {
5385 if (i >= 0) /* copy newest entries */
5386 temp[i] = history[type][j];
5387 else /* remove older entries */
5388 vim_free(history[type][j].hisstr);
5389 if (--j < 0)
5390 j = hislen - 1;
5391 if (j == hisidx[type])
5392 break;
5393 }
5394 hisidx[type] = newlen - 1;
5395 }
5396 vim_free(history[type]);
5397 history[type] = temp;
5398 }
5399 }
5400 hislen = newlen;
5401 }
5402}
5403
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005404 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005405clear_hist_entry(histentry_T *hisptr)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005406{
5407 hisptr->hisnum = 0;
5408 hisptr->viminfo = FALSE;
5409 hisptr->hisstr = NULL;
5410}
5411
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412/*
5413 * Check if command line 'str' is already in history.
5414 * If 'move_to_front' is TRUE, matching entry is moved to end of history.
5415 */
5416 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005417in_history(
5418 int type,
5419 char_u *str,
5420 int move_to_front, /* Move the entry to the front if it exists */
5421 int sep,
5422 int writing) /* ignore entries read from viminfo */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423{
5424 int i;
5425 int last_i = -1;
Bram Moolenaar4c402232011-07-27 17:58:46 +02005426 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427
5428 if (hisidx[type] < 0)
5429 return FALSE;
5430 i = hisidx[type];
5431 do
5432 {
5433 if (history[type][i].hisstr == NULL)
5434 return FALSE;
Bram Moolenaar4c402232011-07-27 17:58:46 +02005435
5436 /* For search history, check that the separator character matches as
5437 * well. */
5438 p = history[type][i].hisstr;
5439 if (STRCMP(str, p) == 0
Bram Moolenaar07219f92013-04-14 23:19:36 +02005440 && !(writing && history[type][i].viminfo)
Bram Moolenaar4c402232011-07-27 17:58:46 +02005441 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442 {
5443 if (!move_to_front)
5444 return TRUE;
5445 last_i = i;
5446 break;
5447 }
5448 if (--i < 0)
5449 i = hislen - 1;
5450 } while (i != hisidx[type]);
5451
5452 if (last_i >= 0)
5453 {
5454 str = history[type][i].hisstr;
5455 while (i != hisidx[type])
5456 {
5457 if (++i >= hislen)
5458 i = 0;
5459 history[type][last_i] = history[type][i];
5460 last_i = i;
5461 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462 history[type][i].hisnum = ++hisnum[type];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005463 history[type][i].viminfo = FALSE;
5464 history[type][i].hisstr = str;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005465 return TRUE;
5466 }
5467 return FALSE;
5468}
5469
5470/*
5471 * Convert history name (from table above) to its HIST_ equivalent.
5472 * When "name" is empty, return "cmd" history.
5473 * Returns -1 for unknown history name.
5474 */
5475 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005476get_histtype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005477{
5478 int i;
5479 int len = (int)STRLEN(name);
5480
5481 /* No argument: use current history. */
5482 if (len == 0)
5483 return hist_char2type(ccline.cmdfirstc);
5484
5485 for (i = 0; history_names[i] != NULL; ++i)
5486 if (STRNICMP(name, history_names[i], len) == 0)
5487 return i;
5488
5489 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL)
5490 return hist_char2type(name[0]);
5491
5492 return -1;
5493}
5494
5495static int last_maptick = -1; /* last seen maptick */
5496
5497/*
5498 * Add the given string to the given history. If the string is already in the
5499 * history then it is moved to the front. "histype" may be one of he HIST_
5500 * values.
5501 */
5502 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005503add_to_history(
5504 int histype,
5505 char_u *new_entry,
5506 int in_map, /* consider maptick when inside a mapping */
5507 int sep) /* separator character used (search hist) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508{
5509 histentry_T *hisptr;
5510 int len;
5511
5512 if (hislen == 0) /* no history */
5513 return;
5514
Bram Moolenaara939e432013-11-09 05:30:26 +01005515 if (cmdmod.keeppatterns && histype == HIST_SEARCH)
5516 return;
5517
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518 /*
5519 * Searches inside the same mapping overwrite each other, so that only
5520 * the last line is kept. Be careful not to remove a line that was moved
5521 * down, only lines that were added.
5522 */
5523 if (histype == HIST_SEARCH && in_map)
5524 {
5525 if (maptick == last_maptick)
5526 {
5527 /* Current line is from the same mapping, remove it */
5528 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];
5529 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005530 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531 --hisnum[histype];
5532 if (--hisidx[HIST_SEARCH] < 0)
5533 hisidx[HIST_SEARCH] = hislen - 1;
5534 }
5535 last_maptick = -1;
5536 }
Bram Moolenaar07219f92013-04-14 23:19:36 +02005537 if (!in_history(histype, new_entry, TRUE, sep, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538 {
5539 if (++hisidx[histype] == hislen)
5540 hisidx[histype] = 0;
5541 hisptr = &history[histype][hisidx[histype]];
5542 vim_free(hisptr->hisstr);
5543
5544 /* Store the separator after the NUL of the string. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005545 len = (int)STRLEN(new_entry);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 hisptr->hisstr = vim_strnsave(new_entry, len + 2);
5547 if (hisptr->hisstr != NULL)
5548 hisptr->hisstr[len + 1] = sep;
5549
5550 hisptr->hisnum = ++hisnum[histype];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005551 hisptr->viminfo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005552 if (histype == HIST_SEARCH && in_map)
5553 last_maptick = maptick;
5554 }
5555}
5556
5557#if defined(FEAT_EVAL) || defined(PROTO)
5558
5559/*
5560 * Get identifier of newest history entry.
5561 * "histype" may be one of the HIST_ values.
5562 */
5563 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005564get_history_idx(int histype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565{
5566 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5567 || hisidx[histype] < 0)
5568 return -1;
5569
5570 return history[histype][hisidx[histype]].hisnum;
5571}
5572
Bram Moolenaard25c16e2016-01-29 22:13:30 +01005573static struct cmdline_info *get_ccline_ptr(void);
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005574
5575/*
5576 * Get pointer to the command line info to use. cmdline_paste() may clear
5577 * ccline and put the previous value in prev_ccline.
5578 */
5579 static struct cmdline_info *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005580get_ccline_ptr(void)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005581{
5582 if ((State & CMDLINE) == 0)
5583 return NULL;
5584 if (ccline.cmdbuff != NULL)
5585 return &ccline;
5586 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
5587 return &prev_ccline;
5588 return NULL;
5589}
5590
Bram Moolenaar071d4272004-06-13 20:20:40 +00005591/*
5592 * Get the current command line in allocated memory.
5593 * Only works when the command line is being edited.
5594 * Returns NULL when something is wrong.
5595 */
5596 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005597get_cmdline_str(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005599 struct cmdline_info *p = get_ccline_ptr();
5600
5601 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602 return NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005603 return vim_strnsave(p->cmdbuff, p->cmdlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005604}
5605
5606/*
5607 * Get the current command line position, counted in bytes.
5608 * Zero is the first position.
5609 * Only works when the command line is being edited.
5610 * Returns -1 when something is wrong.
5611 */
5612 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005613get_cmdline_pos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005615 struct cmdline_info *p = get_ccline_ptr();
5616
5617 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005618 return -1;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005619 return p->cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620}
5621
5622/*
5623 * Set the command line byte position to "pos". Zero is the first position.
5624 * Only works when the command line is being edited.
5625 * Returns 1 when failed, 0 when OK.
5626 */
5627 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005628set_cmdline_pos(
5629 int pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630{
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00005631 struct cmdline_info *p = get_ccline_ptr();
5632
5633 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005634 return 1;
5635
5636 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
5637 * changed the command line. */
5638 if (pos < 0)
5639 new_cmdpos = 0;
5640 else
5641 new_cmdpos = pos;
5642 return 0;
5643}
5644
5645/*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005646 * Get the current command-line type.
Bram Moolenaar1e015462005-09-25 22:16:38 +00005647 * Returns ':' or '/' or '?' or '@' or '>' or '-'
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005648 * Only works when the command line is being edited.
5649 * Returns NUL when something is wrong.
5650 */
5651 int
5652get_cmdline_type()
5653{
5654 struct cmdline_info *p = get_ccline_ptr();
5655
5656 if (p == NULL)
5657 return NUL;
Bram Moolenaar1e015462005-09-25 22:16:38 +00005658 if (p->cmdfirstc == NUL)
5659 return (p->input_fn) ? '@' : '-';
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005660 return p->cmdfirstc;
5661}
5662
5663/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005664 * Calculate history index from a number:
5665 * num > 0: seen as identifying number of a history entry
5666 * num < 0: relative position in history wrt newest entry
5667 * "histype" may be one of the HIST_ values.
5668 */
5669 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005670calc_hist_idx(int histype, int num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005671{
5672 int i;
5673 histentry_T *hist;
5674 int wrapped = FALSE;
5675
5676 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5677 || (i = hisidx[histype]) < 0 || num == 0)
5678 return -1;
5679
5680 hist = history[histype];
5681 if (num > 0)
5682 {
5683 while (hist[i].hisnum > num)
5684 if (--i < 0)
5685 {
5686 if (wrapped)
5687 break;
5688 i += hislen;
5689 wrapped = TRUE;
5690 }
5691 if (hist[i].hisnum == num && hist[i].hisstr != NULL)
5692 return i;
5693 }
5694 else if (-num <= hislen)
5695 {
5696 i += num + 1;
5697 if (i < 0)
5698 i += hislen;
5699 if (hist[i].hisstr != NULL)
5700 return i;
5701 }
5702 return -1;
5703}
5704
5705/*
5706 * Get a history entry by its index.
5707 * "histype" may be one of the HIST_ values.
5708 */
5709 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005710get_history_entry(int histype, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005711{
5712 idx = calc_hist_idx(histype, idx);
5713 if (idx >= 0)
5714 return history[histype][idx].hisstr;
5715 else
5716 return (char_u *)"";
5717}
5718
5719/*
5720 * Clear all entries of a history.
5721 * "histype" may be one of the HIST_ values.
5722 */
5723 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005724clr_history(int histype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005725{
5726 int i;
5727 histentry_T *hisptr;
5728
5729 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT)
5730 {
5731 hisptr = history[histype];
5732 for (i = hislen; i--;)
5733 {
5734 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005735 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736 }
5737 hisidx[histype] = -1; /* mark history as cleared */
5738 hisnum[histype] = 0; /* reset identifier counter */
5739 return OK;
5740 }
5741 return FAIL;
5742}
5743
5744/*
5745 * Remove all entries matching {str} from a history.
5746 * "histype" may be one of the HIST_ values.
5747 */
5748 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005749del_history_entry(int histype, char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750{
5751 regmatch_T regmatch;
5752 histentry_T *hisptr;
5753 int idx;
5754 int i;
5755 int last;
5756 int found = FALSE;
5757
5758 regmatch.regprog = NULL;
5759 regmatch.rm_ic = FALSE; /* always match case */
5760 if (hislen != 0
5761 && histype >= 0
5762 && histype < HIST_COUNT
5763 && *str != NUL
5764 && (idx = hisidx[histype]) >= 0
5765 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING))
5766 != NULL)
5767 {
5768 i = last = idx;
5769 do
5770 {
5771 hisptr = &history[histype][i];
5772 if (hisptr->hisstr == NULL)
5773 break;
5774 if (vim_regexec(&regmatch, hisptr->hisstr, (colnr_T)0))
5775 {
5776 found = TRUE;
5777 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005778 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005779 }
5780 else
5781 {
5782 if (i != last)
5783 {
5784 history[histype][last] = *hisptr;
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005785 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786 }
5787 if (--last < 0)
5788 last += hislen;
5789 }
5790 if (--i < 0)
5791 i += hislen;
5792 } while (i != idx);
5793 if (history[histype][idx].hisstr == NULL)
5794 hisidx[histype] = -1;
5795 }
Bram Moolenaar473de612013-06-08 18:19:48 +02005796 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005797 return found;
5798}
5799
5800/*
5801 * Remove an indexed entry from a history.
5802 * "histype" may be one of the HIST_ values.
5803 */
5804 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005805del_history_idx(int histype, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806{
5807 int i, j;
5808
5809 i = calc_hist_idx(histype, idx);
5810 if (i < 0)
5811 return FALSE;
5812 idx = hisidx[histype];
5813 vim_free(history[histype][i].hisstr);
5814
5815 /* When deleting the last added search string in a mapping, reset
5816 * last_maptick, so that the last added search string isn't deleted again.
5817 */
5818 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx)
5819 last_maptick = -1;
5820
5821 while (i != idx)
5822 {
5823 j = (i + 1) % hislen;
5824 history[histype][i] = history[histype][j];
5825 i = j;
5826 }
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005827 clear_hist_entry(&history[histype][i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005828 if (--i < 0)
5829 i += hislen;
5830 hisidx[histype] = i;
5831 return TRUE;
5832}
5833
5834#endif /* FEAT_EVAL */
5835
5836#if defined(FEAT_CRYPT) || defined(PROTO)
5837/*
5838 * Very specific function to remove the value in ":set key=val" from the
5839 * history.
5840 */
5841 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005842remove_key_from_history(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005843{
5844 char_u *p;
5845 int i;
5846
5847 i = hisidx[HIST_CMD];
5848 if (i < 0)
5849 return;
5850 p = history[HIST_CMD][i].hisstr;
5851 if (p != NULL)
5852 for ( ; *p; ++p)
5853 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3]))
5854 {
5855 p = vim_strchr(p + 3, '=');
5856 if (p == NULL)
5857 break;
5858 ++p;
5859 for (i = 0; p[i] && !vim_iswhite(p[i]); ++i)
5860 if (p[i] == '\\' && p[i + 1])
5861 ++i;
Bram Moolenaar446cb832008-06-24 21:56:24 +00005862 STRMOVE(p, p + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005863 --p;
5864 }
5865}
5866#endif
5867
5868#endif /* FEAT_CMDHIST */
5869
5870#if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO)
5871/*
5872 * Get indices "num1,num2" that specify a range within a list (not a range of
5873 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
5874 * Returns OK if parsed successfully, otherwise FAIL.
5875 */
5876 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005877get_list_range(char_u **str, int *num1, int *num2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878{
5879 int len;
5880 int first = FALSE;
5881 long num;
5882
5883 *str = skipwhite(*str);
5884 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
5885 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005886 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005887 *str += len;
5888 *num1 = (int)num;
5889 first = TRUE;
5890 }
5891 *str = skipwhite(*str);
5892 if (**str == ',') /* parse "to" part of range */
5893 {
5894 *str = skipwhite(*str + 1);
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005895 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896 if (len > 0)
5897 {
5898 *num2 = (int)num;
5899 *str = skipwhite(*str + len);
5900 }
5901 else if (!first) /* no number given at all */
5902 return FAIL;
5903 }
5904 else if (first) /* only one number given */
5905 *num2 = *num1;
5906 return OK;
5907}
5908#endif
5909
5910#if defined(FEAT_CMDHIST) || defined(PROTO)
5911/*
5912 * :history command - print a history
5913 */
5914 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005915ex_history(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916{
5917 histentry_T *hist;
5918 int histype1 = HIST_CMD;
5919 int histype2 = HIST_CMD;
5920 int hisidx1 = 1;
5921 int hisidx2 = -1;
5922 int idx;
5923 int i, j, k;
5924 char_u *end;
5925 char_u *arg = eap->arg;
5926
5927 if (hislen == 0)
5928 {
5929 MSG(_("'history' option is zero"));
5930 return;
5931 }
5932
5933 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ','))
5934 {
5935 end = arg;
5936 while (ASCII_ISALPHA(*end)
5937 || vim_strchr((char_u *)":=@>/?", *end) != NULL)
5938 end++;
5939 i = *end;
5940 *end = NUL;
5941 histype1 = get_histtype(arg);
5942 if (histype1 == -1)
5943 {
Bram Moolenaarb9c1e962009-04-22 11:52:33 +00005944 if (STRNICMP(arg, "all", STRLEN(arg)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945 {
5946 histype1 = 0;
5947 histype2 = HIST_COUNT-1;
5948 }
5949 else
5950 {
5951 *end = i;
5952 EMSG(_(e_trailing));
5953 return;
5954 }
5955 }
5956 else
5957 histype2 = histype1;
5958 *end = i;
5959 }
5960 else
5961 end = arg;
5962 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL)
5963 {
5964 EMSG(_(e_trailing));
5965 return;
5966 }
5967
5968 for (; !got_int && histype1 <= histype2; ++histype1)
5969 {
5970 STRCPY(IObuff, "\n # ");
5971 STRCAT(STRCAT(IObuff, history_names[histype1]), " history");
5972 MSG_PUTS_TITLE(IObuff);
5973 idx = hisidx[histype1];
5974 hist = history[histype1];
5975 j = hisidx1;
5976 k = hisidx2;
5977 if (j < 0)
5978 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum;
5979 if (k < 0)
5980 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum;
5981 if (idx >= 0 && j <= k)
5982 for (i = idx + 1; !got_int; ++i)
5983 {
5984 if (i == hislen)
5985 i = 0;
5986 if (hist[i].hisstr != NULL
5987 && hist[i].hisnum >= j && hist[i].hisnum <= k)
5988 {
5989 msg_putchar('\n');
5990 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ',
5991 hist[i].hisnum);
5992 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10)
5993 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff),
Bram Moolenaar38f5f952012-01-26 13:01:59 +01005994 (int)Columns - 10, IOSIZE - (int)STRLEN(IObuff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005995 else
5996 STRCAT(IObuff, hist[i].hisstr);
5997 msg_outtrans(IObuff);
5998 out_flush();
5999 }
6000 if (i == idx)
6001 break;
6002 }
6003 }
6004}
6005#endif
6006
6007#if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006008/*
6009 * Buffers for history read from a viminfo file. Only valid while reading.
6010 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006011static char_u **viminfo_history[HIST_COUNT] = {NULL, NULL, NULL, NULL};
6012static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0};
6013static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0};
6014static int viminfo_add_at_front = FALSE;
6015
Bram Moolenaard25c16e2016-01-29 22:13:30 +01006016static int hist_type2char(int type, int use_question);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006017
6018/*
6019 * Translate a history type number to the associated character.
6020 */
6021 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006022hist_type2char(
6023 int type,
6024 int use_question) /* use '?' instead of '/' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006025{
6026 if (type == HIST_CMD)
6027 return ':';
6028 if (type == HIST_SEARCH)
6029 {
6030 if (use_question)
6031 return '?';
6032 else
6033 return '/';
6034 }
6035 if (type == HIST_EXPR)
6036 return '=';
6037 return '@';
6038}
6039
6040/*
6041 * Prepare for reading the history from the viminfo file.
6042 * This allocates history arrays to store the read history lines.
6043 */
6044 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006045prepare_viminfo_history(int asklen, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006046{
6047 int i;
6048 int num;
6049 int type;
6050 int len;
6051
6052 init_history();
Bram Moolenaar07219f92013-04-14 23:19:36 +02006053 viminfo_add_at_front = (asklen != 0 && !writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006054 if (asklen > hislen)
6055 asklen = hislen;
6056
6057 for (type = 0; type < HIST_COUNT; ++type)
6058 {
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006059 /* Count the number of empty spaces in the history list. Entries read
6060 * from viminfo previously are also considered empty. If there are
6061 * more spaces available than we request, then fill them up. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062 for (i = 0, num = 0; i < hislen; i++)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006063 if (history[type][i].hisstr == NULL || history[type][i].viminfo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006064 num++;
6065 len = asklen;
6066 if (num > len)
6067 len = num;
6068 if (len <= 0)
6069 viminfo_history[type] = NULL;
6070 else
6071 viminfo_history[type] =
6072 (char_u **)lalloc((long_u)(len * sizeof(char_u *)), FALSE);
6073 if (viminfo_history[type] == NULL)
6074 len = 0;
6075 viminfo_hislen[type] = len;
6076 viminfo_hisidx[type] = 0;
6077 }
6078}
6079
6080/*
6081 * Accept a line from the viminfo, store it in the history array when it's
6082 * new.
6083 */
6084 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006085read_viminfo_history(vir_T *virp, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006086{
6087 int type;
6088 long_u len;
6089 char_u *val;
6090 char_u *p;
6091
6092 type = hist_char2type(virp->vir_line[0]);
6093 if (viminfo_hisidx[type] < viminfo_hislen[type])
6094 {
6095 val = viminfo_readstring(virp, 1, TRUE);
6096 if (val != NULL && *val != NUL)
6097 {
Bram Moolenaard87fbc22012-02-04 22:44:32 +01006098 int sep = (*val == ' ' ? NUL : *val);
6099
Bram Moolenaar071d4272004-06-13 20:20:40 +00006100 if (!in_history(type, val + (type == HIST_SEARCH),
Bram Moolenaar07219f92013-04-14 23:19:36 +02006101 viminfo_add_at_front, sep, writing))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006102 {
6103 /* Need to re-allocate to append the separator byte. */
6104 len = STRLEN(val);
6105 p = lalloc(len + 2, TRUE);
6106 if (p != NULL)
6107 {
6108 if (type == HIST_SEARCH)
6109 {
6110 /* Search entry: Move the separator from the first
6111 * column to after the NUL. */
6112 mch_memmove(p, val + 1, (size_t)len);
Bram Moolenaard87fbc22012-02-04 22:44:32 +01006113 p[len] = sep;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006114 }
6115 else
6116 {
6117 /* Not a search entry: No separator in the viminfo
6118 * file, add a NUL separator. */
6119 mch_memmove(p, val, (size_t)len + 1);
6120 p[len + 1] = NUL;
6121 }
6122 viminfo_history[type][viminfo_hisidx[type]++] = p;
6123 }
6124 }
6125 }
6126 vim_free(val);
6127 }
6128 return viminfo_readline(virp);
6129}
6130
Bram Moolenaar07219f92013-04-14 23:19:36 +02006131/*
6132 * Finish reading history lines from viminfo. Not used when writing viminfo.
6133 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006134 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006135finish_viminfo_history(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006136{
6137 int idx;
6138 int i;
6139 int type;
6140
6141 for (type = 0; type < HIST_COUNT; ++type)
6142 {
6143 if (history[type] == NULL)
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006144 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006145 idx = hisidx[type] + viminfo_hisidx[type];
6146 if (idx >= hislen)
6147 idx -= hislen;
6148 else if (idx < 0)
6149 idx = hislen - 1;
6150 if (viminfo_add_at_front)
6151 hisidx[type] = idx;
6152 else
6153 {
6154 if (hisidx[type] == -1)
6155 hisidx[type] = hislen - 1;
6156 do
6157 {
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006158 if (history[type][idx].hisstr != NULL
6159 || history[type][idx].viminfo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006160 break;
6161 if (++idx == hislen)
6162 idx = 0;
6163 } while (idx != hisidx[type]);
6164 if (idx != hisidx[type] && --idx < 0)
6165 idx = hislen - 1;
6166 }
6167 for (i = 0; i < viminfo_hisidx[type]; i++)
6168 {
6169 vim_free(history[type][idx].hisstr);
6170 history[type][idx].hisstr = viminfo_history[type][i];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006171 history[type][idx].viminfo = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006172 if (--idx < 0)
6173 idx = hislen - 1;
6174 }
6175 idx += 1;
6176 idx %= hislen;
6177 for (i = 0; i < viminfo_hisidx[type]; i++)
6178 {
6179 history[type][idx++].hisnum = ++hisnum[type];
6180 idx %= hislen;
6181 }
6182 vim_free(viminfo_history[type]);
6183 viminfo_history[type] = NULL;
Bram Moolenaarf687cf32013-04-24 15:39:11 +02006184 viminfo_hisidx[type] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006185 }
6186}
6187
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006188/*
6189 * Write history to viminfo file in "fp".
6190 * When "merge" is TRUE merge history lines with a previously read viminfo
6191 * file, data is in viminfo_history[].
6192 * When "merge" is FALSE just write all history lines. Used for ":wviminfo!".
6193 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006194 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006195write_viminfo_history(
6196 FILE *fp,
6197 int merge)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006198{
6199 int i;
6200 int type;
6201 int num_saved;
6202 char_u *p;
6203 int c;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006204 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205
6206 init_history();
6207 if (hislen == 0)
6208 return;
6209 for (type = 0; type < HIST_COUNT; ++type)
6210 {
6211 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE));
6212 if (num_saved == 0)
6213 continue;
6214 if (num_saved < 0) /* Use default */
6215 num_saved = hislen;
6216 fprintf(fp, _("\n# %s History (newest to oldest):\n"),
6217 type == HIST_CMD ? _("Command Line") :
6218 type == HIST_SEARCH ? _("Search String") :
6219 type == HIST_EXPR ? _("Expression") :
6220 _("Input Line"));
6221 if (num_saved > hislen)
6222 num_saved = hislen;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006223
6224 /*
6225 * Merge typed and viminfo history:
6226 * round 1: history of typed commands.
6227 * round 2: history from recently read viminfo.
6228 */
6229 for (round = 1; round <= 2; ++round)
6230 {
Bram Moolenaara8565fe2013-04-15 16:14:22 +02006231 if (round == 1)
6232 /* start at newest entry, somewhere in the list */
6233 i = hisidx[type];
6234 else if (viminfo_hisidx[type] > 0)
6235 /* start at newest entry, first in the list */
6236 i = 0;
6237 else
6238 /* empty list */
6239 i = -1;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006240 if (i >= 0)
6241 while (num_saved > 0
6242 && !(round == 2 && i >= viminfo_hisidx[type]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006243 {
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006244 p = round == 1 ? history[type][i].hisstr
Bram Moolenaarf687cf32013-04-24 15:39:11 +02006245 : viminfo_history[type] == NULL ? NULL
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006246 : viminfo_history[type][i];
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006247 if (p != NULL && (round == 2
6248 || !merge
6249 || !history[type][i].viminfo))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006250 {
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006251 --num_saved;
6252 fputc(hist_type2char(type, TRUE), fp);
6253 /* For the search history: put the separator in the
6254 * second column; use a space if there isn't one. */
6255 if (type == HIST_SEARCH)
6256 {
6257 c = p[STRLEN(p) + 1];
6258 putc(c == NUL ? ' ' : c, fp);
6259 }
6260 viminfo_writestring(fp, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006261 }
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006262 if (round == 1)
6263 {
6264 /* Decrement index, loop around and stop when back at
6265 * the start. */
6266 if (--i < 0)
6267 i = hislen - 1;
6268 if (i == hisidx[type])
6269 break;
6270 }
6271 else
6272 {
6273 /* Increment index. Stop at the end in the while. */
6274 ++i;
6275 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006276 }
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006277 }
Bram Moolenaar07219f92013-04-14 23:19:36 +02006278 for (i = 0; i < viminfo_hisidx[type]; ++i)
Bram Moolenaarf687cf32013-04-24 15:39:11 +02006279 if (viminfo_history[type] != NULL)
6280 vim_free(viminfo_history[type][i]);
Bram Moolenaar07219f92013-04-14 23:19:36 +02006281 vim_free(viminfo_history[type]);
6282 viminfo_history[type] = NULL;
Bram Moolenaarb70a4732013-04-15 22:22:57 +02006283 viminfo_hisidx[type] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006284 }
6285}
6286#endif /* FEAT_VIMINFO */
6287
6288#if defined(FEAT_FKMAP) || defined(PROTO)
6289/*
6290 * Write a character at the current cursor+offset position.
6291 * It is directly written into the command buffer block.
6292 */
6293 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006294cmd_pchar(int c, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006295{
6296 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6297 {
6298 EMSG(_("E198: cmd_pchar beyond the command length"));
6299 return;
6300 }
6301 ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c;
6302 ccline.cmdbuff[ccline.cmdlen] = NUL;
6303}
6304
6305 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006306cmd_gchar(int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006307{
6308 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6309 {
6310 /* EMSG(_("cmd_gchar beyond the command length")); */
6311 return NUL;
6312 }
6313 return (int)ccline.cmdbuff[ccline.cmdpos + offset];
6314}
6315#endif
6316
6317#if defined(FEAT_CMDWIN) || defined(PROTO)
6318/*
6319 * Open a window on the current command line and history. Allow editing in
6320 * the window. Returns when the window is closed.
6321 * Returns:
6322 * CR if the command is to be executed
6323 * Ctrl_C if it is to be abandoned
6324 * K_IGNORE if editing continues
6325 */
6326 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006327ex_window(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006328{
6329 struct cmdline_info save_ccline;
6330 buf_T *old_curbuf = curbuf;
6331 win_T *old_curwin = curwin;
6332 buf_T *bp;
6333 win_T *wp;
6334 int i;
6335 linenr_T lnum;
6336 int histtype;
6337 garray_T winsizes;
Bram Moolenaar7693ec62008-07-24 18:29:37 +00006338#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006339 char_u typestr[2];
Bram Moolenaar7693ec62008-07-24 18:29:37 +00006340#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006341 int save_restart_edit = restart_edit;
6342 int save_State = State;
6343 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00006344#ifdef FEAT_RIGHTLEFT
6345 int save_cmdmsg_rl = cmdmsg_rl;
6346#endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006347#ifdef FEAT_FOLDING
6348 int save_KeyTyped;
6349#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006350
6351 /* Can't do this recursively. Can't do it when typing a password. */
6352 if (cmdwin_type != 0
6353# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
6354 || cmdline_star > 0
6355# endif
6356 )
6357 {
6358 beep_flush();
6359 return K_IGNORE;
6360 }
6361
6362 /* Save current window sizes. */
6363 win_size_save(&winsizes);
6364
6365# ifdef FEAT_AUTOCMD
6366 /* Don't execute autocommands while creating the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006367 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006368# endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00006369 /* don't use a new tab page */
6370 cmdmod.tab = 0;
6371
Bram Moolenaar071d4272004-06-13 20:20:40 +00006372 /* Create a window for the command-line buffer. */
6373 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
6374 {
6375 beep_flush();
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006376# ifdef FEAT_AUTOCMD
6377 unblock_autocmds();
6378# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006379 return K_IGNORE;
6380 }
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006381 cmdwin_type = get_cmdline_type();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006382
6383 /* Create the command-line buffer empty. */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006384 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL);
Bram Moolenaar446cb832008-06-24 21:56:24 +00006385 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006386 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
6387 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
6388 curbuf->b_p_ma = TRUE;
Bram Moolenaar876f6d72009-04-29 10:05:51 +00006389#ifdef FEAT_FOLDING
6390 curwin->w_p_fen = FALSE;
6391#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006392# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00006393 curwin->w_p_rl = cmdmsg_rl;
6394 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006395# endif
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006396 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006397
6398# ifdef FEAT_AUTOCMD
6399 /* Do execute autocommands for setting the filetype (load syntax). */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006400 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006401# endif
6402
Bram Moolenaar46152342005-09-07 21:18:43 +00006403 /* Showing the prompt may have set need_wait_return, reset it. */
6404 need_wait_return = FALSE;
6405
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006406 histtype = hist_char2type(cmdwin_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
6408 {
6409 if (p_wc == TAB)
6410 {
6411 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
6412 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
6413 }
6414 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
6415 }
6416
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006417 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
6418 * sets 'textwidth' to 78). */
6419 curbuf->b_p_tw = 0;
6420
Bram Moolenaar071d4272004-06-13 20:20:40 +00006421 /* Fill the buffer with the history. */
6422 init_history();
6423 if (hislen > 0)
6424 {
6425 i = hisidx[histtype];
6426 if (i >= 0)
6427 {
6428 lnum = 0;
6429 do
6430 {
6431 if (++i == hislen)
6432 i = 0;
6433 if (history[histtype][i].hisstr != NULL)
6434 ml_append(lnum++, history[histtype][i].hisstr,
6435 (colnr_T)0, FALSE);
6436 }
6437 while (i != hisidx[histtype]);
6438 }
6439 }
6440
6441 /* Replace the empty last line with the current command-line and put the
6442 * cursor there. */
6443 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
6444 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6445 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00006446 changed_line_abv_curs();
6447 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00006448 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006449
6450 /* Save the command line info, can be used recursively. */
6451 save_ccline = ccline;
6452 ccline.cmdbuff = NULL;
6453 ccline.cmdprompt = NULL;
6454
6455 /* No Ex mode here! */
6456 exmode_active = 0;
6457
6458 State = NORMAL;
6459# ifdef FEAT_MOUSE
6460 setmouse();
6461# endif
6462
6463# ifdef FEAT_AUTOCMD
6464 /* Trigger CmdwinEnter autocommands. */
6465 typestr[0] = cmdwin_type;
6466 typestr[1] = NUL;
6467 apply_autocmds(EVENT_CMDWINENTER, typestr, typestr, FALSE, curbuf);
Bram Moolenaar5495cc92006-08-16 14:23:04 +00006468 if (restart_edit != 0) /* autocmd with ":startinsert" */
6469 stuffcharReadbuff(K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006470# endif
6471
6472 i = RedrawingDisabled;
6473 RedrawingDisabled = 0;
6474
6475 /*
6476 * Call the main loop until <CR> or CTRL-C is typed.
6477 */
6478 cmdwin_result = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00006479 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006480
6481 RedrawingDisabled = i;
6482
6483# ifdef FEAT_AUTOCMD
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006484
6485# ifdef FEAT_FOLDING
6486 save_KeyTyped = KeyTyped;
6487# endif
6488
Bram Moolenaar071d4272004-06-13 20:20:40 +00006489 /* Trigger CmdwinLeave autocommands. */
6490 apply_autocmds(EVENT_CMDWINLEAVE, typestr, typestr, FALSE, curbuf);
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006491
6492# ifdef FEAT_FOLDING
6493 /* Restore KeyTyped in case it is modified by autocommands */
6494 KeyTyped = save_KeyTyped;
6495# endif
6496
Bram Moolenaar071d4272004-06-13 20:20:40 +00006497# endif
6498
Bram Moolenaarccc18222007-05-10 18:25:20 +00006499 /* Restore the command line info. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006500 ccline = save_ccline;
6501 cmdwin_type = 0;
6502
6503 exmode_active = save_exmode;
6504
Bram Moolenaarf9821062008-06-20 16:31:07 +00006505 /* Safety check: The old window or buffer was deleted: It's a bug when
Bram Moolenaar071d4272004-06-13 20:20:40 +00006506 * this happens! */
6507 if (!win_valid(old_curwin) || !buf_valid(old_curbuf))
6508 {
6509 cmdwin_result = Ctrl_C;
6510 EMSG(_("E199: Active window or buffer deleted"));
6511 }
6512 else
6513 {
6514# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
6515 /* autocmds may abort script processing */
6516 if (aborting() && cmdwin_result != K_IGNORE)
6517 cmdwin_result = Ctrl_C;
6518# endif
6519 /* Set the new command line from the cmdline buffer. */
6520 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00006521 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006522 {
Bram Moolenaar46152342005-09-07 21:18:43 +00006523 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
6524
6525 if (histtype == HIST_CMD)
6526 {
6527 /* Execute the command directly. */
6528 ccline.cmdbuff = vim_strsave((char_u *)p);
6529 cmdwin_result = CAR;
6530 }
6531 else
6532 {
6533 /* First need to cancel what we were doing. */
6534 ccline.cmdbuff = NULL;
6535 stuffcharReadbuff(':');
6536 stuffReadbuff((char_u *)p);
6537 stuffcharReadbuff(CAR);
6538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006539 }
6540 else if (cmdwin_result == K_XF2) /* :qa typed */
6541 {
6542 ccline.cmdbuff = vim_strsave((char_u *)"qa");
6543 cmdwin_result = CAR;
6544 }
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02006545 else if (cmdwin_result == Ctrl_C)
6546 {
6547 /* :q or :close, don't execute any command
6548 * and don't modify the cmd window. */
6549 ccline.cmdbuff = NULL;
6550 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006551 else
6552 ccline.cmdbuff = vim_strsave(ml_get_curline());
6553 if (ccline.cmdbuff == NULL)
6554 cmdwin_result = Ctrl_C;
6555 else
6556 {
6557 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
6558 ccline.cmdbufflen = ccline.cmdlen + 1;
6559 ccline.cmdpos = curwin->w_cursor.col;
6560 if (ccline.cmdpos > ccline.cmdlen)
6561 ccline.cmdpos = ccline.cmdlen;
6562 if (cmdwin_result == K_IGNORE)
6563 {
6564 set_cmdspos_cursor();
6565 redrawcmd();
6566 }
6567 }
6568
6569# ifdef FEAT_AUTOCMD
6570 /* Don't execute autocommands while deleting the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006571 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006572# endif
Bram Moolenaarfa67fbe2015-06-25 18:20:36 +02006573# ifdef FEAT_CONCEAL
6574 /* Avoid command-line window first character being concealed. */
6575 curwin->w_p_cole = 0;
6576# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006577 wp = curwin;
6578 bp = curbuf;
6579 win_goto(old_curwin);
6580 win_close(wp, TRUE);
Bram Moolenaar8006d692010-03-02 17:23:21 +01006581
6582 /* win_close() may have already wiped the buffer when 'bh' is
6583 * set to 'wipe' */
6584 if (buf_valid(bp))
Bram Moolenaar42ec6562012-02-22 14:58:37 +01006585 close_buffer(NULL, bp, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006586
6587 /* Restore window sizes. */
6588 win_size_restore(&winsizes);
6589
6590# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006591 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006592# endif
6593 }
6594
6595 ga_clear(&winsizes);
6596 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00006597# ifdef FEAT_RIGHTLEFT
6598 cmdmsg_rl = save_cmdmsg_rl;
6599# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006600
6601 State = save_State;
6602# ifdef FEAT_MOUSE
6603 setmouse();
6604# endif
6605
6606 return cmdwin_result;
6607}
6608#endif /* FEAT_CMDWIN */
6609
6610/*
6611 * Used for commands that either take a simple command string argument, or:
6612 * cmd << endmarker
6613 * {script}
6614 * endmarker
6615 * Returns a pointer to allocated memory with {script} or NULL.
6616 */
6617 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006618script_get(exarg_T *eap, char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619{
6620 char_u *theline;
6621 char *end_pattern = NULL;
6622 char dot[] = ".";
6623 garray_T ga;
6624
6625 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
6626 return NULL;
6627
6628 ga_init2(&ga, 1, 0x400);
6629
6630 if (cmd[2] != NUL)
6631 end_pattern = (char *)skipwhite(cmd + 2);
6632 else
6633 end_pattern = dot;
6634
6635 for (;;)
6636 {
6637 theline = eap->getline(
6638#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00006639 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00006640#endif
6641 NUL, eap->cookie, 0);
6642
6643 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
Bram Moolenaarbe555e72008-08-06 12:19:26 +00006644 {
6645 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006646 break;
Bram Moolenaarbe555e72008-08-06 12:19:26 +00006647 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006648
6649 ga_concat(&ga, theline);
6650 ga_append(&ga, '\n');
6651 vim_free(theline);
6652 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00006653 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006654
6655 return (char_u *)ga.ga_data;
6656}