blob: 303786cc501a75329e264fe9552366ad77e5a726 [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
Bram Moolenaar438d1762018-09-30 17:11:48 +020084static char_u *getcmdline_int(int firstc, long count, int indent, int init_ccline);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010085static int cmdline_charsize(int idx);
86static void set_cmdspos(void);
87static void set_cmdspos_cursor(void);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010088static void correct_cmdspos(int idx, int cells);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010089static void alloc_cmdbuff(int len);
90static int realloc_cmdbuff(int len);
91static void draw_cmdline(int start, int len);
92static void save_cmdline(struct cmdline_info *ccp);
93static void restore_cmdline(struct cmdline_info *ccp);
94static int cmdline_paste(int regname, int literally, int remcr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000095#ifdef FEAT_WILDMENU
Bram Moolenaard25c16e2016-01-29 22:13:30 +010096static void cmdline_del(int from);
Bram Moolenaar071d4272004-06-13 20:20:40 +000097#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010098static void redrawcmdprompt(void);
99static void cursorcmd(void);
100static int ccheck_abbr(int);
101static int nextwild(expand_T *xp, int type, int options, int escape);
102static void escape_fname(char_u **pp);
103static int showmatches(expand_T *xp, int wildmenu);
104static void set_expand_context(expand_T *xp);
105static int ExpandFromContext(expand_T *xp, char_u *, int *, char_u ***, int);
106static int expand_showtail(expand_T *xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107#ifdef FEAT_CMDL_COMPL
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100108static int expand_shellcmd(char_u *filepat, int *num_file, char_u ***file, int flagsarg);
Bram Moolenaar52f9c192016-03-13 13:24:45 +0100109static int ExpandRTDir(char_u *pat, int flags, int *num_file, char_u ***file, char *dirname[]);
Bram Moolenaar35ca0e72016-03-05 17:41:49 +0100110static int ExpandPackAddDir(char_u *pat, int *num_file, char_u ***file);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +0200111# ifdef FEAT_CMDHIST
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100112static char_u *get_history_arg(expand_T *xp, int idx);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +0200113# endif
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200114# if defined(FEAT_EVAL)
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100115static int ExpandUserDefined(expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file);
116static int ExpandUserList(expand_T *xp, int *num_file, char_u ***file);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117# endif
118#endif
Bram Moolenaar25a6df92013-04-06 14:29:00 +0200119#ifdef FEAT_CMDHIST
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100120static void clear_hist_entry(histentry_T *hisptr);
Bram Moolenaar25a6df92013-04-06 14:29:00 +0200121#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122
123#ifdef FEAT_CMDWIN
Bram Moolenaar3bab9392017-04-07 15:42:25 +0200124static int open_cmdwin(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125#endif
126
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200127#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaareae1b912019-05-09 15:12:55 +0200128static int sort_func_compare(const void *s1, const void *s2);
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200129#endif
130
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200131
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200132 static void
133trigger_cmd_autocmd(int typechar, int evt)
134{
135 char_u typestr[2];
136
137 typestr[0] = typechar;
138 typestr[1] = NUL;
139 apply_autocmds(evt, typestr, typestr, FALSE, curbuf);
140}
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200141
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142/*
Bram Moolenaarf8e8c062017-10-22 14:44:17 +0200143 * Abandon the command line.
144 */
145 static void
146abandon_cmdline(void)
147{
Bram Moolenaard23a8232018-02-10 18:45:26 +0100148 VIM_CLEAR(ccline.cmdbuff);
Bram Moolenaarf8e8c062017-10-22 14:44:17 +0200149 if (msg_scrolled == 0)
150 compute_cmdrow();
Bram Moolenaar32526b32019-01-19 17:43:09 +0100151 msg("");
Bram Moolenaarf8e8c062017-10-22 14:44:17 +0200152 redraw_cmdline = TRUE;
153}
154
Bram Moolenaaree219b02017-12-17 14:55:01 +0100155#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaarf8e8c062017-10-22 14:44:17 +0200156/*
Bram Moolenaar66216052017-12-16 16:33:44 +0100157 * Guess that the pattern matches everything. Only finds specific cases, such
158 * as a trailing \|, which can happen while typing a pattern.
159 */
160 static int
161empty_pattern(char_u *p)
162{
Bram Moolenaar200ea8f2018-01-02 15:37:46 +0100163 size_t n = STRLEN(p);
Bram Moolenaar66216052017-12-16 16:33:44 +0100164
165 /* remove trailing \v and the like */
166 while (n >= 2 && p[n - 2] == '\\'
167 && vim_strchr((char_u *)"mMvVcCZ", p[n - 1]) != NULL)
168 n -= 2;
169 return n == 0 || (n >= 2 && p[n - 2] == '\\' && p[n - 1] == '|');
170}
171
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200172// Struct to store the viewstate during 'incsearch' highlighting.
Bram Moolenaar9b25af32018-04-28 13:56:09 +0200173typedef struct {
174 colnr_T vs_curswant;
175 colnr_T vs_leftcol;
176 linenr_T vs_topline;
177# ifdef FEAT_DIFF
178 int vs_topfill;
179# endif
180 linenr_T vs_botline;
181 linenr_T vs_empty_rows;
182} viewstate_T;
183
184 static void
185save_viewstate(viewstate_T *vs)
186{
187 vs->vs_curswant = curwin->w_curswant;
188 vs->vs_leftcol = curwin->w_leftcol;
189 vs->vs_topline = curwin->w_topline;
190# ifdef FEAT_DIFF
191 vs->vs_topfill = curwin->w_topfill;
192# endif
193 vs->vs_botline = curwin->w_botline;
194 vs->vs_empty_rows = curwin->w_empty_rows;
195}
196
197 static void
198restore_viewstate(viewstate_T *vs)
199{
200 curwin->w_curswant = vs->vs_curswant;
201 curwin->w_leftcol = vs->vs_leftcol;
202 curwin->w_topline = vs->vs_topline;
203# ifdef FEAT_DIFF
204 curwin->w_topfill = vs->vs_topfill;
205# endif
206 curwin->w_botline = vs->vs_botline;
207 curwin->w_empty_rows = vs->vs_empty_rows;
208}
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200209
210// Struct to store the state of 'incsearch' highlighting.
211typedef struct {
212 pos_T search_start; // where 'incsearch' starts searching
213 pos_T save_cursor;
214 viewstate_T init_viewstate;
215 viewstate_T old_viewstate;
216 pos_T match_start;
217 pos_T match_end;
218 int did_incsearch;
219 int incsearch_postponed;
Bram Moolenaar167ae422018-08-14 21:32:21 +0200220 int magic_save;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200221} incsearch_state_T;
222
223 static void
224init_incsearch_state(incsearch_state_T *is_state)
225{
226 is_state->match_start = curwin->w_cursor;
227 is_state->did_incsearch = FALSE;
228 is_state->incsearch_postponed = FALSE;
Bram Moolenaar167ae422018-08-14 21:32:21 +0200229 is_state->magic_save = p_magic;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200230 CLEAR_POS(&is_state->match_end);
231 is_state->save_cursor = curwin->w_cursor; // may be restored later
232 is_state->search_start = curwin->w_cursor;
233 save_viewstate(&is_state->init_viewstate);
234 save_viewstate(&is_state->old_viewstate);
235}
236
237/*
238 * First move cursor to end of match, then to the start. This
239 * moves the whole match onto the screen when 'nowrap' is set.
240 */
241 static void
242set_search_match(pos_T *t)
243{
244 t->lnum += search_match_lines;
245 t->col = search_match_endcol;
246 if (t->lnum > curbuf->b_ml.ml_line_count)
247 {
248 t->lnum = curbuf->b_ml.ml_line_count;
249 coladvance((colnr_T)MAXCOL);
250 }
251}
252
253/*
254 * Return TRUE when 'incsearch' highlighting is to be done.
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200255 * Sets search_first_line and search_last_line to the address range.
Bram Moolenaar198cb662018-09-06 21:44:17 +0200256 * May change the last search pattern.
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200257 */
258 static int
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200259do_incsearch_highlighting(int firstc, incsearch_state_T *is_state,
260 int *skiplen, int *patlen)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200261{
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200262 char_u *cmd;
263 cmdmod_T save_cmdmod = cmdmod;
264 char_u *p;
265 int delim_optional = FALSE;
266 int delim;
267 char_u *end;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100268 char *dummy;
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200269 exarg_T ea;
270 pos_T save_cursor;
Bram Moolenaar8b0d5ce2018-08-22 23:05:44 +0200271 int use_last_pat;
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200272
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200273 *skiplen = 0;
274 *patlen = ccline.cmdlen;
275
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200276 if (!p_is || cmd_silent)
277 return FALSE;
278
279 // by default search all lines
280 search_first_line = 0;
281 search_last_line = MAXLNUM;
282
283 if (firstc == '/' || firstc == '?')
284 return TRUE;
285 if (firstc != ':')
286 return FALSE;
287
288 vim_memset(&ea, 0, sizeof(ea));
289 ea.line1 = 1;
290 ea.line2 = 1;
291 ea.cmd = ccline.cmdbuff;
292 ea.addr_type = ADDR_LINES;
293
294 parse_command_modifiers(&ea, &dummy, TRUE);
295 cmdmod = save_cmdmod;
296
297 cmd = skip_range(ea.cmd, NULL);
298 if (vim_strchr((char_u *)"sgvl", *cmd) == NULL)
299 return FALSE;
300
301 // Skip over "substitute" to find the pattern separator.
302 for (p = cmd; ASCII_ISALPHA(*p); ++p)
303 ;
304 if (*skipwhite(p) == NUL)
305 return FALSE;
306
307 if (STRNCMP(cmd, "substitute", p - cmd) == 0
308 || STRNCMP(cmd, "smagic", p - cmd) == 0
309 || STRNCMP(cmd, "snomagic", MAX(p - cmd, 3)) == 0
310 || STRNCMP(cmd, "vglobal", p - cmd) == 0)
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200311 {
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200312 if (*cmd == 's' && cmd[1] == 'm')
313 p_magic = TRUE;
314 else if (*cmd == 's' && cmd[1] == 'n')
315 p_magic = FALSE;
316 }
317 else if (STRNCMP(cmd, "sort", MAX(p - cmd, 3)) == 0)
318 {
319 // skip over flags
320 while (ASCII_ISALPHA(*(p = skipwhite(p))))
321 ++p;
322 if (*p == NUL)
323 return FALSE;
324 }
325 else if (STRNCMP(cmd, "vimgrep", MAX(p - cmd, 3)) == 0
326 || STRNCMP(cmd, "vimgrepadd", MAX(p - cmd, 8)) == 0
327 || STRNCMP(cmd, "lvimgrep", MAX(p - cmd, 2)) == 0
328 || STRNCMP(cmd, "lvimgrepadd", MAX(p - cmd, 9)) == 0
329 || STRNCMP(cmd, "global", p - cmd) == 0)
330 {
331 // skip over "!"
332 if (*p == '!')
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200333 {
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200334 p++;
335 if (*skipwhite(p) == NUL)
336 return FALSE;
337 }
338 if (*cmd != 'g')
339 delim_optional = TRUE;
340 }
341 else
342 return FALSE;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200343
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200344 p = skipwhite(p);
345 delim = (delim_optional && vim_isIDc(*p)) ? ' ' : *p++;
346 end = skip_regexp(p, delim, p_magic, NULL);
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +0200347
Bram Moolenaar8b0d5ce2018-08-22 23:05:44 +0200348 use_last_pat = end == p && *end == delim;
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +0200349
Bram Moolenaar8b0d5ce2018-08-22 23:05:44 +0200350 if (end == p && !use_last_pat)
351 return FALSE;
352
353 // Don't do 'hlsearch' highlighting if the pattern matches everything.
354 if (!use_last_pat)
355 {
356 char c = *end;
357 int empty;
358
359 *end = NUL;
360 empty = empty_pattern(p);
361 *end = c;
362 if (empty)
363 return FALSE;
364 }
365
366 // found a non-empty pattern or //
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200367 *skiplen = (int)(p - ccline.cmdbuff);
368 *patlen = (int)(end - p);
Bram Moolenaar264cf5c2018-08-18 21:05:31 +0200369
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200370 // parse the address range
371 save_cursor = curwin->w_cursor;
372 curwin->w_cursor = is_state->search_start;
Bram Moolenaar50eb16c2018-09-15 15:42:40 +0200373 parse_cmd_address(&ea, &dummy, TRUE);
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200374 if (ea.addr_count > 0)
375 {
376 // Allow for reverse match.
377 if (ea.line2 < ea.line1)
378 {
379 search_first_line = ea.line2;
380 search_last_line = ea.line1;
381 }
382 else
383 {
384 search_first_line = ea.line1;
385 search_last_line = ea.line2;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200386 }
387 }
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200388 else if (cmd[0] == 's' && cmd[1] != 'o')
389 {
390 // :s defaults to the current line
391 search_first_line = curwin->w_cursor.lnum;
392 search_last_line = curwin->w_cursor.lnum;
393 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200394
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200395 curwin->w_cursor = save_cursor;
396 return TRUE;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200397}
398
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200399 static void
400finish_incsearch_highlighting(
401 int gotesc,
402 incsearch_state_T *is_state,
403 int call_update_screen)
404{
405 if (is_state->did_incsearch)
406 {
407 is_state->did_incsearch = FALSE;
408 if (gotesc)
409 curwin->w_cursor = is_state->save_cursor;
410 else
411 {
412 if (!EQUAL_POS(is_state->save_cursor, is_state->search_start))
413 {
414 // put the '" mark at the original position
415 curwin->w_cursor = is_state->save_cursor;
416 setpcmark();
417 }
418 curwin->w_cursor = is_state->search_start;
419 }
420 restore_viewstate(&is_state->old_viewstate);
421 highlight_match = FALSE;
Bram Moolenaarf13daa42018-08-31 22:09:54 +0200422
423 // by default search all lines
424 search_first_line = 0;
425 search_last_line = MAXLNUM;
426
427 p_magic = is_state->magic_save;
428
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200429 validate_cursor(); /* needed for TAB */
Bram Moolenaar65985ac2018-09-16 17:08:04 +0200430 redraw_all_later(SOME_VALID);
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200431 if (call_update_screen)
432 update_screen(SOME_VALID);
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200433 }
434}
435
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200436/*
437 * Do 'incsearch' highlighting if desired.
438 */
439 static void
440may_do_incsearch_highlighting(
441 int firstc,
442 long count,
443 incsearch_state_T *is_state)
444{
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200445 int skiplen, patlen;
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200446 int found; // do_search() result
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200447 pos_T end_pos;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200448#ifdef FEAT_RELTIME
449 proftime_T tm;
450#endif
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200451 int next_char;
452 int use_last_pat;
Bram Moolenaar693f7dc2019-06-21 02:30:38 +0200453 int did_do_incsearch = is_state->did_incsearch;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200454
Bram Moolenaar198cb662018-09-06 21:44:17 +0200455 // Parsing range may already set the last search pattern.
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100456 // NOTE: must call restore_last_search_pattern() before returning!
Bram Moolenaar198cb662018-09-06 21:44:17 +0200457 save_last_search_pattern();
458
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200459 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen))
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200460 {
Bram Moolenaar198cb662018-09-06 21:44:17 +0200461 restore_last_search_pattern();
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200462 finish_incsearch_highlighting(FALSE, is_state, TRUE);
Bram Moolenaar693f7dc2019-06-21 02:30:38 +0200463 if (did_do_incsearch && vpeekc() == NUL)
464 // may have skipped a redraw, do it now
465 redrawcmd();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200466 return;
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200467 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200468
469 // If there is a character waiting, search and redraw later.
470 if (char_avail())
471 {
Bram Moolenaar198cb662018-09-06 21:44:17 +0200472 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200473 is_state->incsearch_postponed = TRUE;
474 return;
475 }
476 is_state->incsearch_postponed = FALSE;
477
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200478 if (search_first_line == 0)
479 // start at the original cursor position
480 curwin->w_cursor = is_state->search_start;
Bram Moolenaar1c299432018-10-28 14:36:09 +0100481 else if (search_first_line > curbuf->b_ml.ml_line_count)
482 {
483 // start after the last line
484 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
485 curwin->w_cursor.col = MAXCOL;
486 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200487 else
488 {
489 // start at the first line in the range
490 curwin->w_cursor.lnum = search_first_line;
491 curwin->w_cursor.col = 0;
492 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200493
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200494 // Use the previous pattern for ":s//".
495 next_char = ccline.cmdbuff[skiplen + patlen];
496 use_last_pat = patlen == 0 && skiplen > 0
497 && ccline.cmdbuff[skiplen - 1] == next_char;
498
499 // If there is no pattern, don't do anything.
500 if (patlen == 0 && !use_last_pat)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200501 {
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200502 found = 0;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200503 set_no_hlsearch(TRUE); // turn off previous highlight
504 redraw_all_later(SOME_VALID);
505 }
506 else
507 {
508 int search_flags = SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK;
509
510 cursor_off(); // so the user knows we're busy
511 out_flush();
512 ++emsg_off; // so it doesn't beep if bad expr
513#ifdef FEAT_RELTIME
514 // Set the time limit to half a second.
515 profile_setlimit(500L, &tm);
516#endif
517 if (!p_hls)
518 search_flags += SEARCH_KEEP;
Bram Moolenaar976b8472018-08-12 15:49:47 +0200519 if (search_first_line != 0)
520 search_flags += SEARCH_START;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200521 ccline.cmdbuff[skiplen + patlen] = NUL;
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200522 found = do_search(NULL, firstc == ':' ? '/' : firstc,
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200523 ccline.cmdbuff + skiplen, count, search_flags,
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200524#ifdef FEAT_RELTIME
525 &tm, NULL
526#else
527 NULL, NULL
528#endif
529 );
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200530 ccline.cmdbuff[skiplen + patlen] = next_char;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200531 --emsg_off;
532
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200533 if (curwin->w_cursor.lnum < search_first_line
534 || curwin->w_cursor.lnum > search_last_line)
Bram Moolenaar2f6a3462018-08-14 18:16:52 +0200535 {
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200536 // match outside of address range
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200537 found = 0;
Bram Moolenaar2f6a3462018-08-14 18:16:52 +0200538 curwin->w_cursor = is_state->search_start;
539 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200540
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200541 // if interrupted while searching, behave like it failed
542 if (got_int)
543 {
544 (void)vpeekc(); // remove <C-C> from input stream
545 got_int = FALSE; // don't abandon the command line
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200546 found = 0;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200547 }
548 else if (char_avail())
549 // cancelled searching because a char was typed
550 is_state->incsearch_postponed = TRUE;
551 }
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200552 if (found != 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200553 highlight_match = TRUE; // highlight position
554 else
555 highlight_match = FALSE; // remove highlight
556
557 // First restore the old curwin values, so the screen is positioned in the
558 // same way as the actual search command.
559 restore_viewstate(&is_state->old_viewstate);
560 changed_cline_bef_curs();
561 update_topline();
562
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200563 if (found != 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200564 {
565 pos_T save_pos = curwin->w_cursor;
566
567 is_state->match_start = curwin->w_cursor;
568 set_search_match(&curwin->w_cursor);
569 validate_cursor();
570 end_pos = curwin->w_cursor;
571 is_state->match_end = end_pos;
572 curwin->w_cursor = save_pos;
573 }
574 else
575 end_pos = curwin->w_cursor; // shutup gcc 4
576
Bram Moolenaar4edfe2d2018-08-23 20:55:45 +0200577 // Disable 'hlsearch' highlighting if the pattern matches everything.
578 // Avoids a flash when typing "foo\|".
579 if (!use_last_pat)
580 {
581 next_char = ccline.cmdbuff[skiplen + patlen];
582 ccline.cmdbuff[skiplen + patlen] = NUL;
Bram Moolenaar65985ac2018-09-16 17:08:04 +0200583 if (empty_pattern(ccline.cmdbuff) && !no_hlsearch)
584 {
585 redraw_all_later(SOME_VALID);
Bram Moolenaar4edfe2d2018-08-23 20:55:45 +0200586 set_no_hlsearch(TRUE);
Bram Moolenaar65985ac2018-09-16 17:08:04 +0200587 }
Bram Moolenaar4edfe2d2018-08-23 20:55:45 +0200588 ccline.cmdbuff[skiplen + patlen] = next_char;
589 }
590
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200591 validate_cursor();
592 // May redraw the status line to show the cursor position.
593 if (p_ru && curwin->w_status_height > 0)
594 curwin->w_redr_status = TRUE;
595
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200596 update_screen(SOME_VALID);
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200597 restore_last_search_pattern();
598
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200599 // Leave it at the end to make CTRL-R CTRL-W work. But not when beyond the
600 // end of the pattern, e.g. for ":s/pat/".
601 if (ccline.cmdbuff[skiplen + patlen] != NUL)
602 curwin->w_cursor = is_state->search_start;
603 else if (found != 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200604 curwin->w_cursor = end_pos;
605
606 msg_starthere();
607 redrawcmdline();
608 is_state->did_incsearch = TRUE;
609}
610
611/*
612 * May adjust 'incsearch' highlighting for typing CTRL-G and CTRL-T, go to next
613 * or previous match.
614 * Returns FAIL when jumping to cmdline_not_changed;
615 */
616 static int
617may_adjust_incsearch_highlighting(
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200618 int firstc,
619 long count,
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200620 incsearch_state_T *is_state,
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200621 int c)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200622{
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200623 int skiplen, patlen;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200624 pos_T t;
625 char_u *pat;
626 int search_flags = SEARCH_NOOF;
627 int i;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200628 int save;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200629
Bram Moolenaar198cb662018-09-06 21:44:17 +0200630 // Parsing range may already set the last search pattern.
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100631 // NOTE: must call restore_last_search_pattern() before returning!
Bram Moolenaar198cb662018-09-06 21:44:17 +0200632 save_last_search_pattern();
633
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200634 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen))
Bram Moolenaar198cb662018-09-06 21:44:17 +0200635 {
636 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200637 return OK;
Bram Moolenaar198cb662018-09-06 21:44:17 +0200638 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200639 if (patlen == 0 && ccline.cmdbuff[skiplen] == NUL)
Bram Moolenaar198cb662018-09-06 21:44:17 +0200640 {
641 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200642 return FAIL;
Bram Moolenaar198cb662018-09-06 21:44:17 +0200643 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200644
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200645 if (firstc == ccline.cmdbuff[skiplen])
Bram Moolenaaref73a282018-08-11 19:02:22 +0200646 {
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200647 pat = last_search_pattern();
Bram Moolenaaref73a282018-08-11 19:02:22 +0200648 skiplen = 0;
Bram Moolenaard7cc1632018-08-14 20:18:26 +0200649 patlen = (int)STRLEN(pat);
Bram Moolenaaref73a282018-08-11 19:02:22 +0200650 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200651 else
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200652 pat = ccline.cmdbuff + skiplen;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200653
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200654 cursor_off();
655 out_flush();
656 if (c == Ctrl_G)
657 {
658 t = is_state->match_end;
659 if (LT_POS(is_state->match_start, is_state->match_end))
660 // Start searching at the end of the match not at the beginning of
661 // the next column.
662 (void)decl(&t);
663 search_flags += SEARCH_COL;
664 }
665 else
666 t = is_state->match_start;
667 if (!p_hls)
668 search_flags += SEARCH_KEEP;
669 ++emsg_off;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200670 save = pat[patlen];
671 pat[patlen] = NUL;
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100672 i = searchit(curwin, curbuf, &t, NULL,
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200673 c == Ctrl_G ? FORWARD : BACKWARD,
674 pat, count, search_flags,
675 RE_SEARCH, 0, NULL, NULL);
676 --emsg_off;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200677 pat[patlen] = save;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200678 if (i)
679 {
680 is_state->search_start = is_state->match_start;
681 is_state->match_end = t;
682 is_state->match_start = t;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200683 if (c == Ctrl_T && firstc != '?')
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200684 {
685 // Move just before the current match, so that when nv_search
686 // finishes the cursor will be put back on the match.
687 is_state->search_start = t;
688 (void)decl(&is_state->search_start);
689 }
690 else if (c == Ctrl_G && firstc == '?')
691 {
692 // Move just after the current match, so that when nv_search
693 // finishes the cursor will be put back on the match.
694 is_state->search_start = t;
695 (void)incl(&is_state->search_start);
696 }
697 if (LT_POS(t, is_state->search_start) && c == Ctrl_G)
698 {
699 // wrap around
700 is_state->search_start = t;
701 if (firstc == '?')
702 (void)incl(&is_state->search_start);
703 else
704 (void)decl(&is_state->search_start);
705 }
706
707 set_search_match(&is_state->match_end);
708 curwin->w_cursor = is_state->match_start;
709 changed_cline_bef_curs();
710 update_topline();
711 validate_cursor();
712 highlight_match = TRUE;
713 save_viewstate(&is_state->old_viewstate);
714 update_screen(NOT_VALID);
715 redrawcmdline();
716 }
717 else
718 vim_beep(BO_ERROR);
719 restore_last_search_pattern();
720 return FAIL;
721}
722
723/*
724 * When CTRL-L typed: add character from the match to the pattern.
725 * May set "*c" to the added character.
726 * Return OK when jumping to cmdline_not_changed.
727 */
728 static int
729may_add_char_to_search(int firstc, int *c, incsearch_state_T *is_state)
730{
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200731 int skiplen, patlen;
732
Bram Moolenaar198cb662018-09-06 21:44:17 +0200733 // Parsing range may already set the last search pattern.
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100734 // NOTE: must call restore_last_search_pattern() before returning!
Bram Moolenaar198cb662018-09-06 21:44:17 +0200735 save_last_search_pattern();
736
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200737 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen))
Bram Moolenaar198cb662018-09-06 21:44:17 +0200738 {
739 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200740 return FAIL;
Bram Moolenaar198cb662018-09-06 21:44:17 +0200741 }
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100742 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200743
744 // Add a character from under the cursor for 'incsearch'.
745 if (is_state->did_incsearch)
746 {
747 curwin->w_cursor = is_state->match_end;
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200748 *c = gchar_cursor();
749 if (*c != NUL)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200750 {
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200751 // If 'ignorecase' and 'smartcase' are set and the
752 // command line has no uppercase characters, convert
753 // the character to lowercase.
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200754 if (p_ic && p_scs && !pat_has_uppercase(ccline.cmdbuff + skiplen))
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200755 *c = MB_TOLOWER(*c);
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200756 if (*c == firstc || vim_strchr((char_u *)(
757 p_magic ? "\\~^$.*[" : "\\^$"), *c) != NULL)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200758 {
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200759 // put a backslash before special characters
760 stuffcharReadbuff(*c);
761 *c = '\\';
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200762 }
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200763 // add any composing characters
764 if (mb_char2len(*c) != mb_ptr2len(ml_get_cursor()))
765 {
766 int save_c = *c;
767
768 while (mb_char2len(*c) != mb_ptr2len(ml_get_cursor()))
769 {
770 curwin->w_cursor.col += mb_char2len(*c);
771 *c = gchar_cursor();
772 stuffcharReadbuff(*c);
773 }
774 *c = save_c;
775 }
776 return FAIL;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200777 }
778 }
779 return OK;
780}
Bram Moolenaar9b25af32018-04-28 13:56:09 +0200781#endif
782
Bram Moolenaar693f7dc2019-06-21 02:30:38 +0200783#ifdef FEAT_ARABIC
784/*
785 * Return TRUE if the command line has an Arabic character at or after "start"
786 * for "len" bytes.
787 */
788 static int
789cmdline_has_arabic(int start, int len)
790{
791 int j;
792 int mb_l;
793 int u8c;
794 char_u *p;
795 int u8cc[MAX_MCO];
796
797 if (!enc_utf8)
798 return FALSE;
799
800 for (j = start; j < start + len; j += mb_l)
801 {
802 p = ccline.cmdbuff + j;
803 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
804 mb_l = utfc_ptr2len_len(p, start + len - j);
805 if (ARABIC_CHAR(u8c))
806 return TRUE;
807 }
808 return FALSE;
809}
810#endif
811
Bram Moolenaard3dc0622018-09-30 17:45:30 +0200812 void
813cmdline_init(void)
814{
815 vim_memset(&ccline, 0, sizeof(struct cmdline_info));
816}
817
Bram Moolenaar66216052017-12-16 16:33:44 +0100818/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 * getcmdline() - accept a command line starting with firstc.
820 *
821 * firstc == ':' get ":" command line.
822 * firstc == '/' or '?' get search pattern
823 * firstc == '=' get expression
824 * firstc == '@' get text for input() function
825 * firstc == '>' get text for debug mode
826 * firstc == NUL get text for :insert command
827 * firstc == -1 like NUL, and break on CTRL-C
828 *
829 * The line is collected in ccline.cmdbuff, which is reallocated to fit the
830 * command line.
831 *
832 * Careful: getcmdline() can be called recursively!
833 *
834 * Return pointer to allocated string if there is a commandline, NULL
835 * otherwise.
836 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100838getcmdline(
839 int firstc,
Bram Moolenaar438d1762018-09-30 17:11:48 +0200840 long count, // only used for incremental search
Bram Moolenaare96a2492019-06-25 04:12:16 +0200841 int indent, // indent for inside conditionals
842 int do_concat UNUSED)
Bram Moolenaar438d1762018-09-30 17:11:48 +0200843{
844 return getcmdline_int(firstc, count, indent, TRUE);
845}
846
847 static char_u *
848getcmdline_int(
849 int firstc,
850 long count UNUSED, // only used for incremental search
851 int indent, // indent for inside conditionals
852 int init_ccline) // clear ccline first
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853{
854 int c;
855 int i;
856 int j;
857 int gotesc = FALSE; /* TRUE when <ESC> just typed */
858 int do_abbr; /* when TRUE check for abbr. */
859#ifdef FEAT_CMDHIST
860 char_u *lookfor = NULL; /* string to match */
861 int hiscnt; /* current history line in use */
862 int histype; /* history type to be used */
863#endif
864#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200865 incsearch_state_T is_state;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866#endif
867 int did_wild_list = FALSE; /* did wild_list() recently */
868 int wim_index = 0; /* index in wim_flags[] */
869 int res;
870 int save_msg_scroll = msg_scroll;
871 int save_State = State; /* remember State when called */
872 int some_key_typed = FALSE; /* one of the keys was typed */
873#ifdef FEAT_MOUSE
874 /* mouse drag and release events are ignored, unless they are
875 * preceded with a mouse down event */
876 int ignore_drag_release = TRUE;
877#endif
878#ifdef FEAT_EVAL
879 int break_ctrl_c = FALSE;
880#endif
881 expand_T xpc;
882 long *b_im_ptr = NULL;
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000883 struct cmdline_info save_ccline;
Bram Moolenaar438d1762018-09-30 17:11:48 +0200884 int did_save_ccline = FALSE;
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200885 int cmdline_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886
Bram Moolenaar438d1762018-09-30 17:11:48 +0200887 if (ccline.cmdbuff != NULL)
888 {
889 // Being called recursively. Since ccline is global, we need to save
890 // the current buffer and restore it when returning.
891 save_cmdline(&save_ccline);
892 did_save_ccline = TRUE;
893 }
894 if (init_ccline)
895 vim_memset(&ccline, 0, sizeof(struct cmdline_info));
896
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897#ifdef FEAT_EVAL
898 if (firstc == -1)
899 {
900 firstc = NUL;
901 break_ctrl_c = TRUE;
902 }
903#endif
904#ifdef FEAT_RIGHTLEFT
905 /* start without Hebrew mapping for a command line */
906 if (firstc == ':' || firstc == '=' || firstc == '>')
907 cmd_hkmap = 0;
908#endif
909
910 ccline.overstrike = FALSE; /* always start in insert mode */
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200911
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200913 init_incsearch_state(&is_state);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914#endif
915
916 /*
917 * set some variables for redrawcmd()
918 */
919 ccline.cmdfirstc = (firstc == '@' ? 0 : firstc);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000920 ccline.cmdindent = (firstc > 0 ? indent : 0);
921
922 /* alloc initial ccline.cmdbuff */
923 alloc_cmdbuff(exmode_active ? 250 : indent + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 if (ccline.cmdbuff == NULL)
Bram Moolenaar438d1762018-09-30 17:11:48 +0200925 goto theend; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 ccline.cmdlen = ccline.cmdpos = 0;
927 ccline.cmdbuff[0] = NUL;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +0100928 sb_text_start_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000930 /* autoindent for :insert and :append */
931 if (firstc <= 0)
932 {
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200933 vim_memset(ccline.cmdbuff, ' ', indent);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000934 ccline.cmdbuff[indent] = NUL;
935 ccline.cmdpos = indent;
936 ccline.cmdspos = indent;
937 ccline.cmdlen = indent;
938 }
939
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 ExpandInit(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000941 ccline.xpc = &xpc;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942
943#ifdef FEAT_RIGHTLEFT
944 if (curwin->w_p_rl && *curwin->w_p_rlc == 's'
945 && (firstc == '/' || firstc == '?'))
946 cmdmsg_rl = TRUE;
947 else
948 cmdmsg_rl = FALSE;
949#endif
950
951 redir_off = TRUE; /* don't redirect the typed command */
952 if (!cmd_silent)
953 {
954 i = msg_scrolled;
955 msg_scrolled = 0; /* avoid wait_return message */
956 gotocmdline(TRUE);
957 msg_scrolled += i;
958 redrawcmdprompt(); /* draw prompt or indent */
959 set_cmdspos();
960 }
961 xpc.xp_context = EXPAND_NOTHING;
962 xpc.xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000963#ifndef BACKSLASH_IN_FILENAME
964 xpc.xp_shell = FALSE;
965#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000967#if defined(FEAT_EVAL)
968 if (ccline.input_fn)
969 {
970 xpc.xp_context = ccline.xp_context;
971 xpc.xp_pattern = ccline.cmdbuff;
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200972# if defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000973 xpc.xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +0000974# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000975 }
976#endif
977
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978 /*
979 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when
980 * doing ":@0" when register 0 doesn't contain a CR.
981 */
982 msg_scroll = FALSE;
983
984 State = CMDLINE;
985
986 if (firstc == '/' || firstc == '?' || firstc == '@')
987 {
988 /* Use ":lmap" mappings for search pattern and input(). */
989 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT)
990 b_im_ptr = &curbuf->b_p_iminsert;
991 else
992 b_im_ptr = &curbuf->b_p_imsearch;
993 if (*b_im_ptr == B_IMODE_LMAP)
994 State |= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100995#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 im_set_active(*b_im_ptr == B_IMODE_IM);
997#endif
998 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100999#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000 else if (p_imcmdline)
1001 im_set_active(TRUE);
1002#endif
1003
1004#ifdef FEAT_MOUSE
1005 setmouse();
1006#endif
1007#ifdef CURSOR_SHAPE
1008 ui_cursor_shape(); /* may show different cursor shape */
1009#endif
1010
Bram Moolenaarf4d11452005-12-02 00:46:37 +00001011 /* When inside an autocommand for writing "exiting" may be set and
1012 * terminal mode set to cooked. Need to set raw mode here then. */
1013 settmode(TMODE_RAW);
1014
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02001015 /* Trigger CmdlineEnter autocommands. */
1016 cmdline_type = firstc == NUL ? '-' : firstc;
1017 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINEENTER);
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02001018
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019#ifdef FEAT_CMDHIST
1020 init_history();
1021 hiscnt = hislen; /* set hiscnt to impossible history value */
1022 histype = hist_char2type(firstc);
1023#endif
1024
1025#ifdef FEAT_DIGRAPHS
Bram Moolenaar3c65e312009-04-29 16:47:23 +00001026 do_digraph(-1); /* init digraph typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027#endif
1028
Bram Moolenaar15a35c42014-06-25 12:26:46 +02001029 /* If something above caused an error, reset the flags, we do want to type
1030 * and execute commands. Display may be messed up a bit. */
1031 if (did_emsg)
1032 redrawcmd();
1033 did_emsg = FALSE;
1034 got_int = FALSE;
1035
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 /*
1037 * Collect the command string, handling editing keys.
1038 */
1039 for (;;)
1040 {
Bram Moolenaar29b2d262006-09-10 19:07:28 +00001041 redir_off = TRUE; /* Don't redirect the typed command.
1042 Repeated, because a ":redir" inside
1043 completion may switch it on. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044#ifdef USE_ON_FLY_SCROLL
1045 dont_scroll = FALSE; /* allow scrolling here */
1046#endif
1047 quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */
1048
Bram Moolenaar72532d32018-04-07 19:09:09 +02001049 did_emsg = FALSE; /* There can't really be a reason why an error
1050 that occurs while typing a command should
1051 cause the command not to be executed. */
1052
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053 cursorcmd(); /* set the cursor on the right spot */
Bram Moolenaar30405d32008-01-02 20:55:27 +00001054
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +01001055 /* Get a character. Ignore K_IGNORE and K_NOP, they should not do
1056 * anything, such as stop completion. */
Bram Moolenaar30405d32008-01-02 20:55:27 +00001057 do
Bram Moolenaar30405d32008-01-02 20:55:27 +00001058 c = safe_vgetc();
Bram Moolenaarabab0b02019-03-30 18:47:01 +01001059 while (c == K_IGNORE || c == K_NOP);
Bram Moolenaar30405d32008-01-02 20:55:27 +00001060
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061 if (KeyTyped)
1062 {
1063 some_key_typed = TRUE;
1064#ifdef FEAT_RIGHTLEFT
1065 if (cmd_hkmap)
1066 c = hkmap(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 if (cmdmsg_rl && !KeyStuffed)
1068 {
1069 /* Invert horizontal movements and operations. Only when
1070 * typed by the user directly, not when the result of a
1071 * mapping. */
1072 switch (c)
1073 {
1074 case K_RIGHT: c = K_LEFT; break;
1075 case K_S_RIGHT: c = K_S_LEFT; break;
1076 case K_C_RIGHT: c = K_C_LEFT; break;
1077 case K_LEFT: c = K_RIGHT; break;
1078 case K_S_LEFT: c = K_S_RIGHT; break;
1079 case K_C_LEFT: c = K_C_RIGHT; break;
1080 }
1081 }
1082#endif
1083 }
1084
1085 /*
1086 * Ignore got_int when CTRL-C was typed here.
1087 * Don't ignore it in :global, we really need to break then, e.g., for
1088 * ":g/pat/normal /pat" (without the <CR>).
1089 * Don't ignore it for the input() function.
1090 */
1091 if ((c == Ctrl_C
1092#ifdef UNIX
1093 || c == intr_char
1094#endif
1095 )
1096#if defined(FEAT_EVAL) || defined(FEAT_CRYPT)
1097 && firstc != '@'
1098#endif
1099#ifdef FEAT_EVAL
1100 && !break_ctrl_c
1101#endif
1102 && !global_busy)
1103 got_int = FALSE;
1104
1105#ifdef FEAT_CMDHIST
1106 /* free old command line when finished moving around in the history
1107 * list */
1108 if (lookfor != NULL
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001109 && c != K_S_DOWN && c != K_S_UP
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001110 && c != K_DOWN && c != K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111 && c != K_PAGEDOWN && c != K_PAGEUP
1112 && c != K_KPAGEDOWN && c != K_KPAGEUP
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001113 && c != K_LEFT && c != K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N)))
Bram Moolenaard23a8232018-02-10 18:45:26 +01001115 VIM_CLEAR(lookfor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116#endif
1117
1118 /*
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001119 * When there are matching completions to select <S-Tab> works like
1120 * CTRL-P (unless 'wc' is <S-Tab>).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 */
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001122 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123 c = Ctrl_P;
1124
1125#ifdef FEAT_WILDMENU
1126 /* Special translations for 'wildmenu' */
1127 if (did_wild_list && p_wmnu)
1128 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001129 if (c == K_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 c = Ctrl_P;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001131 else if (c == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 c = Ctrl_N;
1133 }
1134 /* Hitting CR after "emenu Name.": complete submenu */
1135 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu
1136 && ccline.cmdpos > 1
1137 && ccline.cmdbuff[ccline.cmdpos - 1] == '.'
1138 && ccline.cmdbuff[ccline.cmdpos - 2] != '\\'
1139 && (c == '\n' || c == '\r' || c == K_KENTER))
1140 c = K_DOWN;
1141#endif
1142
1143 /* free expanded names when finished walking through matches */
1144 if (xpc.xp_numfiles != -1
1145 && !(c == p_wc && KeyTyped) && c != p_wcm
1146 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A
1147 && c != Ctrl_L)
1148 {
1149 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
1150 did_wild_list = FALSE;
1151#ifdef FEAT_WILDMENU
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001152 if (!p_wmnu || (c != K_UP && c != K_DOWN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153#endif
1154 xpc.xp_context = EXPAND_NOTHING;
1155 wim_index = 0;
1156#ifdef FEAT_WILDMENU
1157 if (p_wmnu && wild_menu_showing != 0)
1158 {
1159 int skt = KeyTyped;
Bram Moolenaar1e015462005-09-25 22:16:38 +00001160 int old_RedrawingDisabled = RedrawingDisabled;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001161
1162 if (ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001163 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164
1165 if (wild_menu_showing == WM_SCROLLED)
1166 {
1167 /* Entered command line, move it up */
1168 cmdline_row--;
1169 redrawcmd();
1170 }
1171 else if (save_p_ls != -1)
1172 {
1173 /* restore 'laststatus' and 'winminheight' */
1174 p_ls = save_p_ls;
1175 p_wmh = save_p_wmh;
1176 last_status(FALSE);
1177 update_screen(VALID); /* redraw the screen NOW */
1178 redrawcmd();
1179 save_p_ls = -1;
1180 }
1181 else
1182 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 win_redraw_last_status(topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 redraw_statuslines();
1185 }
1186 KeyTyped = skt;
1187 wild_menu_showing = 0;
Bram Moolenaar1e015462005-09-25 22:16:38 +00001188 if (ccline.input_fn)
1189 RedrawingDisabled = old_RedrawingDisabled;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 }
1191#endif
1192 }
1193
1194#ifdef FEAT_WILDMENU
1195 /* Special translations for 'wildmenu' */
1196 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu)
1197 {
1198 /* Hitting <Down> after "emenu Name.": complete submenu */
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +00001199 if (c == K_DOWN && ccline.cmdpos > 0
1200 && ccline.cmdbuff[ccline.cmdpos - 1] == '.')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 c = p_wc;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001202 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 {
1204 /* Hitting <Up>: Remove one submenu name in front of the
1205 * cursor */
1206 int found = FALSE;
1207
1208 j = (int)(xpc.xp_pattern - ccline.cmdbuff);
1209 i = 0;
1210 while (--j > 0)
1211 {
1212 /* check for start of menu name */
1213 if (ccline.cmdbuff[j] == ' '
1214 && ccline.cmdbuff[j - 1] != '\\')
1215 {
1216 i = j + 1;
1217 break;
1218 }
1219 /* check for start of submenu name */
1220 if (ccline.cmdbuff[j] == '.'
1221 && ccline.cmdbuff[j - 1] != '\\')
1222 {
1223 if (found)
1224 {
1225 i = j + 1;
1226 break;
1227 }
1228 else
1229 found = TRUE;
1230 }
1231 }
1232 if (i > 0)
1233 cmdline_del(i);
1234 c = p_wc;
1235 xpc.xp_context = EXPAND_NOTHING;
1236 }
1237 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001238 if ((xpc.xp_context == EXPAND_FILES
Bram Moolenaar446cb832008-06-24 21:56:24 +00001239 || xpc.xp_context == EXPAND_DIRECTORIES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001240 || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 {
1242 char_u upseg[5];
1243
1244 upseg[0] = PATHSEP;
1245 upseg[1] = '.';
1246 upseg[2] = '.';
1247 upseg[3] = PATHSEP;
1248 upseg[4] = NUL;
1249
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +00001250 if (c == K_DOWN
1251 && ccline.cmdpos > 0
1252 && ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP
1253 && (ccline.cmdpos < 3
1254 || ccline.cmdbuff[ccline.cmdpos - 2] != '.'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 || ccline.cmdbuff[ccline.cmdpos - 3] != '.'))
1256 {
1257 /* go down a directory */
1258 c = p_wc;
1259 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001260 else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 {
1262 /* If in a direct ancestor, strip off one ../ to go down */
1263 int found = FALSE;
1264
1265 j = ccline.cmdpos;
1266 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
1267 while (--j > i)
1268 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001269 if (has_mbyte)
1270 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 if (vim_ispathsep(ccline.cmdbuff[j]))
1272 {
1273 found = TRUE;
1274 break;
1275 }
1276 }
1277 if (found
1278 && ccline.cmdbuff[j - 1] == '.'
1279 && ccline.cmdbuff[j - 2] == '.'
1280 && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2))
1281 {
1282 cmdline_del(j - 2);
1283 c = p_wc;
1284 }
1285 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001286 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 {
1288 /* go up a directory */
1289 int found = FALSE;
1290
1291 j = ccline.cmdpos - 1;
1292 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
1293 while (--j > i)
1294 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 if (has_mbyte)
1296 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 if (vim_ispathsep(ccline.cmdbuff[j])
1298#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001299 && vim_strchr((char_u *)" *?[{`$%#",
1300 ccline.cmdbuff[j + 1]) == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301#endif
1302 )
1303 {
1304 if (found)
1305 {
1306 i = j + 1;
1307 break;
1308 }
1309 else
1310 found = TRUE;
1311 }
1312 }
1313
1314 if (!found)
1315 j = i;
1316 else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0)
1317 j += 4;
1318 else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0
1319 && j == i)
1320 j += 3;
1321 else
1322 j = 0;
1323 if (j > 0)
1324 {
1325 /* TODO this is only for DOS/UNIX systems - need to put in
1326 * machine-specific stuff here and in upseg init */
1327 cmdline_del(j);
1328 put_on_cmdline(upseg + 1, 3, FALSE);
1329 }
1330 else if (ccline.cmdpos > i)
1331 cmdline_del(i);
Bram Moolenaar96a89642011-12-08 18:44:51 +01001332
1333 /* Now complete in the new directory. Set KeyTyped in case the
1334 * Up key came from a mapping. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 c = p_wc;
Bram Moolenaar96a89642011-12-08 18:44:51 +01001336 KeyTyped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 }
1338 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339
1340#endif /* FEAT_WILDMENU */
1341
1342 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert
1343 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */
1344 if (c == Ctrl_BSL)
1345 {
1346 ++no_mapping;
1347 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001348 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 --no_mapping;
1350 --allow_keys;
Bram Moolenaarb7356812012-10-11 04:04:37 +02001351 /* CTRL-\ e doesn't work when obtaining an expression, unless it
1352 * is in a mapping. */
1353 if (c != Ctrl_N && c != Ctrl_G && (c != 'e'
Bram Moolenaar31cbadf2018-09-25 20:48:57 +02001354 || (ccline.cmdfirstc == '=' && KeyTyped)
1355#ifdef FEAT_EVAL
Bram Moolenaaree91c332018-09-25 22:27:35 +02001356 || cmdline_star > 0
Bram Moolenaar31cbadf2018-09-25 20:48:57 +02001357#endif
1358 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 {
1360 vungetc(c);
1361 c = Ctrl_BSL;
1362 }
1363#ifdef FEAT_EVAL
1364 else if (c == 'e')
1365 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +02001366 char_u *p = NULL;
1367 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368
1369 /*
1370 * Replace the command line with the result of an expression.
Bram Moolenaar4770d092006-01-12 23:22:24 +00001371 * Need to save and restore the current command line, to be
1372 * able to enter a new one...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 */
1374 if (ccline.cmdpos == ccline.cmdlen)
1375 new_cmdpos = 99999; /* keep it at the end */
1376 else
1377 new_cmdpos = ccline.cmdpos;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001378
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 c = get_expr_register();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 if (c == '=')
1381 {
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001382 /* Need to save and restore ccline. And set "textlock"
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001383 * to avoid nasty things like going to another buffer when
1384 * evaluating an expression. */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001385 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386 p = get_expr_line();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001387 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001388
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001389 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 {
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001391 len = (int)STRLEN(p);
1392 if (realloc_cmdbuff(len + 1) == OK)
1393 {
1394 ccline.cmdlen = len;
1395 STRCPY(ccline.cmdbuff, p);
1396 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001398 /* Restore the cursor or use the position set with
1399 * set_cmdline_pos(). */
1400 if (new_cmdpos > ccline.cmdlen)
1401 ccline.cmdpos = ccline.cmdlen;
1402 else
1403 ccline.cmdpos = new_cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001405 KeyTyped = FALSE; /* Don't do p_wc completion. */
1406 redrawcmd();
1407 goto cmdline_changed;
1408 }
Bram Moolenaar4e303c82018-11-24 14:27:44 +01001409 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 }
1411 }
1412 beep_flush();
Bram Moolenaar66b4bf82010-11-16 14:06:08 +01001413 got_int = FALSE; /* don't abandon the command line */
1414 did_emsg = FALSE;
1415 emsg_on_display = FALSE;
1416 redrawcmd();
1417 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418 }
1419#endif
1420 else
1421 {
1422 if (c == Ctrl_G && p_im && restart_edit == 0)
1423 restart_edit = 'a';
1424 gotesc = TRUE; /* will free ccline.cmdbuff after putting it
1425 in history */
1426 goto returncmd; /* back to Normal mode */
1427 }
1428 }
1429
1430#ifdef FEAT_CMDWIN
1431 if (c == cedit_key || c == K_CMDWIN)
1432 {
Bram Moolenaar58da7072014-09-09 18:45:49 +02001433 if (ex_normal_busy == 0 && got_int == FALSE)
1434 {
1435 /*
1436 * Open a window to edit the command line (and history).
1437 */
Bram Moolenaar3bab9392017-04-07 15:42:25 +02001438 c = open_cmdwin();
Bram Moolenaar58da7072014-09-09 18:45:49 +02001439 some_key_typed = TRUE;
1440 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 }
1442# ifdef FEAT_DIGRAPHS
1443 else
1444# endif
1445#endif
1446#ifdef FEAT_DIGRAPHS
1447 c = do_digraph(c);
1448#endif
1449
1450 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC
1451 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL)))
1452 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001453 /* In Ex mode a backslash escapes a newline. */
1454 if (exmode_active
1455 && c != ESC
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001456 && ccline.cmdpos == ccline.cmdlen
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +00001457 && ccline.cmdpos > 0
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001458 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001460 if (c == K_KENTER)
1461 c = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001463 else
1464 {
1465 gotesc = FALSE; /* Might have typed ESC previously, don't
1466 truncate the cmdline now. */
1467 if (ccheck_abbr(c + ABBR_OFF))
1468 goto cmdline_changed;
1469 if (!cmd_silent)
1470 {
1471 windgoto(msg_row, 0);
1472 out_flush();
1473 }
1474 break;
1475 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 }
1477
1478 /*
1479 * Completion for 'wildchar' or 'wildcharm' key.
1480 * - hitting <ESC> twice means: abandon command line.
1481 * - wildcard expansion is only done when the 'wildchar' key is really
1482 * typed, not when it comes from a macro
1483 */
1484 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm)
1485 {
1486 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */
1487 {
1488 /* if 'wildmode' contains "list" may still need to list */
1489 if (xpc.xp_numfiles > 1
1490 && !did_wild_list
1491 && (wim_flags[wim_index] & WIM_LIST))
1492 {
1493 (void)showmatches(&xpc, FALSE);
1494 redrawcmd();
1495 did_wild_list = TRUE;
1496 }
1497 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001498 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
1499 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001501 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
1502 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503 else
1504 res = OK; /* don't insert 'wildchar' now */
1505 }
1506 else /* typed p_wc first time */
1507 {
1508 wim_index = 0;
1509 j = ccline.cmdpos;
1510 /* if 'wildmode' first contains "longest", get longest
1511 * common part */
1512 if (wim_flags[0] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001513 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
1514 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 else
Bram Moolenaarb3479632012-11-28 16:49:58 +01001516 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP,
1517 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518
1519 /* if interrupted while completing, behave like it failed */
1520 if (got_int)
1521 {
1522 (void)vpeekc(); /* remove <C-C> from input stream */
1523 got_int = FALSE; /* don't abandon the command line */
1524 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
1525#ifdef FEAT_WILDMENU
1526 xpc.xp_context = EXPAND_NOTHING;
1527#endif
1528 goto cmdline_changed;
1529 }
1530
1531 /* when more than one match, and 'wildmode' first contains
1532 * "list", or no change and 'wildmode' contains "longest,list",
1533 * list all matches */
1534 if (res == OK && xpc.xp_numfiles > 1)
1535 {
1536 /* a "longest" that didn't do anything is skipped (but not
1537 * "list:longest") */
1538 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j)
1539 wim_index = 1;
1540 if ((wim_flags[wim_index] & WIM_LIST)
1541#ifdef FEAT_WILDMENU
1542 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0)
1543#endif
1544 )
1545 {
1546 if (!(wim_flags[0] & WIM_LONGEST))
1547 {
1548#ifdef FEAT_WILDMENU
1549 int p_wmnu_save = p_wmnu;
1550 p_wmnu = 0;
1551#endif
Bram Moolenaarb3479632012-11-28 16:49:58 +01001552 /* remove match */
1553 nextwild(&xpc, WILD_PREV, 0, firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554#ifdef FEAT_WILDMENU
1555 p_wmnu = p_wmnu_save;
1556#endif
1557 }
1558#ifdef FEAT_WILDMENU
1559 (void)showmatches(&xpc, p_wmnu
1560 && ((wim_flags[wim_index] & WIM_LIST) == 0));
1561#else
1562 (void)showmatches(&xpc, FALSE);
1563#endif
1564 redrawcmd();
1565 did_wild_list = TRUE;
1566 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001567 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
1568 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001570 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
1571 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 }
1573 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02001574 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 }
1576#ifdef FEAT_WILDMENU
1577 else if (xpc.xp_numfiles == -1)
1578 xpc.xp_context = EXPAND_NOTHING;
1579#endif
1580 }
1581 if (wim_index < 3)
1582 ++wim_index;
1583 if (c == ESC)
1584 gotesc = TRUE;
1585 if (res == OK)
1586 goto cmdline_changed;
1587 }
1588
1589 gotesc = FALSE;
1590
1591 /* <S-Tab> goes to last match, in a clumsy way */
1592 if (c == K_S_TAB && KeyTyped)
1593 {
Bram Moolenaarb3479632012-11-28 16:49:58 +01001594 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0, firstc != '@') == OK
1595 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK
1596 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 goto cmdline_changed;
1598 }
1599
1600 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */
1601 c = NL;
1602
1603 do_abbr = TRUE; /* default: check for abbreviation */
1604
1605 /*
1606 * Big switch for a typed command line character.
1607 */
1608 switch (c)
1609 {
1610 case K_BS:
1611 case Ctrl_H:
1612 case K_DEL:
1613 case K_KDEL:
1614 case Ctrl_W:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615 if (c == K_KDEL)
1616 c = K_DEL;
1617
1618 /*
1619 * delete current character is the same as backspace on next
1620 * character, except at end of line
1621 */
1622 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen)
1623 ++ccline.cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 if (has_mbyte && c == K_DEL)
1625 ccline.cmdpos += mb_off_next(ccline.cmdbuff,
1626 ccline.cmdbuff + ccline.cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627 if (ccline.cmdpos > 0)
1628 {
1629 char_u *p;
1630
1631 j = ccline.cmdpos;
1632 p = ccline.cmdbuff + j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 if (has_mbyte)
1634 {
1635 p = mb_prevptr(ccline.cmdbuff, p);
1636 if (c == Ctrl_W)
1637 {
1638 while (p > ccline.cmdbuff && vim_isspace(*p))
1639 p = mb_prevptr(ccline.cmdbuff, p);
1640 i = mb_get_class(p);
1641 while (p > ccline.cmdbuff && mb_get_class(p) == i)
1642 p = mb_prevptr(ccline.cmdbuff, p);
1643 if (mb_get_class(p) != i)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001644 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645 }
1646 }
Bram Moolenaar13505972019-01-24 15:04:48 +01001647 else if (c == Ctrl_W)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648 {
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:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710 ccline.overstrike = !ccline.overstrike;
1711#ifdef CURSOR_SHAPE
1712 ui_cursor_shape(); /* may show different cursor shape */
1713#endif
1714 goto cmdline_not_changed;
1715
1716 case Ctrl_HAT:
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00001717 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 {
1719 /* ":lmap" mappings exists, toggle use of mappings. */
1720 State ^= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001721#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 im_set_active(FALSE); /* Disable input method */
1723#endif
1724 if (b_im_ptr != NULL)
1725 {
1726 if (State & LANGMAP)
1727 *b_im_ptr = B_IMODE_LMAP;
1728 else
1729 *b_im_ptr = B_IMODE_NONE;
1730 }
1731 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001732#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733 else
1734 {
1735 /* There are no ":lmap" mappings, toggle IM. When
1736 * 'imdisable' is set don't try getting the status, it's
1737 * always off. */
1738 if ((p_imdisable && b_im_ptr != NULL)
1739 ? *b_im_ptr == B_IMODE_IM : im_get_status())
1740 {
1741 im_set_active(FALSE); /* Disable input method */
1742 if (b_im_ptr != NULL)
1743 *b_im_ptr = B_IMODE_NONE;
1744 }
1745 else
1746 {
1747 im_set_active(TRUE); /* Enable input method */
1748 if (b_im_ptr != NULL)
1749 *b_im_ptr = B_IMODE_IM;
1750 }
1751 }
1752#endif
1753 if (b_im_ptr != NULL)
1754 {
1755 if (b_im_ptr == &curbuf->b_p_iminsert)
1756 set_iminsert_global();
1757 else
1758 set_imsearch_global();
1759 }
1760#ifdef CURSOR_SHAPE
1761 ui_cursor_shape(); /* may show different cursor shape */
1762#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001763#if defined(FEAT_KEYMAP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 /* Show/unshow value of 'keymap' in status lines later. */
1765 status_redraw_curbuf();
1766#endif
1767 goto cmdline_not_changed;
1768
1769/* case '@': only in very old vi */
1770 case Ctrl_U:
1771 /* delete all characters left of the cursor */
1772 j = ccline.cmdpos;
1773 ccline.cmdlen -= j;
1774 i = ccline.cmdpos = 0;
1775 while (i < ccline.cmdlen)
1776 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1777 /* Truncate at the end, required for multi-byte chars. */
1778 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001779#ifdef FEAT_SEARCH_EXTRA
1780 if (ccline.cmdlen == 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001781 is_state.search_start = is_state.save_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001782#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 redrawcmd();
1784 goto cmdline_changed;
1785
1786#ifdef FEAT_CLIPBOARD
1787 case Ctrl_Y:
1788 /* Copy the modeless selection, if there is one. */
1789 if (clip_star.state != SELECT_CLEARED)
1790 {
1791 if (clip_star.state == SELECT_DONE)
1792 clip_copy_modeless_selection(TRUE);
1793 goto cmdline_not_changed;
1794 }
1795 break;
1796#endif
1797
1798 case ESC: /* get here if p_wc != ESC or when ESC typed twice */
1799 case Ctrl_C:
Bram Moolenaarf4d11452005-12-02 00:46:37 +00001800 /* In exmode it doesn't make sense to return. Except when
Bram Moolenaar7c626922005-02-07 22:01:03 +00001801 * ":normal" runs out of characters. */
1802 if (exmode_active
Bram Moolenaare2c38102016-01-31 14:55:40 +01001803 && (ex_normal_busy == 0 || typebuf.tb_len > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804 goto cmdline_not_changed;
1805
1806 gotesc = TRUE; /* will free ccline.cmdbuff after
1807 putting it in history */
1808 goto returncmd; /* back to cmd mode */
1809
1810 case Ctrl_R: /* insert register */
1811#ifdef USE_ON_FLY_SCROLL
1812 dont_scroll = TRUE; /* disallow scrolling here */
1813#endif
1814 putcmdline('"', TRUE);
1815 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001816 i = c = plain_vgetc(); /* CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 if (i == Ctrl_O)
1818 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */
1819 if (i == Ctrl_R)
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001820 c = plain_vgetc(); /* CTRL-R CTRL-R <char> */
Bram Moolenaara92522f2017-07-15 15:21:38 +02001821 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 --no_mapping;
1823#ifdef FEAT_EVAL
1824 /*
1825 * Insert the result of an expression.
1826 * Need to save the current command line, to be able to enter
1827 * a new one...
1828 */
1829 new_cmdpos = -1;
1830 if (c == '=')
1831 {
Bram Moolenaaree91c332018-09-25 22:27:35 +02001832 if (ccline.cmdfirstc == '=' // can't do this recursively
1833 || cmdline_star > 0) // or when typing a password
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 {
1835 beep_flush();
1836 c = ESC;
1837 }
1838 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839 c = get_expr_register();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 }
1841#endif
1842 if (c != ESC) /* use ESC to cancel inserting register */
1843 {
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001844 cmdline_paste(c, i == Ctrl_R, FALSE);
Bram Moolenaaracf53452005-12-17 22:06:52 +00001845
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001846#ifdef FEAT_EVAL
Bram Moolenaaracf53452005-12-17 22:06:52 +00001847 /* When there was a serious error abort getting the
1848 * command line. */
1849 if (aborting())
1850 {
1851 gotesc = TRUE; /* will free ccline.cmdbuff after
1852 putting it in history */
1853 goto returncmd; /* back to cmd mode */
1854 }
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001855#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 KeyTyped = FALSE; /* Don't do p_wc completion. */
1857#ifdef FEAT_EVAL
1858 if (new_cmdpos >= 0)
1859 {
1860 /* set_cmdline_pos() was used */
1861 if (new_cmdpos > ccline.cmdlen)
1862 ccline.cmdpos = ccline.cmdlen;
1863 else
1864 ccline.cmdpos = new_cmdpos;
1865 }
1866#endif
1867 }
1868 redrawcmd();
1869 goto cmdline_changed;
1870
1871 case Ctrl_D:
1872 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING)
1873 break; /* Use ^D as normal char instead */
1874
1875 redrawcmd();
1876 continue; /* don't do incremental search now */
1877
1878 case K_RIGHT:
1879 case K_S_RIGHT:
1880 case K_C_RIGHT:
1881 do
1882 {
1883 if (ccline.cmdpos >= ccline.cmdlen)
1884 break;
1885 i = cmdline_charsize(ccline.cmdpos);
1886 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows)
1887 break;
1888 ccline.cmdspos += i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001890 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 + ccline.cmdpos);
1892 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 ++ccline.cmdpos;
1894 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001895 while ((c == K_S_RIGHT || c == K_C_RIGHT
1896 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 && ccline.cmdbuff[ccline.cmdpos] != ' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898 if (has_mbyte)
1899 set_cmdspos_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900 goto cmdline_not_changed;
1901
1902 case K_LEFT:
1903 case K_S_LEFT:
1904 case K_C_LEFT:
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001905 if (ccline.cmdpos == 0)
1906 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 do
1908 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909 --ccline.cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 if (has_mbyte) /* move to first byte of char */
1911 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff,
1912 ccline.cmdbuff + ccline.cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos);
1914 }
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001915 while (ccline.cmdpos > 0
1916 && (c == K_S_LEFT || c == K_C_LEFT
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001917 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 && ccline.cmdbuff[ccline.cmdpos - 1] != ' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919 if (has_mbyte)
1920 set_cmdspos_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921 goto cmdline_not_changed;
1922
1923 case K_IGNORE:
Bram Moolenaar3bab9392017-04-07 15:42:25 +02001924 /* Ignore mouse event or open_cmdwin() result. */
Bram Moolenaar30405d32008-01-02 20:55:27 +00001925 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926
Bram Moolenaar4f974752019-02-17 17:44:42 +01001927#ifdef FEAT_GUI_MSWIN
1928 /* On MS-Windows ignore <M-F4>, we get it when closing the window
1929 * was cancelled. */
Bram Moolenaar4770d092006-01-12 23:22:24 +00001930 case K_F4:
1931 if (mod_mask == MOD_MASK_ALT)
1932 {
1933 redrawcmd(); /* somehow the cmdline is cleared */
1934 goto cmdline_not_changed;
1935 }
1936 break;
1937#endif
1938
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939#ifdef FEAT_MOUSE
1940 case K_MIDDLEDRAG:
1941 case K_MIDDLERELEASE:
1942 goto cmdline_not_changed; /* Ignore mouse */
1943
1944 case K_MIDDLEMOUSE:
1945# ifdef FEAT_GUI
1946 /* When GUI is active, also paste when 'mouse' is empty */
1947 if (!gui.in_use)
1948# endif
1949 if (!mouse_has(MOUSE_COMMAND))
1950 goto cmdline_not_changed; /* Ignore mouse */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001951# ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 if (clip_star.available)
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001953 cmdline_paste('*', TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 else
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001955# endif
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001956 cmdline_paste(0, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 redrawcmd();
1958 goto cmdline_changed;
1959
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001960# ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 case K_DROP:
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001962 cmdline_paste('~', TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963 redrawcmd();
1964 goto cmdline_changed;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001965# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966
1967 case K_LEFTDRAG:
1968 case K_LEFTRELEASE:
1969 case K_RIGHTDRAG:
1970 case K_RIGHTRELEASE:
1971 /* Ignore drag and release events when the button-down wasn't
1972 * seen before. */
1973 if (ignore_drag_release)
1974 goto cmdline_not_changed;
1975 /* FALLTHROUGH */
1976 case K_LEFTMOUSE:
1977 case K_RIGHTMOUSE:
1978 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE)
1979 ignore_drag_release = TRUE;
1980 else
1981 ignore_drag_release = FALSE;
1982# ifdef FEAT_GUI
1983 /* When GUI is active, also move when 'mouse' is empty */
1984 if (!gui.in_use)
1985# endif
1986 if (!mouse_has(MOUSE_COMMAND))
1987 goto cmdline_not_changed; /* Ignore mouse */
1988# ifdef FEAT_CLIPBOARD
1989 if (mouse_row < cmdline_row && clip_star.available)
1990 {
1991 int button, is_click, is_drag;
1992
1993 /*
1994 * Handle modeless selection.
1995 */
1996 button = get_mouse_button(KEY2TERMCAP1(c),
1997 &is_click, &is_drag);
1998 if (mouse_model_popup() && button == MOUSE_LEFT
1999 && (mod_mask & MOD_MASK_SHIFT))
2000 {
2001 /* Translate shift-left to right button. */
2002 button = MOUSE_RIGHT;
2003 mod_mask &= ~MOD_MASK_SHIFT;
2004 }
2005 clip_modeless(button, is_click, is_drag);
2006 goto cmdline_not_changed;
2007 }
2008# endif
2009
2010 set_cmdspos();
2011 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen;
2012 ++ccline.cmdpos)
2013 {
2014 i = cmdline_charsize(ccline.cmdpos);
2015 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns
2016 && mouse_col < ccline.cmdspos % Columns + i)
2017 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 if (has_mbyte)
2019 {
2020 /* Count ">" for double-wide char that doesn't fit. */
2021 correct_cmdspos(ccline.cmdpos, i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002022 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 + ccline.cmdpos) - 1;
2024 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 ccline.cmdspos += i;
2026 }
2027 goto cmdline_not_changed;
2028
2029 /* Mouse scroll wheel: ignored here */
2030 case K_MOUSEDOWN:
2031 case K_MOUSEUP:
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002032 case K_MOUSELEFT:
2033 case K_MOUSERIGHT:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 /* Alternate buttons ignored here */
2035 case K_X1MOUSE:
2036 case K_X1DRAG:
2037 case K_X1RELEASE:
2038 case K_X2MOUSE:
2039 case K_X2DRAG:
2040 case K_X2RELEASE:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01002041 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042 goto cmdline_not_changed;
2043
2044#endif /* FEAT_MOUSE */
2045
2046#ifdef FEAT_GUI
2047 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */
2048 case K_LEFTRELEASE_NM:
2049 goto cmdline_not_changed;
2050
2051 case K_VER_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002052 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 {
2054 gui_do_scroll();
2055 redrawcmd();
2056 }
2057 goto cmdline_not_changed;
2058
2059 case K_HOR_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002060 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002062 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 redrawcmd();
2064 }
2065 goto cmdline_not_changed;
2066#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002067#ifdef FEAT_GUI_TABLINE
2068 case K_TABLINE:
2069 case K_TABMENU:
2070 /* Don't want to change any tabs here. Make sure the same tab
2071 * is still selected. */
2072 if (gui_use_tabline())
2073 gui_mch_set_curtab(tabpage_index(curtab));
2074 goto cmdline_not_changed;
2075#endif
2076
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 case K_SELECT: /* end of Select mode mapping - ignore */
2078 goto cmdline_not_changed;
2079
2080 case Ctrl_B: /* begin of command line */
2081 case K_HOME:
2082 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 case K_S_HOME:
2084 case K_C_HOME:
2085 ccline.cmdpos = 0;
2086 set_cmdspos();
2087 goto cmdline_not_changed;
2088
2089 case Ctrl_E: /* end of command line */
2090 case K_END:
2091 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 case K_S_END:
2093 case K_C_END:
2094 ccline.cmdpos = ccline.cmdlen;
2095 set_cmdspos_cursor();
2096 goto cmdline_not_changed;
2097
2098 case Ctrl_A: /* all matches */
Bram Moolenaarb3479632012-11-28 16:49:58 +01002099 if (nextwild(&xpc, WILD_ALL, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100 break;
2101 goto cmdline_changed;
2102
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002103 case Ctrl_L:
2104#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002105 if (may_add_char_to_search(firstc, &c, &is_state) == OK)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002106 goto cmdline_not_changed;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002107#endif
2108
2109 /* completion: longest common part */
Bram Moolenaarb3479632012-11-28 16:49:58 +01002110 if (nextwild(&xpc, WILD_LONGEST, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 break;
2112 goto cmdline_changed;
2113
2114 case Ctrl_N: /* next match */
2115 case Ctrl_P: /* previous match */
Bram Moolenaar7df0f632016-08-26 19:56:00 +02002116 if (xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117 {
Bram Moolenaarb3479632012-11-28 16:49:58 +01002118 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT,
2119 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 break;
Bram Moolenaar11956692016-08-27 16:26:56 +02002121 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123#ifdef FEAT_CMDHIST
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002124 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 case K_UP:
2126 case K_DOWN:
2127 case K_S_UP:
2128 case K_S_DOWN:
2129 case K_PAGEUP:
2130 case K_KPAGEUP:
2131 case K_PAGEDOWN:
2132 case K_KPAGEDOWN:
2133 if (hislen == 0 || firstc == NUL) /* no history */
2134 goto cmdline_not_changed;
2135
2136 i = hiscnt;
2137
2138 /* save current command string so it can be restored later */
2139 if (lookfor == NULL)
2140 {
2141 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL)
2142 goto cmdline_not_changed;
2143 lookfor[ccline.cmdpos] = NUL;
2144 }
2145
2146 j = (int)STRLEN(lookfor);
2147 for (;;)
2148 {
2149 /* one step backwards */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002150 if (c == K_UP|| c == K_S_UP || c == Ctrl_P
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002151 || c == K_PAGEUP || c == K_KPAGEUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 {
2153 if (hiscnt == hislen) /* first time */
2154 hiscnt = hisidx[histype];
2155 else if (hiscnt == 0 && hisidx[histype] != hislen - 1)
2156 hiscnt = hislen - 1;
2157 else if (hiscnt != hisidx[histype] + 1)
2158 --hiscnt;
2159 else /* at top of list */
2160 {
2161 hiscnt = i;
2162 break;
2163 }
2164 }
2165 else /* one step forwards */
2166 {
2167 /* on last entry, clear the line */
2168 if (hiscnt == hisidx[histype])
2169 {
2170 hiscnt = hislen;
2171 break;
2172 }
2173
2174 /* not on a history line, nothing to do */
2175 if (hiscnt == hislen)
2176 break;
2177 if (hiscnt == hislen - 1) /* wrap around */
2178 hiscnt = 0;
2179 else
2180 ++hiscnt;
2181 }
2182 if (hiscnt < 0 || history[histype][hiscnt].hisstr == NULL)
2183 {
2184 hiscnt = i;
2185 break;
2186 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002187 if ((c != K_UP && c != K_DOWN)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002188 || hiscnt == i
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189 || STRNCMP(history[histype][hiscnt].hisstr,
2190 lookfor, (size_t)j) == 0)
2191 break;
2192 }
2193
2194 if (hiscnt != i) /* jumped to other entry */
2195 {
2196 char_u *p;
2197 int len;
2198 int old_firstc;
2199
Bram Moolenaar438d1762018-09-30 17:11:48 +02002200 VIM_CLEAR(ccline.cmdbuff);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002201 xpc.xp_context = EXPAND_NOTHING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 if (hiscnt == hislen)
2203 p = lookfor; /* back to the old one */
2204 else
2205 p = history[histype][hiscnt].hisstr;
2206
2207 if (histype == HIST_SEARCH
2208 && p != lookfor
2209 && (old_firstc = p[STRLEN(p) + 1]) != firstc)
2210 {
2211 /* Correct for the separator character used when
2212 * adding the history entry vs the one used now.
2213 * First loop: count length.
2214 * Second loop: copy the characters. */
2215 for (i = 0; i <= 1; ++i)
2216 {
2217 len = 0;
2218 for (j = 0; p[j] != NUL; ++j)
2219 {
2220 /* Replace old sep with new sep, unless it is
2221 * escaped. */
2222 if (p[j] == old_firstc
2223 && (j == 0 || p[j - 1] != '\\'))
2224 {
2225 if (i > 0)
2226 ccline.cmdbuff[len] = firstc;
2227 }
2228 else
2229 {
2230 /* Escape new sep, unless it is already
2231 * escaped. */
2232 if (p[j] == firstc
2233 && (j == 0 || p[j - 1] != '\\'))
2234 {
2235 if (i > 0)
2236 ccline.cmdbuff[len] = '\\';
2237 ++len;
2238 }
2239 if (i > 0)
2240 ccline.cmdbuff[len] = p[j];
2241 }
2242 ++len;
2243 }
2244 if (i == 0)
2245 {
2246 alloc_cmdbuff(len);
2247 if (ccline.cmdbuff == NULL)
2248 goto returncmd;
2249 }
2250 }
2251 ccline.cmdbuff[len] = NUL;
2252 }
2253 else
2254 {
2255 alloc_cmdbuff((int)STRLEN(p));
2256 if (ccline.cmdbuff == NULL)
2257 goto returncmd;
2258 STRCPY(ccline.cmdbuff, p);
2259 }
2260
2261 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
2262 redrawcmd();
2263 goto cmdline_changed;
2264 }
2265 beep_flush();
Bram Moolenaar11956692016-08-27 16:26:56 +02002266#endif
2267 goto cmdline_not_changed;
2268
Bram Moolenaar349e7d92016-09-03 20:04:34 +02002269#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar11956692016-08-27 16:26:56 +02002270 case Ctrl_G: /* next match */
2271 case Ctrl_T: /* previous match */
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002272 if (may_adjust_incsearch_highlighting(
2273 firstc, count, &is_state, c) == FAIL)
Bram Moolenaar349e7d92016-09-03 20:04:34 +02002274 goto cmdline_not_changed;
Bram Moolenaar349e7d92016-09-03 20:04:34 +02002275 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276#endif
2277
2278 case Ctrl_V:
2279 case Ctrl_Q:
2280#ifdef FEAT_MOUSE
2281 ignore_drag_release = TRUE;
2282#endif
2283 putcmdline('^', TRUE);
2284 c = get_literal(); /* get next (two) character(s) */
2285 do_abbr = FALSE; /* don't do abbreviation now */
Bram Moolenaara92522f2017-07-15 15:21:38 +02002286 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 /* may need to remove ^ when composing char was typed */
2288 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent)
2289 {
2290 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2291 msg_putchar(' ');
2292 cursorcmd();
2293 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294 break;
2295
2296#ifdef FEAT_DIGRAPHS
2297 case Ctrl_K:
2298#ifdef FEAT_MOUSE
2299 ignore_drag_release = TRUE;
2300#endif
2301 putcmdline('?', TRUE);
2302#ifdef USE_ON_FLY_SCROLL
2303 dont_scroll = TRUE; /* disallow scrolling here */
2304#endif
2305 c = get_digraph(TRUE);
Bram Moolenaara92522f2017-07-15 15:21:38 +02002306 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 if (c != NUL)
2308 break;
2309
2310 redrawcmd();
2311 goto cmdline_not_changed;
2312#endif /* FEAT_DIGRAPHS */
2313
2314#ifdef FEAT_RIGHTLEFT
2315 case Ctrl__: /* CTRL-_: switch language mode */
2316 if (!p_ari)
2317 break;
Bram Moolenaar14184a32019-02-16 15:10:30 +01002318 cmd_hkmap = !cmd_hkmap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319 goto cmdline_not_changed;
2320#endif
2321
Bram Moolenaarabbc4482017-01-24 15:57:55 +01002322 case K_PS:
2323 bracketed_paste(PASTE_CMDLINE, FALSE, NULL);
2324 goto cmdline_changed;
2325
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 default:
2327#ifdef UNIX
2328 if (c == intr_char)
2329 {
2330 gotesc = TRUE; /* will free ccline.cmdbuff after
2331 putting it in history */
2332 goto returncmd; /* back to Normal mode */
2333 }
2334#endif
2335 /*
2336 * Normal character with no special meaning. Just set mod_mask
2337 * to 0x0 so that typing Shift-Space in the GUI doesn't enter
2338 * the string <S-Space>. This should only happen after ^V.
2339 */
2340 if (!IS_SPECIAL(c))
2341 mod_mask = 0x0;
2342 break;
2343 }
2344 /*
2345 * End of switch on command line character.
2346 * We come here if we have a normal character.
2347 */
2348
Bram Moolenaar13505972019-01-24 15:04:48 +01002349 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c))
2350 && (ccheck_abbr(
2351 // Add ABBR_OFF for characters above 0x100, this is
2352 // what check_abbr() expects.
2353 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) : c)
2354 || c == Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 goto cmdline_changed;
2356
2357 /*
2358 * put the character in the command line
2359 */
2360 if (IS_SPECIAL(c) || mod_mask != 0)
2361 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE);
2362 else
2363 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 if (has_mbyte)
2365 {
2366 j = (*mb_char2bytes)(c, IObuff);
2367 IObuff[j] = NUL; /* exclude composing chars */
2368 put_on_cmdline(IObuff, j, TRUE);
2369 }
2370 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371 {
2372 IObuff[0] = c;
2373 put_on_cmdline(IObuff, 1, TRUE);
2374 }
2375 }
2376 goto cmdline_changed;
2377
2378/*
2379 * This part implements incremental searches for "/" and "?"
2380 * Jump to cmdline_not_changed when a character has been read but the command
2381 * line did not change. Then we only search and redraw if something changed in
2382 * the past.
2383 * Jump to cmdline_changed when the command line did change.
2384 * (Sorry for the goto's, I know it is ugly).
2385 */
2386cmdline_not_changed:
2387#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002388 if (!is_state.incsearch_postponed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 continue;
2390#endif
2391
2392cmdline_changed:
Bram Moolenaar153b7042018-01-31 15:48:32 +01002393 /* Trigger CmdlineChanged autocommands. */
2394 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINECHANGED);
Bram Moolenaar153b7042018-01-31 15:48:32 +01002395
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002397 may_do_incsearch_highlighting(firstc, count, &is_state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398#endif
2399
2400#ifdef FEAT_RIGHTLEFT
2401 if (cmdmsg_rl
2402# ifdef FEAT_ARABIC
Bram Moolenaar693f7dc2019-06-21 02:30:38 +02002403 || (p_arshape && !p_tbidi
2404 && cmdline_has_arabic(0, ccline.cmdlen))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405# endif
2406 )
2407 /* Always redraw the whole command line to fix shaping and
Bram Moolenaar58437e02012-02-22 17:58:04 +01002408 * right-left typing. Not efficient, but it works.
2409 * Do it only when there are no characters left to read
2410 * to avoid useless intermediate redraws. */
2411 if (vpeekc() == NUL)
2412 redrawcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413#endif
2414 }
2415
2416returncmd:
2417
2418#ifdef FEAT_RIGHTLEFT
2419 cmdmsg_rl = FALSE;
2420#endif
2421
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 ExpandCleanup(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002423 ccline.xpc = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424
2425#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaarc7f08b72018-08-12 17:39:14 +02002426 finish_incsearch_highlighting(gotesc, &is_state, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427#endif
2428
2429 if (ccline.cmdbuff != NULL)
2430 {
2431 /*
2432 * Put line in history buffer (":" and "=" only when it was typed).
2433 */
2434#ifdef FEAT_CMDHIST
2435 if (ccline.cmdlen && firstc != NUL
2436 && (some_key_typed || histype == HIST_SEARCH))
2437 {
2438 add_to_history(histype, ccline.cmdbuff, TRUE,
2439 histype == HIST_SEARCH ? firstc : NUL);
2440 if (firstc == ':')
2441 {
2442 vim_free(new_last_cmdline);
2443 new_last_cmdline = vim_strsave(ccline.cmdbuff);
2444 }
2445 }
2446#endif
2447
Bram Moolenaarf8e8c062017-10-22 14:44:17 +02002448 if (gotesc)
2449 abandon_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 }
2451
2452 /*
2453 * If the screen was shifted up, redraw the whole screen (later).
2454 * If the line is too long, clear it, so ruler and shown command do
2455 * not get printed in the middle of it.
2456 */
2457 msg_check();
2458 msg_scroll = save_msg_scroll;
2459 redir_off = FALSE;
2460
2461 /* When the command line was typed, no need for a wait-return prompt. */
2462 if (some_key_typed)
2463 need_wait_return = FALSE;
2464
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02002465 /* Trigger CmdlineLeave autocommands. */
2466 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINELEAVE);
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02002467
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 State = save_State;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002469#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP)
2471 im_save_status(b_im_ptr);
2472 im_set_active(FALSE);
2473#endif
2474#ifdef FEAT_MOUSE
2475 setmouse();
2476#endif
2477#ifdef CURSOR_SHAPE
2478 ui_cursor_shape(); /* may show different cursor shape */
2479#endif
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002480 sb_text_end_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481
Bram Moolenaar438d1762018-09-30 17:11:48 +02002482theend:
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002483 {
2484 char_u *p = ccline.cmdbuff;
2485
Bram Moolenaar438d1762018-09-30 17:11:48 +02002486 if (did_save_ccline)
2487 restore_cmdline(&save_ccline);
2488 else
2489 ccline.cmdbuff = NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002490 return p;
2491 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492}
2493
2494#if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO)
2495/*
2496 * Get a command line with a prompt.
2497 * This is prepared to be called recursively from getcmdline() (e.g. by
2498 * f_input() when evaluating an expression from CTRL-R =).
2499 * Returns the command line in allocated memory, or NULL.
2500 */
2501 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002502getcmdline_prompt(
2503 int firstc,
2504 char_u *prompt, /* command line prompt */
2505 int attr, /* attributes for prompt */
2506 int xp_context, /* type of expansion */
2507 char_u *xp_arg) /* user-defined expansion argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508{
2509 char_u *s;
2510 struct cmdline_info save_ccline;
Bram Moolenaar438d1762018-09-30 17:11:48 +02002511 int did_save_ccline = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 int msg_col_save = msg_col;
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002513 int msg_silent_save = msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514
Bram Moolenaar438d1762018-09-30 17:11:48 +02002515 if (ccline.cmdbuff != NULL)
2516 {
2517 // Save the values of the current cmdline and restore them below.
2518 save_cmdline(&save_ccline);
2519 did_save_ccline = TRUE;
2520 }
2521
2522 vim_memset(&ccline, 0, sizeof(struct cmdline_info));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 ccline.cmdprompt = prompt;
2524 ccline.cmdattr = attr;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002525# ifdef FEAT_EVAL
2526 ccline.xp_context = xp_context;
2527 ccline.xp_arg = xp_arg;
2528 ccline.input_fn = (firstc == '@');
2529# endif
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002530 msg_silent = 0;
Bram Moolenaar438d1762018-09-30 17:11:48 +02002531 s = getcmdline_int(firstc, 1L, 0, FALSE);
2532
2533 if (did_save_ccline)
2534 restore_cmdline(&save_ccline);
2535
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002536 msg_silent = msg_silent_save;
Bram Moolenaar1db1f772011-08-17 16:25:48 +02002537 /* Restore msg_col, the prompt from input() may have changed it.
2538 * But only if called recursively and the commandline is therefore being
2539 * restored to an old one; if not, the input() prompt stays on the screen,
2540 * so we need its modified msg_col left intact. */
2541 if (ccline.cmdbuff != NULL)
2542 msg_col = msg_col_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543
2544 return s;
2545}
2546#endif
2547
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002548/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002549 * Return TRUE when the text must not be changed and we can't switch to
2550 * another window or buffer. Used when editing the command line, evaluating
2551 * 'balloonexpr', etc.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002552 */
2553 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002554text_locked(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002555{
2556#ifdef FEAT_CMDWIN
2557 if (cmdwin_type != 0)
2558 return TRUE;
2559#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002560 return textlock != 0;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002561}
2562
2563/*
2564 * Give an error message for a command that isn't allowed while the cmdline
2565 * window is open or editing the cmdline in another way.
2566 */
2567 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002568text_locked_msg(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002569{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002570 emsg(_(get_text_locked_msg()));
Bram Moolenaar5a497892016-09-03 16:29:04 +02002571}
2572
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002573 char *
Bram Moolenaar5a497892016-09-03 16:29:04 +02002574get_text_locked_msg(void)
2575{
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002576#ifdef FEAT_CMDWIN
2577 if (cmdwin_type != 0)
Bram Moolenaar5a497892016-09-03 16:29:04 +02002578 return e_cmdwin;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002579#endif
Bram Moolenaar5a497892016-09-03 16:29:04 +02002580 return e_secure;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002581}
2582
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002583/*
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002584 * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is
2585 * and give an error message.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002586 */
2587 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002588curbuf_locked(void)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002589{
2590 if (curbuf_lock > 0)
2591 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002592 emsg(_("E788: Not allowed to edit another buffer now"));
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002593 return TRUE;
2594 }
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002595 return allbuf_locked();
2596}
2597
2598/*
2599 * Check if "allbuf_lock" is set and return TRUE when it is and give an error
2600 * message.
2601 */
2602 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002603allbuf_locked(void)
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002604{
2605 if (allbuf_lock > 0)
2606 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002607 emsg(_("E811: Not allowed to change buffer information now"));
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002608 return TRUE;
2609 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002610 return FALSE;
2611}
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002612
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002614cmdline_charsize(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615{
2616#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2617 if (cmdline_star > 0) /* showing '*', always 1 position */
2618 return 1;
2619#endif
2620 return ptr2cells(ccline.cmdbuff + idx);
2621}
2622
2623/*
2624 * Compute the offset of the cursor on the command line for the prompt and
2625 * indent.
2626 */
2627 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002628set_cmdspos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002630 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631 ccline.cmdspos = 1 + ccline.cmdindent;
2632 else
2633 ccline.cmdspos = 0 + ccline.cmdindent;
2634}
2635
2636/*
2637 * Compute the screen position for the cursor on the command line.
2638 */
2639 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002640set_cmdspos_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641{
2642 int i, m, c;
2643
2644 set_cmdspos();
2645 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002646 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002648 if (m < 0) /* overflow, Columns or Rows at weird value */
2649 m = MAXCOL;
2650 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 else
2652 m = MAXCOL;
2653 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
2654 {
2655 c = cmdline_charsize(i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 /* Count ">" for double-wide multi-byte char that doesn't fit. */
2657 if (has_mbyte)
2658 correct_cmdspos(i, c);
Bram Moolenaarf9821062008-06-20 16:31:07 +00002659 /* If the cmdline doesn't fit, show cursor on last visible char.
2660 * Don't move the cursor itself, so we can still append. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 if ((ccline.cmdspos += c) >= m)
2662 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663 ccline.cmdspos -= c;
2664 break;
2665 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002667 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 }
2669}
2670
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671/*
2672 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2673 * character that doesn't fit, so that a ">" must be displayed.
2674 */
2675 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002676correct_cmdspos(int idx, int cells)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002678 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2680 && ccline.cmdspos % Columns + cells > Columns)
2681 ccline.cmdspos++;
2682}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683
2684/*
2685 * Get an Ex command line for the ":" command.
2686 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002688getexline(
2689 int c, /* normally ':', NUL for ":append" */
2690 void *cookie UNUSED,
Bram Moolenaare96a2492019-06-25 04:12:16 +02002691 int indent, /* indent for inside conditionals */
2692 int do_concat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693{
2694 /* When executing a register, remove ':' that's in front of each line. */
2695 if (exec_from_reg && vpeekc() == ':')
2696 (void)vgetc();
Bram Moolenaare96a2492019-06-25 04:12:16 +02002697 return getcmdline(c, 1L, indent, do_concat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698}
2699
2700/*
2701 * Get an Ex command line for Ex mode.
2702 * In Ex mode we only use the OS supplied line editing features and no
2703 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002704 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002707getexmodeline(
2708 int promptc, /* normally ':', NUL for ":append" and '?' for
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002709 :s prompt */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002710 void *cookie UNUSED,
Bram Moolenaare96a2492019-06-25 04:12:16 +02002711 int indent, /* indent for inside conditionals */
2712 int do_concat UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002714 garray_T line_ga;
2715 char_u *pend;
2716 int startcol = 0;
Bram Moolenaar76624232007-07-28 12:21:47 +00002717 int c1 = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002718 int escaped = FALSE; /* CTRL-V typed */
2719 int vcol = 0;
2720 char_u *p;
Bram Moolenaar76624232007-07-28 12:21:47 +00002721 int prev_char;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002722 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723
2724 /* Switch cursor on now. This avoids that it happens after the "\n", which
2725 * confuses the system function that computes tabstops. */
2726 cursor_on();
2727
2728 /* always start in column 0; write a newline if necessary */
2729 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002730 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002732 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002734 /* indent that is only displayed, not in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002735 if (p_prompt)
2736 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737 while (indent-- > 0)
2738 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740 }
2741
2742 ga_init2(&line_ga, 1, 30);
2743
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002744 /* autoindent for :insert and :append is in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002745 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002746 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002747 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002748 while (indent >= 8)
2749 {
2750 ga_append(&line_ga, TAB);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002751 msg_puts(" ");
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002752 indent -= 8;
2753 }
2754 while (indent-- > 0)
2755 {
2756 ga_append(&line_ga, ' ');
2757 msg_putchar(' ');
2758 }
2759 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002760 ++no_mapping;
2761 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002762
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763 /*
2764 * Get the line, one character at a time.
2765 */
2766 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002767 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002769 long sw;
2770 char_u *s;
2771
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772 if (ga_grow(&line_ga, 40) == FAIL)
2773 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774
Bram Moolenaarba748c82017-02-26 14:00:07 +01002775 /*
2776 * Get one character at a time.
2777 */
Bram Moolenaar76624232007-07-28 12:21:47 +00002778 prev_char = c1;
Bram Moolenaarba748c82017-02-26 14:00:07 +01002779
2780 /* Check for a ":normal" command and no more characters left. */
2781 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
2782 c1 = '\n';
2783 else
2784 c1 = vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785
2786 /*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002787 * Handle line editing.
2788 * Previously this was left to the system, putting the terminal in
2789 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002791 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002793 msg_putchar('\n');
2794 break;
2795 }
2796
Bram Moolenaarabbc4482017-01-24 15:57:55 +01002797 if (c1 == K_PS)
2798 {
2799 bracketed_paste(PASTE_EX, FALSE, &line_ga);
2800 goto redraw;
2801 }
2802
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002803 if (!escaped)
2804 {
2805 /* CR typed means "enter", which is NL */
2806 if (c1 == '\r')
2807 c1 = '\n';
2808
2809 if (c1 == BS || c1 == K_BS
2810 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002812 if (line_ga.ga_len > 0)
2813 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002814 if (has_mbyte)
2815 {
2816 p = (char_u *)line_ga.ga_data;
2817 p[line_ga.ga_len] = NUL;
2818 len = (*mb_head_off)(p, p + line_ga.ga_len - 1) + 1;
2819 line_ga.ga_len -= len;
2820 }
2821 else
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002822 --line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002823 goto redraw;
2824 }
2825 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826 }
2827
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002828 if (c1 == Ctrl_U)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002830 msg_col = startcol;
2831 msg_clr_eos();
2832 line_ga.ga_len = 0;
Bram Moolenaarda636572015-04-03 17:11:45 +02002833 goto redraw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002834 }
2835
2836 if (c1 == Ctrl_T)
2837 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002838 sw = get_sw_value(curbuf);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002839 p = (char_u *)line_ga.ga_data;
2840 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002841 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaar14f24742012-08-08 18:01:05 +02002842 indent += sw - indent % sw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002843add_indent:
Bram Moolenaar597a4222014-06-25 14:39:50 +02002844 while (get_indent_str(p, 8, FALSE) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002846 (void)ga_grow(&line_ga, 2); /* one more for the NUL */
Bram Moolenaarda636572015-04-03 17:11:45 +02002847 p = (char_u *)line_ga.ga_data;
2848 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002849 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2850 *s = ' ';
2851 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002853redraw:
2854 /* redraw the line */
2855 msg_col = startcol;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002856 vcol = 0;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002857 p = (char_u *)line_ga.ga_data;
2858 p[line_ga.ga_len] = NUL;
2859 while (p < (char_u *)line_ga.ga_data + line_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002861 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002863 do
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002864 msg_putchar(' ');
Bram Moolenaarabab0b02019-03-30 18:47:01 +01002865 while (++vcol % 8);
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002866 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002868 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002870 len = MB_PTR2LEN(p);
2871 msg_outtrans_len(p, len);
2872 vcol += ptr2cells(p);
2873 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 }
2875 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002876 msg_clr_eos();
Bram Moolenaar76624232007-07-28 12:21:47 +00002877 windgoto(msg_row, msg_col);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002878 continue;
2879 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002881 if (c1 == Ctrl_D)
2882 {
2883 /* Delete one shiftwidth. */
2884 p = (char_u *)line_ga.ga_data;
2885 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002887 if (prev_char == '^')
2888 ex_keep_indent = TRUE;
2889 indent = 0;
2890 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 }
2892 else
2893 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002894 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002895 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaarda636572015-04-03 17:11:45 +02002896 if (indent > 0)
2897 {
2898 --indent;
2899 indent -= indent % get_sw_value(curbuf);
2900 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02002902 while (get_indent_str(p, 8, FALSE) > indent)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002903 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002904 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002905 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2906 --line_ga.ga_len;
2907 }
2908 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002910
2911 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2912 {
2913 escaped = TRUE;
2914 continue;
2915 }
2916
2917 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
2918 if (IS_SPECIAL(c1))
2919 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002921
2922 if (IS_SPECIAL(c1))
2923 c1 = '?';
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002924 if (has_mbyte)
2925 len = (*mb_char2bytes)(c1,
2926 (char_u *)line_ga.ga_data + line_ga.ga_len);
2927 else
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002928 {
2929 len = 1;
2930 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
2931 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002932 if (c1 == '\n')
2933 msg_putchar('\n');
2934 else if (c1 == TAB)
2935 {
2936 /* Don't use chartabsize(), 'ts' can be different */
2937 do
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002938 msg_putchar(' ');
Bram Moolenaarabab0b02019-03-30 18:47:01 +01002939 while (++vcol % 8);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002940 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002943 msg_outtrans_len(
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002944 ((char_u *)line_ga.ga_data) + line_ga.ga_len, len);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002945 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946 }
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002947 line_ga.ga_len += len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002948 escaped = FALSE;
2949
2950 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002951 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002952
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002953 /* We are done when a NL is entered, but not when it comes after an
2954 * odd number of backslashes, that results in a NUL. */
2955 if (line_ga.ga_len > 0 && pend[-1] == '\n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956 {
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002957 int bcount = 0;
2958
2959 while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\')
2960 ++bcount;
2961
2962 if (bcount > 0)
2963 {
2964 /* Halve the number of backslashes: "\NL" -> "NUL", "\\NL" ->
2965 * "\NL", etc. */
2966 line_ga.ga_len -= (bcount + 1) / 2;
2967 pend -= (bcount + 1) / 2;
2968 pend[-1] = '\n';
2969 }
2970
2971 if ((bcount & 1) == 0)
2972 {
2973 --line_ga.ga_len;
2974 --pend;
2975 *pend = NUL;
2976 break;
2977 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978 }
2979 }
2980
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002981 --no_mapping;
2982 --allow_keys;
2983
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984 /* make following messages go to the next line */
2985 msg_didout = FALSE;
2986 msg_col = 0;
2987 if (msg_row < Rows - 1)
2988 ++msg_row;
2989 emsg_on_display = FALSE; /* don't want ui_delay() */
2990
2991 if (got_int)
2992 ga_clear(&line_ga);
2993
2994 return (char_u *)line_ga.ga_data;
2995}
2996
Bram Moolenaare344bea2005-09-01 20:46:49 +00002997# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
2998 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002999/*
3000 * Return TRUE if ccline.overstrike is on.
3001 */
3002 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003003cmdline_overstrike(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004{
3005 return ccline.overstrike;
3006}
3007
3008/*
3009 * Return TRUE if the cursor is at the end of the cmdline.
3010 */
3011 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003012cmdline_at_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013{
3014 return (ccline.cmdpos >= ccline.cmdlen);
3015}
3016#endif
3017
Bram Moolenaar9372a112005-12-06 19:59:18 +00003018#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019/*
3020 * Return the virtual column number at the current cursor position.
3021 * This is used by the IM code to obtain the start of the preedit string.
3022 */
3023 colnr_T
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003024cmdline_getvcol_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025{
3026 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
3027 return MAXCOL;
3028
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 if (has_mbyte)
3030 {
3031 colnr_T col;
3032 int i = 0;
3033
3034 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003035 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036
3037 return col;
3038 }
3039 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040 return ccline.cmdpos;
3041}
3042#endif
3043
3044#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
3045/*
3046 * If part of the command line is an IM preedit string, redraw it with
3047 * IM feedback attributes. The cursor position is restored after drawing.
3048 */
3049 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003050redrawcmd_preedit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051{
3052 if ((State & CMDLINE)
3053 && xic != NULL
Bram Moolenaar494c82a2006-09-14 08:25:49 +00003054 /* && im_get_status() doesn't work when using SCIM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003055 && !p_imdisable
3056 && im_is_preediting())
3057 {
3058 int cmdpos = 0;
3059 int cmdspos;
3060 int old_row;
3061 int old_col;
3062 colnr_T col;
3063
3064 old_row = msg_row;
3065 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003066 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 if (has_mbyte)
3069 {
3070 for (col = 0; col < preedit_start_col
3071 && cmdpos < ccline.cmdlen; ++col)
3072 {
3073 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003074 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075 }
3076 }
3077 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078 {
3079 cmdspos += preedit_start_col;
3080 cmdpos += preedit_start_col;
3081 }
3082
3083 msg_row = cmdline_row + (cmdspos / (int)Columns);
3084 msg_col = cmdspos % (int)Columns;
3085 if (msg_row >= Rows)
3086 msg_row = Rows - 1;
3087
3088 for (col = 0; cmdpos < ccline.cmdlen; ++col)
3089 {
3090 int char_len;
3091 int char_attr;
3092
3093 char_attr = im_get_feedback_attr(col);
3094 if (char_attr < 0)
3095 break; /* end of preedit string */
3096
Bram Moolenaar071d4272004-06-13 20:20:40 +00003097 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003098 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100 char_len = 1;
3101
3102 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
3103 cmdpos += char_len;
3104 }
3105
3106 msg_row = old_row;
3107 msg_col = old_col;
3108 }
3109}
3110#endif /* FEAT_XIM && FEAT_GUI_GTK */
3111
3112/*
3113 * Allocate a new command line buffer.
3114 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115 */
3116 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003117alloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118{
3119 /*
3120 * give some extra space to avoid having to allocate all the time
3121 */
3122 if (len < 80)
3123 len = 100;
3124 else
3125 len += 20;
3126
3127 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */
3128 ccline.cmdbufflen = len;
3129}
3130
3131/*
3132 * Re-allocate the command line to length len + something extra.
3133 * return FAIL for failure, OK otherwise
3134 */
3135 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003136realloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003137{
3138 char_u *p;
3139
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003140 if (len < ccline.cmdbufflen)
3141 return OK; /* no need to resize */
3142
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 p = ccline.cmdbuff;
3144 alloc_cmdbuff(len); /* will get some more */
3145 if (ccline.cmdbuff == NULL) /* out of memory */
3146 {
3147 ccline.cmdbuff = p; /* keep the old one */
3148 return FAIL;
3149 }
Bram Moolenaar35a34232010-08-13 16:51:26 +02003150 /* There isn't always a NUL after the command, but it may need to be
3151 * there, thus copy up to the NUL and add a NUL. */
3152 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen);
3153 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 vim_free(p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003155
3156 if (ccline.xpc != NULL
3157 && ccline.xpc->xp_pattern != NULL
3158 && ccline.xpc->xp_context != EXPAND_NOTHING
3159 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL)
3160 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00003161 int i = (int)(ccline.xpc->xp_pattern - p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003162
3163 /* If xp_pattern points inside the old cmdbuff it needs to be adjusted
3164 * to point into the newly allocated memory. */
3165 if (i >= 0 && i <= ccline.cmdlen)
3166 ccline.xpc->xp_pattern = ccline.cmdbuff + i;
3167 }
3168
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169 return OK;
3170}
3171
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003172#if defined(FEAT_ARABIC) || defined(PROTO)
3173static char_u *arshape_buf = NULL;
3174
3175# if defined(EXITFREE) || defined(PROTO)
3176 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003177free_cmdline_buf(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003178{
3179 vim_free(arshape_buf);
3180}
3181# endif
3182#endif
3183
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184/*
3185 * Draw part of the cmdline at the current cursor position. But draw stars
3186 * when cmdline_star is TRUE.
3187 */
3188 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003189draw_cmdline(int start, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190{
3191#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
3192 int i;
3193
3194 if (cmdline_star > 0)
3195 for (i = 0; i < len; ++i)
3196 {
3197 msg_putchar('*');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003199 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 }
3201 else
3202#endif
3203#ifdef FEAT_ARABIC
Bram Moolenaar693f7dc2019-06-21 02:30:38 +02003204 if (p_arshape && !p_tbidi && cmdline_has_arabic(start, len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206 static int buflen = 0;
3207 char_u *p;
3208 int j;
3209 int newlen = 0;
3210 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003211 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212 int prev_c = 0;
3213 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003214 int u8c;
3215 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217
3218 /*
3219 * Do arabic shaping into a temporary buffer. This is very
3220 * inefficient!
3221 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003222 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 {
3224 /* Re-allocate the buffer. We keep it around to avoid a lot of
3225 * alloc()/free() calls. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003226 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003227 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003228 arshape_buf = alloc(buflen);
3229 if (arshape_buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 return; /* out of memory */
3231 }
3232
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003233 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
3234 {
3235 /* Prepend a space to draw the leading composing char on. */
3236 arshape_buf[0] = ' ';
3237 newlen = 1;
3238 }
3239
Bram Moolenaar071d4272004-06-13 20:20:40 +00003240 for (j = start; j < start + len; j += mb_l)
3241 {
3242 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003243 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003244 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245 if (ARABIC_CHAR(u8c))
3246 {
3247 /* Do Arabic shaping. */
3248 if (cmdmsg_rl)
3249 {
3250 /* displaying from right to left */
3251 pc = prev_c;
3252 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003253 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003254 if (j + mb_l >= start + len)
3255 nc = NUL;
3256 else
3257 nc = utf_ptr2char(p + mb_l);
3258 }
3259 else
3260 {
3261 /* displaying from left to right */
3262 if (j + mb_l >= start + len)
3263 pc = NUL;
3264 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003265 {
3266 int pcc[MAX_MCO];
3267
3268 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003270 pc1 = pcc[0];
3271 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003272 nc = prev_c;
3273 }
3274 prev_c = u8c;
3275
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003276 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003278 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003279 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003280 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003281 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
3282 if (u8cc[1] != 0)
3283 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003284 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285 }
3286 }
3287 else
3288 {
3289 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003290 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291 newlen += mb_l;
3292 }
3293 }
3294
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003295 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296 }
3297 else
3298#endif
3299 msg_outtrans_len(ccline.cmdbuff + start, len);
3300}
3301
3302/*
3303 * Put a character on the command line. Shifts the following text to the
3304 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
3305 * "c" must be printable (fit in one display cell)!
3306 */
3307 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003308putcmdline(int c, int shift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003309{
3310 if (cmd_silent)
3311 return;
3312 msg_no_more = TRUE;
3313 msg_putchar(c);
3314 if (shift)
3315 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
3316 msg_no_more = FALSE;
3317 cursorcmd();
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003318 extra_char = c;
3319 extra_char_shift = shift;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320}
3321
3322/*
3323 * Undo a putcmdline(c, FALSE).
3324 */
3325 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003326unputcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327{
3328 if (cmd_silent)
3329 return;
3330 msg_no_more = TRUE;
3331 if (ccline.cmdlen == ccline.cmdpos)
3332 msg_putchar(' ');
Bram Moolenaar64fdf5c2012-06-06 12:03:06 +02003333 else if (has_mbyte)
3334 draw_cmdline(ccline.cmdpos,
3335 (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336 else
3337 draw_cmdline(ccline.cmdpos, 1);
3338 msg_no_more = FALSE;
3339 cursorcmd();
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003340 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341}
3342
3343/*
3344 * Put the given string, of the given length, onto the command line.
3345 * If len is -1, then STRLEN() is used to calculate the length.
3346 * If 'redraw' is TRUE then the new part of the command line, and the remaining
3347 * part will be redrawn, otherwise it will not. If this function is called
3348 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
3349 * called afterwards.
3350 */
3351 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003352put_on_cmdline(char_u *str, int len, int redraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003353{
3354 int retval;
3355 int i;
3356 int m;
3357 int c;
3358
3359 if (len < 0)
3360 len = (int)STRLEN(str);
3361
3362 /* Check if ccline.cmdbuff needs to be longer */
3363 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003364 retval = realloc_cmdbuff(ccline.cmdlen + len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365 else
3366 retval = OK;
3367 if (retval == OK)
3368 {
3369 if (!ccline.overstrike)
3370 {
3371 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
3372 ccline.cmdbuff + ccline.cmdpos,
3373 (size_t)(ccline.cmdlen - ccline.cmdpos));
3374 ccline.cmdlen += len;
3375 }
3376 else
3377 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378 if (has_mbyte)
3379 {
3380 /* Count nr of characters in the new string. */
3381 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003382 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383 ++m;
3384 /* Count nr of bytes in cmdline that are overwritten by these
3385 * characters. */
3386 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003387 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388 --m;
3389 if (i < ccline.cmdlen)
3390 {
3391 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
3392 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
3393 ccline.cmdlen += ccline.cmdpos + len - i;
3394 }
3395 else
3396 ccline.cmdlen = ccline.cmdpos + len;
3397 }
Bram Moolenaar13505972019-01-24 15:04:48 +01003398 else if (ccline.cmdpos + len > ccline.cmdlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 ccline.cmdlen = ccline.cmdpos + len;
3400 }
3401 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
3402 ccline.cmdbuff[ccline.cmdlen] = NUL;
3403
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404 if (enc_utf8)
3405 {
3406 /* When the inserted text starts with a composing character,
3407 * backup to the character before it. There could be two of them.
3408 */
3409 i = 0;
3410 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3411 while (ccline.cmdpos > 0 && utf_iscomposing(c))
3412 {
3413 i = (*mb_head_off)(ccline.cmdbuff,
3414 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3415 ccline.cmdpos -= i;
3416 len += i;
3417 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3418 }
Bram Moolenaar13505972019-01-24 15:04:48 +01003419#ifdef FEAT_ARABIC
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
3421 {
3422 /* Check the previous character for Arabic combining pair. */
3423 i = (*mb_head_off)(ccline.cmdbuff,
3424 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3425 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
3426 + ccline.cmdpos - i), c))
3427 {
3428 ccline.cmdpos -= i;
3429 len += i;
3430 }
3431 else
3432 i = 0;
3433 }
Bram Moolenaar13505972019-01-24 15:04:48 +01003434#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435 if (i != 0)
3436 {
3437 /* Also backup the cursor position. */
3438 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
3439 ccline.cmdspos -= i;
3440 msg_col -= i;
3441 if (msg_col < 0)
3442 {
3443 msg_col += Columns;
3444 --msg_row;
3445 }
3446 }
3447 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448
3449 if (redraw && !cmd_silent)
3450 {
3451 msg_no_more = TRUE;
3452 i = cmdline_row;
Bram Moolenaar73dc59a2011-09-30 17:46:21 +02003453 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
3455 /* Avoid clearing the rest of the line too often. */
3456 if (cmdline_row != i || ccline.overstrike)
3457 msg_clr_eos();
3458 msg_no_more = FALSE;
3459 }
Bram Moolenaar14184a32019-02-16 15:10:30 +01003460 if (KeyTyped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 {
Bram Moolenaar14184a32019-02-16 15:10:30 +01003462 m = Columns * Rows;
3463 if (m < 0) /* overflow, Columns or Rows at weird value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464 m = MAXCOL;
Bram Moolenaar14184a32019-02-16 15:10:30 +01003465 }
3466 else
3467 m = MAXCOL;
3468 for (i = 0; i < len; ++i)
3469 {
3470 c = cmdline_charsize(ccline.cmdpos);
3471 /* count ">" for a double-wide char that doesn't fit. */
3472 if (has_mbyte)
3473 correct_cmdspos(ccline.cmdpos, c);
3474 /* Stop cursor at the end of the screen, but do increment the
3475 * insert position, so that entering a very long command
3476 * works, even though you can't see it. */
3477 if (ccline.cmdspos + c < m)
3478 ccline.cmdspos += c;
Bram Moolenaar13505972019-01-24 15:04:48 +01003479
Bram Moolenaar14184a32019-02-16 15:10:30 +01003480 if (has_mbyte)
3481 {
3482 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
3483 if (c > len - i - 1)
3484 c = len - i - 1;
3485 ccline.cmdpos += c;
3486 i += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487 }
Bram Moolenaar14184a32019-02-16 15:10:30 +01003488 ++ccline.cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489 }
3490 }
3491 if (redraw)
3492 msg_check();
3493 return retval;
3494}
3495
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003496static struct cmdline_info prev_ccline;
3497static int prev_ccline_used = FALSE;
3498
3499/*
3500 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
3501 * and overwrite it. But get_cmdline_str() may need it, thus make it
3502 * available globally in prev_ccline.
3503 */
3504 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003505save_cmdline(struct cmdline_info *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003506{
3507 if (!prev_ccline_used)
3508 {
3509 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info));
3510 prev_ccline_used = TRUE;
3511 }
3512 *ccp = prev_ccline;
3513 prev_ccline = ccline;
Bram Moolenaar438d1762018-09-30 17:11:48 +02003514 ccline.cmdbuff = NULL; // signal that ccline is not in use
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003515}
3516
3517/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003518 * Restore ccline after it has been saved with save_cmdline().
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003519 */
3520 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003521restore_cmdline(struct cmdline_info *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003522{
3523 ccline = prev_ccline;
3524 prev_ccline = *ccp;
3525}
3526
Bram Moolenaar8299df92004-07-10 09:47:34 +00003527/*
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003528 * Paste a yank register into the command line.
3529 * Used by CTRL-R command in command-line mode.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003530 * insert_reg() can't be used here, because special characters from the
3531 * register contents will be interpreted as commands.
3532 *
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003533 * Return FAIL for failure, OK otherwise.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003534 */
3535 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003536cmdline_paste(
3537 int regname,
3538 int literally, /* Insert text literally instead of "as typed" */
3539 int remcr) /* remove trailing CR */
Bram Moolenaar8299df92004-07-10 09:47:34 +00003540{
3541 long i;
3542 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003543 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003544 int allocated;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003545
3546 /* check for valid regname; also accept special characters for CTRL-R in
3547 * the command line */
3548 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
Bram Moolenaare2c8d832018-05-01 19:24:03 +02003549 && regname != Ctrl_A && regname != Ctrl_L
3550 && !valid_yank_reg(regname, FALSE))
Bram Moolenaar8299df92004-07-10 09:47:34 +00003551 return FAIL;
3552
3553 /* A register containing CTRL-R can cause an endless loop. Allow using
3554 * CTRL-C to break the loop. */
3555 line_breakcheck();
3556 if (got_int)
3557 return FAIL;
3558
3559#ifdef FEAT_CLIPBOARD
3560 regname = may_get_selection(regname);
3561#endif
3562
Bram Moolenaar438d1762018-09-30 17:11:48 +02003563 // Need to set "textlock" to avoid nasty things like going to another
3564 // buffer when evaluating an expression.
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003565 ++textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003566 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003567 --textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003568
3569 if (i)
3570 {
3571 /* Got the value of a special register in "arg". */
3572 if (arg == NULL)
3573 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003574
3575 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
3576 * part of the word. */
3577 p = arg;
3578 if (p_is && regname == Ctrl_W)
3579 {
3580 char_u *w;
3581 int len;
3582
3583 /* Locate start of last word in the cmd buffer. */
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003584 for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; )
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003585 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003586 if (has_mbyte)
3587 {
3588 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
3589 if (!vim_iswordc(mb_ptr2char(w - len)))
3590 break;
3591 w -= len;
3592 }
3593 else
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003594 {
3595 if (!vim_iswordc(w[-1]))
3596 break;
3597 --w;
3598 }
3599 }
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003600 len = (int)((ccline.cmdbuff + ccline.cmdpos) - w);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003601 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
3602 p += len;
3603 }
3604
3605 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003606 if (allocated)
3607 vim_free(arg);
3608 return OK;
3609 }
3610
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003611 return cmdline_paste_reg(regname, literally, remcr);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003612}
3613
3614/*
3615 * Put a string on the command line.
3616 * When "literally" is TRUE, insert literally.
3617 * When "literally" is FALSE, insert as typed, but don't leave the command
3618 * line.
3619 */
3620 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003621cmdline_paste_str(char_u *s, int literally)
Bram Moolenaar8299df92004-07-10 09:47:34 +00003622{
3623 int c, cv;
3624
3625 if (literally)
3626 put_on_cmdline(s, -1, TRUE);
3627 else
3628 while (*s != NUL)
3629 {
3630 cv = *s;
3631 if (cv == Ctrl_V && s[1])
3632 ++s;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003633 if (has_mbyte)
Bram Moolenaar48be32b2008-06-20 10:56:16 +00003634 c = mb_cptr2char_adv(&s);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003635 else
Bram Moolenaar8299df92004-07-10 09:47:34 +00003636 c = *s++;
Bram Moolenaare79abdd2012-06-29 13:44:41 +02003637 if (cv == Ctrl_V || c == ESC || c == Ctrl_C
3638 || c == CAR || c == NL || c == Ctrl_L
Bram Moolenaar8299df92004-07-10 09:47:34 +00003639#ifdef UNIX
3640 || c == intr_char
3641#endif
3642 || (c == Ctrl_BSL && *s == Ctrl_N))
3643 stuffcharReadbuff(Ctrl_V);
3644 stuffcharReadbuff(c);
3645 }
3646}
3647
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648#ifdef FEAT_WILDMENU
3649/*
3650 * Delete characters on the command line, from "from" to the current
3651 * position.
3652 */
3653 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003654cmdline_del(int from)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655{
3656 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
3657 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3658 ccline.cmdlen -= ccline.cmdpos - from;
3659 ccline.cmdpos = from;
3660}
3661#endif
3662
3663/*
Bram Moolenaar89c79b92016-05-05 17:18:41 +02003664 * This function is called when the screen size changes and with incremental
3665 * search and in other situations where the command line may have been
3666 * overwritten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667 */
3668 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003669redrawcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670{
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003671 redrawcmdline_ex(TRUE);
3672}
3673
3674 void
3675redrawcmdline_ex(int do_compute_cmdrow)
3676{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677 if (cmd_silent)
3678 return;
3679 need_wait_return = FALSE;
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003680 if (do_compute_cmdrow)
3681 compute_cmdrow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 redrawcmd();
3683 cursorcmd();
3684}
3685
3686 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003687redrawcmdprompt(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688{
3689 int i;
3690
3691 if (cmd_silent)
3692 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003693 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694 msg_putchar(ccline.cmdfirstc);
3695 if (ccline.cmdprompt != NULL)
3696 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003697 msg_puts_attr((char *)ccline.cmdprompt, ccline.cmdattr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
3699 /* do the reverse of set_cmdspos() */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003700 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701 --ccline.cmdindent;
3702 }
3703 else
3704 for (i = ccline.cmdindent; i > 0; --i)
3705 msg_putchar(' ');
3706}
3707
3708/*
3709 * Redraw what is currently on the command line.
3710 */
3711 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003712redrawcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713{
3714 if (cmd_silent)
3715 return;
3716
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003717 /* when 'incsearch' is set there may be no command line while redrawing */
3718 if (ccline.cmdbuff == NULL)
3719 {
3720 windgoto(cmdline_row, 0);
3721 msg_clr_eos();
3722 return;
3723 }
3724
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725 msg_start();
3726 redrawcmdprompt();
3727
3728 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
3729 msg_no_more = TRUE;
3730 draw_cmdline(0, ccline.cmdlen);
3731 msg_clr_eos();
3732 msg_no_more = FALSE;
3733
3734 set_cmdspos_cursor();
Bram Moolenaara92522f2017-07-15 15:21:38 +02003735 if (extra_char != NUL)
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003736 putcmdline(extra_char, extra_char_shift);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737
3738 /*
3739 * An emsg() before may have set msg_scroll. This is used in normal mode,
3740 * in cmdline mode we can reset them now.
3741 */
3742 msg_scroll = FALSE; /* next message overwrites cmdline */
3743
3744 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
3745 * in cmdline mode */
3746 skip_redraw = FALSE;
3747}
3748
3749 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003750compute_cmdrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003752 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753 cmdline_row = Rows - 1;
3754 else
3755 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
Bram Moolenaare0de17d2017-09-24 16:24:34 +02003756 + lastwin->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757}
3758
3759 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003760cursorcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761{
3762 if (cmd_silent)
3763 return;
3764
3765#ifdef FEAT_RIGHTLEFT
3766 if (cmdmsg_rl)
3767 {
3768 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3769 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3770 if (msg_row <= 0)
3771 msg_row = Rows - 1;
3772 }
3773 else
3774#endif
3775 {
3776 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3777 msg_col = ccline.cmdspos % (int)Columns;
3778 if (msg_row >= Rows)
3779 msg_row = Rows - 1;
3780 }
3781
3782 windgoto(msg_row, msg_col);
3783#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar5c6dbcb2017-08-30 22:00:20 +02003784 if (p_imst == IM_ON_THE_SPOT)
3785 redrawcmd_preedit();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786#endif
3787#ifdef MCH_CURSOR_SHAPE
3788 mch_update_cursor();
3789#endif
3790}
3791
3792 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003793gotocmdline(int clr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794{
3795 msg_start();
3796#ifdef FEAT_RIGHTLEFT
3797 if (cmdmsg_rl)
3798 msg_col = Columns - 1;
3799 else
3800#endif
3801 msg_col = 0; /* always start in column 0 */
3802 if (clr) /* clear the bottom line(s) */
3803 msg_clr_eos(); /* will reset clear_cmdline */
3804 windgoto(cmdline_row, 0);
3805}
3806
3807/*
3808 * Check the word in front of the cursor for an abbreviation.
3809 * Called when the non-id character "c" has been entered.
3810 * When an abbreviation is recognized it is removed from the text with
3811 * backspaces and the replacement string is inserted, followed by "c".
3812 */
3813 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003814ccheck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815{
Bram Moolenaar5e3423d2018-05-13 18:36:27 +02003816 int spos = 0;
3817
Bram Moolenaar071d4272004-06-13 20:20:40 +00003818 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
3819 return FALSE;
3820
Bram Moolenaar5e3423d2018-05-13 18:36:27 +02003821 /* Do not consider '<,'> be part of the mapping, skip leading whitespace.
3822 * Actually accepts any mark. */
3823 while (VIM_ISWHITE(ccline.cmdbuff[spos]) && spos < ccline.cmdlen)
3824 spos++;
3825 if (ccline.cmdlen - spos > 5
3826 && ccline.cmdbuff[spos] == '\''
3827 && ccline.cmdbuff[spos + 2] == ','
3828 && ccline.cmdbuff[spos + 3] == '\'')
3829 spos += 5;
3830 else
3831 /* check abbreviation from the beginning of the commandline */
3832 spos = 0;
3833
3834 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, spos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835}
3836
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003837#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3838 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003839sort_func_compare(const void *s1, const void *s2)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003840{
3841 char_u *p1 = *(char_u **)s1;
3842 char_u *p2 = *(char_u **)s2;
3843
3844 if (*p1 != '<' && *p2 == '<') return -1;
3845 if (*p1 == '<' && *p2 != '<') return 1;
3846 return STRCMP(p1, p2);
3847}
3848#endif
3849
Bram Moolenaar071d4272004-06-13 20:20:40 +00003850/*
3851 * Return FAIL if this is not an appropriate context in which to do
3852 * completion of anything, return OK if it is (even if there are no matches).
3853 * For the caller, this means that the character is just passed through like a
3854 * normal character (instead of being expanded). This allows :s/^I^D etc.
3855 */
3856 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003857nextwild(
3858 expand_T *xp,
3859 int type,
3860 int options, /* extra options for ExpandOne() */
3861 int escape) /* if TRUE, escape the returned matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862{
3863 int i, j;
3864 char_u *p1;
3865 char_u *p2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 int difflen;
3867 int v;
3868
3869 if (xp->xp_numfiles == -1)
3870 {
3871 set_expand_context(xp);
3872 cmd_showtail = expand_showtail(xp);
3873 }
3874
3875 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
3876 {
3877 beep_flush();
3878 return OK; /* Something illegal on command line */
3879 }
3880 if (xp->xp_context == EXPAND_NOTHING)
3881 {
3882 /* Caller can use the character as a normal char instead */
3883 return FAIL;
3884 }
3885
Bram Moolenaar32526b32019-01-19 17:43:09 +01003886 msg_puts("..."); /* show that we are busy */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887 out_flush();
3888
3889 i = (int)(xp->xp_pattern - ccline.cmdbuff);
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003890 xp->xp_pattern_len = ccline.cmdpos - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891
3892 if (type == WILD_NEXT || type == WILD_PREV)
3893 {
3894 /*
3895 * Get next/previous match for a previous expanded pattern.
3896 */
3897 p2 = ExpandOne(xp, NULL, NULL, 0, type);
3898 }
3899 else
3900 {
3901 /*
3902 * Translate string into pattern and expand it.
3903 */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003904 if ((p1 = addstar(xp->xp_pattern, xp->xp_pattern_len,
3905 xp->xp_context)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906 p2 = NULL;
3907 else
3908 {
Bram Moolenaar94950a92010-12-02 16:01:29 +01003909 int use_options = options |
Bram Moolenaarb3479632012-11-28 16:49:58 +01003910 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT;
3911 if (escape)
3912 use_options |= WILD_ESCAPE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01003913
3914 if (p_wic)
3915 use_options += WILD_ICASE;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003916 p2 = ExpandOne(xp, p1,
3917 vim_strnsave(&ccline.cmdbuff[i], xp->xp_pattern_len),
Bram Moolenaar94950a92010-12-02 16:01:29 +01003918 use_options, type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919 vim_free(p1);
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003920 /* longest match: make sure it is not shorter, happens with :help */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921 if (p2 != NULL && type == WILD_LONGEST)
3922 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003923 for (j = 0; j < xp->xp_pattern_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924 if (ccline.cmdbuff[i + j] == '*'
3925 || ccline.cmdbuff[i + j] == '?')
3926 break;
3927 if ((int)STRLEN(p2) < j)
Bram Moolenaard23a8232018-02-10 18:45:26 +01003928 VIM_CLEAR(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003929 }
3930 }
3931 }
3932
3933 if (p2 != NULL && !got_int)
3934 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003935 difflen = (int)STRLEN(p2) - xp->xp_pattern_len;
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003936 if (ccline.cmdlen + difflen + 4 > ccline.cmdbufflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003938 v = realloc_cmdbuff(ccline.cmdlen + difflen + 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939 xp->xp_pattern = ccline.cmdbuff + i;
3940 }
3941 else
3942 v = OK;
3943 if (v == OK)
3944 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003945 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen],
3946 &ccline.cmdbuff[ccline.cmdpos],
3947 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3948 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949 ccline.cmdlen += difflen;
3950 ccline.cmdpos += difflen;
3951 }
3952 }
3953 vim_free(p2);
3954
3955 redrawcmd();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003956 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957
3958 /* When expanding a ":map" command and no matches are found, assume that
3959 * the key is supposed to be inserted literally */
3960 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL)
3961 return FAIL;
3962
3963 if (xp->xp_numfiles <= 0 && p2 == NULL)
3964 beep_flush();
3965 else if (xp->xp_numfiles == 1)
3966 /* free expanded pattern */
3967 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
3968
3969 return OK;
3970}
3971
3972/*
3973 * Do wildcard expansion on the string 'str'.
3974 * Chars that should not be expanded must be preceded with a backslash.
Bram Moolenaarf9821062008-06-20 16:31:07 +00003975 * Return a pointer to allocated memory containing the new string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976 * Return NULL for failure.
3977 *
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003978 * "orig" is the originally expanded string, copied to allocated memory. It
3979 * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or
3980 * WILD_PREV "orig" should be NULL.
3981 *
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003982 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode"
3983 * is WILD_EXPAND_FREE or WILD_ALL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 *
3985 * mode = WILD_FREE: just free previously expanded matches
3986 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches
3987 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches
3988 * mode = WILD_NEXT: use next match in multiple match, wrap to first
3989 * mode = WILD_PREV: use previous match in multiple match, wrap to first
3990 * mode = WILD_ALL: return all matches concatenated
3991 * mode = WILD_LONGEST: return longest matched part
Bram Moolenaar146e9c32012-03-07 19:18:23 +01003992 * mode = WILD_ALL_KEEP: get all matches, keep matches
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993 *
3994 * options = WILD_LIST_NOTFOUND: list entries without a match
3995 * options = WILD_HOME_REPLACE: do home_replace() for buffer names
3996 * options = WILD_USE_NL: Use '\n' for WILD_ALL
3997 * options = WILD_NO_BEEP: Don't beep for multiple matches
3998 * options = WILD_ADD_SLASH: add a slash after directory names
3999 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries
4000 * options = WILD_SILENT: don't print warning messages
4001 * options = WILD_ESCAPE: put backslash before special chars
Bram Moolenaar94950a92010-12-02 16:01:29 +01004002 * options = WILD_ICASE: ignore case for files
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003 *
4004 * The variables xp->xp_context and xp->xp_backslash must have been set!
4005 */
4006 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004007ExpandOne(
4008 expand_T *xp,
4009 char_u *str,
4010 char_u *orig, /* allocated copy of original of expanded string */
4011 int options,
4012 int mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013{
4014 char_u *ss = NULL;
4015 static int findex;
4016 static char_u *orig_save = NULL; /* kept value of orig */
Bram Moolenaar96426642007-10-30 16:37:15 +00004017 int orig_saved = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018 int i;
4019 long_u len;
4020 int non_suf_match; /* number without matching suffix */
4021
4022 /*
4023 * first handle the case of using an old match
4024 */
4025 if (mode == WILD_NEXT || mode == WILD_PREV)
4026 {
4027 if (xp->xp_numfiles > 0)
4028 {
4029 if (mode == WILD_PREV)
4030 {
4031 if (findex == -1)
4032 findex = xp->xp_numfiles;
4033 --findex;
4034 }
4035 else /* mode == WILD_NEXT */
4036 ++findex;
4037
4038 /*
4039 * When wrapping around, return the original string, set findex to
4040 * -1.
4041 */
4042 if (findex < 0)
4043 {
4044 if (orig_save == NULL)
4045 findex = xp->xp_numfiles - 1;
4046 else
4047 findex = -1;
4048 }
4049 if (findex >= xp->xp_numfiles)
4050 {
4051 if (orig_save == NULL)
4052 findex = 0;
4053 else
4054 findex = -1;
4055 }
4056#ifdef FEAT_WILDMENU
4057 if (p_wmnu)
4058 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files,
4059 findex, cmd_showtail);
4060#endif
4061 if (findex == -1)
4062 return vim_strsave(orig_save);
4063 return vim_strsave(xp->xp_files[findex]);
4064 }
4065 else
4066 return NULL;
4067 }
4068
Bram Moolenaarecf4de52007-09-30 20:11:26 +00004069 /* free old names */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004070 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST)
4071 {
4072 FreeWild(xp->xp_numfiles, xp->xp_files);
4073 xp->xp_numfiles = -1;
Bram Moolenaard23a8232018-02-10 18:45:26 +01004074 VIM_CLEAR(orig_save);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 }
4076 findex = 0;
4077
4078 if (mode == WILD_FREE) /* only release file name */
4079 return NULL;
4080
4081 if (xp->xp_numfiles == -1)
4082 {
4083 vim_free(orig_save);
4084 orig_save = orig;
Bram Moolenaar96426642007-10-30 16:37:15 +00004085 orig_saved = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086
4087 /*
4088 * Do the expansion.
4089 */
4090 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files,
4091 options) == FAIL)
4092 {
4093#ifdef FNAME_ILLEGAL
4094 /* Illegal file name has been silently skipped. But when there
4095 * are wildcards, the real problem is that there was no match,
4096 * causing the pattern to be added, which has illegal characters.
4097 */
4098 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004099 semsg(_(e_nomatch2), str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100#endif
4101 }
4102 else if (xp->xp_numfiles == 0)
4103 {
4104 if (!(options & WILD_SILENT))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004105 semsg(_(e_nomatch2), str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106 }
4107 else
4108 {
4109 /* Escape the matches for use on the command line. */
4110 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options);
4111
4112 /*
4113 * Check for matching suffixes in file names.
4114 */
Bram Moolenaar146e9c32012-03-07 19:18:23 +01004115 if (mode != WILD_ALL && mode != WILD_ALL_KEEP
4116 && mode != WILD_LONGEST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117 {
4118 if (xp->xp_numfiles)
4119 non_suf_match = xp->xp_numfiles;
4120 else
4121 non_suf_match = 1;
4122 if ((xp->xp_context == EXPAND_FILES
4123 || xp->xp_context == EXPAND_DIRECTORIES)
4124 && xp->xp_numfiles > 1)
4125 {
4126 /*
4127 * More than one match; check suffix.
4128 * The files will have been sorted on matching suffix in
4129 * expand_wildcards, only need to check the first two.
4130 */
4131 non_suf_match = 0;
4132 for (i = 0; i < 2; ++i)
4133 if (match_suffix(xp->xp_files[i]))
4134 ++non_suf_match;
4135 }
4136 if (non_suf_match != 1)
4137 {
4138 /* Can we ever get here unless it's while expanding
4139 * interactively? If not, we can get rid of this all
4140 * together. Don't really want to wait for this message
4141 * (and possibly have to hit return to continue!).
4142 */
4143 if (!(options & WILD_SILENT))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004144 emsg(_(e_toomany));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004145 else if (!(options & WILD_NO_BEEP))
4146 beep_flush();
4147 }
4148 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE))
4149 ss = vim_strsave(xp->xp_files[0]);
4150 }
4151 }
4152 }
4153
4154 /* Find longest common part */
4155 if (mode == WILD_LONGEST && xp->xp_numfiles > 0)
4156 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004157 int mb_len = 1;
4158 int c0, ci;
4159
4160 for (len = 0; xp->xp_files[0][len]; len += mb_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004162 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004164 mb_len = (*mb_ptr2len)(&xp->xp_files[0][len]);
4165 c0 =(* mb_ptr2char)(&xp->xp_files[0][len]);
4166 }
4167 else
Bram Moolenaare4eda3b2015-11-21 16:28:50 +01004168 c0 = xp->xp_files[0][len];
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004169 for (i = 1; i < xp->xp_numfiles; ++i)
4170 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004171 if (has_mbyte)
4172 ci =(* mb_ptr2char)(&xp->xp_files[i][len]);
4173 else
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004174 ci = xp->xp_files[i][len];
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01004175 if (p_fic && (xp->xp_context == EXPAND_DIRECTORIES
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176 || xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004177 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01004178 || xp->xp_context == EXPAND_BUFFERS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004180 if (MB_TOLOWER(c0) != MB_TOLOWER(ci))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181 break;
4182 }
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004183 else if (c0 != ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184 break;
4185 }
4186 if (i < xp->xp_numfiles)
4187 {
4188 if (!(options & WILD_NO_BEEP))
Bram Moolenaar165bc692015-07-21 17:53:25 +02004189 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004190 break;
4191 }
4192 }
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004193
Bram Moolenaar964b3742019-05-24 18:54:09 +02004194 ss = alloc(len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195 if (ss)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004196 vim_strncpy(ss, xp->xp_files[0], (size_t)len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197 findex = -1; /* next p_wc gets first one */
4198 }
4199
4200 /* Concatenate all matching names */
4201 if (mode == WILD_ALL && xp->xp_numfiles > 0)
4202 {
4203 len = 0;
4204 for (i = 0; i < xp->xp_numfiles; ++i)
4205 len += (long_u)STRLEN(xp->xp_files[i]) + 1;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004206 ss = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207 if (ss != NULL)
4208 {
4209 *ss = NUL;
4210 for (i = 0; i < xp->xp_numfiles; ++i)
4211 {
4212 STRCAT(ss, xp->xp_files[i]);
4213 if (i != xp->xp_numfiles - 1)
4214 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " ");
4215 }
4216 }
4217 }
4218
4219 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL)
4220 ExpandCleanup(xp);
4221
Bram Moolenaarecf4de52007-09-30 20:11:26 +00004222 /* Free "orig" if it wasn't stored in "orig_save". */
Bram Moolenaar96426642007-10-30 16:37:15 +00004223 if (!orig_saved)
Bram Moolenaarecf4de52007-09-30 20:11:26 +00004224 vim_free(orig);
4225
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 return ss;
4227}
4228
4229/*
4230 * Prepare an expand structure for use.
4231 */
4232 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004233ExpandInit(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234{
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00004235 xp->xp_pattern = NULL;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004236 xp->xp_pattern_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00004238#ifndef BACKSLASH_IN_FILENAME
4239 xp->xp_shell = FALSE;
4240#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241 xp->xp_numfiles = -1;
4242 xp->xp_files = NULL;
Bram Moolenaarac9fb182019-04-27 13:04:13 +02004243#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00004244 xp->xp_arg = NULL;
4245#endif
Bram Moolenaarb7515462013-06-29 12:58:33 +02004246 xp->xp_line = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247}
4248
4249/*
4250 * Cleanup an expand structure after use.
4251 */
4252 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004253ExpandCleanup(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254{
4255 if (xp->xp_numfiles >= 0)
4256 {
4257 FreeWild(xp->xp_numfiles, xp->xp_files);
4258 xp->xp_numfiles = -1;
4259 }
4260}
4261
4262 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004263ExpandEscape(
4264 expand_T *xp,
4265 char_u *str,
4266 int numfiles,
4267 char_u **files,
4268 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269{
4270 int i;
4271 char_u *p;
4272
4273 /*
4274 * May change home directory back to "~"
4275 */
4276 if (options & WILD_HOME_REPLACE)
4277 tilde_replace(str, numfiles, files);
4278
4279 if (options & WILD_ESCAPE)
4280 {
4281 if (xp->xp_context == EXPAND_FILES
Bram Moolenaarcca92ec2011-04-28 17:21:53 +02004282 || xp->xp_context == EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004283 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 || xp->xp_context == EXPAND_BUFFERS
4285 || xp->xp_context == EXPAND_DIRECTORIES)
4286 {
4287 /*
4288 * Insert a backslash into a file name before a space, \, %, #
4289 * and wildmatch characters, except '~'.
4290 */
4291 for (i = 0; i < numfiles; ++i)
4292 {
4293 /* for ":set path=" we need to escape spaces twice */
4294 if (xp->xp_backslash == XP_BS_THREE)
4295 {
4296 p = vim_strsave_escaped(files[i], (char_u *)" ");
4297 if (p != NULL)
4298 {
4299 vim_free(files[i]);
4300 files[i] = p;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00004301#if defined(BACKSLASH_IN_FILENAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004302 p = vim_strsave_escaped(files[i], (char_u *)" ");
4303 if (p != NULL)
4304 {
4305 vim_free(files[i]);
4306 files[i] = p;
4307 }
4308#endif
4309 }
4310 }
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00004311#ifdef BACKSLASH_IN_FILENAME
4312 p = vim_strsave_fnameescape(files[i], FALSE);
4313#else
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004314 p = vim_strsave_fnameescape(files[i], xp->xp_shell);
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00004315#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316 if (p != NULL)
4317 {
4318 vim_free(files[i]);
4319 files[i] = p;
4320 }
4321
4322 /* If 'str' starts with "\~", replace "~" at start of
4323 * files[i] with "\~". */
4324 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~')
Bram Moolenaar45360022005-07-21 21:08:21 +00004325 escape_fname(&files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326 }
4327 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar45360022005-07-21 21:08:21 +00004328
4329 /* If the first file starts with a '+' escape it. Otherwise it
4330 * could be seen as "+cmd". */
4331 if (*files[0] == '+')
4332 escape_fname(&files[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333 }
4334 else if (xp->xp_context == EXPAND_TAGS)
4335 {
4336 /*
4337 * Insert a backslash before characters in a tag name that
4338 * would terminate the ":tag" command.
4339 */
4340 for (i = 0; i < numfiles; ++i)
4341 {
4342 p = vim_strsave_escaped(files[i], (char_u *)"\\|\"");
4343 if (p != NULL)
4344 {
4345 vim_free(files[i]);
4346 files[i] = p;
4347 }
4348 }
4349 }
4350 }
4351}
4352
4353/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004354 * Escape special characters in "fname" for when used as a file name argument
4355 * after a Vim command, or, when "shell" is non-zero, a shell command.
4356 * Returns the result in allocated memory.
4357 */
4358 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004359vim_strsave_fnameescape(char_u *fname, int shell)
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004360{
Bram Moolenaar7693ec62008-07-24 18:29:37 +00004361 char_u *p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004362#ifdef BACKSLASH_IN_FILENAME
4363 char_u buf[20];
4364 int j = 0;
4365
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01004366 /* Don't escape '[', '{' and '!' if they are in 'isfname'. */
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004367 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01004368 if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p))
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004369 buf[j++] = *p;
4370 buf[j] = NUL;
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004371 p = vim_strsave_escaped(fname, buf);
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004372#else
Bram Moolenaar7693ec62008-07-24 18:29:37 +00004373 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
4374 if (shell && csh_like_shell() && p != NULL)
4375 {
4376 char_u *s;
4377
4378 /* For csh and similar shells need to put two backslashes before '!'.
4379 * One is taken by Vim, one by the shell. */
4380 s = vim_strsave_escaped(p, (char_u *)"!");
4381 vim_free(p);
4382 p = s;
4383 }
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004384#endif
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004385
4386 /* '>' and '+' are special at the start of some commands, e.g. ":edit" and
4387 * ":write". "cd -" has a special meaning. */
Bram Moolenaara9d52e32010-07-31 16:44:19 +02004388 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL)))
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004389 escape_fname(&p);
4390
4391 return p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004392}
4393
4394/*
Bram Moolenaar45360022005-07-21 21:08:21 +00004395 * Put a backslash before the file name in "pp", which is in allocated memory.
4396 */
4397 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004398escape_fname(char_u **pp)
Bram Moolenaar45360022005-07-21 21:08:21 +00004399{
4400 char_u *p;
4401
Bram Moolenaar964b3742019-05-24 18:54:09 +02004402 p = alloc(STRLEN(*pp) + 2);
Bram Moolenaar45360022005-07-21 21:08:21 +00004403 if (p != NULL)
4404 {
4405 p[0] = '\\';
4406 STRCPY(p + 1, *pp);
4407 vim_free(*pp);
4408 *pp = p;
4409 }
4410}
4411
4412/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 * For each file name in files[num_files]:
4414 * If 'orig_pat' starts with "~/", replace the home directory with "~".
4415 */
4416 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004417tilde_replace(
4418 char_u *orig_pat,
4419 int num_files,
4420 char_u **files)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004421{
4422 int i;
4423 char_u *p;
4424
4425 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
4426 {
4427 for (i = 0; i < num_files; ++i)
4428 {
4429 p = home_replace_save(NULL, files[i]);
4430 if (p != NULL)
4431 {
4432 vim_free(files[i]);
4433 files[i] = p;
4434 }
4435 }
4436 }
4437}
4438
4439/*
4440 * Show all matches for completion on the command line.
4441 * Returns EXPAND_NOTHING when the character that triggered expansion should
4442 * be inserted like a normal character.
4443 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004445showmatches(expand_T *xp, int wildmenu UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446{
4447#define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m])
4448 int num_files;
4449 char_u **files_found;
4450 int i, j, k;
4451 int maxlen;
4452 int lines;
4453 int columns;
4454 char_u *p;
4455 int lastlen;
4456 int attr;
4457 int showtail;
4458
4459 if (xp->xp_numfiles == -1)
4460 {
4461 set_expand_context(xp);
4462 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos,
4463 &num_files, &files_found);
4464 showtail = expand_showtail(xp);
4465 if (i != EXPAND_OK)
4466 return i;
4467
4468 }
4469 else
4470 {
4471 num_files = xp->xp_numfiles;
4472 files_found = xp->xp_files;
4473 showtail = cmd_showtail;
4474 }
4475
4476#ifdef FEAT_WILDMENU
4477 if (!wildmenu)
4478 {
4479#endif
4480 msg_didany = FALSE; /* lines_left will be set */
4481 msg_start(); /* prepare for paging */
4482 msg_putchar('\n');
4483 out_flush();
4484 cmdline_row = msg_row;
4485 msg_didany = FALSE; /* lines_left will be set again */
4486 msg_start(); /* prepare for paging */
4487#ifdef FEAT_WILDMENU
4488 }
4489#endif
4490
4491 if (got_int)
4492 got_int = FALSE; /* only int. the completion, not the cmd line */
4493#ifdef FEAT_WILDMENU
4494 else if (wildmenu)
Bram Moolenaaref8eb082017-03-30 22:04:55 +02004495 win_redr_status_matches(xp, num_files, files_found, -1, showtail);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496#endif
4497 else
4498 {
4499 /* find the length of the longest file name */
4500 maxlen = 0;
4501 for (i = 0; i < num_files; ++i)
4502 {
4503 if (!showtail && (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004504 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505 || xp->xp_context == EXPAND_BUFFERS))
4506 {
4507 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE);
4508 j = vim_strsize(NameBuff);
4509 }
4510 else
4511 j = vim_strsize(L_SHOWFILE(i));
4512 if (j > maxlen)
4513 maxlen = j;
4514 }
4515
4516 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4517 lines = num_files;
4518 else
4519 {
4520 /* compute the number of columns and lines for the listing */
4521 maxlen += 2; /* two spaces between file names */
4522 columns = ((int)Columns + 2) / maxlen;
4523 if (columns < 1)
4524 columns = 1;
4525 lines = (num_files + columns - 1) / columns;
4526 }
4527
Bram Moolenaar8820b482017-03-16 17:23:31 +01004528 attr = HL_ATTR(HLF_D); /* find out highlighting for directories */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529
4530 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4531 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004532 msg_puts_attr(_("tagname"), HL_ATTR(HLF_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533 msg_clr_eos();
4534 msg_advance(maxlen - 3);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004535 msg_puts_attr(_(" kind file\n"), HL_ATTR(HLF_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 }
4537
4538 /* list the files line by line */
4539 for (i = 0; i < lines; ++i)
4540 {
4541 lastlen = 999;
4542 for (k = i; k < num_files; k += lines)
4543 {
4544 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4545 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01004546 msg_outtrans_attr(files_found[k], HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547 p = files_found[k] + STRLEN(files_found[k]) + 1;
4548 msg_advance(maxlen + 1);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004549 msg_puts((char *)p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550 msg_advance(maxlen + 3);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004551 msg_outtrans_long_attr(p + 2, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004552 break;
4553 }
4554 for (j = maxlen - lastlen; --j >= 0; )
4555 msg_putchar(' ');
4556 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004557 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558 || xp->xp_context == EXPAND_BUFFERS)
4559 {
Bram Moolenaarb91e59b2010-03-17 19:13:27 +01004560 /* highlight directories */
Bram Moolenaar63fa5262010-03-23 18:06:52 +01004561 if (xp->xp_numfiles != -1)
4562 {
4563 char_u *halved_slash;
4564 char_u *exp_path;
4565
4566 /* Expansion was done before and special characters
4567 * were escaped, need to halve backslashes. Also
4568 * $HOME has been replaced with ~/. */
4569 exp_path = expand_env_save_opt(files_found[k], TRUE);
4570 halved_slash = backslash_halve_save(
4571 exp_path != NULL ? exp_path : files_found[k]);
4572 j = mch_isdir(halved_slash != NULL ? halved_slash
4573 : files_found[k]);
4574 vim_free(exp_path);
4575 vim_free(halved_slash);
4576 }
4577 else
4578 /* Expansion was done here, file names are literal. */
4579 j = mch_isdir(files_found[k]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 if (showtail)
4581 p = L_SHOWFILE(k);
4582 else
4583 {
4584 home_replace(NULL, files_found[k], NameBuff, MAXPATHL,
4585 TRUE);
4586 p = NameBuff;
4587 }
4588 }
4589 else
4590 {
4591 j = FALSE;
4592 p = L_SHOWFILE(k);
4593 }
4594 lastlen = msg_outtrans_attr(p, j ? attr : 0);
4595 }
4596 if (msg_col > 0) /* when not wrapped around */
4597 {
4598 msg_clr_eos();
4599 msg_putchar('\n');
4600 }
4601 out_flush(); /* show one line at a time */
4602 if (got_int)
4603 {
4604 got_int = FALSE;
4605 break;
4606 }
4607 }
4608
4609 /*
4610 * we redraw the command below the lines that we have just listed
4611 * This is a bit tricky, but it saves a lot of screen updating.
4612 */
4613 cmdline_row = msg_row; /* will put it back later */
4614 }
4615
4616 if (xp->xp_numfiles == -1)
4617 FreeWild(num_files, files_found);
4618
4619 return EXPAND_OK;
4620}
4621
4622/*
4623 * Private gettail for showmatches() (and win_redr_status_matches()):
4624 * Find tail of file name path, but ignore trailing "/".
4625 */
4626 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004627sm_gettail(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628{
4629 char_u *p;
4630 char_u *t = s;
4631 int had_sep = FALSE;
4632
4633 for (p = s; *p != NUL; )
4634 {
4635 if (vim_ispathsep(*p)
4636#ifdef BACKSLASH_IN_FILENAME
4637 && !rem_backslash(p)
4638#endif
4639 )
4640 had_sep = TRUE;
4641 else if (had_sep)
4642 {
4643 t = p;
4644 had_sep = FALSE;
4645 }
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004646 MB_PTR_ADV(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 }
4648 return t;
4649}
4650
4651/*
4652 * Return TRUE if we only need to show the tail of completion matches.
4653 * When not completing file names or there is a wildcard in the path FALSE is
4654 * returned.
4655 */
4656 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004657expand_showtail(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658{
4659 char_u *s;
4660 char_u *end;
4661
4662 /* When not completing file names a "/" may mean something different. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004663 if (xp->xp_context != EXPAND_FILES
4664 && xp->xp_context != EXPAND_SHELLCMD
4665 && xp->xp_context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666 return FALSE;
4667
4668 end = gettail(xp->xp_pattern);
4669 if (end == xp->xp_pattern) /* there is no path separator */
4670 return FALSE;
4671
4672 for (s = xp->xp_pattern; s < end; s++)
4673 {
4674 /* Skip escaped wildcards. Only when the backslash is not a path
4675 * separator, on DOS the '*' "path\*\file" must not be skipped. */
4676 if (rem_backslash(s))
4677 ++s;
4678 else if (vim_strchr((char_u *)"*?[", *s) != NULL)
4679 return FALSE;
4680 }
4681 return TRUE;
4682}
4683
4684/*
4685 * Prepare a string for expansion.
4686 * When expanding file names: The string will be used with expand_wildcards().
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004687 * Copy "fname[len]" into allocated memory and add a '*' at the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 * When expanding other names: The string will be used with regcomp(). Copy
4689 * the name into allocated memory and prepend "^".
4690 */
4691 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004692addstar(
4693 char_u *fname,
4694 int len,
4695 int context) /* EXPAND_FILES etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696{
4697 char_u *retval;
4698 int i, j;
4699 int new_len;
4700 char_u *tail;
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004701 int ends_in_star;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004703 if (context != EXPAND_FILES
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004704 && context != EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004705 && context != EXPAND_SHELLCMD
4706 && context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 {
4708 /*
4709 * Matching will be done internally (on something other than files).
4710 * So we convert the file-matching-type wildcards into our kind for
4711 * use with vim_regcomp(). First work out how long it will be:
4712 */
4713
4714 /* For help tags the translation is done in find_help_tags().
4715 * For a tag pattern starting with "/" no translation is needed. */
4716 if (context == EXPAND_HELP
4717 || context == EXPAND_COLORS
4718 || context == EXPAND_COMPILER
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004719 || context == EXPAND_OWNSYNTAX
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004720 || context == EXPAND_FILETYPE
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01004721 || context == EXPAND_PACKADD
Bram Moolenaarba47b512017-01-24 21:18:19 +01004722 || ((context == EXPAND_TAGS_LISTFILES
4723 || context == EXPAND_TAGS)
4724 && fname[0] == '/'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725 retval = vim_strnsave(fname, len);
4726 else
4727 {
4728 new_len = len + 2; /* +2 for '^' at start, NUL at end */
4729 for (i = 0; i < len; i++)
4730 {
4731 if (fname[i] == '*' || fname[i] == '~')
4732 new_len++; /* '*' needs to be replaced by ".*"
4733 '~' needs to be replaced by "\~" */
4734
4735 /* Buffer names are like file names. "." should be literal */
4736 if (context == EXPAND_BUFFERS && fname[i] == '.')
4737 new_len++; /* "." becomes "\." */
4738
4739 /* Custom expansion takes care of special things, match
4740 * backslashes literally (perhaps also for other types?) */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004741 if ((context == EXPAND_USER_DEFINED
4742 || context == EXPAND_USER_LIST) && fname[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743 new_len++; /* '\' becomes "\\" */
4744 }
4745 retval = alloc(new_len);
4746 if (retval != NULL)
4747 {
4748 retval[0] = '^';
4749 j = 1;
4750 for (i = 0; i < len; i++, j++)
4751 {
4752 /* Skip backslash. But why? At least keep it for custom
4753 * expansion. */
4754 if (context != EXPAND_USER_DEFINED
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004755 && context != EXPAND_USER_LIST
4756 && fname[i] == '\\'
4757 && ++i == len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 break;
4759
4760 switch (fname[i])
4761 {
4762 case '*': retval[j++] = '.';
4763 break;
4764 case '~': retval[j++] = '\\';
4765 break;
4766 case '?': retval[j] = '.';
4767 continue;
4768 case '.': if (context == EXPAND_BUFFERS)
4769 retval[j++] = '\\';
4770 break;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004771 case '\\': if (context == EXPAND_USER_DEFINED
4772 || context == EXPAND_USER_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773 retval[j++] = '\\';
4774 break;
4775 }
4776 retval[j] = fname[i];
4777 }
4778 retval[j] = NUL;
4779 }
4780 }
4781 }
4782 else
4783 {
4784 retval = alloc(len + 4);
4785 if (retval != NULL)
4786 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004787 vim_strncpy(retval, fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788
4789 /*
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004790 * Don't add a star to *, ~, ~user, $var or `cmd`.
4791 * * would become **, which walks the whole tree.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792 * ~ would be at the start of the file name, but not the tail.
4793 * $ could be anywhere in the tail.
4794 * ` could be anywhere in the file name.
Bram Moolenaar066b6222008-01-04 14:17:47 +00004795 * When the name ends in '$' don't add a star, remove the '$'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796 */
4797 tail = gettail(retval);
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004798 ends_in_star = (len > 0 && retval[len - 1] == '*');
4799#ifndef BACKSLASH_IN_FILENAME
4800 for (i = len - 2; i >= 0; --i)
4801 {
4802 if (retval[i] != '\\')
4803 break;
4804 ends_in_star = !ends_in_star;
4805 }
4806#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807 if ((*retval != '~' || tail != retval)
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004808 && !ends_in_star
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 && vim_strchr(tail, '$') == NULL
4810 && vim_strchr(retval, '`') == NULL)
4811 retval[len++] = '*';
Bram Moolenaar066b6222008-01-04 14:17:47 +00004812 else if (len > 0 && retval[len - 1] == '$')
4813 --len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 retval[len] = NUL;
4815 }
4816 }
4817 return retval;
4818}
4819
4820/*
4821 * Must parse the command line so far to work out what context we are in.
4822 * Completion can then be done based on that context.
4823 * This routine sets the variables:
4824 * xp->xp_pattern The start of the pattern to be expanded within
4825 * the command line (ends at the cursor).
4826 * xp->xp_context The type of thing to expand. Will be one of:
4827 *
4828 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on
4829 * the command line, like an unknown command. Caller
4830 * should beep.
4831 * EXPAND_NOTHING Unrecognised context for completion, use char like
4832 * a normal char, rather than for completion. eg
4833 * :s/^I/
4834 * EXPAND_COMMANDS Cursor is still touching the command, so complete
4835 * it.
4836 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands.
4837 * EXPAND_FILES After command with XFILE set, or after setting
4838 * with P_EXPAND set. eg :e ^I, :w>>^I
4839 * EXPAND_DIRECTORIES In some cases this is used instead of the latter
4840 * when we know only directories are of interest. eg
4841 * :set dir=^I
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004842 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843 * EXPAND_SETTINGS Complete variable names. eg :set d^I
4844 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I
4845 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I
4846 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect
4847 * EXPAND_HELP Complete tags from the file 'helpfile'/tags
4848 * EXPAND_EVENTS Complete event names
4849 * EXPAND_SYNTAX Complete :syntax command arguments
4850 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names
4851 * EXPAND_AUGROUP Complete autocommand group names
4852 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I
4853 * EXPAND_MAPPINGS Complete mapping and abbreviation names,
4854 * eg :unmap a^I , :cunab x^I
4855 * EXPAND_FUNCTIONS Complete internal or user defined function names,
4856 * eg :call sub^I
4857 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I
4858 * EXPAND_EXPRESSION Complete internal or user defined function/variable
4859 * names in expressions, eg :while s^I
4860 * EXPAND_ENV_VARS Complete environment variable names
Bram Moolenaar24305862012-08-15 14:05:05 +02004861 * EXPAND_USER Complete user names
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862 */
4863 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004864set_expand_context(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004866 /* only expansion for ':', '>' and '=' command-lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867 if (ccline.cmdfirstc != ':'
4868#ifdef FEAT_EVAL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004869 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '='
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004870 && !ccline.input_fn
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871#endif
4872 )
4873 {
4874 xp->xp_context = EXPAND_NOTHING;
4875 return;
4876 }
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004877 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878}
4879
4880 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004881set_cmd_context(
4882 expand_T *xp,
4883 char_u *str, /* start of command line */
4884 int len, /* length of command line (excl. NUL) */
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004885 int col, /* position of cursor */
4886 int use_ccline UNUSED) /* use ccline for info */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887{
4888 int old_char = NUL;
4889 char_u *nextcomm;
4890
4891 /*
4892 * Avoid a UMR warning from Purify, only save the character if it has been
4893 * written before.
4894 */
4895 if (col < len)
4896 old_char = str[col];
4897 str[col] = NUL;
4898 nextcomm = str;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004899
4900#ifdef FEAT_EVAL
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004901 if (use_ccline && ccline.cmdfirstc == '=')
Bram Moolenaar4f688582007-07-24 12:34:30 +00004902 {
4903# ifdef FEAT_CMDL_COMPL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004904 /* pass CMD_SIZE because there is no real command */
4905 set_context_for_expression(xp, str, CMD_SIZE);
Bram Moolenaar4f688582007-07-24 12:34:30 +00004906# endif
4907 }
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004908 else if (use_ccline && ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004909 {
4910 xp->xp_context = ccline.xp_context;
4911 xp->xp_pattern = ccline.cmdbuff;
Bram Moolenaarac9fb182019-04-27 13:04:13 +02004912# if defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004913 xp->xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004914# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004915 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004916 else
4917#endif
4918 while (nextcomm != NULL)
4919 nextcomm = set_one_cmd_context(xp, nextcomm);
4920
Bram Moolenaara4c8dcb2013-06-30 12:21:24 +02004921 /* Store the string here so that call_user_expand_func() can get to them
4922 * easily. */
4923 xp->xp_line = str;
4924 xp->xp_col = col;
4925
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926 str[col] = old_char;
4927}
4928
4929/*
4930 * Expand the command line "str" from context "xp".
4931 * "xp" must have been set by set_cmd_context().
4932 * xp->xp_pattern points into "str", to where the text that is to be expanded
4933 * starts.
4934 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the
4935 * cursor.
4936 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the
4937 * key that triggered expansion literally.
4938 * Returns EXPAND_OK otherwise.
4939 */
4940 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004941expand_cmdline(
4942 expand_T *xp,
4943 char_u *str, /* start of command line */
4944 int col, /* position of cursor */
4945 int *matchcount, /* return: nr of matches */
4946 char_u ***matches) /* return: array of pointers to matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947{
4948 char_u *file_str = NULL;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004949 int options = WILD_ADD_SLASH|WILD_SILENT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950
4951 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
4952 {
4953 beep_flush();
4954 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */
4955 }
4956 if (xp->xp_context == EXPAND_NOTHING)
4957 {
4958 /* Caller can use the character as a normal char instead */
4959 return EXPAND_NOTHING;
4960 }
4961
4962 /* add star to file name, or convert to regexp if not exp. files. */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004963 xp->xp_pattern_len = (int)(str + col - xp->xp_pattern);
4964 file_str = addstar(xp->xp_pattern, xp->xp_pattern_len, xp->xp_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 if (file_str == NULL)
4966 return EXPAND_UNSUCCESSFUL;
4967
Bram Moolenaar94950a92010-12-02 16:01:29 +01004968 if (p_wic)
4969 options += WILD_ICASE;
4970
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 /* find all files that match the description */
Bram Moolenaar94950a92010-12-02 16:01:29 +01004972 if (ExpandFromContext(xp, file_str, matchcount, matches, options) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973 {
4974 *matchcount = 0;
4975 *matches = NULL;
4976 }
4977 vim_free(file_str);
4978
4979 return EXPAND_OK;
4980}
4981
4982#ifdef FEAT_MULTI_LANG
4983/*
Bram Moolenaar61264d92016-03-28 19:59:02 +02004984 * Cleanup matches for help tags:
4985 * Remove "@ab" if the top of 'helplang' is "ab" and the language of the first
4986 * tag matches it. Otherwise remove "@en" if "en" is the only language.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004988 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004989cleanup_help_tags(int num_file, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990{
4991 int i, j;
4992 int len;
Bram Moolenaar61264d92016-03-28 19:59:02 +02004993 char_u buf[4];
4994 char_u *p = buf;
4995
Bram Moolenaar89c79b92016-05-05 17:18:41 +02004996 if (p_hlg[0] != NUL && (p_hlg[0] != 'e' || p_hlg[1] != 'n'))
Bram Moolenaar61264d92016-03-28 19:59:02 +02004997 {
4998 *p++ = '@';
4999 *p++ = p_hlg[0];
5000 *p++ = p_hlg[1];
5001 }
5002 *p = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003
5004 for (i = 0; i < num_file; ++i)
5005 {
5006 len = (int)STRLEN(file[i]) - 3;
Bram Moolenaar61264d92016-03-28 19:59:02 +02005007 if (len <= 0)
5008 continue;
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02005009 if (STRCMP(file[i] + len, "@en") == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 {
5011 /* Sorting on priority means the same item in another language may
5012 * be anywhere. Search all items for a match up to the "@en". */
5013 for (j = 0; j < num_file; ++j)
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02005014 if (j != i && (int)STRLEN(file[j]) == len + 3
5015 && STRNCMP(file[i], file[j], len + 1) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016 break;
5017 if (j == num_file)
Bram Moolenaar89c79b92016-05-05 17:18:41 +02005018 /* item only exists with @en, remove it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005019 file[i][len] = NUL;
5020 }
5021 }
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02005022
5023 if (*buf != NUL)
5024 for (i = 0; i < num_file; ++i)
5025 {
5026 len = (int)STRLEN(file[i]) - 3;
5027 if (len <= 0)
5028 continue;
5029 if (STRCMP(file[i] + len, buf) == 0)
5030 {
5031 /* remove the default language */
5032 file[i][len] = NUL;
5033 }
5034 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035}
5036#endif
5037
5038/*
5039 * Do the expansion based on xp->xp_context and "pat".
5040 */
5041 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005042ExpandFromContext(
5043 expand_T *xp,
5044 char_u *pat,
5045 int *num_file,
5046 char_u ***file,
5047 int options) /* EW_ flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048{
5049#ifdef FEAT_CMDL_COMPL
5050 regmatch_T regmatch;
5051#endif
5052 int ret;
5053 int flags;
5054
5055 flags = EW_DIR; /* include directories */
5056 if (options & WILD_LIST_NOTFOUND)
5057 flags |= EW_NOTFOUND;
5058 if (options & WILD_ADD_SLASH)
5059 flags |= EW_ADDSLASH;
5060 if (options & WILD_KEEP_ALL)
5061 flags |= EW_KEEPALL;
5062 if (options & WILD_SILENT)
5063 flags |= EW_SILENT;
Bram Moolenaara245bc72015-03-05 19:35:25 +01005064 if (options & WILD_ALLLINKS)
5065 flags |= EW_ALLLINKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066
Bram Moolenaarcc448b32010-07-14 16:52:17 +02005067 if (xp->xp_context == EXPAND_FILES
5068 || xp->xp_context == EXPAND_DIRECTORIES
5069 || xp->xp_context == EXPAND_FILES_IN_PATH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 {
5071 /*
5072 * Expand file or directory names.
5073 */
5074 int free_pat = FALSE;
5075 int i;
5076
5077 /* for ":set path=" and ":set tags=" halve backslashes for escaped
5078 * space */
5079 if (xp->xp_backslash != XP_BS_NONE)
5080 {
5081 free_pat = TRUE;
5082 pat = vim_strsave(pat);
5083 for (i = 0; pat[i]; ++i)
5084 if (pat[i] == '\\')
5085 {
5086 if (xp->xp_backslash == XP_BS_THREE
5087 && pat[i + 1] == '\\'
5088 && pat[i + 2] == '\\'
5089 && pat[i + 3] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00005090 STRMOVE(pat + i, pat + i + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091 if (xp->xp_backslash == XP_BS_ONE
5092 && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00005093 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094 }
5095 }
5096
5097 if (xp->xp_context == EXPAND_FILES)
5098 flags |= EW_FILE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02005099 else if (xp->xp_context == EXPAND_FILES_IN_PATH)
5100 flags |= (EW_FILE | EW_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101 else
5102 flags = (flags | EW_DIR) & ~EW_FILE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01005103 if (options & WILD_ICASE)
5104 flags |= EW_ICASE;
5105
Bram Moolenaard7834d32009-12-02 16:14:36 +00005106 /* Expand wildcards, supporting %:h and the like. */
5107 ret = expand_wildcards_eval(&pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108 if (free_pat)
5109 vim_free(pat);
5110 return ret;
5111 }
5112
5113 *file = (char_u **)"";
5114 *num_file = 0;
5115 if (xp->xp_context == EXPAND_HELP)
5116 {
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00005117 /* With an empty argument we would get all the help tags, which is
5118 * very slow. Get matches for "help" instead. */
5119 if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat,
5120 num_file, file, FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121 {
5122#ifdef FEAT_MULTI_LANG
5123 cleanup_help_tags(*num_file, *file);
5124#endif
5125 return OK;
5126 }
5127 return FAIL;
5128 }
5129
5130#ifndef FEAT_CMDL_COMPL
5131 return FAIL;
5132#else
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005133 if (xp->xp_context == EXPAND_SHELLCMD)
5134 return expand_shellcmd(pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 if (xp->xp_context == EXPAND_OLD_SETTING)
5136 return ExpandOldSetting(num_file, file);
5137 if (xp->xp_context == EXPAND_BUFFERS)
5138 return ExpandBufnames(pat, num_file, file, options);
5139 if (xp->xp_context == EXPAND_TAGS
5140 || xp->xp_context == EXPAND_TAGS_LISTFILES)
5141 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file);
5142 if (xp->xp_context == EXPAND_COLORS)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005143 {
5144 char *directories[] = {"colors", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005145 return ExpandRTDir(pat, DIP_START + DIP_OPT, num_file, file,
5146 directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005147 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148 if (xp->xp_context == EXPAND_COMPILER)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005149 {
Bram Moolenaara627c962011-09-30 16:23:32 +02005150 char *directories[] = {"compiler", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005151 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005152 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005153 if (xp->xp_context == EXPAND_OWNSYNTAX)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005154 {
5155 char *directories[] = {"syntax", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005156 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005157 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005158 if (xp->xp_context == EXPAND_FILETYPE)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005159 {
5160 char *directories[] = {"syntax", "indent", "ftplugin", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005161 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005162 }
Bram Moolenaarac9fb182019-04-27 13:04:13 +02005163# if defined(FEAT_EVAL)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005164 if (xp->xp_context == EXPAND_USER_LIST)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00005165 return ExpandUserList(xp, num_file, file);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005166# endif
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01005167 if (xp->xp_context == EXPAND_PACKADD)
5168 return ExpandPackAddDir(pat, num_file, file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169
5170 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
5171 if (regmatch.regprog == NULL)
5172 return FAIL;
5173
5174 /* set ignore-case according to p_ic, p_scs and pat */
5175 regmatch.rm_ic = ignorecase(pat);
5176
5177 if (xp->xp_context == EXPAND_SETTINGS
5178 || xp->xp_context == EXPAND_BOOL_SETTINGS)
5179 ret = ExpandSettings(xp, &regmatch, num_file, file);
5180 else if (xp->xp_context == EXPAND_MAPPINGS)
5181 ret = ExpandMappings(&regmatch, num_file, file);
Bram Moolenaarac9fb182019-04-27 13:04:13 +02005182# if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183 else if (xp->xp_context == EXPAND_USER_DEFINED)
5184 ret = ExpandUserDefined(xp, &regmatch, num_file, file);
5185# endif
5186 else
5187 {
5188 static struct expgen
5189 {
5190 int context;
Bram Moolenaard99df422016-01-29 23:20:40 +01005191 char_u *((*func)(expand_T *, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005192 int ic;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005193 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005194 } tab[] =
5195 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005196 {EXPAND_COMMANDS, get_command_name, FALSE, TRUE},
5197 {EXPAND_BEHAVE, get_behave_arg, TRUE, TRUE},
Bram Moolenaarcae92dc2017-08-06 15:22:15 +02005198 {EXPAND_MAPCLEAR, get_mapclear_arg, TRUE, TRUE},
Bram Moolenaar9e507ca2016-10-15 15:39:39 +02005199 {EXPAND_MESSAGES, get_messages_arg, TRUE, TRUE},
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005200#ifdef FEAT_CMDHIST
5201 {EXPAND_HISTORY, get_history_arg, TRUE, TRUE},
5202#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005203 {EXPAND_USER_COMMANDS, get_user_commands, FALSE, TRUE},
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005204 {EXPAND_USER_ADDR_TYPE, get_user_cmd_addr_type, FALSE, TRUE},
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005205 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE, TRUE},
5206 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE, TRUE},
5207 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208#ifdef FEAT_EVAL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005209 {EXPAND_USER_VARS, get_user_var_name, FALSE, TRUE},
5210 {EXPAND_FUNCTIONS, get_function_name, FALSE, TRUE},
5211 {EXPAND_USER_FUNC, get_user_func_name, FALSE, TRUE},
5212 {EXPAND_EXPRESSION, get_expr_name, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213#endif
5214#ifdef FEAT_MENU
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005215 {EXPAND_MENUS, get_menu_name, FALSE, TRUE},
5216 {EXPAND_MENUNAMES, get_menu_names, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005217#endif
5218#ifdef FEAT_SYN_HL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005219 {EXPAND_SYNTAX, get_syntax_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005220#endif
Bram Moolenaarcd9c4622013-06-08 15:24:48 +02005221#ifdef FEAT_PROFILE
5222 {EXPAND_SYNTIME, get_syntime_arg, TRUE, TRUE},
5223#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005224 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE, TRUE},
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005225 {EXPAND_EVENTS, get_event_name, TRUE, TRUE},
5226 {EXPAND_AUGROUP, get_augroup_name, TRUE, TRUE},
Bram Moolenaarf4580d82009-03-18 11:52:53 +00005227#ifdef FEAT_CSCOPE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005228 {EXPAND_CSCOPE, get_cscope_name, TRUE, TRUE},
Bram Moolenaarf4580d82009-03-18 11:52:53 +00005229#endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00005230#ifdef FEAT_SIGNS
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005231 {EXPAND_SIGN, get_sign_name, TRUE, TRUE},
Bram Moolenaar3c65e312009-04-29 16:47:23 +00005232#endif
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01005233#ifdef FEAT_PROFILE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005234 {EXPAND_PROFILE, get_profile_name, TRUE, TRUE},
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01005235#endif
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005236#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005237 {EXPAND_LANGUAGE, get_lang_arg, TRUE, FALSE},
5238 {EXPAND_LOCALES, get_locales, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005239#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005240 {EXPAND_ENV_VARS, get_env_name, TRUE, TRUE},
Bram Moolenaar24305862012-08-15 14:05:05 +02005241 {EXPAND_USER, get_users, TRUE, FALSE},
Bram Moolenaarcd43eff2018-03-29 15:55:38 +02005242 {EXPAND_ARGLIST, get_arglist_name, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005243 };
5244 int i;
5245
5246 /*
5247 * Find a context in the table and call the ExpandGeneric() with the
5248 * right function to do the expansion.
5249 */
5250 ret = FAIL;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00005251 for (i = 0; i < (int)(sizeof(tab) / sizeof(struct expgen)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005252 if (xp->xp_context == tab[i].context)
5253 {
5254 if (tab[i].ic)
5255 regmatch.rm_ic = TRUE;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005256 ret = ExpandGeneric(xp, &regmatch, num_file, file,
Bram Moolenaare79abdd2012-06-29 13:44:41 +02005257 tab[i].func, tab[i].escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258 break;
5259 }
5260 }
5261
Bram Moolenaar473de612013-06-08 18:19:48 +02005262 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263
5264 return ret;
5265#endif /* FEAT_CMDL_COMPL */
5266}
5267
5268#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5269/*
5270 * Expand a list of names.
5271 *
5272 * Generic function for command line completion. It calls a function to
5273 * obtain strings, one by one. The strings are matched against a regexp
5274 * program. Matching strings are copied into an array, which is returned.
5275 *
5276 * Returns OK when no problems encountered, FAIL for error (out of memory).
5277 */
5278 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005279ExpandGeneric(
5280 expand_T *xp,
5281 regmatch_T *regmatch,
5282 int *num_file,
5283 char_u ***file,
5284 char_u *((*func)(expand_T *, int)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285 /* returns a string from the list */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005286 int escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287{
5288 int i;
5289 int count = 0;
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005290 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291 char_u *str;
5292
5293 /* do this loop twice:
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005294 * round == 0: count the number of matching names
5295 * round == 1: copy the matching names into allocated memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296 */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005297 for (round = 0; round <= 1; ++round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298 {
5299 for (i = 0; ; ++i)
5300 {
5301 str = (*func)(xp, i);
5302 if (str == NULL) /* end of list */
5303 break;
5304 if (*str == NUL) /* skip empty strings */
5305 continue;
5306
5307 if (vim_regexec(regmatch, str, (colnr_T)0))
5308 {
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005309 if (round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005311 if (escaped)
5312 str = vim_strsave_escaped(str, (char_u *)" \t\\.");
5313 else
5314 str = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315 (*file)[count] = str;
5316#ifdef FEAT_MENU
5317 if (func == get_menu_names && str != NULL)
5318 {
5319 /* test for separator added by get_menu_names() */
5320 str += STRLEN(str) - 1;
5321 if (*str == '\001')
5322 *str = '.';
5323 }
5324#endif
5325 }
5326 ++count;
5327 }
5328 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005329 if (round == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005330 {
5331 if (count == 0)
5332 return OK;
5333 *num_file = count;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005334 *file = ALLOC_MULT(char_u *, count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005335 if (*file == NULL)
5336 {
5337 *file = (char_u **)"";
5338 return FAIL;
5339 }
5340 count = 0;
5341 }
5342 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005343
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005344 /* Sort the results. Keep menu's in the specified order. */
5345 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02005346 {
5347 if (xp->xp_context == EXPAND_EXPRESSION
5348 || xp->xp_context == EXPAND_FUNCTIONS
5349 || xp->xp_context == EXPAND_USER_FUNC)
5350 /* <SNR> functions should be sorted to the end. */
5351 qsort((void *)*file, (size_t)*num_file, sizeof(char_u *),
5352 sort_func_compare);
5353 else
5354 sort_strings(*file, *num_file);
5355 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005356
Bram Moolenaar4f688582007-07-24 12:34:30 +00005357#ifdef FEAT_CMDL_COMPL
5358 /* Reset the variables used for special highlight names expansion, so that
5359 * they don't show up when getting normal highlight names by ID. */
5360 reset_expand_highlight();
5361#endif
5362
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363 return OK;
5364}
5365
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005366/*
5367 * Complete a shell command.
5368 * Returns FAIL or OK;
5369 */
5370 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005371expand_shellcmd(
5372 char_u *filepat, /* pattern to match with command names */
5373 int *num_file, /* return: number of matches */
5374 char_u ***file, /* return: array with matches */
5375 int flagsarg) /* EW_ flags */
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005376{
5377 char_u *pat;
5378 int i;
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005379 char_u *path = NULL;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005380 int mustfree = FALSE;
5381 garray_T ga;
5382 char_u *buf = alloc(MAXPATHL);
5383 size_t l;
5384 char_u *s, *e;
5385 int flags = flagsarg;
5386 int ret;
Bram Moolenaarb5971142015-03-21 17:32:19 +01005387 int did_curdir = FALSE;
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005388 hashtab_T found_ht;
5389 hashitem_T *hi;
5390 hash_T hash;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005391
5392 if (buf == NULL)
5393 return FAIL;
5394
5395 /* for ":set path=" and ":set tags=" halve backslashes for escaped
5396 * space */
5397 pat = vim_strsave(filepat);
5398 for (i = 0; pat[i]; ++i)
5399 if (pat[i] == '\\' && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00005400 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005401
Bram Moolenaarb5971142015-03-21 17:32:19 +01005402 flags |= EW_FILE | EW_EXEC | EW_SHELLCMD;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005403
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005404 if (pat[0] == '.' && (vim_ispathsep(pat[1])
5405 || (pat[1] == '.' && vim_ispathsep(pat[2]))))
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005406 path = (char_u *)".";
5407 else
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01005408 {
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005409 /* For an absolute name we don't use $PATH. */
5410 if (!mch_isFullName(pat))
5411 path = vim_getenv((char_u *)"PATH", &mustfree);
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01005412 if (path == NULL)
5413 path = (char_u *)"";
5414 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005415
5416 /*
5417 * Go over all directories in $PATH. Expand matches in that directory and
Bram Moolenaarb5971142015-03-21 17:32:19 +01005418 * collect them in "ga". When "." is not in $PATH also expand for the
5419 * current directory, to find "subdir/cmd".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005420 */
5421 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005422 hash_init(&found_ht);
Bram Moolenaarb5971142015-03-21 17:32:19 +01005423 for (s = path; ; s = e)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005424 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005425#if defined(MSWIN)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005426 e = vim_strchr(s, ';');
5427#else
5428 e = vim_strchr(s, ':');
5429#endif
5430 if (e == NULL)
5431 e = s + STRLEN(s);
5432
Bram Moolenaar6ab9e422018-07-28 19:20:13 +02005433 if (*s == NUL)
5434 {
5435 if (did_curdir)
5436 break;
5437 // Find directories in the current directory, path is empty.
5438 did_curdir = TRUE;
5439 flags |= EW_DIR;
5440 }
5441 else if (STRNCMP(s, ".", (int)(e - s)) == 0)
5442 {
5443 did_curdir = TRUE;
5444 flags |= EW_DIR;
5445 }
5446 else
5447 // Do not match directories inside a $PATH item.
5448 flags &= ~EW_DIR;
5449
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005450 l = e - s;
5451 if (l > MAXPATHL - 5)
5452 break;
5453 vim_strncpy(buf, s, l);
5454 add_pathsep(buf);
5455 l = STRLEN(buf);
5456 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l);
5457
5458 /* Expand matches in one directory of $PATH. */
5459 ret = expand_wildcards(1, &buf, num_file, file, flags);
5460 if (ret == OK)
5461 {
5462 if (ga_grow(&ga, *num_file) == FAIL)
5463 FreeWild(*num_file, *file);
5464 else
5465 {
5466 for (i = 0; i < *num_file; ++i)
5467 {
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005468 char_u *name = (*file)[i];
5469
5470 if (STRLEN(name) > l)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005471 {
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005472 // Check if this name was already found.
5473 hash = hash_hash(name + l);
5474 hi = hash_lookup(&found_ht, name + l, hash);
5475 if (HASHITEM_EMPTY(hi))
5476 {
5477 // Remove the path that was prepended.
5478 STRMOVE(name, name + l);
5479 ((char_u **)ga.ga_data)[ga.ga_len++] = name;
5480 hash_add_item(&found_ht, hi, name, hash);
5481 name = NULL;
5482 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005483 }
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005484 vim_free(name);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005485 }
5486 vim_free(*file);
5487 }
5488 }
5489 if (*e != NUL)
5490 ++e;
5491 }
5492 *file = ga.ga_data;
5493 *num_file = ga.ga_len;
5494
5495 vim_free(buf);
5496 vim_free(pat);
5497 if (mustfree)
5498 vim_free(path);
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005499 hash_clear(&found_ht);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005500 return OK;
5501}
5502
5503
Bram Moolenaarac9fb182019-04-27 13:04:13 +02005504# if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505/*
Bram Moolenaarb544f3c2017-02-23 19:03:28 +01005506 * Call "user_expand_func()" to invoke a user defined Vim script function and
5507 * return the result (either a string or a List).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508 */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005509 static void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005510call_user_expand_func(
Bram Moolenaarded27a12018-08-01 19:06:03 +02005511 void *(*user_expand_func)(char_u *, int, typval_T *),
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005512 expand_T *xp,
5513 int *num_file,
5514 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515{
Bram Moolenaar673b9a32013-06-30 22:43:27 +02005516 int keep = 0;
Bram Moolenaarffa96842018-06-12 22:05:14 +02005517 typval_T args[4];
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005518 sctx_T save_current_sctx = current_sctx;
Bram Moolenaarffa96842018-06-12 22:05:14 +02005519 char_u *pat = NULL;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005520 void *ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521
Bram Moolenaarb7515462013-06-29 12:58:33 +02005522 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0' || xp->xp_line == NULL)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005523 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524 *num_file = 0;
5525 *file = NULL;
5526
Bram Moolenaarb7515462013-06-29 12:58:33 +02005527 if (ccline.cmdbuff != NULL)
Bram Moolenaar21669c02008-01-18 12:16:16 +00005528 {
Bram Moolenaar21669c02008-01-18 12:16:16 +00005529 keep = ccline.cmdbuff[ccline.cmdlen];
5530 ccline.cmdbuff[ccline.cmdlen] = 0;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005531 }
Bram Moolenaarb7515462013-06-29 12:58:33 +02005532
Bram Moolenaarffa96842018-06-12 22:05:14 +02005533 pat = vim_strnsave(xp->xp_pattern, xp->xp_pattern_len);
5534
5535 args[0].v_type = VAR_STRING;
5536 args[0].vval.v_string = pat;
5537 args[1].v_type = VAR_STRING;
5538 args[1].vval.v_string = xp->xp_line;
5539 args[2].v_type = VAR_NUMBER;
5540 args[2].vval.v_number = xp->xp_col;
5541 args[3].v_type = VAR_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005543 current_sctx = xp->xp_script_ctx;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005544
Bram Moolenaarded27a12018-08-01 19:06:03 +02005545 ret = user_expand_func(xp->xp_arg, 3, args);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005546
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005547 current_sctx = save_current_sctx;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005548 if (ccline.cmdbuff != NULL)
5549 ccline.cmdbuff[ccline.cmdlen] = keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005550
Bram Moolenaarffa96842018-06-12 22:05:14 +02005551 vim_free(pat);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005552 return ret;
5553}
5554
5555/*
5556 * Expand names with a function defined by the user.
5557 */
5558 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005559ExpandUserDefined(
5560 expand_T *xp,
5561 regmatch_T *regmatch,
5562 int *num_file,
5563 char_u ***file)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005564{
5565 char_u *retstr;
5566 char_u *s;
5567 char_u *e;
Bram Moolenaar71a43c02018-02-11 15:20:20 +01005568 int keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005569 garray_T ga;
Bram Moolenaar71a43c02018-02-11 15:20:20 +01005570 int skip;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005571
5572 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file);
5573 if (retstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574 return FAIL;
5575
5576 ga_init2(&ga, (int)sizeof(char *), 3);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005577 for (s = retstr; *s != NUL; s = e)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005578 {
5579 e = vim_strchr(s, '\n');
5580 if (e == NULL)
5581 e = s + STRLEN(s);
5582 keep = *e;
Bram Moolenaar71a43c02018-02-11 15:20:20 +01005583 *e = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005584
Bram Moolenaar71a43c02018-02-11 15:20:20 +01005585 skip = xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0;
5586 *e = keep;
5587
5588 if (!skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005589 {
Bram Moolenaar71a43c02018-02-11 15:20:20 +01005590 if (ga_grow(&ga, 1) == FAIL)
5591 break;
5592 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s));
5593 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594 }
5595
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596 if (*e != NUL)
5597 ++e;
5598 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005599 vim_free(retstr);
5600 *file = ga.ga_data;
5601 *num_file = ga.ga_len;
5602 return OK;
5603}
5604
5605/*
5606 * Expand names with a list returned by a function defined by the user.
5607 */
5608 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005609ExpandUserList(
5610 expand_T *xp,
5611 int *num_file,
5612 char_u ***file)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005613{
5614 list_T *retlist;
5615 listitem_T *li;
5616 garray_T ga;
5617
5618 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file);
5619 if (retlist == NULL)
5620 return FAIL;
5621
5622 ga_init2(&ga, (int)sizeof(char *), 3);
5623 /* Loop over the items in the list. */
5624 for (li = retlist->lv_first; li != NULL; li = li->li_next)
5625 {
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005626 if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL)
5627 continue; /* Skip non-string items and empty strings */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005628
5629 if (ga_grow(&ga, 1) == FAIL)
5630 break;
5631
5632 ((char_u **)ga.ga_data)[ga.ga_len] =
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005633 vim_strsave(li->li_tv.vval.v_string);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005634 ++ga.ga_len;
5635 }
5636 list_unref(retlist);
5637
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638 *file = ga.ga_data;
5639 *num_file = ga.ga_len;
5640 return OK;
5641}
5642#endif
5643
5644/*
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005645 * Expand color scheme, compiler or filetype names.
5646 * Search from 'runtimepath':
5647 * 'runtimepath'/{dirnames}/{pat}.vim
5648 * When "flags" has DIP_START: search also from 'start' of 'packpath':
5649 * 'packpath'/pack/ * /start/ * /{dirnames}/{pat}.vim
5650 * When "flags" has DIP_OPT: search also from 'opt' of 'packpath':
5651 * 'packpath'/pack/ * /opt/ * /{dirnames}/{pat}.vim
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005652 * "dirnames" is an array with one or more directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005653 */
5654 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005655ExpandRTDir(
5656 char_u *pat,
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005657 int flags,
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005658 int *num_file,
5659 char_u ***file,
5660 char *dirnames[])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005661{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005662 char_u *s;
5663 char_u *e;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005664 char_u *match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005665 garray_T ga;
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005666 int i;
5667 int pat_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005668
5669 *num_file = 0;
5670 *file = NULL;
Bram Moolenaar5cfe2d72011-07-07 15:04:52 +02005671 pat_len = (int)STRLEN(pat);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005672 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005673
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005674 for (i = 0; dirnames[i] != NULL; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005675 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02005676 s = alloc(STRLEN(dirnames[i]) + pat_len + 7);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005677 if (s == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005678 {
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005679 ga_clear_strings(&ga);
5680 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005681 }
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005682 sprintf((char *)s, "%s/%s*.vim", dirnames[i], pat);
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005683 globpath(p_rtp, s, &ga, 0);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005684 vim_free(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005686
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005687 if (flags & DIP_START) {
5688 for (i = 0; dirnames[i] != NULL; ++i)
5689 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02005690 s = alloc(STRLEN(dirnames[i]) + pat_len + 22);
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005691 if (s == NULL)
5692 {
5693 ga_clear_strings(&ga);
5694 return FAIL;
5695 }
5696 sprintf((char *)s, "pack/*/start/*/%s/%s*.vim", dirnames[i], pat);
5697 globpath(p_pp, s, &ga, 0);
5698 vim_free(s);
5699 }
5700 }
5701
5702 if (flags & DIP_OPT) {
5703 for (i = 0; dirnames[i] != NULL; ++i)
5704 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02005705 s = alloc(STRLEN(dirnames[i]) + pat_len + 20);
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005706 if (s == NULL)
5707 {
5708 ga_clear_strings(&ga);
5709 return FAIL;
5710 }
5711 sprintf((char *)s, "pack/*/opt/*/%s/%s*.vim", dirnames[i], pat);
5712 globpath(p_pp, s, &ga, 0);
5713 vim_free(s);
5714 }
5715 }
5716
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005717 for (i = 0; i < ga.ga_len; ++i)
5718 {
5719 match = ((char_u **)ga.ga_data)[i];
5720 s = match;
5721 e = s + STRLEN(s);
5722 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0)
5723 {
5724 e -= 4;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005725 for (s = e; s > match; MB_PTR_BACK(match, s))
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005726 if (s < match || vim_ispathsep(*s))
5727 break;
5728 ++s;
5729 *e = NUL;
5730 mch_memmove(match, s, e - s + 1);
5731 }
5732 }
5733
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005734 if (ga.ga_len == 0)
Bram Moolenaare79abdd2012-06-29 13:44:41 +02005735 return FAIL;
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005736
5737 /* Sort and remove duplicates which can happen when specifying multiple
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005738 * directories in dirnames. */
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005739 remove_duplicates(&ga);
5740
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 *file = ga.ga_data;
5742 *num_file = ga.ga_len;
5743 return OK;
5744}
5745
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01005746/*
5747 * Expand loadplugin names:
5748 * 'packpath'/pack/ * /opt/{pat}
5749 */
5750 static int
5751ExpandPackAddDir(
5752 char_u *pat,
5753 int *num_file,
5754 char_u ***file)
5755{
5756 char_u *s;
5757 char_u *e;
5758 char_u *match;
5759 garray_T ga;
5760 int i;
5761 int pat_len;
5762
5763 *num_file = 0;
5764 *file = NULL;
5765 pat_len = (int)STRLEN(pat);
5766 ga_init2(&ga, (int)sizeof(char *), 10);
5767
Bram Moolenaar964b3742019-05-24 18:54:09 +02005768 s = alloc(pat_len + 26);
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01005769 if (s == NULL)
5770 {
5771 ga_clear_strings(&ga);
5772 return FAIL;
5773 }
5774 sprintf((char *)s, "pack/*/opt/%s*", pat);
5775 globpath(p_pp, s, &ga, 0);
5776 vim_free(s);
5777
5778 for (i = 0; i < ga.ga_len; ++i)
5779 {
5780 match = ((char_u **)ga.ga_data)[i];
5781 s = gettail(match);
5782 e = s + STRLEN(s);
5783 mch_memmove(match, s, e - s + 1);
5784 }
5785
5786 if (ga.ga_len == 0)
5787 return FAIL;
5788
5789 /* Sort and remove duplicates which can happen when specifying multiple
5790 * directories in dirnames. */
5791 remove_duplicates(&ga);
5792
5793 *file = ga.ga_data;
5794 *num_file = ga.ga_len;
5795 return OK;
5796}
5797
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798#endif
5799
5800#if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO)
5801/*
5802 * Expand "file" for all comma-separated directories in "path".
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005803 * Adds the matches to "ga". Caller must init "ga".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005804 */
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005805 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005806globpath(
5807 char_u *path,
5808 char_u *file,
5809 garray_T *ga,
5810 int expand_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811{
5812 expand_T xpc;
5813 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005814 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815 int num_p;
5816 char_u **p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817
5818 buf = alloc(MAXPATHL);
5819 if (buf == NULL)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005820 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005821
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005822 ExpandInit(&xpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005823 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005824
Bram Moolenaar071d4272004-06-13 20:20:40 +00005825 /* Loop over all entries in {path}. */
5826 while (*path != NUL)
5827 {
5828 /* Copy one item of the path to buf[] and concatenate the file name. */
5829 copy_option_part(&path, buf, MAXPATHL, ",");
5830 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
5831 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005832# if defined(MSWIN)
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005833 /* Using the platform's path separator (\) makes vim incorrectly
5834 * treat it as an escape character, use '/' instead. */
5835 if (*buf != NUL && !after_pathsep(buf, buf + STRLEN(buf)))
5836 STRCAT(buf, "/");
5837# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005838 add_pathsep(buf);
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005839# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005840 STRCAT(buf, file);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005841 if (ExpandFromContext(&xpc, buf, &num_p, &p,
5842 WILD_SILENT|expand_options) != FAIL && num_p > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005843 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005844 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT|expand_options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005845
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005846 if (ga_grow(ga, num_p) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005847 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848 for (i = 0; i < num_p; ++i)
5849 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005850 ((char_u **)ga->ga_data)[ga->ga_len] =
Bram Moolenaar7116aa02014-05-29 14:36:29 +02005851 vim_strnsave(p[i], (int)STRLEN(p[i]));
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005852 ++ga->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005853 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005855
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856 FreeWild(num_p, p);
5857 }
5858 }
5859 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860
5861 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005862}
5863
5864#endif
5865
5866#if defined(FEAT_CMDHIST) || defined(PROTO)
5867
5868/*********************************
5869 * Command line history stuff *
5870 *********************************/
5871
5872/*
5873 * Translate a history character to the associated type number.
5874 */
5875 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005876hist_char2type(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005877{
5878 if (c == ':')
5879 return HIST_CMD;
5880 if (c == '=')
5881 return HIST_EXPR;
5882 if (c == '@')
5883 return HIST_INPUT;
5884 if (c == '>')
5885 return HIST_DEBUG;
5886 return HIST_SEARCH; /* must be '?' or '/' */
5887}
5888
5889/*
5890 * Table of history names.
5891 * These names are used in :history and various hist...() functions.
5892 * It is sufficient to give the significant prefix of a history name.
5893 */
5894
5895static char *(history_names[]) =
5896{
5897 "cmd",
5898 "search",
5899 "expr",
5900 "input",
5901 "debug",
5902 NULL
5903};
5904
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005905#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5906/*
5907 * Function given to ExpandGeneric() to obtain the possible first
5908 * arguments of the ":history command.
5909 */
5910 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005911get_history_arg(expand_T *xp UNUSED, int idx)
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005912{
5913 static char_u compl[2] = { NUL, NUL };
5914 char *short_names = ":=@>?/";
Bram Moolenaar17bd9dc2012-05-25 11:02:41 +02005915 int short_names_count = (int)STRLEN(short_names);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005916 int history_name_count = sizeof(history_names) / sizeof(char *) - 1;
5917
5918 if (idx < short_names_count)
5919 {
5920 compl[0] = (char_u)short_names[idx];
5921 return compl;
5922 }
5923 if (idx < short_names_count + history_name_count)
5924 return (char_u *)history_names[idx - short_names_count];
5925 if (idx == short_names_count + history_name_count)
5926 return (char_u *)"all";
5927 return NULL;
5928}
5929#endif
5930
Bram Moolenaar071d4272004-06-13 20:20:40 +00005931/*
5932 * init_history() - Initialize the command line history.
5933 * Also used to re-allocate the history when the size changes.
5934 */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00005935 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005936init_history(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005937{
5938 int newlen; /* new length of history table */
5939 histentry_T *temp;
5940 int i;
5941 int j;
5942 int type;
5943
5944 /*
5945 * If size of history table changed, reallocate it
5946 */
5947 newlen = (int)p_hi;
5948 if (newlen != hislen) /* history length changed */
5949 {
5950 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */
5951 {
5952 if (newlen)
5953 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005954 temp = ALLOC_MULT(histentry_T, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955 if (temp == NULL) /* out of memory! */
5956 {
5957 if (type == 0) /* first one: just keep the old length */
5958 {
5959 newlen = hislen;
5960 break;
5961 }
5962 /* Already changed one table, now we can only have zero
5963 * length for all tables. */
5964 newlen = 0;
5965 type = -1;
5966 continue;
5967 }
5968 }
5969 else
5970 temp = NULL;
5971 if (newlen == 0 || temp != NULL)
5972 {
5973 if (hisidx[type] < 0) /* there are no entries yet */
5974 {
5975 for (i = 0; i < newlen; ++i)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005976 clear_hist_entry(&temp[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005977 }
5978 else if (newlen > hislen) /* array becomes bigger */
5979 {
5980 for (i = 0; i <= hisidx[type]; ++i)
5981 temp[i] = history[type][i];
5982 j = i;
5983 for ( ; i <= newlen - (hislen - hisidx[type]); ++i)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005984 clear_hist_entry(&temp[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005985 for ( ; j < hislen; ++i, ++j)
5986 temp[i] = history[type][j];
5987 }
5988 else /* array becomes smaller or 0 */
5989 {
5990 j = hisidx[type];
5991 for (i = newlen - 1; ; --i)
5992 {
5993 if (i >= 0) /* copy newest entries */
5994 temp[i] = history[type][j];
5995 else /* remove older entries */
5996 vim_free(history[type][j].hisstr);
5997 if (--j < 0)
5998 j = hislen - 1;
5999 if (j == hisidx[type])
6000 break;
6001 }
6002 hisidx[type] = newlen - 1;
6003 }
6004 vim_free(history[type]);
6005 history[type] = temp;
6006 }
6007 }
6008 hislen = newlen;
6009 }
6010}
6011
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006012 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006013clear_hist_entry(histentry_T *hisptr)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006014{
6015 hisptr->hisnum = 0;
6016 hisptr->viminfo = FALSE;
6017 hisptr->hisstr = NULL;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006018 hisptr->time_set = 0;
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006019}
6020
Bram Moolenaar071d4272004-06-13 20:20:40 +00006021/*
6022 * Check if command line 'str' is already in history.
6023 * If 'move_to_front' is TRUE, matching entry is moved to end of history.
6024 */
6025 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006026in_history(
6027 int type,
6028 char_u *str,
6029 int move_to_front, /* Move the entry to the front if it exists */
6030 int sep,
6031 int writing) /* ignore entries read from viminfo */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006032{
6033 int i;
6034 int last_i = -1;
Bram Moolenaar4c402232011-07-27 17:58:46 +02006035 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006036
6037 if (hisidx[type] < 0)
6038 return FALSE;
6039 i = hisidx[type];
6040 do
6041 {
6042 if (history[type][i].hisstr == NULL)
6043 return FALSE;
Bram Moolenaar4c402232011-07-27 17:58:46 +02006044
6045 /* For search history, check that the separator character matches as
6046 * well. */
6047 p = history[type][i].hisstr;
6048 if (STRCMP(str, p) == 0
Bram Moolenaar07219f92013-04-14 23:19:36 +02006049 && !(writing && history[type][i].viminfo)
Bram Moolenaar4c402232011-07-27 17:58:46 +02006050 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006051 {
6052 if (!move_to_front)
6053 return TRUE;
6054 last_i = i;
6055 break;
6056 }
6057 if (--i < 0)
6058 i = hislen - 1;
6059 } while (i != hisidx[type]);
6060
6061 if (last_i >= 0)
6062 {
6063 str = history[type][i].hisstr;
6064 while (i != hisidx[type])
6065 {
6066 if (++i >= hislen)
6067 i = 0;
6068 history[type][last_i] = history[type][i];
6069 last_i = i;
6070 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006071 history[type][i].hisnum = ++hisnum[type];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006072 history[type][i].viminfo = FALSE;
6073 history[type][i].hisstr = str;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006074 history[type][i].time_set = vim_time();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006075 return TRUE;
6076 }
6077 return FALSE;
6078}
6079
6080/*
6081 * Convert history name (from table above) to its HIST_ equivalent.
6082 * When "name" is empty, return "cmd" history.
6083 * Returns -1 for unknown history name.
6084 */
6085 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006086get_histtype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006087{
6088 int i;
6089 int len = (int)STRLEN(name);
6090
6091 /* No argument: use current history. */
6092 if (len == 0)
6093 return hist_char2type(ccline.cmdfirstc);
6094
6095 for (i = 0; history_names[i] != NULL; ++i)
6096 if (STRNICMP(name, history_names[i], len) == 0)
6097 return i;
6098
6099 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL)
6100 return hist_char2type(name[0]);
6101
6102 return -1;
6103}
6104
6105static int last_maptick = -1; /* last seen maptick */
6106
6107/*
6108 * Add the given string to the given history. If the string is already in the
6109 * history then it is moved to the front. "histype" may be one of he HIST_
6110 * values.
6111 */
6112 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006113add_to_history(
6114 int histype,
6115 char_u *new_entry,
6116 int in_map, /* consider maptick when inside a mapping */
6117 int sep) /* separator character used (search hist) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006118{
6119 histentry_T *hisptr;
6120 int len;
6121
6122 if (hislen == 0) /* no history */
6123 return;
6124
Bram Moolenaara939e432013-11-09 05:30:26 +01006125 if (cmdmod.keeppatterns && histype == HIST_SEARCH)
6126 return;
6127
Bram Moolenaar071d4272004-06-13 20:20:40 +00006128 /*
6129 * Searches inside the same mapping overwrite each other, so that only
6130 * the last line is kept. Be careful not to remove a line that was moved
6131 * down, only lines that were added.
6132 */
6133 if (histype == HIST_SEARCH && in_map)
6134 {
Bram Moolenaar46643712016-09-09 21:42:36 +02006135 if (maptick == last_maptick && hisidx[HIST_SEARCH] >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006136 {
6137 /* Current line is from the same mapping, remove it */
6138 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];
6139 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006140 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006141 --hisnum[histype];
6142 if (--hisidx[HIST_SEARCH] < 0)
6143 hisidx[HIST_SEARCH] = hislen - 1;
6144 }
6145 last_maptick = -1;
6146 }
Bram Moolenaar07219f92013-04-14 23:19:36 +02006147 if (!in_history(histype, new_entry, TRUE, sep, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006148 {
6149 if (++hisidx[histype] == hislen)
6150 hisidx[histype] = 0;
6151 hisptr = &history[histype][hisidx[histype]];
6152 vim_free(hisptr->hisstr);
6153
6154 /* Store the separator after the NUL of the string. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006155 len = (int)STRLEN(new_entry);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006156 hisptr->hisstr = vim_strnsave(new_entry, len + 2);
6157 if (hisptr->hisstr != NULL)
6158 hisptr->hisstr[len + 1] = sep;
6159
6160 hisptr->hisnum = ++hisnum[histype];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006161 hisptr->viminfo = FALSE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006162 hisptr->time_set = vim_time();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006163 if (histype == HIST_SEARCH && in_map)
6164 last_maptick = maptick;
6165 }
6166}
6167
6168#if defined(FEAT_EVAL) || defined(PROTO)
6169
6170/*
6171 * Get identifier of newest history entry.
6172 * "histype" may be one of the HIST_ values.
6173 */
6174 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006175get_history_idx(int histype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006176{
6177 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
6178 || hisidx[histype] < 0)
6179 return -1;
6180
6181 return history[histype][hisidx[histype]].hisnum;
6182}
6183
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006184/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006185 * Calculate history index from a number:
6186 * num > 0: seen as identifying number of a history entry
6187 * num < 0: relative position in history wrt newest entry
6188 * "histype" may be one of the HIST_ values.
6189 */
6190 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006191calc_hist_idx(int histype, int num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006192{
6193 int i;
6194 histentry_T *hist;
6195 int wrapped = FALSE;
6196
6197 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
6198 || (i = hisidx[histype]) < 0 || num == 0)
6199 return -1;
6200
6201 hist = history[histype];
6202 if (num > 0)
6203 {
6204 while (hist[i].hisnum > num)
6205 if (--i < 0)
6206 {
6207 if (wrapped)
6208 break;
6209 i += hislen;
6210 wrapped = TRUE;
6211 }
6212 if (hist[i].hisnum == num && hist[i].hisstr != NULL)
6213 return i;
6214 }
6215 else if (-num <= hislen)
6216 {
6217 i += num + 1;
6218 if (i < 0)
6219 i += hislen;
6220 if (hist[i].hisstr != NULL)
6221 return i;
6222 }
6223 return -1;
6224}
6225
6226/*
6227 * Get a history entry by its index.
6228 * "histype" may be one of the HIST_ values.
6229 */
6230 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006231get_history_entry(int histype, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006232{
6233 idx = calc_hist_idx(histype, idx);
6234 if (idx >= 0)
6235 return history[histype][idx].hisstr;
6236 else
6237 return (char_u *)"";
6238}
6239
6240/*
6241 * Clear all entries of a history.
6242 * "histype" may be one of the HIST_ values.
6243 */
6244 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006245clr_history(int histype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006246{
6247 int i;
6248 histentry_T *hisptr;
6249
6250 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT)
6251 {
6252 hisptr = history[histype];
6253 for (i = hislen; i--;)
6254 {
6255 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006256 clear_hist_entry(hisptr);
Bram Moolenaar119d4692016-03-05 21:21:24 +01006257 hisptr++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006258 }
6259 hisidx[histype] = -1; /* mark history as cleared */
6260 hisnum[histype] = 0; /* reset identifier counter */
6261 return OK;
6262 }
6263 return FAIL;
6264}
6265
6266/*
6267 * Remove all entries matching {str} from a history.
6268 * "histype" may be one of the HIST_ values.
6269 */
6270 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006271del_history_entry(int histype, char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006272{
6273 regmatch_T regmatch;
6274 histentry_T *hisptr;
6275 int idx;
6276 int i;
6277 int last;
6278 int found = FALSE;
6279
6280 regmatch.regprog = NULL;
6281 regmatch.rm_ic = FALSE; /* always match case */
6282 if (hislen != 0
6283 && histype >= 0
6284 && histype < HIST_COUNT
6285 && *str != NUL
6286 && (idx = hisidx[histype]) >= 0
6287 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING))
6288 != NULL)
6289 {
6290 i = last = idx;
6291 do
6292 {
6293 hisptr = &history[histype][i];
6294 if (hisptr->hisstr == NULL)
6295 break;
6296 if (vim_regexec(&regmatch, hisptr->hisstr, (colnr_T)0))
6297 {
6298 found = TRUE;
6299 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006300 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006301 }
6302 else
6303 {
6304 if (i != last)
6305 {
6306 history[histype][last] = *hisptr;
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006307 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006308 }
6309 if (--last < 0)
6310 last += hislen;
6311 }
6312 if (--i < 0)
6313 i += hislen;
6314 } while (i != idx);
6315 if (history[histype][idx].hisstr == NULL)
6316 hisidx[histype] = -1;
6317 }
Bram Moolenaar473de612013-06-08 18:19:48 +02006318 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006319 return found;
6320}
6321
6322/*
6323 * Remove an indexed entry from a history.
6324 * "histype" may be one of the HIST_ values.
6325 */
6326 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006327del_history_idx(int histype, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006328{
6329 int i, j;
6330
6331 i = calc_hist_idx(histype, idx);
6332 if (i < 0)
6333 return FALSE;
6334 idx = hisidx[histype];
6335 vim_free(history[histype][i].hisstr);
6336
6337 /* When deleting the last added search string in a mapping, reset
6338 * last_maptick, so that the last added search string isn't deleted again.
6339 */
6340 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx)
6341 last_maptick = -1;
6342
6343 while (i != idx)
6344 {
6345 j = (i + 1) % hislen;
6346 history[histype][i] = history[histype][j];
6347 i = j;
6348 }
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006349 clear_hist_entry(&history[histype][i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006350 if (--i < 0)
6351 i += hislen;
6352 hisidx[histype] = i;
6353 return TRUE;
6354}
6355
6356#endif /* FEAT_EVAL */
6357
6358#if defined(FEAT_CRYPT) || defined(PROTO)
6359/*
6360 * Very specific function to remove the value in ":set key=val" from the
6361 * history.
6362 */
6363 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006364remove_key_from_history(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006365{
6366 char_u *p;
6367 int i;
6368
6369 i = hisidx[HIST_CMD];
6370 if (i < 0)
6371 return;
6372 p = history[HIST_CMD][i].hisstr;
6373 if (p != NULL)
6374 for ( ; *p; ++p)
6375 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3]))
6376 {
6377 p = vim_strchr(p + 3, '=');
6378 if (p == NULL)
6379 break;
6380 ++p;
Bram Moolenaar1c465442017-03-12 20:10:05 +01006381 for (i = 0; p[i] && !VIM_ISWHITE(p[i]); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006382 if (p[i] == '\\' && p[i + 1])
6383 ++i;
Bram Moolenaar446cb832008-06-24 21:56:24 +00006384 STRMOVE(p, p + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006385 --p;
6386 }
6387}
6388#endif
6389
6390#endif /* FEAT_CMDHIST */
6391
Bram Moolenaar064154c2016-03-19 22:50:43 +01006392#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006393/*
Bram Moolenaar438d1762018-09-30 17:11:48 +02006394 * Get pointer to the command line info to use. save_ccline() may clear
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006395 * ccline and put the previous value in prev_ccline.
6396 */
6397 static struct cmdline_info *
6398get_ccline_ptr(void)
6399{
6400 if ((State & CMDLINE) == 0)
6401 return NULL;
6402 if (ccline.cmdbuff != NULL)
6403 return &ccline;
6404 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
6405 return &prev_ccline;
6406 return NULL;
6407}
Bram Moolenaar064154c2016-03-19 22:50:43 +01006408#endif
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006409
Bram Moolenaar064154c2016-03-19 22:50:43 +01006410#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006411/*
6412 * Get the current command line in allocated memory.
6413 * Only works when the command line is being edited.
6414 * Returns NULL when something is wrong.
6415 */
6416 char_u *
6417get_cmdline_str(void)
6418{
Bram Moolenaaree91c332018-09-25 22:27:35 +02006419 struct cmdline_info *p;
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006420
Bram Moolenaaree91c332018-09-25 22:27:35 +02006421 if (cmdline_star > 0)
6422 return NULL;
6423 p = get_ccline_ptr();
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006424 if (p == NULL)
6425 return NULL;
6426 return vim_strnsave(p->cmdbuff, p->cmdlen);
6427}
6428
6429/*
6430 * Get the current command line position, counted in bytes.
6431 * Zero is the first position.
6432 * Only works when the command line is being edited.
6433 * Returns -1 when something is wrong.
6434 */
6435 int
6436get_cmdline_pos(void)
6437{
6438 struct cmdline_info *p = get_ccline_ptr();
6439
6440 if (p == NULL)
6441 return -1;
6442 return p->cmdpos;
6443}
6444
6445/*
6446 * Set the command line byte position to "pos". Zero is the first position.
6447 * Only works when the command line is being edited.
6448 * Returns 1 when failed, 0 when OK.
6449 */
6450 int
6451set_cmdline_pos(
6452 int pos)
6453{
6454 struct cmdline_info *p = get_ccline_ptr();
6455
6456 if (p == NULL)
6457 return 1;
6458
6459 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
6460 * changed the command line. */
6461 if (pos < 0)
6462 new_cmdpos = 0;
6463 else
6464 new_cmdpos = pos;
6465 return 0;
6466}
6467#endif
6468
6469#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
6470/*
6471 * Get the current command-line type.
6472 * Returns ':' or '/' or '?' or '@' or '>' or '-'
6473 * Only works when the command line is being edited.
6474 * Returns NUL when something is wrong.
6475 */
6476 int
6477get_cmdline_type(void)
6478{
6479 struct cmdline_info *p = get_ccline_ptr();
6480
6481 if (p == NULL)
6482 return NUL;
6483 if (p->cmdfirstc == NUL)
Bram Moolenaar064154c2016-03-19 22:50:43 +01006484 return
6485# ifdef FEAT_EVAL
6486 (p->input_fn) ? '@' :
6487# endif
6488 '-';
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006489 return p->cmdfirstc;
6490}
6491#endif
6492
Bram Moolenaar071d4272004-06-13 20:20:40 +00006493#if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO)
6494/*
6495 * Get indices "num1,num2" that specify a range within a list (not a range of
6496 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
6497 * Returns OK if parsed successfully, otherwise FAIL.
6498 */
6499 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006500get_list_range(char_u **str, int *num1, int *num2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501{
6502 int len;
6503 int first = FALSE;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02006504 varnumber_T num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006505
6506 *str = skipwhite(*str);
6507 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
6508 {
Bram Moolenaar16e9b852019-05-19 19:59:35 +02006509 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006510 *str += len;
6511 *num1 = (int)num;
6512 first = TRUE;
6513 }
6514 *str = skipwhite(*str);
6515 if (**str == ',') /* parse "to" part of range */
6516 {
6517 *str = skipwhite(*str + 1);
Bram Moolenaar16e9b852019-05-19 19:59:35 +02006518 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006519 if (len > 0)
6520 {
6521 *num2 = (int)num;
6522 *str = skipwhite(*str + len);
6523 }
6524 else if (!first) /* no number given at all */
6525 return FAIL;
6526 }
6527 else if (first) /* only one number given */
6528 *num2 = *num1;
6529 return OK;
6530}
6531#endif
6532
6533#if defined(FEAT_CMDHIST) || defined(PROTO)
6534/*
6535 * :history command - print a history
6536 */
6537 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006538ex_history(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006539{
6540 histentry_T *hist;
6541 int histype1 = HIST_CMD;
6542 int histype2 = HIST_CMD;
6543 int hisidx1 = 1;
6544 int hisidx2 = -1;
6545 int idx;
6546 int i, j, k;
6547 char_u *end;
6548 char_u *arg = eap->arg;
6549
6550 if (hislen == 0)
6551 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01006552 msg(_("'history' option is zero"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006553 return;
6554 }
6555
6556 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ','))
6557 {
6558 end = arg;
6559 while (ASCII_ISALPHA(*end)
6560 || vim_strchr((char_u *)":=@>/?", *end) != NULL)
6561 end++;
6562 i = *end;
6563 *end = NUL;
6564 histype1 = get_histtype(arg);
6565 if (histype1 == -1)
6566 {
Bram Moolenaarb9c1e962009-04-22 11:52:33 +00006567 if (STRNICMP(arg, "all", STRLEN(arg)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006568 {
6569 histype1 = 0;
6570 histype2 = HIST_COUNT-1;
6571 }
6572 else
6573 {
6574 *end = i;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006575 emsg(_(e_trailing));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006576 return;
6577 }
6578 }
6579 else
6580 histype2 = histype1;
6581 *end = i;
6582 }
6583 else
6584 end = arg;
6585 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL)
6586 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006587 emsg(_(e_trailing));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006588 return;
6589 }
6590
6591 for (; !got_int && histype1 <= histype2; ++histype1)
6592 {
6593 STRCPY(IObuff, "\n # ");
6594 STRCAT(STRCAT(IObuff, history_names[histype1]), " history");
Bram Moolenaar32526b32019-01-19 17:43:09 +01006595 msg_puts_title((char *)IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006596 idx = hisidx[histype1];
6597 hist = history[histype1];
6598 j = hisidx1;
6599 k = hisidx2;
6600 if (j < 0)
6601 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum;
6602 if (k < 0)
6603 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum;
6604 if (idx >= 0 && j <= k)
6605 for (i = idx + 1; !got_int; ++i)
6606 {
6607 if (i == hislen)
6608 i = 0;
6609 if (hist[i].hisstr != NULL
6610 && hist[i].hisnum >= j && hist[i].hisnum <= k)
6611 {
6612 msg_putchar('\n');
6613 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ',
6614 hist[i].hisnum);
6615 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10)
6616 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff),
Bram Moolenaar38f5f952012-01-26 13:01:59 +01006617 (int)Columns - 10, IOSIZE - (int)STRLEN(IObuff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006618 else
6619 STRCAT(IObuff, hist[i].hisstr);
6620 msg_outtrans(IObuff);
6621 out_flush();
6622 }
6623 if (i == idx)
6624 break;
6625 }
6626 }
6627}
6628#endif
6629
6630#if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006631/*
6632 * Buffers for history read from a viminfo file. Only valid while reading.
6633 */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006634static histentry_T *viminfo_history[HIST_COUNT] =
6635 {NULL, NULL, NULL, NULL, NULL};
6636static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0, 0};
6637static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006638static int viminfo_add_at_front = FALSE;
6639
Bram Moolenaar071d4272004-06-13 20:20:40 +00006640/*
6641 * Translate a history type number to the associated character.
6642 */
6643 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006644hist_type2char(
6645 int type,
6646 int use_question) /* use '?' instead of '/' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006647{
6648 if (type == HIST_CMD)
6649 return ':';
6650 if (type == HIST_SEARCH)
6651 {
6652 if (use_question)
6653 return '?';
6654 else
6655 return '/';
6656 }
6657 if (type == HIST_EXPR)
6658 return '=';
6659 return '@';
6660}
6661
6662/*
6663 * Prepare for reading the history from the viminfo file.
6664 * This allocates history arrays to store the read history lines.
6665 */
6666 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006667prepare_viminfo_history(int asklen, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006668{
6669 int i;
6670 int num;
6671 int type;
6672 int len;
6673
6674 init_history();
Bram Moolenaar07219f92013-04-14 23:19:36 +02006675 viminfo_add_at_front = (asklen != 0 && !writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006676 if (asklen > hislen)
6677 asklen = hislen;
6678
6679 for (type = 0; type < HIST_COUNT; ++type)
6680 {
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006681 /* Count the number of empty spaces in the history list. Entries read
6682 * from viminfo previously are also considered empty. If there are
6683 * more spaces available than we request, then fill them up. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006684 for (i = 0, num = 0; i < hislen; i++)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006685 if (history[type][i].hisstr == NULL || history[type][i].viminfo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006686 num++;
6687 len = asklen;
6688 if (num > len)
6689 len = num;
6690 if (len <= 0)
6691 viminfo_history[type] = NULL;
6692 else
Bram Moolenaarc799fe22019-05-28 23:08:19 +02006693 viminfo_history[type] = LALLOC_MULT(histentry_T, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006694 if (viminfo_history[type] == NULL)
6695 len = 0;
6696 viminfo_hislen[type] = len;
6697 viminfo_hisidx[type] = 0;
6698 }
6699}
6700
6701/*
6702 * Accept a line from the viminfo, store it in the history array when it's
6703 * new.
6704 */
6705 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006706read_viminfo_history(vir_T *virp, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006707{
6708 int type;
6709 long_u len;
6710 char_u *val;
6711 char_u *p;
6712
6713 type = hist_char2type(virp->vir_line[0]);
6714 if (viminfo_hisidx[type] < viminfo_hislen[type])
6715 {
6716 val = viminfo_readstring(virp, 1, TRUE);
6717 if (val != NULL && *val != NUL)
6718 {
Bram Moolenaard87fbc22012-02-04 22:44:32 +01006719 int sep = (*val == ' ' ? NUL : *val);
6720
Bram Moolenaar071d4272004-06-13 20:20:40 +00006721 if (!in_history(type, val + (type == HIST_SEARCH),
Bram Moolenaar07219f92013-04-14 23:19:36 +02006722 viminfo_add_at_front, sep, writing))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006723 {
6724 /* Need to re-allocate to append the separator byte. */
6725 len = STRLEN(val);
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02006726 p = alloc(len + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006727 if (p != NULL)
6728 {
6729 if (type == HIST_SEARCH)
6730 {
6731 /* Search entry: Move the separator from the first
6732 * column to after the NUL. */
6733 mch_memmove(p, val + 1, (size_t)len);
Bram Moolenaard87fbc22012-02-04 22:44:32 +01006734 p[len] = sep;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006735 }
6736 else
6737 {
6738 /* Not a search entry: No separator in the viminfo
6739 * file, add a NUL separator. */
6740 mch_memmove(p, val, (size_t)len + 1);
6741 p[len + 1] = NUL;
6742 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006743 viminfo_history[type][viminfo_hisidx[type]].hisstr = p;
6744 viminfo_history[type][viminfo_hisidx[type]].time_set = 0;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006745 viminfo_history[type][viminfo_hisidx[type]].viminfo = TRUE;
6746 viminfo_history[type][viminfo_hisidx[type]].hisnum = 0;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006747 viminfo_hisidx[type]++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006748 }
6749 }
6750 }
6751 vim_free(val);
6752 }
6753 return viminfo_readline(virp);
6754}
6755
Bram Moolenaar07219f92013-04-14 23:19:36 +02006756/*
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006757 * Accept a new style history line from the viminfo, store it in the history
6758 * array when it's new.
6759 */
6760 void
6761handle_viminfo_history(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006762 garray_T *values,
6763 int writing)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006764{
6765 int type;
6766 long_u len;
6767 char_u *val;
6768 char_u *p;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006769 bval_T *vp = (bval_T *)values->ga_data;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006770
6771 /* Check the format:
6772 * |{bartype},{histtype},{timestamp},{separator},"text" */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006773 if (values->ga_len < 4
6774 || vp[0].bv_type != BVAL_NR
6775 || vp[1].bv_type != BVAL_NR
6776 || (vp[2].bv_type != BVAL_NR && vp[2].bv_type != BVAL_EMPTY)
6777 || vp[3].bv_type != BVAL_STRING)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006778 return;
6779
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006780 type = vp[0].bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006781 if (type >= HIST_COUNT)
6782 return;
6783 if (viminfo_hisidx[type] < viminfo_hislen[type])
6784 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006785 val = vp[3].bv_string;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006786 if (val != NULL && *val != NUL)
6787 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006788 int sep = type == HIST_SEARCH && vp[2].bv_type == BVAL_NR
6789 ? vp[2].bv_nr : NUL;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006790 int idx;
6791 int overwrite = FALSE;
6792
6793 if (!in_history(type, val, viminfo_add_at_front, sep, writing))
6794 {
6795 /* If lines were written by an older Vim we need to avoid
6796 * getting duplicates. See if the entry already exists. */
6797 for (idx = 0; idx < viminfo_hisidx[type]; ++idx)
6798 {
6799 p = viminfo_history[type][idx].hisstr;
6800 if (STRCMP(val, p) == 0
6801 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1]))
6802 {
6803 overwrite = TRUE;
6804 break;
6805 }
6806 }
6807
6808 if (!overwrite)
6809 {
6810 /* Need to re-allocate to append the separator byte. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006811 len = vp[3].bv_len;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02006812 p = alloc(len + 2);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006813 }
Bram Moolenaar72e697d2016-06-13 22:48:01 +02006814 else
6815 len = 0; /* for picky compilers */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006816 if (p != NULL)
6817 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006818 viminfo_history[type][idx].time_set = vp[1].bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006819 if (!overwrite)
6820 {
6821 mch_memmove(p, val, (size_t)len + 1);
6822 /* Put the separator after the NUL. */
6823 p[len + 1] = sep;
6824 viminfo_history[type][idx].hisstr = p;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006825 viminfo_history[type][idx].hisnum = 0;
6826 viminfo_history[type][idx].viminfo = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006827 viminfo_hisidx[type]++;
6828 }
6829 }
6830 }
6831 }
6832 }
6833}
6834
6835/*
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006836 * Concatenate history lines from viminfo after the lines typed in this Vim.
Bram Moolenaar07219f92013-04-14 23:19:36 +02006837 */
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006838 static void
6839concat_history(int type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006840{
6841 int idx;
6842 int i;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006843
6844 idx = hisidx[type] + viminfo_hisidx[type];
6845 if (idx >= hislen)
6846 idx -= hislen;
6847 else if (idx < 0)
6848 idx = hislen - 1;
6849 if (viminfo_add_at_front)
6850 hisidx[type] = idx;
6851 else
6852 {
6853 if (hisidx[type] == -1)
6854 hisidx[type] = hislen - 1;
6855 do
6856 {
6857 if (history[type][idx].hisstr != NULL
6858 || history[type][idx].viminfo)
6859 break;
6860 if (++idx == hislen)
6861 idx = 0;
6862 } while (idx != hisidx[type]);
6863 if (idx != hisidx[type] && --idx < 0)
6864 idx = hislen - 1;
6865 }
6866 for (i = 0; i < viminfo_hisidx[type]; i++)
6867 {
6868 vim_free(history[type][idx].hisstr);
6869 history[type][idx].hisstr = viminfo_history[type][i].hisstr;
6870 history[type][idx].viminfo = TRUE;
6871 history[type][idx].time_set = viminfo_history[type][i].time_set;
6872 if (--idx < 0)
6873 idx = hislen - 1;
6874 }
6875 idx += 1;
6876 idx %= hislen;
6877 for (i = 0; i < viminfo_hisidx[type]; i++)
6878 {
6879 history[type][idx++].hisnum = ++hisnum[type];
6880 idx %= hislen;
6881 }
6882}
6883
6884#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6885 static int
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006886sort_hist(const void *s1, const void *s2)
6887{
6888 histentry_T *p1 = *(histentry_T **)s1;
6889 histentry_T *p2 = *(histentry_T **)s2;
6890
6891 if (p1->time_set < p2->time_set) return -1;
6892 if (p1->time_set > p2->time_set) return 1;
6893 return 0;
6894}
6895#endif
6896
6897/*
6898 * Merge history lines from viminfo and lines typed in this Vim based on the
6899 * timestamp;
6900 */
6901 static void
6902merge_history(int type)
6903{
6904 int max_len;
6905 histentry_T **tot_hist;
6906 histentry_T *new_hist;
6907 int i;
6908 int len;
6909
6910 /* Make one long list with all entries. */
6911 max_len = hislen + viminfo_hisidx[type];
Bram Moolenaarc799fe22019-05-28 23:08:19 +02006912 tot_hist = ALLOC_MULT(histentry_T *, max_len);
6913 new_hist = ALLOC_MULT(histentry_T, hislen );
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006914 if (tot_hist == NULL || new_hist == NULL)
6915 {
6916 vim_free(tot_hist);
6917 vim_free(new_hist);
6918 return;
6919 }
6920 for (i = 0; i < viminfo_hisidx[type]; i++)
6921 tot_hist[i] = &viminfo_history[type][i];
6922 len = i;
6923 for (i = 0; i < hislen; i++)
6924 if (history[type][i].hisstr != NULL)
6925 tot_hist[len++] = &history[type][i];
6926
6927 /* Sort the list on timestamp. */
6928 qsort((void *)tot_hist, (size_t)len, sizeof(histentry_T *), sort_hist);
6929
6930 /* Keep the newest ones. */
6931 for (i = 0; i < hislen; i++)
6932 {
6933 if (i < len)
6934 {
6935 new_hist[i] = *tot_hist[i];
6936 tot_hist[i]->hisstr = NULL;
6937 if (new_hist[i].hisnum == 0)
6938 new_hist[i].hisnum = ++hisnum[type];
6939 }
6940 else
6941 clear_hist_entry(&new_hist[i]);
6942 }
Bram Moolenaara890f5e2016-06-12 23:03:19 +02006943 hisidx[type] = (i < len ? i : len) - 1;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006944
6945 /* Free what is not kept. */
6946 for (i = 0; i < viminfo_hisidx[type]; i++)
6947 vim_free(viminfo_history[type][i].hisstr);
6948 for (i = 0; i < hislen; i++)
6949 vim_free(history[type][i].hisstr);
6950 vim_free(history[type]);
6951 history[type] = new_hist;
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02006952 vim_free(tot_hist);
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006953}
6954
6955/*
6956 * Finish reading history lines from viminfo. Not used when writing viminfo.
6957 */
6958 void
6959finish_viminfo_history(vir_T *virp)
6960{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006961 int type;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006962 int merge = virp->vir_version >= VIMINFO_VERSION_WITH_HISTORY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006963
6964 for (type = 0; type < HIST_COUNT; ++type)
6965 {
6966 if (history[type] == NULL)
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006967 continue;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006968
6969 if (merge)
6970 merge_history(type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006971 else
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006972 concat_history(type);
6973
Bram Moolenaard23a8232018-02-10 18:45:26 +01006974 VIM_CLEAR(viminfo_history[type]);
Bram Moolenaarf687cf32013-04-24 15:39:11 +02006975 viminfo_hisidx[type] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006976 }
6977}
6978
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006979/*
6980 * Write history to viminfo file in "fp".
6981 * When "merge" is TRUE merge history lines with a previously read viminfo
6982 * file, data is in viminfo_history[].
6983 * When "merge" is FALSE just write all history lines. Used for ":wviminfo!".
6984 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006985 void
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006986write_viminfo_history(FILE *fp, int merge)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006987{
6988 int i;
6989 int type;
6990 int num_saved;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006991 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006992
6993 init_history();
6994 if (hislen == 0)
6995 return;
6996 for (type = 0; type < HIST_COUNT; ++type)
6997 {
6998 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE));
6999 if (num_saved == 0)
7000 continue;
7001 if (num_saved < 0) /* Use default */
7002 num_saved = hislen;
7003 fprintf(fp, _("\n# %s History (newest to oldest):\n"),
7004 type == HIST_CMD ? _("Command Line") :
7005 type == HIST_SEARCH ? _("Search String") :
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02007006 type == HIST_EXPR ? _("Expression") :
7007 type == HIST_INPUT ? _("Input Line") :
7008 _("Debug Line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007009 if (num_saved > hislen)
7010 num_saved = hislen;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02007011
7012 /*
7013 * Merge typed and viminfo history:
7014 * round 1: history of typed commands.
7015 * round 2: history from recently read viminfo.
7016 */
7017 for (round = 1; round <= 2; ++round)
7018 {
Bram Moolenaara8565fe2013-04-15 16:14:22 +02007019 if (round == 1)
7020 /* start at newest entry, somewhere in the list */
7021 i = hisidx[type];
7022 else if (viminfo_hisidx[type] > 0)
7023 /* start at newest entry, first in the list */
7024 i = 0;
7025 else
7026 /* empty list */
7027 i = -1;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02007028 if (i >= 0)
7029 while (num_saved > 0
7030 && !(round == 2 && i >= viminfo_hisidx[type]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007031 {
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02007032 char_u *p;
7033 time_t timestamp;
7034 int c = NUL;
7035
7036 if (round == 1)
7037 {
7038 p = history[type][i].hisstr;
7039 timestamp = history[type][i].time_set;
7040 }
7041 else
7042 {
7043 p = viminfo_history[type] == NULL ? NULL
7044 : viminfo_history[type][i].hisstr;
7045 timestamp = viminfo_history[type] == NULL ? 0
7046 : viminfo_history[type][i].time_set;
7047 }
7048
Bram Moolenaarff1806f2013-06-15 16:31:47 +02007049 if (p != NULL && (round == 2
7050 || !merge
7051 || !history[type][i].viminfo))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007052 {
Bram Moolenaar6f852a52013-04-14 16:26:15 +02007053 --num_saved;
7054 fputc(hist_type2char(type, TRUE), fp);
7055 /* For the search history: put the separator in the
7056 * second column; use a space if there isn't one. */
7057 if (type == HIST_SEARCH)
7058 {
7059 c = p[STRLEN(p) + 1];
7060 putc(c == NUL ? ' ' : c, fp);
7061 }
7062 viminfo_writestring(fp, p);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02007063
7064 {
7065 char cbuf[NUMBUFLEN];
7066
7067 /* New style history with a bar line. Format:
7068 * |{bartype},{histtype},{timestamp},{separator},"text" */
7069 if (c == NUL)
7070 cbuf[0] = NUL;
7071 else
7072 sprintf(cbuf, "%d", c);
7073 fprintf(fp, "|%d,%d,%ld,%s,", BARTYPE_HISTORY,
7074 type, (long)timestamp, cbuf);
7075 barline_writestring(fp, p, LSIZE - 20);
7076 putc('\n', fp);
7077 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007078 }
Bram Moolenaar6f852a52013-04-14 16:26:15 +02007079 if (round == 1)
7080 {
7081 /* Decrement index, loop around and stop when back at
7082 * the start. */
7083 if (--i < 0)
7084 i = hislen - 1;
7085 if (i == hisidx[type])
7086 break;
7087 }
7088 else
7089 {
7090 /* Increment index. Stop at the end in the while. */
7091 ++i;
7092 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007093 }
Bram Moolenaar6f852a52013-04-14 16:26:15 +02007094 }
Bram Moolenaar07219f92013-04-14 23:19:36 +02007095 for (i = 0; i < viminfo_hisidx[type]; ++i)
Bram Moolenaarf687cf32013-04-24 15:39:11 +02007096 if (viminfo_history[type] != NULL)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02007097 vim_free(viminfo_history[type][i].hisstr);
Bram Moolenaard23a8232018-02-10 18:45:26 +01007098 VIM_CLEAR(viminfo_history[type]);
Bram Moolenaarb70a4732013-04-15 22:22:57 +02007099 viminfo_hisidx[type] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007100 }
7101}
7102#endif /* FEAT_VIMINFO */
7103
Bram Moolenaar071d4272004-06-13 20:20:40 +00007104#if defined(FEAT_CMDWIN) || defined(PROTO)
7105/*
7106 * Open a window on the current command line and history. Allow editing in
7107 * the window. Returns when the window is closed.
7108 * Returns:
7109 * CR if the command is to be executed
7110 * Ctrl_C if it is to be abandoned
7111 * K_IGNORE if editing continues
7112 */
7113 static int
Bram Moolenaar3bab9392017-04-07 15:42:25 +02007114open_cmdwin(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007115{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007116 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007117 win_T *old_curwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007118 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007119 win_T *wp;
7120 int i;
7121 linenr_T lnum;
7122 int histtype;
7123 garray_T winsizes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007124 int save_restart_edit = restart_edit;
7125 int save_State = State;
7126 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00007127#ifdef FEAT_RIGHTLEFT
7128 int save_cmdmsg_rl = cmdmsg_rl;
7129#endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02007130#ifdef FEAT_FOLDING
7131 int save_KeyTyped;
7132#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007133
7134 /* Can't do this recursively. Can't do it when typing a password. */
7135 if (cmdwin_type != 0
7136# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
7137 || cmdline_star > 0
7138# endif
7139 )
7140 {
7141 beep_flush();
7142 return K_IGNORE;
7143 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007144 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007145
7146 /* Save current window sizes. */
7147 win_size_save(&winsizes);
7148
Bram Moolenaar071d4272004-06-13 20:20:40 +00007149 /* Don't execute autocommands while creating the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007150 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007151
Bram Moolenaarf88af6e2019-01-22 22:55:00 +01007152#if defined(FEAT_INS_EXPAND)
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01007153 // When using completion in Insert mode with <C-R>=<C-F> one can open the
7154 // command line window, but we don't want the popup menu then.
7155 pum_undisplay();
Bram Moolenaarf88af6e2019-01-22 22:55:00 +01007156#endif
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01007157
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00007158 /* don't use a new tab page */
7159 cmdmod.tab = 0;
Bram Moolenaar3bab9392017-04-07 15:42:25 +02007160 cmdmod.noswapfile = 1;
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00007161
Bram Moolenaar071d4272004-06-13 20:20:40 +00007162 /* Create a window for the command-line buffer. */
7163 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
7164 {
7165 beep_flush();
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007166 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007167 return K_IGNORE;
7168 }
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00007169 cmdwin_type = get_cmdline_type();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007170
7171 /* Create the command-line buffer empty. */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00007172 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL);
Bram Moolenaar446cb832008-06-24 21:56:24 +00007173 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007174 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007175 curbuf->b_p_ma = TRUE;
Bram Moolenaar876f6d72009-04-29 10:05:51 +00007176#ifdef FEAT_FOLDING
7177 curwin->w_p_fen = FALSE;
7178#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007179# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00007180 curwin->w_p_rl = cmdmsg_rl;
7181 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007182# endif
Bram Moolenaar3368ea22010-09-21 16:56:35 +02007183 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007184
Bram Moolenaar071d4272004-06-13 20:20:40 +00007185 /* Do execute autocommands for setting the filetype (load syntax). */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007186 unblock_autocmds();
Bram Moolenaar18141832017-06-25 21:17:25 +02007187 /* But don't allow switching to another buffer. */
7188 ++curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007189
Bram Moolenaar46152342005-09-07 21:18:43 +00007190 /* Showing the prompt may have set need_wait_return, reset it. */
7191 need_wait_return = FALSE;
7192
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00007193 histtype = hist_char2type(cmdwin_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007194 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
7195 {
7196 if (p_wc == TAB)
7197 {
7198 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
7199 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
7200 }
7201 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
7202 }
Bram Moolenaar18141832017-06-25 21:17:25 +02007203 --curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007204
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00007205 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
7206 * sets 'textwidth' to 78). */
7207 curbuf->b_p_tw = 0;
7208
Bram Moolenaar071d4272004-06-13 20:20:40 +00007209 /* Fill the buffer with the history. */
7210 init_history();
7211 if (hislen > 0)
7212 {
7213 i = hisidx[histtype];
7214 if (i >= 0)
7215 {
7216 lnum = 0;
7217 do
7218 {
7219 if (++i == hislen)
7220 i = 0;
7221 if (history[histtype][i].hisstr != NULL)
7222 ml_append(lnum++, history[histtype][i].hisstr,
7223 (colnr_T)0, FALSE);
7224 }
7225 while (i != hisidx[histtype]);
7226 }
7227 }
7228
7229 /* Replace the empty last line with the current command-line and put the
7230 * cursor there. */
7231 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
7232 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
7233 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00007234 changed_line_abv_curs();
7235 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00007236 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007237
Bram Moolenaar071d4272004-06-13 20:20:40 +00007238 /* No Ex mode here! */
7239 exmode_active = 0;
7240
7241 State = NORMAL;
7242# ifdef FEAT_MOUSE
7243 setmouse();
7244# endif
7245
Bram Moolenaar071d4272004-06-13 20:20:40 +00007246 /* Trigger CmdwinEnter autocommands. */
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02007247 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINENTER);
Bram Moolenaar5495cc92006-08-16 14:23:04 +00007248 if (restart_edit != 0) /* autocmd with ":startinsert" */
7249 stuffcharReadbuff(K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007250
7251 i = RedrawingDisabled;
7252 RedrawingDisabled = 0;
7253
7254 /*
7255 * Call the main loop until <CR> or CTRL-C is typed.
7256 */
7257 cmdwin_result = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00007258 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007259
7260 RedrawingDisabled = i;
7261
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007262# ifdef FEAT_FOLDING
Bram Moolenaar42f06f92014-08-17 17:24:07 +02007263 save_KeyTyped = KeyTyped;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007264# endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02007265
Bram Moolenaar071d4272004-06-13 20:20:40 +00007266 /* Trigger CmdwinLeave autocommands. */
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02007267 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINLEAVE);
Bram Moolenaar42f06f92014-08-17 17:24:07 +02007268
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007269# ifdef FEAT_FOLDING
Bram Moolenaar42f06f92014-08-17 17:24:07 +02007270 /* Restore KeyTyped in case it is modified by autocommands */
7271 KeyTyped = save_KeyTyped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007272# endif
7273
Bram Moolenaar071d4272004-06-13 20:20:40 +00007274 cmdwin_type = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007275 exmode_active = save_exmode;
7276
Bram Moolenaarf9821062008-06-20 16:31:07 +00007277 /* Safety check: The old window or buffer was deleted: It's a bug when
Bram Moolenaar071d4272004-06-13 20:20:40 +00007278 * this happens! */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007279 if (!win_valid(old_curwin) || !bufref_valid(&old_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007280 {
7281 cmdwin_result = Ctrl_C;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007282 emsg(_("E199: Active window or buffer deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007283 }
7284 else
7285 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007286# if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007287 /* autocmds may abort script processing */
7288 if (aborting() && cmdwin_result != K_IGNORE)
7289 cmdwin_result = Ctrl_C;
7290# endif
7291 /* Set the new command line from the cmdline buffer. */
7292 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00007293 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007294 {
Bram Moolenaar46152342005-09-07 21:18:43 +00007295 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
7296
7297 if (histtype == HIST_CMD)
7298 {
7299 /* Execute the command directly. */
7300 ccline.cmdbuff = vim_strsave((char_u *)p);
7301 cmdwin_result = CAR;
7302 }
7303 else
7304 {
7305 /* First need to cancel what we were doing. */
7306 ccline.cmdbuff = NULL;
7307 stuffcharReadbuff(':');
7308 stuffReadbuff((char_u *)p);
7309 stuffcharReadbuff(CAR);
7310 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007311 }
7312 else if (cmdwin_result == K_XF2) /* :qa typed */
7313 {
7314 ccline.cmdbuff = vim_strsave((char_u *)"qa");
7315 cmdwin_result = CAR;
7316 }
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02007317 else if (cmdwin_result == Ctrl_C)
7318 {
7319 /* :q or :close, don't execute any command
7320 * and don't modify the cmd window. */
7321 ccline.cmdbuff = NULL;
7322 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007323 else
7324 ccline.cmdbuff = vim_strsave(ml_get_curline());
7325 if (ccline.cmdbuff == NULL)
Bram Moolenaar5a15b6a2017-07-11 15:11:57 +02007326 {
7327 ccline.cmdbuff = vim_strsave((char_u *)"");
7328 ccline.cmdlen = 0;
7329 ccline.cmdbufflen = 1;
7330 ccline.cmdpos = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007331 cmdwin_result = Ctrl_C;
Bram Moolenaar5a15b6a2017-07-11 15:11:57 +02007332 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007333 else
7334 {
7335 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
7336 ccline.cmdbufflen = ccline.cmdlen + 1;
7337 ccline.cmdpos = curwin->w_cursor.col;
7338 if (ccline.cmdpos > ccline.cmdlen)
7339 ccline.cmdpos = ccline.cmdlen;
7340 if (cmdwin_result == K_IGNORE)
7341 {
7342 set_cmdspos_cursor();
7343 redrawcmd();
7344 }
7345 }
7346
Bram Moolenaar071d4272004-06-13 20:20:40 +00007347 /* Don't execute autocommands while deleting the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007348 block_autocmds();
Bram Moolenaarfa67fbe2015-06-25 18:20:36 +02007349# ifdef FEAT_CONCEAL
7350 /* Avoid command-line window first character being concealed. */
7351 curwin->w_p_cole = 0;
7352# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007353 wp = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007354 set_bufref(&bufref, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007355 win_goto(old_curwin);
7356 win_close(wp, TRUE);
Bram Moolenaar8006d692010-03-02 17:23:21 +01007357
7358 /* win_close() may have already wiped the buffer when 'bh' is
7359 * set to 'wipe' */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007360 if (bufref_valid(&bufref))
7361 close_buffer(NULL, bufref.br_buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007362
7363 /* Restore window sizes. */
7364 win_size_restore(&winsizes);
7365
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007366 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007367 }
7368
7369 ga_clear(&winsizes);
7370 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00007371# ifdef FEAT_RIGHTLEFT
7372 cmdmsg_rl = save_cmdmsg_rl;
7373# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007374
7375 State = save_State;
7376# ifdef FEAT_MOUSE
7377 setmouse();
7378# endif
7379
7380 return cmdwin_result;
7381}
7382#endif /* FEAT_CMDWIN */
7383
7384/*
7385 * Used for commands that either take a simple command string argument, or:
7386 * cmd << endmarker
7387 * {script}
7388 * endmarker
7389 * Returns a pointer to allocated memory with {script} or NULL.
7390 */
7391 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007392script_get(exarg_T *eap, char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007393{
7394 char_u *theline;
7395 char *end_pattern = NULL;
7396 char dot[] = ".";
7397 garray_T ga;
7398
7399 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
7400 return NULL;
7401
7402 ga_init2(&ga, 1, 0x400);
7403
7404 if (cmd[2] != NUL)
7405 end_pattern = (char *)skipwhite(cmd + 2);
7406 else
7407 end_pattern = dot;
7408
7409 for (;;)
7410 {
7411 theline = eap->getline(
7412#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00007413 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00007414#endif
Bram Moolenaare96a2492019-06-25 04:12:16 +02007415 NUL, eap->cookie, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007416
7417 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
Bram Moolenaarbe555e72008-08-06 12:19:26 +00007418 {
7419 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007420 break;
Bram Moolenaarbe555e72008-08-06 12:19:26 +00007421 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007422
7423 ga_concat(&ga, theline);
7424 ga_append(&ga, '\n');
7425 vim_free(theline);
7426 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00007427 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007428
7429 return (char_u *)ga.ga_data;
7430}