blob: 7c553e42e24cc264a71b34ed46156dd62d7b27e9 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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
Bram Moolenaara92522f2017-07-15 15:21:38 +020055static int extra_char = NUL; /* extra character to display when redrawing
56 * the command line */
Bram Moolenaar6a77d262017-07-16 15:24:01 +020057static int extra_char_shift;
58
Bram Moolenaar071d4272004-06-13 20:20:40 +000059#ifdef FEAT_CMDHIST
60typedef struct hist_entry
61{
62 int hisnum; /* identifying number */
Bram Moolenaarb3049f42013-04-05 18:58:47 +020063 int viminfo; /* when TRUE hisstr comes from viminfo */
Bram Moolenaar071d4272004-06-13 20:20:40 +000064 char_u *hisstr; /* actual entry, separator char after the NUL */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +020065 time_t time_set; /* when it was typed, zero if unknown */
Bram Moolenaar071d4272004-06-13 20:20:40 +000066} histentry_T;
67
68static histentry_T *(history[HIST_COUNT]) = {NULL, NULL, NULL, NULL, NULL};
69static int hisidx[HIST_COUNT] = {-1, -1, -1, -1, -1}; /* lastused entry */
70static int hisnum[HIST_COUNT] = {0, 0, 0, 0, 0};
71 /* identifying (unique) number of newest history entry */
72static int hislen = 0; /* actual length of history tables */
73
Bram Moolenaard25c16e2016-01-29 22:13:30 +010074static int hist_char2type(int c);
Bram Moolenaar071d4272004-06-13 20:20:40 +000075
Bram Moolenaard25c16e2016-01-29 22:13:30 +010076static int in_history(int, char_u *, int, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000077# ifdef FEAT_EVAL
Bram Moolenaard25c16e2016-01-29 22:13:30 +010078static int calc_hist_idx(int histype, int num);
Bram Moolenaar071d4272004-06-13 20:20:40 +000079# endif
80#endif
81
82#ifdef FEAT_RIGHTLEFT
83static int cmd_hkmap = 0; /* Hebrew mapping during command line */
84#endif
85
86#ifdef FEAT_FKMAP
87static int cmd_fkmap = 0; /* Farsi mapping during command line */
88#endif
89
Bram Moolenaard25c16e2016-01-29 22:13:30 +010090static int cmdline_charsize(int idx);
91static void set_cmdspos(void);
92static void set_cmdspos_cursor(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000093#ifdef FEAT_MBYTE
Bram Moolenaard25c16e2016-01-29 22:13:30 +010094static void correct_cmdspos(int idx, int cells);
Bram Moolenaar071d4272004-06-13 20:20:40 +000095#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010096static void alloc_cmdbuff(int len);
97static int realloc_cmdbuff(int len);
98static void draw_cmdline(int start, int len);
99static void save_cmdline(struct cmdline_info *ccp);
100static void restore_cmdline(struct cmdline_info *ccp);
101static int cmdline_paste(int regname, int literally, int remcr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100103static void redrawcmd_preedit(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104#endif
105#ifdef FEAT_WILDMENU
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100106static void cmdline_del(int from);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100108static void redrawcmdprompt(void);
109static void cursorcmd(void);
110static int ccheck_abbr(int);
111static int nextwild(expand_T *xp, int type, int options, int escape);
112static void escape_fname(char_u **pp);
113static int showmatches(expand_T *xp, int wildmenu);
114static void set_expand_context(expand_T *xp);
115static int ExpandFromContext(expand_T *xp, char_u *, int *, char_u ***, int);
116static int expand_showtail(expand_T *xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117#ifdef FEAT_CMDL_COMPL
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100118static int expand_shellcmd(char_u *filepat, int *num_file, char_u ***file, int flagsarg);
Bram Moolenaar52f9c192016-03-13 13:24:45 +0100119static int ExpandRTDir(char_u *pat, int flags, int *num_file, char_u ***file, char *dirname[]);
Bram Moolenaar35ca0e72016-03-05 17:41:49 +0100120static int ExpandPackAddDir(char_u *pat, int *num_file, char_u ***file);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +0200121# ifdef FEAT_CMDHIST
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100122static char_u *get_history_arg(expand_T *xp, int idx);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +0200123# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100125static int ExpandUserDefined(expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file);
126static int ExpandUserList(expand_T *xp, int *num_file, char_u ***file);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127# endif
128#endif
Bram Moolenaar25a6df92013-04-06 14:29:00 +0200129#ifdef FEAT_CMDHIST
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100130static void clear_hist_entry(histentry_T *hisptr);
Bram Moolenaar25a6df92013-04-06 14:29:00 +0200131#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132
133#ifdef FEAT_CMDWIN
Bram Moolenaar3bab9392017-04-07 15:42:25 +0200134static int open_cmdwin(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135#endif
136
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200137#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
138static int
139#ifdef __BORLANDC__
140_RTLENTRYF
141#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100142sort_func_compare(const void *s1, const void *s2);
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200143#endif
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +0200144#ifdef FEAT_SEARCH_EXTRA
145static void set_search_match(pos_T *t);
146#endif
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200147
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200148
149#ifdef FEAT_AUTOCMD
150 static void
151trigger_cmd_autocmd(int typechar, int evt)
152{
153 char_u typestr[2];
154
155 typestr[0] = typechar;
156 typestr[1] = NUL;
157 apply_autocmds(evt, typestr, typestr, FALSE, curbuf);
158}
159#endif
160
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161/*
Bram Moolenaarf8e8c062017-10-22 14:44:17 +0200162 * Abandon the command line.
163 */
164 static void
165abandon_cmdline(void)
166{
167 vim_free(ccline.cmdbuff);
168 ccline.cmdbuff = NULL;
169 if (msg_scrolled == 0)
170 compute_cmdrow();
171 MSG("");
172 redraw_cmdline = TRUE;
173}
174
175/*
Bram Moolenaar66216052017-12-16 16:33:44 +0100176 * Guess that the pattern matches everything. Only finds specific cases, such
177 * as a trailing \|, which can happen while typing a pattern.
178 */
179 static int
180empty_pattern(char_u *p)
181{
182 int n = STRLEN(p);
183
184 /* remove trailing \v and the like */
185 while (n >= 2 && p[n - 2] == '\\'
186 && vim_strchr((char_u *)"mMvVcCZ", p[n - 1]) != NULL)
187 n -= 2;
188 return n == 0 || (n >= 2 && p[n - 2] == '\\' && p[n - 1] == '|');
189}
190
191/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192 * getcmdline() - accept a command line starting with firstc.
193 *
194 * firstc == ':' get ":" command line.
195 * firstc == '/' or '?' get search pattern
196 * firstc == '=' get expression
197 * firstc == '@' get text for input() function
198 * firstc == '>' get text for debug mode
199 * firstc == NUL get text for :insert command
200 * firstc == -1 like NUL, and break on CTRL-C
201 *
202 * The line is collected in ccline.cmdbuff, which is reallocated to fit the
203 * command line.
204 *
205 * Careful: getcmdline() can be called recursively!
206 *
207 * Return pointer to allocated string if there is a commandline, NULL
208 * otherwise.
209 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100211getcmdline(
212 int firstc,
213 long count UNUSED, /* only used for incremental search */
214 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215{
216 int c;
217 int i;
218 int j;
219 int gotesc = FALSE; /* TRUE when <ESC> just typed */
220 int do_abbr; /* when TRUE check for abbr. */
221#ifdef FEAT_CMDHIST
222 char_u *lookfor = NULL; /* string to match */
223 int hiscnt; /* current history line in use */
224 int histype; /* history type to be used */
225#endif
226#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaardda933d2016-09-03 21:04:58 +0200227 pos_T search_start; /* where 'incsearch' starts searching */
228 pos_T save_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229 colnr_T old_curswant;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200230 colnr_T init_curswant = curwin->w_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231 colnr_T old_leftcol;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200232 colnr_T init_leftcol = curwin->w_leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233 linenr_T old_topline;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200234 linenr_T init_topline = curwin->w_topline;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +0200235 pos_T match_start = curwin->w_cursor;
236 pos_T match_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237# ifdef FEAT_DIFF
238 int old_topfill;
Bram Moolenaard0480092017-11-16 22:20:39 +0100239 int init_topfill = curwin->w_topfill;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240# endif
241 linenr_T old_botline;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200242 linenr_T init_botline = curwin->w_botline;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243 int did_incsearch = FALSE;
244 int incsearch_postponed = FALSE;
245#endif
246 int did_wild_list = FALSE; /* did wild_list() recently */
247 int wim_index = 0; /* index in wim_flags[] */
248 int res;
249 int save_msg_scroll = msg_scroll;
250 int save_State = State; /* remember State when called */
251 int some_key_typed = FALSE; /* one of the keys was typed */
252#ifdef FEAT_MOUSE
253 /* mouse drag and release events are ignored, unless they are
254 * preceded with a mouse down event */
255 int ignore_drag_release = TRUE;
256#endif
257#ifdef FEAT_EVAL
258 int break_ctrl_c = FALSE;
259#endif
260 expand_T xpc;
261 long *b_im_ptr = NULL;
Bram Moolenaar4d850512017-02-09 18:25:14 +0100262#if defined(FEAT_WILDMENU) || defined(FEAT_EVAL) || defined(FEAT_SEARCH_EXTRA)
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000263 /* Everything that may work recursively should save and restore the
264 * current command line in save_ccline. That includes update_screen(), a
265 * custom status line may invoke ":normal". */
266 struct cmdline_info save_ccline;
267#endif
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200268#ifdef FEAT_AUTOCMD
269 int cmdline_type;
270#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272#ifdef FEAT_EVAL
273 if (firstc == -1)
274 {
275 firstc = NUL;
276 break_ctrl_c = TRUE;
277 }
278#endif
279#ifdef FEAT_RIGHTLEFT
280 /* start without Hebrew mapping for a command line */
281 if (firstc == ':' || firstc == '=' || firstc == '>')
282 cmd_hkmap = 0;
283#endif
284
285 ccline.overstrike = FALSE; /* always start in insert mode */
286#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100287 CLEAR_POS(&match_end);
Bram Moolenaardda933d2016-09-03 21:04:58 +0200288 save_cursor = curwin->w_cursor; /* may be restored later */
289 search_start = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290 old_curswant = curwin->w_curswant;
291 old_leftcol = curwin->w_leftcol;
292 old_topline = curwin->w_topline;
293# ifdef FEAT_DIFF
294 old_topfill = curwin->w_topfill;
295# endif
296 old_botline = curwin->w_botline;
297#endif
298
299 /*
300 * set some variables for redrawcmd()
301 */
302 ccline.cmdfirstc = (firstc == '@' ? 0 : firstc);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000303 ccline.cmdindent = (firstc > 0 ? indent : 0);
304
305 /* alloc initial ccline.cmdbuff */
306 alloc_cmdbuff(exmode_active ? 250 : indent + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 if (ccline.cmdbuff == NULL)
308 return NULL; /* out of memory */
309 ccline.cmdlen = ccline.cmdpos = 0;
310 ccline.cmdbuff[0] = NUL;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +0100311 sb_text_start_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000313 /* autoindent for :insert and :append */
314 if (firstc <= 0)
315 {
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200316 vim_memset(ccline.cmdbuff, ' ', indent);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000317 ccline.cmdbuff[indent] = NUL;
318 ccline.cmdpos = indent;
319 ccline.cmdspos = indent;
320 ccline.cmdlen = indent;
321 }
322
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323 ExpandInit(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000324 ccline.xpc = &xpc;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325
326#ifdef FEAT_RIGHTLEFT
327 if (curwin->w_p_rl && *curwin->w_p_rlc == 's'
328 && (firstc == '/' || firstc == '?'))
329 cmdmsg_rl = TRUE;
330 else
331 cmdmsg_rl = FALSE;
332#endif
333
334 redir_off = TRUE; /* don't redirect the typed command */
335 if (!cmd_silent)
336 {
337 i = msg_scrolled;
338 msg_scrolled = 0; /* avoid wait_return message */
339 gotocmdline(TRUE);
340 msg_scrolled += i;
341 redrawcmdprompt(); /* draw prompt or indent */
342 set_cmdspos();
343 }
344 xpc.xp_context = EXPAND_NOTHING;
345 xpc.xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000346#ifndef BACKSLASH_IN_FILENAME
347 xpc.xp_shell = FALSE;
348#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000350#if defined(FEAT_EVAL)
351 if (ccline.input_fn)
352 {
353 xpc.xp_context = ccline.xp_context;
354 xpc.xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +0000355# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000356 xpc.xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +0000357# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000358 }
359#endif
360
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 /*
362 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when
363 * doing ":@0" when register 0 doesn't contain a CR.
364 */
365 msg_scroll = FALSE;
366
367 State = CMDLINE;
368
369 if (firstc == '/' || firstc == '?' || firstc == '@')
370 {
371 /* Use ":lmap" mappings for search pattern and input(). */
372 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT)
373 b_im_ptr = &curbuf->b_p_iminsert;
374 else
375 b_im_ptr = &curbuf->b_p_imsearch;
376 if (*b_im_ptr == B_IMODE_LMAP)
377 State |= LANGMAP;
Bram Moolenaar819edbe2017-11-25 17:14:33 +0100378#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379 im_set_active(*b_im_ptr == B_IMODE_IM);
380#endif
381 }
Bram Moolenaar819edbe2017-11-25 17:14:33 +0100382#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383 else if (p_imcmdline)
384 im_set_active(TRUE);
385#endif
386
387#ifdef FEAT_MOUSE
388 setmouse();
389#endif
390#ifdef CURSOR_SHAPE
391 ui_cursor_shape(); /* may show different cursor shape */
392#endif
393
Bram Moolenaarf4d11452005-12-02 00:46:37 +0000394 /* When inside an autocommand for writing "exiting" may be set and
395 * terminal mode set to cooked. Need to set raw mode here then. */
396 settmode(TMODE_RAW);
397
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200398#ifdef FEAT_AUTOCMD
399 /* Trigger CmdlineEnter autocommands. */
400 cmdline_type = firstc == NUL ? '-' : firstc;
401 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINEENTER);
402#endif
403
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404#ifdef FEAT_CMDHIST
405 init_history();
406 hiscnt = hislen; /* set hiscnt to impossible history value */
407 histype = hist_char2type(firstc);
408#endif
409
410#ifdef FEAT_DIGRAPHS
Bram Moolenaar3c65e312009-04-29 16:47:23 +0000411 do_digraph(-1); /* init digraph typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412#endif
413
Bram Moolenaar15a35c42014-06-25 12:26:46 +0200414 /* If something above caused an error, reset the flags, we do want to type
415 * and execute commands. Display may be messed up a bit. */
416 if (did_emsg)
417 redrawcmd();
418 did_emsg = FALSE;
419 got_int = FALSE;
420
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421 /*
422 * Collect the command string, handling editing keys.
423 */
424 for (;;)
425 {
Bram Moolenaar29b2d262006-09-10 19:07:28 +0000426 redir_off = TRUE; /* Don't redirect the typed command.
427 Repeated, because a ":redir" inside
428 completion may switch it on. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429#ifdef USE_ON_FLY_SCROLL
430 dont_scroll = FALSE; /* allow scrolling here */
431#endif
432 quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */
433
434 cursorcmd(); /* set the cursor on the right spot */
Bram Moolenaar30405d32008-01-02 20:55:27 +0000435
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +0100436 /* Get a character. Ignore K_IGNORE and K_NOP, they should not do
437 * anything, such as stop completion. */
Bram Moolenaar30405d32008-01-02 20:55:27 +0000438 do
439 {
440 c = safe_vgetc();
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +0100441 } while (c == K_IGNORE || c == K_NOP);
Bram Moolenaar30405d32008-01-02 20:55:27 +0000442
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443 if (KeyTyped)
444 {
445 some_key_typed = TRUE;
446#ifdef FEAT_RIGHTLEFT
447 if (cmd_hkmap)
448 c = hkmap(c);
449# ifdef FEAT_FKMAP
450 if (cmd_fkmap)
451 c = cmdl_fkmap(c);
452# endif
453 if (cmdmsg_rl && !KeyStuffed)
454 {
455 /* Invert horizontal movements and operations. Only when
456 * typed by the user directly, not when the result of a
457 * mapping. */
458 switch (c)
459 {
460 case K_RIGHT: c = K_LEFT; break;
461 case K_S_RIGHT: c = K_S_LEFT; break;
462 case K_C_RIGHT: c = K_C_LEFT; break;
463 case K_LEFT: c = K_RIGHT; break;
464 case K_S_LEFT: c = K_S_RIGHT; break;
465 case K_C_LEFT: c = K_C_RIGHT; break;
466 }
467 }
468#endif
469 }
470
471 /*
472 * Ignore got_int when CTRL-C was typed here.
473 * Don't ignore it in :global, we really need to break then, e.g., for
474 * ":g/pat/normal /pat" (without the <CR>).
475 * Don't ignore it for the input() function.
476 */
477 if ((c == Ctrl_C
478#ifdef UNIX
479 || c == intr_char
480#endif
481 )
482#if defined(FEAT_EVAL) || defined(FEAT_CRYPT)
483 && firstc != '@'
484#endif
485#ifdef FEAT_EVAL
486 && !break_ctrl_c
487#endif
488 && !global_busy)
489 got_int = FALSE;
490
491#ifdef FEAT_CMDHIST
492 /* free old command line when finished moving around in the history
493 * list */
494 if (lookfor != NULL
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000495 && c != K_S_DOWN && c != K_S_UP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000496 && c != K_DOWN && c != K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497 && c != K_PAGEDOWN && c != K_PAGEUP
498 && c != K_KPAGEDOWN && c != K_KPAGEUP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000499 && c != K_LEFT && c != K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N)))
501 {
502 vim_free(lookfor);
503 lookfor = NULL;
504 }
505#endif
506
507 /*
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000508 * When there are matching completions to select <S-Tab> works like
509 * CTRL-P (unless 'wc' is <S-Tab>).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510 */
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000511 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 c = Ctrl_P;
513
514#ifdef FEAT_WILDMENU
515 /* Special translations for 'wildmenu' */
516 if (did_wild_list && p_wmnu)
517 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000518 if (c == K_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519 c = Ctrl_P;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000520 else if (c == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521 c = Ctrl_N;
522 }
523 /* Hitting CR after "emenu Name.": complete submenu */
524 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu
525 && ccline.cmdpos > 1
526 && ccline.cmdbuff[ccline.cmdpos - 1] == '.'
527 && ccline.cmdbuff[ccline.cmdpos - 2] != '\\'
528 && (c == '\n' || c == '\r' || c == K_KENTER))
529 c = K_DOWN;
530#endif
531
532 /* free expanded names when finished walking through matches */
533 if (xpc.xp_numfiles != -1
534 && !(c == p_wc && KeyTyped) && c != p_wcm
535 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A
536 && c != Ctrl_L)
537 {
538 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
539 did_wild_list = FALSE;
540#ifdef FEAT_WILDMENU
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000541 if (!p_wmnu || (c != K_UP && c != K_DOWN))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542#endif
543 xpc.xp_context = EXPAND_NOTHING;
544 wim_index = 0;
545#ifdef FEAT_WILDMENU
546 if (p_wmnu && wild_menu_showing != 0)
547 {
548 int skt = KeyTyped;
Bram Moolenaar1e015462005-09-25 22:16:38 +0000549 int old_RedrawingDisabled = RedrawingDisabled;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000550
551 if (ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000552 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553
554 if (wild_menu_showing == WM_SCROLLED)
555 {
556 /* Entered command line, move it up */
557 cmdline_row--;
558 redrawcmd();
559 }
560 else if (save_p_ls != -1)
561 {
562 /* restore 'laststatus' and 'winminheight' */
563 p_ls = save_p_ls;
564 p_wmh = save_p_wmh;
565 last_status(FALSE);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000566 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 update_screen(VALID); /* redraw the screen NOW */
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000568 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 redrawcmd();
570 save_p_ls = -1;
571 }
572 else
573 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574 win_redraw_last_status(topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 redraw_statuslines();
576 }
577 KeyTyped = skt;
578 wild_menu_showing = 0;
Bram Moolenaar1e015462005-09-25 22:16:38 +0000579 if (ccline.input_fn)
580 RedrawingDisabled = old_RedrawingDisabled;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581 }
582#endif
583 }
584
585#ifdef FEAT_WILDMENU
586 /* Special translations for 'wildmenu' */
587 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu)
588 {
589 /* Hitting <Down> after "emenu Name.": complete submenu */
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000590 if (c == K_DOWN && ccline.cmdpos > 0
591 && ccline.cmdbuff[ccline.cmdpos - 1] == '.')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592 c = p_wc;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000593 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594 {
595 /* Hitting <Up>: Remove one submenu name in front of the
596 * cursor */
597 int found = FALSE;
598
599 j = (int)(xpc.xp_pattern - ccline.cmdbuff);
600 i = 0;
601 while (--j > 0)
602 {
603 /* check for start of menu name */
604 if (ccline.cmdbuff[j] == ' '
605 && ccline.cmdbuff[j - 1] != '\\')
606 {
607 i = j + 1;
608 break;
609 }
610 /* check for start of submenu name */
611 if (ccline.cmdbuff[j] == '.'
612 && ccline.cmdbuff[j - 1] != '\\')
613 {
614 if (found)
615 {
616 i = j + 1;
617 break;
618 }
619 else
620 found = TRUE;
621 }
622 }
623 if (i > 0)
624 cmdline_del(i);
625 c = p_wc;
626 xpc.xp_context = EXPAND_NOTHING;
627 }
628 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000629 if ((xpc.xp_context == EXPAND_FILES
Bram Moolenaar446cb832008-06-24 21:56:24 +0000630 || xpc.xp_context == EXPAND_DIRECTORIES
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000631 || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632 {
633 char_u upseg[5];
634
635 upseg[0] = PATHSEP;
636 upseg[1] = '.';
637 upseg[2] = '.';
638 upseg[3] = PATHSEP;
639 upseg[4] = NUL;
640
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000641 if (c == K_DOWN
642 && ccline.cmdpos > 0
643 && ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP
644 && (ccline.cmdpos < 3
645 || ccline.cmdbuff[ccline.cmdpos - 2] != '.'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 || ccline.cmdbuff[ccline.cmdpos - 3] != '.'))
647 {
648 /* go down a directory */
649 c = p_wc;
650 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000651 else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000652 {
653 /* If in a direct ancestor, strip off one ../ to go down */
654 int found = FALSE;
655
656 j = ccline.cmdpos;
657 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
658 while (--j > i)
659 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000660#ifdef FEAT_MBYTE
661 if (has_mbyte)
662 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
663#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664 if (vim_ispathsep(ccline.cmdbuff[j]))
665 {
666 found = TRUE;
667 break;
668 }
669 }
670 if (found
671 && ccline.cmdbuff[j - 1] == '.'
672 && ccline.cmdbuff[j - 2] == '.'
673 && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2))
674 {
675 cmdline_del(j - 2);
676 c = p_wc;
677 }
678 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000679 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680 {
681 /* go up a directory */
682 int found = FALSE;
683
684 j = ccline.cmdpos - 1;
685 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
686 while (--j > i)
687 {
688#ifdef FEAT_MBYTE
689 if (has_mbyte)
690 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
691#endif
692 if (vim_ispathsep(ccline.cmdbuff[j])
693#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100694 && vim_strchr((char_u *)" *?[{`$%#",
695 ccline.cmdbuff[j + 1]) == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696#endif
697 )
698 {
699 if (found)
700 {
701 i = j + 1;
702 break;
703 }
704 else
705 found = TRUE;
706 }
707 }
708
709 if (!found)
710 j = i;
711 else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0)
712 j += 4;
713 else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0
714 && j == i)
715 j += 3;
716 else
717 j = 0;
718 if (j > 0)
719 {
720 /* TODO this is only for DOS/UNIX systems - need to put in
721 * machine-specific stuff here and in upseg init */
722 cmdline_del(j);
723 put_on_cmdline(upseg + 1, 3, FALSE);
724 }
725 else if (ccline.cmdpos > i)
726 cmdline_del(i);
Bram Moolenaar96a89642011-12-08 18:44:51 +0100727
728 /* Now complete in the new directory. Set KeyTyped in case the
729 * Up key came from a mapping. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 c = p_wc;
Bram Moolenaar96a89642011-12-08 18:44:51 +0100731 KeyTyped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 }
733 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734
735#endif /* FEAT_WILDMENU */
736
737 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert
738 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */
739 if (c == Ctrl_BSL)
740 {
741 ++no_mapping;
742 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000743 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 --no_mapping;
745 --allow_keys;
Bram Moolenaarb7356812012-10-11 04:04:37 +0200746 /* CTRL-\ e doesn't work when obtaining an expression, unless it
747 * is in a mapping. */
748 if (c != Ctrl_N && c != Ctrl_G && (c != 'e'
749 || (ccline.cmdfirstc == '=' && KeyTyped)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 {
751 vungetc(c);
752 c = Ctrl_BSL;
753 }
754#ifdef FEAT_EVAL
755 else if (c == 'e')
756 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +0200757 char_u *p = NULL;
758 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759
760 /*
761 * Replace the command line with the result of an expression.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000762 * Need to save and restore the current command line, to be
763 * able to enter a new one...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 */
765 if (ccline.cmdpos == ccline.cmdlen)
766 new_cmdpos = 99999; /* keep it at the end */
767 else
768 new_cmdpos = ccline.cmdpos;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000769
770 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000772 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773 if (c == '=')
774 {
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000775 /* Need to save and restore ccline. And set "textlock"
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000776 * to avoid nasty things like going to another buffer when
777 * evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000778 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000779 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 p = get_expr_line();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000781 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000782 restore_cmdline(&save_ccline);
783
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200784 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 {
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200786 len = (int)STRLEN(p);
787 if (realloc_cmdbuff(len + 1) == OK)
788 {
789 ccline.cmdlen = len;
790 STRCPY(ccline.cmdbuff, p);
791 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200793 /* Restore the cursor or use the position set with
794 * set_cmdline_pos(). */
795 if (new_cmdpos > ccline.cmdlen)
796 ccline.cmdpos = ccline.cmdlen;
797 else
798 ccline.cmdpos = new_cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200800 KeyTyped = FALSE; /* Don't do p_wc completion. */
801 redrawcmd();
802 goto cmdline_changed;
803 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804 }
805 }
806 beep_flush();
Bram Moolenaar66b4bf82010-11-16 14:06:08 +0100807 got_int = FALSE; /* don't abandon the command line */
808 did_emsg = FALSE;
809 emsg_on_display = FALSE;
810 redrawcmd();
811 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 }
813#endif
814 else
815 {
816 if (c == Ctrl_G && p_im && restart_edit == 0)
817 restart_edit = 'a';
818 gotesc = TRUE; /* will free ccline.cmdbuff after putting it
819 in history */
820 goto returncmd; /* back to Normal mode */
821 }
822 }
823
824#ifdef FEAT_CMDWIN
825 if (c == cedit_key || c == K_CMDWIN)
826 {
Bram Moolenaar58da7072014-09-09 18:45:49 +0200827 if (ex_normal_busy == 0 && got_int == FALSE)
828 {
829 /*
830 * Open a window to edit the command line (and history).
831 */
Bram Moolenaar3bab9392017-04-07 15:42:25 +0200832 c = open_cmdwin();
Bram Moolenaar58da7072014-09-09 18:45:49 +0200833 some_key_typed = TRUE;
834 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835 }
836# ifdef FEAT_DIGRAPHS
837 else
838# endif
839#endif
840#ifdef FEAT_DIGRAPHS
841 c = do_digraph(c);
842#endif
843
844 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC
845 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL)))
846 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000847 /* In Ex mode a backslash escapes a newline. */
848 if (exmode_active
849 && c != ESC
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000850 && ccline.cmdpos == ccline.cmdlen
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000851 && ccline.cmdpos > 0
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000852 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000854 if (c == K_KENTER)
855 c = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000857 else
858 {
859 gotesc = FALSE; /* Might have typed ESC previously, don't
860 truncate the cmdline now. */
861 if (ccheck_abbr(c + ABBR_OFF))
862 goto cmdline_changed;
863 if (!cmd_silent)
864 {
865 windgoto(msg_row, 0);
866 out_flush();
867 }
868 break;
869 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 }
871
872 /*
873 * Completion for 'wildchar' or 'wildcharm' key.
874 * - hitting <ESC> twice means: abandon command line.
875 * - wildcard expansion is only done when the 'wildchar' key is really
876 * typed, not when it comes from a macro
877 */
878 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm)
879 {
880 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */
881 {
882 /* if 'wildmode' contains "list" may still need to list */
883 if (xpc.xp_numfiles > 1
884 && !did_wild_list
885 && (wim_flags[wim_index] & WIM_LIST))
886 {
887 (void)showmatches(&xpc, FALSE);
888 redrawcmd();
889 did_wild_list = TRUE;
890 }
891 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100892 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
893 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100895 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
896 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 else
898 res = OK; /* don't insert 'wildchar' now */
899 }
900 else /* typed p_wc first time */
901 {
902 wim_index = 0;
903 j = ccline.cmdpos;
904 /* if 'wildmode' first contains "longest", get longest
905 * common part */
906 if (wim_flags[0] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100907 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
908 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 else
Bram Moolenaarb3479632012-11-28 16:49:58 +0100910 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP,
911 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912
913 /* if interrupted while completing, behave like it failed */
914 if (got_int)
915 {
916 (void)vpeekc(); /* remove <C-C> from input stream */
917 got_int = FALSE; /* don't abandon the command line */
918 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
919#ifdef FEAT_WILDMENU
920 xpc.xp_context = EXPAND_NOTHING;
921#endif
922 goto cmdline_changed;
923 }
924
925 /* when more than one match, and 'wildmode' first contains
926 * "list", or no change and 'wildmode' contains "longest,list",
927 * list all matches */
928 if (res == OK && xpc.xp_numfiles > 1)
929 {
930 /* a "longest" that didn't do anything is skipped (but not
931 * "list:longest") */
932 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j)
933 wim_index = 1;
934 if ((wim_flags[wim_index] & WIM_LIST)
935#ifdef FEAT_WILDMENU
936 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0)
937#endif
938 )
939 {
940 if (!(wim_flags[0] & WIM_LONGEST))
941 {
942#ifdef FEAT_WILDMENU
943 int p_wmnu_save = p_wmnu;
944 p_wmnu = 0;
945#endif
Bram Moolenaarb3479632012-11-28 16:49:58 +0100946 /* remove match */
947 nextwild(&xpc, WILD_PREV, 0, firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948#ifdef FEAT_WILDMENU
949 p_wmnu = p_wmnu_save;
950#endif
951 }
952#ifdef FEAT_WILDMENU
953 (void)showmatches(&xpc, p_wmnu
954 && ((wim_flags[wim_index] & WIM_LIST) == 0));
955#else
956 (void)showmatches(&xpc, FALSE);
957#endif
958 redrawcmd();
959 did_wild_list = TRUE;
960 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100961 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
962 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100964 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
965 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 }
967 else
Bram Moolenaar165bc692015-07-21 17:53:25 +0200968 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 }
970#ifdef FEAT_WILDMENU
971 else if (xpc.xp_numfiles == -1)
972 xpc.xp_context = EXPAND_NOTHING;
973#endif
974 }
975 if (wim_index < 3)
976 ++wim_index;
977 if (c == ESC)
978 gotesc = TRUE;
979 if (res == OK)
980 goto cmdline_changed;
981 }
982
983 gotesc = FALSE;
984
985 /* <S-Tab> goes to last match, in a clumsy way */
986 if (c == K_S_TAB && KeyTyped)
987 {
Bram Moolenaarb3479632012-11-28 16:49:58 +0100988 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0, firstc != '@') == OK
989 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK
990 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 goto cmdline_changed;
992 }
993
994 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */
995 c = NL;
996
997 do_abbr = TRUE; /* default: check for abbreviation */
998
999 /*
1000 * Big switch for a typed command line character.
1001 */
1002 switch (c)
1003 {
1004 case K_BS:
1005 case Ctrl_H:
1006 case K_DEL:
1007 case K_KDEL:
1008 case Ctrl_W:
1009#ifdef FEAT_FKMAP
1010 if (cmd_fkmap && c == K_BS)
1011 c = K_DEL;
1012#endif
1013 if (c == K_KDEL)
1014 c = K_DEL;
1015
1016 /*
1017 * delete current character is the same as backspace on next
1018 * character, except at end of line
1019 */
1020 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen)
1021 ++ccline.cmdpos;
1022#ifdef FEAT_MBYTE
1023 if (has_mbyte && c == K_DEL)
1024 ccline.cmdpos += mb_off_next(ccline.cmdbuff,
1025 ccline.cmdbuff + ccline.cmdpos);
1026#endif
1027 if (ccline.cmdpos > 0)
1028 {
1029 char_u *p;
1030
1031 j = ccline.cmdpos;
1032 p = ccline.cmdbuff + j;
1033#ifdef FEAT_MBYTE
1034 if (has_mbyte)
1035 {
1036 p = mb_prevptr(ccline.cmdbuff, p);
1037 if (c == Ctrl_W)
1038 {
1039 while (p > ccline.cmdbuff && vim_isspace(*p))
1040 p = mb_prevptr(ccline.cmdbuff, p);
1041 i = mb_get_class(p);
1042 while (p > ccline.cmdbuff && mb_get_class(p) == i)
1043 p = mb_prevptr(ccline.cmdbuff, p);
1044 if (mb_get_class(p) != i)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001045 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 }
1047 }
1048 else
1049#endif
1050 if (c == Ctrl_W)
1051 {
1052 while (p > ccline.cmdbuff && vim_isspace(p[-1]))
1053 --p;
1054 i = vim_iswordc(p[-1]);
1055 while (p > ccline.cmdbuff && !vim_isspace(p[-1])
1056 && vim_iswordc(p[-1]) == i)
1057 --p;
1058 }
1059 else
1060 --p;
1061 ccline.cmdpos = (int)(p - ccline.cmdbuff);
1062 ccline.cmdlen -= j - ccline.cmdpos;
1063 i = ccline.cmdpos;
1064 while (i < ccline.cmdlen)
1065 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1066
1067 /* Truncate at the end, required for multi-byte chars. */
1068 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001069#ifdef FEAT_SEARCH_EXTRA
1070 if (ccline.cmdlen == 0)
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001071 {
Bram Moolenaardda933d2016-09-03 21:04:58 +02001072 search_start = save_cursor;
1073 /* save view settings, so that the screen
1074 * won't be restored at the wrong position */
1075 old_curswant = init_curswant;
1076 old_leftcol = init_leftcol;
1077 old_topline = init_topline;
1078# ifdef FEAT_DIFF
1079 old_topfill = init_topfill;
1080# endif
1081 old_botline = init_botline;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001082 }
1083#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 redrawcmd();
1085 }
1086 else if (ccline.cmdlen == 0 && c != Ctrl_W
1087 && ccline.cmdprompt == NULL && indent == 0)
1088 {
1089 /* In ex and debug mode it doesn't make sense to return. */
1090 if (exmode_active
1091#ifdef FEAT_EVAL
1092 || ccline.cmdfirstc == '>'
1093#endif
1094 )
1095 goto cmdline_not_changed;
1096
1097 vim_free(ccline.cmdbuff); /* no commandline to return */
1098 ccline.cmdbuff = NULL;
1099 if (!cmd_silent)
1100 {
1101#ifdef FEAT_RIGHTLEFT
1102 if (cmdmsg_rl)
1103 msg_col = Columns;
1104 else
1105#endif
1106 msg_col = 0;
1107 msg_putchar(' '); /* delete ':' */
1108 }
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001109#ifdef FEAT_SEARCH_EXTRA
1110 if (ccline.cmdlen == 0)
Bram Moolenaardda933d2016-09-03 21:04:58 +02001111 search_start = save_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001112#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 redraw_cmdline = TRUE;
1114 goto returncmd; /* back to cmd mode */
1115 }
1116 goto cmdline_changed;
1117
1118 case K_INS:
1119 case K_KINS:
1120#ifdef FEAT_FKMAP
1121 /* if Farsi mode set, we are in reverse insert mode -
1122 Do not change the mode */
1123 if (cmd_fkmap)
1124 beep_flush();
1125 else
1126#endif
1127 ccline.overstrike = !ccline.overstrike;
1128#ifdef CURSOR_SHAPE
1129 ui_cursor_shape(); /* may show different cursor shape */
1130#endif
1131 goto cmdline_not_changed;
1132
1133 case Ctrl_HAT:
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00001134 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 {
1136 /* ":lmap" mappings exists, toggle use of mappings. */
1137 State ^= LANGMAP;
Bram Moolenaar819edbe2017-11-25 17:14:33 +01001138#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139 im_set_active(FALSE); /* Disable input method */
1140#endif
1141 if (b_im_ptr != NULL)
1142 {
1143 if (State & LANGMAP)
1144 *b_im_ptr = B_IMODE_LMAP;
1145 else
1146 *b_im_ptr = B_IMODE_NONE;
1147 }
1148 }
Bram Moolenaar819edbe2017-11-25 17:14:33 +01001149#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150 else
1151 {
1152 /* There are no ":lmap" mappings, toggle IM. When
1153 * 'imdisable' is set don't try getting the status, it's
1154 * always off. */
1155 if ((p_imdisable && b_im_ptr != NULL)
1156 ? *b_im_ptr == B_IMODE_IM : im_get_status())
1157 {
1158 im_set_active(FALSE); /* Disable input method */
1159 if (b_im_ptr != NULL)
1160 *b_im_ptr = B_IMODE_NONE;
1161 }
1162 else
1163 {
1164 im_set_active(TRUE); /* Enable input method */
1165 if (b_im_ptr != NULL)
1166 *b_im_ptr = B_IMODE_IM;
1167 }
1168 }
1169#endif
1170 if (b_im_ptr != NULL)
1171 {
1172 if (b_im_ptr == &curbuf->b_p_iminsert)
1173 set_iminsert_global();
1174 else
1175 set_imsearch_global();
1176 }
1177#ifdef CURSOR_SHAPE
1178 ui_cursor_shape(); /* may show different cursor shape */
1179#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001180#if defined(FEAT_KEYMAP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 /* Show/unshow value of 'keymap' in status lines later. */
1182 status_redraw_curbuf();
1183#endif
1184 goto cmdline_not_changed;
1185
1186/* case '@': only in very old vi */
1187 case Ctrl_U:
1188 /* delete all characters left of the cursor */
1189 j = ccline.cmdpos;
1190 ccline.cmdlen -= j;
1191 i = ccline.cmdpos = 0;
1192 while (i < ccline.cmdlen)
1193 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1194 /* Truncate at the end, required for multi-byte chars. */
1195 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001196#ifdef FEAT_SEARCH_EXTRA
1197 if (ccline.cmdlen == 0)
Bram Moolenaardda933d2016-09-03 21:04:58 +02001198 search_start = save_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001199#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 redrawcmd();
1201 goto cmdline_changed;
1202
1203#ifdef FEAT_CLIPBOARD
1204 case Ctrl_Y:
1205 /* Copy the modeless selection, if there is one. */
1206 if (clip_star.state != SELECT_CLEARED)
1207 {
1208 if (clip_star.state == SELECT_DONE)
1209 clip_copy_modeless_selection(TRUE);
1210 goto cmdline_not_changed;
1211 }
1212 break;
1213#endif
1214
1215 case ESC: /* get here if p_wc != ESC or when ESC typed twice */
1216 case Ctrl_C:
Bram Moolenaarf4d11452005-12-02 00:46:37 +00001217 /* In exmode it doesn't make sense to return. Except when
Bram Moolenaar7c626922005-02-07 22:01:03 +00001218 * ":normal" runs out of characters. */
1219 if (exmode_active
Bram Moolenaare2c38102016-01-31 14:55:40 +01001220 && (ex_normal_busy == 0 || typebuf.tb_len > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 goto cmdline_not_changed;
1222
1223 gotesc = TRUE; /* will free ccline.cmdbuff after
1224 putting it in history */
1225 goto returncmd; /* back to cmd mode */
1226
1227 case Ctrl_R: /* insert register */
1228#ifdef USE_ON_FLY_SCROLL
1229 dont_scroll = TRUE; /* disallow scrolling here */
1230#endif
1231 putcmdline('"', TRUE);
1232 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001233 i = c = plain_vgetc(); /* CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 if (i == Ctrl_O)
1235 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */
1236 if (i == Ctrl_R)
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001237 c = plain_vgetc(); /* CTRL-R CTRL-R <char> */
Bram Moolenaara92522f2017-07-15 15:21:38 +02001238 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 --no_mapping;
1240#ifdef FEAT_EVAL
1241 /*
1242 * Insert the result of an expression.
1243 * Need to save the current command line, to be able to enter
1244 * a new one...
1245 */
1246 new_cmdpos = -1;
1247 if (c == '=')
1248 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 if (ccline.cmdfirstc == '=')/* can't do this recursively */
1250 {
1251 beep_flush();
1252 c = ESC;
1253 }
1254 else
1255 {
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001256 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001258 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 }
1260 }
1261#endif
1262 if (c != ESC) /* use ESC to cancel inserting register */
1263 {
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001264 cmdline_paste(c, i == Ctrl_R, FALSE);
Bram Moolenaaracf53452005-12-17 22:06:52 +00001265
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001266#ifdef FEAT_EVAL
Bram Moolenaaracf53452005-12-17 22:06:52 +00001267 /* When there was a serious error abort getting the
1268 * command line. */
1269 if (aborting())
1270 {
1271 gotesc = TRUE; /* will free ccline.cmdbuff after
1272 putting it in history */
1273 goto returncmd; /* back to cmd mode */
1274 }
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001275#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 KeyTyped = FALSE; /* Don't do p_wc completion. */
1277#ifdef FEAT_EVAL
1278 if (new_cmdpos >= 0)
1279 {
1280 /* set_cmdline_pos() was used */
1281 if (new_cmdpos > ccline.cmdlen)
1282 ccline.cmdpos = ccline.cmdlen;
1283 else
1284 ccline.cmdpos = new_cmdpos;
1285 }
1286#endif
1287 }
1288 redrawcmd();
1289 goto cmdline_changed;
1290
1291 case Ctrl_D:
1292 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING)
1293 break; /* Use ^D as normal char instead */
1294
1295 redrawcmd();
1296 continue; /* don't do incremental search now */
1297
1298 case K_RIGHT:
1299 case K_S_RIGHT:
1300 case K_C_RIGHT:
1301 do
1302 {
1303 if (ccline.cmdpos >= ccline.cmdlen)
1304 break;
1305 i = cmdline_charsize(ccline.cmdpos);
1306 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows)
1307 break;
1308 ccline.cmdspos += i;
1309#ifdef FEAT_MBYTE
1310 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001311 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 + ccline.cmdpos);
1313 else
1314#endif
1315 ++ccline.cmdpos;
1316 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001317 while ((c == K_S_RIGHT || c == K_C_RIGHT
1318 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 && ccline.cmdbuff[ccline.cmdpos] != ' ');
1320#ifdef FEAT_MBYTE
1321 if (has_mbyte)
1322 set_cmdspos_cursor();
1323#endif
1324 goto cmdline_not_changed;
1325
1326 case K_LEFT:
1327 case K_S_LEFT:
1328 case K_C_LEFT:
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001329 if (ccline.cmdpos == 0)
1330 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 do
1332 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 --ccline.cmdpos;
1334#ifdef FEAT_MBYTE
1335 if (has_mbyte) /* move to first byte of char */
1336 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff,
1337 ccline.cmdbuff + ccline.cmdpos);
1338#endif
1339 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos);
1340 }
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001341 while (ccline.cmdpos > 0
1342 && (c == K_S_LEFT || c == K_C_LEFT
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001343 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 && ccline.cmdbuff[ccline.cmdpos - 1] != ' ');
1345#ifdef FEAT_MBYTE
1346 if (has_mbyte)
1347 set_cmdspos_cursor();
1348#endif
1349 goto cmdline_not_changed;
1350
1351 case K_IGNORE:
Bram Moolenaar3bab9392017-04-07 15:42:25 +02001352 /* Ignore mouse event or open_cmdwin() result. */
Bram Moolenaar30405d32008-01-02 20:55:27 +00001353 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354
Bram Moolenaar4770d092006-01-12 23:22:24 +00001355#ifdef FEAT_GUI_W32
1356 /* On Win32 ignore <M-F4>, we get it when closing the window was
1357 * cancelled. */
1358 case K_F4:
1359 if (mod_mask == MOD_MASK_ALT)
1360 {
1361 redrawcmd(); /* somehow the cmdline is cleared */
1362 goto cmdline_not_changed;
1363 }
1364 break;
1365#endif
1366
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367#ifdef FEAT_MOUSE
1368 case K_MIDDLEDRAG:
1369 case K_MIDDLERELEASE:
1370 goto cmdline_not_changed; /* Ignore mouse */
1371
1372 case K_MIDDLEMOUSE:
1373# ifdef FEAT_GUI
1374 /* When GUI is active, also paste when 'mouse' is empty */
1375 if (!gui.in_use)
1376# endif
1377 if (!mouse_has(MOUSE_COMMAND))
1378 goto cmdline_not_changed; /* Ignore mouse */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001379# ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 if (clip_star.available)
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001381 cmdline_paste('*', TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 else
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001383# endif
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001384 cmdline_paste(0, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 redrawcmd();
1386 goto cmdline_changed;
1387
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001388# ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 case K_DROP:
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001390 cmdline_paste('~', TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391 redrawcmd();
1392 goto cmdline_changed;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001393# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394
1395 case K_LEFTDRAG:
1396 case K_LEFTRELEASE:
1397 case K_RIGHTDRAG:
1398 case K_RIGHTRELEASE:
1399 /* Ignore drag and release events when the button-down wasn't
1400 * seen before. */
1401 if (ignore_drag_release)
1402 goto cmdline_not_changed;
1403 /* FALLTHROUGH */
1404 case K_LEFTMOUSE:
1405 case K_RIGHTMOUSE:
1406 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE)
1407 ignore_drag_release = TRUE;
1408 else
1409 ignore_drag_release = FALSE;
1410# ifdef FEAT_GUI
1411 /* When GUI is active, also move when 'mouse' is empty */
1412 if (!gui.in_use)
1413# endif
1414 if (!mouse_has(MOUSE_COMMAND))
1415 goto cmdline_not_changed; /* Ignore mouse */
1416# ifdef FEAT_CLIPBOARD
1417 if (mouse_row < cmdline_row && clip_star.available)
1418 {
1419 int button, is_click, is_drag;
1420
1421 /*
1422 * Handle modeless selection.
1423 */
1424 button = get_mouse_button(KEY2TERMCAP1(c),
1425 &is_click, &is_drag);
1426 if (mouse_model_popup() && button == MOUSE_LEFT
1427 && (mod_mask & MOD_MASK_SHIFT))
1428 {
1429 /* Translate shift-left to right button. */
1430 button = MOUSE_RIGHT;
1431 mod_mask &= ~MOD_MASK_SHIFT;
1432 }
1433 clip_modeless(button, is_click, is_drag);
1434 goto cmdline_not_changed;
1435 }
1436# endif
1437
1438 set_cmdspos();
1439 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen;
1440 ++ccline.cmdpos)
1441 {
1442 i = cmdline_charsize(ccline.cmdpos);
1443 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns
1444 && mouse_col < ccline.cmdspos % Columns + i)
1445 break;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001446# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447 if (has_mbyte)
1448 {
1449 /* Count ">" for double-wide char that doesn't fit. */
1450 correct_cmdspos(ccline.cmdpos, i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001451 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452 + ccline.cmdpos) - 1;
1453 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001454# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455 ccline.cmdspos += i;
1456 }
1457 goto cmdline_not_changed;
1458
1459 /* Mouse scroll wheel: ignored here */
1460 case K_MOUSEDOWN:
1461 case K_MOUSEUP:
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001462 case K_MOUSELEFT:
1463 case K_MOUSERIGHT:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464 /* Alternate buttons ignored here */
1465 case K_X1MOUSE:
1466 case K_X1DRAG:
1467 case K_X1RELEASE:
1468 case K_X2MOUSE:
1469 case K_X2DRAG:
1470 case K_X2RELEASE:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001471 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 goto cmdline_not_changed;
1473
1474#endif /* FEAT_MOUSE */
1475
1476#ifdef FEAT_GUI
1477 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */
1478 case K_LEFTRELEASE_NM:
1479 goto cmdline_not_changed;
1480
1481 case K_VER_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001482 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 {
1484 gui_do_scroll();
1485 redrawcmd();
1486 }
1487 goto cmdline_not_changed;
1488
1489 case K_HOR_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001490 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001492 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 redrawcmd();
1494 }
1495 goto cmdline_not_changed;
1496#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001497#ifdef FEAT_GUI_TABLINE
1498 case K_TABLINE:
1499 case K_TABMENU:
1500 /* Don't want to change any tabs here. Make sure the same tab
1501 * is still selected. */
1502 if (gui_use_tabline())
1503 gui_mch_set_curtab(tabpage_index(curtab));
1504 goto cmdline_not_changed;
1505#endif
1506
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 case K_SELECT: /* end of Select mode mapping - ignore */
1508 goto cmdline_not_changed;
1509
1510 case Ctrl_B: /* begin of command line */
1511 case K_HOME:
1512 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 case K_S_HOME:
1514 case K_C_HOME:
1515 ccline.cmdpos = 0;
1516 set_cmdspos();
1517 goto cmdline_not_changed;
1518
1519 case Ctrl_E: /* end of command line */
1520 case K_END:
1521 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 case K_S_END:
1523 case K_C_END:
1524 ccline.cmdpos = ccline.cmdlen;
1525 set_cmdspos_cursor();
1526 goto cmdline_not_changed;
1527
1528 case Ctrl_A: /* all matches */
Bram Moolenaarb3479632012-11-28 16:49:58 +01001529 if (nextwild(&xpc, WILD_ALL, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 break;
1531 goto cmdline_changed;
1532
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001533 case Ctrl_L:
1534#ifdef FEAT_SEARCH_EXTRA
1535 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1536 {
1537 /* Add a character from under the cursor for 'incsearch' */
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001538 if (did_incsearch)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001539 {
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001540 curwin->w_cursor = match_end;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001541 if (!EQUAL_POS(curwin->w_cursor, search_start))
Bram Moolenaar93db9752006-11-21 10:29:45 +00001542 {
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001543 c = gchar_cursor();
1544 /* If 'ignorecase' and 'smartcase' are set and the
1545 * command line has no uppercase characters, convert
1546 * the character to lowercase */
1547 if (p_ic && p_scs
1548 && !pat_has_uppercase(ccline.cmdbuff))
1549 c = MB_TOLOWER(c);
1550 if (c != NUL)
Bram Moolenaar93db9752006-11-21 10:29:45 +00001551 {
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001552 if (c == firstc || vim_strchr((char_u *)(
Bram Moolenaara693d052017-06-29 22:23:06 +02001553 p_magic ? "\\~^$.*[" : "\\^$"), c)
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001554 != NULL)
1555 {
1556 /* put a backslash before special
1557 * characters */
1558 stuffcharReadbuff(c);
1559 c = '\\';
1560 }
1561 break;
Bram Moolenaar93db9752006-11-21 10:29:45 +00001562 }
Bram Moolenaar93db9752006-11-21 10:29:45 +00001563 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001564 }
1565 goto cmdline_not_changed;
1566 }
1567#endif
1568
1569 /* completion: longest common part */
Bram Moolenaarb3479632012-11-28 16:49:58 +01001570 if (nextwild(&xpc, WILD_LONGEST, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 break;
1572 goto cmdline_changed;
1573
1574 case Ctrl_N: /* next match */
1575 case Ctrl_P: /* previous match */
Bram Moolenaar7df0f632016-08-26 19:56:00 +02001576 if (xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 {
Bram Moolenaarb3479632012-11-28 16:49:58 +01001578 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT,
1579 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 break;
Bram Moolenaar11956692016-08-27 16:26:56 +02001581 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583#ifdef FEAT_CMDHIST
Bram Moolenaar2f40d122017-10-24 21:49:36 +02001584 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 case K_UP:
1586 case K_DOWN:
1587 case K_S_UP:
1588 case K_S_DOWN:
1589 case K_PAGEUP:
1590 case K_KPAGEUP:
1591 case K_PAGEDOWN:
1592 case K_KPAGEDOWN:
1593 if (hislen == 0 || firstc == NUL) /* no history */
1594 goto cmdline_not_changed;
1595
1596 i = hiscnt;
1597
1598 /* save current command string so it can be restored later */
1599 if (lookfor == NULL)
1600 {
1601 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL)
1602 goto cmdline_not_changed;
1603 lookfor[ccline.cmdpos] = NUL;
1604 }
1605
1606 j = (int)STRLEN(lookfor);
1607 for (;;)
1608 {
1609 /* one step backwards */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001610 if (c == K_UP|| c == K_S_UP || c == Ctrl_P
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001611 || c == K_PAGEUP || c == K_KPAGEUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 {
1613 if (hiscnt == hislen) /* first time */
1614 hiscnt = hisidx[histype];
1615 else if (hiscnt == 0 && hisidx[histype] != hislen - 1)
1616 hiscnt = hislen - 1;
1617 else if (hiscnt != hisidx[histype] + 1)
1618 --hiscnt;
1619 else /* at top of list */
1620 {
1621 hiscnt = i;
1622 break;
1623 }
1624 }
1625 else /* one step forwards */
1626 {
1627 /* on last entry, clear the line */
1628 if (hiscnt == hisidx[histype])
1629 {
1630 hiscnt = hislen;
1631 break;
1632 }
1633
1634 /* not on a history line, nothing to do */
1635 if (hiscnt == hislen)
1636 break;
1637 if (hiscnt == hislen - 1) /* wrap around */
1638 hiscnt = 0;
1639 else
1640 ++hiscnt;
1641 }
1642 if (hiscnt < 0 || history[histype][hiscnt].hisstr == NULL)
1643 {
1644 hiscnt = i;
1645 break;
1646 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001647 if ((c != K_UP && c != K_DOWN)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001648 || hiscnt == i
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 || STRNCMP(history[histype][hiscnt].hisstr,
1650 lookfor, (size_t)j) == 0)
1651 break;
1652 }
1653
1654 if (hiscnt != i) /* jumped to other entry */
1655 {
1656 char_u *p;
1657 int len;
1658 int old_firstc;
1659
1660 vim_free(ccline.cmdbuff);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001661 xpc.xp_context = EXPAND_NOTHING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 if (hiscnt == hislen)
1663 p = lookfor; /* back to the old one */
1664 else
1665 p = history[histype][hiscnt].hisstr;
1666
1667 if (histype == HIST_SEARCH
1668 && p != lookfor
1669 && (old_firstc = p[STRLEN(p) + 1]) != firstc)
1670 {
1671 /* Correct for the separator character used when
1672 * adding the history entry vs the one used now.
1673 * First loop: count length.
1674 * Second loop: copy the characters. */
1675 for (i = 0; i <= 1; ++i)
1676 {
1677 len = 0;
1678 for (j = 0; p[j] != NUL; ++j)
1679 {
1680 /* Replace old sep with new sep, unless it is
1681 * escaped. */
1682 if (p[j] == old_firstc
1683 && (j == 0 || p[j - 1] != '\\'))
1684 {
1685 if (i > 0)
1686 ccline.cmdbuff[len] = firstc;
1687 }
1688 else
1689 {
1690 /* Escape new sep, unless it is already
1691 * escaped. */
1692 if (p[j] == firstc
1693 && (j == 0 || p[j - 1] != '\\'))
1694 {
1695 if (i > 0)
1696 ccline.cmdbuff[len] = '\\';
1697 ++len;
1698 }
1699 if (i > 0)
1700 ccline.cmdbuff[len] = p[j];
1701 }
1702 ++len;
1703 }
1704 if (i == 0)
1705 {
1706 alloc_cmdbuff(len);
1707 if (ccline.cmdbuff == NULL)
1708 goto returncmd;
1709 }
1710 }
1711 ccline.cmdbuff[len] = NUL;
1712 }
1713 else
1714 {
1715 alloc_cmdbuff((int)STRLEN(p));
1716 if (ccline.cmdbuff == NULL)
1717 goto returncmd;
1718 STRCPY(ccline.cmdbuff, p);
1719 }
1720
1721 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
1722 redrawcmd();
1723 goto cmdline_changed;
1724 }
1725 beep_flush();
Bram Moolenaar11956692016-08-27 16:26:56 +02001726#endif
1727 goto cmdline_not_changed;
1728
Bram Moolenaar349e7d92016-09-03 20:04:34 +02001729#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar11956692016-08-27 16:26:56 +02001730 case Ctrl_G: /* next match */
1731 case Ctrl_T: /* previous match */
Bram Moolenaar11956692016-08-27 16:26:56 +02001732 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1733 {
1734 pos_T t;
Bram Moolenaard0480092017-11-16 22:20:39 +01001735 char_u *pat;
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +01001736 int search_flags = SEARCH_NOOF;
Bram Moolenaar11956692016-08-27 16:26:56 +02001737
Bram Moolenaarf8f8b2e2017-11-02 19:08:48 +01001738 if (ccline.cmdlen == 0)
1739 goto cmdline_not_changed;
1740
Bram Moolenaard0480092017-11-16 22:20:39 +01001741 if (firstc == ccline.cmdbuff[0])
1742 pat = last_search_pattern();
1743 else
1744 pat = ccline.cmdbuff;
1745
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +01001746 save_last_search_pattern();
Bram Moolenaar11956692016-08-27 16:26:56 +02001747 cursor_off();
1748 out_flush();
1749 if (c == Ctrl_G)
1750 {
1751 t = match_end;
Bram Moolenaarf8f8b2e2017-11-02 19:08:48 +01001752 if (LT_POS(match_start, match_end))
1753 /* start searching at the end of the match
1754 * not at the beginning of the next column */
1755 (void)decl(&t);
Bram Moolenaar11956692016-08-27 16:26:56 +02001756 search_flags += SEARCH_COL;
1757 }
1758 else
1759 t = match_start;
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +01001760 if (!p_hls)
1761 search_flags += SEARCH_KEEP;
Bram Moolenaar11956692016-08-27 16:26:56 +02001762 ++emsg_off;
1763 i = searchit(curwin, curbuf, &t,
1764 c == Ctrl_G ? FORWARD : BACKWARD,
Bram Moolenaard0480092017-11-16 22:20:39 +01001765 pat, count, search_flags,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001766 RE_SEARCH, 0, NULL, NULL);
Bram Moolenaar11956692016-08-27 16:26:56 +02001767 --emsg_off;
1768 if (i)
1769 {
Bram Moolenaardda933d2016-09-03 21:04:58 +02001770 search_start = match_start;
Bram Moolenaar11956692016-08-27 16:26:56 +02001771 match_end = t;
1772 match_start = t;
1773 if (c == Ctrl_T && firstc == '/')
1774 {
1775 /* move just before the current match, so that
1776 * when nv_search finishes the cursor will be
1777 * put back on the match */
Bram Moolenaardda933d2016-09-03 21:04:58 +02001778 search_start = t;
1779 (void)decl(&search_start);
Bram Moolenaar11956692016-08-27 16:26:56 +02001780 }
Bram Moolenaarda5116d2017-07-01 23:11:17 +02001781 else if (c == Ctrl_G && firstc == '?')
1782 {
1783 /* move just after the current match, so that
1784 * when nv_search finishes the cursor will be
1785 * put back on the match */
1786 search_start = t;
1787 (void)incl(&search_start);
1788 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001789 if (LT_POS(t, search_start) && c == Ctrl_G)
Bram Moolenaar11956692016-08-27 16:26:56 +02001790 {
1791 /* wrap around */
Bram Moolenaardda933d2016-09-03 21:04:58 +02001792 search_start = t;
Bram Moolenaar11956692016-08-27 16:26:56 +02001793 if (firstc == '?')
Bram Moolenaardda933d2016-09-03 21:04:58 +02001794 (void)incl(&search_start);
Bram Moolenaar11956692016-08-27 16:26:56 +02001795 else
Bram Moolenaardda933d2016-09-03 21:04:58 +02001796 (void)decl(&search_start);
Bram Moolenaar11956692016-08-27 16:26:56 +02001797 }
1798
1799 set_search_match(&match_end);
1800 curwin->w_cursor = match_start;
1801 changed_cline_bef_curs();
1802 update_topline();
1803 validate_cursor();
1804 highlight_match = TRUE;
1805 old_curswant = curwin->w_curswant;
1806 old_leftcol = curwin->w_leftcol;
1807 old_topline = curwin->w_topline;
1808# ifdef FEAT_DIFF
1809 old_topfill = curwin->w_topfill;
1810# endif
1811 old_botline = curwin->w_botline;
1812 update_screen(NOT_VALID);
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +01001813 restore_last_search_pattern();
Bram Moolenaar11956692016-08-27 16:26:56 +02001814 redrawcmdline();
1815 }
1816 else
1817 vim_beep(BO_ERROR);
Bram Moolenaar349e7d92016-09-03 20:04:34 +02001818 goto cmdline_not_changed;
Bram Moolenaar11956692016-08-27 16:26:56 +02001819 }
Bram Moolenaar349e7d92016-09-03 20:04:34 +02001820 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821#endif
1822
1823 case Ctrl_V:
1824 case Ctrl_Q:
1825#ifdef FEAT_MOUSE
1826 ignore_drag_release = TRUE;
1827#endif
1828 putcmdline('^', TRUE);
1829 c = get_literal(); /* get next (two) character(s) */
1830 do_abbr = FALSE; /* don't do abbreviation now */
Bram Moolenaara92522f2017-07-15 15:21:38 +02001831 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832#ifdef FEAT_MBYTE
1833 /* may need to remove ^ when composing char was typed */
1834 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent)
1835 {
1836 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
1837 msg_putchar(' ');
1838 cursorcmd();
1839 }
1840#endif
1841 break;
1842
1843#ifdef FEAT_DIGRAPHS
1844 case Ctrl_K:
1845#ifdef FEAT_MOUSE
1846 ignore_drag_release = TRUE;
1847#endif
1848 putcmdline('?', TRUE);
1849#ifdef USE_ON_FLY_SCROLL
1850 dont_scroll = TRUE; /* disallow scrolling here */
1851#endif
1852 c = get_digraph(TRUE);
Bram Moolenaara92522f2017-07-15 15:21:38 +02001853 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854 if (c != NUL)
1855 break;
1856
1857 redrawcmd();
1858 goto cmdline_not_changed;
1859#endif /* FEAT_DIGRAPHS */
1860
1861#ifdef FEAT_RIGHTLEFT
1862 case Ctrl__: /* CTRL-_: switch language mode */
1863 if (!p_ari)
1864 break;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001865# ifdef FEAT_FKMAP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 if (p_altkeymap)
1867 {
1868 cmd_fkmap = !cmd_fkmap;
1869 if (cmd_fkmap) /* in Farsi always in Insert mode */
1870 ccline.overstrike = FALSE;
1871 }
1872 else /* Hebrew is default */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001873# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 cmd_hkmap = !cmd_hkmap;
1875 goto cmdline_not_changed;
1876#endif
1877
Bram Moolenaarabbc4482017-01-24 15:57:55 +01001878 case K_PS:
1879 bracketed_paste(PASTE_CMDLINE, FALSE, NULL);
1880 goto cmdline_changed;
1881
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 default:
1883#ifdef UNIX
1884 if (c == intr_char)
1885 {
1886 gotesc = TRUE; /* will free ccline.cmdbuff after
1887 putting it in history */
1888 goto returncmd; /* back to Normal mode */
1889 }
1890#endif
1891 /*
1892 * Normal character with no special meaning. Just set mod_mask
1893 * to 0x0 so that typing Shift-Space in the GUI doesn't enter
1894 * the string <S-Space>. This should only happen after ^V.
1895 */
1896 if (!IS_SPECIAL(c))
1897 mod_mask = 0x0;
1898 break;
1899 }
1900 /*
1901 * End of switch on command line character.
1902 * We come here if we have a normal character.
1903 */
1904
Bram Moolenaarede3e632013-06-23 16:16:19 +02001905 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && (ccheck_abbr(
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906#ifdef FEAT_MBYTE
1907 /* Add ABBR_OFF for characters above 0x100, this is
1908 * what check_abbr() expects. */
1909 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
1910#endif
Bram Moolenaarede3e632013-06-23 16:16:19 +02001911 c) || c == Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 goto cmdline_changed;
1913
1914 /*
1915 * put the character in the command line
1916 */
1917 if (IS_SPECIAL(c) || mod_mask != 0)
1918 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE);
1919 else
1920 {
1921#ifdef FEAT_MBYTE
1922 if (has_mbyte)
1923 {
1924 j = (*mb_char2bytes)(c, IObuff);
1925 IObuff[j] = NUL; /* exclude composing chars */
1926 put_on_cmdline(IObuff, j, TRUE);
1927 }
1928 else
1929#endif
1930 {
1931 IObuff[0] = c;
1932 put_on_cmdline(IObuff, 1, TRUE);
1933 }
1934 }
1935 goto cmdline_changed;
1936
1937/*
1938 * This part implements incremental searches for "/" and "?"
1939 * Jump to cmdline_not_changed when a character has been read but the command
1940 * line did not change. Then we only search and redraw if something changed in
1941 * the past.
1942 * Jump to cmdline_changed when the command line did change.
1943 * (Sorry for the goto's, I know it is ugly).
1944 */
1945cmdline_not_changed:
1946#ifdef FEAT_SEARCH_EXTRA
1947 if (!incsearch_postponed)
1948 continue;
1949#endif
1950
1951cmdline_changed:
1952#ifdef FEAT_SEARCH_EXTRA
1953 /*
1954 * 'incsearch' highlighting.
1955 */
1956 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1957 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001958 pos_T end_pos;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001959#ifdef FEAT_RELTIME
1960 proftime_T tm;
1961#endif
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001962
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963 /* if there is a character waiting, search and redraw later */
1964 if (char_avail())
1965 {
1966 incsearch_postponed = TRUE;
1967 continue;
1968 }
1969 incsearch_postponed = FALSE;
Bram Moolenaardda933d2016-09-03 21:04:58 +02001970 curwin->w_cursor = search_start; /* start at old position */
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +01001971 save_last_search_pattern();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972
1973 /* If there is no command line, don't do anything */
1974 if (ccline.cmdlen == 0)
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +01001975 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 i = 0;
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +01001977 SET_NO_HLSEARCH(TRUE); /* turn off previous highlight */
Bram Moolenaarf8f8b2e2017-11-02 19:08:48 +01001978 redraw_all_later(SOME_VALID);
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +01001979 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 else
1981 {
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +01001982 int search_flags = SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983 cursor_off(); /* so the user knows we're busy */
1984 out_flush();
1985 ++emsg_off; /* So it doesn't beep if bad expr */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001986#ifdef FEAT_RELTIME
1987 /* Set the time limit to half a second. */
1988 profile_setlimit(500L, &tm);
1989#endif
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +01001990 if (!p_hls)
1991 search_flags += SEARCH_KEEP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 i = do_search(NULL, firstc, ccline.cmdbuff, count,
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +01001993 search_flags,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001994#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001995 &tm, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001996#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001997 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001998#endif
1999 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 --emsg_off;
2001 /* if interrupted while searching, behave like it failed */
2002 if (got_int)
2003 {
2004 (void)vpeekc(); /* remove <C-C> from input stream */
2005 got_int = FALSE; /* don't abandon the command line */
2006 i = 0;
2007 }
2008 else if (char_avail())
2009 /* cancelled searching because a char was typed */
2010 incsearch_postponed = TRUE;
2011 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002012 if (i != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 highlight_match = TRUE; /* highlight position */
2014 else
2015 highlight_match = FALSE; /* remove highlight */
2016
2017 /* first restore the old curwin values, so the screen is
2018 * positioned in the same way as the actual search command */
2019 curwin->w_leftcol = old_leftcol;
2020 curwin->w_topline = old_topline;
2021# ifdef FEAT_DIFF
2022 curwin->w_topfill = old_topfill;
2023# endif
2024 curwin->w_botline = old_botline;
2025 changed_cline_bef_curs();
2026 update_topline();
2027
2028 if (i != 0)
2029 {
Bram Moolenaarae5bce12005-08-15 21:41:48 +00002030 pos_T save_pos = curwin->w_cursor;
2031
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02002032 match_start = curwin->w_cursor;
2033 set_search_match(&curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 validate_cursor();
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002035 end_pos = curwin->w_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02002036 match_end = end_pos;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00002037 curwin->w_cursor = save_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 }
Bram Moolenaardb552d602006-03-23 22:59:57 +00002039 else
2040 end_pos = curwin->w_cursor; /* shutup gcc 4 */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002041
Bram Moolenaar66216052017-12-16 16:33:44 +01002042 /* Disable 'hlsearch' highlighting if the pattern matches
2043 * everything. Avoids a flash when typing "foo\|". */
2044 if (empty_pattern(ccline.cmdbuff))
2045 SET_NO_HLSEARCH(TRUE);
2046
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047 validate_cursor();
Bram Moolenaar27a23192006-09-14 09:27:26 +00002048 /* May redraw the status line to show the cursor position. */
2049 if (p_ru && curwin->w_status_height > 0)
2050 curwin->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00002052 save_cmdline(&save_ccline);
Bram Moolenaar600dddc2006-03-12 22:05:10 +00002053 update_screen(SOME_VALID);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00002054 restore_cmdline(&save_ccline);
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +01002055 restore_last_search_pattern();
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00002056
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002057 /* Leave it at the end to make CTRL-R CTRL-W work. */
2058 if (i != 0)
2059 curwin->w_cursor = end_pos;
2060
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 msg_starthere();
2062 redrawcmdline();
2063 did_incsearch = TRUE;
2064 }
2065#else /* FEAT_SEARCH_EXTRA */
2066 ;
2067#endif
2068
2069#ifdef FEAT_RIGHTLEFT
2070 if (cmdmsg_rl
2071# ifdef FEAT_ARABIC
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002072 || (p_arshape && !p_tbidi && enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073# endif
2074 )
2075 /* Always redraw the whole command line to fix shaping and
Bram Moolenaar58437e02012-02-22 17:58:04 +01002076 * right-left typing. Not efficient, but it works.
2077 * Do it only when there are no characters left to read
2078 * to avoid useless intermediate redraws. */
2079 if (vpeekc() == NUL)
2080 redrawcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081#endif
2082 }
2083
2084returncmd:
2085
2086#ifdef FEAT_RIGHTLEFT
2087 cmdmsg_rl = FALSE;
2088#endif
2089
2090#ifdef FEAT_FKMAP
2091 cmd_fkmap = 0;
2092#endif
2093
2094 ExpandCleanup(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002095 ccline.xpc = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096
2097#ifdef FEAT_SEARCH_EXTRA
2098 if (did_incsearch)
2099 {
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02002100 if (gotesc)
Bram Moolenaardda933d2016-09-03 21:04:58 +02002101 curwin->w_cursor = save_cursor;
2102 else
2103 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002104 if (!EQUAL_POS(save_cursor, search_start))
Bram Moolenaardda933d2016-09-03 21:04:58 +02002105 {
2106 /* put the '" mark at the original position */
2107 curwin->w_cursor = save_cursor;
2108 setpcmark();
2109 }
2110 curwin->w_cursor = search_start;
2111 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112 curwin->w_curswant = old_curswant;
2113 curwin->w_leftcol = old_leftcol;
2114 curwin->w_topline = old_topline;
2115# ifdef FEAT_DIFF
2116 curwin->w_topfill = old_topfill;
2117# endif
2118 curwin->w_botline = old_botline;
2119 highlight_match = FALSE;
2120 validate_cursor(); /* needed for TAB */
Bram Moolenaarf8f8b2e2017-11-02 19:08:48 +01002121 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122 }
2123#endif
2124
2125 if (ccline.cmdbuff != NULL)
2126 {
2127 /*
2128 * Put line in history buffer (":" and "=" only when it was typed).
2129 */
2130#ifdef FEAT_CMDHIST
2131 if (ccline.cmdlen && firstc != NUL
2132 && (some_key_typed || histype == HIST_SEARCH))
2133 {
2134 add_to_history(histype, ccline.cmdbuff, TRUE,
2135 histype == HIST_SEARCH ? firstc : NUL);
2136 if (firstc == ':')
2137 {
2138 vim_free(new_last_cmdline);
2139 new_last_cmdline = vim_strsave(ccline.cmdbuff);
2140 }
2141 }
2142#endif
2143
Bram Moolenaarf8e8c062017-10-22 14:44:17 +02002144 if (gotesc)
2145 abandon_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146 }
2147
2148 /*
2149 * If the screen was shifted up, redraw the whole screen (later).
2150 * If the line is too long, clear it, so ruler and shown command do
2151 * not get printed in the middle of it.
2152 */
2153 msg_check();
2154 msg_scroll = save_msg_scroll;
2155 redir_off = FALSE;
2156
2157 /* When the command line was typed, no need for a wait-return prompt. */
2158 if (some_key_typed)
2159 need_wait_return = FALSE;
2160
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02002161#ifdef FEAT_AUTOCMD
2162 /* Trigger CmdlineLeave autocommands. */
2163 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINELEAVE);
2164#endif
2165
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 State = save_State;
Bram Moolenaar819edbe2017-11-25 17:14:33 +01002167#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP)
2169 im_save_status(b_im_ptr);
2170 im_set_active(FALSE);
2171#endif
2172#ifdef FEAT_MOUSE
2173 setmouse();
2174#endif
2175#ifdef CURSOR_SHAPE
2176 ui_cursor_shape(); /* may show different cursor shape */
2177#endif
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002178 sb_text_end_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002180 {
2181 char_u *p = ccline.cmdbuff;
2182
2183 /* Make ccline empty, getcmdline() may try to use it. */
2184 ccline.cmdbuff = NULL;
2185 return p;
2186 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187}
2188
2189#if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO)
2190/*
2191 * Get a command line with a prompt.
2192 * This is prepared to be called recursively from getcmdline() (e.g. by
2193 * f_input() when evaluating an expression from CTRL-R =).
2194 * Returns the command line in allocated memory, or NULL.
2195 */
2196 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002197getcmdline_prompt(
2198 int firstc,
2199 char_u *prompt, /* command line prompt */
2200 int attr, /* attributes for prompt */
2201 int xp_context, /* type of expansion */
2202 char_u *xp_arg) /* user-defined expansion argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203{
2204 char_u *s;
2205 struct cmdline_info save_ccline;
2206 int msg_col_save = msg_col;
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002207 int msg_silent_save = msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002209 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 ccline.cmdprompt = prompt;
2211 ccline.cmdattr = attr;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002212# ifdef FEAT_EVAL
2213 ccline.xp_context = xp_context;
2214 ccline.xp_arg = xp_arg;
2215 ccline.input_fn = (firstc == '@');
2216# endif
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002217 msg_silent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 s = getcmdline(firstc, 1L, 0);
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002219 restore_cmdline(&save_ccline);
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002220 msg_silent = msg_silent_save;
Bram Moolenaar1db1f772011-08-17 16:25:48 +02002221 /* Restore msg_col, the prompt from input() may have changed it.
2222 * But only if called recursively and the commandline is therefore being
2223 * restored to an old one; if not, the input() prompt stays on the screen,
2224 * so we need its modified msg_col left intact. */
2225 if (ccline.cmdbuff != NULL)
2226 msg_col = msg_col_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227
2228 return s;
2229}
2230#endif
2231
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002232/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002233 * Return TRUE when the text must not be changed and we can't switch to
2234 * another window or buffer. Used when editing the command line, evaluating
2235 * 'balloonexpr', etc.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002236 */
2237 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002238text_locked(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002239{
2240#ifdef FEAT_CMDWIN
2241 if (cmdwin_type != 0)
2242 return TRUE;
2243#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002244 return textlock != 0;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002245}
2246
2247/*
2248 * Give an error message for a command that isn't allowed while the cmdline
2249 * window is open or editing the cmdline in another way.
2250 */
2251 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002252text_locked_msg(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002253{
Bram Moolenaar5a497892016-09-03 16:29:04 +02002254 EMSG(_(get_text_locked_msg()));
2255}
2256
2257 char_u *
2258get_text_locked_msg(void)
2259{
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002260#ifdef FEAT_CMDWIN
2261 if (cmdwin_type != 0)
Bram Moolenaar5a497892016-09-03 16:29:04 +02002262 return e_cmdwin;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002263#endif
Bram Moolenaar5a497892016-09-03 16:29:04 +02002264 return e_secure;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002265}
2266
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002267#if defined(FEAT_AUTOCMD) || defined(PROTO)
2268/*
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002269 * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is
2270 * and give an error message.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002271 */
2272 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002273curbuf_locked(void)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002274{
2275 if (curbuf_lock > 0)
2276 {
2277 EMSG(_("E788: Not allowed to edit another buffer now"));
2278 return TRUE;
2279 }
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002280 return allbuf_locked();
2281}
2282
2283/*
2284 * Check if "allbuf_lock" is set and return TRUE when it is and give an error
2285 * message.
2286 */
2287 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002288allbuf_locked(void)
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002289{
2290 if (allbuf_lock > 0)
2291 {
2292 EMSG(_("E811: Not allowed to change buffer information now"));
2293 return TRUE;
2294 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002295 return FALSE;
2296}
2297#endif
2298
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002300cmdline_charsize(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301{
2302#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2303 if (cmdline_star > 0) /* showing '*', always 1 position */
2304 return 1;
2305#endif
2306 return ptr2cells(ccline.cmdbuff + idx);
2307}
2308
2309/*
2310 * Compute the offset of the cursor on the command line for the prompt and
2311 * indent.
2312 */
2313 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002314set_cmdspos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002316 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 ccline.cmdspos = 1 + ccline.cmdindent;
2318 else
2319 ccline.cmdspos = 0 + ccline.cmdindent;
2320}
2321
2322/*
2323 * Compute the screen position for the cursor on the command line.
2324 */
2325 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002326set_cmdspos_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327{
2328 int i, m, c;
2329
2330 set_cmdspos();
2331 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002332 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002334 if (m < 0) /* overflow, Columns or Rows at weird value */
2335 m = MAXCOL;
2336 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 else
2338 m = MAXCOL;
2339 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
2340 {
2341 c = cmdline_charsize(i);
2342#ifdef FEAT_MBYTE
2343 /* Count ">" for double-wide multi-byte char that doesn't fit. */
2344 if (has_mbyte)
2345 correct_cmdspos(i, c);
2346#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00002347 /* If the cmdline doesn't fit, show cursor on last visible char.
2348 * Don't move the cursor itself, so we can still append. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 if ((ccline.cmdspos += c) >= m)
2350 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 ccline.cmdspos -= c;
2352 break;
2353 }
2354#ifdef FEAT_MBYTE
2355 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002356 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357#endif
2358 }
2359}
2360
2361#ifdef FEAT_MBYTE
2362/*
2363 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2364 * character that doesn't fit, so that a ">" must be displayed.
2365 */
2366 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002367correct_cmdspos(int idx, int cells)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002369 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2371 && ccline.cmdspos % Columns + cells > Columns)
2372 ccline.cmdspos++;
2373}
2374#endif
2375
2376/*
2377 * Get an Ex command line for the ":" command.
2378 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002380getexline(
2381 int c, /* normally ':', NUL for ":append" */
2382 void *cookie UNUSED,
2383 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384{
2385 /* When executing a register, remove ':' that's in front of each line. */
2386 if (exec_from_reg && vpeekc() == ':')
2387 (void)vgetc();
2388 return getcmdline(c, 1L, indent);
2389}
2390
2391/*
2392 * Get an Ex command line for Ex mode.
2393 * In Ex mode we only use the OS supplied line editing features and no
2394 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002395 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002398getexmodeline(
2399 int promptc, /* normally ':', NUL for ":append" and '?' for
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002400 :s prompt */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002401 void *cookie UNUSED,
2402 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002404 garray_T line_ga;
2405 char_u *pend;
2406 int startcol = 0;
Bram Moolenaar76624232007-07-28 12:21:47 +00002407 int c1 = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002408 int escaped = FALSE; /* CTRL-V typed */
2409 int vcol = 0;
2410 char_u *p;
Bram Moolenaar76624232007-07-28 12:21:47 +00002411 int prev_char;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002412 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413
2414 /* Switch cursor on now. This avoids that it happens after the "\n", which
2415 * confuses the system function that computes tabstops. */
2416 cursor_on();
2417
2418 /* always start in column 0; write a newline if necessary */
2419 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002420 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002422 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002424 /* indent that is only displayed, not in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002425 if (p_prompt)
2426 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 while (indent-- > 0)
2428 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 }
2431
2432 ga_init2(&line_ga, 1, 30);
2433
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002434 /* autoindent for :insert and :append is in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002435 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002436 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002437 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002438 while (indent >= 8)
2439 {
2440 ga_append(&line_ga, TAB);
2441 msg_puts((char_u *)" ");
2442 indent -= 8;
2443 }
2444 while (indent-- > 0)
2445 {
2446 ga_append(&line_ga, ' ');
2447 msg_putchar(' ');
2448 }
2449 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002450 ++no_mapping;
2451 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002452
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 /*
2454 * Get the line, one character at a time.
2455 */
2456 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002457 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002459 long sw;
2460 char_u *s;
2461
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462 if (ga_grow(&line_ga, 40) == FAIL)
2463 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464
Bram Moolenaarba748c82017-02-26 14:00:07 +01002465 /*
2466 * Get one character at a time.
2467 */
Bram Moolenaar76624232007-07-28 12:21:47 +00002468 prev_char = c1;
Bram Moolenaarba748c82017-02-26 14:00:07 +01002469
2470 /* Check for a ":normal" command and no more characters left. */
2471 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
2472 c1 = '\n';
2473 else
2474 c1 = vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475
2476 /*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002477 * Handle line editing.
2478 * Previously this was left to the system, putting the terminal in
2479 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002481 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002483 msg_putchar('\n');
2484 break;
2485 }
2486
Bram Moolenaarabbc4482017-01-24 15:57:55 +01002487 if (c1 == K_PS)
2488 {
2489 bracketed_paste(PASTE_EX, FALSE, &line_ga);
2490 goto redraw;
2491 }
2492
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002493 if (!escaped)
2494 {
2495 /* CR typed means "enter", which is NL */
2496 if (c1 == '\r')
2497 c1 = '\n';
2498
2499 if (c1 == BS || c1 == K_BS
2500 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002502 if (line_ga.ga_len > 0)
2503 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002504#ifdef FEAT_MBYTE
2505 if (has_mbyte)
2506 {
2507 p = (char_u *)line_ga.ga_data;
2508 p[line_ga.ga_len] = NUL;
2509 len = (*mb_head_off)(p, p + line_ga.ga_len - 1) + 1;
2510 line_ga.ga_len -= len;
2511 }
2512 else
2513#endif
2514 --line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002515 goto redraw;
2516 }
2517 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 }
2519
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002520 if (c1 == Ctrl_U)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002521 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002522 msg_col = startcol;
2523 msg_clr_eos();
2524 line_ga.ga_len = 0;
Bram Moolenaarda636572015-04-03 17:11:45 +02002525 goto redraw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002526 }
2527
2528 if (c1 == Ctrl_T)
2529 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002530 sw = get_sw_value(curbuf);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002531 p = (char_u *)line_ga.ga_data;
2532 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002533 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaar14f24742012-08-08 18:01:05 +02002534 indent += sw - indent % sw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002535add_indent:
Bram Moolenaar597a4222014-06-25 14:39:50 +02002536 while (get_indent_str(p, 8, FALSE) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002538 (void)ga_grow(&line_ga, 2); /* one more for the NUL */
Bram Moolenaarda636572015-04-03 17:11:45 +02002539 p = (char_u *)line_ga.ga_data;
2540 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002541 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2542 *s = ' ';
2543 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002545redraw:
2546 /* redraw the line */
2547 msg_col = startcol;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002548 vcol = 0;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002549 p = (char_u *)line_ga.ga_data;
2550 p[line_ga.ga_len] = NUL;
2551 while (p < (char_u *)line_ga.ga_data + line_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002553 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002555 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002557 msg_putchar(' ');
2558 } while (++vcol % 8);
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002559 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002561 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002563 len = MB_PTR2LEN(p);
2564 msg_outtrans_len(p, len);
2565 vcol += ptr2cells(p);
2566 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 }
2568 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002569 msg_clr_eos();
Bram Moolenaar76624232007-07-28 12:21:47 +00002570 windgoto(msg_row, msg_col);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002571 continue;
2572 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002574 if (c1 == Ctrl_D)
2575 {
2576 /* Delete one shiftwidth. */
2577 p = (char_u *)line_ga.ga_data;
2578 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002580 if (prev_char == '^')
2581 ex_keep_indent = TRUE;
2582 indent = 0;
2583 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 }
2585 else
2586 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002587 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002588 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaarda636572015-04-03 17:11:45 +02002589 if (indent > 0)
2590 {
2591 --indent;
2592 indent -= indent % get_sw_value(curbuf);
2593 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02002595 while (get_indent_str(p, 8, FALSE) > indent)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002596 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002597 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002598 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2599 --line_ga.ga_len;
2600 }
2601 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002603
2604 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2605 {
2606 escaped = TRUE;
2607 continue;
2608 }
2609
2610 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
2611 if (IS_SPECIAL(c1))
2612 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002614
2615 if (IS_SPECIAL(c1))
2616 c1 = '?';
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002617#ifdef FEAT_MBYTE
2618 if (has_mbyte)
2619 len = (*mb_char2bytes)(c1,
2620 (char_u *)line_ga.ga_data + line_ga.ga_len);
2621 else
2622#endif
2623 {
2624 len = 1;
2625 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
2626 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002627 if (c1 == '\n')
2628 msg_putchar('\n');
2629 else if (c1 == TAB)
2630 {
2631 /* Don't use chartabsize(), 'ts' can be different */
2632 do
2633 {
2634 msg_putchar(' ');
2635 } while (++vcol % 8);
2636 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002639 msg_outtrans_len(
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002640 ((char_u *)line_ga.ga_data) + line_ga.ga_len, len);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002641 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 }
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002643 line_ga.ga_len += len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002644 escaped = FALSE;
2645
2646 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002647 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002648
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002649 /* We are done when a NL is entered, but not when it comes after an
2650 * odd number of backslashes, that results in a NUL. */
2651 if (line_ga.ga_len > 0 && pend[-1] == '\n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652 {
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002653 int bcount = 0;
2654
2655 while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\')
2656 ++bcount;
2657
2658 if (bcount > 0)
2659 {
2660 /* Halve the number of backslashes: "\NL" -> "NUL", "\\NL" ->
2661 * "\NL", etc. */
2662 line_ga.ga_len -= (bcount + 1) / 2;
2663 pend -= (bcount + 1) / 2;
2664 pend[-1] = '\n';
2665 }
2666
2667 if ((bcount & 1) == 0)
2668 {
2669 --line_ga.ga_len;
2670 --pend;
2671 *pend = NUL;
2672 break;
2673 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674 }
2675 }
2676
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002677 --no_mapping;
2678 --allow_keys;
2679
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680 /* make following messages go to the next line */
2681 msg_didout = FALSE;
2682 msg_col = 0;
2683 if (msg_row < Rows - 1)
2684 ++msg_row;
2685 emsg_on_display = FALSE; /* don't want ui_delay() */
2686
2687 if (got_int)
2688 ga_clear(&line_ga);
2689
2690 return (char_u *)line_ga.ga_data;
2691}
2692
Bram Moolenaare344bea2005-09-01 20:46:49 +00002693# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
2694 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695/*
2696 * Return TRUE if ccline.overstrike is on.
2697 */
2698 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002699cmdline_overstrike(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700{
2701 return ccline.overstrike;
2702}
2703
2704/*
2705 * Return TRUE if the cursor is at the end of the cmdline.
2706 */
2707 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002708cmdline_at_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709{
2710 return (ccline.cmdpos >= ccline.cmdlen);
2711}
2712#endif
2713
Bram Moolenaar9372a112005-12-06 19:59:18 +00002714#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715/*
2716 * Return the virtual column number at the current cursor position.
2717 * This is used by the IM code to obtain the start of the preedit string.
2718 */
2719 colnr_T
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002720cmdline_getvcol_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721{
2722 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
2723 return MAXCOL;
2724
2725# ifdef FEAT_MBYTE
2726 if (has_mbyte)
2727 {
2728 colnr_T col;
2729 int i = 0;
2730
2731 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002732 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733
2734 return col;
2735 }
2736 else
2737# endif
2738 return ccline.cmdpos;
2739}
2740#endif
2741
2742#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2743/*
2744 * If part of the command line is an IM preedit string, redraw it with
2745 * IM feedback attributes. The cursor position is restored after drawing.
2746 */
2747 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002748redrawcmd_preedit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749{
2750 if ((State & CMDLINE)
2751 && xic != NULL
Bram Moolenaar494c82a2006-09-14 08:25:49 +00002752 /* && im_get_status() doesn't work when using SCIM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753 && !p_imdisable
2754 && im_is_preediting())
2755 {
2756 int cmdpos = 0;
2757 int cmdspos;
2758 int old_row;
2759 int old_col;
2760 colnr_T col;
2761
2762 old_row = msg_row;
2763 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002764 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765
2766# ifdef FEAT_MBYTE
2767 if (has_mbyte)
2768 {
2769 for (col = 0; col < preedit_start_col
2770 && cmdpos < ccline.cmdlen; ++col)
2771 {
2772 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002773 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774 }
2775 }
2776 else
2777# endif
2778 {
2779 cmdspos += preedit_start_col;
2780 cmdpos += preedit_start_col;
2781 }
2782
2783 msg_row = cmdline_row + (cmdspos / (int)Columns);
2784 msg_col = cmdspos % (int)Columns;
2785 if (msg_row >= Rows)
2786 msg_row = Rows - 1;
2787
2788 for (col = 0; cmdpos < ccline.cmdlen; ++col)
2789 {
2790 int char_len;
2791 int char_attr;
2792
2793 char_attr = im_get_feedback_attr(col);
2794 if (char_attr < 0)
2795 break; /* end of preedit string */
2796
2797# ifdef FEAT_MBYTE
2798 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002799 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 else
2801# endif
2802 char_len = 1;
2803
2804 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
2805 cmdpos += char_len;
2806 }
2807
2808 msg_row = old_row;
2809 msg_col = old_col;
2810 }
2811}
2812#endif /* FEAT_XIM && FEAT_GUI_GTK */
2813
2814/*
2815 * Allocate a new command line buffer.
2816 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
2817 * Returns the new value of ccline.cmdbuff and ccline.cmdbufflen.
2818 */
2819 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002820alloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821{
2822 /*
2823 * give some extra space to avoid having to allocate all the time
2824 */
2825 if (len < 80)
2826 len = 100;
2827 else
2828 len += 20;
2829
2830 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */
2831 ccline.cmdbufflen = len;
2832}
2833
2834/*
2835 * Re-allocate the command line to length len + something extra.
2836 * return FAIL for failure, OK otherwise
2837 */
2838 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002839realloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840{
2841 char_u *p;
2842
Bram Moolenaar673b87b2010-08-13 19:12:07 +02002843 if (len < ccline.cmdbufflen)
2844 return OK; /* no need to resize */
2845
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 p = ccline.cmdbuff;
2847 alloc_cmdbuff(len); /* will get some more */
2848 if (ccline.cmdbuff == NULL) /* out of memory */
2849 {
2850 ccline.cmdbuff = p; /* keep the old one */
2851 return FAIL;
2852 }
Bram Moolenaar35a34232010-08-13 16:51:26 +02002853 /* There isn't always a NUL after the command, but it may need to be
2854 * there, thus copy up to the NUL and add a NUL. */
2855 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen);
2856 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 vim_free(p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002858
2859 if (ccline.xpc != NULL
2860 && ccline.xpc->xp_pattern != NULL
2861 && ccline.xpc->xp_context != EXPAND_NOTHING
2862 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL)
2863 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00002864 int i = (int)(ccline.xpc->xp_pattern - p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002865
2866 /* If xp_pattern points inside the old cmdbuff it needs to be adjusted
2867 * to point into the newly allocated memory. */
2868 if (i >= 0 && i <= ccline.cmdlen)
2869 ccline.xpc->xp_pattern = ccline.cmdbuff + i;
2870 }
2871
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 return OK;
2873}
2874
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002875#if defined(FEAT_ARABIC) || defined(PROTO)
2876static char_u *arshape_buf = NULL;
2877
2878# if defined(EXITFREE) || defined(PROTO)
2879 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002880free_cmdline_buf(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002881{
2882 vim_free(arshape_buf);
2883}
2884# endif
2885#endif
2886
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887/*
2888 * Draw part of the cmdline at the current cursor position. But draw stars
2889 * when cmdline_star is TRUE.
2890 */
2891 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002892draw_cmdline(int start, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893{
2894#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2895 int i;
2896
2897 if (cmdline_star > 0)
2898 for (i = 0; i < len; ++i)
2899 {
2900 msg_putchar('*');
2901# ifdef FEAT_MBYTE
2902 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002903 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904# endif
2905 }
2906 else
2907#endif
2908#ifdef FEAT_ARABIC
2909 if (p_arshape && !p_tbidi && enc_utf8 && len > 0)
2910 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911 static int buflen = 0;
2912 char_u *p;
2913 int j;
2914 int newlen = 0;
2915 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00002916 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 int prev_c = 0;
2918 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002919 int u8c;
2920 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922
2923 /*
2924 * Do arabic shaping into a temporary buffer. This is very
2925 * inefficient!
2926 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002927 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002928 {
2929 /* Re-allocate the buffer. We keep it around to avoid a lot of
2930 * alloc()/free() calls. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002931 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002932 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002933 arshape_buf = alloc(buflen);
2934 if (arshape_buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935 return; /* out of memory */
2936 }
2937
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002938 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
2939 {
2940 /* Prepend a space to draw the leading composing char on. */
2941 arshape_buf[0] = ' ';
2942 newlen = 1;
2943 }
2944
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 for (j = start; j < start + len; j += mb_l)
2946 {
2947 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002948 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002949 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950 if (ARABIC_CHAR(u8c))
2951 {
2952 /* Do Arabic shaping. */
2953 if (cmdmsg_rl)
2954 {
2955 /* displaying from right to left */
2956 pc = prev_c;
2957 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002958 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959 if (j + mb_l >= start + len)
2960 nc = NUL;
2961 else
2962 nc = utf_ptr2char(p + mb_l);
2963 }
2964 else
2965 {
2966 /* displaying from left to right */
2967 if (j + mb_l >= start + len)
2968 pc = NUL;
2969 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002970 {
2971 int pcc[MAX_MCO];
2972
2973 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002975 pc1 = pcc[0];
2976 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977 nc = prev_c;
2978 }
2979 prev_c = u8c;
2980
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002981 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002983 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002984 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002986 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
2987 if (u8cc[1] != 0)
2988 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002989 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 }
2991 }
2992 else
2993 {
2994 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002995 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 newlen += mb_l;
2997 }
2998 }
2999
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003000 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001 }
3002 else
3003#endif
3004 msg_outtrans_len(ccline.cmdbuff + start, len);
3005}
3006
3007/*
3008 * Put a character on the command line. Shifts the following text to the
3009 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
3010 * "c" must be printable (fit in one display cell)!
3011 */
3012 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003013putcmdline(int c, int shift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014{
3015 if (cmd_silent)
3016 return;
3017 msg_no_more = TRUE;
3018 msg_putchar(c);
3019 if (shift)
3020 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
3021 msg_no_more = FALSE;
3022 cursorcmd();
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003023 extra_char = c;
3024 extra_char_shift = shift;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025}
3026
3027/*
3028 * Undo a putcmdline(c, FALSE).
3029 */
3030 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003031unputcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032{
3033 if (cmd_silent)
3034 return;
3035 msg_no_more = TRUE;
3036 if (ccline.cmdlen == ccline.cmdpos)
3037 msg_putchar(' ');
Bram Moolenaar64fdf5c2012-06-06 12:03:06 +02003038#ifdef FEAT_MBYTE
3039 else if (has_mbyte)
3040 draw_cmdline(ccline.cmdpos,
3041 (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos));
3042#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043 else
3044 draw_cmdline(ccline.cmdpos, 1);
3045 msg_no_more = FALSE;
3046 cursorcmd();
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003047 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048}
3049
3050/*
3051 * Put the given string, of the given length, onto the command line.
3052 * If len is -1, then STRLEN() is used to calculate the length.
3053 * If 'redraw' is TRUE then the new part of the command line, and the remaining
3054 * part will be redrawn, otherwise it will not. If this function is called
3055 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
3056 * called afterwards.
3057 */
3058 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003059put_on_cmdline(char_u *str, int len, int redraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060{
3061 int retval;
3062 int i;
3063 int m;
3064 int c;
3065
3066 if (len < 0)
3067 len = (int)STRLEN(str);
3068
3069 /* Check if ccline.cmdbuff needs to be longer */
3070 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003071 retval = realloc_cmdbuff(ccline.cmdlen + len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072 else
3073 retval = OK;
3074 if (retval == OK)
3075 {
3076 if (!ccline.overstrike)
3077 {
3078 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
3079 ccline.cmdbuff + ccline.cmdpos,
3080 (size_t)(ccline.cmdlen - ccline.cmdpos));
3081 ccline.cmdlen += len;
3082 }
3083 else
3084 {
3085#ifdef FEAT_MBYTE
3086 if (has_mbyte)
3087 {
3088 /* Count nr of characters in the new string. */
3089 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003090 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003091 ++m;
3092 /* Count nr of bytes in cmdline that are overwritten by these
3093 * characters. */
3094 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003095 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096 --m;
3097 if (i < ccline.cmdlen)
3098 {
3099 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
3100 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
3101 ccline.cmdlen += ccline.cmdpos + len - i;
3102 }
3103 else
3104 ccline.cmdlen = ccline.cmdpos + len;
3105 }
3106 else
3107#endif
3108 if (ccline.cmdpos + len > ccline.cmdlen)
3109 ccline.cmdlen = ccline.cmdpos + len;
3110 }
3111 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
3112 ccline.cmdbuff[ccline.cmdlen] = NUL;
3113
3114#ifdef FEAT_MBYTE
3115 if (enc_utf8)
3116 {
3117 /* When the inserted text starts with a composing character,
3118 * backup to the character before it. There could be two of them.
3119 */
3120 i = 0;
3121 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3122 while (ccline.cmdpos > 0 && utf_iscomposing(c))
3123 {
3124 i = (*mb_head_off)(ccline.cmdbuff,
3125 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3126 ccline.cmdpos -= i;
3127 len += i;
3128 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3129 }
3130# ifdef FEAT_ARABIC
3131 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
3132 {
3133 /* Check the previous character for Arabic combining pair. */
3134 i = (*mb_head_off)(ccline.cmdbuff,
3135 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3136 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
3137 + ccline.cmdpos - i), c))
3138 {
3139 ccline.cmdpos -= i;
3140 len += i;
3141 }
3142 else
3143 i = 0;
3144 }
3145# endif
3146 if (i != 0)
3147 {
3148 /* Also backup the cursor position. */
3149 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
3150 ccline.cmdspos -= i;
3151 msg_col -= i;
3152 if (msg_col < 0)
3153 {
3154 msg_col += Columns;
3155 --msg_row;
3156 }
3157 }
3158 }
3159#endif
3160
3161 if (redraw && !cmd_silent)
3162 {
3163 msg_no_more = TRUE;
3164 i = cmdline_row;
Bram Moolenaar73dc59a2011-09-30 17:46:21 +02003165 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
3167 /* Avoid clearing the rest of the line too often. */
3168 if (cmdline_row != i || ccline.overstrike)
3169 msg_clr_eos();
3170 msg_no_more = FALSE;
3171 }
3172#ifdef FEAT_FKMAP
3173 /*
3174 * If we are in Farsi command mode, the character input must be in
3175 * Insert mode. So do not advance the cmdpos.
3176 */
3177 if (!cmd_fkmap)
3178#endif
3179 {
3180 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003181 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003183 if (m < 0) /* overflow, Columns or Rows at weird value */
3184 m = MAXCOL;
3185 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186 else
3187 m = MAXCOL;
3188 for (i = 0; i < len; ++i)
3189 {
3190 c = cmdline_charsize(ccline.cmdpos);
3191#ifdef FEAT_MBYTE
3192 /* count ">" for a double-wide char that doesn't fit. */
3193 if (has_mbyte)
3194 correct_cmdspos(ccline.cmdpos, c);
3195#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00003196 /* Stop cursor at the end of the screen, but do increment the
3197 * insert position, so that entering a very long command
3198 * works, even though you can't see it. */
3199 if (ccline.cmdspos + c < m)
3200 ccline.cmdspos += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201#ifdef FEAT_MBYTE
3202 if (has_mbyte)
3203 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003204 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 if (c > len - i - 1)
3206 c = len - i - 1;
3207 ccline.cmdpos += c;
3208 i += c;
3209 }
3210#endif
3211 ++ccline.cmdpos;
3212 }
3213 }
3214 }
3215 if (redraw)
3216 msg_check();
3217 return retval;
3218}
3219
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003220static struct cmdline_info prev_ccline;
3221static int prev_ccline_used = FALSE;
3222
3223/*
3224 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
3225 * and overwrite it. But get_cmdline_str() may need it, thus make it
3226 * available globally in prev_ccline.
3227 */
3228 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003229save_cmdline(struct cmdline_info *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003230{
3231 if (!prev_ccline_used)
3232 {
3233 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info));
3234 prev_ccline_used = TRUE;
3235 }
3236 *ccp = prev_ccline;
3237 prev_ccline = ccline;
3238 ccline.cmdbuff = NULL;
3239 ccline.cmdprompt = NULL;
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003240 ccline.xpc = NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003241}
3242
3243/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003244 * Restore ccline after it has been saved with save_cmdline().
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003245 */
3246 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003247restore_cmdline(struct cmdline_info *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003248{
3249 ccline = prev_ccline;
3250 prev_ccline = *ccp;
3251}
3252
Bram Moolenaar5a305422006-04-28 22:38:25 +00003253#if defined(FEAT_EVAL) || defined(PROTO)
3254/*
3255 * Save the command line into allocated memory. Returns a pointer to be
3256 * passed to restore_cmdline_alloc() later.
3257 * Returns NULL when failed.
3258 */
3259 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003260save_cmdline_alloc(void)
Bram Moolenaar5a305422006-04-28 22:38:25 +00003261{
3262 struct cmdline_info *p;
3263
3264 p = (struct cmdline_info *)alloc((unsigned)sizeof(struct cmdline_info));
3265 if (p != NULL)
3266 save_cmdline(p);
3267 return (char_u *)p;
3268}
3269
3270/*
3271 * Restore the command line from the return value of save_cmdline_alloc().
3272 */
3273 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003274restore_cmdline_alloc(char_u *p)
Bram Moolenaar5a305422006-04-28 22:38:25 +00003275{
3276 if (p != NULL)
3277 {
3278 restore_cmdline((struct cmdline_info *)p);
3279 vim_free(p);
3280 }
3281}
3282#endif
3283
Bram Moolenaar8299df92004-07-10 09:47:34 +00003284/*
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003285 * Paste a yank register into the command line.
3286 * Used by CTRL-R command in command-line mode.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003287 * insert_reg() can't be used here, because special characters from the
3288 * register contents will be interpreted as commands.
3289 *
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003290 * Return FAIL for failure, OK otherwise.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003291 */
3292 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003293cmdline_paste(
3294 int regname,
3295 int literally, /* Insert text literally instead of "as typed" */
3296 int remcr) /* remove trailing CR */
Bram Moolenaar8299df92004-07-10 09:47:34 +00003297{
3298 long i;
3299 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003300 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003301 int allocated;
3302 struct cmdline_info save_ccline;
3303
3304 /* check for valid regname; also accept special characters for CTRL-R in
3305 * the command line */
3306 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
3307 && regname != Ctrl_A && !valid_yank_reg(regname, FALSE))
3308 return FAIL;
3309
3310 /* A register containing CTRL-R can cause an endless loop. Allow using
3311 * CTRL-C to break the loop. */
3312 line_breakcheck();
3313 if (got_int)
3314 return FAIL;
3315
3316#ifdef FEAT_CLIPBOARD
3317 regname = may_get_selection(regname);
3318#endif
3319
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003320 /* Need to save and restore ccline. And set "textlock" to avoid nasty
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003321 * things like going to another buffer when evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003322 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003323 ++textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003324 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003325 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003326 restore_cmdline(&save_ccline);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003327
3328 if (i)
3329 {
3330 /* Got the value of a special register in "arg". */
3331 if (arg == NULL)
3332 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003333
3334 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
3335 * part of the word. */
3336 p = arg;
3337 if (p_is && regname == Ctrl_W)
3338 {
3339 char_u *w;
3340 int len;
3341
3342 /* Locate start of last word in the cmd buffer. */
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003343 for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; )
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003344 {
3345#ifdef FEAT_MBYTE
3346 if (has_mbyte)
3347 {
3348 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
3349 if (!vim_iswordc(mb_ptr2char(w - len)))
3350 break;
3351 w -= len;
3352 }
3353 else
3354#endif
3355 {
3356 if (!vim_iswordc(w[-1]))
3357 break;
3358 --w;
3359 }
3360 }
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003361 len = (int)((ccline.cmdbuff + ccline.cmdpos) - w);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003362 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
3363 p += len;
3364 }
3365
3366 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003367 if (allocated)
3368 vim_free(arg);
3369 return OK;
3370 }
3371
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003372 return cmdline_paste_reg(regname, literally, remcr);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003373}
3374
3375/*
3376 * Put a string on the command line.
3377 * When "literally" is TRUE, insert literally.
3378 * When "literally" is FALSE, insert as typed, but don't leave the command
3379 * line.
3380 */
3381 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003382cmdline_paste_str(char_u *s, int literally)
Bram Moolenaar8299df92004-07-10 09:47:34 +00003383{
3384 int c, cv;
3385
3386 if (literally)
3387 put_on_cmdline(s, -1, TRUE);
3388 else
3389 while (*s != NUL)
3390 {
3391 cv = *s;
3392 if (cv == Ctrl_V && s[1])
3393 ++s;
3394#ifdef FEAT_MBYTE
3395 if (has_mbyte)
Bram Moolenaar48be32b2008-06-20 10:56:16 +00003396 c = mb_cptr2char_adv(&s);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003397 else
3398#endif
3399 c = *s++;
Bram Moolenaare79abdd2012-06-29 13:44:41 +02003400 if (cv == Ctrl_V || c == ESC || c == Ctrl_C
3401 || c == CAR || c == NL || c == Ctrl_L
Bram Moolenaar8299df92004-07-10 09:47:34 +00003402#ifdef UNIX
3403 || c == intr_char
3404#endif
3405 || (c == Ctrl_BSL && *s == Ctrl_N))
3406 stuffcharReadbuff(Ctrl_V);
3407 stuffcharReadbuff(c);
3408 }
3409}
3410
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411#ifdef FEAT_WILDMENU
3412/*
3413 * Delete characters on the command line, from "from" to the current
3414 * position.
3415 */
3416 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003417cmdline_del(int from)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418{
3419 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
3420 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3421 ccline.cmdlen -= ccline.cmdpos - from;
3422 ccline.cmdpos = from;
3423}
3424#endif
3425
3426/*
Bram Moolenaar89c79b92016-05-05 17:18:41 +02003427 * This function is called when the screen size changes and with incremental
3428 * search and in other situations where the command line may have been
3429 * overwritten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 */
3431 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003432redrawcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433{
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003434 redrawcmdline_ex(TRUE);
3435}
3436
3437 void
3438redrawcmdline_ex(int do_compute_cmdrow)
3439{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 if (cmd_silent)
3441 return;
3442 need_wait_return = FALSE;
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003443 if (do_compute_cmdrow)
3444 compute_cmdrow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 redrawcmd();
3446 cursorcmd();
3447}
3448
3449 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003450redrawcmdprompt(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451{
3452 int i;
3453
3454 if (cmd_silent)
3455 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003456 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 msg_putchar(ccline.cmdfirstc);
3458 if (ccline.cmdprompt != NULL)
3459 {
3460 msg_puts_attr(ccline.cmdprompt, ccline.cmdattr);
3461 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
3462 /* do the reverse of set_cmdspos() */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003463 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464 --ccline.cmdindent;
3465 }
3466 else
3467 for (i = ccline.cmdindent; i > 0; --i)
3468 msg_putchar(' ');
3469}
3470
3471/*
3472 * Redraw what is currently on the command line.
3473 */
3474 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003475redrawcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003476{
3477 if (cmd_silent)
3478 return;
3479
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003480 /* when 'incsearch' is set there may be no command line while redrawing */
3481 if (ccline.cmdbuff == NULL)
3482 {
3483 windgoto(cmdline_row, 0);
3484 msg_clr_eos();
3485 return;
3486 }
3487
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 msg_start();
3489 redrawcmdprompt();
3490
3491 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
3492 msg_no_more = TRUE;
3493 draw_cmdline(0, ccline.cmdlen);
3494 msg_clr_eos();
3495 msg_no_more = FALSE;
3496
3497 set_cmdspos_cursor();
Bram Moolenaara92522f2017-07-15 15:21:38 +02003498 if (extra_char != NUL)
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003499 putcmdline(extra_char, extra_char_shift);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500
3501 /*
3502 * An emsg() before may have set msg_scroll. This is used in normal mode,
3503 * in cmdline mode we can reset them now.
3504 */
3505 msg_scroll = FALSE; /* next message overwrites cmdline */
3506
3507 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
3508 * in cmdline mode */
3509 skip_redraw = FALSE;
3510}
3511
3512 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003513compute_cmdrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003515 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516 cmdline_row = Rows - 1;
3517 else
3518 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
Bram Moolenaare0de17d2017-09-24 16:24:34 +02003519 + lastwin->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520}
3521
3522 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003523cursorcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524{
3525 if (cmd_silent)
3526 return;
3527
3528#ifdef FEAT_RIGHTLEFT
3529 if (cmdmsg_rl)
3530 {
3531 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3532 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3533 if (msg_row <= 0)
3534 msg_row = Rows - 1;
3535 }
3536 else
3537#endif
3538 {
3539 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3540 msg_col = ccline.cmdspos % (int)Columns;
3541 if (msg_row >= Rows)
3542 msg_row = Rows - 1;
3543 }
3544
3545 windgoto(msg_row, msg_col);
3546#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar5c6dbcb2017-08-30 22:00:20 +02003547 if (p_imst == IM_ON_THE_SPOT)
3548 redrawcmd_preedit();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003549#endif
3550#ifdef MCH_CURSOR_SHAPE
3551 mch_update_cursor();
3552#endif
3553}
3554
3555 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003556gotocmdline(int clr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557{
3558 msg_start();
3559#ifdef FEAT_RIGHTLEFT
3560 if (cmdmsg_rl)
3561 msg_col = Columns - 1;
3562 else
3563#endif
3564 msg_col = 0; /* always start in column 0 */
3565 if (clr) /* clear the bottom line(s) */
3566 msg_clr_eos(); /* will reset clear_cmdline */
3567 windgoto(cmdline_row, 0);
3568}
3569
3570/*
3571 * Check the word in front of the cursor for an abbreviation.
3572 * Called when the non-id character "c" has been entered.
3573 * When an abbreviation is recognized it is removed from the text with
3574 * backspaces and the replacement string is inserted, followed by "c".
3575 */
3576 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003577ccheck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578{
3579 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
3580 return FALSE;
3581
3582 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, 0);
3583}
3584
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003585#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3586 static int
3587#ifdef __BORLANDC__
3588_RTLENTRYF
3589#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003590sort_func_compare(const void *s1, const void *s2)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003591{
3592 char_u *p1 = *(char_u **)s1;
3593 char_u *p2 = *(char_u **)s2;
3594
3595 if (*p1 != '<' && *p2 == '<') return -1;
3596 if (*p1 == '<' && *p2 != '<') return 1;
3597 return STRCMP(p1, p2);
3598}
3599#endif
3600
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601/*
3602 * Return FAIL if this is not an appropriate context in which to do
3603 * completion of anything, return OK if it is (even if there are no matches).
3604 * For the caller, this means that the character is just passed through like a
3605 * normal character (instead of being expanded). This allows :s/^I^D etc.
3606 */
3607 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003608nextwild(
3609 expand_T *xp,
3610 int type,
3611 int options, /* extra options for ExpandOne() */
3612 int escape) /* if TRUE, escape the returned matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613{
3614 int i, j;
3615 char_u *p1;
3616 char_u *p2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 int difflen;
3618 int v;
3619
3620 if (xp->xp_numfiles == -1)
3621 {
3622 set_expand_context(xp);
3623 cmd_showtail = expand_showtail(xp);
3624 }
3625
3626 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
3627 {
3628 beep_flush();
3629 return OK; /* Something illegal on command line */
3630 }
3631 if (xp->xp_context == EXPAND_NOTHING)
3632 {
3633 /* Caller can use the character as a normal char instead */
3634 return FAIL;
3635 }
3636
3637 MSG_PUTS("..."); /* show that we are busy */
3638 out_flush();
3639
3640 i = (int)(xp->xp_pattern - ccline.cmdbuff);
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003641 xp->xp_pattern_len = ccline.cmdpos - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642
3643 if (type == WILD_NEXT || type == WILD_PREV)
3644 {
3645 /*
3646 * Get next/previous match for a previous expanded pattern.
3647 */
3648 p2 = ExpandOne(xp, NULL, NULL, 0, type);
3649 }
3650 else
3651 {
3652 /*
3653 * Translate string into pattern and expand it.
3654 */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003655 if ((p1 = addstar(xp->xp_pattern, xp->xp_pattern_len,
3656 xp->xp_context)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657 p2 = NULL;
3658 else
3659 {
Bram Moolenaar94950a92010-12-02 16:01:29 +01003660 int use_options = options |
Bram Moolenaarb3479632012-11-28 16:49:58 +01003661 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT;
3662 if (escape)
3663 use_options |= WILD_ESCAPE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01003664
3665 if (p_wic)
3666 use_options += WILD_ICASE;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003667 p2 = ExpandOne(xp, p1,
3668 vim_strnsave(&ccline.cmdbuff[i], xp->xp_pattern_len),
Bram Moolenaar94950a92010-12-02 16:01:29 +01003669 use_options, type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670 vim_free(p1);
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003671 /* longest match: make sure it is not shorter, happens with :help */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 if (p2 != NULL && type == WILD_LONGEST)
3673 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003674 for (j = 0; j < xp->xp_pattern_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675 if (ccline.cmdbuff[i + j] == '*'
3676 || ccline.cmdbuff[i + j] == '?')
3677 break;
3678 if ((int)STRLEN(p2) < j)
3679 {
3680 vim_free(p2);
3681 p2 = NULL;
3682 }
3683 }
3684 }
3685 }
3686
3687 if (p2 != NULL && !got_int)
3688 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003689 difflen = (int)STRLEN(p2) - xp->xp_pattern_len;
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003690 if (ccline.cmdlen + difflen + 4 > ccline.cmdbufflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003691 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003692 v = realloc_cmdbuff(ccline.cmdlen + difflen + 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 xp->xp_pattern = ccline.cmdbuff + i;
3694 }
3695 else
3696 v = OK;
3697 if (v == OK)
3698 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003699 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen],
3700 &ccline.cmdbuff[ccline.cmdpos],
3701 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3702 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 ccline.cmdlen += difflen;
3704 ccline.cmdpos += difflen;
3705 }
3706 }
3707 vim_free(p2);
3708
3709 redrawcmd();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003710 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711
3712 /* When expanding a ":map" command and no matches are found, assume that
3713 * the key is supposed to be inserted literally */
3714 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL)
3715 return FAIL;
3716
3717 if (xp->xp_numfiles <= 0 && p2 == NULL)
3718 beep_flush();
3719 else if (xp->xp_numfiles == 1)
3720 /* free expanded pattern */
3721 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
3722
3723 return OK;
3724}
3725
3726/*
3727 * Do wildcard expansion on the string 'str'.
3728 * Chars that should not be expanded must be preceded with a backslash.
Bram Moolenaarf9821062008-06-20 16:31:07 +00003729 * Return a pointer to allocated memory containing the new string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730 * Return NULL for failure.
3731 *
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003732 * "orig" is the originally expanded string, copied to allocated memory. It
3733 * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or
3734 * WILD_PREV "orig" should be NULL.
3735 *
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003736 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode"
3737 * is WILD_EXPAND_FREE or WILD_ALL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738 *
3739 * mode = WILD_FREE: just free previously expanded matches
3740 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches
3741 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches
3742 * mode = WILD_NEXT: use next match in multiple match, wrap to first
3743 * mode = WILD_PREV: use previous match in multiple match, wrap to first
3744 * mode = WILD_ALL: return all matches concatenated
3745 * mode = WILD_LONGEST: return longest matched part
Bram Moolenaar146e9c32012-03-07 19:18:23 +01003746 * mode = WILD_ALL_KEEP: get all matches, keep matches
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747 *
3748 * options = WILD_LIST_NOTFOUND: list entries without a match
3749 * options = WILD_HOME_REPLACE: do home_replace() for buffer names
3750 * options = WILD_USE_NL: Use '\n' for WILD_ALL
3751 * options = WILD_NO_BEEP: Don't beep for multiple matches
3752 * options = WILD_ADD_SLASH: add a slash after directory names
3753 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries
3754 * options = WILD_SILENT: don't print warning messages
3755 * options = WILD_ESCAPE: put backslash before special chars
Bram Moolenaar94950a92010-12-02 16:01:29 +01003756 * options = WILD_ICASE: ignore case for files
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757 *
3758 * The variables xp->xp_context and xp->xp_backslash must have been set!
3759 */
3760 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003761ExpandOne(
3762 expand_T *xp,
3763 char_u *str,
3764 char_u *orig, /* allocated copy of original of expanded string */
3765 int options,
3766 int mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767{
3768 char_u *ss = NULL;
3769 static int findex;
3770 static char_u *orig_save = NULL; /* kept value of orig */
Bram Moolenaar96426642007-10-30 16:37:15 +00003771 int orig_saved = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772 int i;
3773 long_u len;
3774 int non_suf_match; /* number without matching suffix */
3775
3776 /*
3777 * first handle the case of using an old match
3778 */
3779 if (mode == WILD_NEXT || mode == WILD_PREV)
3780 {
3781 if (xp->xp_numfiles > 0)
3782 {
3783 if (mode == WILD_PREV)
3784 {
3785 if (findex == -1)
3786 findex = xp->xp_numfiles;
3787 --findex;
3788 }
3789 else /* mode == WILD_NEXT */
3790 ++findex;
3791
3792 /*
3793 * When wrapping around, return the original string, set findex to
3794 * -1.
3795 */
3796 if (findex < 0)
3797 {
3798 if (orig_save == NULL)
3799 findex = xp->xp_numfiles - 1;
3800 else
3801 findex = -1;
3802 }
3803 if (findex >= xp->xp_numfiles)
3804 {
3805 if (orig_save == NULL)
3806 findex = 0;
3807 else
3808 findex = -1;
3809 }
3810#ifdef FEAT_WILDMENU
3811 if (p_wmnu)
3812 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files,
3813 findex, cmd_showtail);
3814#endif
3815 if (findex == -1)
3816 return vim_strsave(orig_save);
3817 return vim_strsave(xp->xp_files[findex]);
3818 }
3819 else
3820 return NULL;
3821 }
3822
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003823 /* free old names */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST)
3825 {
3826 FreeWild(xp->xp_numfiles, xp->xp_files);
3827 xp->xp_numfiles = -1;
3828 vim_free(orig_save);
3829 orig_save = NULL;
3830 }
3831 findex = 0;
3832
3833 if (mode == WILD_FREE) /* only release file name */
3834 return NULL;
3835
3836 if (xp->xp_numfiles == -1)
3837 {
3838 vim_free(orig_save);
3839 orig_save = orig;
Bram Moolenaar96426642007-10-30 16:37:15 +00003840 orig_saved = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841
3842 /*
3843 * Do the expansion.
3844 */
3845 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files,
3846 options) == FAIL)
3847 {
3848#ifdef FNAME_ILLEGAL
3849 /* Illegal file name has been silently skipped. But when there
3850 * are wildcards, the real problem is that there was no match,
3851 * causing the pattern to be added, which has illegal characters.
3852 */
3853 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND))
3854 EMSG2(_(e_nomatch2), str);
3855#endif
3856 }
3857 else if (xp->xp_numfiles == 0)
3858 {
3859 if (!(options & WILD_SILENT))
3860 EMSG2(_(e_nomatch2), str);
3861 }
3862 else
3863 {
3864 /* Escape the matches for use on the command line. */
3865 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options);
3866
3867 /*
3868 * Check for matching suffixes in file names.
3869 */
Bram Moolenaar146e9c32012-03-07 19:18:23 +01003870 if (mode != WILD_ALL && mode != WILD_ALL_KEEP
3871 && mode != WILD_LONGEST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872 {
3873 if (xp->xp_numfiles)
3874 non_suf_match = xp->xp_numfiles;
3875 else
3876 non_suf_match = 1;
3877 if ((xp->xp_context == EXPAND_FILES
3878 || xp->xp_context == EXPAND_DIRECTORIES)
3879 && xp->xp_numfiles > 1)
3880 {
3881 /*
3882 * More than one match; check suffix.
3883 * The files will have been sorted on matching suffix in
3884 * expand_wildcards, only need to check the first two.
3885 */
3886 non_suf_match = 0;
3887 for (i = 0; i < 2; ++i)
3888 if (match_suffix(xp->xp_files[i]))
3889 ++non_suf_match;
3890 }
3891 if (non_suf_match != 1)
3892 {
3893 /* Can we ever get here unless it's while expanding
3894 * interactively? If not, we can get rid of this all
3895 * together. Don't really want to wait for this message
3896 * (and possibly have to hit return to continue!).
3897 */
3898 if (!(options & WILD_SILENT))
3899 EMSG(_(e_toomany));
3900 else if (!(options & WILD_NO_BEEP))
3901 beep_flush();
3902 }
3903 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE))
3904 ss = vim_strsave(xp->xp_files[0]);
3905 }
3906 }
3907 }
3908
3909 /* Find longest common part */
3910 if (mode == WILD_LONGEST && xp->xp_numfiles > 0)
3911 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003912 int mb_len = 1;
3913 int c0, ci;
3914
3915 for (len = 0; xp->xp_files[0][len]; len += mb_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003917#ifdef FEAT_MBYTE
3918 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003920 mb_len = (*mb_ptr2len)(&xp->xp_files[0][len]);
3921 c0 =(* mb_ptr2char)(&xp->xp_files[0][len]);
3922 }
3923 else
3924#endif
Bram Moolenaare4eda3b2015-11-21 16:28:50 +01003925 c0 = xp->xp_files[0][len];
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003926 for (i = 1; i < xp->xp_numfiles; ++i)
3927 {
3928#ifdef FEAT_MBYTE
3929 if (has_mbyte)
3930 ci =(* mb_ptr2char)(&xp->xp_files[i][len]);
3931 else
3932#endif
3933 ci = xp->xp_files[i][len];
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01003934 if (p_fic && (xp->xp_context == EXPAND_DIRECTORIES
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935 || xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003936 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01003937 || xp->xp_context == EXPAND_BUFFERS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003939 if (MB_TOLOWER(c0) != MB_TOLOWER(ci))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940 break;
3941 }
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003942 else if (c0 != ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943 break;
3944 }
3945 if (i < xp->xp_numfiles)
3946 {
3947 if (!(options & WILD_NO_BEEP))
Bram Moolenaar165bc692015-07-21 17:53:25 +02003948 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949 break;
3950 }
3951 }
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003952
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 ss = alloc((unsigned)len + 1);
3954 if (ss)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003955 vim_strncpy(ss, xp->xp_files[0], (size_t)len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 findex = -1; /* next p_wc gets first one */
3957 }
3958
3959 /* Concatenate all matching names */
3960 if (mode == WILD_ALL && xp->xp_numfiles > 0)
3961 {
3962 len = 0;
3963 for (i = 0; i < xp->xp_numfiles; ++i)
3964 len += (long_u)STRLEN(xp->xp_files[i]) + 1;
3965 ss = lalloc(len, TRUE);
3966 if (ss != NULL)
3967 {
3968 *ss = NUL;
3969 for (i = 0; i < xp->xp_numfiles; ++i)
3970 {
3971 STRCAT(ss, xp->xp_files[i]);
3972 if (i != xp->xp_numfiles - 1)
3973 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " ");
3974 }
3975 }
3976 }
3977
3978 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL)
3979 ExpandCleanup(xp);
3980
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003981 /* Free "orig" if it wasn't stored in "orig_save". */
Bram Moolenaar96426642007-10-30 16:37:15 +00003982 if (!orig_saved)
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003983 vim_free(orig);
3984
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 return ss;
3986}
3987
3988/*
3989 * Prepare an expand structure for use.
3990 */
3991 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003992ExpandInit(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993{
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003994 xp->xp_pattern = NULL;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003995 xp->xp_pattern_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003996 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003997#ifndef BACKSLASH_IN_FILENAME
3998 xp->xp_shell = FALSE;
3999#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004000 xp->xp_numfiles = -1;
4001 xp->xp_files = NULL;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00004002#if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
4003 xp->xp_arg = NULL;
4004#endif
Bram Moolenaarb7515462013-06-29 12:58:33 +02004005 xp->xp_line = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006}
4007
4008/*
4009 * Cleanup an expand structure after use.
4010 */
4011 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004012ExpandCleanup(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013{
4014 if (xp->xp_numfiles >= 0)
4015 {
4016 FreeWild(xp->xp_numfiles, xp->xp_files);
4017 xp->xp_numfiles = -1;
4018 }
4019}
4020
4021 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004022ExpandEscape(
4023 expand_T *xp,
4024 char_u *str,
4025 int numfiles,
4026 char_u **files,
4027 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028{
4029 int i;
4030 char_u *p;
4031
4032 /*
4033 * May change home directory back to "~"
4034 */
4035 if (options & WILD_HOME_REPLACE)
4036 tilde_replace(str, numfiles, files);
4037
4038 if (options & WILD_ESCAPE)
4039 {
4040 if (xp->xp_context == EXPAND_FILES
Bram Moolenaarcca92ec2011-04-28 17:21:53 +02004041 || xp->xp_context == EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004042 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004043 || xp->xp_context == EXPAND_BUFFERS
4044 || xp->xp_context == EXPAND_DIRECTORIES)
4045 {
4046 /*
4047 * Insert a backslash into a file name before a space, \, %, #
4048 * and wildmatch characters, except '~'.
4049 */
4050 for (i = 0; i < numfiles; ++i)
4051 {
4052 /* for ":set path=" we need to escape spaces twice */
4053 if (xp->xp_backslash == XP_BS_THREE)
4054 {
4055 p = vim_strsave_escaped(files[i], (char_u *)" ");
4056 if (p != NULL)
4057 {
4058 vim_free(files[i]);
4059 files[i] = p;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00004060#if defined(BACKSLASH_IN_FILENAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004061 p = vim_strsave_escaped(files[i], (char_u *)" ");
4062 if (p != NULL)
4063 {
4064 vim_free(files[i]);
4065 files[i] = p;
4066 }
4067#endif
4068 }
4069 }
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00004070#ifdef BACKSLASH_IN_FILENAME
4071 p = vim_strsave_fnameescape(files[i], FALSE);
4072#else
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004073 p = vim_strsave_fnameescape(files[i], xp->xp_shell);
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00004074#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 if (p != NULL)
4076 {
4077 vim_free(files[i]);
4078 files[i] = p;
4079 }
4080
4081 /* If 'str' starts with "\~", replace "~" at start of
4082 * files[i] with "\~". */
4083 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~')
Bram Moolenaar45360022005-07-21 21:08:21 +00004084 escape_fname(&files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085 }
4086 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar45360022005-07-21 21:08:21 +00004087
4088 /* If the first file starts with a '+' escape it. Otherwise it
4089 * could be seen as "+cmd". */
4090 if (*files[0] == '+')
4091 escape_fname(&files[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092 }
4093 else if (xp->xp_context == EXPAND_TAGS)
4094 {
4095 /*
4096 * Insert a backslash before characters in a tag name that
4097 * would terminate the ":tag" command.
4098 */
4099 for (i = 0; i < numfiles; ++i)
4100 {
4101 p = vim_strsave_escaped(files[i], (char_u *)"\\|\"");
4102 if (p != NULL)
4103 {
4104 vim_free(files[i]);
4105 files[i] = p;
4106 }
4107 }
4108 }
4109 }
4110}
4111
4112/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004113 * Escape special characters in "fname" for when used as a file name argument
4114 * after a Vim command, or, when "shell" is non-zero, a shell command.
4115 * Returns the result in allocated memory.
4116 */
4117 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004118vim_strsave_fnameescape(char_u *fname, int shell)
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004119{
Bram Moolenaar7693ec62008-07-24 18:29:37 +00004120 char_u *p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004121#ifdef BACKSLASH_IN_FILENAME
4122 char_u buf[20];
4123 int j = 0;
4124
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01004125 /* Don't escape '[', '{' and '!' if they are in 'isfname'. */
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004126 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01004127 if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p))
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004128 buf[j++] = *p;
4129 buf[j] = NUL;
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004130 p = vim_strsave_escaped(fname, buf);
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004131#else
Bram Moolenaar7693ec62008-07-24 18:29:37 +00004132 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
4133 if (shell && csh_like_shell() && p != NULL)
4134 {
4135 char_u *s;
4136
4137 /* For csh and similar shells need to put two backslashes before '!'.
4138 * One is taken by Vim, one by the shell. */
4139 s = vim_strsave_escaped(p, (char_u *)"!");
4140 vim_free(p);
4141 p = s;
4142 }
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004143#endif
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004144
4145 /* '>' and '+' are special at the start of some commands, e.g. ":edit" and
4146 * ":write". "cd -" has a special meaning. */
Bram Moolenaara9d52e32010-07-31 16:44:19 +02004147 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL)))
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004148 escape_fname(&p);
4149
4150 return p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004151}
4152
4153/*
Bram Moolenaar45360022005-07-21 21:08:21 +00004154 * Put a backslash before the file name in "pp", which is in allocated memory.
4155 */
4156 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004157escape_fname(char_u **pp)
Bram Moolenaar45360022005-07-21 21:08:21 +00004158{
4159 char_u *p;
4160
4161 p = alloc((unsigned)(STRLEN(*pp) + 2));
4162 if (p != NULL)
4163 {
4164 p[0] = '\\';
4165 STRCPY(p + 1, *pp);
4166 vim_free(*pp);
4167 *pp = p;
4168 }
4169}
4170
4171/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004172 * For each file name in files[num_files]:
4173 * If 'orig_pat' starts with "~/", replace the home directory with "~".
4174 */
4175 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004176tilde_replace(
4177 char_u *orig_pat,
4178 int num_files,
4179 char_u **files)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004180{
4181 int i;
4182 char_u *p;
4183
4184 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
4185 {
4186 for (i = 0; i < num_files; ++i)
4187 {
4188 p = home_replace_save(NULL, files[i]);
4189 if (p != NULL)
4190 {
4191 vim_free(files[i]);
4192 files[i] = p;
4193 }
4194 }
4195 }
4196}
4197
4198/*
4199 * Show all matches for completion on the command line.
4200 * Returns EXPAND_NOTHING when the character that triggered expansion should
4201 * be inserted like a normal character.
4202 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004203 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004204showmatches(expand_T *xp, int wildmenu UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205{
4206#define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m])
4207 int num_files;
4208 char_u **files_found;
4209 int i, j, k;
4210 int maxlen;
4211 int lines;
4212 int columns;
4213 char_u *p;
4214 int lastlen;
4215 int attr;
4216 int showtail;
4217
4218 if (xp->xp_numfiles == -1)
4219 {
4220 set_expand_context(xp);
4221 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos,
4222 &num_files, &files_found);
4223 showtail = expand_showtail(xp);
4224 if (i != EXPAND_OK)
4225 return i;
4226
4227 }
4228 else
4229 {
4230 num_files = xp->xp_numfiles;
4231 files_found = xp->xp_files;
4232 showtail = cmd_showtail;
4233 }
4234
4235#ifdef FEAT_WILDMENU
4236 if (!wildmenu)
4237 {
4238#endif
4239 msg_didany = FALSE; /* lines_left will be set */
4240 msg_start(); /* prepare for paging */
4241 msg_putchar('\n');
4242 out_flush();
4243 cmdline_row = msg_row;
4244 msg_didany = FALSE; /* lines_left will be set again */
4245 msg_start(); /* prepare for paging */
4246#ifdef FEAT_WILDMENU
4247 }
4248#endif
4249
4250 if (got_int)
4251 got_int = FALSE; /* only int. the completion, not the cmd line */
4252#ifdef FEAT_WILDMENU
4253 else if (wildmenu)
Bram Moolenaaref8eb082017-03-30 22:04:55 +02004254 win_redr_status_matches(xp, num_files, files_found, -1, showtail);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255#endif
4256 else
4257 {
4258 /* find the length of the longest file name */
4259 maxlen = 0;
4260 for (i = 0; i < num_files; ++i)
4261 {
4262 if (!showtail && (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004263 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004264 || xp->xp_context == EXPAND_BUFFERS))
4265 {
4266 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE);
4267 j = vim_strsize(NameBuff);
4268 }
4269 else
4270 j = vim_strsize(L_SHOWFILE(i));
4271 if (j > maxlen)
4272 maxlen = j;
4273 }
4274
4275 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4276 lines = num_files;
4277 else
4278 {
4279 /* compute the number of columns and lines for the listing */
4280 maxlen += 2; /* two spaces between file names */
4281 columns = ((int)Columns + 2) / maxlen;
4282 if (columns < 1)
4283 columns = 1;
4284 lines = (num_files + columns - 1) / columns;
4285 }
4286
Bram Moolenaar8820b482017-03-16 17:23:31 +01004287 attr = HL_ATTR(HLF_D); /* find out highlighting for directories */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288
4289 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4290 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01004291 MSG_PUTS_ATTR(_("tagname"), HL_ATTR(HLF_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292 msg_clr_eos();
4293 msg_advance(maxlen - 3);
Bram Moolenaar8820b482017-03-16 17:23:31 +01004294 MSG_PUTS_ATTR(_(" kind file\n"), HL_ATTR(HLF_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295 }
4296
4297 /* list the files line by line */
4298 for (i = 0; i < lines; ++i)
4299 {
4300 lastlen = 999;
4301 for (k = i; k < num_files; k += lines)
4302 {
4303 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4304 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01004305 msg_outtrans_attr(files_found[k], HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306 p = files_found[k] + STRLEN(files_found[k]) + 1;
4307 msg_advance(maxlen + 1);
4308 msg_puts(p);
4309 msg_advance(maxlen + 3);
Bram Moolenaar8820b482017-03-16 17:23:31 +01004310 msg_puts_long_attr(p + 2, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311 break;
4312 }
4313 for (j = maxlen - lastlen; --j >= 0; )
4314 msg_putchar(' ');
4315 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004316 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 || xp->xp_context == EXPAND_BUFFERS)
4318 {
Bram Moolenaarb91e59b2010-03-17 19:13:27 +01004319 /* highlight directories */
Bram Moolenaar63fa5262010-03-23 18:06:52 +01004320 if (xp->xp_numfiles != -1)
4321 {
4322 char_u *halved_slash;
4323 char_u *exp_path;
4324
4325 /* Expansion was done before and special characters
4326 * were escaped, need to halve backslashes. Also
4327 * $HOME has been replaced with ~/. */
4328 exp_path = expand_env_save_opt(files_found[k], TRUE);
4329 halved_slash = backslash_halve_save(
4330 exp_path != NULL ? exp_path : files_found[k]);
4331 j = mch_isdir(halved_slash != NULL ? halved_slash
4332 : files_found[k]);
4333 vim_free(exp_path);
4334 vim_free(halved_slash);
4335 }
4336 else
4337 /* Expansion was done here, file names are literal. */
4338 j = mch_isdir(files_found[k]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 if (showtail)
4340 p = L_SHOWFILE(k);
4341 else
4342 {
4343 home_replace(NULL, files_found[k], NameBuff, MAXPATHL,
4344 TRUE);
4345 p = NameBuff;
4346 }
4347 }
4348 else
4349 {
4350 j = FALSE;
4351 p = L_SHOWFILE(k);
4352 }
4353 lastlen = msg_outtrans_attr(p, j ? attr : 0);
4354 }
4355 if (msg_col > 0) /* when not wrapped around */
4356 {
4357 msg_clr_eos();
4358 msg_putchar('\n');
4359 }
4360 out_flush(); /* show one line at a time */
4361 if (got_int)
4362 {
4363 got_int = FALSE;
4364 break;
4365 }
4366 }
4367
4368 /*
4369 * we redraw the command below the lines that we have just listed
4370 * This is a bit tricky, but it saves a lot of screen updating.
4371 */
4372 cmdline_row = msg_row; /* will put it back later */
4373 }
4374
4375 if (xp->xp_numfiles == -1)
4376 FreeWild(num_files, files_found);
4377
4378 return EXPAND_OK;
4379}
4380
4381/*
4382 * Private gettail for showmatches() (and win_redr_status_matches()):
4383 * Find tail of file name path, but ignore trailing "/".
4384 */
4385 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004386sm_gettail(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387{
4388 char_u *p;
4389 char_u *t = s;
4390 int had_sep = FALSE;
4391
4392 for (p = s; *p != NUL; )
4393 {
4394 if (vim_ispathsep(*p)
4395#ifdef BACKSLASH_IN_FILENAME
4396 && !rem_backslash(p)
4397#endif
4398 )
4399 had_sep = TRUE;
4400 else if (had_sep)
4401 {
4402 t = p;
4403 had_sep = FALSE;
4404 }
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004405 MB_PTR_ADV(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406 }
4407 return t;
4408}
4409
4410/*
4411 * Return TRUE if we only need to show the tail of completion matches.
4412 * When not completing file names or there is a wildcard in the path FALSE is
4413 * returned.
4414 */
4415 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004416expand_showtail(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417{
4418 char_u *s;
4419 char_u *end;
4420
4421 /* When not completing file names a "/" may mean something different. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004422 if (xp->xp_context != EXPAND_FILES
4423 && xp->xp_context != EXPAND_SHELLCMD
4424 && xp->xp_context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425 return FALSE;
4426
4427 end = gettail(xp->xp_pattern);
4428 if (end == xp->xp_pattern) /* there is no path separator */
4429 return FALSE;
4430
4431 for (s = xp->xp_pattern; s < end; s++)
4432 {
4433 /* Skip escaped wildcards. Only when the backslash is not a path
4434 * separator, on DOS the '*' "path\*\file" must not be skipped. */
4435 if (rem_backslash(s))
4436 ++s;
4437 else if (vim_strchr((char_u *)"*?[", *s) != NULL)
4438 return FALSE;
4439 }
4440 return TRUE;
4441}
4442
4443/*
4444 * Prepare a string for expansion.
4445 * When expanding file names: The string will be used with expand_wildcards().
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004446 * Copy "fname[len]" into allocated memory and add a '*' at the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 * When expanding other names: The string will be used with regcomp(). Copy
4448 * the name into allocated memory and prepend "^".
4449 */
4450 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004451addstar(
4452 char_u *fname,
4453 int len,
4454 int context) /* EXPAND_FILES etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455{
4456 char_u *retval;
4457 int i, j;
4458 int new_len;
4459 char_u *tail;
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004460 int ends_in_star;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004462 if (context != EXPAND_FILES
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004463 && context != EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004464 && context != EXPAND_SHELLCMD
4465 && context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466 {
4467 /*
4468 * Matching will be done internally (on something other than files).
4469 * So we convert the file-matching-type wildcards into our kind for
4470 * use with vim_regcomp(). First work out how long it will be:
4471 */
4472
4473 /* For help tags the translation is done in find_help_tags().
4474 * For a tag pattern starting with "/" no translation is needed. */
4475 if (context == EXPAND_HELP
4476 || context == EXPAND_COLORS
4477 || context == EXPAND_COMPILER
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004478 || context == EXPAND_OWNSYNTAX
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004479 || context == EXPAND_FILETYPE
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01004480 || context == EXPAND_PACKADD
Bram Moolenaarba47b512017-01-24 21:18:19 +01004481 || ((context == EXPAND_TAGS_LISTFILES
4482 || context == EXPAND_TAGS)
4483 && fname[0] == '/'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 retval = vim_strnsave(fname, len);
4485 else
4486 {
4487 new_len = len + 2; /* +2 for '^' at start, NUL at end */
4488 for (i = 0; i < len; i++)
4489 {
4490 if (fname[i] == '*' || fname[i] == '~')
4491 new_len++; /* '*' needs to be replaced by ".*"
4492 '~' needs to be replaced by "\~" */
4493
4494 /* Buffer names are like file names. "." should be literal */
4495 if (context == EXPAND_BUFFERS && fname[i] == '.')
4496 new_len++; /* "." becomes "\." */
4497
4498 /* Custom expansion takes care of special things, match
4499 * backslashes literally (perhaps also for other types?) */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004500 if ((context == EXPAND_USER_DEFINED
4501 || context == EXPAND_USER_LIST) && fname[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 new_len++; /* '\' becomes "\\" */
4503 }
4504 retval = alloc(new_len);
4505 if (retval != NULL)
4506 {
4507 retval[0] = '^';
4508 j = 1;
4509 for (i = 0; i < len; i++, j++)
4510 {
4511 /* Skip backslash. But why? At least keep it for custom
4512 * expansion. */
4513 if (context != EXPAND_USER_DEFINED
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004514 && context != EXPAND_USER_LIST
4515 && fname[i] == '\\'
4516 && ++i == len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517 break;
4518
4519 switch (fname[i])
4520 {
4521 case '*': retval[j++] = '.';
4522 break;
4523 case '~': retval[j++] = '\\';
4524 break;
4525 case '?': retval[j] = '.';
4526 continue;
4527 case '.': if (context == EXPAND_BUFFERS)
4528 retval[j++] = '\\';
4529 break;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004530 case '\\': if (context == EXPAND_USER_DEFINED
4531 || context == EXPAND_USER_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532 retval[j++] = '\\';
4533 break;
4534 }
4535 retval[j] = fname[i];
4536 }
4537 retval[j] = NUL;
4538 }
4539 }
4540 }
4541 else
4542 {
4543 retval = alloc(len + 4);
4544 if (retval != NULL)
4545 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004546 vim_strncpy(retval, fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547
4548 /*
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004549 * Don't add a star to *, ~, ~user, $var or `cmd`.
4550 * * would become **, which walks the whole tree.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551 * ~ would be at the start of the file name, but not the tail.
4552 * $ could be anywhere in the tail.
4553 * ` could be anywhere in the file name.
Bram Moolenaar066b6222008-01-04 14:17:47 +00004554 * When the name ends in '$' don't add a star, remove the '$'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555 */
4556 tail = gettail(retval);
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004557 ends_in_star = (len > 0 && retval[len - 1] == '*');
4558#ifndef BACKSLASH_IN_FILENAME
4559 for (i = len - 2; i >= 0; --i)
4560 {
4561 if (retval[i] != '\\')
4562 break;
4563 ends_in_star = !ends_in_star;
4564 }
4565#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566 if ((*retval != '~' || tail != retval)
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004567 && !ends_in_star
Bram Moolenaar071d4272004-06-13 20:20:40 +00004568 && vim_strchr(tail, '$') == NULL
4569 && vim_strchr(retval, '`') == NULL)
4570 retval[len++] = '*';
Bram Moolenaar066b6222008-01-04 14:17:47 +00004571 else if (len > 0 && retval[len - 1] == '$')
4572 --len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573 retval[len] = NUL;
4574 }
4575 }
4576 return retval;
4577}
4578
4579/*
4580 * Must parse the command line so far to work out what context we are in.
4581 * Completion can then be done based on that context.
4582 * This routine sets the variables:
4583 * xp->xp_pattern The start of the pattern to be expanded within
4584 * the command line (ends at the cursor).
4585 * xp->xp_context The type of thing to expand. Will be one of:
4586 *
4587 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on
4588 * the command line, like an unknown command. Caller
4589 * should beep.
4590 * EXPAND_NOTHING Unrecognised context for completion, use char like
4591 * a normal char, rather than for completion. eg
4592 * :s/^I/
4593 * EXPAND_COMMANDS Cursor is still touching the command, so complete
4594 * it.
4595 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands.
4596 * EXPAND_FILES After command with XFILE set, or after setting
4597 * with P_EXPAND set. eg :e ^I, :w>>^I
4598 * EXPAND_DIRECTORIES In some cases this is used instead of the latter
4599 * when we know only directories are of interest. eg
4600 * :set dir=^I
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004601 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602 * EXPAND_SETTINGS Complete variable names. eg :set d^I
4603 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I
4604 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I
4605 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect
4606 * EXPAND_HELP Complete tags from the file 'helpfile'/tags
4607 * EXPAND_EVENTS Complete event names
4608 * EXPAND_SYNTAX Complete :syntax command arguments
4609 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names
4610 * EXPAND_AUGROUP Complete autocommand group names
4611 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I
4612 * EXPAND_MAPPINGS Complete mapping and abbreviation names,
4613 * eg :unmap a^I , :cunab x^I
4614 * EXPAND_FUNCTIONS Complete internal or user defined function names,
4615 * eg :call sub^I
4616 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I
4617 * EXPAND_EXPRESSION Complete internal or user defined function/variable
4618 * names in expressions, eg :while s^I
4619 * EXPAND_ENV_VARS Complete environment variable names
Bram Moolenaar24305862012-08-15 14:05:05 +02004620 * EXPAND_USER Complete user names
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621 */
4622 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004623set_expand_context(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004625 /* only expansion for ':', '>' and '=' command-lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626 if (ccline.cmdfirstc != ':'
4627#ifdef FEAT_EVAL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004628 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '='
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004629 && !ccline.input_fn
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630#endif
4631 )
4632 {
4633 xp->xp_context = EXPAND_NOTHING;
4634 return;
4635 }
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004636 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637}
4638
4639 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004640set_cmd_context(
4641 expand_T *xp,
4642 char_u *str, /* start of command line */
4643 int len, /* length of command line (excl. NUL) */
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004644 int col, /* position of cursor */
4645 int use_ccline UNUSED) /* use ccline for info */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646{
4647 int old_char = NUL;
4648 char_u *nextcomm;
4649
4650 /*
4651 * Avoid a UMR warning from Purify, only save the character if it has been
4652 * written before.
4653 */
4654 if (col < len)
4655 old_char = str[col];
4656 str[col] = NUL;
4657 nextcomm = str;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004658
4659#ifdef FEAT_EVAL
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004660 if (use_ccline && ccline.cmdfirstc == '=')
Bram Moolenaar4f688582007-07-24 12:34:30 +00004661 {
4662# ifdef FEAT_CMDL_COMPL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004663 /* pass CMD_SIZE because there is no real command */
4664 set_context_for_expression(xp, str, CMD_SIZE);
Bram Moolenaar4f688582007-07-24 12:34:30 +00004665# endif
4666 }
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004667 else if (use_ccline && ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004668 {
4669 xp->xp_context = ccline.xp_context;
4670 xp->xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004671# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004672 xp->xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004673# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004674 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004675 else
4676#endif
4677 while (nextcomm != NULL)
4678 nextcomm = set_one_cmd_context(xp, nextcomm);
4679
Bram Moolenaara4c8dcb2013-06-30 12:21:24 +02004680 /* Store the string here so that call_user_expand_func() can get to them
4681 * easily. */
4682 xp->xp_line = str;
4683 xp->xp_col = col;
4684
Bram Moolenaar071d4272004-06-13 20:20:40 +00004685 str[col] = old_char;
4686}
4687
4688/*
4689 * Expand the command line "str" from context "xp".
4690 * "xp" must have been set by set_cmd_context().
4691 * xp->xp_pattern points into "str", to where the text that is to be expanded
4692 * starts.
4693 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the
4694 * cursor.
4695 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the
4696 * key that triggered expansion literally.
4697 * Returns EXPAND_OK otherwise.
4698 */
4699 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004700expand_cmdline(
4701 expand_T *xp,
4702 char_u *str, /* start of command line */
4703 int col, /* position of cursor */
4704 int *matchcount, /* return: nr of matches */
4705 char_u ***matches) /* return: array of pointers to matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706{
4707 char_u *file_str = NULL;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004708 int options = WILD_ADD_SLASH|WILD_SILENT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709
4710 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
4711 {
4712 beep_flush();
4713 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */
4714 }
4715 if (xp->xp_context == EXPAND_NOTHING)
4716 {
4717 /* Caller can use the character as a normal char instead */
4718 return EXPAND_NOTHING;
4719 }
4720
4721 /* add star to file name, or convert to regexp if not exp. files. */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004722 xp->xp_pattern_len = (int)(str + col - xp->xp_pattern);
4723 file_str = addstar(xp->xp_pattern, xp->xp_pattern_len, xp->xp_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 if (file_str == NULL)
4725 return EXPAND_UNSUCCESSFUL;
4726
Bram Moolenaar94950a92010-12-02 16:01:29 +01004727 if (p_wic)
4728 options += WILD_ICASE;
4729
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730 /* find all files that match the description */
Bram Moolenaar94950a92010-12-02 16:01:29 +01004731 if (ExpandFromContext(xp, file_str, matchcount, matches, options) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 {
4733 *matchcount = 0;
4734 *matches = NULL;
4735 }
4736 vim_free(file_str);
4737
4738 return EXPAND_OK;
4739}
4740
4741#ifdef FEAT_MULTI_LANG
4742/*
Bram Moolenaar61264d92016-03-28 19:59:02 +02004743 * Cleanup matches for help tags:
4744 * Remove "@ab" if the top of 'helplang' is "ab" and the language of the first
4745 * tag matches it. Otherwise remove "@en" if "en" is the only language.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 */
Bram Moolenaard25c16e2016-01-29 22:13:30 +01004747static void cleanup_help_tags(int num_file, char_u **file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748
4749 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004750cleanup_help_tags(int num_file, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751{
4752 int i, j;
4753 int len;
Bram Moolenaar61264d92016-03-28 19:59:02 +02004754 char_u buf[4];
4755 char_u *p = buf;
4756
Bram Moolenaar89c79b92016-05-05 17:18:41 +02004757 if (p_hlg[0] != NUL && (p_hlg[0] != 'e' || p_hlg[1] != 'n'))
Bram Moolenaar61264d92016-03-28 19:59:02 +02004758 {
4759 *p++ = '@';
4760 *p++ = p_hlg[0];
4761 *p++ = p_hlg[1];
4762 }
4763 *p = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004764
4765 for (i = 0; i < num_file; ++i)
4766 {
4767 len = (int)STRLEN(file[i]) - 3;
Bram Moolenaar61264d92016-03-28 19:59:02 +02004768 if (len <= 0)
4769 continue;
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02004770 if (STRCMP(file[i] + len, "@en") == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771 {
4772 /* Sorting on priority means the same item in another language may
4773 * be anywhere. Search all items for a match up to the "@en". */
4774 for (j = 0; j < num_file; ++j)
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02004775 if (j != i && (int)STRLEN(file[j]) == len + 3
4776 && STRNCMP(file[i], file[j], len + 1) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004777 break;
4778 if (j == num_file)
Bram Moolenaar89c79b92016-05-05 17:18:41 +02004779 /* item only exists with @en, remove it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780 file[i][len] = NUL;
4781 }
4782 }
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02004783
4784 if (*buf != NUL)
4785 for (i = 0; i < num_file; ++i)
4786 {
4787 len = (int)STRLEN(file[i]) - 3;
4788 if (len <= 0)
4789 continue;
4790 if (STRCMP(file[i] + len, buf) == 0)
4791 {
4792 /* remove the default language */
4793 file[i][len] = NUL;
4794 }
4795 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796}
4797#endif
4798
4799/*
4800 * Do the expansion based on xp->xp_context and "pat".
4801 */
4802 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004803ExpandFromContext(
4804 expand_T *xp,
4805 char_u *pat,
4806 int *num_file,
4807 char_u ***file,
4808 int options) /* EW_ flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809{
4810#ifdef FEAT_CMDL_COMPL
4811 regmatch_T regmatch;
4812#endif
4813 int ret;
4814 int flags;
4815
4816 flags = EW_DIR; /* include directories */
4817 if (options & WILD_LIST_NOTFOUND)
4818 flags |= EW_NOTFOUND;
4819 if (options & WILD_ADD_SLASH)
4820 flags |= EW_ADDSLASH;
4821 if (options & WILD_KEEP_ALL)
4822 flags |= EW_KEEPALL;
4823 if (options & WILD_SILENT)
4824 flags |= EW_SILENT;
Bram Moolenaara245bc72015-03-05 19:35:25 +01004825 if (options & WILD_ALLLINKS)
4826 flags |= EW_ALLLINKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004828 if (xp->xp_context == EXPAND_FILES
4829 || xp->xp_context == EXPAND_DIRECTORIES
4830 || xp->xp_context == EXPAND_FILES_IN_PATH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831 {
4832 /*
4833 * Expand file or directory names.
4834 */
4835 int free_pat = FALSE;
4836 int i;
4837
4838 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4839 * space */
4840 if (xp->xp_backslash != XP_BS_NONE)
4841 {
4842 free_pat = TRUE;
4843 pat = vim_strsave(pat);
4844 for (i = 0; pat[i]; ++i)
4845 if (pat[i] == '\\')
4846 {
4847 if (xp->xp_backslash == XP_BS_THREE
4848 && pat[i + 1] == '\\'
4849 && pat[i + 2] == '\\'
4850 && pat[i + 3] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004851 STRMOVE(pat + i, pat + i + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852 if (xp->xp_backslash == XP_BS_ONE
4853 && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004854 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855 }
4856 }
4857
4858 if (xp->xp_context == EXPAND_FILES)
4859 flags |= EW_FILE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004860 else if (xp->xp_context == EXPAND_FILES_IN_PATH)
4861 flags |= (EW_FILE | EW_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862 else
4863 flags = (flags | EW_DIR) & ~EW_FILE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004864 if (options & WILD_ICASE)
4865 flags |= EW_ICASE;
4866
Bram Moolenaard7834d32009-12-02 16:14:36 +00004867 /* Expand wildcards, supporting %:h and the like. */
4868 ret = expand_wildcards_eval(&pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869 if (free_pat)
4870 vim_free(pat);
4871 return ret;
4872 }
4873
4874 *file = (char_u **)"";
4875 *num_file = 0;
4876 if (xp->xp_context == EXPAND_HELP)
4877 {
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00004878 /* With an empty argument we would get all the help tags, which is
4879 * very slow. Get matches for "help" instead. */
4880 if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat,
4881 num_file, file, FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004882 {
4883#ifdef FEAT_MULTI_LANG
4884 cleanup_help_tags(*num_file, *file);
4885#endif
4886 return OK;
4887 }
4888 return FAIL;
4889 }
4890
4891#ifndef FEAT_CMDL_COMPL
4892 return FAIL;
4893#else
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004894 if (xp->xp_context == EXPAND_SHELLCMD)
4895 return expand_shellcmd(pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004896 if (xp->xp_context == EXPAND_OLD_SETTING)
4897 return ExpandOldSetting(num_file, file);
4898 if (xp->xp_context == EXPAND_BUFFERS)
4899 return ExpandBufnames(pat, num_file, file, options);
4900 if (xp->xp_context == EXPAND_TAGS
4901 || xp->xp_context == EXPAND_TAGS_LISTFILES)
4902 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file);
4903 if (xp->xp_context == EXPAND_COLORS)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004904 {
4905 char *directories[] = {"colors", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004906 return ExpandRTDir(pat, DIP_START + DIP_OPT, num_file, file,
4907 directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004908 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 if (xp->xp_context == EXPAND_COMPILER)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004910 {
Bram Moolenaara627c962011-09-30 16:23:32 +02004911 char *directories[] = {"compiler", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004912 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004913 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004914 if (xp->xp_context == EXPAND_OWNSYNTAX)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004915 {
4916 char *directories[] = {"syntax", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004917 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004918 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004919 if (xp->xp_context == EXPAND_FILETYPE)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004920 {
4921 char *directories[] = {"syntax", "indent", "ftplugin", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004922 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004923 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004924# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4925 if (xp->xp_context == EXPAND_USER_LIST)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004926 return ExpandUserList(xp, num_file, file);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004927# endif
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01004928 if (xp->xp_context == EXPAND_PACKADD)
4929 return ExpandPackAddDir(pat, num_file, file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930
4931 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4932 if (regmatch.regprog == NULL)
4933 return FAIL;
4934
4935 /* set ignore-case according to p_ic, p_scs and pat */
4936 regmatch.rm_ic = ignorecase(pat);
4937
4938 if (xp->xp_context == EXPAND_SETTINGS
4939 || xp->xp_context == EXPAND_BOOL_SETTINGS)
4940 ret = ExpandSettings(xp, &regmatch, num_file, file);
4941 else if (xp->xp_context == EXPAND_MAPPINGS)
4942 ret = ExpandMappings(&regmatch, num_file, file);
4943# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4944 else if (xp->xp_context == EXPAND_USER_DEFINED)
4945 ret = ExpandUserDefined(xp, &regmatch, num_file, file);
4946# endif
4947 else
4948 {
4949 static struct expgen
4950 {
4951 int context;
Bram Moolenaard99df422016-01-29 23:20:40 +01004952 char_u *((*func)(expand_T *, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953 int ic;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004954 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 } tab[] =
4956 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004957 {EXPAND_COMMANDS, get_command_name, FALSE, TRUE},
4958 {EXPAND_BEHAVE, get_behave_arg, TRUE, TRUE},
Bram Moolenaarcae92dc2017-08-06 15:22:15 +02004959 {EXPAND_MAPCLEAR, get_mapclear_arg, TRUE, TRUE},
Bram Moolenaar9e507ca2016-10-15 15:39:39 +02004960 {EXPAND_MESSAGES, get_messages_arg, TRUE, TRUE},
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004961#ifdef FEAT_CMDHIST
4962 {EXPAND_HISTORY, get_history_arg, TRUE, TRUE},
4963#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964#ifdef FEAT_USR_CMDS
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004965 {EXPAND_USER_COMMANDS, get_user_commands, FALSE, TRUE},
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004966 {EXPAND_USER_ADDR_TYPE, get_user_cmd_addr_type, FALSE, TRUE},
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004967 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE, TRUE},
4968 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE, TRUE},
4969 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970#endif
4971#ifdef FEAT_EVAL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004972 {EXPAND_USER_VARS, get_user_var_name, FALSE, TRUE},
4973 {EXPAND_FUNCTIONS, get_function_name, FALSE, TRUE},
4974 {EXPAND_USER_FUNC, get_user_func_name, FALSE, TRUE},
4975 {EXPAND_EXPRESSION, get_expr_name, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976#endif
4977#ifdef FEAT_MENU
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004978 {EXPAND_MENUS, get_menu_name, FALSE, TRUE},
4979 {EXPAND_MENUNAMES, get_menu_names, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980#endif
4981#ifdef FEAT_SYN_HL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004982 {EXPAND_SYNTAX, get_syntax_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983#endif
Bram Moolenaarcd9c4622013-06-08 15:24:48 +02004984#ifdef FEAT_PROFILE
4985 {EXPAND_SYNTIME, get_syntime_arg, TRUE, TRUE},
4986#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004987 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004988#ifdef FEAT_AUTOCMD
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004989 {EXPAND_EVENTS, get_event_name, TRUE, TRUE},
4990 {EXPAND_AUGROUP, get_augroup_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991#endif
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004992#ifdef FEAT_CSCOPE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004993 {EXPAND_CSCOPE, get_cscope_name, TRUE, TRUE},
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004994#endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004995#ifdef FEAT_SIGNS
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004996 {EXPAND_SIGN, get_sign_name, TRUE, TRUE},
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004997#endif
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004998#ifdef FEAT_PROFILE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004999 {EXPAND_PROFILE, get_profile_name, TRUE, TRUE},
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01005000#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
5002 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005003 {EXPAND_LANGUAGE, get_lang_arg, TRUE, FALSE},
5004 {EXPAND_LOCALES, get_locales, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005006 {EXPAND_ENV_VARS, get_env_name, TRUE, TRUE},
Bram Moolenaar24305862012-08-15 14:05:05 +02005007 {EXPAND_USER, get_users, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 };
5009 int i;
5010
5011 /*
5012 * Find a context in the table and call the ExpandGeneric() with the
5013 * right function to do the expansion.
5014 */
5015 ret = FAIL;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00005016 for (i = 0; i < (int)(sizeof(tab) / sizeof(struct expgen)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 if (xp->xp_context == tab[i].context)
5018 {
5019 if (tab[i].ic)
5020 regmatch.rm_ic = TRUE;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005021 ret = ExpandGeneric(xp, &regmatch, num_file, file,
Bram Moolenaare79abdd2012-06-29 13:44:41 +02005022 tab[i].func, tab[i].escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 break;
5024 }
5025 }
5026
Bram Moolenaar473de612013-06-08 18:19:48 +02005027 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028
5029 return ret;
5030#endif /* FEAT_CMDL_COMPL */
5031}
5032
5033#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5034/*
5035 * Expand a list of names.
5036 *
5037 * Generic function for command line completion. It calls a function to
5038 * obtain strings, one by one. The strings are matched against a regexp
5039 * program. Matching strings are copied into an array, which is returned.
5040 *
5041 * Returns OK when no problems encountered, FAIL for error (out of memory).
5042 */
5043 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005044ExpandGeneric(
5045 expand_T *xp,
5046 regmatch_T *regmatch,
5047 int *num_file,
5048 char_u ***file,
5049 char_u *((*func)(expand_T *, int)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050 /* returns a string from the list */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005051 int escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052{
5053 int i;
5054 int count = 0;
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005055 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056 char_u *str;
5057
5058 /* do this loop twice:
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005059 * round == 0: count the number of matching names
5060 * round == 1: copy the matching names into allocated memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005062 for (round = 0; round <= 1; ++round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 {
5064 for (i = 0; ; ++i)
5065 {
5066 str = (*func)(xp, i);
5067 if (str == NULL) /* end of list */
5068 break;
5069 if (*str == NUL) /* skip empty strings */
5070 continue;
5071
5072 if (vim_regexec(regmatch, str, (colnr_T)0))
5073 {
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005074 if (round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005076 if (escaped)
5077 str = vim_strsave_escaped(str, (char_u *)" \t\\.");
5078 else
5079 str = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 (*file)[count] = str;
5081#ifdef FEAT_MENU
5082 if (func == get_menu_names && str != NULL)
5083 {
5084 /* test for separator added by get_menu_names() */
5085 str += STRLEN(str) - 1;
5086 if (*str == '\001')
5087 *str = '.';
5088 }
5089#endif
5090 }
5091 ++count;
5092 }
5093 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005094 if (round == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 {
5096 if (count == 0)
5097 return OK;
5098 *num_file = count;
5099 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
5100 if (*file == NULL)
5101 {
5102 *file = (char_u **)"";
5103 return FAIL;
5104 }
5105 count = 0;
5106 }
5107 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005108
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005109 /* Sort the results. Keep menu's in the specified order. */
5110 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02005111 {
5112 if (xp->xp_context == EXPAND_EXPRESSION
5113 || xp->xp_context == EXPAND_FUNCTIONS
5114 || xp->xp_context == EXPAND_USER_FUNC)
5115 /* <SNR> functions should be sorted to the end. */
5116 qsort((void *)*file, (size_t)*num_file, sizeof(char_u *),
5117 sort_func_compare);
5118 else
5119 sort_strings(*file, *num_file);
5120 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005121
Bram Moolenaar4f688582007-07-24 12:34:30 +00005122#ifdef FEAT_CMDL_COMPL
5123 /* Reset the variables used for special highlight names expansion, so that
5124 * they don't show up when getting normal highlight names by ID. */
5125 reset_expand_highlight();
5126#endif
5127
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128 return OK;
5129}
5130
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005131/*
5132 * Complete a shell command.
5133 * Returns FAIL or OK;
5134 */
5135 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005136expand_shellcmd(
5137 char_u *filepat, /* pattern to match with command names */
5138 int *num_file, /* return: number of matches */
5139 char_u ***file, /* return: array with matches */
5140 int flagsarg) /* EW_ flags */
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005141{
5142 char_u *pat;
5143 int i;
5144 char_u *path;
5145 int mustfree = FALSE;
5146 garray_T ga;
5147 char_u *buf = alloc(MAXPATHL);
5148 size_t l;
5149 char_u *s, *e;
5150 int flags = flagsarg;
5151 int ret;
Bram Moolenaarb5971142015-03-21 17:32:19 +01005152 int did_curdir = FALSE;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005153
5154 if (buf == NULL)
5155 return FAIL;
5156
5157 /* for ":set path=" and ":set tags=" halve backslashes for escaped
5158 * space */
5159 pat = vim_strsave(filepat);
5160 for (i = 0; pat[i]; ++i)
5161 if (pat[i] == '\\' && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00005162 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005163
Bram Moolenaarb5971142015-03-21 17:32:19 +01005164 flags |= EW_FILE | EW_EXEC | EW_SHELLCMD;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005165
5166 /* For an absolute name we don't use $PATH. */
Bram Moolenaar68c31742006-09-02 15:54:18 +00005167 if (mch_isFullName(pat))
5168 path = (char_u *)" ";
5169 else if ((pat[0] == '.' && (vim_ispathsep(pat[1])
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005170 || (pat[1] == '.' && vim_ispathsep(pat[2])))))
5171 path = (char_u *)".";
5172 else
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01005173 {
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005174 path = vim_getenv((char_u *)"PATH", &mustfree);
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01005175 if (path == NULL)
5176 path = (char_u *)"";
5177 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005178
5179 /*
5180 * Go over all directories in $PATH. Expand matches in that directory and
Bram Moolenaarb5971142015-03-21 17:32:19 +01005181 * collect them in "ga". When "." is not in $PATH also expand for the
5182 * current directory, to find "subdir/cmd".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005183 */
5184 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaarb5971142015-03-21 17:32:19 +01005185 for (s = path; ; s = e)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005186 {
Bram Moolenaarb5971142015-03-21 17:32:19 +01005187 if (*s == NUL)
5188 {
5189 if (did_curdir)
5190 break;
5191 /* Find directories in the current directory, path is empty. */
5192 did_curdir = TRUE;
5193 }
5194 else if (*s == '.')
5195 did_curdir = TRUE;
5196
Bram Moolenaar68c31742006-09-02 15:54:18 +00005197 if (*s == ' ')
5198 ++s; /* Skip space used for absolute path name. */
5199
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005200#if defined(MSWIN)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005201 e = vim_strchr(s, ';');
5202#else
5203 e = vim_strchr(s, ':');
5204#endif
5205 if (e == NULL)
5206 e = s + STRLEN(s);
5207
5208 l = e - s;
5209 if (l > MAXPATHL - 5)
5210 break;
5211 vim_strncpy(buf, s, l);
5212 add_pathsep(buf);
5213 l = STRLEN(buf);
5214 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l);
5215
5216 /* Expand matches in one directory of $PATH. */
5217 ret = expand_wildcards(1, &buf, num_file, file, flags);
5218 if (ret == OK)
5219 {
5220 if (ga_grow(&ga, *num_file) == FAIL)
5221 FreeWild(*num_file, *file);
5222 else
5223 {
5224 for (i = 0; i < *num_file; ++i)
5225 {
5226 s = (*file)[i];
5227 if (STRLEN(s) > l)
5228 {
5229 /* Remove the path again. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00005230 STRMOVE(s, s + l);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005231 ((char_u **)ga.ga_data)[ga.ga_len++] = s;
5232 }
5233 else
5234 vim_free(s);
5235 }
5236 vim_free(*file);
5237 }
5238 }
5239 if (*e != NUL)
5240 ++e;
5241 }
5242 *file = ga.ga_data;
5243 *num_file = ga.ga_len;
5244
5245 vim_free(buf);
5246 vim_free(pat);
5247 if (mustfree)
5248 vim_free(path);
5249 return OK;
5250}
5251
5252
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaard25c16e2016-01-29 22:13:30 +01005254static 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 +00005255
Bram Moolenaar071d4272004-06-13 20:20:40 +00005256/*
Bram Moolenaarb544f3c2017-02-23 19:03:28 +01005257 * Call "user_expand_func()" to invoke a user defined Vim script function and
5258 * return the result (either a string or a List).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005259 */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005260 static void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005261call_user_expand_func(
5262 void *(*user_expand_func)(char_u *, int, char_u **, int),
5263 expand_T *xp,
5264 int *num_file,
5265 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266{
Bram Moolenaar673b9a32013-06-30 22:43:27 +02005267 int keep = 0;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005268 char_u num[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269 char_u *args[3];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270 int save_current_SID = current_SID;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005271 void *ret;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005272 struct cmdline_info save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273
Bram Moolenaarb7515462013-06-29 12:58:33 +02005274 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0' || xp->xp_line == NULL)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005275 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 *num_file = 0;
5277 *file = NULL;
5278
Bram Moolenaarb7515462013-06-29 12:58:33 +02005279 if (ccline.cmdbuff != NULL)
Bram Moolenaar21669c02008-01-18 12:16:16 +00005280 {
Bram Moolenaar21669c02008-01-18 12:16:16 +00005281 keep = ccline.cmdbuff[ccline.cmdlen];
5282 ccline.cmdbuff[ccline.cmdlen] = 0;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005283 }
Bram Moolenaarb7515462013-06-29 12:58:33 +02005284
Bram Moolenaar67b891e2009-09-18 15:25:52 +00005285 args[0] = vim_strnsave(xp->xp_pattern, xp->xp_pattern_len);
Bram Moolenaarb7515462013-06-29 12:58:33 +02005286 args[1] = xp->xp_line;
5287 sprintf((char *)num, "%d", xp->xp_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005288 args[2] = num;
5289
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005290 /* Save the cmdline, we don't know what the function may do. */
5291 save_ccline = ccline;
5292 ccline.cmdbuff = NULL;
5293 ccline.cmdprompt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294 current_SID = xp->xp_scriptID;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005295
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005296 ret = user_expand_func(xp->xp_arg, 3, args, FALSE);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005297
5298 ccline = save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299 current_SID = save_current_SID;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005300 if (ccline.cmdbuff != NULL)
5301 ccline.cmdbuff[ccline.cmdlen] = keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005302
Bram Moolenaar67b891e2009-09-18 15:25:52 +00005303 vim_free(args[0]);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005304 return ret;
5305}
5306
5307/*
5308 * Expand names with a function defined by the user.
5309 */
5310 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005311ExpandUserDefined(
5312 expand_T *xp,
5313 regmatch_T *regmatch,
5314 int *num_file,
5315 char_u ***file)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005316{
5317 char_u *retstr;
5318 char_u *s;
5319 char_u *e;
5320 char_u keep;
5321 garray_T ga;
5322
5323 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file);
5324 if (retstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005325 return FAIL;
5326
5327 ga_init2(&ga, (int)sizeof(char *), 3);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005328 for (s = retstr; *s != NUL; s = e)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329 {
5330 e = vim_strchr(s, '\n');
5331 if (e == NULL)
5332 e = s + STRLEN(s);
5333 keep = *e;
5334 *e = 0;
5335
5336 if (xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0)
5337 {
5338 *e = keep;
5339 if (*e != NUL)
5340 ++e;
5341 continue;
5342 }
5343
5344 if (ga_grow(&ga, 1) == FAIL)
5345 break;
5346
5347 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s));
5348 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349
5350 *e = keep;
5351 if (*e != NUL)
5352 ++e;
5353 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005354 vim_free(retstr);
5355 *file = ga.ga_data;
5356 *num_file = ga.ga_len;
5357 return OK;
5358}
5359
5360/*
5361 * Expand names with a list returned by a function defined by the user.
5362 */
5363 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005364ExpandUserList(
5365 expand_T *xp,
5366 int *num_file,
5367 char_u ***file)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005368{
5369 list_T *retlist;
5370 listitem_T *li;
5371 garray_T ga;
5372
5373 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file);
5374 if (retlist == NULL)
5375 return FAIL;
5376
5377 ga_init2(&ga, (int)sizeof(char *), 3);
5378 /* Loop over the items in the list. */
5379 for (li = retlist->lv_first; li != NULL; li = li->li_next)
5380 {
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005381 if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL)
5382 continue; /* Skip non-string items and empty strings */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005383
5384 if (ga_grow(&ga, 1) == FAIL)
5385 break;
5386
5387 ((char_u **)ga.ga_data)[ga.ga_len] =
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005388 vim_strsave(li->li_tv.vval.v_string);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005389 ++ga.ga_len;
5390 }
5391 list_unref(retlist);
5392
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393 *file = ga.ga_data;
5394 *num_file = ga.ga_len;
5395 return OK;
5396}
5397#endif
5398
5399/*
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005400 * Expand color scheme, compiler or filetype names.
5401 * Search from 'runtimepath':
5402 * 'runtimepath'/{dirnames}/{pat}.vim
5403 * When "flags" has DIP_START: search also from 'start' of 'packpath':
5404 * 'packpath'/pack/ * /start/ * /{dirnames}/{pat}.vim
5405 * When "flags" has DIP_OPT: search also from 'opt' of 'packpath':
5406 * 'packpath'/pack/ * /opt/ * /{dirnames}/{pat}.vim
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005407 * "dirnames" is an array with one or more directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005408 */
5409 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005410ExpandRTDir(
5411 char_u *pat,
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005412 int flags,
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005413 int *num_file,
5414 char_u ***file,
5415 char *dirnames[])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417 char_u *s;
5418 char_u *e;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005419 char_u *match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 garray_T ga;
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005421 int i;
5422 int pat_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423
5424 *num_file = 0;
5425 *file = NULL;
Bram Moolenaar5cfe2d72011-07-07 15:04:52 +02005426 pat_len = (int)STRLEN(pat);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005427 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005429 for (i = 0; dirnames[i] != NULL; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430 {
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005431 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 7));
5432 if (s == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433 {
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005434 ga_clear_strings(&ga);
5435 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436 }
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005437 sprintf((char *)s, "%s/%s*.vim", dirnames[i], pat);
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005438 globpath(p_rtp, s, &ga, 0);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005439 vim_free(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005441
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005442 if (flags & DIP_START) {
5443 for (i = 0; dirnames[i] != NULL; ++i)
5444 {
5445 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 22));
5446 if (s == NULL)
5447 {
5448 ga_clear_strings(&ga);
5449 return FAIL;
5450 }
5451 sprintf((char *)s, "pack/*/start/*/%s/%s*.vim", dirnames[i], pat);
5452 globpath(p_pp, s, &ga, 0);
5453 vim_free(s);
5454 }
5455 }
5456
5457 if (flags & DIP_OPT) {
5458 for (i = 0; dirnames[i] != NULL; ++i)
5459 {
5460 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 20));
5461 if (s == NULL)
5462 {
5463 ga_clear_strings(&ga);
5464 return FAIL;
5465 }
5466 sprintf((char *)s, "pack/*/opt/*/%s/%s*.vim", dirnames[i], pat);
5467 globpath(p_pp, s, &ga, 0);
5468 vim_free(s);
5469 }
5470 }
5471
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005472 for (i = 0; i < ga.ga_len; ++i)
5473 {
5474 match = ((char_u **)ga.ga_data)[i];
5475 s = match;
5476 e = s + STRLEN(s);
5477 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0)
5478 {
5479 e -= 4;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005480 for (s = e; s > match; MB_PTR_BACK(match, s))
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005481 if (s < match || vim_ispathsep(*s))
5482 break;
5483 ++s;
5484 *e = NUL;
5485 mch_memmove(match, s, e - s + 1);
5486 }
5487 }
5488
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005489 if (ga.ga_len == 0)
Bram Moolenaare79abdd2012-06-29 13:44:41 +02005490 return FAIL;
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005491
5492 /* Sort and remove duplicates which can happen when specifying multiple
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005493 * directories in dirnames. */
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005494 remove_duplicates(&ga);
5495
Bram Moolenaar071d4272004-06-13 20:20:40 +00005496 *file = ga.ga_data;
5497 *num_file = ga.ga_len;
5498 return OK;
5499}
5500
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01005501/*
5502 * Expand loadplugin names:
5503 * 'packpath'/pack/ * /opt/{pat}
5504 */
5505 static int
5506ExpandPackAddDir(
5507 char_u *pat,
5508 int *num_file,
5509 char_u ***file)
5510{
5511 char_u *s;
5512 char_u *e;
5513 char_u *match;
5514 garray_T ga;
5515 int i;
5516 int pat_len;
5517
5518 *num_file = 0;
5519 *file = NULL;
5520 pat_len = (int)STRLEN(pat);
5521 ga_init2(&ga, (int)sizeof(char *), 10);
5522
5523 s = alloc((unsigned)(pat_len + 26));
5524 if (s == NULL)
5525 {
5526 ga_clear_strings(&ga);
5527 return FAIL;
5528 }
5529 sprintf((char *)s, "pack/*/opt/%s*", pat);
5530 globpath(p_pp, s, &ga, 0);
5531 vim_free(s);
5532
5533 for (i = 0; i < ga.ga_len; ++i)
5534 {
5535 match = ((char_u **)ga.ga_data)[i];
5536 s = gettail(match);
5537 e = s + STRLEN(s);
5538 mch_memmove(match, s, e - s + 1);
5539 }
5540
5541 if (ga.ga_len == 0)
5542 return FAIL;
5543
5544 /* Sort and remove duplicates which can happen when specifying multiple
5545 * directories in dirnames. */
5546 remove_duplicates(&ga);
5547
5548 *file = ga.ga_data;
5549 *num_file = ga.ga_len;
5550 return OK;
5551}
5552
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553#endif
5554
5555#if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO)
5556/*
5557 * Expand "file" for all comma-separated directories in "path".
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005558 * Adds the matches to "ga". Caller must init "ga".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559 */
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005560 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005561globpath(
5562 char_u *path,
5563 char_u *file,
5564 garray_T *ga,
5565 int expand_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566{
5567 expand_T xpc;
5568 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 int num_p;
5571 char_u **p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572
5573 buf = alloc(MAXPATHL);
5574 if (buf == NULL)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005575 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005577 ExpandInit(&xpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005578 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005579
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580 /* Loop over all entries in {path}. */
5581 while (*path != NUL)
5582 {
5583 /* Copy one item of the path to buf[] and concatenate the file name. */
5584 copy_option_part(&path, buf, MAXPATHL, ",");
5585 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
5586 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005587# if defined(MSWIN)
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005588 /* Using the platform's path separator (\) makes vim incorrectly
5589 * treat it as an escape character, use '/' instead. */
5590 if (*buf != NUL && !after_pathsep(buf, buf + STRLEN(buf)))
5591 STRCAT(buf, "/");
5592# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593 add_pathsep(buf);
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005594# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595 STRCAT(buf, file);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005596 if (ExpandFromContext(&xpc, buf, &num_p, &p,
5597 WILD_SILENT|expand_options) != FAIL && num_p > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005599 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT|expand_options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005600
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005601 if (ga_grow(ga, num_p) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603 for (i = 0; i < num_p; ++i)
5604 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005605 ((char_u **)ga->ga_data)[ga->ga_len] =
Bram Moolenaar7116aa02014-05-29 14:36:29 +02005606 vim_strnsave(p[i], (int)STRLEN(p[i]));
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005607 ++ga->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005609 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005610
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611 FreeWild(num_p, p);
5612 }
5613 }
5614 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005615
5616 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617}
5618
5619#endif
5620
5621#if defined(FEAT_CMDHIST) || defined(PROTO)
5622
5623/*********************************
5624 * Command line history stuff *
5625 *********************************/
5626
5627/*
5628 * Translate a history character to the associated type number.
5629 */
5630 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005631hist_char2type(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005632{
5633 if (c == ':')
5634 return HIST_CMD;
5635 if (c == '=')
5636 return HIST_EXPR;
5637 if (c == '@')
5638 return HIST_INPUT;
5639 if (c == '>')
5640 return HIST_DEBUG;
5641 return HIST_SEARCH; /* must be '?' or '/' */
5642}
5643
5644/*
5645 * Table of history names.
5646 * These names are used in :history and various hist...() functions.
5647 * It is sufficient to give the significant prefix of a history name.
5648 */
5649
5650static char *(history_names[]) =
5651{
5652 "cmd",
5653 "search",
5654 "expr",
5655 "input",
5656 "debug",
5657 NULL
5658};
5659
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005660#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5661/*
5662 * Function given to ExpandGeneric() to obtain the possible first
5663 * arguments of the ":history command.
5664 */
5665 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005666get_history_arg(expand_T *xp UNUSED, int idx)
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005667{
5668 static char_u compl[2] = { NUL, NUL };
5669 char *short_names = ":=@>?/";
Bram Moolenaar17bd9dc2012-05-25 11:02:41 +02005670 int short_names_count = (int)STRLEN(short_names);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005671 int history_name_count = sizeof(history_names) / sizeof(char *) - 1;
5672
5673 if (idx < short_names_count)
5674 {
5675 compl[0] = (char_u)short_names[idx];
5676 return compl;
5677 }
5678 if (idx < short_names_count + history_name_count)
5679 return (char_u *)history_names[idx - short_names_count];
5680 if (idx == short_names_count + history_name_count)
5681 return (char_u *)"all";
5682 return NULL;
5683}
5684#endif
5685
Bram Moolenaar071d4272004-06-13 20:20:40 +00005686/*
5687 * init_history() - Initialize the command line history.
5688 * Also used to re-allocate the history when the size changes.
5689 */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00005690 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005691init_history(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005692{
5693 int newlen; /* new length of history table */
5694 histentry_T *temp;
5695 int i;
5696 int j;
5697 int type;
5698
5699 /*
5700 * If size of history table changed, reallocate it
5701 */
5702 newlen = (int)p_hi;
5703 if (newlen != hislen) /* history length changed */
5704 {
5705 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */
5706 {
5707 if (newlen)
5708 {
5709 temp = (histentry_T *)lalloc(
5710 (long_u)(newlen * sizeof(histentry_T)), TRUE);
5711 if (temp == NULL) /* out of memory! */
5712 {
5713 if (type == 0) /* first one: just keep the old length */
5714 {
5715 newlen = hislen;
5716 break;
5717 }
5718 /* Already changed one table, now we can only have zero
5719 * length for all tables. */
5720 newlen = 0;
5721 type = -1;
5722 continue;
5723 }
5724 }
5725 else
5726 temp = NULL;
5727 if (newlen == 0 || temp != NULL)
5728 {
5729 if (hisidx[type] < 0) /* there are no entries yet */
5730 {
5731 for (i = 0; i < newlen; ++i)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005732 clear_hist_entry(&temp[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733 }
5734 else if (newlen > hislen) /* array becomes bigger */
5735 {
5736 for (i = 0; i <= hisidx[type]; ++i)
5737 temp[i] = history[type][i];
5738 j = i;
5739 for ( ; i <= newlen - (hislen - hisidx[type]); ++i)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005740 clear_hist_entry(&temp[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 for ( ; j < hislen; ++i, ++j)
5742 temp[i] = history[type][j];
5743 }
5744 else /* array becomes smaller or 0 */
5745 {
5746 j = hisidx[type];
5747 for (i = newlen - 1; ; --i)
5748 {
5749 if (i >= 0) /* copy newest entries */
5750 temp[i] = history[type][j];
5751 else /* remove older entries */
5752 vim_free(history[type][j].hisstr);
5753 if (--j < 0)
5754 j = hislen - 1;
5755 if (j == hisidx[type])
5756 break;
5757 }
5758 hisidx[type] = newlen - 1;
5759 }
5760 vim_free(history[type]);
5761 history[type] = temp;
5762 }
5763 }
5764 hislen = newlen;
5765 }
5766}
5767
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005768 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005769clear_hist_entry(histentry_T *hisptr)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005770{
5771 hisptr->hisnum = 0;
5772 hisptr->viminfo = FALSE;
5773 hisptr->hisstr = NULL;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02005774 hisptr->time_set = 0;
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005775}
5776
Bram Moolenaar071d4272004-06-13 20:20:40 +00005777/*
5778 * Check if command line 'str' is already in history.
5779 * If 'move_to_front' is TRUE, matching entry is moved to end of history.
5780 */
5781 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005782in_history(
5783 int type,
5784 char_u *str,
5785 int move_to_front, /* Move the entry to the front if it exists */
5786 int sep,
5787 int writing) /* ignore entries read from viminfo */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005788{
5789 int i;
5790 int last_i = -1;
Bram Moolenaar4c402232011-07-27 17:58:46 +02005791 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005792
5793 if (hisidx[type] < 0)
5794 return FALSE;
5795 i = hisidx[type];
5796 do
5797 {
5798 if (history[type][i].hisstr == NULL)
5799 return FALSE;
Bram Moolenaar4c402232011-07-27 17:58:46 +02005800
5801 /* For search history, check that the separator character matches as
5802 * well. */
5803 p = history[type][i].hisstr;
5804 if (STRCMP(str, p) == 0
Bram Moolenaar07219f92013-04-14 23:19:36 +02005805 && !(writing && history[type][i].viminfo)
Bram Moolenaar4c402232011-07-27 17:58:46 +02005806 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005807 {
5808 if (!move_to_front)
5809 return TRUE;
5810 last_i = i;
5811 break;
5812 }
5813 if (--i < 0)
5814 i = hislen - 1;
5815 } while (i != hisidx[type]);
5816
5817 if (last_i >= 0)
5818 {
5819 str = history[type][i].hisstr;
5820 while (i != hisidx[type])
5821 {
5822 if (++i >= hislen)
5823 i = 0;
5824 history[type][last_i] = history[type][i];
5825 last_i = i;
5826 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005827 history[type][i].hisnum = ++hisnum[type];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005828 history[type][i].viminfo = FALSE;
5829 history[type][i].hisstr = str;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02005830 history[type][i].time_set = vim_time();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005831 return TRUE;
5832 }
5833 return FALSE;
5834}
5835
5836/*
5837 * Convert history name (from table above) to its HIST_ equivalent.
5838 * When "name" is empty, return "cmd" history.
5839 * Returns -1 for unknown history name.
5840 */
5841 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005842get_histtype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005843{
5844 int i;
5845 int len = (int)STRLEN(name);
5846
5847 /* No argument: use current history. */
5848 if (len == 0)
5849 return hist_char2type(ccline.cmdfirstc);
5850
5851 for (i = 0; history_names[i] != NULL; ++i)
5852 if (STRNICMP(name, history_names[i], len) == 0)
5853 return i;
5854
5855 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL)
5856 return hist_char2type(name[0]);
5857
5858 return -1;
5859}
5860
5861static int last_maptick = -1; /* last seen maptick */
5862
5863/*
5864 * Add the given string to the given history. If the string is already in the
5865 * history then it is moved to the front. "histype" may be one of he HIST_
5866 * values.
5867 */
5868 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005869add_to_history(
5870 int histype,
5871 char_u *new_entry,
5872 int in_map, /* consider maptick when inside a mapping */
5873 int sep) /* separator character used (search hist) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874{
5875 histentry_T *hisptr;
5876 int len;
5877
5878 if (hislen == 0) /* no history */
5879 return;
5880
Bram Moolenaara939e432013-11-09 05:30:26 +01005881 if (cmdmod.keeppatterns && histype == HIST_SEARCH)
5882 return;
5883
Bram Moolenaar071d4272004-06-13 20:20:40 +00005884 /*
5885 * Searches inside the same mapping overwrite each other, so that only
5886 * the last line is kept. Be careful not to remove a line that was moved
5887 * down, only lines that were added.
5888 */
5889 if (histype == HIST_SEARCH && in_map)
5890 {
Bram Moolenaar46643712016-09-09 21:42:36 +02005891 if (maptick == last_maptick && hisidx[HIST_SEARCH] >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005892 {
5893 /* Current line is from the same mapping, remove it */
5894 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];
5895 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005896 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005897 --hisnum[histype];
5898 if (--hisidx[HIST_SEARCH] < 0)
5899 hisidx[HIST_SEARCH] = hislen - 1;
5900 }
5901 last_maptick = -1;
5902 }
Bram Moolenaar07219f92013-04-14 23:19:36 +02005903 if (!in_history(histype, new_entry, TRUE, sep, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904 {
5905 if (++hisidx[histype] == hislen)
5906 hisidx[histype] = 0;
5907 hisptr = &history[histype][hisidx[histype]];
5908 vim_free(hisptr->hisstr);
5909
5910 /* Store the separator after the NUL of the string. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005911 len = (int)STRLEN(new_entry);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005912 hisptr->hisstr = vim_strnsave(new_entry, len + 2);
5913 if (hisptr->hisstr != NULL)
5914 hisptr->hisstr[len + 1] = sep;
5915
5916 hisptr->hisnum = ++hisnum[histype];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005917 hisptr->viminfo = FALSE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02005918 hisptr->time_set = vim_time();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005919 if (histype == HIST_SEARCH && in_map)
5920 last_maptick = maptick;
5921 }
5922}
5923
5924#if defined(FEAT_EVAL) || defined(PROTO)
5925
5926/*
5927 * Get identifier of newest history entry.
5928 * "histype" may be one of the HIST_ values.
5929 */
5930 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005931get_history_idx(int histype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005932{
5933 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5934 || hisidx[histype] < 0)
5935 return -1;
5936
5937 return history[histype][hisidx[histype]].hisnum;
5938}
5939
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005940/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005941 * Calculate history index from a number:
5942 * num > 0: seen as identifying number of a history entry
5943 * num < 0: relative position in history wrt newest entry
5944 * "histype" may be one of the HIST_ values.
5945 */
5946 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005947calc_hist_idx(int histype, int num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005948{
5949 int i;
5950 histentry_T *hist;
5951 int wrapped = FALSE;
5952
5953 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5954 || (i = hisidx[histype]) < 0 || num == 0)
5955 return -1;
5956
5957 hist = history[histype];
5958 if (num > 0)
5959 {
5960 while (hist[i].hisnum > num)
5961 if (--i < 0)
5962 {
5963 if (wrapped)
5964 break;
5965 i += hislen;
5966 wrapped = TRUE;
5967 }
5968 if (hist[i].hisnum == num && hist[i].hisstr != NULL)
5969 return i;
5970 }
5971 else if (-num <= hislen)
5972 {
5973 i += num + 1;
5974 if (i < 0)
5975 i += hislen;
5976 if (hist[i].hisstr != NULL)
5977 return i;
5978 }
5979 return -1;
5980}
5981
5982/*
5983 * Get a history entry by its index.
5984 * "histype" may be one of the HIST_ values.
5985 */
5986 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005987get_history_entry(int histype, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005988{
5989 idx = calc_hist_idx(histype, idx);
5990 if (idx >= 0)
5991 return history[histype][idx].hisstr;
5992 else
5993 return (char_u *)"";
5994}
5995
5996/*
5997 * Clear all entries of a history.
5998 * "histype" may be one of the HIST_ values.
5999 */
6000 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006001clr_history(int histype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006002{
6003 int i;
6004 histentry_T *hisptr;
6005
6006 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT)
6007 {
6008 hisptr = history[histype];
6009 for (i = hislen; i--;)
6010 {
6011 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006012 clear_hist_entry(hisptr);
Bram Moolenaar119d4692016-03-05 21:21:24 +01006013 hisptr++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006014 }
6015 hisidx[histype] = -1; /* mark history as cleared */
6016 hisnum[histype] = 0; /* reset identifier counter */
6017 return OK;
6018 }
6019 return FAIL;
6020}
6021
6022/*
6023 * Remove all entries matching {str} from a history.
6024 * "histype" may be one of the HIST_ values.
6025 */
6026 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006027del_history_entry(int histype, char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006028{
6029 regmatch_T regmatch;
6030 histentry_T *hisptr;
6031 int idx;
6032 int i;
6033 int last;
6034 int found = FALSE;
6035
6036 regmatch.regprog = NULL;
6037 regmatch.rm_ic = FALSE; /* always match case */
6038 if (hislen != 0
6039 && histype >= 0
6040 && histype < HIST_COUNT
6041 && *str != NUL
6042 && (idx = hisidx[histype]) >= 0
6043 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING))
6044 != NULL)
6045 {
6046 i = last = idx;
6047 do
6048 {
6049 hisptr = &history[histype][i];
6050 if (hisptr->hisstr == NULL)
6051 break;
6052 if (vim_regexec(&regmatch, hisptr->hisstr, (colnr_T)0))
6053 {
6054 found = TRUE;
6055 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006056 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006057 }
6058 else
6059 {
6060 if (i != last)
6061 {
6062 history[histype][last] = *hisptr;
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006063 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006064 }
6065 if (--last < 0)
6066 last += hislen;
6067 }
6068 if (--i < 0)
6069 i += hislen;
6070 } while (i != idx);
6071 if (history[histype][idx].hisstr == NULL)
6072 hisidx[histype] = -1;
6073 }
Bram Moolenaar473de612013-06-08 18:19:48 +02006074 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006075 return found;
6076}
6077
6078/*
6079 * Remove an indexed entry from a history.
6080 * "histype" may be one of the HIST_ values.
6081 */
6082 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006083del_history_idx(int histype, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006084{
6085 int i, j;
6086
6087 i = calc_hist_idx(histype, idx);
6088 if (i < 0)
6089 return FALSE;
6090 idx = hisidx[histype];
6091 vim_free(history[histype][i].hisstr);
6092
6093 /* When deleting the last added search string in a mapping, reset
6094 * last_maptick, so that the last added search string isn't deleted again.
6095 */
6096 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx)
6097 last_maptick = -1;
6098
6099 while (i != idx)
6100 {
6101 j = (i + 1) % hislen;
6102 history[histype][i] = history[histype][j];
6103 i = j;
6104 }
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006105 clear_hist_entry(&history[histype][i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006106 if (--i < 0)
6107 i += hislen;
6108 hisidx[histype] = i;
6109 return TRUE;
6110}
6111
6112#endif /* FEAT_EVAL */
6113
6114#if defined(FEAT_CRYPT) || defined(PROTO)
6115/*
6116 * Very specific function to remove the value in ":set key=val" from the
6117 * history.
6118 */
6119 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006120remove_key_from_history(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006121{
6122 char_u *p;
6123 int i;
6124
6125 i = hisidx[HIST_CMD];
6126 if (i < 0)
6127 return;
6128 p = history[HIST_CMD][i].hisstr;
6129 if (p != NULL)
6130 for ( ; *p; ++p)
6131 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3]))
6132 {
6133 p = vim_strchr(p + 3, '=');
6134 if (p == NULL)
6135 break;
6136 ++p;
Bram Moolenaar1c465442017-03-12 20:10:05 +01006137 for (i = 0; p[i] && !VIM_ISWHITE(p[i]); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006138 if (p[i] == '\\' && p[i + 1])
6139 ++i;
Bram Moolenaar446cb832008-06-24 21:56:24 +00006140 STRMOVE(p, p + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006141 --p;
6142 }
6143}
6144#endif
6145
6146#endif /* FEAT_CMDHIST */
6147
Bram Moolenaar064154c2016-03-19 22:50:43 +01006148#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006149/*
6150 * Get pointer to the command line info to use. cmdline_paste() may clear
6151 * ccline and put the previous value in prev_ccline.
6152 */
6153 static struct cmdline_info *
6154get_ccline_ptr(void)
6155{
6156 if ((State & CMDLINE) == 0)
6157 return NULL;
6158 if (ccline.cmdbuff != NULL)
6159 return &ccline;
6160 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
6161 return &prev_ccline;
6162 return NULL;
6163}
Bram Moolenaar064154c2016-03-19 22:50:43 +01006164#endif
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006165
Bram Moolenaar064154c2016-03-19 22:50:43 +01006166#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006167/*
6168 * Get the current command line in allocated memory.
6169 * Only works when the command line is being edited.
6170 * Returns NULL when something is wrong.
6171 */
6172 char_u *
6173get_cmdline_str(void)
6174{
6175 struct cmdline_info *p = get_ccline_ptr();
6176
6177 if (p == NULL)
6178 return NULL;
6179 return vim_strnsave(p->cmdbuff, p->cmdlen);
6180}
6181
6182/*
6183 * Get the current command line position, counted in bytes.
6184 * Zero is the first position.
6185 * Only works when the command line is being edited.
6186 * Returns -1 when something is wrong.
6187 */
6188 int
6189get_cmdline_pos(void)
6190{
6191 struct cmdline_info *p = get_ccline_ptr();
6192
6193 if (p == NULL)
6194 return -1;
6195 return p->cmdpos;
6196}
6197
6198/*
6199 * Set the command line byte position to "pos". Zero is the first position.
6200 * Only works when the command line is being edited.
6201 * Returns 1 when failed, 0 when OK.
6202 */
6203 int
6204set_cmdline_pos(
6205 int pos)
6206{
6207 struct cmdline_info *p = get_ccline_ptr();
6208
6209 if (p == NULL)
6210 return 1;
6211
6212 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
6213 * changed the command line. */
6214 if (pos < 0)
6215 new_cmdpos = 0;
6216 else
6217 new_cmdpos = pos;
6218 return 0;
6219}
6220#endif
6221
6222#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
6223/*
6224 * Get the current command-line type.
6225 * Returns ':' or '/' or '?' or '@' or '>' or '-'
6226 * Only works when the command line is being edited.
6227 * Returns NUL when something is wrong.
6228 */
6229 int
6230get_cmdline_type(void)
6231{
6232 struct cmdline_info *p = get_ccline_ptr();
6233
6234 if (p == NULL)
6235 return NUL;
6236 if (p->cmdfirstc == NUL)
Bram Moolenaar064154c2016-03-19 22:50:43 +01006237 return
6238# ifdef FEAT_EVAL
6239 (p->input_fn) ? '@' :
6240# endif
6241 '-';
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006242 return p->cmdfirstc;
6243}
6244#endif
6245
Bram Moolenaar071d4272004-06-13 20:20:40 +00006246#if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO)
6247/*
6248 * Get indices "num1,num2" that specify a range within a list (not a range of
6249 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
6250 * Returns OK if parsed successfully, otherwise FAIL.
6251 */
6252 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006253get_list_range(char_u **str, int *num1, int *num2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006254{
6255 int len;
6256 int first = FALSE;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02006257 varnumber_T num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006258
6259 *str = skipwhite(*str);
6260 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
6261 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006262 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006263 *str += len;
6264 *num1 = (int)num;
6265 first = TRUE;
6266 }
6267 *str = skipwhite(*str);
6268 if (**str == ',') /* parse "to" part of range */
6269 {
6270 *str = skipwhite(*str + 1);
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006271 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006272 if (len > 0)
6273 {
6274 *num2 = (int)num;
6275 *str = skipwhite(*str + len);
6276 }
6277 else if (!first) /* no number given at all */
6278 return FAIL;
6279 }
6280 else if (first) /* only one number given */
6281 *num2 = *num1;
6282 return OK;
6283}
6284#endif
6285
6286#if defined(FEAT_CMDHIST) || defined(PROTO)
6287/*
6288 * :history command - print a history
6289 */
6290 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006291ex_history(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006292{
6293 histentry_T *hist;
6294 int histype1 = HIST_CMD;
6295 int histype2 = HIST_CMD;
6296 int hisidx1 = 1;
6297 int hisidx2 = -1;
6298 int idx;
6299 int i, j, k;
6300 char_u *end;
6301 char_u *arg = eap->arg;
6302
6303 if (hislen == 0)
6304 {
6305 MSG(_("'history' option is zero"));
6306 return;
6307 }
6308
6309 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ','))
6310 {
6311 end = arg;
6312 while (ASCII_ISALPHA(*end)
6313 || vim_strchr((char_u *)":=@>/?", *end) != NULL)
6314 end++;
6315 i = *end;
6316 *end = NUL;
6317 histype1 = get_histtype(arg);
6318 if (histype1 == -1)
6319 {
Bram Moolenaarb9c1e962009-04-22 11:52:33 +00006320 if (STRNICMP(arg, "all", STRLEN(arg)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006321 {
6322 histype1 = 0;
6323 histype2 = HIST_COUNT-1;
6324 }
6325 else
6326 {
6327 *end = i;
6328 EMSG(_(e_trailing));
6329 return;
6330 }
6331 }
6332 else
6333 histype2 = histype1;
6334 *end = i;
6335 }
6336 else
6337 end = arg;
6338 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL)
6339 {
6340 EMSG(_(e_trailing));
6341 return;
6342 }
6343
6344 for (; !got_int && histype1 <= histype2; ++histype1)
6345 {
6346 STRCPY(IObuff, "\n # ");
6347 STRCAT(STRCAT(IObuff, history_names[histype1]), " history");
6348 MSG_PUTS_TITLE(IObuff);
6349 idx = hisidx[histype1];
6350 hist = history[histype1];
6351 j = hisidx1;
6352 k = hisidx2;
6353 if (j < 0)
6354 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum;
6355 if (k < 0)
6356 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum;
6357 if (idx >= 0 && j <= k)
6358 for (i = idx + 1; !got_int; ++i)
6359 {
6360 if (i == hislen)
6361 i = 0;
6362 if (hist[i].hisstr != NULL
6363 && hist[i].hisnum >= j && hist[i].hisnum <= k)
6364 {
6365 msg_putchar('\n');
6366 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ',
6367 hist[i].hisnum);
6368 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10)
6369 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff),
Bram Moolenaar38f5f952012-01-26 13:01:59 +01006370 (int)Columns - 10, IOSIZE - (int)STRLEN(IObuff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006371 else
6372 STRCAT(IObuff, hist[i].hisstr);
6373 msg_outtrans(IObuff);
6374 out_flush();
6375 }
6376 if (i == idx)
6377 break;
6378 }
6379 }
6380}
6381#endif
6382
6383#if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006384/*
6385 * Buffers for history read from a viminfo file. Only valid while reading.
6386 */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006387static histentry_T *viminfo_history[HIST_COUNT] =
6388 {NULL, NULL, NULL, NULL, NULL};
6389static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0, 0};
6390static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006391static int viminfo_add_at_front = FALSE;
6392
Bram Moolenaard25c16e2016-01-29 22:13:30 +01006393static int hist_type2char(int type, int use_question);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006394
6395/*
6396 * Translate a history type number to the associated character.
6397 */
6398 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006399hist_type2char(
6400 int type,
6401 int use_question) /* use '?' instead of '/' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006402{
6403 if (type == HIST_CMD)
6404 return ':';
6405 if (type == HIST_SEARCH)
6406 {
6407 if (use_question)
6408 return '?';
6409 else
6410 return '/';
6411 }
6412 if (type == HIST_EXPR)
6413 return '=';
6414 return '@';
6415}
6416
6417/*
6418 * Prepare for reading the history from the viminfo file.
6419 * This allocates history arrays to store the read history lines.
6420 */
6421 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006422prepare_viminfo_history(int asklen, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006423{
6424 int i;
6425 int num;
6426 int type;
6427 int len;
6428
6429 init_history();
Bram Moolenaar07219f92013-04-14 23:19:36 +02006430 viminfo_add_at_front = (asklen != 0 && !writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006431 if (asklen > hislen)
6432 asklen = hislen;
6433
6434 for (type = 0; type < HIST_COUNT; ++type)
6435 {
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006436 /* Count the number of empty spaces in the history list. Entries read
6437 * from viminfo previously are also considered empty. If there are
6438 * more spaces available than we request, then fill them up. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006439 for (i = 0, num = 0; i < hislen; i++)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006440 if (history[type][i].hisstr == NULL || history[type][i].viminfo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006441 num++;
6442 len = asklen;
6443 if (num > len)
6444 len = num;
6445 if (len <= 0)
6446 viminfo_history[type] = NULL;
6447 else
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006448 viminfo_history[type] = (histentry_T *)lalloc(
6449 (long_u)(len * sizeof(histentry_T)), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006450 if (viminfo_history[type] == NULL)
6451 len = 0;
6452 viminfo_hislen[type] = len;
6453 viminfo_hisidx[type] = 0;
6454 }
6455}
6456
6457/*
6458 * Accept a line from the viminfo, store it in the history array when it's
6459 * new.
6460 */
6461 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006462read_viminfo_history(vir_T *virp, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006463{
6464 int type;
6465 long_u len;
6466 char_u *val;
6467 char_u *p;
6468
6469 type = hist_char2type(virp->vir_line[0]);
6470 if (viminfo_hisidx[type] < viminfo_hislen[type])
6471 {
6472 val = viminfo_readstring(virp, 1, TRUE);
6473 if (val != NULL && *val != NUL)
6474 {
Bram Moolenaard87fbc22012-02-04 22:44:32 +01006475 int sep = (*val == ' ' ? NUL : *val);
6476
Bram Moolenaar071d4272004-06-13 20:20:40 +00006477 if (!in_history(type, val + (type == HIST_SEARCH),
Bram Moolenaar07219f92013-04-14 23:19:36 +02006478 viminfo_add_at_front, sep, writing))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006479 {
6480 /* Need to re-allocate to append the separator byte. */
6481 len = STRLEN(val);
6482 p = lalloc(len + 2, TRUE);
6483 if (p != NULL)
6484 {
6485 if (type == HIST_SEARCH)
6486 {
6487 /* Search entry: Move the separator from the first
6488 * column to after the NUL. */
6489 mch_memmove(p, val + 1, (size_t)len);
Bram Moolenaard87fbc22012-02-04 22:44:32 +01006490 p[len] = sep;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006491 }
6492 else
6493 {
6494 /* Not a search entry: No separator in the viminfo
6495 * file, add a NUL separator. */
6496 mch_memmove(p, val, (size_t)len + 1);
6497 p[len + 1] = NUL;
6498 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006499 viminfo_history[type][viminfo_hisidx[type]].hisstr = p;
6500 viminfo_history[type][viminfo_hisidx[type]].time_set = 0;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006501 viminfo_history[type][viminfo_hisidx[type]].viminfo = TRUE;
6502 viminfo_history[type][viminfo_hisidx[type]].hisnum = 0;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006503 viminfo_hisidx[type]++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006504 }
6505 }
6506 }
6507 vim_free(val);
6508 }
6509 return viminfo_readline(virp);
6510}
6511
Bram Moolenaar07219f92013-04-14 23:19:36 +02006512/*
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006513 * Accept a new style history line from the viminfo, store it in the history
6514 * array when it's new.
6515 */
6516 void
6517handle_viminfo_history(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006518 garray_T *values,
6519 int writing)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006520{
6521 int type;
6522 long_u len;
6523 char_u *val;
6524 char_u *p;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006525 bval_T *vp = (bval_T *)values->ga_data;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006526
6527 /* Check the format:
6528 * |{bartype},{histtype},{timestamp},{separator},"text" */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006529 if (values->ga_len < 4
6530 || vp[0].bv_type != BVAL_NR
6531 || vp[1].bv_type != BVAL_NR
6532 || (vp[2].bv_type != BVAL_NR && vp[2].bv_type != BVAL_EMPTY)
6533 || vp[3].bv_type != BVAL_STRING)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006534 return;
6535
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006536 type = vp[0].bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006537 if (type >= HIST_COUNT)
6538 return;
6539 if (viminfo_hisidx[type] < viminfo_hislen[type])
6540 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006541 val = vp[3].bv_string;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006542 if (val != NULL && *val != NUL)
6543 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006544 int sep = type == HIST_SEARCH && vp[2].bv_type == BVAL_NR
6545 ? vp[2].bv_nr : NUL;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006546 int idx;
6547 int overwrite = FALSE;
6548
6549 if (!in_history(type, val, viminfo_add_at_front, sep, writing))
6550 {
6551 /* If lines were written by an older Vim we need to avoid
6552 * getting duplicates. See if the entry already exists. */
6553 for (idx = 0; idx < viminfo_hisidx[type]; ++idx)
6554 {
6555 p = viminfo_history[type][idx].hisstr;
6556 if (STRCMP(val, p) == 0
6557 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1]))
6558 {
6559 overwrite = TRUE;
6560 break;
6561 }
6562 }
6563
6564 if (!overwrite)
6565 {
6566 /* Need to re-allocate to append the separator byte. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006567 len = vp[3].bv_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006568 p = lalloc(len + 2, TRUE);
6569 }
Bram Moolenaar72e697d2016-06-13 22:48:01 +02006570 else
6571 len = 0; /* for picky compilers */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006572 if (p != NULL)
6573 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006574 viminfo_history[type][idx].time_set = vp[1].bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006575 if (!overwrite)
6576 {
6577 mch_memmove(p, val, (size_t)len + 1);
6578 /* Put the separator after the NUL. */
6579 p[len + 1] = sep;
6580 viminfo_history[type][idx].hisstr = p;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006581 viminfo_history[type][idx].hisnum = 0;
6582 viminfo_history[type][idx].viminfo = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006583 viminfo_hisidx[type]++;
6584 }
6585 }
6586 }
6587 }
6588 }
6589}
6590
6591/*
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006592 * Concatenate history lines from viminfo after the lines typed in this Vim.
Bram Moolenaar07219f92013-04-14 23:19:36 +02006593 */
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006594 static void
6595concat_history(int type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006596{
6597 int idx;
6598 int i;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006599
6600 idx = hisidx[type] + viminfo_hisidx[type];
6601 if (idx >= hislen)
6602 idx -= hislen;
6603 else if (idx < 0)
6604 idx = hislen - 1;
6605 if (viminfo_add_at_front)
6606 hisidx[type] = idx;
6607 else
6608 {
6609 if (hisidx[type] == -1)
6610 hisidx[type] = hislen - 1;
6611 do
6612 {
6613 if (history[type][idx].hisstr != NULL
6614 || history[type][idx].viminfo)
6615 break;
6616 if (++idx == hislen)
6617 idx = 0;
6618 } while (idx != hisidx[type]);
6619 if (idx != hisidx[type] && --idx < 0)
6620 idx = hislen - 1;
6621 }
6622 for (i = 0; i < viminfo_hisidx[type]; i++)
6623 {
6624 vim_free(history[type][idx].hisstr);
6625 history[type][idx].hisstr = viminfo_history[type][i].hisstr;
6626 history[type][idx].viminfo = TRUE;
6627 history[type][idx].time_set = viminfo_history[type][i].time_set;
6628 if (--idx < 0)
6629 idx = hislen - 1;
6630 }
6631 idx += 1;
6632 idx %= hislen;
6633 for (i = 0; i < viminfo_hisidx[type]; i++)
6634 {
6635 history[type][idx++].hisnum = ++hisnum[type];
6636 idx %= hislen;
6637 }
6638}
6639
6640#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6641 static int
6642#ifdef __BORLANDC__
6643_RTLENTRYF
6644#endif
6645sort_hist(const void *s1, const void *s2)
6646{
6647 histentry_T *p1 = *(histentry_T **)s1;
6648 histentry_T *p2 = *(histentry_T **)s2;
6649
6650 if (p1->time_set < p2->time_set) return -1;
6651 if (p1->time_set > p2->time_set) return 1;
6652 return 0;
6653}
6654#endif
6655
6656/*
6657 * Merge history lines from viminfo and lines typed in this Vim based on the
6658 * timestamp;
6659 */
6660 static void
6661merge_history(int type)
6662{
6663 int max_len;
6664 histentry_T **tot_hist;
6665 histentry_T *new_hist;
6666 int i;
6667 int len;
6668
6669 /* Make one long list with all entries. */
6670 max_len = hislen + viminfo_hisidx[type];
6671 tot_hist = (histentry_T **)alloc(max_len * (int)sizeof(histentry_T *));
6672 new_hist = (histentry_T *)alloc(hislen * (int)sizeof(histentry_T));
6673 if (tot_hist == NULL || new_hist == NULL)
6674 {
6675 vim_free(tot_hist);
6676 vim_free(new_hist);
6677 return;
6678 }
6679 for (i = 0; i < viminfo_hisidx[type]; i++)
6680 tot_hist[i] = &viminfo_history[type][i];
6681 len = i;
6682 for (i = 0; i < hislen; i++)
6683 if (history[type][i].hisstr != NULL)
6684 tot_hist[len++] = &history[type][i];
6685
6686 /* Sort the list on timestamp. */
6687 qsort((void *)tot_hist, (size_t)len, sizeof(histentry_T *), sort_hist);
6688
6689 /* Keep the newest ones. */
6690 for (i = 0; i < hislen; i++)
6691 {
6692 if (i < len)
6693 {
6694 new_hist[i] = *tot_hist[i];
6695 tot_hist[i]->hisstr = NULL;
6696 if (new_hist[i].hisnum == 0)
6697 new_hist[i].hisnum = ++hisnum[type];
6698 }
6699 else
6700 clear_hist_entry(&new_hist[i]);
6701 }
Bram Moolenaara890f5e2016-06-12 23:03:19 +02006702 hisidx[type] = (i < len ? i : len) - 1;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006703
6704 /* Free what is not kept. */
6705 for (i = 0; i < viminfo_hisidx[type]; i++)
6706 vim_free(viminfo_history[type][i].hisstr);
6707 for (i = 0; i < hislen; i++)
6708 vim_free(history[type][i].hisstr);
6709 vim_free(history[type]);
6710 history[type] = new_hist;
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02006711 vim_free(tot_hist);
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006712}
6713
6714/*
6715 * Finish reading history lines from viminfo. Not used when writing viminfo.
6716 */
6717 void
6718finish_viminfo_history(vir_T *virp)
6719{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006720 int type;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006721 int merge = virp->vir_version >= VIMINFO_VERSION_WITH_HISTORY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006722
6723 for (type = 0; type < HIST_COUNT; ++type)
6724 {
6725 if (history[type] == NULL)
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006726 continue;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006727
6728 if (merge)
6729 merge_history(type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006730 else
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006731 concat_history(type);
6732
Bram Moolenaar071d4272004-06-13 20:20:40 +00006733 vim_free(viminfo_history[type]);
6734 viminfo_history[type] = NULL;
Bram Moolenaarf687cf32013-04-24 15:39:11 +02006735 viminfo_hisidx[type] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006736 }
6737}
6738
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006739/*
6740 * Write history to viminfo file in "fp".
6741 * When "merge" is TRUE merge history lines with a previously read viminfo
6742 * file, data is in viminfo_history[].
6743 * When "merge" is FALSE just write all history lines. Used for ":wviminfo!".
6744 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006745 void
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006746write_viminfo_history(FILE *fp, int merge)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006747{
6748 int i;
6749 int type;
6750 int num_saved;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006751 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006752
6753 init_history();
6754 if (hislen == 0)
6755 return;
6756 for (type = 0; type < HIST_COUNT; ++type)
6757 {
6758 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE));
6759 if (num_saved == 0)
6760 continue;
6761 if (num_saved < 0) /* Use default */
6762 num_saved = hislen;
6763 fprintf(fp, _("\n# %s History (newest to oldest):\n"),
6764 type == HIST_CMD ? _("Command Line") :
6765 type == HIST_SEARCH ? _("Search String") :
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006766 type == HIST_EXPR ? _("Expression") :
6767 type == HIST_INPUT ? _("Input Line") :
6768 _("Debug Line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006769 if (num_saved > hislen)
6770 num_saved = hislen;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006771
6772 /*
6773 * Merge typed and viminfo history:
6774 * round 1: history of typed commands.
6775 * round 2: history from recently read viminfo.
6776 */
6777 for (round = 1; round <= 2; ++round)
6778 {
Bram Moolenaara8565fe2013-04-15 16:14:22 +02006779 if (round == 1)
6780 /* start at newest entry, somewhere in the list */
6781 i = hisidx[type];
6782 else if (viminfo_hisidx[type] > 0)
6783 /* start at newest entry, first in the list */
6784 i = 0;
6785 else
6786 /* empty list */
6787 i = -1;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006788 if (i >= 0)
6789 while (num_saved > 0
6790 && !(round == 2 && i >= viminfo_hisidx[type]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006791 {
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006792 char_u *p;
6793 time_t timestamp;
6794 int c = NUL;
6795
6796 if (round == 1)
6797 {
6798 p = history[type][i].hisstr;
6799 timestamp = history[type][i].time_set;
6800 }
6801 else
6802 {
6803 p = viminfo_history[type] == NULL ? NULL
6804 : viminfo_history[type][i].hisstr;
6805 timestamp = viminfo_history[type] == NULL ? 0
6806 : viminfo_history[type][i].time_set;
6807 }
6808
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006809 if (p != NULL && (round == 2
6810 || !merge
6811 || !history[type][i].viminfo))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006812 {
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006813 --num_saved;
6814 fputc(hist_type2char(type, TRUE), fp);
6815 /* For the search history: put the separator in the
6816 * second column; use a space if there isn't one. */
6817 if (type == HIST_SEARCH)
6818 {
6819 c = p[STRLEN(p) + 1];
6820 putc(c == NUL ? ' ' : c, fp);
6821 }
6822 viminfo_writestring(fp, p);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006823
6824 {
6825 char cbuf[NUMBUFLEN];
6826
6827 /* New style history with a bar line. Format:
6828 * |{bartype},{histtype},{timestamp},{separator},"text" */
6829 if (c == NUL)
6830 cbuf[0] = NUL;
6831 else
6832 sprintf(cbuf, "%d", c);
6833 fprintf(fp, "|%d,%d,%ld,%s,", BARTYPE_HISTORY,
6834 type, (long)timestamp, cbuf);
6835 barline_writestring(fp, p, LSIZE - 20);
6836 putc('\n', fp);
6837 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006838 }
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006839 if (round == 1)
6840 {
6841 /* Decrement index, loop around and stop when back at
6842 * the start. */
6843 if (--i < 0)
6844 i = hislen - 1;
6845 if (i == hisidx[type])
6846 break;
6847 }
6848 else
6849 {
6850 /* Increment index. Stop at the end in the while. */
6851 ++i;
6852 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006853 }
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006854 }
Bram Moolenaar07219f92013-04-14 23:19:36 +02006855 for (i = 0; i < viminfo_hisidx[type]; ++i)
Bram Moolenaarf687cf32013-04-24 15:39:11 +02006856 if (viminfo_history[type] != NULL)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006857 vim_free(viminfo_history[type][i].hisstr);
Bram Moolenaar07219f92013-04-14 23:19:36 +02006858 vim_free(viminfo_history[type]);
6859 viminfo_history[type] = NULL;
Bram Moolenaarb70a4732013-04-15 22:22:57 +02006860 viminfo_hisidx[type] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006861 }
6862}
6863#endif /* FEAT_VIMINFO */
6864
6865#if defined(FEAT_FKMAP) || defined(PROTO)
6866/*
6867 * Write a character at the current cursor+offset position.
6868 * It is directly written into the command buffer block.
6869 */
6870 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006871cmd_pchar(int c, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006872{
6873 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6874 {
6875 EMSG(_("E198: cmd_pchar beyond the command length"));
6876 return;
6877 }
6878 ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c;
6879 ccline.cmdbuff[ccline.cmdlen] = NUL;
6880}
6881
6882 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006883cmd_gchar(int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006884{
6885 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6886 {
6887 /* EMSG(_("cmd_gchar beyond the command length")); */
6888 return NUL;
6889 }
6890 return (int)ccline.cmdbuff[ccline.cmdpos + offset];
6891}
6892#endif
6893
6894#if defined(FEAT_CMDWIN) || defined(PROTO)
6895/*
6896 * Open a window on the current command line and history. Allow editing in
6897 * the window. Returns when the window is closed.
6898 * Returns:
6899 * CR if the command is to be executed
6900 * Ctrl_C if it is to be abandoned
6901 * K_IGNORE if editing continues
6902 */
6903 static int
Bram Moolenaar3bab9392017-04-07 15:42:25 +02006904open_cmdwin(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905{
6906 struct cmdline_info save_ccline;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006907 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006908 win_T *old_curwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006909 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006910 win_T *wp;
6911 int i;
6912 linenr_T lnum;
6913 int histtype;
6914 garray_T winsizes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006915 int save_restart_edit = restart_edit;
6916 int save_State = State;
6917 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00006918#ifdef FEAT_RIGHTLEFT
6919 int save_cmdmsg_rl = cmdmsg_rl;
6920#endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006921#ifdef FEAT_FOLDING
6922 int save_KeyTyped;
6923#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006924
6925 /* Can't do this recursively. Can't do it when typing a password. */
6926 if (cmdwin_type != 0
6927# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
6928 || cmdline_star > 0
6929# endif
6930 )
6931 {
6932 beep_flush();
6933 return K_IGNORE;
6934 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006935 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006936
6937 /* Save current window sizes. */
6938 win_size_save(&winsizes);
6939
6940# ifdef FEAT_AUTOCMD
6941 /* Don't execute autocommands while creating the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006942 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006943# endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00006944 /* don't use a new tab page */
6945 cmdmod.tab = 0;
Bram Moolenaar3bab9392017-04-07 15:42:25 +02006946 cmdmod.noswapfile = 1;
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00006947
Bram Moolenaar071d4272004-06-13 20:20:40 +00006948 /* Create a window for the command-line buffer. */
6949 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
6950 {
6951 beep_flush();
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006952# ifdef FEAT_AUTOCMD
6953 unblock_autocmds();
6954# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006955 return K_IGNORE;
6956 }
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006957 cmdwin_type = get_cmdline_type();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006958
6959 /* Create the command-line buffer empty. */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006960 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL);
Bram Moolenaar446cb832008-06-24 21:56:24 +00006961 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006962 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006963 curbuf->b_p_ma = TRUE;
Bram Moolenaar876f6d72009-04-29 10:05:51 +00006964#ifdef FEAT_FOLDING
6965 curwin->w_p_fen = FALSE;
6966#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006967# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00006968 curwin->w_p_rl = cmdmsg_rl;
6969 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006970# endif
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006971 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006972
6973# ifdef FEAT_AUTOCMD
6974 /* Do execute autocommands for setting the filetype (load syntax). */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006975 unblock_autocmds();
Bram Moolenaar18141832017-06-25 21:17:25 +02006976 /* But don't allow switching to another buffer. */
6977 ++curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006978# endif
6979
Bram Moolenaar46152342005-09-07 21:18:43 +00006980 /* Showing the prompt may have set need_wait_return, reset it. */
6981 need_wait_return = FALSE;
6982
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006983 histtype = hist_char2type(cmdwin_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006984 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
6985 {
6986 if (p_wc == TAB)
6987 {
6988 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
6989 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
6990 }
6991 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
6992 }
Bram Moolenaar18141832017-06-25 21:17:25 +02006993# ifdef FEAT_AUTOCMD
6994 --curbuf_lock;
6995# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006996
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006997 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
6998 * sets 'textwidth' to 78). */
6999 curbuf->b_p_tw = 0;
7000
Bram Moolenaar071d4272004-06-13 20:20:40 +00007001 /* Fill the buffer with the history. */
7002 init_history();
7003 if (hislen > 0)
7004 {
7005 i = hisidx[histtype];
7006 if (i >= 0)
7007 {
7008 lnum = 0;
7009 do
7010 {
7011 if (++i == hislen)
7012 i = 0;
7013 if (history[histtype][i].hisstr != NULL)
7014 ml_append(lnum++, history[histtype][i].hisstr,
7015 (colnr_T)0, FALSE);
7016 }
7017 while (i != hisidx[histtype]);
7018 }
7019 }
7020
7021 /* Replace the empty last line with the current command-line and put the
7022 * cursor there. */
7023 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
7024 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
7025 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00007026 changed_line_abv_curs();
7027 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00007028 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007029
7030 /* Save the command line info, can be used recursively. */
Bram Moolenaar1d669c22017-01-11 22:40:19 +01007031 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007032
7033 /* No Ex mode here! */
7034 exmode_active = 0;
7035
7036 State = NORMAL;
7037# ifdef FEAT_MOUSE
7038 setmouse();
7039# endif
7040
7041# ifdef FEAT_AUTOCMD
7042 /* Trigger CmdwinEnter autocommands. */
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02007043 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINENTER);
Bram Moolenaar5495cc92006-08-16 14:23:04 +00007044 if (restart_edit != 0) /* autocmd with ":startinsert" */
7045 stuffcharReadbuff(K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007046# endif
7047
7048 i = RedrawingDisabled;
7049 RedrawingDisabled = 0;
7050
7051 /*
7052 * Call the main loop until <CR> or CTRL-C is typed.
7053 */
7054 cmdwin_result = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00007055 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007056
7057 RedrawingDisabled = i;
7058
7059# ifdef FEAT_AUTOCMD
Bram Moolenaar42f06f92014-08-17 17:24:07 +02007060
7061# ifdef FEAT_FOLDING
7062 save_KeyTyped = KeyTyped;
7063# endif
7064
Bram Moolenaar071d4272004-06-13 20:20:40 +00007065 /* Trigger CmdwinLeave autocommands. */
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02007066 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINLEAVE);
Bram Moolenaar42f06f92014-08-17 17:24:07 +02007067
7068# ifdef FEAT_FOLDING
7069 /* Restore KeyTyped in case it is modified by autocommands */
7070 KeyTyped = save_KeyTyped;
7071# endif
7072
Bram Moolenaar071d4272004-06-13 20:20:40 +00007073# endif
7074
Bram Moolenaarccc18222007-05-10 18:25:20 +00007075 /* Restore the command line info. */
Bram Moolenaar1d669c22017-01-11 22:40:19 +01007076 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007077 cmdwin_type = 0;
7078
7079 exmode_active = save_exmode;
7080
Bram Moolenaarf9821062008-06-20 16:31:07 +00007081 /* Safety check: The old window or buffer was deleted: It's a bug when
Bram Moolenaar071d4272004-06-13 20:20:40 +00007082 * this happens! */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007083 if (!win_valid(old_curwin) || !bufref_valid(&old_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007084 {
7085 cmdwin_result = Ctrl_C;
7086 EMSG(_("E199: Active window or buffer deleted"));
7087 }
7088 else
7089 {
7090# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7091 /* autocmds may abort script processing */
7092 if (aborting() && cmdwin_result != K_IGNORE)
7093 cmdwin_result = Ctrl_C;
7094# endif
7095 /* Set the new command line from the cmdline buffer. */
7096 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00007097 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007098 {
Bram Moolenaar46152342005-09-07 21:18:43 +00007099 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
7100
7101 if (histtype == HIST_CMD)
7102 {
7103 /* Execute the command directly. */
7104 ccline.cmdbuff = vim_strsave((char_u *)p);
7105 cmdwin_result = CAR;
7106 }
7107 else
7108 {
7109 /* First need to cancel what we were doing. */
7110 ccline.cmdbuff = NULL;
7111 stuffcharReadbuff(':');
7112 stuffReadbuff((char_u *)p);
7113 stuffcharReadbuff(CAR);
7114 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007115 }
7116 else if (cmdwin_result == K_XF2) /* :qa typed */
7117 {
7118 ccline.cmdbuff = vim_strsave((char_u *)"qa");
7119 cmdwin_result = CAR;
7120 }
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02007121 else if (cmdwin_result == Ctrl_C)
7122 {
7123 /* :q or :close, don't execute any command
7124 * and don't modify the cmd window. */
7125 ccline.cmdbuff = NULL;
7126 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007127 else
7128 ccline.cmdbuff = vim_strsave(ml_get_curline());
7129 if (ccline.cmdbuff == NULL)
Bram Moolenaar5a15b6a2017-07-11 15:11:57 +02007130 {
7131 ccline.cmdbuff = vim_strsave((char_u *)"");
7132 ccline.cmdlen = 0;
7133 ccline.cmdbufflen = 1;
7134 ccline.cmdpos = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007135 cmdwin_result = Ctrl_C;
Bram Moolenaar5a15b6a2017-07-11 15:11:57 +02007136 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007137 else
7138 {
7139 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
7140 ccline.cmdbufflen = ccline.cmdlen + 1;
7141 ccline.cmdpos = curwin->w_cursor.col;
7142 if (ccline.cmdpos > ccline.cmdlen)
7143 ccline.cmdpos = ccline.cmdlen;
7144 if (cmdwin_result == K_IGNORE)
7145 {
7146 set_cmdspos_cursor();
7147 redrawcmd();
7148 }
7149 }
7150
7151# ifdef FEAT_AUTOCMD
7152 /* Don't execute autocommands while deleting the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007153 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007154# endif
Bram Moolenaarfa67fbe2015-06-25 18:20:36 +02007155# ifdef FEAT_CONCEAL
7156 /* Avoid command-line window first character being concealed. */
7157 curwin->w_p_cole = 0;
7158# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007159 wp = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007160 set_bufref(&bufref, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007161 win_goto(old_curwin);
7162 win_close(wp, TRUE);
Bram Moolenaar8006d692010-03-02 17:23:21 +01007163
7164 /* win_close() may have already wiped the buffer when 'bh' is
7165 * set to 'wipe' */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007166 if (bufref_valid(&bufref))
7167 close_buffer(NULL, bufref.br_buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007168
7169 /* Restore window sizes. */
7170 win_size_restore(&winsizes);
7171
7172# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007173 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007174# endif
7175 }
7176
7177 ga_clear(&winsizes);
7178 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00007179# ifdef FEAT_RIGHTLEFT
7180 cmdmsg_rl = save_cmdmsg_rl;
7181# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007182
7183 State = save_State;
7184# ifdef FEAT_MOUSE
7185 setmouse();
7186# endif
7187
7188 return cmdwin_result;
7189}
7190#endif /* FEAT_CMDWIN */
7191
7192/*
7193 * Used for commands that either take a simple command string argument, or:
7194 * cmd << endmarker
7195 * {script}
7196 * endmarker
7197 * Returns a pointer to allocated memory with {script} or NULL.
7198 */
7199 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007200script_get(exarg_T *eap, char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007201{
7202 char_u *theline;
7203 char *end_pattern = NULL;
7204 char dot[] = ".";
7205 garray_T ga;
7206
7207 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
7208 return NULL;
7209
7210 ga_init2(&ga, 1, 0x400);
7211
7212 if (cmd[2] != NUL)
7213 end_pattern = (char *)skipwhite(cmd + 2);
7214 else
7215 end_pattern = dot;
7216
7217 for (;;)
7218 {
7219 theline = eap->getline(
7220#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00007221 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00007222#endif
7223 NUL, eap->cookie, 0);
7224
7225 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
Bram Moolenaarbe555e72008-08-06 12:19:26 +00007226 {
7227 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007228 break;
Bram Moolenaarbe555e72008-08-06 12:19:26 +00007229 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007230
7231 ga_concat(&ga, theline);
7232 ga_append(&ga, '\n');
7233 vim_free(theline);
7234 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00007235 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007236
7237 return (char_u *)ga.ga_data;
7238}
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02007239
7240#ifdef FEAT_SEARCH_EXTRA
7241 static void
7242set_search_match(pos_T *t)
7243{
7244 /*
7245 * First move cursor to end of match, then to the start. This
7246 * moves the whole match onto the screen when 'nowrap' is set.
7247 */
7248 t->lnum += search_match_lines;
7249 t->col = search_match_endcol;
7250 if (t->lnum > curbuf->b_ml.ml_line_count)
7251 {
7252 t->lnum = curbuf->b_ml.ml_line_count;
7253 coladvance((colnr_T)MAXCOL);
7254 }
7255}
7256#endif