blob: fc48a9b72347fbb1951431d04f8d1651f2e173d4 [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
Bram Moolenaar37b15562018-08-14 22:08:25 +020016#ifndef MAX
17# define MAX(x,y) ((x) > (y) ? (x) : (y))
18#endif
19
Bram Moolenaar071d4272004-06-13 20:20:40 +000020/*
21 * Variables shared between getcmdline(), redrawcmdline() and others.
22 * These need to be saved when using CTRL-R |, that's why they are in a
23 * structure.
24 */
25struct cmdline_info
26{
27 char_u *cmdbuff; /* pointer to command line buffer */
28 int cmdbufflen; /* length of cmdbuff */
29 int cmdlen; /* number of chars in command line */
30 int cmdpos; /* current cursor position */
31 int cmdspos; /* cursor column on screen */
Bram Moolenaar5ae636b2012-04-30 18:48:53 +020032 int cmdfirstc; /* ':', '/', '?', '=', '>' or NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +000033 int cmdindent; /* number of spaces before cmdline */
34 char_u *cmdprompt; /* message in front of cmdline */
35 int cmdattr; /* attributes for prompt */
36 int overstrike; /* Typing mode on the command line. Shared by
37 getcmdline() and put_on_cmdline(). */
Bram Moolenaard6e7cc62008-09-14 12:42:29 +000038 expand_T *xpc; /* struct being used for expansion, xp_pattern
39 may point into cmdbuff */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000040 int xp_context; /* type of expansion */
41# ifdef FEAT_EVAL
42 char_u *xp_arg; /* user-defined expansion arg */
Bram Moolenaar93db9752006-11-21 10:29:45 +000043 int input_fn; /* when TRUE Invoked for input() function */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000044# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000045};
46
Bram Moolenaar438d1762018-09-30 17:11:48 +020047// The current cmdline_info. It is initialized in getcmdline() and after that
48// used by other functions. When invoking getcmdline() recursively it needs
49// to be saved with save_cmdline() and restored with restore_cmdline().
Bram Moolenaard6e7cc62008-09-14 12:42:29 +000050static struct cmdline_info ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +000051
Bram Moolenaar438d1762018-09-30 17:11:48 +020052static int cmd_showtail; /* Only show path tail in lists ? */
Bram Moolenaar071d4272004-06-13 20:20:40 +000053
54#ifdef FEAT_EVAL
55static int new_cmdpos; /* position set by set_cmdline_pos() */
56#endif
57
Bram Moolenaara92522f2017-07-15 15:21:38 +020058static int extra_char = NUL; /* extra character to display when redrawing
59 * the command line */
Bram Moolenaar6a77d262017-07-16 15:24:01 +020060static int extra_char_shift;
61
Bram Moolenaar071d4272004-06-13 20:20:40 +000062#ifdef FEAT_CMDHIST
63typedef struct hist_entry
64{
65 int hisnum; /* identifying number */
Bram Moolenaarb3049f42013-04-05 18:58:47 +020066 int viminfo; /* when TRUE hisstr comes from viminfo */
Bram Moolenaar071d4272004-06-13 20:20:40 +000067 char_u *hisstr; /* actual entry, separator char after the NUL */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +020068 time_t time_set; /* when it was typed, zero if unknown */
Bram Moolenaar071d4272004-06-13 20:20:40 +000069} histentry_T;
70
71static histentry_T *(history[HIST_COUNT]) = {NULL, NULL, NULL, NULL, NULL};
72static int hisidx[HIST_COUNT] = {-1, -1, -1, -1, -1}; /* lastused entry */
73static int hisnum[HIST_COUNT] = {0, 0, 0, 0, 0};
74 /* identifying (unique) number of newest history entry */
75static int hislen = 0; /* actual length of history tables */
76
Bram Moolenaard25c16e2016-01-29 22:13:30 +010077static int hist_char2type(int c);
Bram Moolenaar071d4272004-06-13 20:20:40 +000078#endif
79
80#ifdef FEAT_RIGHTLEFT
81static int cmd_hkmap = 0; /* Hebrew mapping during command line */
82#endif
83
84#ifdef FEAT_FKMAP
85static int cmd_fkmap = 0; /* Farsi mapping during command line */
86#endif
87
Bram Moolenaar438d1762018-09-30 17:11:48 +020088static char_u *getcmdline_int(int firstc, long count, int indent, int init_ccline);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010089static int cmdline_charsize(int idx);
90static void set_cmdspos(void);
91static void set_cmdspos_cursor(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000092#ifdef FEAT_MBYTE
Bram Moolenaard25c16e2016-01-29 22:13:30 +010093static void correct_cmdspos(int idx, int cells);
Bram Moolenaar071d4272004-06-13 20:20:40 +000094#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010095static void alloc_cmdbuff(int len);
96static int realloc_cmdbuff(int len);
97static void draw_cmdline(int start, int len);
98static void save_cmdline(struct cmdline_info *ccp);
99static void restore_cmdline(struct cmdline_info *ccp);
100static int cmdline_paste(int regname, int literally, int remcr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101#ifdef FEAT_WILDMENU
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100102static void cmdline_del(int from);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100104static void redrawcmdprompt(void);
105static void cursorcmd(void);
106static int ccheck_abbr(int);
107static int nextwild(expand_T *xp, int type, int options, int escape);
108static void escape_fname(char_u **pp);
109static int showmatches(expand_T *xp, int wildmenu);
110static void set_expand_context(expand_T *xp);
111static int ExpandFromContext(expand_T *xp, char_u *, int *, char_u ***, int);
112static int expand_showtail(expand_T *xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113#ifdef FEAT_CMDL_COMPL
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100114static int expand_shellcmd(char_u *filepat, int *num_file, char_u ***file, int flagsarg);
Bram Moolenaar52f9c192016-03-13 13:24:45 +0100115static int ExpandRTDir(char_u *pat, int flags, int *num_file, char_u ***file, char *dirname[]);
Bram Moolenaar35ca0e72016-03-05 17:41:49 +0100116static int ExpandPackAddDir(char_u *pat, int *num_file, char_u ***file);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +0200117# ifdef FEAT_CMDHIST
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100118static char_u *get_history_arg(expand_T *xp, int idx);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +0200119# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100121static int ExpandUserDefined(expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file);
122static int ExpandUserList(expand_T *xp, int *num_file, char_u ***file);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123# endif
124#endif
Bram Moolenaar25a6df92013-04-06 14:29:00 +0200125#ifdef FEAT_CMDHIST
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100126static void clear_hist_entry(histentry_T *hisptr);
Bram Moolenaar25a6df92013-04-06 14:29:00 +0200127#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128
129#ifdef FEAT_CMDWIN
Bram Moolenaar3bab9392017-04-07 15:42:25 +0200130static int open_cmdwin(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131#endif
132
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200133#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
134static int
135#ifdef __BORLANDC__
136_RTLENTRYF
137#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100138sort_func_compare(const void *s1, const void *s2);
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200139#endif
140
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200141
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200142 static void
143trigger_cmd_autocmd(int typechar, int evt)
144{
145 char_u typestr[2];
146
147 typestr[0] = typechar;
148 typestr[1] = NUL;
149 apply_autocmds(evt, typestr, typestr, FALSE, curbuf);
150}
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200151
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152/*
Bram Moolenaarf8e8c062017-10-22 14:44:17 +0200153 * Abandon the command line.
154 */
155 static void
156abandon_cmdline(void)
157{
Bram Moolenaard23a8232018-02-10 18:45:26 +0100158 VIM_CLEAR(ccline.cmdbuff);
Bram Moolenaarf8e8c062017-10-22 14:44:17 +0200159 if (msg_scrolled == 0)
160 compute_cmdrow();
Bram Moolenaar32526b32019-01-19 17:43:09 +0100161 msg("");
Bram Moolenaarf8e8c062017-10-22 14:44:17 +0200162 redraw_cmdline = TRUE;
163}
164
Bram Moolenaaree219b02017-12-17 14:55:01 +0100165#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaarf8e8c062017-10-22 14:44:17 +0200166/*
Bram Moolenaar66216052017-12-16 16:33:44 +0100167 * Guess that the pattern matches everything. Only finds specific cases, such
168 * as a trailing \|, which can happen while typing a pattern.
169 */
170 static int
171empty_pattern(char_u *p)
172{
Bram Moolenaar200ea8f2018-01-02 15:37:46 +0100173 size_t n = STRLEN(p);
Bram Moolenaar66216052017-12-16 16:33:44 +0100174
175 /* remove trailing \v and the like */
176 while (n >= 2 && p[n - 2] == '\\'
177 && vim_strchr((char_u *)"mMvVcCZ", p[n - 1]) != NULL)
178 n -= 2;
179 return n == 0 || (n >= 2 && p[n - 2] == '\\' && p[n - 1] == '|');
180}
181
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200182// Struct to store the viewstate during 'incsearch' highlighting.
Bram Moolenaar9b25af32018-04-28 13:56:09 +0200183typedef struct {
184 colnr_T vs_curswant;
185 colnr_T vs_leftcol;
186 linenr_T vs_topline;
187# ifdef FEAT_DIFF
188 int vs_topfill;
189# endif
190 linenr_T vs_botline;
191 linenr_T vs_empty_rows;
192} viewstate_T;
193
194 static void
195save_viewstate(viewstate_T *vs)
196{
197 vs->vs_curswant = curwin->w_curswant;
198 vs->vs_leftcol = curwin->w_leftcol;
199 vs->vs_topline = curwin->w_topline;
200# ifdef FEAT_DIFF
201 vs->vs_topfill = curwin->w_topfill;
202# endif
203 vs->vs_botline = curwin->w_botline;
204 vs->vs_empty_rows = curwin->w_empty_rows;
205}
206
207 static void
208restore_viewstate(viewstate_T *vs)
209{
210 curwin->w_curswant = vs->vs_curswant;
211 curwin->w_leftcol = vs->vs_leftcol;
212 curwin->w_topline = vs->vs_topline;
213# ifdef FEAT_DIFF
214 curwin->w_topfill = vs->vs_topfill;
215# endif
216 curwin->w_botline = vs->vs_botline;
217 curwin->w_empty_rows = vs->vs_empty_rows;
218}
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200219
220// Struct to store the state of 'incsearch' highlighting.
221typedef struct {
222 pos_T search_start; // where 'incsearch' starts searching
223 pos_T save_cursor;
224 viewstate_T init_viewstate;
225 viewstate_T old_viewstate;
226 pos_T match_start;
227 pos_T match_end;
228 int did_incsearch;
229 int incsearch_postponed;
Bram Moolenaar167ae422018-08-14 21:32:21 +0200230 int magic_save;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200231} incsearch_state_T;
232
233 static void
234init_incsearch_state(incsearch_state_T *is_state)
235{
236 is_state->match_start = curwin->w_cursor;
237 is_state->did_incsearch = FALSE;
238 is_state->incsearch_postponed = FALSE;
Bram Moolenaar167ae422018-08-14 21:32:21 +0200239 is_state->magic_save = p_magic;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200240 CLEAR_POS(&is_state->match_end);
241 is_state->save_cursor = curwin->w_cursor; // may be restored later
242 is_state->search_start = curwin->w_cursor;
243 save_viewstate(&is_state->init_viewstate);
244 save_viewstate(&is_state->old_viewstate);
245}
246
247/*
248 * First move cursor to end of match, then to the start. This
249 * moves the whole match onto the screen when 'nowrap' is set.
250 */
251 static void
252set_search_match(pos_T *t)
253{
254 t->lnum += search_match_lines;
255 t->col = search_match_endcol;
256 if (t->lnum > curbuf->b_ml.ml_line_count)
257 {
258 t->lnum = curbuf->b_ml.ml_line_count;
259 coladvance((colnr_T)MAXCOL);
260 }
261}
262
263/*
264 * Return TRUE when 'incsearch' highlighting is to be done.
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200265 * Sets search_first_line and search_last_line to the address range.
Bram Moolenaar198cb662018-09-06 21:44:17 +0200266 * May change the last search pattern.
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200267 */
268 static int
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200269do_incsearch_highlighting(int firstc, incsearch_state_T *is_state,
270 int *skiplen, int *patlen)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200271{
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200272 char_u *cmd;
273 cmdmod_T save_cmdmod = cmdmod;
274 char_u *p;
275 int delim_optional = FALSE;
276 int delim;
277 char_u *end;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100278 char *dummy;
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200279 exarg_T ea;
280 pos_T save_cursor;
Bram Moolenaar8b0d5ce2018-08-22 23:05:44 +0200281 int use_last_pat;
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200282
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200283 *skiplen = 0;
284 *patlen = ccline.cmdlen;
285
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200286 if (!p_is || cmd_silent)
287 return FALSE;
288
289 // by default search all lines
290 search_first_line = 0;
291 search_last_line = MAXLNUM;
292
293 if (firstc == '/' || firstc == '?')
294 return TRUE;
295 if (firstc != ':')
296 return FALSE;
297
298 vim_memset(&ea, 0, sizeof(ea));
299 ea.line1 = 1;
300 ea.line2 = 1;
301 ea.cmd = ccline.cmdbuff;
302 ea.addr_type = ADDR_LINES;
303
304 parse_command_modifiers(&ea, &dummy, TRUE);
305 cmdmod = save_cmdmod;
306
307 cmd = skip_range(ea.cmd, NULL);
308 if (vim_strchr((char_u *)"sgvl", *cmd) == NULL)
309 return FALSE;
310
311 // Skip over "substitute" to find the pattern separator.
312 for (p = cmd; ASCII_ISALPHA(*p); ++p)
313 ;
314 if (*skipwhite(p) == NUL)
315 return FALSE;
316
317 if (STRNCMP(cmd, "substitute", p - cmd) == 0
318 || STRNCMP(cmd, "smagic", p - cmd) == 0
319 || STRNCMP(cmd, "snomagic", MAX(p - cmd, 3)) == 0
320 || STRNCMP(cmd, "vglobal", p - cmd) == 0)
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200321 {
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200322 if (*cmd == 's' && cmd[1] == 'm')
323 p_magic = TRUE;
324 else if (*cmd == 's' && cmd[1] == 'n')
325 p_magic = FALSE;
326 }
327 else if (STRNCMP(cmd, "sort", MAX(p - cmd, 3)) == 0)
328 {
329 // skip over flags
330 while (ASCII_ISALPHA(*(p = skipwhite(p))))
331 ++p;
332 if (*p == NUL)
333 return FALSE;
334 }
335 else if (STRNCMP(cmd, "vimgrep", MAX(p - cmd, 3)) == 0
336 || STRNCMP(cmd, "vimgrepadd", MAX(p - cmd, 8)) == 0
337 || STRNCMP(cmd, "lvimgrep", MAX(p - cmd, 2)) == 0
338 || STRNCMP(cmd, "lvimgrepadd", MAX(p - cmd, 9)) == 0
339 || STRNCMP(cmd, "global", p - cmd) == 0)
340 {
341 // skip over "!"
342 if (*p == '!')
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200343 {
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200344 p++;
345 if (*skipwhite(p) == NUL)
346 return FALSE;
347 }
348 if (*cmd != 'g')
349 delim_optional = TRUE;
350 }
351 else
352 return FALSE;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200353
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200354 p = skipwhite(p);
355 delim = (delim_optional && vim_isIDc(*p)) ? ' ' : *p++;
356 end = skip_regexp(p, delim, p_magic, NULL);
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +0200357
Bram Moolenaar8b0d5ce2018-08-22 23:05:44 +0200358 use_last_pat = end == p && *end == delim;
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +0200359
Bram Moolenaar8b0d5ce2018-08-22 23:05:44 +0200360 if (end == p && !use_last_pat)
361 return FALSE;
362
363 // Don't do 'hlsearch' highlighting if the pattern matches everything.
364 if (!use_last_pat)
365 {
366 char c = *end;
367 int empty;
368
369 *end = NUL;
370 empty = empty_pattern(p);
371 *end = c;
372 if (empty)
373 return FALSE;
374 }
375
376 // found a non-empty pattern or //
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200377 *skiplen = (int)(p - ccline.cmdbuff);
378 *patlen = (int)(end - p);
Bram Moolenaar264cf5c2018-08-18 21:05:31 +0200379
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200380 // parse the address range
381 save_cursor = curwin->w_cursor;
382 curwin->w_cursor = is_state->search_start;
Bram Moolenaar50eb16c2018-09-15 15:42:40 +0200383 parse_cmd_address(&ea, &dummy, TRUE);
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200384 if (ea.addr_count > 0)
385 {
386 // Allow for reverse match.
387 if (ea.line2 < ea.line1)
388 {
389 search_first_line = ea.line2;
390 search_last_line = ea.line1;
391 }
392 else
393 {
394 search_first_line = ea.line1;
395 search_last_line = ea.line2;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200396 }
397 }
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200398 else if (cmd[0] == 's' && cmd[1] != 'o')
399 {
400 // :s defaults to the current line
401 search_first_line = curwin->w_cursor.lnum;
402 search_last_line = curwin->w_cursor.lnum;
403 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200404
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200405 curwin->w_cursor = save_cursor;
406 return TRUE;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200407}
408
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200409 static void
410finish_incsearch_highlighting(
411 int gotesc,
412 incsearch_state_T *is_state,
413 int call_update_screen)
414{
415 if (is_state->did_incsearch)
416 {
417 is_state->did_incsearch = FALSE;
418 if (gotesc)
419 curwin->w_cursor = is_state->save_cursor;
420 else
421 {
422 if (!EQUAL_POS(is_state->save_cursor, is_state->search_start))
423 {
424 // put the '" mark at the original position
425 curwin->w_cursor = is_state->save_cursor;
426 setpcmark();
427 }
428 curwin->w_cursor = is_state->search_start;
429 }
430 restore_viewstate(&is_state->old_viewstate);
431 highlight_match = FALSE;
Bram Moolenaarf13daa42018-08-31 22:09:54 +0200432
433 // by default search all lines
434 search_first_line = 0;
435 search_last_line = MAXLNUM;
436
437 p_magic = is_state->magic_save;
438
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200439 validate_cursor(); /* needed for TAB */
Bram Moolenaar65985ac2018-09-16 17:08:04 +0200440 redraw_all_later(SOME_VALID);
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200441 if (call_update_screen)
442 update_screen(SOME_VALID);
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200443 }
444}
445
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200446/*
447 * Do 'incsearch' highlighting if desired.
448 */
449 static void
450may_do_incsearch_highlighting(
451 int firstc,
452 long count,
453 incsearch_state_T *is_state)
454{
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200455 int skiplen, patlen;
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200456 int found; // do_search() result
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200457 pos_T end_pos;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200458#ifdef FEAT_RELTIME
459 proftime_T tm;
460#endif
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200461 int next_char;
462 int use_last_pat;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200463
Bram Moolenaar198cb662018-09-06 21:44:17 +0200464 // Parsing range may already set the last search pattern.
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100465 // NOTE: must call restore_last_search_pattern() before returning!
Bram Moolenaar198cb662018-09-06 21:44:17 +0200466 save_last_search_pattern();
467
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200468 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen))
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200469 {
Bram Moolenaar198cb662018-09-06 21:44:17 +0200470 restore_last_search_pattern();
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200471 finish_incsearch_highlighting(FALSE, is_state, TRUE);
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200472 return;
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200473 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200474
475 // If there is a character waiting, search and redraw later.
476 if (char_avail())
477 {
Bram Moolenaar198cb662018-09-06 21:44:17 +0200478 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200479 is_state->incsearch_postponed = TRUE;
480 return;
481 }
482 is_state->incsearch_postponed = FALSE;
483
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200484 if (search_first_line == 0)
485 // start at the original cursor position
486 curwin->w_cursor = is_state->search_start;
Bram Moolenaar1c299432018-10-28 14:36:09 +0100487 else if (search_first_line > curbuf->b_ml.ml_line_count)
488 {
489 // start after the last line
490 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
491 curwin->w_cursor.col = MAXCOL;
492 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200493 else
494 {
495 // start at the first line in the range
496 curwin->w_cursor.lnum = search_first_line;
497 curwin->w_cursor.col = 0;
498 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200499
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200500 // Use the previous pattern for ":s//".
501 next_char = ccline.cmdbuff[skiplen + patlen];
502 use_last_pat = patlen == 0 && skiplen > 0
503 && ccline.cmdbuff[skiplen - 1] == next_char;
504
505 // If there is no pattern, don't do anything.
506 if (patlen == 0 && !use_last_pat)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200507 {
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200508 found = 0;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200509 set_no_hlsearch(TRUE); // turn off previous highlight
510 redraw_all_later(SOME_VALID);
511 }
512 else
513 {
514 int search_flags = SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK;
515
516 cursor_off(); // so the user knows we're busy
517 out_flush();
518 ++emsg_off; // so it doesn't beep if bad expr
519#ifdef FEAT_RELTIME
520 // Set the time limit to half a second.
521 profile_setlimit(500L, &tm);
522#endif
523 if (!p_hls)
524 search_flags += SEARCH_KEEP;
Bram Moolenaar976b8472018-08-12 15:49:47 +0200525 if (search_first_line != 0)
526 search_flags += SEARCH_START;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200527 ccline.cmdbuff[skiplen + patlen] = NUL;
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200528 found = do_search(NULL, firstc == ':' ? '/' : firstc,
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200529 ccline.cmdbuff + skiplen, count, search_flags,
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200530#ifdef FEAT_RELTIME
531 &tm, NULL
532#else
533 NULL, NULL
534#endif
535 );
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200536 ccline.cmdbuff[skiplen + patlen] = next_char;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200537 --emsg_off;
538
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200539 if (curwin->w_cursor.lnum < search_first_line
540 || curwin->w_cursor.lnum > search_last_line)
Bram Moolenaar2f6a3462018-08-14 18:16:52 +0200541 {
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200542 // match outside of address range
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200543 found = 0;
Bram Moolenaar2f6a3462018-08-14 18:16:52 +0200544 curwin->w_cursor = is_state->search_start;
545 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200546
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200547 // if interrupted while searching, behave like it failed
548 if (got_int)
549 {
550 (void)vpeekc(); // remove <C-C> from input stream
551 got_int = FALSE; // don't abandon the command line
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200552 found = 0;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200553 }
554 else if (char_avail())
555 // cancelled searching because a char was typed
556 is_state->incsearch_postponed = TRUE;
557 }
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200558 if (found != 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200559 highlight_match = TRUE; // highlight position
560 else
561 highlight_match = FALSE; // remove highlight
562
563 // First restore the old curwin values, so the screen is positioned in the
564 // same way as the actual search command.
565 restore_viewstate(&is_state->old_viewstate);
566 changed_cline_bef_curs();
567 update_topline();
568
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200569 if (found != 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200570 {
571 pos_T save_pos = curwin->w_cursor;
572
573 is_state->match_start = curwin->w_cursor;
574 set_search_match(&curwin->w_cursor);
575 validate_cursor();
576 end_pos = curwin->w_cursor;
577 is_state->match_end = end_pos;
578 curwin->w_cursor = save_pos;
579 }
580 else
581 end_pos = curwin->w_cursor; // shutup gcc 4
582
Bram Moolenaar4edfe2d2018-08-23 20:55:45 +0200583 // Disable 'hlsearch' highlighting if the pattern matches everything.
584 // Avoids a flash when typing "foo\|".
585 if (!use_last_pat)
586 {
587 next_char = ccline.cmdbuff[skiplen + patlen];
588 ccline.cmdbuff[skiplen + patlen] = NUL;
Bram Moolenaar65985ac2018-09-16 17:08:04 +0200589 if (empty_pattern(ccline.cmdbuff) && !no_hlsearch)
590 {
591 redraw_all_later(SOME_VALID);
Bram Moolenaar4edfe2d2018-08-23 20:55:45 +0200592 set_no_hlsearch(TRUE);
Bram Moolenaar65985ac2018-09-16 17:08:04 +0200593 }
Bram Moolenaar4edfe2d2018-08-23 20:55:45 +0200594 ccline.cmdbuff[skiplen + patlen] = next_char;
595 }
596
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200597 validate_cursor();
598 // May redraw the status line to show the cursor position.
599 if (p_ru && curwin->w_status_height > 0)
600 curwin->w_redr_status = TRUE;
601
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200602 update_screen(SOME_VALID);
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200603 restore_last_search_pattern();
604
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200605 // Leave it at the end to make CTRL-R CTRL-W work. But not when beyond the
606 // end of the pattern, e.g. for ":s/pat/".
607 if (ccline.cmdbuff[skiplen + patlen] != NUL)
608 curwin->w_cursor = is_state->search_start;
609 else if (found != 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200610 curwin->w_cursor = end_pos;
611
612 msg_starthere();
613 redrawcmdline();
614 is_state->did_incsearch = TRUE;
615}
616
617/*
618 * May adjust 'incsearch' highlighting for typing CTRL-G and CTRL-T, go to next
619 * or previous match.
620 * Returns FAIL when jumping to cmdline_not_changed;
621 */
622 static int
623may_adjust_incsearch_highlighting(
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200624 int firstc,
625 long count,
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200626 incsearch_state_T *is_state,
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200627 int c)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200628{
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200629 int skiplen, patlen;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200630 pos_T t;
631 char_u *pat;
632 int search_flags = SEARCH_NOOF;
633 int i;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200634 int save;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200635
Bram Moolenaar198cb662018-09-06 21:44:17 +0200636 // Parsing range may already set the last search pattern.
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100637 // NOTE: must call restore_last_search_pattern() before returning!
Bram Moolenaar198cb662018-09-06 21:44:17 +0200638 save_last_search_pattern();
639
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200640 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen))
Bram Moolenaar198cb662018-09-06 21:44:17 +0200641 {
642 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200643 return OK;
Bram Moolenaar198cb662018-09-06 21:44:17 +0200644 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200645 if (patlen == 0 && ccline.cmdbuff[skiplen] == NUL)
Bram Moolenaar198cb662018-09-06 21:44:17 +0200646 {
647 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200648 return FAIL;
Bram Moolenaar198cb662018-09-06 21:44:17 +0200649 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200650
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200651 if (firstc == ccline.cmdbuff[skiplen])
Bram Moolenaaref73a282018-08-11 19:02:22 +0200652 {
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200653 pat = last_search_pattern();
Bram Moolenaaref73a282018-08-11 19:02:22 +0200654 skiplen = 0;
Bram Moolenaard7cc1632018-08-14 20:18:26 +0200655 patlen = (int)STRLEN(pat);
Bram Moolenaaref73a282018-08-11 19:02:22 +0200656 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200657 else
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200658 pat = ccline.cmdbuff + skiplen;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200659
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200660 cursor_off();
661 out_flush();
662 if (c == Ctrl_G)
663 {
664 t = is_state->match_end;
665 if (LT_POS(is_state->match_start, is_state->match_end))
666 // Start searching at the end of the match not at the beginning of
667 // the next column.
668 (void)decl(&t);
669 search_flags += SEARCH_COL;
670 }
671 else
672 t = is_state->match_start;
673 if (!p_hls)
674 search_flags += SEARCH_KEEP;
675 ++emsg_off;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200676 save = pat[patlen];
677 pat[patlen] = NUL;
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100678 i = searchit(curwin, curbuf, &t, NULL,
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200679 c == Ctrl_G ? FORWARD : BACKWARD,
680 pat, count, search_flags,
681 RE_SEARCH, 0, NULL, NULL);
682 --emsg_off;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200683 pat[patlen] = save;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200684 if (i)
685 {
686 is_state->search_start = is_state->match_start;
687 is_state->match_end = t;
688 is_state->match_start = t;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200689 if (c == Ctrl_T && firstc != '?')
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200690 {
691 // Move just before the current match, so that when nv_search
692 // finishes the cursor will be put back on the match.
693 is_state->search_start = t;
694 (void)decl(&is_state->search_start);
695 }
696 else if (c == Ctrl_G && firstc == '?')
697 {
698 // Move just after the current match, so that when nv_search
699 // finishes the cursor will be put back on the match.
700 is_state->search_start = t;
701 (void)incl(&is_state->search_start);
702 }
703 if (LT_POS(t, is_state->search_start) && c == Ctrl_G)
704 {
705 // wrap around
706 is_state->search_start = t;
707 if (firstc == '?')
708 (void)incl(&is_state->search_start);
709 else
710 (void)decl(&is_state->search_start);
711 }
712
713 set_search_match(&is_state->match_end);
714 curwin->w_cursor = is_state->match_start;
715 changed_cline_bef_curs();
716 update_topline();
717 validate_cursor();
718 highlight_match = TRUE;
719 save_viewstate(&is_state->old_viewstate);
720 update_screen(NOT_VALID);
721 redrawcmdline();
722 }
723 else
724 vim_beep(BO_ERROR);
725 restore_last_search_pattern();
726 return FAIL;
727}
728
729/*
730 * When CTRL-L typed: add character from the match to the pattern.
731 * May set "*c" to the added character.
732 * Return OK when jumping to cmdline_not_changed.
733 */
734 static int
735may_add_char_to_search(int firstc, int *c, incsearch_state_T *is_state)
736{
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200737 int skiplen, patlen;
738
Bram Moolenaar198cb662018-09-06 21:44:17 +0200739 // Parsing range may already set the last search pattern.
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100740 // NOTE: must call restore_last_search_pattern() before returning!
Bram Moolenaar198cb662018-09-06 21:44:17 +0200741 save_last_search_pattern();
742
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200743 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen))
Bram Moolenaar198cb662018-09-06 21:44:17 +0200744 {
745 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200746 return FAIL;
Bram Moolenaar198cb662018-09-06 21:44:17 +0200747 }
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100748 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200749
750 // Add a character from under the cursor for 'incsearch'.
751 if (is_state->did_incsearch)
752 {
753 curwin->w_cursor = is_state->match_end;
754 if (!EQUAL_POS(curwin->w_cursor, is_state->search_start))
755 {
756 *c = gchar_cursor();
757
758 // If 'ignorecase' and 'smartcase' are set and the
759 // command line has no uppercase characters, convert
760 // the character to lowercase.
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200761 if (p_ic && p_scs && !pat_has_uppercase(ccline.cmdbuff + skiplen))
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200762 *c = MB_TOLOWER(*c);
763 if (*c != NUL)
764 {
765 if (*c == firstc || vim_strchr((char_u *)(
766 p_magic ? "\\~^$.*[" : "\\^$"), *c) != NULL)
767 {
768 // put a backslash before special characters
769 stuffcharReadbuff(*c);
770 *c = '\\';
771 }
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100772#ifdef FEAT_MBYTE
773 // add any composing characters
774 if (mb_char2len(*c) != mb_ptr2len(ml_get_cursor()))
775 {
776 int save_c = *c;
777
778 while (mb_char2len(*c) != mb_ptr2len(ml_get_cursor()))
779 {
780 curwin->w_cursor.col += mb_char2len(*c);
781 *c = gchar_cursor();
782 stuffcharReadbuff(*c);
783 }
784 *c = save_c;
785 }
786#endif
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200787 return FAIL;
788 }
789 }
790 }
791 return OK;
792}
Bram Moolenaar9b25af32018-04-28 13:56:09 +0200793#endif
794
Bram Moolenaard3dc0622018-09-30 17:45:30 +0200795 void
796cmdline_init(void)
797{
798 vim_memset(&ccline, 0, sizeof(struct cmdline_info));
799}
800
Bram Moolenaar66216052017-12-16 16:33:44 +0100801/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 * getcmdline() - accept a command line starting with firstc.
803 *
804 * firstc == ':' get ":" command line.
805 * firstc == '/' or '?' get search pattern
806 * firstc == '=' get expression
807 * firstc == '@' get text for input() function
808 * firstc == '>' get text for debug mode
809 * firstc == NUL get text for :insert command
810 * firstc == -1 like NUL, and break on CTRL-C
811 *
812 * The line is collected in ccline.cmdbuff, which is reallocated to fit the
813 * command line.
814 *
815 * Careful: getcmdline() can be called recursively!
816 *
817 * Return pointer to allocated string if there is a commandline, NULL
818 * otherwise.
819 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100821getcmdline(
822 int firstc,
Bram Moolenaar438d1762018-09-30 17:11:48 +0200823 long count, // only used for incremental search
824 int indent) // indent for inside conditionals
825{
826 return getcmdline_int(firstc, count, indent, TRUE);
827}
828
829 static char_u *
830getcmdline_int(
831 int firstc,
832 long count UNUSED, // only used for incremental search
833 int indent, // indent for inside conditionals
834 int init_ccline) // clear ccline first
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835{
836 int c;
837 int i;
838 int j;
839 int gotesc = FALSE; /* TRUE when <ESC> just typed */
840 int do_abbr; /* when TRUE check for abbr. */
841#ifdef FEAT_CMDHIST
842 char_u *lookfor = NULL; /* string to match */
843 int hiscnt; /* current history line in use */
844 int histype; /* history type to be used */
845#endif
846#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200847 incsearch_state_T is_state;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848#endif
849 int did_wild_list = FALSE; /* did wild_list() recently */
850 int wim_index = 0; /* index in wim_flags[] */
851 int res;
852 int save_msg_scroll = msg_scroll;
853 int save_State = State; /* remember State when called */
854 int some_key_typed = FALSE; /* one of the keys was typed */
855#ifdef FEAT_MOUSE
856 /* mouse drag and release events are ignored, unless they are
857 * preceded with a mouse down event */
858 int ignore_drag_release = TRUE;
859#endif
860#ifdef FEAT_EVAL
861 int break_ctrl_c = FALSE;
862#endif
863 expand_T xpc;
864 long *b_im_ptr = NULL;
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000865 struct cmdline_info save_ccline;
Bram Moolenaar438d1762018-09-30 17:11:48 +0200866 int did_save_ccline = FALSE;
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200867 int cmdline_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868
Bram Moolenaar438d1762018-09-30 17:11:48 +0200869 if (ccline.cmdbuff != NULL)
870 {
871 // Being called recursively. Since ccline is global, we need to save
872 // the current buffer and restore it when returning.
873 save_cmdline(&save_ccline);
874 did_save_ccline = TRUE;
875 }
876 if (init_ccline)
877 vim_memset(&ccline, 0, sizeof(struct cmdline_info));
878
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879#ifdef FEAT_EVAL
880 if (firstc == -1)
881 {
882 firstc = NUL;
883 break_ctrl_c = TRUE;
884 }
885#endif
886#ifdef FEAT_RIGHTLEFT
887 /* start without Hebrew mapping for a command line */
888 if (firstc == ':' || firstc == '=' || firstc == '>')
889 cmd_hkmap = 0;
890#endif
891
892 ccline.overstrike = FALSE; /* always start in insert mode */
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200893
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200895 init_incsearch_state(&is_state);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896#endif
897
898 /*
899 * set some variables for redrawcmd()
900 */
901 ccline.cmdfirstc = (firstc == '@' ? 0 : firstc);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000902 ccline.cmdindent = (firstc > 0 ? indent : 0);
903
904 /* alloc initial ccline.cmdbuff */
905 alloc_cmdbuff(exmode_active ? 250 : indent + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 if (ccline.cmdbuff == NULL)
Bram Moolenaar438d1762018-09-30 17:11:48 +0200907 goto theend; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 ccline.cmdlen = ccline.cmdpos = 0;
909 ccline.cmdbuff[0] = NUL;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +0100910 sb_text_start_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000912 /* autoindent for :insert and :append */
913 if (firstc <= 0)
914 {
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200915 vim_memset(ccline.cmdbuff, ' ', indent);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000916 ccline.cmdbuff[indent] = NUL;
917 ccline.cmdpos = indent;
918 ccline.cmdspos = indent;
919 ccline.cmdlen = indent;
920 }
921
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922 ExpandInit(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000923 ccline.xpc = &xpc;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924
925#ifdef FEAT_RIGHTLEFT
926 if (curwin->w_p_rl && *curwin->w_p_rlc == 's'
927 && (firstc == '/' || firstc == '?'))
928 cmdmsg_rl = TRUE;
929 else
930 cmdmsg_rl = FALSE;
931#endif
932
933 redir_off = TRUE; /* don't redirect the typed command */
934 if (!cmd_silent)
935 {
936 i = msg_scrolled;
937 msg_scrolled = 0; /* avoid wait_return message */
938 gotocmdline(TRUE);
939 msg_scrolled += i;
940 redrawcmdprompt(); /* draw prompt or indent */
941 set_cmdspos();
942 }
943 xpc.xp_context = EXPAND_NOTHING;
944 xpc.xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000945#ifndef BACKSLASH_IN_FILENAME
946 xpc.xp_shell = FALSE;
947#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000949#if defined(FEAT_EVAL)
950 if (ccline.input_fn)
951 {
952 xpc.xp_context = ccline.xp_context;
953 xpc.xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +0000954# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000955 xpc.xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +0000956# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000957 }
958#endif
959
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960 /*
961 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when
962 * doing ":@0" when register 0 doesn't contain a CR.
963 */
964 msg_scroll = FALSE;
965
966 State = CMDLINE;
967
968 if (firstc == '/' || firstc == '?' || firstc == '@')
969 {
970 /* Use ":lmap" mappings for search pattern and input(). */
971 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT)
972 b_im_ptr = &curbuf->b_p_iminsert;
973 else
974 b_im_ptr = &curbuf->b_p_imsearch;
975 if (*b_im_ptr == B_IMODE_LMAP)
976 State |= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100977#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978 im_set_active(*b_im_ptr == B_IMODE_IM);
979#endif
980 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100981#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 else if (p_imcmdline)
983 im_set_active(TRUE);
984#endif
985
986#ifdef FEAT_MOUSE
987 setmouse();
988#endif
989#ifdef CURSOR_SHAPE
990 ui_cursor_shape(); /* may show different cursor shape */
991#endif
992
Bram Moolenaarf4d11452005-12-02 00:46:37 +0000993 /* When inside an autocommand for writing "exiting" may be set and
994 * terminal mode set to cooked. Need to set raw mode here then. */
995 settmode(TMODE_RAW);
996
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200997 /* Trigger CmdlineEnter autocommands. */
998 cmdline_type = firstc == NUL ? '-' : firstc;
999 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINEENTER);
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02001000
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001#ifdef FEAT_CMDHIST
1002 init_history();
1003 hiscnt = hislen; /* set hiscnt to impossible history value */
1004 histype = hist_char2type(firstc);
1005#endif
1006
1007#ifdef FEAT_DIGRAPHS
Bram Moolenaar3c65e312009-04-29 16:47:23 +00001008 do_digraph(-1); /* init digraph typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009#endif
1010
Bram Moolenaar15a35c42014-06-25 12:26:46 +02001011 /* If something above caused an error, reset the flags, we do want to type
1012 * and execute commands. Display may be messed up a bit. */
1013 if (did_emsg)
1014 redrawcmd();
1015 did_emsg = FALSE;
1016 got_int = FALSE;
1017
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 /*
1019 * Collect the command string, handling editing keys.
1020 */
1021 for (;;)
1022 {
Bram Moolenaar29b2d262006-09-10 19:07:28 +00001023 redir_off = TRUE; /* Don't redirect the typed command.
1024 Repeated, because a ":redir" inside
1025 completion may switch it on. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026#ifdef USE_ON_FLY_SCROLL
1027 dont_scroll = FALSE; /* allow scrolling here */
1028#endif
1029 quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */
1030
Bram Moolenaar72532d32018-04-07 19:09:09 +02001031 did_emsg = FALSE; /* There can't really be a reason why an error
1032 that occurs while typing a command should
1033 cause the command not to be executed. */
1034
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 cursorcmd(); /* set the cursor on the right spot */
Bram Moolenaar30405d32008-01-02 20:55:27 +00001036
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +01001037 /* Get a character. Ignore K_IGNORE and K_NOP, they should not do
1038 * anything, such as stop completion. */
Bram Moolenaar30405d32008-01-02 20:55:27 +00001039 do
1040 {
1041 c = safe_vgetc();
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +01001042 } while (c == K_IGNORE || c == K_NOP);
Bram Moolenaar30405d32008-01-02 20:55:27 +00001043
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 if (KeyTyped)
1045 {
1046 some_key_typed = TRUE;
1047#ifdef FEAT_RIGHTLEFT
1048 if (cmd_hkmap)
1049 c = hkmap(c);
1050# ifdef FEAT_FKMAP
1051 if (cmd_fkmap)
1052 c = cmdl_fkmap(c);
1053# endif
1054 if (cmdmsg_rl && !KeyStuffed)
1055 {
1056 /* Invert horizontal movements and operations. Only when
1057 * typed by the user directly, not when the result of a
1058 * mapping. */
1059 switch (c)
1060 {
1061 case K_RIGHT: c = K_LEFT; break;
1062 case K_S_RIGHT: c = K_S_LEFT; break;
1063 case K_C_RIGHT: c = K_C_LEFT; break;
1064 case K_LEFT: c = K_RIGHT; break;
1065 case K_S_LEFT: c = K_S_RIGHT; break;
1066 case K_C_LEFT: c = K_C_RIGHT; break;
1067 }
1068 }
1069#endif
1070 }
1071
1072 /*
1073 * Ignore got_int when CTRL-C was typed here.
1074 * Don't ignore it in :global, we really need to break then, e.g., for
1075 * ":g/pat/normal /pat" (without the <CR>).
1076 * Don't ignore it for the input() function.
1077 */
1078 if ((c == Ctrl_C
1079#ifdef UNIX
1080 || c == intr_char
1081#endif
1082 )
1083#if defined(FEAT_EVAL) || defined(FEAT_CRYPT)
1084 && firstc != '@'
1085#endif
1086#ifdef FEAT_EVAL
1087 && !break_ctrl_c
1088#endif
1089 && !global_busy)
1090 got_int = FALSE;
1091
1092#ifdef FEAT_CMDHIST
1093 /* free old command line when finished moving around in the history
1094 * list */
1095 if (lookfor != NULL
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001096 && c != K_S_DOWN && c != K_S_UP
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001097 && c != K_DOWN && c != K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 && c != K_PAGEDOWN && c != K_PAGEUP
1099 && c != K_KPAGEDOWN && c != K_KPAGEUP
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001100 && c != K_LEFT && c != K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N)))
Bram Moolenaard23a8232018-02-10 18:45:26 +01001102 VIM_CLEAR(lookfor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103#endif
1104
1105 /*
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001106 * When there are matching completions to select <S-Tab> works like
1107 * CTRL-P (unless 'wc' is <S-Tab>).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 */
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001109 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110 c = Ctrl_P;
1111
1112#ifdef FEAT_WILDMENU
1113 /* Special translations for 'wildmenu' */
1114 if (did_wild_list && p_wmnu)
1115 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001116 if (c == K_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117 c = Ctrl_P;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001118 else if (c == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119 c = Ctrl_N;
1120 }
1121 /* Hitting CR after "emenu Name.": complete submenu */
1122 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu
1123 && ccline.cmdpos > 1
1124 && ccline.cmdbuff[ccline.cmdpos - 1] == '.'
1125 && ccline.cmdbuff[ccline.cmdpos - 2] != '\\'
1126 && (c == '\n' || c == '\r' || c == K_KENTER))
1127 c = K_DOWN;
1128#endif
1129
1130 /* free expanded names when finished walking through matches */
1131 if (xpc.xp_numfiles != -1
1132 && !(c == p_wc && KeyTyped) && c != p_wcm
1133 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A
1134 && c != Ctrl_L)
1135 {
1136 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
1137 did_wild_list = FALSE;
1138#ifdef FEAT_WILDMENU
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001139 if (!p_wmnu || (c != K_UP && c != K_DOWN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140#endif
1141 xpc.xp_context = EXPAND_NOTHING;
1142 wim_index = 0;
1143#ifdef FEAT_WILDMENU
1144 if (p_wmnu && wild_menu_showing != 0)
1145 {
1146 int skt = KeyTyped;
Bram Moolenaar1e015462005-09-25 22:16:38 +00001147 int old_RedrawingDisabled = RedrawingDisabled;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001148
1149 if (ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001150 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151
1152 if (wild_menu_showing == WM_SCROLLED)
1153 {
1154 /* Entered command line, move it up */
1155 cmdline_row--;
1156 redrawcmd();
1157 }
1158 else if (save_p_ls != -1)
1159 {
1160 /* restore 'laststatus' and 'winminheight' */
1161 p_ls = save_p_ls;
1162 p_wmh = save_p_wmh;
1163 last_status(FALSE);
1164 update_screen(VALID); /* redraw the screen NOW */
1165 redrawcmd();
1166 save_p_ls = -1;
1167 }
1168 else
1169 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 win_redraw_last_status(topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 redraw_statuslines();
1172 }
1173 KeyTyped = skt;
1174 wild_menu_showing = 0;
Bram Moolenaar1e015462005-09-25 22:16:38 +00001175 if (ccline.input_fn)
1176 RedrawingDisabled = old_RedrawingDisabled;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177 }
1178#endif
1179 }
1180
1181#ifdef FEAT_WILDMENU
1182 /* Special translations for 'wildmenu' */
1183 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu)
1184 {
1185 /* Hitting <Down> after "emenu Name.": complete submenu */
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +00001186 if (c == K_DOWN && ccline.cmdpos > 0
1187 && ccline.cmdbuff[ccline.cmdpos - 1] == '.')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 c = p_wc;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001189 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 {
1191 /* Hitting <Up>: Remove one submenu name in front of the
1192 * cursor */
1193 int found = FALSE;
1194
1195 j = (int)(xpc.xp_pattern - ccline.cmdbuff);
1196 i = 0;
1197 while (--j > 0)
1198 {
1199 /* check for start of menu name */
1200 if (ccline.cmdbuff[j] == ' '
1201 && ccline.cmdbuff[j - 1] != '\\')
1202 {
1203 i = j + 1;
1204 break;
1205 }
1206 /* check for start of submenu name */
1207 if (ccline.cmdbuff[j] == '.'
1208 && ccline.cmdbuff[j - 1] != '\\')
1209 {
1210 if (found)
1211 {
1212 i = j + 1;
1213 break;
1214 }
1215 else
1216 found = TRUE;
1217 }
1218 }
1219 if (i > 0)
1220 cmdline_del(i);
1221 c = p_wc;
1222 xpc.xp_context = EXPAND_NOTHING;
1223 }
1224 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001225 if ((xpc.xp_context == EXPAND_FILES
Bram Moolenaar446cb832008-06-24 21:56:24 +00001226 || xpc.xp_context == EXPAND_DIRECTORIES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001227 || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 {
1229 char_u upseg[5];
1230
1231 upseg[0] = PATHSEP;
1232 upseg[1] = '.';
1233 upseg[2] = '.';
1234 upseg[3] = PATHSEP;
1235 upseg[4] = NUL;
1236
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +00001237 if (c == K_DOWN
1238 && ccline.cmdpos > 0
1239 && ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP
1240 && (ccline.cmdpos < 3
1241 || ccline.cmdbuff[ccline.cmdpos - 2] != '.'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242 || ccline.cmdbuff[ccline.cmdpos - 3] != '.'))
1243 {
1244 /* go down a directory */
1245 c = p_wc;
1246 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001247 else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 {
1249 /* If in a direct ancestor, strip off one ../ to go down */
1250 int found = FALSE;
1251
1252 j = ccline.cmdpos;
1253 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
1254 while (--j > i)
1255 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001256#ifdef FEAT_MBYTE
1257 if (has_mbyte)
1258 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
1259#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 if (vim_ispathsep(ccline.cmdbuff[j]))
1261 {
1262 found = TRUE;
1263 break;
1264 }
1265 }
1266 if (found
1267 && ccline.cmdbuff[j - 1] == '.'
1268 && ccline.cmdbuff[j - 2] == '.'
1269 && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2))
1270 {
1271 cmdline_del(j - 2);
1272 c = p_wc;
1273 }
1274 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001275 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 {
1277 /* go up a directory */
1278 int found = FALSE;
1279
1280 j = ccline.cmdpos - 1;
1281 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
1282 while (--j > i)
1283 {
1284#ifdef FEAT_MBYTE
1285 if (has_mbyte)
1286 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
1287#endif
1288 if (vim_ispathsep(ccline.cmdbuff[j])
1289#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001290 && vim_strchr((char_u *)" *?[{`$%#",
1291 ccline.cmdbuff[j + 1]) == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292#endif
1293 )
1294 {
1295 if (found)
1296 {
1297 i = j + 1;
1298 break;
1299 }
1300 else
1301 found = TRUE;
1302 }
1303 }
1304
1305 if (!found)
1306 j = i;
1307 else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0)
1308 j += 4;
1309 else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0
1310 && j == i)
1311 j += 3;
1312 else
1313 j = 0;
1314 if (j > 0)
1315 {
1316 /* TODO this is only for DOS/UNIX systems - need to put in
1317 * machine-specific stuff here and in upseg init */
1318 cmdline_del(j);
1319 put_on_cmdline(upseg + 1, 3, FALSE);
1320 }
1321 else if (ccline.cmdpos > i)
1322 cmdline_del(i);
Bram Moolenaar96a89642011-12-08 18:44:51 +01001323
1324 /* Now complete in the new directory. Set KeyTyped in case the
1325 * Up key came from a mapping. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 c = p_wc;
Bram Moolenaar96a89642011-12-08 18:44:51 +01001327 KeyTyped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 }
1329 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330
1331#endif /* FEAT_WILDMENU */
1332
1333 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert
1334 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */
1335 if (c == Ctrl_BSL)
1336 {
1337 ++no_mapping;
1338 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001339 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 --no_mapping;
1341 --allow_keys;
Bram Moolenaarb7356812012-10-11 04:04:37 +02001342 /* CTRL-\ e doesn't work when obtaining an expression, unless it
1343 * is in a mapping. */
1344 if (c != Ctrl_N && c != Ctrl_G && (c != 'e'
Bram Moolenaar31cbadf2018-09-25 20:48:57 +02001345 || (ccline.cmdfirstc == '=' && KeyTyped)
1346#ifdef FEAT_EVAL
Bram Moolenaaree91c332018-09-25 22:27:35 +02001347 || cmdline_star > 0
Bram Moolenaar31cbadf2018-09-25 20:48:57 +02001348#endif
1349 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 {
1351 vungetc(c);
1352 c = Ctrl_BSL;
1353 }
1354#ifdef FEAT_EVAL
1355 else if (c == 'e')
1356 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +02001357 char_u *p = NULL;
1358 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359
1360 /*
1361 * Replace the command line with the result of an expression.
Bram Moolenaar4770d092006-01-12 23:22:24 +00001362 * Need to save and restore the current command line, to be
1363 * able to enter a new one...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 */
1365 if (ccline.cmdpos == ccline.cmdlen)
1366 new_cmdpos = 99999; /* keep it at the end */
1367 else
1368 new_cmdpos = ccline.cmdpos;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001369
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 c = get_expr_register();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 if (c == '=')
1372 {
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001373 /* Need to save and restore ccline. And set "textlock"
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001374 * to avoid nasty things like going to another buffer when
1375 * evaluating an expression. */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001376 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 p = get_expr_line();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001378 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001379
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001380 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 {
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001382 len = (int)STRLEN(p);
1383 if (realloc_cmdbuff(len + 1) == OK)
1384 {
1385 ccline.cmdlen = len;
1386 STRCPY(ccline.cmdbuff, p);
1387 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001389 /* Restore the cursor or use the position set with
1390 * set_cmdline_pos(). */
1391 if (new_cmdpos > ccline.cmdlen)
1392 ccline.cmdpos = ccline.cmdlen;
1393 else
1394 ccline.cmdpos = new_cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001396 KeyTyped = FALSE; /* Don't do p_wc completion. */
1397 redrawcmd();
1398 goto cmdline_changed;
1399 }
Bram Moolenaar4e303c82018-11-24 14:27:44 +01001400 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401 }
1402 }
1403 beep_flush();
Bram Moolenaar66b4bf82010-11-16 14:06:08 +01001404 got_int = FALSE; /* don't abandon the command line */
1405 did_emsg = FALSE;
1406 emsg_on_display = FALSE;
1407 redrawcmd();
1408 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409 }
1410#endif
1411 else
1412 {
1413 if (c == Ctrl_G && p_im && restart_edit == 0)
1414 restart_edit = 'a';
1415 gotesc = TRUE; /* will free ccline.cmdbuff after putting it
1416 in history */
1417 goto returncmd; /* back to Normal mode */
1418 }
1419 }
1420
1421#ifdef FEAT_CMDWIN
1422 if (c == cedit_key || c == K_CMDWIN)
1423 {
Bram Moolenaar58da7072014-09-09 18:45:49 +02001424 if (ex_normal_busy == 0 && got_int == FALSE)
1425 {
1426 /*
1427 * Open a window to edit the command line (and history).
1428 */
Bram Moolenaar3bab9392017-04-07 15:42:25 +02001429 c = open_cmdwin();
Bram Moolenaar58da7072014-09-09 18:45:49 +02001430 some_key_typed = TRUE;
1431 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 }
1433# ifdef FEAT_DIGRAPHS
1434 else
1435# endif
1436#endif
1437#ifdef FEAT_DIGRAPHS
1438 c = do_digraph(c);
1439#endif
1440
1441 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC
1442 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL)))
1443 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001444 /* In Ex mode a backslash escapes a newline. */
1445 if (exmode_active
1446 && c != ESC
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001447 && ccline.cmdpos == ccline.cmdlen
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +00001448 && ccline.cmdpos > 0
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001449 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001451 if (c == K_KENTER)
1452 c = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001454 else
1455 {
1456 gotesc = FALSE; /* Might have typed ESC previously, don't
1457 truncate the cmdline now. */
1458 if (ccheck_abbr(c + ABBR_OFF))
1459 goto cmdline_changed;
1460 if (!cmd_silent)
1461 {
1462 windgoto(msg_row, 0);
1463 out_flush();
1464 }
1465 break;
1466 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467 }
1468
1469 /*
1470 * Completion for 'wildchar' or 'wildcharm' key.
1471 * - hitting <ESC> twice means: abandon command line.
1472 * - wildcard expansion is only done when the 'wildchar' key is really
1473 * typed, not when it comes from a macro
1474 */
1475 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm)
1476 {
1477 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */
1478 {
1479 /* if 'wildmode' contains "list" may still need to list */
1480 if (xpc.xp_numfiles > 1
1481 && !did_wild_list
1482 && (wim_flags[wim_index] & WIM_LIST))
1483 {
1484 (void)showmatches(&xpc, FALSE);
1485 redrawcmd();
1486 did_wild_list = TRUE;
1487 }
1488 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001489 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
1490 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001492 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
1493 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 else
1495 res = OK; /* don't insert 'wildchar' now */
1496 }
1497 else /* typed p_wc first time */
1498 {
1499 wim_index = 0;
1500 j = ccline.cmdpos;
1501 /* if 'wildmode' first contains "longest", get longest
1502 * common part */
1503 if (wim_flags[0] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001504 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
1505 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506 else
Bram Moolenaarb3479632012-11-28 16:49:58 +01001507 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP,
1508 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509
1510 /* if interrupted while completing, behave like it failed */
1511 if (got_int)
1512 {
1513 (void)vpeekc(); /* remove <C-C> from input stream */
1514 got_int = FALSE; /* don't abandon the command line */
1515 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
1516#ifdef FEAT_WILDMENU
1517 xpc.xp_context = EXPAND_NOTHING;
1518#endif
1519 goto cmdline_changed;
1520 }
1521
1522 /* when more than one match, and 'wildmode' first contains
1523 * "list", or no change and 'wildmode' contains "longest,list",
1524 * list all matches */
1525 if (res == OK && xpc.xp_numfiles > 1)
1526 {
1527 /* a "longest" that didn't do anything is skipped (but not
1528 * "list:longest") */
1529 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j)
1530 wim_index = 1;
1531 if ((wim_flags[wim_index] & WIM_LIST)
1532#ifdef FEAT_WILDMENU
1533 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0)
1534#endif
1535 )
1536 {
1537 if (!(wim_flags[0] & WIM_LONGEST))
1538 {
1539#ifdef FEAT_WILDMENU
1540 int p_wmnu_save = p_wmnu;
1541 p_wmnu = 0;
1542#endif
Bram Moolenaarb3479632012-11-28 16:49:58 +01001543 /* remove match */
1544 nextwild(&xpc, WILD_PREV, 0, firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545#ifdef FEAT_WILDMENU
1546 p_wmnu = p_wmnu_save;
1547#endif
1548 }
1549#ifdef FEAT_WILDMENU
1550 (void)showmatches(&xpc, p_wmnu
1551 && ((wim_flags[wim_index] & WIM_LIST) == 0));
1552#else
1553 (void)showmatches(&xpc, FALSE);
1554#endif
1555 redrawcmd();
1556 did_wild_list = TRUE;
1557 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001558 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
1559 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001561 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
1562 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 }
1564 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02001565 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 }
1567#ifdef FEAT_WILDMENU
1568 else if (xpc.xp_numfiles == -1)
1569 xpc.xp_context = EXPAND_NOTHING;
1570#endif
1571 }
1572 if (wim_index < 3)
1573 ++wim_index;
1574 if (c == ESC)
1575 gotesc = TRUE;
1576 if (res == OK)
1577 goto cmdline_changed;
1578 }
1579
1580 gotesc = FALSE;
1581
1582 /* <S-Tab> goes to last match, in a clumsy way */
1583 if (c == K_S_TAB && KeyTyped)
1584 {
Bram Moolenaarb3479632012-11-28 16:49:58 +01001585 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0, firstc != '@') == OK
1586 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK
1587 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 goto cmdline_changed;
1589 }
1590
1591 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */
1592 c = NL;
1593
1594 do_abbr = TRUE; /* default: check for abbreviation */
1595
1596 /*
1597 * Big switch for a typed command line character.
1598 */
1599 switch (c)
1600 {
1601 case K_BS:
1602 case Ctrl_H:
1603 case K_DEL:
1604 case K_KDEL:
1605 case Ctrl_W:
1606#ifdef FEAT_FKMAP
1607 if (cmd_fkmap && c == K_BS)
1608 c = K_DEL;
1609#endif
1610 if (c == K_KDEL)
1611 c = K_DEL;
1612
1613 /*
1614 * delete current character is the same as backspace on next
1615 * character, except at end of line
1616 */
1617 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen)
1618 ++ccline.cmdpos;
1619#ifdef FEAT_MBYTE
1620 if (has_mbyte && c == K_DEL)
1621 ccline.cmdpos += mb_off_next(ccline.cmdbuff,
1622 ccline.cmdbuff + ccline.cmdpos);
1623#endif
1624 if (ccline.cmdpos > 0)
1625 {
1626 char_u *p;
1627
1628 j = ccline.cmdpos;
1629 p = ccline.cmdbuff + j;
1630#ifdef FEAT_MBYTE
1631 if (has_mbyte)
1632 {
1633 p = mb_prevptr(ccline.cmdbuff, p);
1634 if (c == Ctrl_W)
1635 {
1636 while (p > ccline.cmdbuff && vim_isspace(*p))
1637 p = mb_prevptr(ccline.cmdbuff, p);
1638 i = mb_get_class(p);
1639 while (p > ccline.cmdbuff && mb_get_class(p) == i)
1640 p = mb_prevptr(ccline.cmdbuff, p);
1641 if (mb_get_class(p) != i)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001642 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 }
1644 }
1645 else
1646#endif
1647 if (c == Ctrl_W)
1648 {
1649 while (p > ccline.cmdbuff && vim_isspace(p[-1]))
1650 --p;
1651 i = vim_iswordc(p[-1]);
1652 while (p > ccline.cmdbuff && !vim_isspace(p[-1])
1653 && vim_iswordc(p[-1]) == i)
1654 --p;
1655 }
1656 else
1657 --p;
1658 ccline.cmdpos = (int)(p - ccline.cmdbuff);
1659 ccline.cmdlen -= j - ccline.cmdpos;
1660 i = ccline.cmdpos;
1661 while (i < ccline.cmdlen)
1662 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1663
1664 /* Truncate at the end, required for multi-byte chars. */
1665 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001666#ifdef FEAT_SEARCH_EXTRA
1667 if (ccline.cmdlen == 0)
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001668 {
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001669 is_state.search_start = is_state.save_cursor;
Bram Moolenaardda933d2016-09-03 21:04:58 +02001670 /* save view settings, so that the screen
1671 * won't be restored at the wrong position */
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001672 is_state.old_viewstate = is_state.init_viewstate;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001673 }
1674#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 redrawcmd();
1676 }
1677 else if (ccline.cmdlen == 0 && c != Ctrl_W
1678 && ccline.cmdprompt == NULL && indent == 0)
1679 {
1680 /* In ex and debug mode it doesn't make sense to return. */
1681 if (exmode_active
1682#ifdef FEAT_EVAL
1683 || ccline.cmdfirstc == '>'
1684#endif
1685 )
1686 goto cmdline_not_changed;
1687
Bram Moolenaard23a8232018-02-10 18:45:26 +01001688 VIM_CLEAR(ccline.cmdbuff); /* no commandline to return */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689 if (!cmd_silent)
1690 {
1691#ifdef FEAT_RIGHTLEFT
1692 if (cmdmsg_rl)
1693 msg_col = Columns;
1694 else
1695#endif
1696 msg_col = 0;
1697 msg_putchar(' '); /* delete ':' */
1698 }
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001699#ifdef FEAT_SEARCH_EXTRA
1700 if (ccline.cmdlen == 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001701 is_state.search_start = is_state.save_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001702#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703 redraw_cmdline = TRUE;
1704 goto returncmd; /* back to cmd mode */
1705 }
1706 goto cmdline_changed;
1707
1708 case K_INS:
1709 case K_KINS:
1710#ifdef FEAT_FKMAP
1711 /* if Farsi mode set, we are in reverse insert mode -
1712 Do not change the mode */
1713 if (cmd_fkmap)
1714 beep_flush();
1715 else
1716#endif
1717 ccline.overstrike = !ccline.overstrike;
1718#ifdef CURSOR_SHAPE
1719 ui_cursor_shape(); /* may show different cursor shape */
1720#endif
1721 goto cmdline_not_changed;
1722
1723 case Ctrl_HAT:
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00001724 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725 {
1726 /* ":lmap" mappings exists, toggle use of mappings. */
1727 State ^= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001728#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 im_set_active(FALSE); /* Disable input method */
1730#endif
1731 if (b_im_ptr != NULL)
1732 {
1733 if (State & LANGMAP)
1734 *b_im_ptr = B_IMODE_LMAP;
1735 else
1736 *b_im_ptr = B_IMODE_NONE;
1737 }
1738 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001739#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 else
1741 {
1742 /* There are no ":lmap" mappings, toggle IM. When
1743 * 'imdisable' is set don't try getting the status, it's
1744 * always off. */
1745 if ((p_imdisable && b_im_ptr != NULL)
1746 ? *b_im_ptr == B_IMODE_IM : im_get_status())
1747 {
1748 im_set_active(FALSE); /* Disable input method */
1749 if (b_im_ptr != NULL)
1750 *b_im_ptr = B_IMODE_NONE;
1751 }
1752 else
1753 {
1754 im_set_active(TRUE); /* Enable input method */
1755 if (b_im_ptr != NULL)
1756 *b_im_ptr = B_IMODE_IM;
1757 }
1758 }
1759#endif
1760 if (b_im_ptr != NULL)
1761 {
1762 if (b_im_ptr == &curbuf->b_p_iminsert)
1763 set_iminsert_global();
1764 else
1765 set_imsearch_global();
1766 }
1767#ifdef CURSOR_SHAPE
1768 ui_cursor_shape(); /* may show different cursor shape */
1769#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001770#if defined(FEAT_KEYMAP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771 /* Show/unshow value of 'keymap' in status lines later. */
1772 status_redraw_curbuf();
1773#endif
1774 goto cmdline_not_changed;
1775
1776/* case '@': only in very old vi */
1777 case Ctrl_U:
1778 /* delete all characters left of the cursor */
1779 j = ccline.cmdpos;
1780 ccline.cmdlen -= j;
1781 i = ccline.cmdpos = 0;
1782 while (i < ccline.cmdlen)
1783 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1784 /* Truncate at the end, required for multi-byte chars. */
1785 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001786#ifdef FEAT_SEARCH_EXTRA
1787 if (ccline.cmdlen == 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001788 is_state.search_start = is_state.save_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001789#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 redrawcmd();
1791 goto cmdline_changed;
1792
1793#ifdef FEAT_CLIPBOARD
1794 case Ctrl_Y:
1795 /* Copy the modeless selection, if there is one. */
1796 if (clip_star.state != SELECT_CLEARED)
1797 {
1798 if (clip_star.state == SELECT_DONE)
1799 clip_copy_modeless_selection(TRUE);
1800 goto cmdline_not_changed;
1801 }
1802 break;
1803#endif
1804
1805 case ESC: /* get here if p_wc != ESC or when ESC typed twice */
1806 case Ctrl_C:
Bram Moolenaarf4d11452005-12-02 00:46:37 +00001807 /* In exmode it doesn't make sense to return. Except when
Bram Moolenaar7c626922005-02-07 22:01:03 +00001808 * ":normal" runs out of characters. */
1809 if (exmode_active
Bram Moolenaare2c38102016-01-31 14:55:40 +01001810 && (ex_normal_busy == 0 || typebuf.tb_len > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 goto cmdline_not_changed;
1812
1813 gotesc = TRUE; /* will free ccline.cmdbuff after
1814 putting it in history */
1815 goto returncmd; /* back to cmd mode */
1816
1817 case Ctrl_R: /* insert register */
1818#ifdef USE_ON_FLY_SCROLL
1819 dont_scroll = TRUE; /* disallow scrolling here */
1820#endif
1821 putcmdline('"', TRUE);
1822 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001823 i = c = plain_vgetc(); /* CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824 if (i == Ctrl_O)
1825 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */
1826 if (i == Ctrl_R)
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001827 c = plain_vgetc(); /* CTRL-R CTRL-R <char> */
Bram Moolenaara92522f2017-07-15 15:21:38 +02001828 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829 --no_mapping;
1830#ifdef FEAT_EVAL
1831 /*
1832 * Insert the result of an expression.
1833 * Need to save the current command line, to be able to enter
1834 * a new one...
1835 */
1836 new_cmdpos = -1;
1837 if (c == '=')
1838 {
Bram Moolenaaree91c332018-09-25 22:27:35 +02001839 if (ccline.cmdfirstc == '=' // can't do this recursively
1840 || cmdline_star > 0) // or when typing a password
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 {
1842 beep_flush();
1843 c = ESC;
1844 }
1845 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 c = get_expr_register();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 }
1848#endif
1849 if (c != ESC) /* use ESC to cancel inserting register */
1850 {
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001851 cmdline_paste(c, i == Ctrl_R, FALSE);
Bram Moolenaaracf53452005-12-17 22:06:52 +00001852
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001853#ifdef FEAT_EVAL
Bram Moolenaaracf53452005-12-17 22:06:52 +00001854 /* When there was a serious error abort getting the
1855 * command line. */
1856 if (aborting())
1857 {
1858 gotesc = TRUE; /* will free ccline.cmdbuff after
1859 putting it in history */
1860 goto returncmd; /* back to cmd mode */
1861 }
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001862#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 KeyTyped = FALSE; /* Don't do p_wc completion. */
1864#ifdef FEAT_EVAL
1865 if (new_cmdpos >= 0)
1866 {
1867 /* set_cmdline_pos() was used */
1868 if (new_cmdpos > ccline.cmdlen)
1869 ccline.cmdpos = ccline.cmdlen;
1870 else
1871 ccline.cmdpos = new_cmdpos;
1872 }
1873#endif
1874 }
1875 redrawcmd();
1876 goto cmdline_changed;
1877
1878 case Ctrl_D:
1879 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING)
1880 break; /* Use ^D as normal char instead */
1881
1882 redrawcmd();
1883 continue; /* don't do incremental search now */
1884
1885 case K_RIGHT:
1886 case K_S_RIGHT:
1887 case K_C_RIGHT:
1888 do
1889 {
1890 if (ccline.cmdpos >= ccline.cmdlen)
1891 break;
1892 i = cmdline_charsize(ccline.cmdpos);
1893 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows)
1894 break;
1895 ccline.cmdspos += i;
1896#ifdef FEAT_MBYTE
1897 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001898 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 + ccline.cmdpos);
1900 else
1901#endif
1902 ++ccline.cmdpos;
1903 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001904 while ((c == K_S_RIGHT || c == K_C_RIGHT
1905 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 && ccline.cmdbuff[ccline.cmdpos] != ' ');
1907#ifdef FEAT_MBYTE
1908 if (has_mbyte)
1909 set_cmdspos_cursor();
1910#endif
1911 goto cmdline_not_changed;
1912
1913 case K_LEFT:
1914 case K_S_LEFT:
1915 case K_C_LEFT:
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001916 if (ccline.cmdpos == 0)
1917 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 do
1919 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 --ccline.cmdpos;
1921#ifdef FEAT_MBYTE
1922 if (has_mbyte) /* move to first byte of char */
1923 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff,
1924 ccline.cmdbuff + ccline.cmdpos);
1925#endif
1926 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos);
1927 }
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001928 while (ccline.cmdpos > 0
1929 && (c == K_S_LEFT || c == K_C_LEFT
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001930 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 && ccline.cmdbuff[ccline.cmdpos - 1] != ' ');
1932#ifdef FEAT_MBYTE
1933 if (has_mbyte)
1934 set_cmdspos_cursor();
1935#endif
1936 goto cmdline_not_changed;
1937
1938 case K_IGNORE:
Bram Moolenaar3bab9392017-04-07 15:42:25 +02001939 /* Ignore mouse event or open_cmdwin() result. */
Bram Moolenaar30405d32008-01-02 20:55:27 +00001940 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941
Bram Moolenaar4770d092006-01-12 23:22:24 +00001942#ifdef FEAT_GUI_W32
1943 /* On Win32 ignore <M-F4>, we get it when closing the window was
1944 * cancelled. */
1945 case K_F4:
1946 if (mod_mask == MOD_MASK_ALT)
1947 {
1948 redrawcmd(); /* somehow the cmdline is cleared */
1949 goto cmdline_not_changed;
1950 }
1951 break;
1952#endif
1953
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954#ifdef FEAT_MOUSE
1955 case K_MIDDLEDRAG:
1956 case K_MIDDLERELEASE:
1957 goto cmdline_not_changed; /* Ignore mouse */
1958
1959 case K_MIDDLEMOUSE:
1960# ifdef FEAT_GUI
1961 /* When GUI is active, also paste when 'mouse' is empty */
1962 if (!gui.in_use)
1963# endif
1964 if (!mouse_has(MOUSE_COMMAND))
1965 goto cmdline_not_changed; /* Ignore mouse */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001966# ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 if (clip_star.available)
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001968 cmdline_paste('*', TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969 else
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001970# endif
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001971 cmdline_paste(0, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 redrawcmd();
1973 goto cmdline_changed;
1974
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001975# ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 case K_DROP:
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001977 cmdline_paste('~', TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978 redrawcmd();
1979 goto cmdline_changed;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001980# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981
1982 case K_LEFTDRAG:
1983 case K_LEFTRELEASE:
1984 case K_RIGHTDRAG:
1985 case K_RIGHTRELEASE:
1986 /* Ignore drag and release events when the button-down wasn't
1987 * seen before. */
1988 if (ignore_drag_release)
1989 goto cmdline_not_changed;
1990 /* FALLTHROUGH */
1991 case K_LEFTMOUSE:
1992 case K_RIGHTMOUSE:
1993 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE)
1994 ignore_drag_release = TRUE;
1995 else
1996 ignore_drag_release = FALSE;
1997# ifdef FEAT_GUI
1998 /* When GUI is active, also move when 'mouse' is empty */
1999 if (!gui.in_use)
2000# endif
2001 if (!mouse_has(MOUSE_COMMAND))
2002 goto cmdline_not_changed; /* Ignore mouse */
2003# ifdef FEAT_CLIPBOARD
2004 if (mouse_row < cmdline_row && clip_star.available)
2005 {
2006 int button, is_click, is_drag;
2007
2008 /*
2009 * Handle modeless selection.
2010 */
2011 button = get_mouse_button(KEY2TERMCAP1(c),
2012 &is_click, &is_drag);
2013 if (mouse_model_popup() && button == MOUSE_LEFT
2014 && (mod_mask & MOD_MASK_SHIFT))
2015 {
2016 /* Translate shift-left to right button. */
2017 button = MOUSE_RIGHT;
2018 mod_mask &= ~MOD_MASK_SHIFT;
2019 }
2020 clip_modeless(button, is_click, is_drag);
2021 goto cmdline_not_changed;
2022 }
2023# endif
2024
2025 set_cmdspos();
2026 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen;
2027 ++ccline.cmdpos)
2028 {
2029 i = cmdline_charsize(ccline.cmdpos);
2030 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns
2031 && mouse_col < ccline.cmdspos % Columns + i)
2032 break;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002033# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 if (has_mbyte)
2035 {
2036 /* Count ">" for double-wide char that doesn't fit. */
2037 correct_cmdspos(ccline.cmdpos, i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002038 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 + ccline.cmdpos) - 1;
2040 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002041# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042 ccline.cmdspos += i;
2043 }
2044 goto cmdline_not_changed;
2045
2046 /* Mouse scroll wheel: ignored here */
2047 case K_MOUSEDOWN:
2048 case K_MOUSEUP:
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002049 case K_MOUSELEFT:
2050 case K_MOUSERIGHT:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051 /* Alternate buttons ignored here */
2052 case K_X1MOUSE:
2053 case K_X1DRAG:
2054 case K_X1RELEASE:
2055 case K_X2MOUSE:
2056 case K_X2DRAG:
2057 case K_X2RELEASE:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01002058 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 goto cmdline_not_changed;
2060
2061#endif /* FEAT_MOUSE */
2062
2063#ifdef FEAT_GUI
2064 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */
2065 case K_LEFTRELEASE_NM:
2066 goto cmdline_not_changed;
2067
2068 case K_VER_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002069 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070 {
2071 gui_do_scroll();
2072 redrawcmd();
2073 }
2074 goto cmdline_not_changed;
2075
2076 case K_HOR_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002077 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002079 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 redrawcmd();
2081 }
2082 goto cmdline_not_changed;
2083#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002084#ifdef FEAT_GUI_TABLINE
2085 case K_TABLINE:
2086 case K_TABMENU:
2087 /* Don't want to change any tabs here. Make sure the same tab
2088 * is still selected. */
2089 if (gui_use_tabline())
2090 gui_mch_set_curtab(tabpage_index(curtab));
2091 goto cmdline_not_changed;
2092#endif
2093
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 case K_SELECT: /* end of Select mode mapping - ignore */
2095 goto cmdline_not_changed;
2096
2097 case Ctrl_B: /* begin of command line */
2098 case K_HOME:
2099 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100 case K_S_HOME:
2101 case K_C_HOME:
2102 ccline.cmdpos = 0;
2103 set_cmdspos();
2104 goto cmdline_not_changed;
2105
2106 case Ctrl_E: /* end of command line */
2107 case K_END:
2108 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 case K_S_END:
2110 case K_C_END:
2111 ccline.cmdpos = ccline.cmdlen;
2112 set_cmdspos_cursor();
2113 goto cmdline_not_changed;
2114
2115 case Ctrl_A: /* all matches */
Bram Moolenaarb3479632012-11-28 16:49:58 +01002116 if (nextwild(&xpc, WILD_ALL, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117 break;
2118 goto cmdline_changed;
2119
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002120 case Ctrl_L:
2121#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002122 if (may_add_char_to_search(firstc, &c, &is_state) == OK)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002123 goto cmdline_not_changed;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002124#endif
2125
2126 /* completion: longest common part */
Bram Moolenaarb3479632012-11-28 16:49:58 +01002127 if (nextwild(&xpc, WILD_LONGEST, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 break;
2129 goto cmdline_changed;
2130
2131 case Ctrl_N: /* next match */
2132 case Ctrl_P: /* previous match */
Bram Moolenaar7df0f632016-08-26 19:56:00 +02002133 if (xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134 {
Bram Moolenaarb3479632012-11-28 16:49:58 +01002135 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT,
2136 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 break;
Bram Moolenaar11956692016-08-27 16:26:56 +02002138 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140#ifdef FEAT_CMDHIST
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002141 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 case K_UP:
2143 case K_DOWN:
2144 case K_S_UP:
2145 case K_S_DOWN:
2146 case K_PAGEUP:
2147 case K_KPAGEUP:
2148 case K_PAGEDOWN:
2149 case K_KPAGEDOWN:
2150 if (hislen == 0 || firstc == NUL) /* no history */
2151 goto cmdline_not_changed;
2152
2153 i = hiscnt;
2154
2155 /* save current command string so it can be restored later */
2156 if (lookfor == NULL)
2157 {
2158 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL)
2159 goto cmdline_not_changed;
2160 lookfor[ccline.cmdpos] = NUL;
2161 }
2162
2163 j = (int)STRLEN(lookfor);
2164 for (;;)
2165 {
2166 /* one step backwards */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002167 if (c == K_UP|| c == K_S_UP || c == Ctrl_P
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002168 || c == K_PAGEUP || c == K_KPAGEUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169 {
2170 if (hiscnt == hislen) /* first time */
2171 hiscnt = hisidx[histype];
2172 else if (hiscnt == 0 && hisidx[histype] != hislen - 1)
2173 hiscnt = hislen - 1;
2174 else if (hiscnt != hisidx[histype] + 1)
2175 --hiscnt;
2176 else /* at top of list */
2177 {
2178 hiscnt = i;
2179 break;
2180 }
2181 }
2182 else /* one step forwards */
2183 {
2184 /* on last entry, clear the line */
2185 if (hiscnt == hisidx[histype])
2186 {
2187 hiscnt = hislen;
2188 break;
2189 }
2190
2191 /* not on a history line, nothing to do */
2192 if (hiscnt == hislen)
2193 break;
2194 if (hiscnt == hislen - 1) /* wrap around */
2195 hiscnt = 0;
2196 else
2197 ++hiscnt;
2198 }
2199 if (hiscnt < 0 || history[histype][hiscnt].hisstr == NULL)
2200 {
2201 hiscnt = i;
2202 break;
2203 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002204 if ((c != K_UP && c != K_DOWN)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002205 || hiscnt == i
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 || STRNCMP(history[histype][hiscnt].hisstr,
2207 lookfor, (size_t)j) == 0)
2208 break;
2209 }
2210
2211 if (hiscnt != i) /* jumped to other entry */
2212 {
2213 char_u *p;
2214 int len;
2215 int old_firstc;
2216
Bram Moolenaar438d1762018-09-30 17:11:48 +02002217 VIM_CLEAR(ccline.cmdbuff);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002218 xpc.xp_context = EXPAND_NOTHING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 if (hiscnt == hislen)
2220 p = lookfor; /* back to the old one */
2221 else
2222 p = history[histype][hiscnt].hisstr;
2223
2224 if (histype == HIST_SEARCH
2225 && p != lookfor
2226 && (old_firstc = p[STRLEN(p) + 1]) != firstc)
2227 {
2228 /* Correct for the separator character used when
2229 * adding the history entry vs the one used now.
2230 * First loop: count length.
2231 * Second loop: copy the characters. */
2232 for (i = 0; i <= 1; ++i)
2233 {
2234 len = 0;
2235 for (j = 0; p[j] != NUL; ++j)
2236 {
2237 /* Replace old sep with new sep, unless it is
2238 * escaped. */
2239 if (p[j] == old_firstc
2240 && (j == 0 || p[j - 1] != '\\'))
2241 {
2242 if (i > 0)
2243 ccline.cmdbuff[len] = firstc;
2244 }
2245 else
2246 {
2247 /* Escape new sep, unless it is already
2248 * escaped. */
2249 if (p[j] == firstc
2250 && (j == 0 || p[j - 1] != '\\'))
2251 {
2252 if (i > 0)
2253 ccline.cmdbuff[len] = '\\';
2254 ++len;
2255 }
2256 if (i > 0)
2257 ccline.cmdbuff[len] = p[j];
2258 }
2259 ++len;
2260 }
2261 if (i == 0)
2262 {
2263 alloc_cmdbuff(len);
2264 if (ccline.cmdbuff == NULL)
2265 goto returncmd;
2266 }
2267 }
2268 ccline.cmdbuff[len] = NUL;
2269 }
2270 else
2271 {
2272 alloc_cmdbuff((int)STRLEN(p));
2273 if (ccline.cmdbuff == NULL)
2274 goto returncmd;
2275 STRCPY(ccline.cmdbuff, p);
2276 }
2277
2278 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
2279 redrawcmd();
2280 goto cmdline_changed;
2281 }
2282 beep_flush();
Bram Moolenaar11956692016-08-27 16:26:56 +02002283#endif
2284 goto cmdline_not_changed;
2285
Bram Moolenaar349e7d92016-09-03 20:04:34 +02002286#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar11956692016-08-27 16:26:56 +02002287 case Ctrl_G: /* next match */
2288 case Ctrl_T: /* previous match */
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002289 if (may_adjust_incsearch_highlighting(
2290 firstc, count, &is_state, c) == FAIL)
Bram Moolenaar349e7d92016-09-03 20:04:34 +02002291 goto cmdline_not_changed;
Bram Moolenaar349e7d92016-09-03 20:04:34 +02002292 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293#endif
2294
2295 case Ctrl_V:
2296 case Ctrl_Q:
2297#ifdef FEAT_MOUSE
2298 ignore_drag_release = TRUE;
2299#endif
2300 putcmdline('^', TRUE);
2301 c = get_literal(); /* get next (two) character(s) */
2302 do_abbr = FALSE; /* don't do abbreviation now */
Bram Moolenaara92522f2017-07-15 15:21:38 +02002303 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304#ifdef FEAT_MBYTE
2305 /* may need to remove ^ when composing char was typed */
2306 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent)
2307 {
2308 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2309 msg_putchar(' ');
2310 cursorcmd();
2311 }
2312#endif
2313 break;
2314
2315#ifdef FEAT_DIGRAPHS
2316 case Ctrl_K:
2317#ifdef FEAT_MOUSE
2318 ignore_drag_release = TRUE;
2319#endif
2320 putcmdline('?', TRUE);
2321#ifdef USE_ON_FLY_SCROLL
2322 dont_scroll = TRUE; /* disallow scrolling here */
2323#endif
2324 c = get_digraph(TRUE);
Bram Moolenaara92522f2017-07-15 15:21:38 +02002325 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 if (c != NUL)
2327 break;
2328
2329 redrawcmd();
2330 goto cmdline_not_changed;
2331#endif /* FEAT_DIGRAPHS */
2332
2333#ifdef FEAT_RIGHTLEFT
2334 case Ctrl__: /* CTRL-_: switch language mode */
2335 if (!p_ari)
2336 break;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002337# ifdef FEAT_FKMAP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 if (p_altkeymap)
2339 {
2340 cmd_fkmap = !cmd_fkmap;
2341 if (cmd_fkmap) /* in Farsi always in Insert mode */
2342 ccline.overstrike = FALSE;
2343 }
2344 else /* Hebrew is default */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002345# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 cmd_hkmap = !cmd_hkmap;
2347 goto cmdline_not_changed;
2348#endif
2349
Bram Moolenaarabbc4482017-01-24 15:57:55 +01002350 case K_PS:
2351 bracketed_paste(PASTE_CMDLINE, FALSE, NULL);
2352 goto cmdline_changed;
2353
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 default:
2355#ifdef UNIX
2356 if (c == intr_char)
2357 {
2358 gotesc = TRUE; /* will free ccline.cmdbuff after
2359 putting it in history */
2360 goto returncmd; /* back to Normal mode */
2361 }
2362#endif
2363 /*
2364 * Normal character with no special meaning. Just set mod_mask
2365 * to 0x0 so that typing Shift-Space in the GUI doesn't enter
2366 * the string <S-Space>. This should only happen after ^V.
2367 */
2368 if (!IS_SPECIAL(c))
2369 mod_mask = 0x0;
2370 break;
2371 }
2372 /*
2373 * End of switch on command line character.
2374 * We come here if we have a normal character.
2375 */
2376
Bram Moolenaarede3e632013-06-23 16:16:19 +02002377 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && (ccheck_abbr(
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378#ifdef FEAT_MBYTE
2379 /* Add ABBR_OFF for characters above 0x100, this is
2380 * what check_abbr() expects. */
2381 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
2382#endif
Bram Moolenaarede3e632013-06-23 16:16:19 +02002383 c) || c == Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 goto cmdline_changed;
2385
2386 /*
2387 * put the character in the command line
2388 */
2389 if (IS_SPECIAL(c) || mod_mask != 0)
2390 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE);
2391 else
2392 {
2393#ifdef FEAT_MBYTE
2394 if (has_mbyte)
2395 {
2396 j = (*mb_char2bytes)(c, IObuff);
2397 IObuff[j] = NUL; /* exclude composing chars */
2398 put_on_cmdline(IObuff, j, TRUE);
2399 }
2400 else
2401#endif
2402 {
2403 IObuff[0] = c;
2404 put_on_cmdline(IObuff, 1, TRUE);
2405 }
2406 }
2407 goto cmdline_changed;
2408
2409/*
2410 * This part implements incremental searches for "/" and "?"
2411 * Jump to cmdline_not_changed when a character has been read but the command
2412 * line did not change. Then we only search and redraw if something changed in
2413 * the past.
2414 * Jump to cmdline_changed when the command line did change.
2415 * (Sorry for the goto's, I know it is ugly).
2416 */
2417cmdline_not_changed:
2418#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002419 if (!is_state.incsearch_postponed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 continue;
2421#endif
2422
2423cmdline_changed:
Bram Moolenaar153b7042018-01-31 15:48:32 +01002424 /* Trigger CmdlineChanged autocommands. */
2425 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINECHANGED);
Bram Moolenaar153b7042018-01-31 15:48:32 +01002426
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002428 may_do_incsearch_highlighting(firstc, count, &is_state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429#endif
2430
2431#ifdef FEAT_RIGHTLEFT
2432 if (cmdmsg_rl
2433# ifdef FEAT_ARABIC
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002434 || (p_arshape && !p_tbidi && enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435# endif
2436 )
2437 /* Always redraw the whole command line to fix shaping and
Bram Moolenaar58437e02012-02-22 17:58:04 +01002438 * right-left typing. Not efficient, but it works.
2439 * Do it only when there are no characters left to read
2440 * to avoid useless intermediate redraws. */
2441 if (vpeekc() == NUL)
2442 redrawcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443#endif
2444 }
2445
2446returncmd:
2447
2448#ifdef FEAT_RIGHTLEFT
2449 cmdmsg_rl = FALSE;
2450#endif
2451
2452#ifdef FEAT_FKMAP
2453 cmd_fkmap = 0;
2454#endif
2455
2456 ExpandCleanup(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002457 ccline.xpc = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458
2459#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaarc7f08b72018-08-12 17:39:14 +02002460 finish_incsearch_highlighting(gotesc, &is_state, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461#endif
2462
2463 if (ccline.cmdbuff != NULL)
2464 {
2465 /*
2466 * Put line in history buffer (":" and "=" only when it was typed).
2467 */
2468#ifdef FEAT_CMDHIST
2469 if (ccline.cmdlen && firstc != NUL
2470 && (some_key_typed || histype == HIST_SEARCH))
2471 {
2472 add_to_history(histype, ccline.cmdbuff, TRUE,
2473 histype == HIST_SEARCH ? firstc : NUL);
2474 if (firstc == ':')
2475 {
2476 vim_free(new_last_cmdline);
2477 new_last_cmdline = vim_strsave(ccline.cmdbuff);
2478 }
2479 }
2480#endif
2481
Bram Moolenaarf8e8c062017-10-22 14:44:17 +02002482 if (gotesc)
2483 abandon_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 }
2485
2486 /*
2487 * If the screen was shifted up, redraw the whole screen (later).
2488 * If the line is too long, clear it, so ruler and shown command do
2489 * not get printed in the middle of it.
2490 */
2491 msg_check();
2492 msg_scroll = save_msg_scroll;
2493 redir_off = FALSE;
2494
2495 /* When the command line was typed, no need for a wait-return prompt. */
2496 if (some_key_typed)
2497 need_wait_return = FALSE;
2498
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02002499 /* Trigger CmdlineLeave autocommands. */
2500 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINELEAVE);
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02002501
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 State = save_State;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002503#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP)
2505 im_save_status(b_im_ptr);
2506 im_set_active(FALSE);
2507#endif
2508#ifdef FEAT_MOUSE
2509 setmouse();
2510#endif
2511#ifdef CURSOR_SHAPE
2512 ui_cursor_shape(); /* may show different cursor shape */
2513#endif
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002514 sb_text_end_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515
Bram Moolenaar438d1762018-09-30 17:11:48 +02002516theend:
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002517 {
2518 char_u *p = ccline.cmdbuff;
2519
Bram Moolenaar438d1762018-09-30 17:11:48 +02002520 if (did_save_ccline)
2521 restore_cmdline(&save_ccline);
2522 else
2523 ccline.cmdbuff = NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002524 return p;
2525 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526}
2527
2528#if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO)
2529/*
2530 * Get a command line with a prompt.
2531 * This is prepared to be called recursively from getcmdline() (e.g. by
2532 * f_input() when evaluating an expression from CTRL-R =).
2533 * Returns the command line in allocated memory, or NULL.
2534 */
2535 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002536getcmdline_prompt(
2537 int firstc,
2538 char_u *prompt, /* command line prompt */
2539 int attr, /* attributes for prompt */
2540 int xp_context, /* type of expansion */
2541 char_u *xp_arg) /* user-defined expansion argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542{
2543 char_u *s;
2544 struct cmdline_info save_ccline;
Bram Moolenaar438d1762018-09-30 17:11:48 +02002545 int did_save_ccline = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 int msg_col_save = msg_col;
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002547 int msg_silent_save = msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548
Bram Moolenaar438d1762018-09-30 17:11:48 +02002549 if (ccline.cmdbuff != NULL)
2550 {
2551 // Save the values of the current cmdline and restore them below.
2552 save_cmdline(&save_ccline);
2553 did_save_ccline = TRUE;
2554 }
2555
2556 vim_memset(&ccline, 0, sizeof(struct cmdline_info));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557 ccline.cmdprompt = prompt;
2558 ccline.cmdattr = attr;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002559# ifdef FEAT_EVAL
2560 ccline.xp_context = xp_context;
2561 ccline.xp_arg = xp_arg;
2562 ccline.input_fn = (firstc == '@');
2563# endif
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002564 msg_silent = 0;
Bram Moolenaar438d1762018-09-30 17:11:48 +02002565 s = getcmdline_int(firstc, 1L, 0, FALSE);
2566
2567 if (did_save_ccline)
2568 restore_cmdline(&save_ccline);
2569
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002570 msg_silent = msg_silent_save;
Bram Moolenaar1db1f772011-08-17 16:25:48 +02002571 /* Restore msg_col, the prompt from input() may have changed it.
2572 * But only if called recursively and the commandline is therefore being
2573 * restored to an old one; if not, the input() prompt stays on the screen,
2574 * so we need its modified msg_col left intact. */
2575 if (ccline.cmdbuff != NULL)
2576 msg_col = msg_col_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577
2578 return s;
2579}
2580#endif
2581
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002582/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002583 * Return TRUE when the text must not be changed and we can't switch to
2584 * another window or buffer. Used when editing the command line, evaluating
2585 * 'balloonexpr', etc.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002586 */
2587 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002588text_locked(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002589{
2590#ifdef FEAT_CMDWIN
2591 if (cmdwin_type != 0)
2592 return TRUE;
2593#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002594 return textlock != 0;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002595}
2596
2597/*
2598 * Give an error message for a command that isn't allowed while the cmdline
2599 * window is open or editing the cmdline in another way.
2600 */
2601 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002602text_locked_msg(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002603{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002604 emsg(_(get_text_locked_msg()));
Bram Moolenaar5a497892016-09-03 16:29:04 +02002605}
2606
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002607 char *
Bram Moolenaar5a497892016-09-03 16:29:04 +02002608get_text_locked_msg(void)
2609{
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002610#ifdef FEAT_CMDWIN
2611 if (cmdwin_type != 0)
Bram Moolenaar5a497892016-09-03 16:29:04 +02002612 return e_cmdwin;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002613#endif
Bram Moolenaar5a497892016-09-03 16:29:04 +02002614 return e_secure;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002615}
2616
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002617/*
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002618 * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is
2619 * and give an error message.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002620 */
2621 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002622curbuf_locked(void)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002623{
2624 if (curbuf_lock > 0)
2625 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002626 emsg(_("E788: Not allowed to edit another buffer now"));
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002627 return TRUE;
2628 }
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002629 return allbuf_locked();
2630}
2631
2632/*
2633 * Check if "allbuf_lock" is set and return TRUE when it is and give an error
2634 * message.
2635 */
2636 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002637allbuf_locked(void)
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002638{
2639 if (allbuf_lock > 0)
2640 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002641 emsg(_("E811: Not allowed to change buffer information now"));
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002642 return TRUE;
2643 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002644 return FALSE;
2645}
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002646
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002648cmdline_charsize(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649{
2650#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2651 if (cmdline_star > 0) /* showing '*', always 1 position */
2652 return 1;
2653#endif
2654 return ptr2cells(ccline.cmdbuff + idx);
2655}
2656
2657/*
2658 * Compute the offset of the cursor on the command line for the prompt and
2659 * indent.
2660 */
2661 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002662set_cmdspos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002664 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 ccline.cmdspos = 1 + ccline.cmdindent;
2666 else
2667 ccline.cmdspos = 0 + ccline.cmdindent;
2668}
2669
2670/*
2671 * Compute the screen position for the cursor on the command line.
2672 */
2673 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002674set_cmdspos_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675{
2676 int i, m, c;
2677
2678 set_cmdspos();
2679 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002680 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002682 if (m < 0) /* overflow, Columns or Rows at weird value */
2683 m = MAXCOL;
2684 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685 else
2686 m = MAXCOL;
2687 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
2688 {
2689 c = cmdline_charsize(i);
2690#ifdef FEAT_MBYTE
2691 /* Count ">" for double-wide multi-byte char that doesn't fit. */
2692 if (has_mbyte)
2693 correct_cmdspos(i, c);
2694#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00002695 /* If the cmdline doesn't fit, show cursor on last visible char.
2696 * Don't move the cursor itself, so we can still append. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697 if ((ccline.cmdspos += c) >= m)
2698 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699 ccline.cmdspos -= c;
2700 break;
2701 }
2702#ifdef FEAT_MBYTE
2703 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002704 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705#endif
2706 }
2707}
2708
2709#ifdef FEAT_MBYTE
2710/*
2711 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2712 * character that doesn't fit, so that a ">" must be displayed.
2713 */
2714 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002715correct_cmdspos(int idx, int cells)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002716{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002717 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2719 && ccline.cmdspos % Columns + cells > Columns)
2720 ccline.cmdspos++;
2721}
2722#endif
2723
2724/*
2725 * Get an Ex command line for the ":" command.
2726 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002728getexline(
2729 int c, /* normally ':', NUL for ":append" */
2730 void *cookie UNUSED,
2731 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732{
2733 /* When executing a register, remove ':' that's in front of each line. */
2734 if (exec_from_reg && vpeekc() == ':')
2735 (void)vgetc();
2736 return getcmdline(c, 1L, indent);
2737}
2738
2739/*
2740 * Get an Ex command line for Ex mode.
2741 * In Ex mode we only use the OS supplied line editing features and no
2742 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002743 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002746getexmodeline(
2747 int promptc, /* normally ':', NUL for ":append" and '?' for
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002748 :s prompt */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002749 void *cookie UNUSED,
2750 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002752 garray_T line_ga;
2753 char_u *pend;
2754 int startcol = 0;
Bram Moolenaar76624232007-07-28 12:21:47 +00002755 int c1 = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002756 int escaped = FALSE; /* CTRL-V typed */
2757 int vcol = 0;
2758 char_u *p;
Bram Moolenaar76624232007-07-28 12:21:47 +00002759 int prev_char;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002760 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761
2762 /* Switch cursor on now. This avoids that it happens after the "\n", which
2763 * confuses the system function that computes tabstops. */
2764 cursor_on();
2765
2766 /* always start in column 0; write a newline if necessary */
2767 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002768 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002770 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002772 /* indent that is only displayed, not in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002773 if (p_prompt)
2774 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775 while (indent-- > 0)
2776 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778 }
2779
2780 ga_init2(&line_ga, 1, 30);
2781
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002782 /* autoindent for :insert and :append is in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002783 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002784 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002785 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002786 while (indent >= 8)
2787 {
2788 ga_append(&line_ga, TAB);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002789 msg_puts(" ");
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002790 indent -= 8;
2791 }
2792 while (indent-- > 0)
2793 {
2794 ga_append(&line_ga, ' ');
2795 msg_putchar(' ');
2796 }
2797 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002798 ++no_mapping;
2799 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002800
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 /*
2802 * Get the line, one character at a time.
2803 */
2804 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002805 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002807 long sw;
2808 char_u *s;
2809
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810 if (ga_grow(&line_ga, 40) == FAIL)
2811 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812
Bram Moolenaarba748c82017-02-26 14:00:07 +01002813 /*
2814 * Get one character at a time.
2815 */
Bram Moolenaar76624232007-07-28 12:21:47 +00002816 prev_char = c1;
Bram Moolenaarba748c82017-02-26 14:00:07 +01002817
2818 /* Check for a ":normal" command and no more characters left. */
2819 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
2820 c1 = '\n';
2821 else
2822 c1 = vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823
2824 /*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002825 * Handle line editing.
2826 * Previously this was left to the system, putting the terminal in
2827 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002829 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002831 msg_putchar('\n');
2832 break;
2833 }
2834
Bram Moolenaarabbc4482017-01-24 15:57:55 +01002835 if (c1 == K_PS)
2836 {
2837 bracketed_paste(PASTE_EX, FALSE, &line_ga);
2838 goto redraw;
2839 }
2840
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002841 if (!escaped)
2842 {
2843 /* CR typed means "enter", which is NL */
2844 if (c1 == '\r')
2845 c1 = '\n';
2846
2847 if (c1 == BS || c1 == K_BS
2848 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002850 if (line_ga.ga_len > 0)
2851 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002852#ifdef FEAT_MBYTE
2853 if (has_mbyte)
2854 {
2855 p = (char_u *)line_ga.ga_data;
2856 p[line_ga.ga_len] = NUL;
2857 len = (*mb_head_off)(p, p + line_ga.ga_len - 1) + 1;
2858 line_ga.ga_len -= len;
2859 }
2860 else
2861#endif
2862 --line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002863 goto redraw;
2864 }
2865 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 }
2867
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002868 if (c1 == Ctrl_U)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002870 msg_col = startcol;
2871 msg_clr_eos();
2872 line_ga.ga_len = 0;
Bram Moolenaarda636572015-04-03 17:11:45 +02002873 goto redraw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002874 }
2875
2876 if (c1 == Ctrl_T)
2877 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002878 sw = get_sw_value(curbuf);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002879 p = (char_u *)line_ga.ga_data;
2880 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002881 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaar14f24742012-08-08 18:01:05 +02002882 indent += sw - indent % sw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002883add_indent:
Bram Moolenaar597a4222014-06-25 14:39:50 +02002884 while (get_indent_str(p, 8, FALSE) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002886 (void)ga_grow(&line_ga, 2); /* one more for the NUL */
Bram Moolenaarda636572015-04-03 17:11:45 +02002887 p = (char_u *)line_ga.ga_data;
2888 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002889 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2890 *s = ' ';
2891 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002893redraw:
2894 /* redraw the line */
2895 msg_col = startcol;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002896 vcol = 0;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002897 p = (char_u *)line_ga.ga_data;
2898 p[line_ga.ga_len] = NUL;
2899 while (p < (char_u *)line_ga.ga_data + line_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002901 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002903 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002905 msg_putchar(' ');
2906 } while (++vcol % 8);
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002907 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002909 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002911 len = MB_PTR2LEN(p);
2912 msg_outtrans_len(p, len);
2913 vcol += ptr2cells(p);
2914 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915 }
2916 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002917 msg_clr_eos();
Bram Moolenaar76624232007-07-28 12:21:47 +00002918 windgoto(msg_row, msg_col);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002919 continue;
2920 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002922 if (c1 == Ctrl_D)
2923 {
2924 /* Delete one shiftwidth. */
2925 p = (char_u *)line_ga.ga_data;
2926 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002928 if (prev_char == '^')
2929 ex_keep_indent = TRUE;
2930 indent = 0;
2931 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932 }
2933 else
2934 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002935 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002936 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaarda636572015-04-03 17:11:45 +02002937 if (indent > 0)
2938 {
2939 --indent;
2940 indent -= indent % get_sw_value(curbuf);
2941 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02002943 while (get_indent_str(p, 8, FALSE) > indent)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002944 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002945 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002946 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2947 --line_ga.ga_len;
2948 }
2949 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002951
2952 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2953 {
2954 escaped = TRUE;
2955 continue;
2956 }
2957
2958 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
2959 if (IS_SPECIAL(c1))
2960 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002962
2963 if (IS_SPECIAL(c1))
2964 c1 = '?';
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002965#ifdef FEAT_MBYTE
2966 if (has_mbyte)
2967 len = (*mb_char2bytes)(c1,
2968 (char_u *)line_ga.ga_data + line_ga.ga_len);
2969 else
2970#endif
2971 {
2972 len = 1;
2973 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
2974 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002975 if (c1 == '\n')
2976 msg_putchar('\n');
2977 else if (c1 == TAB)
2978 {
2979 /* Don't use chartabsize(), 'ts' can be different */
2980 do
2981 {
2982 msg_putchar(' ');
2983 } while (++vcol % 8);
2984 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002987 msg_outtrans_len(
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002988 ((char_u *)line_ga.ga_data) + line_ga.ga_len, len);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002989 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 }
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002991 line_ga.ga_len += len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002992 escaped = FALSE;
2993
2994 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002995 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002996
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002997 /* We are done when a NL is entered, but not when it comes after an
2998 * odd number of backslashes, that results in a NUL. */
2999 if (line_ga.ga_len > 0 && pend[-1] == '\n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000 {
Bram Moolenaar417f5e72010-09-29 15:50:30 +02003001 int bcount = 0;
3002
3003 while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\')
3004 ++bcount;
3005
3006 if (bcount > 0)
3007 {
3008 /* Halve the number of backslashes: "\NL" -> "NUL", "\\NL" ->
3009 * "\NL", etc. */
3010 line_ga.ga_len -= (bcount + 1) / 2;
3011 pend -= (bcount + 1) / 2;
3012 pend[-1] = '\n';
3013 }
3014
3015 if ((bcount & 1) == 0)
3016 {
3017 --line_ga.ga_len;
3018 --pend;
3019 *pend = NUL;
3020 break;
3021 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 }
3023 }
3024
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003025 --no_mapping;
3026 --allow_keys;
3027
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028 /* make following messages go to the next line */
3029 msg_didout = FALSE;
3030 msg_col = 0;
3031 if (msg_row < Rows - 1)
3032 ++msg_row;
3033 emsg_on_display = FALSE; /* don't want ui_delay() */
3034
3035 if (got_int)
3036 ga_clear(&line_ga);
3037
3038 return (char_u *)line_ga.ga_data;
3039}
3040
Bram Moolenaare344bea2005-09-01 20:46:49 +00003041# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3042 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043/*
3044 * Return TRUE if ccline.overstrike is on.
3045 */
3046 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003047cmdline_overstrike(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048{
3049 return ccline.overstrike;
3050}
3051
3052/*
3053 * Return TRUE if the cursor is at the end of the cmdline.
3054 */
3055 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003056cmdline_at_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057{
3058 return (ccline.cmdpos >= ccline.cmdlen);
3059}
3060#endif
3061
Bram Moolenaar9372a112005-12-06 19:59:18 +00003062#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063/*
3064 * Return the virtual column number at the current cursor position.
3065 * This is used by the IM code to obtain the start of the preedit string.
3066 */
3067 colnr_T
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003068cmdline_getvcol_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069{
3070 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
3071 return MAXCOL;
3072
3073# ifdef FEAT_MBYTE
3074 if (has_mbyte)
3075 {
3076 colnr_T col;
3077 int i = 0;
3078
3079 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003080 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081
3082 return col;
3083 }
3084 else
3085# endif
3086 return ccline.cmdpos;
3087}
3088#endif
3089
3090#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
3091/*
3092 * If part of the command line is an IM preedit string, redraw it with
3093 * IM feedback attributes. The cursor position is restored after drawing.
3094 */
3095 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003096redrawcmd_preedit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003097{
3098 if ((State & CMDLINE)
3099 && xic != NULL
Bram Moolenaar494c82a2006-09-14 08:25:49 +00003100 /* && im_get_status() doesn't work when using SCIM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101 && !p_imdisable
3102 && im_is_preediting())
3103 {
3104 int cmdpos = 0;
3105 int cmdspos;
3106 int old_row;
3107 int old_col;
3108 colnr_T col;
3109
3110 old_row = msg_row;
3111 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003112 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113
3114# ifdef FEAT_MBYTE
3115 if (has_mbyte)
3116 {
3117 for (col = 0; col < preedit_start_col
3118 && cmdpos < ccline.cmdlen; ++col)
3119 {
3120 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003121 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122 }
3123 }
3124 else
3125# endif
3126 {
3127 cmdspos += preedit_start_col;
3128 cmdpos += preedit_start_col;
3129 }
3130
3131 msg_row = cmdline_row + (cmdspos / (int)Columns);
3132 msg_col = cmdspos % (int)Columns;
3133 if (msg_row >= Rows)
3134 msg_row = Rows - 1;
3135
3136 for (col = 0; cmdpos < ccline.cmdlen; ++col)
3137 {
3138 int char_len;
3139 int char_attr;
3140
3141 char_attr = im_get_feedback_attr(col);
3142 if (char_attr < 0)
3143 break; /* end of preedit string */
3144
3145# ifdef FEAT_MBYTE
3146 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003147 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148 else
3149# endif
3150 char_len = 1;
3151
3152 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
3153 cmdpos += char_len;
3154 }
3155
3156 msg_row = old_row;
3157 msg_col = old_col;
3158 }
3159}
3160#endif /* FEAT_XIM && FEAT_GUI_GTK */
3161
3162/*
3163 * Allocate a new command line buffer.
3164 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165 */
3166 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003167alloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168{
3169 /*
3170 * give some extra space to avoid having to allocate all the time
3171 */
3172 if (len < 80)
3173 len = 100;
3174 else
3175 len += 20;
3176
3177 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */
3178 ccline.cmdbufflen = len;
3179}
3180
3181/*
3182 * Re-allocate the command line to length len + something extra.
3183 * return FAIL for failure, OK otherwise
3184 */
3185 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003186realloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187{
3188 char_u *p;
3189
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003190 if (len < ccline.cmdbufflen)
3191 return OK; /* no need to resize */
3192
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193 p = ccline.cmdbuff;
3194 alloc_cmdbuff(len); /* will get some more */
3195 if (ccline.cmdbuff == NULL) /* out of memory */
3196 {
3197 ccline.cmdbuff = p; /* keep the old one */
3198 return FAIL;
3199 }
Bram Moolenaar35a34232010-08-13 16:51:26 +02003200 /* There isn't always a NUL after the command, but it may need to be
3201 * there, thus copy up to the NUL and add a NUL. */
3202 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen);
3203 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204 vim_free(p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003205
3206 if (ccline.xpc != NULL
3207 && ccline.xpc->xp_pattern != NULL
3208 && ccline.xpc->xp_context != EXPAND_NOTHING
3209 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL)
3210 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00003211 int i = (int)(ccline.xpc->xp_pattern - p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003212
3213 /* If xp_pattern points inside the old cmdbuff it needs to be adjusted
3214 * to point into the newly allocated memory. */
3215 if (i >= 0 && i <= ccline.cmdlen)
3216 ccline.xpc->xp_pattern = ccline.cmdbuff + i;
3217 }
3218
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 return OK;
3220}
3221
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003222#if defined(FEAT_ARABIC) || defined(PROTO)
3223static char_u *arshape_buf = NULL;
3224
3225# if defined(EXITFREE) || defined(PROTO)
3226 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003227free_cmdline_buf(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003228{
3229 vim_free(arshape_buf);
3230}
3231# endif
3232#endif
3233
Bram Moolenaar071d4272004-06-13 20:20:40 +00003234/*
3235 * Draw part of the cmdline at the current cursor position. But draw stars
3236 * when cmdline_star is TRUE.
3237 */
3238 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003239draw_cmdline(int start, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003240{
3241#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
3242 int i;
3243
3244 if (cmdline_star > 0)
3245 for (i = 0; i < len; ++i)
3246 {
3247 msg_putchar('*');
3248# ifdef FEAT_MBYTE
3249 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003250 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251# endif
3252 }
3253 else
3254#endif
3255#ifdef FEAT_ARABIC
3256 if (p_arshape && !p_tbidi && enc_utf8 && len > 0)
3257 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258 static int buflen = 0;
3259 char_u *p;
3260 int j;
3261 int newlen = 0;
3262 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003263 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264 int prev_c = 0;
3265 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003266 int u8c;
3267 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269
3270 /*
3271 * Do arabic shaping into a temporary buffer. This is very
3272 * inefficient!
3273 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003274 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275 {
3276 /* Re-allocate the buffer. We keep it around to avoid a lot of
3277 * alloc()/free() calls. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003278 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003279 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003280 arshape_buf = alloc(buflen);
3281 if (arshape_buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282 return; /* out of memory */
3283 }
3284
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003285 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
3286 {
3287 /* Prepend a space to draw the leading composing char on. */
3288 arshape_buf[0] = ' ';
3289 newlen = 1;
3290 }
3291
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292 for (j = start; j < start + len; j += mb_l)
3293 {
3294 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003295 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003296 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297 if (ARABIC_CHAR(u8c))
3298 {
3299 /* Do Arabic shaping. */
3300 if (cmdmsg_rl)
3301 {
3302 /* displaying from right to left */
3303 pc = prev_c;
3304 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003305 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306 if (j + mb_l >= start + len)
3307 nc = NUL;
3308 else
3309 nc = utf_ptr2char(p + mb_l);
3310 }
3311 else
3312 {
3313 /* displaying from left to right */
3314 if (j + mb_l >= start + len)
3315 pc = NUL;
3316 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003317 {
3318 int pcc[MAX_MCO];
3319
3320 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003322 pc1 = pcc[0];
3323 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324 nc = prev_c;
3325 }
3326 prev_c = u8c;
3327
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003328 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003330 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003331 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003333 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
3334 if (u8cc[1] != 0)
3335 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003336 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337 }
3338 }
3339 else
3340 {
3341 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003342 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003343 newlen += mb_l;
3344 }
3345 }
3346
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003347 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348 }
3349 else
3350#endif
3351 msg_outtrans_len(ccline.cmdbuff + start, len);
3352}
3353
3354/*
3355 * Put a character on the command line. Shifts the following text to the
3356 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
3357 * "c" must be printable (fit in one display cell)!
3358 */
3359 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003360putcmdline(int c, int shift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361{
3362 if (cmd_silent)
3363 return;
3364 msg_no_more = TRUE;
3365 msg_putchar(c);
3366 if (shift)
3367 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
3368 msg_no_more = FALSE;
3369 cursorcmd();
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003370 extra_char = c;
3371 extra_char_shift = shift;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372}
3373
3374/*
3375 * Undo a putcmdline(c, FALSE).
3376 */
3377 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003378unputcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379{
3380 if (cmd_silent)
3381 return;
3382 msg_no_more = TRUE;
3383 if (ccline.cmdlen == ccline.cmdpos)
3384 msg_putchar(' ');
Bram Moolenaar64fdf5c2012-06-06 12:03:06 +02003385#ifdef FEAT_MBYTE
3386 else if (has_mbyte)
3387 draw_cmdline(ccline.cmdpos,
3388 (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos));
3389#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390 else
3391 draw_cmdline(ccline.cmdpos, 1);
3392 msg_no_more = FALSE;
3393 cursorcmd();
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003394 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395}
3396
3397/*
3398 * Put the given string, of the given length, onto the command line.
3399 * If len is -1, then STRLEN() is used to calculate the length.
3400 * If 'redraw' is TRUE then the new part of the command line, and the remaining
3401 * part will be redrawn, otherwise it will not. If this function is called
3402 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
3403 * called afterwards.
3404 */
3405 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003406put_on_cmdline(char_u *str, int len, int redraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407{
3408 int retval;
3409 int i;
3410 int m;
3411 int c;
3412
3413 if (len < 0)
3414 len = (int)STRLEN(str);
3415
3416 /* Check if ccline.cmdbuff needs to be longer */
3417 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003418 retval = realloc_cmdbuff(ccline.cmdlen + len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419 else
3420 retval = OK;
3421 if (retval == OK)
3422 {
3423 if (!ccline.overstrike)
3424 {
3425 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
3426 ccline.cmdbuff + ccline.cmdpos,
3427 (size_t)(ccline.cmdlen - ccline.cmdpos));
3428 ccline.cmdlen += len;
3429 }
3430 else
3431 {
3432#ifdef FEAT_MBYTE
3433 if (has_mbyte)
3434 {
3435 /* Count nr of characters in the new string. */
3436 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003437 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438 ++m;
3439 /* Count nr of bytes in cmdline that are overwritten by these
3440 * characters. */
3441 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003442 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443 --m;
3444 if (i < ccline.cmdlen)
3445 {
3446 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
3447 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
3448 ccline.cmdlen += ccline.cmdpos + len - i;
3449 }
3450 else
3451 ccline.cmdlen = ccline.cmdpos + len;
3452 }
3453 else
3454#endif
3455 if (ccline.cmdpos + len > ccline.cmdlen)
3456 ccline.cmdlen = ccline.cmdpos + len;
3457 }
3458 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
3459 ccline.cmdbuff[ccline.cmdlen] = NUL;
3460
3461#ifdef FEAT_MBYTE
3462 if (enc_utf8)
3463 {
3464 /* When the inserted text starts with a composing character,
3465 * backup to the character before it. There could be two of them.
3466 */
3467 i = 0;
3468 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3469 while (ccline.cmdpos > 0 && utf_iscomposing(c))
3470 {
3471 i = (*mb_head_off)(ccline.cmdbuff,
3472 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3473 ccline.cmdpos -= i;
3474 len += i;
3475 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3476 }
3477# ifdef FEAT_ARABIC
3478 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
3479 {
3480 /* Check the previous character for Arabic combining pair. */
3481 i = (*mb_head_off)(ccline.cmdbuff,
3482 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3483 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
3484 + ccline.cmdpos - i), c))
3485 {
3486 ccline.cmdpos -= i;
3487 len += i;
3488 }
3489 else
3490 i = 0;
3491 }
3492# endif
3493 if (i != 0)
3494 {
3495 /* Also backup the cursor position. */
3496 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
3497 ccline.cmdspos -= i;
3498 msg_col -= i;
3499 if (msg_col < 0)
3500 {
3501 msg_col += Columns;
3502 --msg_row;
3503 }
3504 }
3505 }
3506#endif
3507
3508 if (redraw && !cmd_silent)
3509 {
3510 msg_no_more = TRUE;
3511 i = cmdline_row;
Bram Moolenaar73dc59a2011-09-30 17:46:21 +02003512 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
3514 /* Avoid clearing the rest of the line too often. */
3515 if (cmdline_row != i || ccline.overstrike)
3516 msg_clr_eos();
3517 msg_no_more = FALSE;
3518 }
3519#ifdef FEAT_FKMAP
3520 /*
3521 * If we are in Farsi command mode, the character input must be in
3522 * Insert mode. So do not advance the cmdpos.
3523 */
3524 if (!cmd_fkmap)
3525#endif
3526 {
3527 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003528 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003530 if (m < 0) /* overflow, Columns or Rows at weird value */
3531 m = MAXCOL;
3532 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533 else
3534 m = MAXCOL;
3535 for (i = 0; i < len; ++i)
3536 {
3537 c = cmdline_charsize(ccline.cmdpos);
3538#ifdef FEAT_MBYTE
3539 /* count ">" for a double-wide char that doesn't fit. */
3540 if (has_mbyte)
3541 correct_cmdspos(ccline.cmdpos, c);
3542#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00003543 /* Stop cursor at the end of the screen, but do increment the
3544 * insert position, so that entering a very long command
3545 * works, even though you can't see it. */
3546 if (ccline.cmdspos + c < m)
3547 ccline.cmdspos += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548#ifdef FEAT_MBYTE
3549 if (has_mbyte)
3550 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003551 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 if (c > len - i - 1)
3553 c = len - i - 1;
3554 ccline.cmdpos += c;
3555 i += c;
3556 }
3557#endif
3558 ++ccline.cmdpos;
3559 }
3560 }
3561 }
3562 if (redraw)
3563 msg_check();
3564 return retval;
3565}
3566
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003567static struct cmdline_info prev_ccline;
3568static int prev_ccline_used = FALSE;
3569
3570/*
3571 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
3572 * and overwrite it. But get_cmdline_str() may need it, thus make it
3573 * available globally in prev_ccline.
3574 */
3575 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003576save_cmdline(struct cmdline_info *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003577{
3578 if (!prev_ccline_used)
3579 {
3580 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info));
3581 prev_ccline_used = TRUE;
3582 }
3583 *ccp = prev_ccline;
3584 prev_ccline = ccline;
Bram Moolenaar438d1762018-09-30 17:11:48 +02003585 ccline.cmdbuff = NULL; // signal that ccline is not in use
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003586}
3587
3588/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003589 * Restore ccline after it has been saved with save_cmdline().
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003590 */
3591 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003592restore_cmdline(struct cmdline_info *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003593{
3594 ccline = prev_ccline;
3595 prev_ccline = *ccp;
3596}
3597
Bram Moolenaar8299df92004-07-10 09:47:34 +00003598/*
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003599 * Paste a yank register into the command line.
3600 * Used by CTRL-R command in command-line mode.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003601 * insert_reg() can't be used here, because special characters from the
3602 * register contents will be interpreted as commands.
3603 *
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003604 * Return FAIL for failure, OK otherwise.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003605 */
3606 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003607cmdline_paste(
3608 int regname,
3609 int literally, /* Insert text literally instead of "as typed" */
3610 int remcr) /* remove trailing CR */
Bram Moolenaar8299df92004-07-10 09:47:34 +00003611{
3612 long i;
3613 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003614 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003615 int allocated;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003616
3617 /* check for valid regname; also accept special characters for CTRL-R in
3618 * the command line */
3619 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
Bram Moolenaare2c8d832018-05-01 19:24:03 +02003620 && regname != Ctrl_A && regname != Ctrl_L
3621 && !valid_yank_reg(regname, FALSE))
Bram Moolenaar8299df92004-07-10 09:47:34 +00003622 return FAIL;
3623
3624 /* A register containing CTRL-R can cause an endless loop. Allow using
3625 * CTRL-C to break the loop. */
3626 line_breakcheck();
3627 if (got_int)
3628 return FAIL;
3629
3630#ifdef FEAT_CLIPBOARD
3631 regname = may_get_selection(regname);
3632#endif
3633
Bram Moolenaar438d1762018-09-30 17:11:48 +02003634 // Need to set "textlock" to avoid nasty things like going to another
3635 // buffer when evaluating an expression.
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003636 ++textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003637 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003638 --textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003639
3640 if (i)
3641 {
3642 /* Got the value of a special register in "arg". */
3643 if (arg == NULL)
3644 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003645
3646 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
3647 * part of the word. */
3648 p = arg;
3649 if (p_is && regname == Ctrl_W)
3650 {
3651 char_u *w;
3652 int len;
3653
3654 /* Locate start of last word in the cmd buffer. */
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003655 for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; )
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003656 {
3657#ifdef FEAT_MBYTE
3658 if (has_mbyte)
3659 {
3660 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
3661 if (!vim_iswordc(mb_ptr2char(w - len)))
3662 break;
3663 w -= len;
3664 }
3665 else
3666#endif
3667 {
3668 if (!vim_iswordc(w[-1]))
3669 break;
3670 --w;
3671 }
3672 }
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003673 len = (int)((ccline.cmdbuff + ccline.cmdpos) - w);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003674 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
3675 p += len;
3676 }
3677
3678 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003679 if (allocated)
3680 vim_free(arg);
3681 return OK;
3682 }
3683
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003684 return cmdline_paste_reg(regname, literally, remcr);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003685}
3686
3687/*
3688 * Put a string on the command line.
3689 * When "literally" is TRUE, insert literally.
3690 * When "literally" is FALSE, insert as typed, but don't leave the command
3691 * line.
3692 */
3693 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003694cmdline_paste_str(char_u *s, int literally)
Bram Moolenaar8299df92004-07-10 09:47:34 +00003695{
3696 int c, cv;
3697
3698 if (literally)
3699 put_on_cmdline(s, -1, TRUE);
3700 else
3701 while (*s != NUL)
3702 {
3703 cv = *s;
3704 if (cv == Ctrl_V && s[1])
3705 ++s;
3706#ifdef FEAT_MBYTE
3707 if (has_mbyte)
Bram Moolenaar48be32b2008-06-20 10:56:16 +00003708 c = mb_cptr2char_adv(&s);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003709 else
3710#endif
3711 c = *s++;
Bram Moolenaare79abdd2012-06-29 13:44:41 +02003712 if (cv == Ctrl_V || c == ESC || c == Ctrl_C
3713 || c == CAR || c == NL || c == Ctrl_L
Bram Moolenaar8299df92004-07-10 09:47:34 +00003714#ifdef UNIX
3715 || c == intr_char
3716#endif
3717 || (c == Ctrl_BSL && *s == Ctrl_N))
3718 stuffcharReadbuff(Ctrl_V);
3719 stuffcharReadbuff(c);
3720 }
3721}
3722
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723#ifdef FEAT_WILDMENU
3724/*
3725 * Delete characters on the command line, from "from" to the current
3726 * position.
3727 */
3728 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003729cmdline_del(int from)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730{
3731 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
3732 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3733 ccline.cmdlen -= ccline.cmdpos - from;
3734 ccline.cmdpos = from;
3735}
3736#endif
3737
3738/*
Bram Moolenaar89c79b92016-05-05 17:18:41 +02003739 * This function is called when the screen size changes and with incremental
3740 * search and in other situations where the command line may have been
3741 * overwritten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 */
3743 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003744redrawcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745{
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003746 redrawcmdline_ex(TRUE);
3747}
3748
3749 void
3750redrawcmdline_ex(int do_compute_cmdrow)
3751{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 if (cmd_silent)
3753 return;
3754 need_wait_return = FALSE;
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003755 if (do_compute_cmdrow)
3756 compute_cmdrow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757 redrawcmd();
3758 cursorcmd();
3759}
3760
3761 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003762redrawcmdprompt(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763{
3764 int i;
3765
3766 if (cmd_silent)
3767 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003768 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 msg_putchar(ccline.cmdfirstc);
3770 if (ccline.cmdprompt != NULL)
3771 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003772 msg_puts_attr((char *)ccline.cmdprompt, ccline.cmdattr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
3774 /* do the reverse of set_cmdspos() */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003775 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 --ccline.cmdindent;
3777 }
3778 else
3779 for (i = ccline.cmdindent; i > 0; --i)
3780 msg_putchar(' ');
3781}
3782
3783/*
3784 * Redraw what is currently on the command line.
3785 */
3786 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003787redrawcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003788{
3789 if (cmd_silent)
3790 return;
3791
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003792 /* when 'incsearch' is set there may be no command line while redrawing */
3793 if (ccline.cmdbuff == NULL)
3794 {
3795 windgoto(cmdline_row, 0);
3796 msg_clr_eos();
3797 return;
3798 }
3799
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 msg_start();
3801 redrawcmdprompt();
3802
3803 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
3804 msg_no_more = TRUE;
3805 draw_cmdline(0, ccline.cmdlen);
3806 msg_clr_eos();
3807 msg_no_more = FALSE;
3808
3809 set_cmdspos_cursor();
Bram Moolenaara92522f2017-07-15 15:21:38 +02003810 if (extra_char != NUL)
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003811 putcmdline(extra_char, extra_char_shift);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812
3813 /*
3814 * An emsg() before may have set msg_scroll. This is used in normal mode,
3815 * in cmdline mode we can reset them now.
3816 */
3817 msg_scroll = FALSE; /* next message overwrites cmdline */
3818
3819 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
3820 * in cmdline mode */
3821 skip_redraw = FALSE;
3822}
3823
3824 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003825compute_cmdrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003827 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828 cmdline_row = Rows - 1;
3829 else
3830 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
Bram Moolenaare0de17d2017-09-24 16:24:34 +02003831 + lastwin->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832}
3833
3834 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003835cursorcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003836{
3837 if (cmd_silent)
3838 return;
3839
3840#ifdef FEAT_RIGHTLEFT
3841 if (cmdmsg_rl)
3842 {
3843 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3844 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3845 if (msg_row <= 0)
3846 msg_row = Rows - 1;
3847 }
3848 else
3849#endif
3850 {
3851 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3852 msg_col = ccline.cmdspos % (int)Columns;
3853 if (msg_row >= Rows)
3854 msg_row = Rows - 1;
3855 }
3856
3857 windgoto(msg_row, msg_col);
3858#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar5c6dbcb2017-08-30 22:00:20 +02003859 if (p_imst == IM_ON_THE_SPOT)
3860 redrawcmd_preedit();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861#endif
3862#ifdef MCH_CURSOR_SHAPE
3863 mch_update_cursor();
3864#endif
3865}
3866
3867 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003868gotocmdline(int clr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869{
3870 msg_start();
3871#ifdef FEAT_RIGHTLEFT
3872 if (cmdmsg_rl)
3873 msg_col = Columns - 1;
3874 else
3875#endif
3876 msg_col = 0; /* always start in column 0 */
3877 if (clr) /* clear the bottom line(s) */
3878 msg_clr_eos(); /* will reset clear_cmdline */
3879 windgoto(cmdline_row, 0);
3880}
3881
3882/*
3883 * Check the word in front of the cursor for an abbreviation.
3884 * Called when the non-id character "c" has been entered.
3885 * When an abbreviation is recognized it is removed from the text with
3886 * backspaces and the replacement string is inserted, followed by "c".
3887 */
3888 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003889ccheck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890{
Bram Moolenaar5e3423d2018-05-13 18:36:27 +02003891 int spos = 0;
3892
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
3894 return FALSE;
3895
Bram Moolenaar5e3423d2018-05-13 18:36:27 +02003896 /* Do not consider '<,'> be part of the mapping, skip leading whitespace.
3897 * Actually accepts any mark. */
3898 while (VIM_ISWHITE(ccline.cmdbuff[spos]) && spos < ccline.cmdlen)
3899 spos++;
3900 if (ccline.cmdlen - spos > 5
3901 && ccline.cmdbuff[spos] == '\''
3902 && ccline.cmdbuff[spos + 2] == ','
3903 && ccline.cmdbuff[spos + 3] == '\'')
3904 spos += 5;
3905 else
3906 /* check abbreviation from the beginning of the commandline */
3907 spos = 0;
3908
3909 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, spos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910}
3911
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003912#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3913 static int
3914#ifdef __BORLANDC__
3915_RTLENTRYF
3916#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003917sort_func_compare(const void *s1, const void *s2)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003918{
3919 char_u *p1 = *(char_u **)s1;
3920 char_u *p2 = *(char_u **)s2;
3921
3922 if (*p1 != '<' && *p2 == '<') return -1;
3923 if (*p1 == '<' && *p2 != '<') return 1;
3924 return STRCMP(p1, p2);
3925}
3926#endif
3927
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928/*
3929 * Return FAIL if this is not an appropriate context in which to do
3930 * completion of anything, return OK if it is (even if there are no matches).
3931 * For the caller, this means that the character is just passed through like a
3932 * normal character (instead of being expanded). This allows :s/^I^D etc.
3933 */
3934 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003935nextwild(
3936 expand_T *xp,
3937 int type,
3938 int options, /* extra options for ExpandOne() */
3939 int escape) /* if TRUE, escape the returned matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940{
3941 int i, j;
3942 char_u *p1;
3943 char_u *p2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 int difflen;
3945 int v;
3946
3947 if (xp->xp_numfiles == -1)
3948 {
3949 set_expand_context(xp);
3950 cmd_showtail = expand_showtail(xp);
3951 }
3952
3953 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
3954 {
3955 beep_flush();
3956 return OK; /* Something illegal on command line */
3957 }
3958 if (xp->xp_context == EXPAND_NOTHING)
3959 {
3960 /* Caller can use the character as a normal char instead */
3961 return FAIL;
3962 }
3963
Bram Moolenaar32526b32019-01-19 17:43:09 +01003964 msg_puts("..."); /* show that we are busy */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965 out_flush();
3966
3967 i = (int)(xp->xp_pattern - ccline.cmdbuff);
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003968 xp->xp_pattern_len = ccline.cmdpos - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969
3970 if (type == WILD_NEXT || type == WILD_PREV)
3971 {
3972 /*
3973 * Get next/previous match for a previous expanded pattern.
3974 */
3975 p2 = ExpandOne(xp, NULL, NULL, 0, type);
3976 }
3977 else
3978 {
3979 /*
3980 * Translate string into pattern and expand it.
3981 */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003982 if ((p1 = addstar(xp->xp_pattern, xp->xp_pattern_len,
3983 xp->xp_context)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 p2 = NULL;
3985 else
3986 {
Bram Moolenaar94950a92010-12-02 16:01:29 +01003987 int use_options = options |
Bram Moolenaarb3479632012-11-28 16:49:58 +01003988 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT;
3989 if (escape)
3990 use_options |= WILD_ESCAPE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01003991
3992 if (p_wic)
3993 use_options += WILD_ICASE;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003994 p2 = ExpandOne(xp, p1,
3995 vim_strnsave(&ccline.cmdbuff[i], xp->xp_pattern_len),
Bram Moolenaar94950a92010-12-02 16:01:29 +01003996 use_options, type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997 vim_free(p1);
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003998 /* longest match: make sure it is not shorter, happens with :help */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999 if (p2 != NULL && type == WILD_LONGEST)
4000 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004001 for (j = 0; j < xp->xp_pattern_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002 if (ccline.cmdbuff[i + j] == '*'
4003 || ccline.cmdbuff[i + j] == '?')
4004 break;
4005 if ((int)STRLEN(p2) < j)
Bram Moolenaard23a8232018-02-10 18:45:26 +01004006 VIM_CLEAR(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007 }
4008 }
4009 }
4010
4011 if (p2 != NULL && !got_int)
4012 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004013 difflen = (int)STRLEN(p2) - xp->xp_pattern_len;
Bram Moolenaar673b87b2010-08-13 19:12:07 +02004014 if (ccline.cmdlen + difflen + 4 > ccline.cmdbufflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004015 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +02004016 v = realloc_cmdbuff(ccline.cmdlen + difflen + 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017 xp->xp_pattern = ccline.cmdbuff + i;
4018 }
4019 else
4020 v = OK;
4021 if (v == OK)
4022 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004023 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen],
4024 &ccline.cmdbuff[ccline.cmdpos],
4025 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
4026 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027 ccline.cmdlen += difflen;
4028 ccline.cmdpos += difflen;
4029 }
4030 }
4031 vim_free(p2);
4032
4033 redrawcmd();
Bram Moolenaar009b2592004-10-24 19:18:58 +00004034 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035
4036 /* When expanding a ":map" command and no matches are found, assume that
4037 * the key is supposed to be inserted literally */
4038 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL)
4039 return FAIL;
4040
4041 if (xp->xp_numfiles <= 0 && p2 == NULL)
4042 beep_flush();
4043 else if (xp->xp_numfiles == 1)
4044 /* free expanded pattern */
4045 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
4046
4047 return OK;
4048}
4049
4050/*
4051 * Do wildcard expansion on the string 'str'.
4052 * Chars that should not be expanded must be preceded with a backslash.
Bram Moolenaarf9821062008-06-20 16:31:07 +00004053 * Return a pointer to allocated memory containing the new string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054 * Return NULL for failure.
4055 *
Bram Moolenaarecf4de52007-09-30 20:11:26 +00004056 * "orig" is the originally expanded string, copied to allocated memory. It
4057 * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or
4058 * WILD_PREV "orig" should be NULL.
4059 *
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00004060 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode"
4061 * is WILD_EXPAND_FREE or WILD_ALL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062 *
4063 * mode = WILD_FREE: just free previously expanded matches
4064 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches
4065 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches
4066 * mode = WILD_NEXT: use next match in multiple match, wrap to first
4067 * mode = WILD_PREV: use previous match in multiple match, wrap to first
4068 * mode = WILD_ALL: return all matches concatenated
4069 * mode = WILD_LONGEST: return longest matched part
Bram Moolenaar146e9c32012-03-07 19:18:23 +01004070 * mode = WILD_ALL_KEEP: get all matches, keep matches
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071 *
4072 * options = WILD_LIST_NOTFOUND: list entries without a match
4073 * options = WILD_HOME_REPLACE: do home_replace() for buffer names
4074 * options = WILD_USE_NL: Use '\n' for WILD_ALL
4075 * options = WILD_NO_BEEP: Don't beep for multiple matches
4076 * options = WILD_ADD_SLASH: add a slash after directory names
4077 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries
4078 * options = WILD_SILENT: don't print warning messages
4079 * options = WILD_ESCAPE: put backslash before special chars
Bram Moolenaar94950a92010-12-02 16:01:29 +01004080 * options = WILD_ICASE: ignore case for files
Bram Moolenaar071d4272004-06-13 20:20:40 +00004081 *
4082 * The variables xp->xp_context and xp->xp_backslash must have been set!
4083 */
4084 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004085ExpandOne(
4086 expand_T *xp,
4087 char_u *str,
4088 char_u *orig, /* allocated copy of original of expanded string */
4089 int options,
4090 int mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091{
4092 char_u *ss = NULL;
4093 static int findex;
4094 static char_u *orig_save = NULL; /* kept value of orig */
Bram Moolenaar96426642007-10-30 16:37:15 +00004095 int orig_saved = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004096 int i;
4097 long_u len;
4098 int non_suf_match; /* number without matching suffix */
4099
4100 /*
4101 * first handle the case of using an old match
4102 */
4103 if (mode == WILD_NEXT || mode == WILD_PREV)
4104 {
4105 if (xp->xp_numfiles > 0)
4106 {
4107 if (mode == WILD_PREV)
4108 {
4109 if (findex == -1)
4110 findex = xp->xp_numfiles;
4111 --findex;
4112 }
4113 else /* mode == WILD_NEXT */
4114 ++findex;
4115
4116 /*
4117 * When wrapping around, return the original string, set findex to
4118 * -1.
4119 */
4120 if (findex < 0)
4121 {
4122 if (orig_save == NULL)
4123 findex = xp->xp_numfiles - 1;
4124 else
4125 findex = -1;
4126 }
4127 if (findex >= xp->xp_numfiles)
4128 {
4129 if (orig_save == NULL)
4130 findex = 0;
4131 else
4132 findex = -1;
4133 }
4134#ifdef FEAT_WILDMENU
4135 if (p_wmnu)
4136 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files,
4137 findex, cmd_showtail);
4138#endif
4139 if (findex == -1)
4140 return vim_strsave(orig_save);
4141 return vim_strsave(xp->xp_files[findex]);
4142 }
4143 else
4144 return NULL;
4145 }
4146
Bram Moolenaarecf4de52007-09-30 20:11:26 +00004147 /* free old names */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST)
4149 {
4150 FreeWild(xp->xp_numfiles, xp->xp_files);
4151 xp->xp_numfiles = -1;
Bram Moolenaard23a8232018-02-10 18:45:26 +01004152 VIM_CLEAR(orig_save);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 }
4154 findex = 0;
4155
4156 if (mode == WILD_FREE) /* only release file name */
4157 return NULL;
4158
4159 if (xp->xp_numfiles == -1)
4160 {
4161 vim_free(orig_save);
4162 orig_save = orig;
Bram Moolenaar96426642007-10-30 16:37:15 +00004163 orig_saved = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164
4165 /*
4166 * Do the expansion.
4167 */
4168 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files,
4169 options) == FAIL)
4170 {
4171#ifdef FNAME_ILLEGAL
4172 /* Illegal file name has been silently skipped. But when there
4173 * are wildcards, the real problem is that there was no match,
4174 * causing the pattern to be added, which has illegal characters.
4175 */
4176 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004177 semsg(_(e_nomatch2), str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178#endif
4179 }
4180 else if (xp->xp_numfiles == 0)
4181 {
4182 if (!(options & WILD_SILENT))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004183 semsg(_(e_nomatch2), str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184 }
4185 else
4186 {
4187 /* Escape the matches for use on the command line. */
4188 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options);
4189
4190 /*
4191 * Check for matching suffixes in file names.
4192 */
Bram Moolenaar146e9c32012-03-07 19:18:23 +01004193 if (mode != WILD_ALL && mode != WILD_ALL_KEEP
4194 && mode != WILD_LONGEST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195 {
4196 if (xp->xp_numfiles)
4197 non_suf_match = xp->xp_numfiles;
4198 else
4199 non_suf_match = 1;
4200 if ((xp->xp_context == EXPAND_FILES
4201 || xp->xp_context == EXPAND_DIRECTORIES)
4202 && xp->xp_numfiles > 1)
4203 {
4204 /*
4205 * More than one match; check suffix.
4206 * The files will have been sorted on matching suffix in
4207 * expand_wildcards, only need to check the first two.
4208 */
4209 non_suf_match = 0;
4210 for (i = 0; i < 2; ++i)
4211 if (match_suffix(xp->xp_files[i]))
4212 ++non_suf_match;
4213 }
4214 if (non_suf_match != 1)
4215 {
4216 /* Can we ever get here unless it's while expanding
4217 * interactively? If not, we can get rid of this all
4218 * together. Don't really want to wait for this message
4219 * (and possibly have to hit return to continue!).
4220 */
4221 if (!(options & WILD_SILENT))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004222 emsg(_(e_toomany));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 else if (!(options & WILD_NO_BEEP))
4224 beep_flush();
4225 }
4226 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE))
4227 ss = vim_strsave(xp->xp_files[0]);
4228 }
4229 }
4230 }
4231
4232 /* Find longest common part */
4233 if (mode == WILD_LONGEST && xp->xp_numfiles > 0)
4234 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004235 int mb_len = 1;
4236 int c0, ci;
4237
4238 for (len = 0; xp->xp_files[0][len]; len += mb_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004240#ifdef FEAT_MBYTE
4241 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004243 mb_len = (*mb_ptr2len)(&xp->xp_files[0][len]);
4244 c0 =(* mb_ptr2char)(&xp->xp_files[0][len]);
4245 }
4246 else
4247#endif
Bram Moolenaare4eda3b2015-11-21 16:28:50 +01004248 c0 = xp->xp_files[0][len];
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004249 for (i = 1; i < xp->xp_numfiles; ++i)
4250 {
4251#ifdef FEAT_MBYTE
4252 if (has_mbyte)
4253 ci =(* mb_ptr2char)(&xp->xp_files[i][len]);
4254 else
4255#endif
4256 ci = xp->xp_files[i][len];
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01004257 if (p_fic && (xp->xp_context == EXPAND_DIRECTORIES
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258 || xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004259 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01004260 || xp->xp_context == EXPAND_BUFFERS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004262 if (MB_TOLOWER(c0) != MB_TOLOWER(ci))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 break;
4264 }
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004265 else if (c0 != ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266 break;
4267 }
4268 if (i < xp->xp_numfiles)
4269 {
4270 if (!(options & WILD_NO_BEEP))
Bram Moolenaar165bc692015-07-21 17:53:25 +02004271 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004272 break;
4273 }
4274 }
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004275
Bram Moolenaar071d4272004-06-13 20:20:40 +00004276 ss = alloc((unsigned)len + 1);
4277 if (ss)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004278 vim_strncpy(ss, xp->xp_files[0], (size_t)len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004279 findex = -1; /* next p_wc gets first one */
4280 }
4281
4282 /* Concatenate all matching names */
4283 if (mode == WILD_ALL && xp->xp_numfiles > 0)
4284 {
4285 len = 0;
4286 for (i = 0; i < xp->xp_numfiles; ++i)
4287 len += (long_u)STRLEN(xp->xp_files[i]) + 1;
4288 ss = lalloc(len, TRUE);
4289 if (ss != NULL)
4290 {
4291 *ss = NUL;
4292 for (i = 0; i < xp->xp_numfiles; ++i)
4293 {
4294 STRCAT(ss, xp->xp_files[i]);
4295 if (i != xp->xp_numfiles - 1)
4296 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " ");
4297 }
4298 }
4299 }
4300
4301 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL)
4302 ExpandCleanup(xp);
4303
Bram Moolenaarecf4de52007-09-30 20:11:26 +00004304 /* Free "orig" if it wasn't stored in "orig_save". */
Bram Moolenaar96426642007-10-30 16:37:15 +00004305 if (!orig_saved)
Bram Moolenaarecf4de52007-09-30 20:11:26 +00004306 vim_free(orig);
4307
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 return ss;
4309}
4310
4311/*
4312 * Prepare an expand structure for use.
4313 */
4314 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004315ExpandInit(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316{
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00004317 xp->xp_pattern = NULL;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004318 xp->xp_pattern_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00004320#ifndef BACKSLASH_IN_FILENAME
4321 xp->xp_shell = FALSE;
4322#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323 xp->xp_numfiles = -1;
4324 xp->xp_files = NULL;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00004325#if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
4326 xp->xp_arg = NULL;
4327#endif
Bram Moolenaarb7515462013-06-29 12:58:33 +02004328 xp->xp_line = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329}
4330
4331/*
4332 * Cleanup an expand structure after use.
4333 */
4334 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004335ExpandCleanup(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336{
4337 if (xp->xp_numfiles >= 0)
4338 {
4339 FreeWild(xp->xp_numfiles, xp->xp_files);
4340 xp->xp_numfiles = -1;
4341 }
4342}
4343
4344 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004345ExpandEscape(
4346 expand_T *xp,
4347 char_u *str,
4348 int numfiles,
4349 char_u **files,
4350 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351{
4352 int i;
4353 char_u *p;
4354
4355 /*
4356 * May change home directory back to "~"
4357 */
4358 if (options & WILD_HOME_REPLACE)
4359 tilde_replace(str, numfiles, files);
4360
4361 if (options & WILD_ESCAPE)
4362 {
4363 if (xp->xp_context == EXPAND_FILES
Bram Moolenaarcca92ec2011-04-28 17:21:53 +02004364 || xp->xp_context == EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004365 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 || xp->xp_context == EXPAND_BUFFERS
4367 || xp->xp_context == EXPAND_DIRECTORIES)
4368 {
4369 /*
4370 * Insert a backslash into a file name before a space, \, %, #
4371 * and wildmatch characters, except '~'.
4372 */
4373 for (i = 0; i < numfiles; ++i)
4374 {
4375 /* for ":set path=" we need to escape spaces twice */
4376 if (xp->xp_backslash == XP_BS_THREE)
4377 {
4378 p = vim_strsave_escaped(files[i], (char_u *)" ");
4379 if (p != NULL)
4380 {
4381 vim_free(files[i]);
4382 files[i] = p;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00004383#if defined(BACKSLASH_IN_FILENAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384 p = vim_strsave_escaped(files[i], (char_u *)" ");
4385 if (p != NULL)
4386 {
4387 vim_free(files[i]);
4388 files[i] = p;
4389 }
4390#endif
4391 }
4392 }
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00004393#ifdef BACKSLASH_IN_FILENAME
4394 p = vim_strsave_fnameescape(files[i], FALSE);
4395#else
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004396 p = vim_strsave_fnameescape(files[i], xp->xp_shell);
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00004397#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398 if (p != NULL)
4399 {
4400 vim_free(files[i]);
4401 files[i] = p;
4402 }
4403
4404 /* If 'str' starts with "\~", replace "~" at start of
4405 * files[i] with "\~". */
4406 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~')
Bram Moolenaar45360022005-07-21 21:08:21 +00004407 escape_fname(&files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408 }
4409 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar45360022005-07-21 21:08:21 +00004410
4411 /* If the first file starts with a '+' escape it. Otherwise it
4412 * could be seen as "+cmd". */
4413 if (*files[0] == '+')
4414 escape_fname(&files[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 }
4416 else if (xp->xp_context == EXPAND_TAGS)
4417 {
4418 /*
4419 * Insert a backslash before characters in a tag name that
4420 * would terminate the ":tag" command.
4421 */
4422 for (i = 0; i < numfiles; ++i)
4423 {
4424 p = vim_strsave_escaped(files[i], (char_u *)"\\|\"");
4425 if (p != NULL)
4426 {
4427 vim_free(files[i]);
4428 files[i] = p;
4429 }
4430 }
4431 }
4432 }
4433}
4434
4435/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004436 * Escape special characters in "fname" for when used as a file name argument
4437 * after a Vim command, or, when "shell" is non-zero, a shell command.
4438 * Returns the result in allocated memory.
4439 */
4440 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004441vim_strsave_fnameescape(char_u *fname, int shell)
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004442{
Bram Moolenaar7693ec62008-07-24 18:29:37 +00004443 char_u *p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004444#ifdef BACKSLASH_IN_FILENAME
4445 char_u buf[20];
4446 int j = 0;
4447
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01004448 /* Don't escape '[', '{' and '!' if they are in 'isfname'. */
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004449 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01004450 if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p))
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004451 buf[j++] = *p;
4452 buf[j] = NUL;
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004453 p = vim_strsave_escaped(fname, buf);
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004454#else
Bram Moolenaar7693ec62008-07-24 18:29:37 +00004455 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
4456 if (shell && csh_like_shell() && p != NULL)
4457 {
4458 char_u *s;
4459
4460 /* For csh and similar shells need to put two backslashes before '!'.
4461 * One is taken by Vim, one by the shell. */
4462 s = vim_strsave_escaped(p, (char_u *)"!");
4463 vim_free(p);
4464 p = s;
4465 }
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004466#endif
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004467
4468 /* '>' and '+' are special at the start of some commands, e.g. ":edit" and
4469 * ":write". "cd -" has a special meaning. */
Bram Moolenaara9d52e32010-07-31 16:44:19 +02004470 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL)))
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004471 escape_fname(&p);
4472
4473 return p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004474}
4475
4476/*
Bram Moolenaar45360022005-07-21 21:08:21 +00004477 * Put a backslash before the file name in "pp", which is in allocated memory.
4478 */
4479 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004480escape_fname(char_u **pp)
Bram Moolenaar45360022005-07-21 21:08:21 +00004481{
4482 char_u *p;
4483
4484 p = alloc((unsigned)(STRLEN(*pp) + 2));
4485 if (p != NULL)
4486 {
4487 p[0] = '\\';
4488 STRCPY(p + 1, *pp);
4489 vim_free(*pp);
4490 *pp = p;
4491 }
4492}
4493
4494/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495 * For each file name in files[num_files]:
4496 * If 'orig_pat' starts with "~/", replace the home directory with "~".
4497 */
4498 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004499tilde_replace(
4500 char_u *orig_pat,
4501 int num_files,
4502 char_u **files)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503{
4504 int i;
4505 char_u *p;
4506
4507 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
4508 {
4509 for (i = 0; i < num_files; ++i)
4510 {
4511 p = home_replace_save(NULL, files[i]);
4512 if (p != NULL)
4513 {
4514 vim_free(files[i]);
4515 files[i] = p;
4516 }
4517 }
4518 }
4519}
4520
4521/*
4522 * Show all matches for completion on the command line.
4523 * Returns EXPAND_NOTHING when the character that triggered expansion should
4524 * be inserted like a normal character.
4525 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004527showmatches(expand_T *xp, int wildmenu UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528{
4529#define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m])
4530 int num_files;
4531 char_u **files_found;
4532 int i, j, k;
4533 int maxlen;
4534 int lines;
4535 int columns;
4536 char_u *p;
4537 int lastlen;
4538 int attr;
4539 int showtail;
4540
4541 if (xp->xp_numfiles == -1)
4542 {
4543 set_expand_context(xp);
4544 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos,
4545 &num_files, &files_found);
4546 showtail = expand_showtail(xp);
4547 if (i != EXPAND_OK)
4548 return i;
4549
4550 }
4551 else
4552 {
4553 num_files = xp->xp_numfiles;
4554 files_found = xp->xp_files;
4555 showtail = cmd_showtail;
4556 }
4557
4558#ifdef FEAT_WILDMENU
4559 if (!wildmenu)
4560 {
4561#endif
4562 msg_didany = FALSE; /* lines_left will be set */
4563 msg_start(); /* prepare for paging */
4564 msg_putchar('\n');
4565 out_flush();
4566 cmdline_row = msg_row;
4567 msg_didany = FALSE; /* lines_left will be set again */
4568 msg_start(); /* prepare for paging */
4569#ifdef FEAT_WILDMENU
4570 }
4571#endif
4572
4573 if (got_int)
4574 got_int = FALSE; /* only int. the completion, not the cmd line */
4575#ifdef FEAT_WILDMENU
4576 else if (wildmenu)
Bram Moolenaaref8eb082017-03-30 22:04:55 +02004577 win_redr_status_matches(xp, num_files, files_found, -1, showtail);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004578#endif
4579 else
4580 {
4581 /* find the length of the longest file name */
4582 maxlen = 0;
4583 for (i = 0; i < num_files; ++i)
4584 {
4585 if (!showtail && (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004586 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587 || xp->xp_context == EXPAND_BUFFERS))
4588 {
4589 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE);
4590 j = vim_strsize(NameBuff);
4591 }
4592 else
4593 j = vim_strsize(L_SHOWFILE(i));
4594 if (j > maxlen)
4595 maxlen = j;
4596 }
4597
4598 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4599 lines = num_files;
4600 else
4601 {
4602 /* compute the number of columns and lines for the listing */
4603 maxlen += 2; /* two spaces between file names */
4604 columns = ((int)Columns + 2) / maxlen;
4605 if (columns < 1)
4606 columns = 1;
4607 lines = (num_files + columns - 1) / columns;
4608 }
4609
Bram Moolenaar8820b482017-03-16 17:23:31 +01004610 attr = HL_ATTR(HLF_D); /* find out highlighting for directories */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611
4612 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4613 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004614 msg_puts_attr(_("tagname"), HL_ATTR(HLF_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615 msg_clr_eos();
4616 msg_advance(maxlen - 3);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004617 msg_puts_attr(_(" kind file\n"), HL_ATTR(HLF_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618 }
4619
4620 /* list the files line by line */
4621 for (i = 0; i < lines; ++i)
4622 {
4623 lastlen = 999;
4624 for (k = i; k < num_files; k += lines)
4625 {
4626 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4627 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01004628 msg_outtrans_attr(files_found[k], HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629 p = files_found[k] + STRLEN(files_found[k]) + 1;
4630 msg_advance(maxlen + 1);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004631 msg_puts((char *)p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632 msg_advance(maxlen + 3);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004633 msg_outtrans_long_attr(p + 2, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634 break;
4635 }
4636 for (j = maxlen - lastlen; --j >= 0; )
4637 msg_putchar(' ');
4638 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004639 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004640 || xp->xp_context == EXPAND_BUFFERS)
4641 {
Bram Moolenaarb91e59b2010-03-17 19:13:27 +01004642 /* highlight directories */
Bram Moolenaar63fa5262010-03-23 18:06:52 +01004643 if (xp->xp_numfiles != -1)
4644 {
4645 char_u *halved_slash;
4646 char_u *exp_path;
4647
4648 /* Expansion was done before and special characters
4649 * were escaped, need to halve backslashes. Also
4650 * $HOME has been replaced with ~/. */
4651 exp_path = expand_env_save_opt(files_found[k], TRUE);
4652 halved_slash = backslash_halve_save(
4653 exp_path != NULL ? exp_path : files_found[k]);
4654 j = mch_isdir(halved_slash != NULL ? halved_slash
4655 : files_found[k]);
4656 vim_free(exp_path);
4657 vim_free(halved_slash);
4658 }
4659 else
4660 /* Expansion was done here, file names are literal. */
4661 j = mch_isdir(files_found[k]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662 if (showtail)
4663 p = L_SHOWFILE(k);
4664 else
4665 {
4666 home_replace(NULL, files_found[k], NameBuff, MAXPATHL,
4667 TRUE);
4668 p = NameBuff;
4669 }
4670 }
4671 else
4672 {
4673 j = FALSE;
4674 p = L_SHOWFILE(k);
4675 }
4676 lastlen = msg_outtrans_attr(p, j ? attr : 0);
4677 }
4678 if (msg_col > 0) /* when not wrapped around */
4679 {
4680 msg_clr_eos();
4681 msg_putchar('\n');
4682 }
4683 out_flush(); /* show one line at a time */
4684 if (got_int)
4685 {
4686 got_int = FALSE;
4687 break;
4688 }
4689 }
4690
4691 /*
4692 * we redraw the command below the lines that we have just listed
4693 * This is a bit tricky, but it saves a lot of screen updating.
4694 */
4695 cmdline_row = msg_row; /* will put it back later */
4696 }
4697
4698 if (xp->xp_numfiles == -1)
4699 FreeWild(num_files, files_found);
4700
4701 return EXPAND_OK;
4702}
4703
4704/*
4705 * Private gettail for showmatches() (and win_redr_status_matches()):
4706 * Find tail of file name path, but ignore trailing "/".
4707 */
4708 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004709sm_gettail(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004710{
4711 char_u *p;
4712 char_u *t = s;
4713 int had_sep = FALSE;
4714
4715 for (p = s; *p != NUL; )
4716 {
4717 if (vim_ispathsep(*p)
4718#ifdef BACKSLASH_IN_FILENAME
4719 && !rem_backslash(p)
4720#endif
4721 )
4722 had_sep = TRUE;
4723 else if (had_sep)
4724 {
4725 t = p;
4726 had_sep = FALSE;
4727 }
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004728 MB_PTR_ADV(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729 }
4730 return t;
4731}
4732
4733/*
4734 * Return TRUE if we only need to show the tail of completion matches.
4735 * When not completing file names or there is a wildcard in the path FALSE is
4736 * returned.
4737 */
4738 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004739expand_showtail(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740{
4741 char_u *s;
4742 char_u *end;
4743
4744 /* When not completing file names a "/" may mean something different. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004745 if (xp->xp_context != EXPAND_FILES
4746 && xp->xp_context != EXPAND_SHELLCMD
4747 && xp->xp_context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748 return FALSE;
4749
4750 end = gettail(xp->xp_pattern);
4751 if (end == xp->xp_pattern) /* there is no path separator */
4752 return FALSE;
4753
4754 for (s = xp->xp_pattern; s < end; s++)
4755 {
4756 /* Skip escaped wildcards. Only when the backslash is not a path
4757 * separator, on DOS the '*' "path\*\file" must not be skipped. */
4758 if (rem_backslash(s))
4759 ++s;
4760 else if (vim_strchr((char_u *)"*?[", *s) != NULL)
4761 return FALSE;
4762 }
4763 return TRUE;
4764}
4765
4766/*
4767 * Prepare a string for expansion.
4768 * When expanding file names: The string will be used with expand_wildcards().
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004769 * Copy "fname[len]" into allocated memory and add a '*' at the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770 * When expanding other names: The string will be used with regcomp(). Copy
4771 * the name into allocated memory and prepend "^".
4772 */
4773 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004774addstar(
4775 char_u *fname,
4776 int len,
4777 int context) /* EXPAND_FILES etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004778{
4779 char_u *retval;
4780 int i, j;
4781 int new_len;
4782 char_u *tail;
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004783 int ends_in_star;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004785 if (context != EXPAND_FILES
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004786 && context != EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004787 && context != EXPAND_SHELLCMD
4788 && context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789 {
4790 /*
4791 * Matching will be done internally (on something other than files).
4792 * So we convert the file-matching-type wildcards into our kind for
4793 * use with vim_regcomp(). First work out how long it will be:
4794 */
4795
4796 /* For help tags the translation is done in find_help_tags().
4797 * For a tag pattern starting with "/" no translation is needed. */
4798 if (context == EXPAND_HELP
4799 || context == EXPAND_COLORS
4800 || context == EXPAND_COMPILER
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004801 || context == EXPAND_OWNSYNTAX
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004802 || context == EXPAND_FILETYPE
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01004803 || context == EXPAND_PACKADD
Bram Moolenaarba47b512017-01-24 21:18:19 +01004804 || ((context == EXPAND_TAGS_LISTFILES
4805 || context == EXPAND_TAGS)
4806 && fname[0] == '/'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807 retval = vim_strnsave(fname, len);
4808 else
4809 {
4810 new_len = len + 2; /* +2 for '^' at start, NUL at end */
4811 for (i = 0; i < len; i++)
4812 {
4813 if (fname[i] == '*' || fname[i] == '~')
4814 new_len++; /* '*' needs to be replaced by ".*"
4815 '~' needs to be replaced by "\~" */
4816
4817 /* Buffer names are like file names. "." should be literal */
4818 if (context == EXPAND_BUFFERS && fname[i] == '.')
4819 new_len++; /* "." becomes "\." */
4820
4821 /* Custom expansion takes care of special things, match
4822 * backslashes literally (perhaps also for other types?) */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004823 if ((context == EXPAND_USER_DEFINED
4824 || context == EXPAND_USER_LIST) && fname[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004825 new_len++; /* '\' becomes "\\" */
4826 }
4827 retval = alloc(new_len);
4828 if (retval != NULL)
4829 {
4830 retval[0] = '^';
4831 j = 1;
4832 for (i = 0; i < len; i++, j++)
4833 {
4834 /* Skip backslash. But why? At least keep it for custom
4835 * expansion. */
4836 if (context != EXPAND_USER_DEFINED
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004837 && context != EXPAND_USER_LIST
4838 && fname[i] == '\\'
4839 && ++i == len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 break;
4841
4842 switch (fname[i])
4843 {
4844 case '*': retval[j++] = '.';
4845 break;
4846 case '~': retval[j++] = '\\';
4847 break;
4848 case '?': retval[j] = '.';
4849 continue;
4850 case '.': if (context == EXPAND_BUFFERS)
4851 retval[j++] = '\\';
4852 break;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004853 case '\\': if (context == EXPAND_USER_DEFINED
4854 || context == EXPAND_USER_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855 retval[j++] = '\\';
4856 break;
4857 }
4858 retval[j] = fname[i];
4859 }
4860 retval[j] = NUL;
4861 }
4862 }
4863 }
4864 else
4865 {
4866 retval = alloc(len + 4);
4867 if (retval != NULL)
4868 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004869 vim_strncpy(retval, fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870
4871 /*
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004872 * Don't add a star to *, ~, ~user, $var or `cmd`.
4873 * * would become **, which walks the whole tree.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874 * ~ would be at the start of the file name, but not the tail.
4875 * $ could be anywhere in the tail.
4876 * ` could be anywhere in the file name.
Bram Moolenaar066b6222008-01-04 14:17:47 +00004877 * When the name ends in '$' don't add a star, remove the '$'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878 */
4879 tail = gettail(retval);
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004880 ends_in_star = (len > 0 && retval[len - 1] == '*');
4881#ifndef BACKSLASH_IN_FILENAME
4882 for (i = len - 2; i >= 0; --i)
4883 {
4884 if (retval[i] != '\\')
4885 break;
4886 ends_in_star = !ends_in_star;
4887 }
4888#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889 if ((*retval != '~' || tail != retval)
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004890 && !ends_in_star
Bram Moolenaar071d4272004-06-13 20:20:40 +00004891 && vim_strchr(tail, '$') == NULL
4892 && vim_strchr(retval, '`') == NULL)
4893 retval[len++] = '*';
Bram Moolenaar066b6222008-01-04 14:17:47 +00004894 else if (len > 0 && retval[len - 1] == '$')
4895 --len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004896 retval[len] = NUL;
4897 }
4898 }
4899 return retval;
4900}
4901
4902/*
4903 * Must parse the command line so far to work out what context we are in.
4904 * Completion can then be done based on that context.
4905 * This routine sets the variables:
4906 * xp->xp_pattern The start of the pattern to be expanded within
4907 * the command line (ends at the cursor).
4908 * xp->xp_context The type of thing to expand. Will be one of:
4909 *
4910 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on
4911 * the command line, like an unknown command. Caller
4912 * should beep.
4913 * EXPAND_NOTHING Unrecognised context for completion, use char like
4914 * a normal char, rather than for completion. eg
4915 * :s/^I/
4916 * EXPAND_COMMANDS Cursor is still touching the command, so complete
4917 * it.
4918 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands.
4919 * EXPAND_FILES After command with XFILE set, or after setting
4920 * with P_EXPAND set. eg :e ^I, :w>>^I
4921 * EXPAND_DIRECTORIES In some cases this is used instead of the latter
4922 * when we know only directories are of interest. eg
4923 * :set dir=^I
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004924 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925 * EXPAND_SETTINGS Complete variable names. eg :set d^I
4926 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I
4927 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I
4928 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect
4929 * EXPAND_HELP Complete tags from the file 'helpfile'/tags
4930 * EXPAND_EVENTS Complete event names
4931 * EXPAND_SYNTAX Complete :syntax command arguments
4932 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names
4933 * EXPAND_AUGROUP Complete autocommand group names
4934 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I
4935 * EXPAND_MAPPINGS Complete mapping and abbreviation names,
4936 * eg :unmap a^I , :cunab x^I
4937 * EXPAND_FUNCTIONS Complete internal or user defined function names,
4938 * eg :call sub^I
4939 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I
4940 * EXPAND_EXPRESSION Complete internal or user defined function/variable
4941 * names in expressions, eg :while s^I
4942 * EXPAND_ENV_VARS Complete environment variable names
Bram Moolenaar24305862012-08-15 14:05:05 +02004943 * EXPAND_USER Complete user names
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 */
4945 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004946set_expand_context(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004948 /* only expansion for ':', '>' and '=' command-lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 if (ccline.cmdfirstc != ':'
4950#ifdef FEAT_EVAL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004951 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '='
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004952 && !ccline.input_fn
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953#endif
4954 )
4955 {
4956 xp->xp_context = EXPAND_NOTHING;
4957 return;
4958 }
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004959 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960}
4961
4962 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004963set_cmd_context(
4964 expand_T *xp,
4965 char_u *str, /* start of command line */
4966 int len, /* length of command line (excl. NUL) */
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004967 int col, /* position of cursor */
4968 int use_ccline UNUSED) /* use ccline for info */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969{
4970 int old_char = NUL;
4971 char_u *nextcomm;
4972
4973 /*
4974 * Avoid a UMR warning from Purify, only save the character if it has been
4975 * written before.
4976 */
4977 if (col < len)
4978 old_char = str[col];
4979 str[col] = NUL;
4980 nextcomm = str;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004981
4982#ifdef FEAT_EVAL
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004983 if (use_ccline && ccline.cmdfirstc == '=')
Bram Moolenaar4f688582007-07-24 12:34:30 +00004984 {
4985# ifdef FEAT_CMDL_COMPL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004986 /* pass CMD_SIZE because there is no real command */
4987 set_context_for_expression(xp, str, CMD_SIZE);
Bram Moolenaar4f688582007-07-24 12:34:30 +00004988# endif
4989 }
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004990 else if (use_ccline && ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004991 {
4992 xp->xp_context = ccline.xp_context;
4993 xp->xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004994# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004995 xp->xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004996# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004997 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004998 else
4999#endif
5000 while (nextcomm != NULL)
5001 nextcomm = set_one_cmd_context(xp, nextcomm);
5002
Bram Moolenaara4c8dcb2013-06-30 12:21:24 +02005003 /* Store the string here so that call_user_expand_func() can get to them
5004 * easily. */
5005 xp->xp_line = str;
5006 xp->xp_col = col;
5007
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 str[col] = old_char;
5009}
5010
5011/*
5012 * Expand the command line "str" from context "xp".
5013 * "xp" must have been set by set_cmd_context().
5014 * xp->xp_pattern points into "str", to where the text that is to be expanded
5015 * starts.
5016 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the
5017 * cursor.
5018 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the
5019 * key that triggered expansion literally.
5020 * Returns EXPAND_OK otherwise.
5021 */
5022 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005023expand_cmdline(
5024 expand_T *xp,
5025 char_u *str, /* start of command line */
5026 int col, /* position of cursor */
5027 int *matchcount, /* return: nr of matches */
5028 char_u ***matches) /* return: array of pointers to matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029{
5030 char_u *file_str = NULL;
Bram Moolenaar94950a92010-12-02 16:01:29 +01005031 int options = WILD_ADD_SLASH|WILD_SILENT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005032
5033 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
5034 {
5035 beep_flush();
5036 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */
5037 }
5038 if (xp->xp_context == EXPAND_NOTHING)
5039 {
5040 /* Caller can use the character as a normal char instead */
5041 return EXPAND_NOTHING;
5042 }
5043
5044 /* add star to file name, or convert to regexp if not exp. files. */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00005045 xp->xp_pattern_len = (int)(str + col - xp->xp_pattern);
5046 file_str = addstar(xp->xp_pattern, xp->xp_pattern_len, xp->xp_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 if (file_str == NULL)
5048 return EXPAND_UNSUCCESSFUL;
5049
Bram Moolenaar94950a92010-12-02 16:01:29 +01005050 if (p_wic)
5051 options += WILD_ICASE;
5052
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 /* find all files that match the description */
Bram Moolenaar94950a92010-12-02 16:01:29 +01005054 if (ExpandFromContext(xp, file_str, matchcount, matches, options) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 {
5056 *matchcount = 0;
5057 *matches = NULL;
5058 }
5059 vim_free(file_str);
5060
5061 return EXPAND_OK;
5062}
5063
5064#ifdef FEAT_MULTI_LANG
5065/*
Bram Moolenaar61264d92016-03-28 19:59:02 +02005066 * Cleanup matches for help tags:
5067 * Remove "@ab" if the top of 'helplang' is "ab" and the language of the first
5068 * tag matches it. Otherwise remove "@en" if "en" is the only language.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005069 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005071cleanup_help_tags(int num_file, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072{
5073 int i, j;
5074 int len;
Bram Moolenaar61264d92016-03-28 19:59:02 +02005075 char_u buf[4];
5076 char_u *p = buf;
5077
Bram Moolenaar89c79b92016-05-05 17:18:41 +02005078 if (p_hlg[0] != NUL && (p_hlg[0] != 'e' || p_hlg[1] != 'n'))
Bram Moolenaar61264d92016-03-28 19:59:02 +02005079 {
5080 *p++ = '@';
5081 *p++ = p_hlg[0];
5082 *p++ = p_hlg[1];
5083 }
5084 *p = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085
5086 for (i = 0; i < num_file; ++i)
5087 {
5088 len = (int)STRLEN(file[i]) - 3;
Bram Moolenaar61264d92016-03-28 19:59:02 +02005089 if (len <= 0)
5090 continue;
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02005091 if (STRCMP(file[i] + len, "@en") == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092 {
5093 /* Sorting on priority means the same item in another language may
5094 * be anywhere. Search all items for a match up to the "@en". */
5095 for (j = 0; j < num_file; ++j)
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02005096 if (j != i && (int)STRLEN(file[j]) == len + 3
5097 && STRNCMP(file[i], file[j], len + 1) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098 break;
5099 if (j == num_file)
Bram Moolenaar89c79b92016-05-05 17:18:41 +02005100 /* item only exists with @en, remove it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101 file[i][len] = NUL;
5102 }
5103 }
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02005104
5105 if (*buf != NUL)
5106 for (i = 0; i < num_file; ++i)
5107 {
5108 len = (int)STRLEN(file[i]) - 3;
5109 if (len <= 0)
5110 continue;
5111 if (STRCMP(file[i] + len, buf) == 0)
5112 {
5113 /* remove the default language */
5114 file[i][len] = NUL;
5115 }
5116 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117}
5118#endif
5119
5120/*
5121 * Do the expansion based on xp->xp_context and "pat".
5122 */
5123 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005124ExpandFromContext(
5125 expand_T *xp,
5126 char_u *pat,
5127 int *num_file,
5128 char_u ***file,
5129 int options) /* EW_ flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130{
5131#ifdef FEAT_CMDL_COMPL
5132 regmatch_T regmatch;
5133#endif
5134 int ret;
5135 int flags;
5136
5137 flags = EW_DIR; /* include directories */
5138 if (options & WILD_LIST_NOTFOUND)
5139 flags |= EW_NOTFOUND;
5140 if (options & WILD_ADD_SLASH)
5141 flags |= EW_ADDSLASH;
5142 if (options & WILD_KEEP_ALL)
5143 flags |= EW_KEEPALL;
5144 if (options & WILD_SILENT)
5145 flags |= EW_SILENT;
Bram Moolenaara245bc72015-03-05 19:35:25 +01005146 if (options & WILD_ALLLINKS)
5147 flags |= EW_ALLLINKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148
Bram Moolenaarcc448b32010-07-14 16:52:17 +02005149 if (xp->xp_context == EXPAND_FILES
5150 || xp->xp_context == EXPAND_DIRECTORIES
5151 || xp->xp_context == EXPAND_FILES_IN_PATH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 {
5153 /*
5154 * Expand file or directory names.
5155 */
5156 int free_pat = FALSE;
5157 int i;
5158
5159 /* for ":set path=" and ":set tags=" halve backslashes for escaped
5160 * space */
5161 if (xp->xp_backslash != XP_BS_NONE)
5162 {
5163 free_pat = TRUE;
5164 pat = vim_strsave(pat);
5165 for (i = 0; pat[i]; ++i)
5166 if (pat[i] == '\\')
5167 {
5168 if (xp->xp_backslash == XP_BS_THREE
5169 && pat[i + 1] == '\\'
5170 && pat[i + 2] == '\\'
5171 && pat[i + 3] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00005172 STRMOVE(pat + i, pat + i + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173 if (xp->xp_backslash == XP_BS_ONE
5174 && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00005175 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176 }
5177 }
5178
5179 if (xp->xp_context == EXPAND_FILES)
5180 flags |= EW_FILE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02005181 else if (xp->xp_context == EXPAND_FILES_IN_PATH)
5182 flags |= (EW_FILE | EW_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183 else
5184 flags = (flags | EW_DIR) & ~EW_FILE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01005185 if (options & WILD_ICASE)
5186 flags |= EW_ICASE;
5187
Bram Moolenaard7834d32009-12-02 16:14:36 +00005188 /* Expand wildcards, supporting %:h and the like. */
5189 ret = expand_wildcards_eval(&pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190 if (free_pat)
5191 vim_free(pat);
5192 return ret;
5193 }
5194
5195 *file = (char_u **)"";
5196 *num_file = 0;
5197 if (xp->xp_context == EXPAND_HELP)
5198 {
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00005199 /* With an empty argument we would get all the help tags, which is
5200 * very slow. Get matches for "help" instead. */
5201 if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat,
5202 num_file, file, FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203 {
5204#ifdef FEAT_MULTI_LANG
5205 cleanup_help_tags(*num_file, *file);
5206#endif
5207 return OK;
5208 }
5209 return FAIL;
5210 }
5211
5212#ifndef FEAT_CMDL_COMPL
5213 return FAIL;
5214#else
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005215 if (xp->xp_context == EXPAND_SHELLCMD)
5216 return expand_shellcmd(pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005217 if (xp->xp_context == EXPAND_OLD_SETTING)
5218 return ExpandOldSetting(num_file, file);
5219 if (xp->xp_context == EXPAND_BUFFERS)
5220 return ExpandBufnames(pat, num_file, file, options);
5221 if (xp->xp_context == EXPAND_TAGS
5222 || xp->xp_context == EXPAND_TAGS_LISTFILES)
5223 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file);
5224 if (xp->xp_context == EXPAND_COLORS)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005225 {
5226 char *directories[] = {"colors", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005227 return ExpandRTDir(pat, DIP_START + DIP_OPT, num_file, file,
5228 directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005229 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230 if (xp->xp_context == EXPAND_COMPILER)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005231 {
Bram Moolenaara627c962011-09-30 16:23:32 +02005232 char *directories[] = {"compiler", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005233 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005234 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005235 if (xp->xp_context == EXPAND_OWNSYNTAX)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005236 {
5237 char *directories[] = {"syntax", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005238 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005239 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005240 if (xp->xp_context == EXPAND_FILETYPE)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005241 {
5242 char *directories[] = {"syntax", "indent", "ftplugin", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005243 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005244 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005245# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
5246 if (xp->xp_context == EXPAND_USER_LIST)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00005247 return ExpandUserList(xp, num_file, file);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005248# endif
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01005249 if (xp->xp_context == EXPAND_PACKADD)
5250 return ExpandPackAddDir(pat, num_file, file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251
5252 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
5253 if (regmatch.regprog == NULL)
5254 return FAIL;
5255
5256 /* set ignore-case according to p_ic, p_scs and pat */
5257 regmatch.rm_ic = ignorecase(pat);
5258
5259 if (xp->xp_context == EXPAND_SETTINGS
5260 || xp->xp_context == EXPAND_BOOL_SETTINGS)
5261 ret = ExpandSettings(xp, &regmatch, num_file, file);
5262 else if (xp->xp_context == EXPAND_MAPPINGS)
5263 ret = ExpandMappings(&regmatch, num_file, file);
5264# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
5265 else if (xp->xp_context == EXPAND_USER_DEFINED)
5266 ret = ExpandUserDefined(xp, &regmatch, num_file, file);
5267# endif
5268 else
5269 {
5270 static struct expgen
5271 {
5272 int context;
Bram Moolenaard99df422016-01-29 23:20:40 +01005273 char_u *((*func)(expand_T *, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 int ic;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005275 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 } tab[] =
5277 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005278 {EXPAND_COMMANDS, get_command_name, FALSE, TRUE},
5279 {EXPAND_BEHAVE, get_behave_arg, TRUE, TRUE},
Bram Moolenaarcae92dc2017-08-06 15:22:15 +02005280 {EXPAND_MAPCLEAR, get_mapclear_arg, TRUE, TRUE},
Bram Moolenaar9e507ca2016-10-15 15:39:39 +02005281 {EXPAND_MESSAGES, get_messages_arg, TRUE, TRUE},
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005282#ifdef FEAT_CMDHIST
5283 {EXPAND_HISTORY, get_history_arg, TRUE, TRUE},
5284#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285#ifdef FEAT_USR_CMDS
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005286 {EXPAND_USER_COMMANDS, get_user_commands, FALSE, TRUE},
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005287 {EXPAND_USER_ADDR_TYPE, get_user_cmd_addr_type, FALSE, TRUE},
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005288 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE, TRUE},
5289 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE, TRUE},
5290 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291#endif
5292#ifdef FEAT_EVAL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005293 {EXPAND_USER_VARS, get_user_var_name, FALSE, TRUE},
5294 {EXPAND_FUNCTIONS, get_function_name, FALSE, TRUE},
5295 {EXPAND_USER_FUNC, get_user_func_name, FALSE, TRUE},
5296 {EXPAND_EXPRESSION, get_expr_name, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297#endif
5298#ifdef FEAT_MENU
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005299 {EXPAND_MENUS, get_menu_name, FALSE, TRUE},
5300 {EXPAND_MENUNAMES, get_menu_names, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301#endif
5302#ifdef FEAT_SYN_HL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005303 {EXPAND_SYNTAX, get_syntax_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304#endif
Bram Moolenaarcd9c4622013-06-08 15:24:48 +02005305#ifdef FEAT_PROFILE
5306 {EXPAND_SYNTIME, get_syntime_arg, TRUE, TRUE},
5307#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005308 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE, TRUE},
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005309 {EXPAND_EVENTS, get_event_name, TRUE, TRUE},
5310 {EXPAND_AUGROUP, get_augroup_name, TRUE, TRUE},
Bram Moolenaarf4580d82009-03-18 11:52:53 +00005311#ifdef FEAT_CSCOPE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005312 {EXPAND_CSCOPE, get_cscope_name, TRUE, TRUE},
Bram Moolenaarf4580d82009-03-18 11:52:53 +00005313#endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00005314#ifdef FEAT_SIGNS
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005315 {EXPAND_SIGN, get_sign_name, TRUE, TRUE},
Bram Moolenaar3c65e312009-04-29 16:47:23 +00005316#endif
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01005317#ifdef FEAT_PROFILE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005318 {EXPAND_PROFILE, get_profile_name, TRUE, TRUE},
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01005319#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005320#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
5321 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005322 {EXPAND_LANGUAGE, get_lang_arg, TRUE, FALSE},
5323 {EXPAND_LOCALES, get_locales, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005325 {EXPAND_ENV_VARS, get_env_name, TRUE, TRUE},
Bram Moolenaar24305862012-08-15 14:05:05 +02005326 {EXPAND_USER, get_users, TRUE, FALSE},
Bram Moolenaarcd43eff2018-03-29 15:55:38 +02005327 {EXPAND_ARGLIST, get_arglist_name, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005328 };
5329 int i;
5330
5331 /*
5332 * Find a context in the table and call the ExpandGeneric() with the
5333 * right function to do the expansion.
5334 */
5335 ret = FAIL;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00005336 for (i = 0; i < (int)(sizeof(tab) / sizeof(struct expgen)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337 if (xp->xp_context == tab[i].context)
5338 {
5339 if (tab[i].ic)
5340 regmatch.rm_ic = TRUE;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005341 ret = ExpandGeneric(xp, &regmatch, num_file, file,
Bram Moolenaare79abdd2012-06-29 13:44:41 +02005342 tab[i].func, tab[i].escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005343 break;
5344 }
5345 }
5346
Bram Moolenaar473de612013-06-08 18:19:48 +02005347 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005348
5349 return ret;
5350#endif /* FEAT_CMDL_COMPL */
5351}
5352
5353#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5354/*
5355 * Expand a list of names.
5356 *
5357 * Generic function for command line completion. It calls a function to
5358 * obtain strings, one by one. The strings are matched against a regexp
5359 * program. Matching strings are copied into an array, which is returned.
5360 *
5361 * Returns OK when no problems encountered, FAIL for error (out of memory).
5362 */
5363 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005364ExpandGeneric(
5365 expand_T *xp,
5366 regmatch_T *regmatch,
5367 int *num_file,
5368 char_u ***file,
5369 char_u *((*func)(expand_T *, int)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370 /* returns a string from the list */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005371 int escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372{
5373 int i;
5374 int count = 0;
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005375 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376 char_u *str;
5377
5378 /* do this loop twice:
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005379 * round == 0: count the number of matching names
5380 * round == 1: copy the matching names into allocated memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381 */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005382 for (round = 0; round <= 1; ++round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 {
5384 for (i = 0; ; ++i)
5385 {
5386 str = (*func)(xp, i);
5387 if (str == NULL) /* end of list */
5388 break;
5389 if (*str == NUL) /* skip empty strings */
5390 continue;
5391
5392 if (vim_regexec(regmatch, str, (colnr_T)0))
5393 {
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005394 if (round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005395 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005396 if (escaped)
5397 str = vim_strsave_escaped(str, (char_u *)" \t\\.");
5398 else
5399 str = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400 (*file)[count] = str;
5401#ifdef FEAT_MENU
5402 if (func == get_menu_names && str != NULL)
5403 {
5404 /* test for separator added by get_menu_names() */
5405 str += STRLEN(str) - 1;
5406 if (*str == '\001')
5407 *str = '.';
5408 }
5409#endif
5410 }
5411 ++count;
5412 }
5413 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005414 if (round == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415 {
5416 if (count == 0)
5417 return OK;
5418 *num_file = count;
5419 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
5420 if (*file == NULL)
5421 {
5422 *file = (char_u **)"";
5423 return FAIL;
5424 }
5425 count = 0;
5426 }
5427 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005428
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005429 /* Sort the results. Keep menu's in the specified order. */
5430 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02005431 {
5432 if (xp->xp_context == EXPAND_EXPRESSION
5433 || xp->xp_context == EXPAND_FUNCTIONS
5434 || xp->xp_context == EXPAND_USER_FUNC)
5435 /* <SNR> functions should be sorted to the end. */
5436 qsort((void *)*file, (size_t)*num_file, sizeof(char_u *),
5437 sort_func_compare);
5438 else
5439 sort_strings(*file, *num_file);
5440 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005441
Bram Moolenaar4f688582007-07-24 12:34:30 +00005442#ifdef FEAT_CMDL_COMPL
5443 /* Reset the variables used for special highlight names expansion, so that
5444 * they don't show up when getting normal highlight names by ID. */
5445 reset_expand_highlight();
5446#endif
5447
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448 return OK;
5449}
5450
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005451/*
5452 * Complete a shell command.
5453 * Returns FAIL or OK;
5454 */
5455 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005456expand_shellcmd(
5457 char_u *filepat, /* pattern to match with command names */
5458 int *num_file, /* return: number of matches */
5459 char_u ***file, /* return: array with matches */
5460 int flagsarg) /* EW_ flags */
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005461{
5462 char_u *pat;
5463 int i;
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005464 char_u *path = NULL;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005465 int mustfree = FALSE;
5466 garray_T ga;
5467 char_u *buf = alloc(MAXPATHL);
5468 size_t l;
5469 char_u *s, *e;
5470 int flags = flagsarg;
5471 int ret;
Bram Moolenaarb5971142015-03-21 17:32:19 +01005472 int did_curdir = FALSE;
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005473 hashtab_T found_ht;
5474 hashitem_T *hi;
5475 hash_T hash;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005476
5477 if (buf == NULL)
5478 return FAIL;
5479
5480 /* for ":set path=" and ":set tags=" halve backslashes for escaped
5481 * space */
5482 pat = vim_strsave(filepat);
5483 for (i = 0; pat[i]; ++i)
5484 if (pat[i] == '\\' && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00005485 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005486
Bram Moolenaarb5971142015-03-21 17:32:19 +01005487 flags |= EW_FILE | EW_EXEC | EW_SHELLCMD;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005488
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005489 if (pat[0] == '.' && (vim_ispathsep(pat[1])
5490 || (pat[1] == '.' && vim_ispathsep(pat[2]))))
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005491 path = (char_u *)".";
5492 else
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01005493 {
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005494 /* For an absolute name we don't use $PATH. */
5495 if (!mch_isFullName(pat))
5496 path = vim_getenv((char_u *)"PATH", &mustfree);
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01005497 if (path == NULL)
5498 path = (char_u *)"";
5499 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005500
5501 /*
5502 * Go over all directories in $PATH. Expand matches in that directory and
Bram Moolenaarb5971142015-03-21 17:32:19 +01005503 * collect them in "ga". When "." is not in $PATH also expand for the
5504 * current directory, to find "subdir/cmd".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005505 */
5506 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005507 hash_init(&found_ht);
Bram Moolenaarb5971142015-03-21 17:32:19 +01005508 for (s = path; ; s = e)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005509 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005510#if defined(MSWIN)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005511 e = vim_strchr(s, ';');
5512#else
5513 e = vim_strchr(s, ':');
5514#endif
5515 if (e == NULL)
5516 e = s + STRLEN(s);
5517
Bram Moolenaar6ab9e422018-07-28 19:20:13 +02005518 if (*s == NUL)
5519 {
5520 if (did_curdir)
5521 break;
5522 // Find directories in the current directory, path is empty.
5523 did_curdir = TRUE;
5524 flags |= EW_DIR;
5525 }
5526 else if (STRNCMP(s, ".", (int)(e - s)) == 0)
5527 {
5528 did_curdir = TRUE;
5529 flags |= EW_DIR;
5530 }
5531 else
5532 // Do not match directories inside a $PATH item.
5533 flags &= ~EW_DIR;
5534
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005535 l = e - s;
5536 if (l > MAXPATHL - 5)
5537 break;
5538 vim_strncpy(buf, s, l);
5539 add_pathsep(buf);
5540 l = STRLEN(buf);
5541 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l);
5542
5543 /* Expand matches in one directory of $PATH. */
5544 ret = expand_wildcards(1, &buf, num_file, file, flags);
5545 if (ret == OK)
5546 {
5547 if (ga_grow(&ga, *num_file) == FAIL)
5548 FreeWild(*num_file, *file);
5549 else
5550 {
5551 for (i = 0; i < *num_file; ++i)
5552 {
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005553 char_u *name = (*file)[i];
5554
5555 if (STRLEN(name) > l)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005556 {
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005557 // Check if this name was already found.
5558 hash = hash_hash(name + l);
5559 hi = hash_lookup(&found_ht, name + l, hash);
5560 if (HASHITEM_EMPTY(hi))
5561 {
5562 // Remove the path that was prepended.
5563 STRMOVE(name, name + l);
5564 ((char_u **)ga.ga_data)[ga.ga_len++] = name;
5565 hash_add_item(&found_ht, hi, name, hash);
5566 name = NULL;
5567 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005568 }
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005569 vim_free(name);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005570 }
5571 vim_free(*file);
5572 }
5573 }
5574 if (*e != NUL)
5575 ++e;
5576 }
5577 *file = ga.ga_data;
5578 *num_file = ga.ga_len;
5579
5580 vim_free(buf);
5581 vim_free(pat);
5582 if (mustfree)
5583 vim_free(path);
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005584 hash_clear(&found_ht);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005585 return OK;
5586}
5587
5588
Bram Moolenaar071d4272004-06-13 20:20:40 +00005589# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
5590/*
Bram Moolenaarb544f3c2017-02-23 19:03:28 +01005591 * Call "user_expand_func()" to invoke a user defined Vim script function and
5592 * return the result (either a string or a List).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593 */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005594 static void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005595call_user_expand_func(
Bram Moolenaarded27a12018-08-01 19:06:03 +02005596 void *(*user_expand_func)(char_u *, int, typval_T *),
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005597 expand_T *xp,
5598 int *num_file,
5599 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005600{
Bram Moolenaar673b9a32013-06-30 22:43:27 +02005601 int keep = 0;
Bram Moolenaarffa96842018-06-12 22:05:14 +02005602 typval_T args[4];
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005603 sctx_T save_current_sctx = current_sctx;
Bram Moolenaarffa96842018-06-12 22:05:14 +02005604 char_u *pat = NULL;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005605 void *ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005606
Bram Moolenaarb7515462013-06-29 12:58:33 +02005607 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0' || xp->xp_line == NULL)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005608 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005609 *num_file = 0;
5610 *file = NULL;
5611
Bram Moolenaarb7515462013-06-29 12:58:33 +02005612 if (ccline.cmdbuff != NULL)
Bram Moolenaar21669c02008-01-18 12:16:16 +00005613 {
Bram Moolenaar21669c02008-01-18 12:16:16 +00005614 keep = ccline.cmdbuff[ccline.cmdlen];
5615 ccline.cmdbuff[ccline.cmdlen] = 0;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005616 }
Bram Moolenaarb7515462013-06-29 12:58:33 +02005617
Bram Moolenaarffa96842018-06-12 22:05:14 +02005618 pat = vim_strnsave(xp->xp_pattern, xp->xp_pattern_len);
5619
5620 args[0].v_type = VAR_STRING;
5621 args[0].vval.v_string = pat;
5622 args[1].v_type = VAR_STRING;
5623 args[1].vval.v_string = xp->xp_line;
5624 args[2].v_type = VAR_NUMBER;
5625 args[2].vval.v_number = xp->xp_col;
5626 args[3].v_type = VAR_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005628 current_sctx = xp->xp_script_ctx;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005629
Bram Moolenaarded27a12018-08-01 19:06:03 +02005630 ret = user_expand_func(xp->xp_arg, 3, args);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005631
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005632 current_sctx = save_current_sctx;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005633 if (ccline.cmdbuff != NULL)
5634 ccline.cmdbuff[ccline.cmdlen] = keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005635
Bram Moolenaarffa96842018-06-12 22:05:14 +02005636 vim_free(pat);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005637 return ret;
5638}
5639
5640/*
5641 * Expand names with a function defined by the user.
5642 */
5643 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005644ExpandUserDefined(
5645 expand_T *xp,
5646 regmatch_T *regmatch,
5647 int *num_file,
5648 char_u ***file)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005649{
5650 char_u *retstr;
5651 char_u *s;
5652 char_u *e;
Bram Moolenaar71a43c02018-02-11 15:20:20 +01005653 int keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005654 garray_T ga;
Bram Moolenaar71a43c02018-02-11 15:20:20 +01005655 int skip;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005656
5657 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file);
5658 if (retstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005659 return FAIL;
5660
5661 ga_init2(&ga, (int)sizeof(char *), 3);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005662 for (s = retstr; *s != NUL; s = e)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005663 {
5664 e = vim_strchr(s, '\n');
5665 if (e == NULL)
5666 e = s + STRLEN(s);
5667 keep = *e;
Bram Moolenaar71a43c02018-02-11 15:20:20 +01005668 *e = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005669
Bram Moolenaar71a43c02018-02-11 15:20:20 +01005670 skip = xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0;
5671 *e = keep;
5672
5673 if (!skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005674 {
Bram Moolenaar71a43c02018-02-11 15:20:20 +01005675 if (ga_grow(&ga, 1) == FAIL)
5676 break;
5677 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s));
5678 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005679 }
5680
Bram Moolenaar071d4272004-06-13 20:20:40 +00005681 if (*e != NUL)
5682 ++e;
5683 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005684 vim_free(retstr);
5685 *file = ga.ga_data;
5686 *num_file = ga.ga_len;
5687 return OK;
5688}
5689
5690/*
5691 * Expand names with a list returned by a function defined by the user.
5692 */
5693 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005694ExpandUserList(
5695 expand_T *xp,
5696 int *num_file,
5697 char_u ***file)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005698{
5699 list_T *retlist;
5700 listitem_T *li;
5701 garray_T ga;
5702
5703 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file);
5704 if (retlist == NULL)
5705 return FAIL;
5706
5707 ga_init2(&ga, (int)sizeof(char *), 3);
5708 /* Loop over the items in the list. */
5709 for (li = retlist->lv_first; li != NULL; li = li->li_next)
5710 {
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005711 if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL)
5712 continue; /* Skip non-string items and empty strings */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005713
5714 if (ga_grow(&ga, 1) == FAIL)
5715 break;
5716
5717 ((char_u **)ga.ga_data)[ga.ga_len] =
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005718 vim_strsave(li->li_tv.vval.v_string);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005719 ++ga.ga_len;
5720 }
5721 list_unref(retlist);
5722
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723 *file = ga.ga_data;
5724 *num_file = ga.ga_len;
5725 return OK;
5726}
5727#endif
5728
5729/*
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005730 * Expand color scheme, compiler or filetype names.
5731 * Search from 'runtimepath':
5732 * 'runtimepath'/{dirnames}/{pat}.vim
5733 * When "flags" has DIP_START: search also from 'start' of 'packpath':
5734 * 'packpath'/pack/ * /start/ * /{dirnames}/{pat}.vim
5735 * When "flags" has DIP_OPT: search also from 'opt' of 'packpath':
5736 * 'packpath'/pack/ * /opt/ * /{dirnames}/{pat}.vim
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005737 * "dirnames" is an array with one or more directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005738 */
5739 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005740ExpandRTDir(
5741 char_u *pat,
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005742 int flags,
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005743 int *num_file,
5744 char_u ***file,
5745 char *dirnames[])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005746{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005747 char_u *s;
5748 char_u *e;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005749 char_u *match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750 garray_T ga;
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005751 int i;
5752 int pat_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005753
5754 *num_file = 0;
5755 *file = NULL;
Bram Moolenaar5cfe2d72011-07-07 15:04:52 +02005756 pat_len = (int)STRLEN(pat);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005757 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005758
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005759 for (i = 0; dirnames[i] != NULL; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760 {
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005761 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 7));
5762 if (s == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005763 {
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005764 ga_clear_strings(&ga);
5765 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005766 }
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005767 sprintf((char *)s, "%s/%s*.vim", dirnames[i], pat);
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005768 globpath(p_rtp, s, &ga, 0);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005769 vim_free(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005770 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005771
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005772 if (flags & DIP_START) {
5773 for (i = 0; dirnames[i] != NULL; ++i)
5774 {
5775 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 22));
5776 if (s == NULL)
5777 {
5778 ga_clear_strings(&ga);
5779 return FAIL;
5780 }
5781 sprintf((char *)s, "pack/*/start/*/%s/%s*.vim", dirnames[i], pat);
5782 globpath(p_pp, s, &ga, 0);
5783 vim_free(s);
5784 }
5785 }
5786
5787 if (flags & DIP_OPT) {
5788 for (i = 0; dirnames[i] != NULL; ++i)
5789 {
5790 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 20));
5791 if (s == NULL)
5792 {
5793 ga_clear_strings(&ga);
5794 return FAIL;
5795 }
5796 sprintf((char *)s, "pack/*/opt/*/%s/%s*.vim", dirnames[i], pat);
5797 globpath(p_pp, s, &ga, 0);
5798 vim_free(s);
5799 }
5800 }
5801
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005802 for (i = 0; i < ga.ga_len; ++i)
5803 {
5804 match = ((char_u **)ga.ga_data)[i];
5805 s = match;
5806 e = s + STRLEN(s);
5807 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0)
5808 {
5809 e -= 4;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005810 for (s = e; s > match; MB_PTR_BACK(match, s))
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005811 if (s < match || vim_ispathsep(*s))
5812 break;
5813 ++s;
5814 *e = NUL;
5815 mch_memmove(match, s, e - s + 1);
5816 }
5817 }
5818
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005819 if (ga.ga_len == 0)
Bram Moolenaare79abdd2012-06-29 13:44:41 +02005820 return FAIL;
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005821
5822 /* Sort and remove duplicates which can happen when specifying multiple
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005823 * directories in dirnames. */
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005824 remove_duplicates(&ga);
5825
Bram Moolenaar071d4272004-06-13 20:20:40 +00005826 *file = ga.ga_data;
5827 *num_file = ga.ga_len;
5828 return OK;
5829}
5830
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01005831/*
5832 * Expand loadplugin names:
5833 * 'packpath'/pack/ * /opt/{pat}
5834 */
5835 static int
5836ExpandPackAddDir(
5837 char_u *pat,
5838 int *num_file,
5839 char_u ***file)
5840{
5841 char_u *s;
5842 char_u *e;
5843 char_u *match;
5844 garray_T ga;
5845 int i;
5846 int pat_len;
5847
5848 *num_file = 0;
5849 *file = NULL;
5850 pat_len = (int)STRLEN(pat);
5851 ga_init2(&ga, (int)sizeof(char *), 10);
5852
5853 s = alloc((unsigned)(pat_len + 26));
5854 if (s == NULL)
5855 {
5856 ga_clear_strings(&ga);
5857 return FAIL;
5858 }
5859 sprintf((char *)s, "pack/*/opt/%s*", pat);
5860 globpath(p_pp, s, &ga, 0);
5861 vim_free(s);
5862
5863 for (i = 0; i < ga.ga_len; ++i)
5864 {
5865 match = ((char_u **)ga.ga_data)[i];
5866 s = gettail(match);
5867 e = s + STRLEN(s);
5868 mch_memmove(match, s, e - s + 1);
5869 }
5870
5871 if (ga.ga_len == 0)
5872 return FAIL;
5873
5874 /* Sort and remove duplicates which can happen when specifying multiple
5875 * directories in dirnames. */
5876 remove_duplicates(&ga);
5877
5878 *file = ga.ga_data;
5879 *num_file = ga.ga_len;
5880 return OK;
5881}
5882
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883#endif
5884
5885#if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO)
5886/*
5887 * Expand "file" for all comma-separated directories in "path".
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005888 * Adds the matches to "ga". Caller must init "ga".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889 */
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005890 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005891globpath(
5892 char_u *path,
5893 char_u *file,
5894 garray_T *ga,
5895 int expand_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896{
5897 expand_T xpc;
5898 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005899 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900 int num_p;
5901 char_u **p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902
5903 buf = alloc(MAXPATHL);
5904 if (buf == NULL)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005905 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005906
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005907 ExpandInit(&xpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005909
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910 /* Loop over all entries in {path}. */
5911 while (*path != NUL)
5912 {
5913 /* Copy one item of the path to buf[] and concatenate the file name. */
5914 copy_option_part(&path, buf, MAXPATHL, ",");
5915 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
5916 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005917# if defined(MSWIN)
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005918 /* Using the platform's path separator (\) makes vim incorrectly
5919 * treat it as an escape character, use '/' instead. */
5920 if (*buf != NUL && !after_pathsep(buf, buf + STRLEN(buf)))
5921 STRCAT(buf, "/");
5922# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923 add_pathsep(buf);
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005924# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925 STRCAT(buf, file);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005926 if (ExpandFromContext(&xpc, buf, &num_p, &p,
5927 WILD_SILENT|expand_options) != FAIL && num_p > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005929 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT|expand_options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005930
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005931 if (ga_grow(ga, num_p) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005932 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 for (i = 0; i < num_p; ++i)
5934 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005935 ((char_u **)ga->ga_data)[ga->ga_len] =
Bram Moolenaar7116aa02014-05-29 14:36:29 +02005936 vim_strnsave(p[i], (int)STRLEN(p[i]));
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005937 ++ga->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005939 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005940
Bram Moolenaar071d4272004-06-13 20:20:40 +00005941 FreeWild(num_p, p);
5942 }
5943 }
5944 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945
5946 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005947}
5948
5949#endif
5950
5951#if defined(FEAT_CMDHIST) || defined(PROTO)
5952
5953/*********************************
5954 * Command line history stuff *
5955 *********************************/
5956
5957/*
5958 * Translate a history character to the associated type number.
5959 */
5960 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005961hist_char2type(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005962{
5963 if (c == ':')
5964 return HIST_CMD;
5965 if (c == '=')
5966 return HIST_EXPR;
5967 if (c == '@')
5968 return HIST_INPUT;
5969 if (c == '>')
5970 return HIST_DEBUG;
5971 return HIST_SEARCH; /* must be '?' or '/' */
5972}
5973
5974/*
5975 * Table of history names.
5976 * These names are used in :history and various hist...() functions.
5977 * It is sufficient to give the significant prefix of a history name.
5978 */
5979
5980static char *(history_names[]) =
5981{
5982 "cmd",
5983 "search",
5984 "expr",
5985 "input",
5986 "debug",
5987 NULL
5988};
5989
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005990#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5991/*
5992 * Function given to ExpandGeneric() to obtain the possible first
5993 * arguments of the ":history command.
5994 */
5995 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005996get_history_arg(expand_T *xp UNUSED, int idx)
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005997{
5998 static char_u compl[2] = { NUL, NUL };
5999 char *short_names = ":=@>?/";
Bram Moolenaar17bd9dc2012-05-25 11:02:41 +02006000 int short_names_count = (int)STRLEN(short_names);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02006001 int history_name_count = sizeof(history_names) / sizeof(char *) - 1;
6002
6003 if (idx < short_names_count)
6004 {
6005 compl[0] = (char_u)short_names[idx];
6006 return compl;
6007 }
6008 if (idx < short_names_count + history_name_count)
6009 return (char_u *)history_names[idx - short_names_count];
6010 if (idx == short_names_count + history_name_count)
6011 return (char_u *)"all";
6012 return NULL;
6013}
6014#endif
6015
Bram Moolenaar071d4272004-06-13 20:20:40 +00006016/*
6017 * init_history() - Initialize the command line history.
6018 * Also used to re-allocate the history when the size changes.
6019 */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00006020 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006021init_history(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006022{
6023 int newlen; /* new length of history table */
6024 histentry_T *temp;
6025 int i;
6026 int j;
6027 int type;
6028
6029 /*
6030 * If size of history table changed, reallocate it
6031 */
6032 newlen = (int)p_hi;
6033 if (newlen != hislen) /* history length changed */
6034 {
6035 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */
6036 {
6037 if (newlen)
6038 {
6039 temp = (histentry_T *)lalloc(
6040 (long_u)(newlen * sizeof(histentry_T)), TRUE);
6041 if (temp == NULL) /* out of memory! */
6042 {
6043 if (type == 0) /* first one: just keep the old length */
6044 {
6045 newlen = hislen;
6046 break;
6047 }
6048 /* Already changed one table, now we can only have zero
6049 * length for all tables. */
6050 newlen = 0;
6051 type = -1;
6052 continue;
6053 }
6054 }
6055 else
6056 temp = NULL;
6057 if (newlen == 0 || temp != NULL)
6058 {
6059 if (hisidx[type] < 0) /* there are no entries yet */
6060 {
6061 for (i = 0; i < newlen; ++i)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006062 clear_hist_entry(&temp[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006063 }
6064 else if (newlen > hislen) /* array becomes bigger */
6065 {
6066 for (i = 0; i <= hisidx[type]; ++i)
6067 temp[i] = history[type][i];
6068 j = i;
6069 for ( ; i <= newlen - (hislen - hisidx[type]); ++i)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006070 clear_hist_entry(&temp[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006071 for ( ; j < hislen; ++i, ++j)
6072 temp[i] = history[type][j];
6073 }
6074 else /* array becomes smaller or 0 */
6075 {
6076 j = hisidx[type];
6077 for (i = newlen - 1; ; --i)
6078 {
6079 if (i >= 0) /* copy newest entries */
6080 temp[i] = history[type][j];
6081 else /* remove older entries */
6082 vim_free(history[type][j].hisstr);
6083 if (--j < 0)
6084 j = hislen - 1;
6085 if (j == hisidx[type])
6086 break;
6087 }
6088 hisidx[type] = newlen - 1;
6089 }
6090 vim_free(history[type]);
6091 history[type] = temp;
6092 }
6093 }
6094 hislen = newlen;
6095 }
6096}
6097
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006098 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006099clear_hist_entry(histentry_T *hisptr)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006100{
6101 hisptr->hisnum = 0;
6102 hisptr->viminfo = FALSE;
6103 hisptr->hisstr = NULL;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006104 hisptr->time_set = 0;
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006105}
6106
Bram Moolenaar071d4272004-06-13 20:20:40 +00006107/*
6108 * Check if command line 'str' is already in history.
6109 * If 'move_to_front' is TRUE, matching entry is moved to end of history.
6110 */
6111 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006112in_history(
6113 int type,
6114 char_u *str,
6115 int move_to_front, /* Move the entry to the front if it exists */
6116 int sep,
6117 int writing) /* ignore entries read from viminfo */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006118{
6119 int i;
6120 int last_i = -1;
Bram Moolenaar4c402232011-07-27 17:58:46 +02006121 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006122
6123 if (hisidx[type] < 0)
6124 return FALSE;
6125 i = hisidx[type];
6126 do
6127 {
6128 if (history[type][i].hisstr == NULL)
6129 return FALSE;
Bram Moolenaar4c402232011-07-27 17:58:46 +02006130
6131 /* For search history, check that the separator character matches as
6132 * well. */
6133 p = history[type][i].hisstr;
6134 if (STRCMP(str, p) == 0
Bram Moolenaar07219f92013-04-14 23:19:36 +02006135 && !(writing && history[type][i].viminfo)
Bram Moolenaar4c402232011-07-27 17:58:46 +02006136 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006137 {
6138 if (!move_to_front)
6139 return TRUE;
6140 last_i = i;
6141 break;
6142 }
6143 if (--i < 0)
6144 i = hislen - 1;
6145 } while (i != hisidx[type]);
6146
6147 if (last_i >= 0)
6148 {
6149 str = history[type][i].hisstr;
6150 while (i != hisidx[type])
6151 {
6152 if (++i >= hislen)
6153 i = 0;
6154 history[type][last_i] = history[type][i];
6155 last_i = i;
6156 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006157 history[type][i].hisnum = ++hisnum[type];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006158 history[type][i].viminfo = FALSE;
6159 history[type][i].hisstr = str;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006160 history[type][i].time_set = vim_time();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161 return TRUE;
6162 }
6163 return FALSE;
6164}
6165
6166/*
6167 * Convert history name (from table above) to its HIST_ equivalent.
6168 * When "name" is empty, return "cmd" history.
6169 * Returns -1 for unknown history name.
6170 */
6171 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006172get_histtype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006173{
6174 int i;
6175 int len = (int)STRLEN(name);
6176
6177 /* No argument: use current history. */
6178 if (len == 0)
6179 return hist_char2type(ccline.cmdfirstc);
6180
6181 for (i = 0; history_names[i] != NULL; ++i)
6182 if (STRNICMP(name, history_names[i], len) == 0)
6183 return i;
6184
6185 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL)
6186 return hist_char2type(name[0]);
6187
6188 return -1;
6189}
6190
6191static int last_maptick = -1; /* last seen maptick */
6192
6193/*
6194 * Add the given string to the given history. If the string is already in the
6195 * history then it is moved to the front. "histype" may be one of he HIST_
6196 * values.
6197 */
6198 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006199add_to_history(
6200 int histype,
6201 char_u *new_entry,
6202 int in_map, /* consider maptick when inside a mapping */
6203 int sep) /* separator character used (search hist) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006204{
6205 histentry_T *hisptr;
6206 int len;
6207
6208 if (hislen == 0) /* no history */
6209 return;
6210
Bram Moolenaara939e432013-11-09 05:30:26 +01006211 if (cmdmod.keeppatterns && histype == HIST_SEARCH)
6212 return;
6213
Bram Moolenaar071d4272004-06-13 20:20:40 +00006214 /*
6215 * Searches inside the same mapping overwrite each other, so that only
6216 * the last line is kept. Be careful not to remove a line that was moved
6217 * down, only lines that were added.
6218 */
6219 if (histype == HIST_SEARCH && in_map)
6220 {
Bram Moolenaar46643712016-09-09 21:42:36 +02006221 if (maptick == last_maptick && hisidx[HIST_SEARCH] >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006222 {
6223 /* Current line is from the same mapping, remove it */
6224 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];
6225 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006226 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006227 --hisnum[histype];
6228 if (--hisidx[HIST_SEARCH] < 0)
6229 hisidx[HIST_SEARCH] = hislen - 1;
6230 }
6231 last_maptick = -1;
6232 }
Bram Moolenaar07219f92013-04-14 23:19:36 +02006233 if (!in_history(histype, new_entry, TRUE, sep, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006234 {
6235 if (++hisidx[histype] == hislen)
6236 hisidx[histype] = 0;
6237 hisptr = &history[histype][hisidx[histype]];
6238 vim_free(hisptr->hisstr);
6239
6240 /* Store the separator after the NUL of the string. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006241 len = (int)STRLEN(new_entry);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006242 hisptr->hisstr = vim_strnsave(new_entry, len + 2);
6243 if (hisptr->hisstr != NULL)
6244 hisptr->hisstr[len + 1] = sep;
6245
6246 hisptr->hisnum = ++hisnum[histype];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006247 hisptr->viminfo = FALSE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006248 hisptr->time_set = vim_time();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249 if (histype == HIST_SEARCH && in_map)
6250 last_maptick = maptick;
6251 }
6252}
6253
6254#if defined(FEAT_EVAL) || defined(PROTO)
6255
6256/*
6257 * Get identifier of newest history entry.
6258 * "histype" may be one of the HIST_ values.
6259 */
6260 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006261get_history_idx(int histype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006262{
6263 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
6264 || hisidx[histype] < 0)
6265 return -1;
6266
6267 return history[histype][hisidx[histype]].hisnum;
6268}
6269
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006270/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006271 * Calculate history index from a number:
6272 * num > 0: seen as identifying number of a history entry
6273 * num < 0: relative position in history wrt newest entry
6274 * "histype" may be one of the HIST_ values.
6275 */
6276 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006277calc_hist_idx(int histype, int num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006278{
6279 int i;
6280 histentry_T *hist;
6281 int wrapped = FALSE;
6282
6283 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
6284 || (i = hisidx[histype]) < 0 || num == 0)
6285 return -1;
6286
6287 hist = history[histype];
6288 if (num > 0)
6289 {
6290 while (hist[i].hisnum > num)
6291 if (--i < 0)
6292 {
6293 if (wrapped)
6294 break;
6295 i += hislen;
6296 wrapped = TRUE;
6297 }
6298 if (hist[i].hisnum == num && hist[i].hisstr != NULL)
6299 return i;
6300 }
6301 else if (-num <= hislen)
6302 {
6303 i += num + 1;
6304 if (i < 0)
6305 i += hislen;
6306 if (hist[i].hisstr != NULL)
6307 return i;
6308 }
6309 return -1;
6310}
6311
6312/*
6313 * Get a history entry by its index.
6314 * "histype" may be one of the HIST_ values.
6315 */
6316 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006317get_history_entry(int histype, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006318{
6319 idx = calc_hist_idx(histype, idx);
6320 if (idx >= 0)
6321 return history[histype][idx].hisstr;
6322 else
6323 return (char_u *)"";
6324}
6325
6326/*
6327 * Clear all entries of a history.
6328 * "histype" may be one of the HIST_ values.
6329 */
6330 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006331clr_history(int histype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332{
6333 int i;
6334 histentry_T *hisptr;
6335
6336 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT)
6337 {
6338 hisptr = history[histype];
6339 for (i = hislen; i--;)
6340 {
6341 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006342 clear_hist_entry(hisptr);
Bram Moolenaar119d4692016-03-05 21:21:24 +01006343 hisptr++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006344 }
6345 hisidx[histype] = -1; /* mark history as cleared */
6346 hisnum[histype] = 0; /* reset identifier counter */
6347 return OK;
6348 }
6349 return FAIL;
6350}
6351
6352/*
6353 * Remove all entries matching {str} from a history.
6354 * "histype" may be one of the HIST_ values.
6355 */
6356 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006357del_history_entry(int histype, char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358{
6359 regmatch_T regmatch;
6360 histentry_T *hisptr;
6361 int idx;
6362 int i;
6363 int last;
6364 int found = FALSE;
6365
6366 regmatch.regprog = NULL;
6367 regmatch.rm_ic = FALSE; /* always match case */
6368 if (hislen != 0
6369 && histype >= 0
6370 && histype < HIST_COUNT
6371 && *str != NUL
6372 && (idx = hisidx[histype]) >= 0
6373 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING))
6374 != NULL)
6375 {
6376 i = last = idx;
6377 do
6378 {
6379 hisptr = &history[histype][i];
6380 if (hisptr->hisstr == NULL)
6381 break;
6382 if (vim_regexec(&regmatch, hisptr->hisstr, (colnr_T)0))
6383 {
6384 found = TRUE;
6385 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006386 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006387 }
6388 else
6389 {
6390 if (i != last)
6391 {
6392 history[histype][last] = *hisptr;
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006393 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006394 }
6395 if (--last < 0)
6396 last += hislen;
6397 }
6398 if (--i < 0)
6399 i += hislen;
6400 } while (i != idx);
6401 if (history[histype][idx].hisstr == NULL)
6402 hisidx[histype] = -1;
6403 }
Bram Moolenaar473de612013-06-08 18:19:48 +02006404 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006405 return found;
6406}
6407
6408/*
6409 * Remove an indexed entry from a history.
6410 * "histype" may be one of the HIST_ values.
6411 */
6412 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006413del_history_idx(int histype, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006414{
6415 int i, j;
6416
6417 i = calc_hist_idx(histype, idx);
6418 if (i < 0)
6419 return FALSE;
6420 idx = hisidx[histype];
6421 vim_free(history[histype][i].hisstr);
6422
6423 /* When deleting the last added search string in a mapping, reset
6424 * last_maptick, so that the last added search string isn't deleted again.
6425 */
6426 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx)
6427 last_maptick = -1;
6428
6429 while (i != idx)
6430 {
6431 j = (i + 1) % hislen;
6432 history[histype][i] = history[histype][j];
6433 i = j;
6434 }
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006435 clear_hist_entry(&history[histype][i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006436 if (--i < 0)
6437 i += hislen;
6438 hisidx[histype] = i;
6439 return TRUE;
6440}
6441
6442#endif /* FEAT_EVAL */
6443
6444#if defined(FEAT_CRYPT) || defined(PROTO)
6445/*
6446 * Very specific function to remove the value in ":set key=val" from the
6447 * history.
6448 */
6449 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006450remove_key_from_history(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006451{
6452 char_u *p;
6453 int i;
6454
6455 i = hisidx[HIST_CMD];
6456 if (i < 0)
6457 return;
6458 p = history[HIST_CMD][i].hisstr;
6459 if (p != NULL)
6460 for ( ; *p; ++p)
6461 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3]))
6462 {
6463 p = vim_strchr(p + 3, '=');
6464 if (p == NULL)
6465 break;
6466 ++p;
Bram Moolenaar1c465442017-03-12 20:10:05 +01006467 for (i = 0; p[i] && !VIM_ISWHITE(p[i]); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006468 if (p[i] == '\\' && p[i + 1])
6469 ++i;
Bram Moolenaar446cb832008-06-24 21:56:24 +00006470 STRMOVE(p, p + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006471 --p;
6472 }
6473}
6474#endif
6475
6476#endif /* FEAT_CMDHIST */
6477
Bram Moolenaar064154c2016-03-19 22:50:43 +01006478#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006479/*
Bram Moolenaar438d1762018-09-30 17:11:48 +02006480 * Get pointer to the command line info to use. save_ccline() may clear
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006481 * ccline and put the previous value in prev_ccline.
6482 */
6483 static struct cmdline_info *
6484get_ccline_ptr(void)
6485{
6486 if ((State & CMDLINE) == 0)
6487 return NULL;
6488 if (ccline.cmdbuff != NULL)
6489 return &ccline;
6490 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
6491 return &prev_ccline;
6492 return NULL;
6493}
Bram Moolenaar064154c2016-03-19 22:50:43 +01006494#endif
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006495
Bram Moolenaar064154c2016-03-19 22:50:43 +01006496#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006497/*
6498 * Get the current command line in allocated memory.
6499 * Only works when the command line is being edited.
6500 * Returns NULL when something is wrong.
6501 */
6502 char_u *
6503get_cmdline_str(void)
6504{
Bram Moolenaaree91c332018-09-25 22:27:35 +02006505 struct cmdline_info *p;
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006506
Bram Moolenaaree91c332018-09-25 22:27:35 +02006507 if (cmdline_star > 0)
6508 return NULL;
6509 p = get_ccline_ptr();
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006510 if (p == NULL)
6511 return NULL;
6512 return vim_strnsave(p->cmdbuff, p->cmdlen);
6513}
6514
6515/*
6516 * Get the current command line position, counted in bytes.
6517 * Zero is the first position.
6518 * Only works when the command line is being edited.
6519 * Returns -1 when something is wrong.
6520 */
6521 int
6522get_cmdline_pos(void)
6523{
6524 struct cmdline_info *p = get_ccline_ptr();
6525
6526 if (p == NULL)
6527 return -1;
6528 return p->cmdpos;
6529}
6530
6531/*
6532 * Set the command line byte position to "pos". Zero is the first position.
6533 * Only works when the command line is being edited.
6534 * Returns 1 when failed, 0 when OK.
6535 */
6536 int
6537set_cmdline_pos(
6538 int pos)
6539{
6540 struct cmdline_info *p = get_ccline_ptr();
6541
6542 if (p == NULL)
6543 return 1;
6544
6545 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
6546 * changed the command line. */
6547 if (pos < 0)
6548 new_cmdpos = 0;
6549 else
6550 new_cmdpos = pos;
6551 return 0;
6552}
6553#endif
6554
6555#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
6556/*
6557 * Get the current command-line type.
6558 * Returns ':' or '/' or '?' or '@' or '>' or '-'
6559 * Only works when the command line is being edited.
6560 * Returns NUL when something is wrong.
6561 */
6562 int
6563get_cmdline_type(void)
6564{
6565 struct cmdline_info *p = get_ccline_ptr();
6566
6567 if (p == NULL)
6568 return NUL;
6569 if (p->cmdfirstc == NUL)
Bram Moolenaar064154c2016-03-19 22:50:43 +01006570 return
6571# ifdef FEAT_EVAL
6572 (p->input_fn) ? '@' :
6573# endif
6574 '-';
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006575 return p->cmdfirstc;
6576}
6577#endif
6578
Bram Moolenaar071d4272004-06-13 20:20:40 +00006579#if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO)
6580/*
6581 * Get indices "num1,num2" that specify a range within a list (not a range of
6582 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
6583 * Returns OK if parsed successfully, otherwise FAIL.
6584 */
6585 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006586get_list_range(char_u **str, int *num1, int *num2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006587{
6588 int len;
6589 int first = FALSE;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02006590 varnumber_T num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006591
6592 *str = skipwhite(*str);
6593 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
6594 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006595 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006596 *str += len;
6597 *num1 = (int)num;
6598 first = TRUE;
6599 }
6600 *str = skipwhite(*str);
6601 if (**str == ',') /* parse "to" part of range */
6602 {
6603 *str = skipwhite(*str + 1);
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006604 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006605 if (len > 0)
6606 {
6607 *num2 = (int)num;
6608 *str = skipwhite(*str + len);
6609 }
6610 else if (!first) /* no number given at all */
6611 return FAIL;
6612 }
6613 else if (first) /* only one number given */
6614 *num2 = *num1;
6615 return OK;
6616}
6617#endif
6618
6619#if defined(FEAT_CMDHIST) || defined(PROTO)
6620/*
6621 * :history command - print a history
6622 */
6623 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006624ex_history(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006625{
6626 histentry_T *hist;
6627 int histype1 = HIST_CMD;
6628 int histype2 = HIST_CMD;
6629 int hisidx1 = 1;
6630 int hisidx2 = -1;
6631 int idx;
6632 int i, j, k;
6633 char_u *end;
6634 char_u *arg = eap->arg;
6635
6636 if (hislen == 0)
6637 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01006638 msg(_("'history' option is zero"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006639 return;
6640 }
6641
6642 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ','))
6643 {
6644 end = arg;
6645 while (ASCII_ISALPHA(*end)
6646 || vim_strchr((char_u *)":=@>/?", *end) != NULL)
6647 end++;
6648 i = *end;
6649 *end = NUL;
6650 histype1 = get_histtype(arg);
6651 if (histype1 == -1)
6652 {
Bram Moolenaarb9c1e962009-04-22 11:52:33 +00006653 if (STRNICMP(arg, "all", STRLEN(arg)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006654 {
6655 histype1 = 0;
6656 histype2 = HIST_COUNT-1;
6657 }
6658 else
6659 {
6660 *end = i;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006661 emsg(_(e_trailing));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006662 return;
6663 }
6664 }
6665 else
6666 histype2 = histype1;
6667 *end = i;
6668 }
6669 else
6670 end = arg;
6671 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL)
6672 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006673 emsg(_(e_trailing));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006674 return;
6675 }
6676
6677 for (; !got_int && histype1 <= histype2; ++histype1)
6678 {
6679 STRCPY(IObuff, "\n # ");
6680 STRCAT(STRCAT(IObuff, history_names[histype1]), " history");
Bram Moolenaar32526b32019-01-19 17:43:09 +01006681 msg_puts_title((char *)IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006682 idx = hisidx[histype1];
6683 hist = history[histype1];
6684 j = hisidx1;
6685 k = hisidx2;
6686 if (j < 0)
6687 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum;
6688 if (k < 0)
6689 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum;
6690 if (idx >= 0 && j <= k)
6691 for (i = idx + 1; !got_int; ++i)
6692 {
6693 if (i == hislen)
6694 i = 0;
6695 if (hist[i].hisstr != NULL
6696 && hist[i].hisnum >= j && hist[i].hisnum <= k)
6697 {
6698 msg_putchar('\n');
6699 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ',
6700 hist[i].hisnum);
6701 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10)
6702 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff),
Bram Moolenaar38f5f952012-01-26 13:01:59 +01006703 (int)Columns - 10, IOSIZE - (int)STRLEN(IObuff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006704 else
6705 STRCAT(IObuff, hist[i].hisstr);
6706 msg_outtrans(IObuff);
6707 out_flush();
6708 }
6709 if (i == idx)
6710 break;
6711 }
6712 }
6713}
6714#endif
6715
6716#if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006717/*
6718 * Buffers for history read from a viminfo file. Only valid while reading.
6719 */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006720static histentry_T *viminfo_history[HIST_COUNT] =
6721 {NULL, NULL, NULL, NULL, NULL};
6722static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0, 0};
6723static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006724static int viminfo_add_at_front = FALSE;
6725
Bram Moolenaar071d4272004-06-13 20:20:40 +00006726/*
6727 * Translate a history type number to the associated character.
6728 */
6729 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006730hist_type2char(
6731 int type,
6732 int use_question) /* use '?' instead of '/' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006733{
6734 if (type == HIST_CMD)
6735 return ':';
6736 if (type == HIST_SEARCH)
6737 {
6738 if (use_question)
6739 return '?';
6740 else
6741 return '/';
6742 }
6743 if (type == HIST_EXPR)
6744 return '=';
6745 return '@';
6746}
6747
6748/*
6749 * Prepare for reading the history from the viminfo file.
6750 * This allocates history arrays to store the read history lines.
6751 */
6752 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006753prepare_viminfo_history(int asklen, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006754{
6755 int i;
6756 int num;
6757 int type;
6758 int len;
6759
6760 init_history();
Bram Moolenaar07219f92013-04-14 23:19:36 +02006761 viminfo_add_at_front = (asklen != 0 && !writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006762 if (asklen > hislen)
6763 asklen = hislen;
6764
6765 for (type = 0; type < HIST_COUNT; ++type)
6766 {
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006767 /* Count the number of empty spaces in the history list. Entries read
6768 * from viminfo previously are also considered empty. If there are
6769 * more spaces available than we request, then fill them up. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006770 for (i = 0, num = 0; i < hislen; i++)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006771 if (history[type][i].hisstr == NULL || history[type][i].viminfo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006772 num++;
6773 len = asklen;
6774 if (num > len)
6775 len = num;
6776 if (len <= 0)
6777 viminfo_history[type] = NULL;
6778 else
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006779 viminfo_history[type] = (histentry_T *)lalloc(
6780 (long_u)(len * sizeof(histentry_T)), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006781 if (viminfo_history[type] == NULL)
6782 len = 0;
6783 viminfo_hislen[type] = len;
6784 viminfo_hisidx[type] = 0;
6785 }
6786}
6787
6788/*
6789 * Accept a line from the viminfo, store it in the history array when it's
6790 * new.
6791 */
6792 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006793read_viminfo_history(vir_T *virp, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006794{
6795 int type;
6796 long_u len;
6797 char_u *val;
6798 char_u *p;
6799
6800 type = hist_char2type(virp->vir_line[0]);
6801 if (viminfo_hisidx[type] < viminfo_hislen[type])
6802 {
6803 val = viminfo_readstring(virp, 1, TRUE);
6804 if (val != NULL && *val != NUL)
6805 {
Bram Moolenaard87fbc22012-02-04 22:44:32 +01006806 int sep = (*val == ' ' ? NUL : *val);
6807
Bram Moolenaar071d4272004-06-13 20:20:40 +00006808 if (!in_history(type, val + (type == HIST_SEARCH),
Bram Moolenaar07219f92013-04-14 23:19:36 +02006809 viminfo_add_at_front, sep, writing))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006810 {
6811 /* Need to re-allocate to append the separator byte. */
6812 len = STRLEN(val);
6813 p = lalloc(len + 2, TRUE);
6814 if (p != NULL)
6815 {
6816 if (type == HIST_SEARCH)
6817 {
6818 /* Search entry: Move the separator from the first
6819 * column to after the NUL. */
6820 mch_memmove(p, val + 1, (size_t)len);
Bram Moolenaard87fbc22012-02-04 22:44:32 +01006821 p[len] = sep;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006822 }
6823 else
6824 {
6825 /* Not a search entry: No separator in the viminfo
6826 * file, add a NUL separator. */
6827 mch_memmove(p, val, (size_t)len + 1);
6828 p[len + 1] = NUL;
6829 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006830 viminfo_history[type][viminfo_hisidx[type]].hisstr = p;
6831 viminfo_history[type][viminfo_hisidx[type]].time_set = 0;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006832 viminfo_history[type][viminfo_hisidx[type]].viminfo = TRUE;
6833 viminfo_history[type][viminfo_hisidx[type]].hisnum = 0;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006834 viminfo_hisidx[type]++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006835 }
6836 }
6837 }
6838 vim_free(val);
6839 }
6840 return viminfo_readline(virp);
6841}
6842
Bram Moolenaar07219f92013-04-14 23:19:36 +02006843/*
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006844 * Accept a new style history line from the viminfo, store it in the history
6845 * array when it's new.
6846 */
6847 void
6848handle_viminfo_history(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006849 garray_T *values,
6850 int writing)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006851{
6852 int type;
6853 long_u len;
6854 char_u *val;
6855 char_u *p;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006856 bval_T *vp = (bval_T *)values->ga_data;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006857
6858 /* Check the format:
6859 * |{bartype},{histtype},{timestamp},{separator},"text" */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006860 if (values->ga_len < 4
6861 || vp[0].bv_type != BVAL_NR
6862 || vp[1].bv_type != BVAL_NR
6863 || (vp[2].bv_type != BVAL_NR && vp[2].bv_type != BVAL_EMPTY)
6864 || vp[3].bv_type != BVAL_STRING)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006865 return;
6866
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006867 type = vp[0].bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006868 if (type >= HIST_COUNT)
6869 return;
6870 if (viminfo_hisidx[type] < viminfo_hislen[type])
6871 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006872 val = vp[3].bv_string;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006873 if (val != NULL && *val != NUL)
6874 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006875 int sep = type == HIST_SEARCH && vp[2].bv_type == BVAL_NR
6876 ? vp[2].bv_nr : NUL;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006877 int idx;
6878 int overwrite = FALSE;
6879
6880 if (!in_history(type, val, viminfo_add_at_front, sep, writing))
6881 {
6882 /* If lines were written by an older Vim we need to avoid
6883 * getting duplicates. See if the entry already exists. */
6884 for (idx = 0; idx < viminfo_hisidx[type]; ++idx)
6885 {
6886 p = viminfo_history[type][idx].hisstr;
6887 if (STRCMP(val, p) == 0
6888 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1]))
6889 {
6890 overwrite = TRUE;
6891 break;
6892 }
6893 }
6894
6895 if (!overwrite)
6896 {
6897 /* Need to re-allocate to append the separator byte. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006898 len = vp[3].bv_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006899 p = lalloc(len + 2, TRUE);
6900 }
Bram Moolenaar72e697d2016-06-13 22:48:01 +02006901 else
6902 len = 0; /* for picky compilers */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006903 if (p != NULL)
6904 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006905 viminfo_history[type][idx].time_set = vp[1].bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006906 if (!overwrite)
6907 {
6908 mch_memmove(p, val, (size_t)len + 1);
6909 /* Put the separator after the NUL. */
6910 p[len + 1] = sep;
6911 viminfo_history[type][idx].hisstr = p;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006912 viminfo_history[type][idx].hisnum = 0;
6913 viminfo_history[type][idx].viminfo = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006914 viminfo_hisidx[type]++;
6915 }
6916 }
6917 }
6918 }
6919 }
6920}
6921
6922/*
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006923 * Concatenate history lines from viminfo after the lines typed in this Vim.
Bram Moolenaar07219f92013-04-14 23:19:36 +02006924 */
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006925 static void
6926concat_history(int type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006927{
6928 int idx;
6929 int i;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006930
6931 idx = hisidx[type] + viminfo_hisidx[type];
6932 if (idx >= hislen)
6933 idx -= hislen;
6934 else if (idx < 0)
6935 idx = hislen - 1;
6936 if (viminfo_add_at_front)
6937 hisidx[type] = idx;
6938 else
6939 {
6940 if (hisidx[type] == -1)
6941 hisidx[type] = hislen - 1;
6942 do
6943 {
6944 if (history[type][idx].hisstr != NULL
6945 || history[type][idx].viminfo)
6946 break;
6947 if (++idx == hislen)
6948 idx = 0;
6949 } while (idx != hisidx[type]);
6950 if (idx != hisidx[type] && --idx < 0)
6951 idx = hislen - 1;
6952 }
6953 for (i = 0; i < viminfo_hisidx[type]; i++)
6954 {
6955 vim_free(history[type][idx].hisstr);
6956 history[type][idx].hisstr = viminfo_history[type][i].hisstr;
6957 history[type][idx].viminfo = TRUE;
6958 history[type][idx].time_set = viminfo_history[type][i].time_set;
6959 if (--idx < 0)
6960 idx = hislen - 1;
6961 }
6962 idx += 1;
6963 idx %= hislen;
6964 for (i = 0; i < viminfo_hisidx[type]; i++)
6965 {
6966 history[type][idx++].hisnum = ++hisnum[type];
6967 idx %= hislen;
6968 }
6969}
6970
6971#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6972 static int
6973#ifdef __BORLANDC__
6974_RTLENTRYF
6975#endif
6976sort_hist(const void *s1, const void *s2)
6977{
6978 histentry_T *p1 = *(histentry_T **)s1;
6979 histentry_T *p2 = *(histentry_T **)s2;
6980
6981 if (p1->time_set < p2->time_set) return -1;
6982 if (p1->time_set > p2->time_set) return 1;
6983 return 0;
6984}
6985#endif
6986
6987/*
6988 * Merge history lines from viminfo and lines typed in this Vim based on the
6989 * timestamp;
6990 */
6991 static void
6992merge_history(int type)
6993{
6994 int max_len;
6995 histentry_T **tot_hist;
6996 histentry_T *new_hist;
6997 int i;
6998 int len;
6999
7000 /* Make one long list with all entries. */
7001 max_len = hislen + viminfo_hisidx[type];
7002 tot_hist = (histentry_T **)alloc(max_len * (int)sizeof(histentry_T *));
7003 new_hist = (histentry_T *)alloc(hislen * (int)sizeof(histentry_T));
7004 if (tot_hist == NULL || new_hist == NULL)
7005 {
7006 vim_free(tot_hist);
7007 vim_free(new_hist);
7008 return;
7009 }
7010 for (i = 0; i < viminfo_hisidx[type]; i++)
7011 tot_hist[i] = &viminfo_history[type][i];
7012 len = i;
7013 for (i = 0; i < hislen; i++)
7014 if (history[type][i].hisstr != NULL)
7015 tot_hist[len++] = &history[type][i];
7016
7017 /* Sort the list on timestamp. */
7018 qsort((void *)tot_hist, (size_t)len, sizeof(histentry_T *), sort_hist);
7019
7020 /* Keep the newest ones. */
7021 for (i = 0; i < hislen; i++)
7022 {
7023 if (i < len)
7024 {
7025 new_hist[i] = *tot_hist[i];
7026 tot_hist[i]->hisstr = NULL;
7027 if (new_hist[i].hisnum == 0)
7028 new_hist[i].hisnum = ++hisnum[type];
7029 }
7030 else
7031 clear_hist_entry(&new_hist[i]);
7032 }
Bram Moolenaara890f5e2016-06-12 23:03:19 +02007033 hisidx[type] = (i < len ? i : len) - 1;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02007034
7035 /* Free what is not kept. */
7036 for (i = 0; i < viminfo_hisidx[type]; i++)
7037 vim_free(viminfo_history[type][i].hisstr);
7038 for (i = 0; i < hislen; i++)
7039 vim_free(history[type][i].hisstr);
7040 vim_free(history[type]);
7041 history[type] = new_hist;
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02007042 vim_free(tot_hist);
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02007043}
7044
7045/*
7046 * Finish reading history lines from viminfo. Not used when writing viminfo.
7047 */
7048 void
7049finish_viminfo_history(vir_T *virp)
7050{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007051 int type;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02007052 int merge = virp->vir_version >= VIMINFO_VERSION_WITH_HISTORY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007053
7054 for (type = 0; type < HIST_COUNT; ++type)
7055 {
7056 if (history[type] == NULL)
Bram Moolenaar6f852a52013-04-14 16:26:15 +02007057 continue;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02007058
7059 if (merge)
7060 merge_history(type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007061 else
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02007062 concat_history(type);
7063
Bram Moolenaard23a8232018-02-10 18:45:26 +01007064 VIM_CLEAR(viminfo_history[type]);
Bram Moolenaarf687cf32013-04-24 15:39:11 +02007065 viminfo_hisidx[type] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007066 }
7067}
7068
Bram Moolenaarff1806f2013-06-15 16:31:47 +02007069/*
7070 * Write history to viminfo file in "fp".
7071 * When "merge" is TRUE merge history lines with a previously read viminfo
7072 * file, data is in viminfo_history[].
7073 * When "merge" is FALSE just write all history lines. Used for ":wviminfo!".
7074 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007075 void
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02007076write_viminfo_history(FILE *fp, int merge)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007077{
7078 int i;
7079 int type;
7080 int num_saved;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02007081 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007082
7083 init_history();
7084 if (hislen == 0)
7085 return;
7086 for (type = 0; type < HIST_COUNT; ++type)
7087 {
7088 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE));
7089 if (num_saved == 0)
7090 continue;
7091 if (num_saved < 0) /* Use default */
7092 num_saved = hislen;
7093 fprintf(fp, _("\n# %s History (newest to oldest):\n"),
7094 type == HIST_CMD ? _("Command Line") :
7095 type == HIST_SEARCH ? _("Search String") :
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02007096 type == HIST_EXPR ? _("Expression") :
7097 type == HIST_INPUT ? _("Input Line") :
7098 _("Debug Line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007099 if (num_saved > hislen)
7100 num_saved = hislen;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02007101
7102 /*
7103 * Merge typed and viminfo history:
7104 * round 1: history of typed commands.
7105 * round 2: history from recently read viminfo.
7106 */
7107 for (round = 1; round <= 2; ++round)
7108 {
Bram Moolenaara8565fe2013-04-15 16:14:22 +02007109 if (round == 1)
7110 /* start at newest entry, somewhere in the list */
7111 i = hisidx[type];
7112 else if (viminfo_hisidx[type] > 0)
7113 /* start at newest entry, first in the list */
7114 i = 0;
7115 else
7116 /* empty list */
7117 i = -1;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02007118 if (i >= 0)
7119 while (num_saved > 0
7120 && !(round == 2 && i >= viminfo_hisidx[type]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007121 {
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02007122 char_u *p;
7123 time_t timestamp;
7124 int c = NUL;
7125
7126 if (round == 1)
7127 {
7128 p = history[type][i].hisstr;
7129 timestamp = history[type][i].time_set;
7130 }
7131 else
7132 {
7133 p = viminfo_history[type] == NULL ? NULL
7134 : viminfo_history[type][i].hisstr;
7135 timestamp = viminfo_history[type] == NULL ? 0
7136 : viminfo_history[type][i].time_set;
7137 }
7138
Bram Moolenaarff1806f2013-06-15 16:31:47 +02007139 if (p != NULL && (round == 2
7140 || !merge
7141 || !history[type][i].viminfo))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007142 {
Bram Moolenaar6f852a52013-04-14 16:26:15 +02007143 --num_saved;
7144 fputc(hist_type2char(type, TRUE), fp);
7145 /* For the search history: put the separator in the
7146 * second column; use a space if there isn't one. */
7147 if (type == HIST_SEARCH)
7148 {
7149 c = p[STRLEN(p) + 1];
7150 putc(c == NUL ? ' ' : c, fp);
7151 }
7152 viminfo_writestring(fp, p);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02007153
7154 {
7155 char cbuf[NUMBUFLEN];
7156
7157 /* New style history with a bar line. Format:
7158 * |{bartype},{histtype},{timestamp},{separator},"text" */
7159 if (c == NUL)
7160 cbuf[0] = NUL;
7161 else
7162 sprintf(cbuf, "%d", c);
7163 fprintf(fp, "|%d,%d,%ld,%s,", BARTYPE_HISTORY,
7164 type, (long)timestamp, cbuf);
7165 barline_writestring(fp, p, LSIZE - 20);
7166 putc('\n', fp);
7167 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007168 }
Bram Moolenaar6f852a52013-04-14 16:26:15 +02007169 if (round == 1)
7170 {
7171 /* Decrement index, loop around and stop when back at
7172 * the start. */
7173 if (--i < 0)
7174 i = hislen - 1;
7175 if (i == hisidx[type])
7176 break;
7177 }
7178 else
7179 {
7180 /* Increment index. Stop at the end in the while. */
7181 ++i;
7182 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007183 }
Bram Moolenaar6f852a52013-04-14 16:26:15 +02007184 }
Bram Moolenaar07219f92013-04-14 23:19:36 +02007185 for (i = 0; i < viminfo_hisidx[type]; ++i)
Bram Moolenaarf687cf32013-04-24 15:39:11 +02007186 if (viminfo_history[type] != NULL)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02007187 vim_free(viminfo_history[type][i].hisstr);
Bram Moolenaard23a8232018-02-10 18:45:26 +01007188 VIM_CLEAR(viminfo_history[type]);
Bram Moolenaarb70a4732013-04-15 22:22:57 +02007189 viminfo_hisidx[type] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007190 }
7191}
7192#endif /* FEAT_VIMINFO */
7193
7194#if defined(FEAT_FKMAP) || defined(PROTO)
7195/*
7196 * Write a character at the current cursor+offset position.
7197 * It is directly written into the command buffer block.
7198 */
7199 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007200cmd_pchar(int c, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007201{
7202 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
7203 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007204 emsg(_("E198: cmd_pchar beyond the command length"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007205 return;
7206 }
7207 ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c;
7208 ccline.cmdbuff[ccline.cmdlen] = NUL;
7209}
7210
7211 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007212cmd_gchar(int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007213{
7214 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
7215 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007216 // emsg(_("cmd_gchar beyond the command length"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007217 return NUL;
7218 }
7219 return (int)ccline.cmdbuff[ccline.cmdpos + offset];
7220}
7221#endif
7222
7223#if defined(FEAT_CMDWIN) || defined(PROTO)
7224/*
7225 * Open a window on the current command line and history. Allow editing in
7226 * the window. Returns when the window is closed.
7227 * Returns:
7228 * CR if the command is to be executed
7229 * Ctrl_C if it is to be abandoned
7230 * K_IGNORE if editing continues
7231 */
7232 static int
Bram Moolenaar3bab9392017-04-07 15:42:25 +02007233open_cmdwin(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007234{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007235 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007236 win_T *old_curwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007237 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007238 win_T *wp;
7239 int i;
7240 linenr_T lnum;
7241 int histtype;
7242 garray_T winsizes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007243 int save_restart_edit = restart_edit;
7244 int save_State = State;
7245 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00007246#ifdef FEAT_RIGHTLEFT
7247 int save_cmdmsg_rl = cmdmsg_rl;
7248#endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02007249#ifdef FEAT_FOLDING
7250 int save_KeyTyped;
7251#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007252
7253 /* Can't do this recursively. Can't do it when typing a password. */
7254 if (cmdwin_type != 0
7255# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
7256 || cmdline_star > 0
7257# endif
7258 )
7259 {
7260 beep_flush();
7261 return K_IGNORE;
7262 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007263 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007264
7265 /* Save current window sizes. */
7266 win_size_save(&winsizes);
7267
Bram Moolenaar071d4272004-06-13 20:20:40 +00007268 /* Don't execute autocommands while creating the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007269 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007270
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00007271 /* don't use a new tab page */
7272 cmdmod.tab = 0;
Bram Moolenaar3bab9392017-04-07 15:42:25 +02007273 cmdmod.noswapfile = 1;
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00007274
Bram Moolenaar071d4272004-06-13 20:20:40 +00007275 /* Create a window for the command-line buffer. */
7276 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
7277 {
7278 beep_flush();
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007279 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007280 return K_IGNORE;
7281 }
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00007282 cmdwin_type = get_cmdline_type();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007283
7284 /* Create the command-line buffer empty. */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00007285 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL);
Bram Moolenaar446cb832008-06-24 21:56:24 +00007286 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007287 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007288 curbuf->b_p_ma = TRUE;
Bram Moolenaar876f6d72009-04-29 10:05:51 +00007289#ifdef FEAT_FOLDING
7290 curwin->w_p_fen = FALSE;
7291#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007292# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00007293 curwin->w_p_rl = cmdmsg_rl;
7294 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007295# endif
Bram Moolenaar3368ea22010-09-21 16:56:35 +02007296 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007297
Bram Moolenaar071d4272004-06-13 20:20:40 +00007298 /* Do execute autocommands for setting the filetype (load syntax). */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007299 unblock_autocmds();
Bram Moolenaar18141832017-06-25 21:17:25 +02007300 /* But don't allow switching to another buffer. */
7301 ++curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007302
Bram Moolenaar46152342005-09-07 21:18:43 +00007303 /* Showing the prompt may have set need_wait_return, reset it. */
7304 need_wait_return = FALSE;
7305
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00007306 histtype = hist_char2type(cmdwin_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007307 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
7308 {
7309 if (p_wc == TAB)
7310 {
7311 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
7312 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
7313 }
7314 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
7315 }
Bram Moolenaar18141832017-06-25 21:17:25 +02007316 --curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007317
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00007318 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
7319 * sets 'textwidth' to 78). */
7320 curbuf->b_p_tw = 0;
7321
Bram Moolenaar071d4272004-06-13 20:20:40 +00007322 /* Fill the buffer with the history. */
7323 init_history();
7324 if (hislen > 0)
7325 {
7326 i = hisidx[histtype];
7327 if (i >= 0)
7328 {
7329 lnum = 0;
7330 do
7331 {
7332 if (++i == hislen)
7333 i = 0;
7334 if (history[histtype][i].hisstr != NULL)
7335 ml_append(lnum++, history[histtype][i].hisstr,
7336 (colnr_T)0, FALSE);
7337 }
7338 while (i != hisidx[histtype]);
7339 }
7340 }
7341
7342 /* Replace the empty last line with the current command-line and put the
7343 * cursor there. */
7344 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
7345 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
7346 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00007347 changed_line_abv_curs();
7348 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00007349 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007350
Bram Moolenaar071d4272004-06-13 20:20:40 +00007351 /* No Ex mode here! */
7352 exmode_active = 0;
7353
7354 State = NORMAL;
7355# ifdef FEAT_MOUSE
7356 setmouse();
7357# endif
7358
Bram Moolenaar071d4272004-06-13 20:20:40 +00007359 /* Trigger CmdwinEnter autocommands. */
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02007360 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINENTER);
Bram Moolenaar5495cc92006-08-16 14:23:04 +00007361 if (restart_edit != 0) /* autocmd with ":startinsert" */
7362 stuffcharReadbuff(K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007363
7364 i = RedrawingDisabled;
7365 RedrawingDisabled = 0;
7366
7367 /*
7368 * Call the main loop until <CR> or CTRL-C is typed.
7369 */
7370 cmdwin_result = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00007371 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007372
7373 RedrawingDisabled = i;
7374
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007375# ifdef FEAT_FOLDING
Bram Moolenaar42f06f92014-08-17 17:24:07 +02007376 save_KeyTyped = KeyTyped;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007377# endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02007378
Bram Moolenaar071d4272004-06-13 20:20:40 +00007379 /* Trigger CmdwinLeave autocommands. */
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02007380 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINLEAVE);
Bram Moolenaar42f06f92014-08-17 17:24:07 +02007381
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007382# ifdef FEAT_FOLDING
Bram Moolenaar42f06f92014-08-17 17:24:07 +02007383 /* Restore KeyTyped in case it is modified by autocommands */
7384 KeyTyped = save_KeyTyped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007385# endif
7386
Bram Moolenaar071d4272004-06-13 20:20:40 +00007387 cmdwin_type = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007388 exmode_active = save_exmode;
7389
Bram Moolenaarf9821062008-06-20 16:31:07 +00007390 /* Safety check: The old window or buffer was deleted: It's a bug when
Bram Moolenaar071d4272004-06-13 20:20:40 +00007391 * this happens! */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007392 if (!win_valid(old_curwin) || !bufref_valid(&old_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007393 {
7394 cmdwin_result = Ctrl_C;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007395 emsg(_("E199: Active window or buffer deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007396 }
7397 else
7398 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007399# if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007400 /* autocmds may abort script processing */
7401 if (aborting() && cmdwin_result != K_IGNORE)
7402 cmdwin_result = Ctrl_C;
7403# endif
7404 /* Set the new command line from the cmdline buffer. */
7405 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00007406 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007407 {
Bram Moolenaar46152342005-09-07 21:18:43 +00007408 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
7409
7410 if (histtype == HIST_CMD)
7411 {
7412 /* Execute the command directly. */
7413 ccline.cmdbuff = vim_strsave((char_u *)p);
7414 cmdwin_result = CAR;
7415 }
7416 else
7417 {
7418 /* First need to cancel what we were doing. */
7419 ccline.cmdbuff = NULL;
7420 stuffcharReadbuff(':');
7421 stuffReadbuff((char_u *)p);
7422 stuffcharReadbuff(CAR);
7423 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007424 }
7425 else if (cmdwin_result == K_XF2) /* :qa typed */
7426 {
7427 ccline.cmdbuff = vim_strsave((char_u *)"qa");
7428 cmdwin_result = CAR;
7429 }
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02007430 else if (cmdwin_result == Ctrl_C)
7431 {
7432 /* :q or :close, don't execute any command
7433 * and don't modify the cmd window. */
7434 ccline.cmdbuff = NULL;
7435 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007436 else
7437 ccline.cmdbuff = vim_strsave(ml_get_curline());
7438 if (ccline.cmdbuff == NULL)
Bram Moolenaar5a15b6a2017-07-11 15:11:57 +02007439 {
7440 ccline.cmdbuff = vim_strsave((char_u *)"");
7441 ccline.cmdlen = 0;
7442 ccline.cmdbufflen = 1;
7443 ccline.cmdpos = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007444 cmdwin_result = Ctrl_C;
Bram Moolenaar5a15b6a2017-07-11 15:11:57 +02007445 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007446 else
7447 {
7448 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
7449 ccline.cmdbufflen = ccline.cmdlen + 1;
7450 ccline.cmdpos = curwin->w_cursor.col;
7451 if (ccline.cmdpos > ccline.cmdlen)
7452 ccline.cmdpos = ccline.cmdlen;
7453 if (cmdwin_result == K_IGNORE)
7454 {
7455 set_cmdspos_cursor();
7456 redrawcmd();
7457 }
7458 }
7459
Bram Moolenaar071d4272004-06-13 20:20:40 +00007460 /* Don't execute autocommands while deleting the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007461 block_autocmds();
Bram Moolenaarfa67fbe2015-06-25 18:20:36 +02007462# ifdef FEAT_CONCEAL
7463 /* Avoid command-line window first character being concealed. */
7464 curwin->w_p_cole = 0;
7465# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007466 wp = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007467 set_bufref(&bufref, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007468 win_goto(old_curwin);
7469 win_close(wp, TRUE);
Bram Moolenaar8006d692010-03-02 17:23:21 +01007470
7471 /* win_close() may have already wiped the buffer when 'bh' is
7472 * set to 'wipe' */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007473 if (bufref_valid(&bufref))
7474 close_buffer(NULL, bufref.br_buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007475
7476 /* Restore window sizes. */
7477 win_size_restore(&winsizes);
7478
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007479 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007480 }
7481
7482 ga_clear(&winsizes);
7483 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00007484# ifdef FEAT_RIGHTLEFT
7485 cmdmsg_rl = save_cmdmsg_rl;
7486# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007487
7488 State = save_State;
7489# ifdef FEAT_MOUSE
7490 setmouse();
7491# endif
7492
7493 return cmdwin_result;
7494}
7495#endif /* FEAT_CMDWIN */
7496
7497/*
7498 * Used for commands that either take a simple command string argument, or:
7499 * cmd << endmarker
7500 * {script}
7501 * endmarker
7502 * Returns a pointer to allocated memory with {script} or NULL.
7503 */
7504 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007505script_get(exarg_T *eap, char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007506{
7507 char_u *theline;
7508 char *end_pattern = NULL;
7509 char dot[] = ".";
7510 garray_T ga;
7511
7512 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
7513 return NULL;
7514
7515 ga_init2(&ga, 1, 0x400);
7516
7517 if (cmd[2] != NUL)
7518 end_pattern = (char *)skipwhite(cmd + 2);
7519 else
7520 end_pattern = dot;
7521
7522 for (;;)
7523 {
7524 theline = eap->getline(
7525#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00007526 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00007527#endif
7528 NUL, eap->cookie, 0);
7529
7530 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
Bram Moolenaarbe555e72008-08-06 12:19:26 +00007531 {
7532 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007533 break;
Bram Moolenaarbe555e72008-08-06 12:19:26 +00007534 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007535
7536 ga_concat(&ga, theline);
7537 ga_append(&ga, '\n');
7538 vim_free(theline);
7539 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00007540 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007541
7542 return (char_u *)ga.ga_data;
7543}