blob: 7a00c6ba306d2ae7d9def6fbb5dd78db3bea1397 [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_RIGHTLEFT
63static int cmd_hkmap = 0; /* Hebrew mapping during command line */
64#endif
65
Bram Moolenaar438d1762018-09-30 17:11:48 +020066static char_u *getcmdline_int(int firstc, long count, int indent, int init_ccline);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010067static int cmdline_charsize(int idx);
68static void set_cmdspos(void);
69static void set_cmdspos_cursor(void);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010070static void correct_cmdspos(int idx, int cells);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010071static void alloc_cmdbuff(int len);
72static int realloc_cmdbuff(int len);
73static void draw_cmdline(int start, int len);
74static void save_cmdline(struct cmdline_info *ccp);
75static void restore_cmdline(struct cmdline_info *ccp);
76static int cmdline_paste(int regname, int literally, int remcr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000077#ifdef FEAT_WILDMENU
Bram Moolenaard25c16e2016-01-29 22:13:30 +010078static void cmdline_del(int from);
Bram Moolenaar071d4272004-06-13 20:20:40 +000079#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010080static void redrawcmdprompt(void);
81static void cursorcmd(void);
82static int ccheck_abbr(int);
83static int nextwild(expand_T *xp, int type, int options, int escape);
84static void escape_fname(char_u **pp);
85static int showmatches(expand_T *xp, int wildmenu);
86static void set_expand_context(expand_T *xp);
87static int ExpandFromContext(expand_T *xp, char_u *, int *, char_u ***, int);
88static int expand_showtail(expand_T *xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000089#ifdef FEAT_CMDL_COMPL
Bram Moolenaard25c16e2016-01-29 22:13:30 +010090static int expand_shellcmd(char_u *filepat, int *num_file, char_u ***file, int flagsarg);
Bram Moolenaar52f9c192016-03-13 13:24:45 +010091static int ExpandRTDir(char_u *pat, int flags, int *num_file, char_u ***file, char *dirname[]);
Bram Moolenaar35ca0e72016-03-05 17:41:49 +010092static int ExpandPackAddDir(char_u *pat, int *num_file, char_u ***file);
Bram Moolenaarac9fb182019-04-27 13:04:13 +020093# if defined(FEAT_EVAL)
Bram Moolenaard25c16e2016-01-29 22:13:30 +010094static int ExpandUserDefined(expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file);
95static int ExpandUserList(expand_T *xp, int *num_file, char_u ***file);
Bram Moolenaar071d4272004-06-13 20:20:40 +000096# endif
97#endif
98
99#ifdef FEAT_CMDWIN
Bram Moolenaar3bab9392017-04-07 15:42:25 +0200100static int open_cmdwin(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101#endif
102
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200103#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaareae1b912019-05-09 15:12:55 +0200104static int sort_func_compare(const void *s1, const void *s2);
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200105#endif
106
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200107
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200108 static void
109trigger_cmd_autocmd(int typechar, int evt)
110{
111 char_u typestr[2];
112
113 typestr[0] = typechar;
114 typestr[1] = NUL;
115 apply_autocmds(evt, typestr, typestr, FALSE, curbuf);
116}
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200117
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118/*
Bram Moolenaarf8e8c062017-10-22 14:44:17 +0200119 * Abandon the command line.
120 */
121 static void
122abandon_cmdline(void)
123{
Bram Moolenaard23a8232018-02-10 18:45:26 +0100124 VIM_CLEAR(ccline.cmdbuff);
Bram Moolenaarf8e8c062017-10-22 14:44:17 +0200125 if (msg_scrolled == 0)
126 compute_cmdrow();
Bram Moolenaar32526b32019-01-19 17:43:09 +0100127 msg("");
Bram Moolenaarf8e8c062017-10-22 14:44:17 +0200128 redraw_cmdline = TRUE;
129}
130
Bram Moolenaaree219b02017-12-17 14:55:01 +0100131#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaarf8e8c062017-10-22 14:44:17 +0200132/*
Bram Moolenaar66216052017-12-16 16:33:44 +0100133 * Guess that the pattern matches everything. Only finds specific cases, such
134 * as a trailing \|, which can happen while typing a pattern.
135 */
136 static int
137empty_pattern(char_u *p)
138{
Bram Moolenaar200ea8f2018-01-02 15:37:46 +0100139 size_t n = STRLEN(p);
Bram Moolenaar66216052017-12-16 16:33:44 +0100140
141 /* remove trailing \v and the like */
142 while (n >= 2 && p[n - 2] == '\\'
143 && vim_strchr((char_u *)"mMvVcCZ", p[n - 1]) != NULL)
144 n -= 2;
145 return n == 0 || (n >= 2 && p[n - 2] == '\\' && p[n - 1] == '|');
146}
147
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200148// Struct to store the viewstate during 'incsearch' highlighting.
Bram Moolenaar9b25af32018-04-28 13:56:09 +0200149typedef struct {
150 colnr_T vs_curswant;
151 colnr_T vs_leftcol;
152 linenr_T vs_topline;
153# ifdef FEAT_DIFF
154 int vs_topfill;
155# endif
156 linenr_T vs_botline;
157 linenr_T vs_empty_rows;
158} viewstate_T;
159
160 static void
161save_viewstate(viewstate_T *vs)
162{
163 vs->vs_curswant = curwin->w_curswant;
164 vs->vs_leftcol = curwin->w_leftcol;
165 vs->vs_topline = curwin->w_topline;
166# ifdef FEAT_DIFF
167 vs->vs_topfill = curwin->w_topfill;
168# endif
169 vs->vs_botline = curwin->w_botline;
170 vs->vs_empty_rows = curwin->w_empty_rows;
171}
172
173 static void
174restore_viewstate(viewstate_T *vs)
175{
176 curwin->w_curswant = vs->vs_curswant;
177 curwin->w_leftcol = vs->vs_leftcol;
178 curwin->w_topline = vs->vs_topline;
179# ifdef FEAT_DIFF
180 curwin->w_topfill = vs->vs_topfill;
181# endif
182 curwin->w_botline = vs->vs_botline;
183 curwin->w_empty_rows = vs->vs_empty_rows;
184}
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200185
186// Struct to store the state of 'incsearch' highlighting.
187typedef struct {
188 pos_T search_start; // where 'incsearch' starts searching
189 pos_T save_cursor;
190 viewstate_T init_viewstate;
191 viewstate_T old_viewstate;
192 pos_T match_start;
193 pos_T match_end;
194 int did_incsearch;
195 int incsearch_postponed;
Bram Moolenaar167ae422018-08-14 21:32:21 +0200196 int magic_save;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200197} incsearch_state_T;
198
199 static void
200init_incsearch_state(incsearch_state_T *is_state)
201{
202 is_state->match_start = curwin->w_cursor;
203 is_state->did_incsearch = FALSE;
204 is_state->incsearch_postponed = FALSE;
Bram Moolenaar167ae422018-08-14 21:32:21 +0200205 is_state->magic_save = p_magic;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200206 CLEAR_POS(&is_state->match_end);
207 is_state->save_cursor = curwin->w_cursor; // may be restored later
208 is_state->search_start = curwin->w_cursor;
209 save_viewstate(&is_state->init_viewstate);
210 save_viewstate(&is_state->old_viewstate);
211}
212
213/*
214 * First move cursor to end of match, then to the start. This
215 * moves the whole match onto the screen when 'nowrap' is set.
216 */
217 static void
218set_search_match(pos_T *t)
219{
220 t->lnum += search_match_lines;
221 t->col = search_match_endcol;
222 if (t->lnum > curbuf->b_ml.ml_line_count)
223 {
224 t->lnum = curbuf->b_ml.ml_line_count;
225 coladvance((colnr_T)MAXCOL);
226 }
227}
228
229/*
230 * Return TRUE when 'incsearch' highlighting is to be done.
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200231 * Sets search_first_line and search_last_line to the address range.
Bram Moolenaar198cb662018-09-06 21:44:17 +0200232 * May change the last search pattern.
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200233 */
234 static int
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200235do_incsearch_highlighting(int firstc, incsearch_state_T *is_state,
236 int *skiplen, int *patlen)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200237{
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200238 char_u *cmd;
239 cmdmod_T save_cmdmod = cmdmod;
240 char_u *p;
241 int delim_optional = FALSE;
242 int delim;
243 char_u *end;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100244 char *dummy;
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200245 exarg_T ea;
246 pos_T save_cursor;
Bram Moolenaar8b0d5ce2018-08-22 23:05:44 +0200247 int use_last_pat;
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200248
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200249 *skiplen = 0;
250 *patlen = ccline.cmdlen;
251
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200252 if (!p_is || cmd_silent)
253 return FALSE;
254
255 // by default search all lines
256 search_first_line = 0;
257 search_last_line = MAXLNUM;
258
259 if (firstc == '/' || firstc == '?')
260 return TRUE;
261 if (firstc != ':')
262 return FALSE;
263
264 vim_memset(&ea, 0, sizeof(ea));
265 ea.line1 = 1;
266 ea.line2 = 1;
267 ea.cmd = ccline.cmdbuff;
268 ea.addr_type = ADDR_LINES;
269
270 parse_command_modifiers(&ea, &dummy, TRUE);
271 cmdmod = save_cmdmod;
272
273 cmd = skip_range(ea.cmd, NULL);
274 if (vim_strchr((char_u *)"sgvl", *cmd) == NULL)
275 return FALSE;
276
277 // Skip over "substitute" to find the pattern separator.
278 for (p = cmd; ASCII_ISALPHA(*p); ++p)
279 ;
280 if (*skipwhite(p) == NUL)
281 return FALSE;
282
283 if (STRNCMP(cmd, "substitute", p - cmd) == 0
284 || STRNCMP(cmd, "smagic", p - cmd) == 0
285 || STRNCMP(cmd, "snomagic", MAX(p - cmd, 3)) == 0
286 || STRNCMP(cmd, "vglobal", p - cmd) == 0)
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200287 {
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200288 if (*cmd == 's' && cmd[1] == 'm')
289 p_magic = TRUE;
290 else if (*cmd == 's' && cmd[1] == 'n')
291 p_magic = FALSE;
292 }
293 else if (STRNCMP(cmd, "sort", MAX(p - cmd, 3)) == 0)
294 {
295 // skip over flags
296 while (ASCII_ISALPHA(*(p = skipwhite(p))))
297 ++p;
298 if (*p == NUL)
299 return FALSE;
300 }
301 else if (STRNCMP(cmd, "vimgrep", MAX(p - cmd, 3)) == 0
302 || STRNCMP(cmd, "vimgrepadd", MAX(p - cmd, 8)) == 0
303 || STRNCMP(cmd, "lvimgrep", MAX(p - cmd, 2)) == 0
304 || STRNCMP(cmd, "lvimgrepadd", MAX(p - cmd, 9)) == 0
305 || STRNCMP(cmd, "global", p - cmd) == 0)
306 {
307 // skip over "!"
308 if (*p == '!')
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200309 {
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200310 p++;
311 if (*skipwhite(p) == NUL)
312 return FALSE;
313 }
314 if (*cmd != 'g')
315 delim_optional = TRUE;
316 }
317 else
318 return FALSE;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200319
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200320 p = skipwhite(p);
321 delim = (delim_optional && vim_isIDc(*p)) ? ' ' : *p++;
322 end = skip_regexp(p, delim, p_magic, NULL);
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +0200323
Bram Moolenaar8b0d5ce2018-08-22 23:05:44 +0200324 use_last_pat = end == p && *end == delim;
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +0200325
Bram Moolenaar8b0d5ce2018-08-22 23:05:44 +0200326 if (end == p && !use_last_pat)
327 return FALSE;
328
329 // Don't do 'hlsearch' highlighting if the pattern matches everything.
330 if (!use_last_pat)
331 {
332 char c = *end;
333 int empty;
334
335 *end = NUL;
336 empty = empty_pattern(p);
337 *end = c;
338 if (empty)
339 return FALSE;
340 }
341
342 // found a non-empty pattern or //
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200343 *skiplen = (int)(p - ccline.cmdbuff);
344 *patlen = (int)(end - p);
Bram Moolenaar264cf5c2018-08-18 21:05:31 +0200345
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200346 // parse the address range
347 save_cursor = curwin->w_cursor;
348 curwin->w_cursor = is_state->search_start;
Bram Moolenaar50eb16c2018-09-15 15:42:40 +0200349 parse_cmd_address(&ea, &dummy, TRUE);
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200350 if (ea.addr_count > 0)
351 {
352 // Allow for reverse match.
353 if (ea.line2 < ea.line1)
354 {
355 search_first_line = ea.line2;
356 search_last_line = ea.line1;
357 }
358 else
359 {
360 search_first_line = ea.line1;
361 search_last_line = ea.line2;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200362 }
363 }
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200364 else if (cmd[0] == 's' && cmd[1] != 'o')
365 {
366 // :s defaults to the current line
367 search_first_line = curwin->w_cursor.lnum;
368 search_last_line = curwin->w_cursor.lnum;
369 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200370
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200371 curwin->w_cursor = save_cursor;
372 return TRUE;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200373}
374
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200375 static void
376finish_incsearch_highlighting(
377 int gotesc,
378 incsearch_state_T *is_state,
379 int call_update_screen)
380{
381 if (is_state->did_incsearch)
382 {
383 is_state->did_incsearch = FALSE;
384 if (gotesc)
385 curwin->w_cursor = is_state->save_cursor;
386 else
387 {
388 if (!EQUAL_POS(is_state->save_cursor, is_state->search_start))
389 {
390 // put the '" mark at the original position
391 curwin->w_cursor = is_state->save_cursor;
392 setpcmark();
393 }
394 curwin->w_cursor = is_state->search_start;
395 }
396 restore_viewstate(&is_state->old_viewstate);
397 highlight_match = FALSE;
Bram Moolenaarf13daa42018-08-31 22:09:54 +0200398
399 // by default search all lines
400 search_first_line = 0;
401 search_last_line = MAXLNUM;
402
403 p_magic = is_state->magic_save;
404
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200405 validate_cursor(); /* needed for TAB */
Bram Moolenaar65985ac2018-09-16 17:08:04 +0200406 redraw_all_later(SOME_VALID);
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200407 if (call_update_screen)
408 update_screen(SOME_VALID);
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200409 }
410}
411
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200412/*
413 * Do 'incsearch' highlighting if desired.
414 */
415 static void
416may_do_incsearch_highlighting(
417 int firstc,
418 long count,
419 incsearch_state_T *is_state)
420{
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200421 int skiplen, patlen;
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200422 int found; // do_search() result
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200423 pos_T end_pos;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200424#ifdef FEAT_RELTIME
425 proftime_T tm;
426#endif
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200427 int next_char;
428 int use_last_pat;
Bram Moolenaar693f7dc2019-06-21 02:30:38 +0200429 int did_do_incsearch = is_state->did_incsearch;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200430
Bram Moolenaar198cb662018-09-06 21:44:17 +0200431 // Parsing range may already set the last search pattern.
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100432 // NOTE: must call restore_last_search_pattern() before returning!
Bram Moolenaar198cb662018-09-06 21:44:17 +0200433 save_last_search_pattern();
434
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200435 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen))
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200436 {
Bram Moolenaar198cb662018-09-06 21:44:17 +0200437 restore_last_search_pattern();
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200438 finish_incsearch_highlighting(FALSE, is_state, TRUE);
Bram Moolenaar693f7dc2019-06-21 02:30:38 +0200439 if (did_do_incsearch && vpeekc() == NUL)
440 // may have skipped a redraw, do it now
441 redrawcmd();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200442 return;
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200443 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200444
445 // If there is a character waiting, search and redraw later.
446 if (char_avail())
447 {
Bram Moolenaar198cb662018-09-06 21:44:17 +0200448 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200449 is_state->incsearch_postponed = TRUE;
450 return;
451 }
452 is_state->incsearch_postponed = FALSE;
453
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200454 if (search_first_line == 0)
455 // start at the original cursor position
456 curwin->w_cursor = is_state->search_start;
Bram Moolenaar1c299432018-10-28 14:36:09 +0100457 else if (search_first_line > curbuf->b_ml.ml_line_count)
458 {
459 // start after the last line
460 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
461 curwin->w_cursor.col = MAXCOL;
462 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200463 else
464 {
465 // start at the first line in the range
466 curwin->w_cursor.lnum = search_first_line;
467 curwin->w_cursor.col = 0;
468 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200469
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200470 // Use the previous pattern for ":s//".
471 next_char = ccline.cmdbuff[skiplen + patlen];
472 use_last_pat = patlen == 0 && skiplen > 0
473 && ccline.cmdbuff[skiplen - 1] == next_char;
474
475 // If there is no pattern, don't do anything.
476 if (patlen == 0 && !use_last_pat)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200477 {
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200478 found = 0;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200479 set_no_hlsearch(TRUE); // turn off previous highlight
480 redraw_all_later(SOME_VALID);
481 }
482 else
483 {
484 int search_flags = SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK;
485
486 cursor_off(); // so the user knows we're busy
487 out_flush();
488 ++emsg_off; // so it doesn't beep if bad expr
489#ifdef FEAT_RELTIME
490 // Set the time limit to half a second.
491 profile_setlimit(500L, &tm);
492#endif
493 if (!p_hls)
494 search_flags += SEARCH_KEEP;
Bram Moolenaar976b8472018-08-12 15:49:47 +0200495 if (search_first_line != 0)
496 search_flags += SEARCH_START;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200497 ccline.cmdbuff[skiplen + patlen] = NUL;
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200498 found = do_search(NULL, firstc == ':' ? '/' : firstc,
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200499 ccline.cmdbuff + skiplen, count, search_flags,
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200500#ifdef FEAT_RELTIME
501 &tm, NULL
502#else
503 NULL, NULL
504#endif
505 );
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200506 ccline.cmdbuff[skiplen + patlen] = next_char;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200507 --emsg_off;
508
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200509 if (curwin->w_cursor.lnum < search_first_line
510 || curwin->w_cursor.lnum > search_last_line)
Bram Moolenaar2f6a3462018-08-14 18:16:52 +0200511 {
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200512 // match outside of address range
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200513 found = 0;
Bram Moolenaar2f6a3462018-08-14 18:16:52 +0200514 curwin->w_cursor = is_state->search_start;
515 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200516
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200517 // if interrupted while searching, behave like it failed
518 if (got_int)
519 {
520 (void)vpeekc(); // remove <C-C> from input stream
521 got_int = FALSE; // don't abandon the command line
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200522 found = 0;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200523 }
524 else if (char_avail())
525 // cancelled searching because a char was typed
526 is_state->incsearch_postponed = TRUE;
527 }
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200528 if (found != 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200529 highlight_match = TRUE; // highlight position
530 else
531 highlight_match = FALSE; // remove highlight
532
533 // First restore the old curwin values, so the screen is positioned in the
534 // same way as the actual search command.
535 restore_viewstate(&is_state->old_viewstate);
536 changed_cline_bef_curs();
537 update_topline();
538
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200539 if (found != 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200540 {
541 pos_T save_pos = curwin->w_cursor;
542
543 is_state->match_start = curwin->w_cursor;
544 set_search_match(&curwin->w_cursor);
545 validate_cursor();
546 end_pos = curwin->w_cursor;
547 is_state->match_end = end_pos;
548 curwin->w_cursor = save_pos;
549 }
550 else
551 end_pos = curwin->w_cursor; // shutup gcc 4
552
Bram Moolenaar4edfe2d2018-08-23 20:55:45 +0200553 // Disable 'hlsearch' highlighting if the pattern matches everything.
554 // Avoids a flash when typing "foo\|".
555 if (!use_last_pat)
556 {
557 next_char = ccline.cmdbuff[skiplen + patlen];
558 ccline.cmdbuff[skiplen + patlen] = NUL;
Bram Moolenaar65985ac2018-09-16 17:08:04 +0200559 if (empty_pattern(ccline.cmdbuff) && !no_hlsearch)
560 {
561 redraw_all_later(SOME_VALID);
Bram Moolenaar4edfe2d2018-08-23 20:55:45 +0200562 set_no_hlsearch(TRUE);
Bram Moolenaar65985ac2018-09-16 17:08:04 +0200563 }
Bram Moolenaar4edfe2d2018-08-23 20:55:45 +0200564 ccline.cmdbuff[skiplen + patlen] = next_char;
565 }
566
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200567 validate_cursor();
568 // May redraw the status line to show the cursor position.
569 if (p_ru && curwin->w_status_height > 0)
570 curwin->w_redr_status = TRUE;
571
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200572 update_screen(SOME_VALID);
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200573 restore_last_search_pattern();
574
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200575 // Leave it at the end to make CTRL-R CTRL-W work. But not when beyond the
576 // end of the pattern, e.g. for ":s/pat/".
577 if (ccline.cmdbuff[skiplen + patlen] != NUL)
578 curwin->w_cursor = is_state->search_start;
579 else if (found != 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200580 curwin->w_cursor = end_pos;
581
582 msg_starthere();
583 redrawcmdline();
584 is_state->did_incsearch = TRUE;
585}
586
587/*
588 * May adjust 'incsearch' highlighting for typing CTRL-G and CTRL-T, go to next
589 * or previous match.
590 * Returns FAIL when jumping to cmdline_not_changed;
591 */
592 static int
593may_adjust_incsearch_highlighting(
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200594 int firstc,
595 long count,
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200596 incsearch_state_T *is_state,
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200597 int c)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200598{
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200599 int skiplen, patlen;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200600 pos_T t;
601 char_u *pat;
602 int search_flags = SEARCH_NOOF;
603 int i;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200604 int save;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200605
Bram Moolenaar198cb662018-09-06 21:44:17 +0200606 // Parsing range may already set the last search pattern.
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100607 // NOTE: must call restore_last_search_pattern() before returning!
Bram Moolenaar198cb662018-09-06 21:44:17 +0200608 save_last_search_pattern();
609
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200610 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen))
Bram Moolenaar198cb662018-09-06 21:44:17 +0200611 {
612 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200613 return OK;
Bram Moolenaar198cb662018-09-06 21:44:17 +0200614 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200615 if (patlen == 0 && ccline.cmdbuff[skiplen] == NUL)
Bram Moolenaar198cb662018-09-06 21:44:17 +0200616 {
617 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200618 return FAIL;
Bram Moolenaar198cb662018-09-06 21:44:17 +0200619 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200620
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200621 if (firstc == ccline.cmdbuff[skiplen])
Bram Moolenaaref73a282018-08-11 19:02:22 +0200622 {
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200623 pat = last_search_pattern();
Bram Moolenaaref73a282018-08-11 19:02:22 +0200624 skiplen = 0;
Bram Moolenaard7cc1632018-08-14 20:18:26 +0200625 patlen = (int)STRLEN(pat);
Bram Moolenaaref73a282018-08-11 19:02:22 +0200626 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200627 else
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200628 pat = ccline.cmdbuff + skiplen;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200629
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200630 cursor_off();
631 out_flush();
632 if (c == Ctrl_G)
633 {
634 t = is_state->match_end;
635 if (LT_POS(is_state->match_start, is_state->match_end))
636 // Start searching at the end of the match not at the beginning of
637 // the next column.
638 (void)decl(&t);
639 search_flags += SEARCH_COL;
640 }
641 else
642 t = is_state->match_start;
643 if (!p_hls)
644 search_flags += SEARCH_KEEP;
645 ++emsg_off;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200646 save = pat[patlen];
647 pat[patlen] = NUL;
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100648 i = searchit(curwin, curbuf, &t, NULL,
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200649 c == Ctrl_G ? FORWARD : BACKWARD,
650 pat, count, search_flags,
651 RE_SEARCH, 0, NULL, NULL);
652 --emsg_off;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200653 pat[patlen] = save;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200654 if (i)
655 {
656 is_state->search_start = is_state->match_start;
657 is_state->match_end = t;
658 is_state->match_start = t;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200659 if (c == Ctrl_T && firstc != '?')
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200660 {
661 // Move just before the current match, so that when nv_search
662 // finishes the cursor will be put back on the match.
663 is_state->search_start = t;
664 (void)decl(&is_state->search_start);
665 }
666 else if (c == Ctrl_G && firstc == '?')
667 {
668 // Move just after the current match, so that when nv_search
669 // finishes the cursor will be put back on the match.
670 is_state->search_start = t;
671 (void)incl(&is_state->search_start);
672 }
673 if (LT_POS(t, is_state->search_start) && c == Ctrl_G)
674 {
675 // wrap around
676 is_state->search_start = t;
677 if (firstc == '?')
678 (void)incl(&is_state->search_start);
679 else
680 (void)decl(&is_state->search_start);
681 }
682
683 set_search_match(&is_state->match_end);
684 curwin->w_cursor = is_state->match_start;
685 changed_cline_bef_curs();
686 update_topline();
687 validate_cursor();
688 highlight_match = TRUE;
689 save_viewstate(&is_state->old_viewstate);
690 update_screen(NOT_VALID);
691 redrawcmdline();
Bram Moolenaar69a5b862019-07-16 21:38:51 +0200692 curwin->w_cursor = is_state->match_end;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200693 }
694 else
695 vim_beep(BO_ERROR);
696 restore_last_search_pattern();
697 return FAIL;
698}
699
700/*
701 * When CTRL-L typed: add character from the match to the pattern.
702 * May set "*c" to the added character.
703 * Return OK when jumping to cmdline_not_changed.
704 */
705 static int
706may_add_char_to_search(int firstc, int *c, incsearch_state_T *is_state)
707{
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200708 int skiplen, patlen;
709
Bram Moolenaar198cb662018-09-06 21:44:17 +0200710 // Parsing range may already set the last search pattern.
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100711 // NOTE: must call restore_last_search_pattern() before returning!
Bram Moolenaar198cb662018-09-06 21:44:17 +0200712 save_last_search_pattern();
713
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200714 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen))
Bram Moolenaar198cb662018-09-06 21:44:17 +0200715 {
716 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200717 return FAIL;
Bram Moolenaar198cb662018-09-06 21:44:17 +0200718 }
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100719 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200720
721 // Add a character from under the cursor for 'incsearch'.
722 if (is_state->did_incsearch)
723 {
724 curwin->w_cursor = is_state->match_end;
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200725 *c = gchar_cursor();
726 if (*c != NUL)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200727 {
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200728 // If 'ignorecase' and 'smartcase' are set and the
729 // command line has no uppercase characters, convert
730 // the character to lowercase.
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200731 if (p_ic && p_scs && !pat_has_uppercase(ccline.cmdbuff + skiplen))
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200732 *c = MB_TOLOWER(*c);
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200733 if (*c == firstc || vim_strchr((char_u *)(
734 p_magic ? "\\~^$.*[" : "\\^$"), *c) != NULL)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200735 {
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200736 // put a backslash before special characters
737 stuffcharReadbuff(*c);
738 *c = '\\';
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200739 }
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200740 // add any composing characters
741 if (mb_char2len(*c) != mb_ptr2len(ml_get_cursor()))
742 {
743 int save_c = *c;
744
745 while (mb_char2len(*c) != mb_ptr2len(ml_get_cursor()))
746 {
747 curwin->w_cursor.col += mb_char2len(*c);
748 *c = gchar_cursor();
749 stuffcharReadbuff(*c);
750 }
751 *c = save_c;
752 }
753 return FAIL;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200754 }
755 }
756 return OK;
757}
Bram Moolenaar9b25af32018-04-28 13:56:09 +0200758#endif
759
Bram Moolenaar693f7dc2019-06-21 02:30:38 +0200760#ifdef FEAT_ARABIC
761/*
762 * Return TRUE if the command line has an Arabic character at or after "start"
763 * for "len" bytes.
764 */
765 static int
766cmdline_has_arabic(int start, int len)
767{
768 int j;
769 int mb_l;
770 int u8c;
771 char_u *p;
772 int u8cc[MAX_MCO];
773
774 if (!enc_utf8)
775 return FALSE;
776
777 for (j = start; j < start + len; j += mb_l)
778 {
779 p = ccline.cmdbuff + j;
780 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
781 mb_l = utfc_ptr2len_len(p, start + len - j);
782 if (ARABIC_CHAR(u8c))
783 return TRUE;
784 }
785 return FALSE;
786}
787#endif
788
Bram Moolenaard3dc0622018-09-30 17:45:30 +0200789 void
790cmdline_init(void)
791{
792 vim_memset(&ccline, 0, sizeof(struct cmdline_info));
793}
794
Bram Moolenaar66216052017-12-16 16:33:44 +0100795/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 * getcmdline() - accept a command line starting with firstc.
797 *
798 * firstc == ':' get ":" command line.
799 * firstc == '/' or '?' get search pattern
800 * firstc == '=' get expression
801 * firstc == '@' get text for input() function
802 * firstc == '>' get text for debug mode
803 * firstc == NUL get text for :insert command
804 * firstc == -1 like NUL, and break on CTRL-C
805 *
806 * The line is collected in ccline.cmdbuff, which is reallocated to fit the
807 * command line.
808 *
809 * Careful: getcmdline() can be called recursively!
810 *
811 * Return pointer to allocated string if there is a commandline, NULL
812 * otherwise.
813 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100815getcmdline(
816 int firstc,
Bram Moolenaar438d1762018-09-30 17:11:48 +0200817 long count, // only used for incremental search
Bram Moolenaare96a2492019-06-25 04:12:16 +0200818 int indent, // indent for inside conditionals
819 int do_concat UNUSED)
Bram Moolenaar438d1762018-09-30 17:11:48 +0200820{
821 return getcmdline_int(firstc, count, indent, TRUE);
822}
823
824 static char_u *
825getcmdline_int(
826 int firstc,
827 long count UNUSED, // only used for incremental search
828 int indent, // indent for inside conditionals
829 int init_ccline) // clear ccline first
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830{
831 int c;
832 int i;
833 int j;
834 int gotesc = FALSE; /* TRUE when <ESC> just typed */
835 int do_abbr; /* when TRUE check for abbr. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836 char_u *lookfor = NULL; /* string to match */
837 int hiscnt; /* current history line in use */
838 int histype; /* history type to be used */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200840 incsearch_state_T is_state;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841#endif
842 int did_wild_list = FALSE; /* did wild_list() recently */
843 int wim_index = 0; /* index in wim_flags[] */
844 int res;
845 int save_msg_scroll = msg_scroll;
846 int save_State = State; /* remember State when called */
847 int some_key_typed = FALSE; /* one of the keys was typed */
848#ifdef FEAT_MOUSE
849 /* mouse drag and release events are ignored, unless they are
850 * preceded with a mouse down event */
851 int ignore_drag_release = TRUE;
852#endif
853#ifdef FEAT_EVAL
854 int break_ctrl_c = FALSE;
855#endif
856 expand_T xpc;
857 long *b_im_ptr = NULL;
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000858 struct cmdline_info save_ccline;
Bram Moolenaar438d1762018-09-30 17:11:48 +0200859 int did_save_ccline = FALSE;
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200860 int cmdline_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861
Bram Moolenaar438d1762018-09-30 17:11:48 +0200862 if (ccline.cmdbuff != NULL)
863 {
864 // Being called recursively. Since ccline is global, we need to save
865 // the current buffer and restore it when returning.
866 save_cmdline(&save_ccline);
867 did_save_ccline = TRUE;
868 }
869 if (init_ccline)
870 vim_memset(&ccline, 0, sizeof(struct cmdline_info));
871
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872#ifdef FEAT_EVAL
873 if (firstc == -1)
874 {
875 firstc = NUL;
876 break_ctrl_c = TRUE;
877 }
878#endif
879#ifdef FEAT_RIGHTLEFT
880 /* start without Hebrew mapping for a command line */
881 if (firstc == ':' || firstc == '=' || firstc == '>')
882 cmd_hkmap = 0;
883#endif
884
885 ccline.overstrike = FALSE; /* always start in insert mode */
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200886
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200888 init_incsearch_state(&is_state);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889#endif
890
891 /*
892 * set some variables for redrawcmd()
893 */
894 ccline.cmdfirstc = (firstc == '@' ? 0 : firstc);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000895 ccline.cmdindent = (firstc > 0 ? indent : 0);
896
897 /* alloc initial ccline.cmdbuff */
898 alloc_cmdbuff(exmode_active ? 250 : indent + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 if (ccline.cmdbuff == NULL)
Bram Moolenaar438d1762018-09-30 17:11:48 +0200900 goto theend; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901 ccline.cmdlen = ccline.cmdpos = 0;
902 ccline.cmdbuff[0] = NUL;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +0100903 sb_text_start_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000905 /* autoindent for :insert and :append */
906 if (firstc <= 0)
907 {
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200908 vim_memset(ccline.cmdbuff, ' ', indent);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000909 ccline.cmdbuff[indent] = NUL;
910 ccline.cmdpos = indent;
911 ccline.cmdspos = indent;
912 ccline.cmdlen = indent;
913 }
914
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 ExpandInit(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000916 ccline.xpc = &xpc;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917
918#ifdef FEAT_RIGHTLEFT
919 if (curwin->w_p_rl && *curwin->w_p_rlc == 's'
920 && (firstc == '/' || firstc == '?'))
921 cmdmsg_rl = TRUE;
922 else
923 cmdmsg_rl = FALSE;
924#endif
925
926 redir_off = TRUE; /* don't redirect the typed command */
927 if (!cmd_silent)
928 {
929 i = msg_scrolled;
930 msg_scrolled = 0; /* avoid wait_return message */
931 gotocmdline(TRUE);
932 msg_scrolled += i;
933 redrawcmdprompt(); /* draw prompt or indent */
934 set_cmdspos();
935 }
936 xpc.xp_context = EXPAND_NOTHING;
937 xpc.xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000938#ifndef BACKSLASH_IN_FILENAME
939 xpc.xp_shell = FALSE;
940#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000942#if defined(FEAT_EVAL)
943 if (ccline.input_fn)
944 {
945 xpc.xp_context = ccline.xp_context;
946 xpc.xp_pattern = ccline.cmdbuff;
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200947# if defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000948 xpc.xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +0000949# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000950 }
951#endif
952
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953 /*
954 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when
955 * doing ":@0" when register 0 doesn't contain a CR.
956 */
957 msg_scroll = FALSE;
958
959 State = CMDLINE;
960
961 if (firstc == '/' || firstc == '?' || firstc == '@')
962 {
963 /* Use ":lmap" mappings for search pattern and input(). */
964 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT)
965 b_im_ptr = &curbuf->b_p_iminsert;
966 else
967 b_im_ptr = &curbuf->b_p_imsearch;
968 if (*b_im_ptr == B_IMODE_LMAP)
969 State |= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100970#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 im_set_active(*b_im_ptr == B_IMODE_IM);
972#endif
973 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100974#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 else if (p_imcmdline)
976 im_set_active(TRUE);
977#endif
978
979#ifdef FEAT_MOUSE
980 setmouse();
981#endif
982#ifdef CURSOR_SHAPE
983 ui_cursor_shape(); /* may show different cursor shape */
984#endif
985
Bram Moolenaarf4d11452005-12-02 00:46:37 +0000986 /* When inside an autocommand for writing "exiting" may be set and
987 * terminal mode set to cooked. Need to set raw mode here then. */
988 settmode(TMODE_RAW);
989
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200990 /* Trigger CmdlineEnter autocommands. */
991 cmdline_type = firstc == NUL ? '-' : firstc;
992 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINEENTER);
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200993
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994 init_history();
Bram Moolenaard7663c22019-08-06 21:59:57 +0200995 hiscnt = get_hislen(); /* set hiscnt to impossible history value */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 histype = hist_char2type(firstc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997
998#ifdef FEAT_DIGRAPHS
Bram Moolenaar3c65e312009-04-29 16:47:23 +0000999 do_digraph(-1); /* init digraph typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000#endif
1001
Bram Moolenaar15a35c42014-06-25 12:26:46 +02001002 /* If something above caused an error, reset the flags, we do want to type
1003 * and execute commands. Display may be messed up a bit. */
1004 if (did_emsg)
1005 redrawcmd();
1006 did_emsg = FALSE;
1007 got_int = FALSE;
1008
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009 /*
1010 * Collect the command string, handling editing keys.
1011 */
1012 for (;;)
1013 {
Bram Moolenaar29b2d262006-09-10 19:07:28 +00001014 redir_off = TRUE; /* Don't redirect the typed command.
1015 Repeated, because a ":redir" inside
1016 completion may switch it on. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017#ifdef USE_ON_FLY_SCROLL
1018 dont_scroll = FALSE; /* allow scrolling here */
1019#endif
1020 quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */
1021
Bram Moolenaar72532d32018-04-07 19:09:09 +02001022 did_emsg = FALSE; /* There can't really be a reason why an error
1023 that occurs while typing a command should
1024 cause the command not to be executed. */
1025
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026 cursorcmd(); /* set the cursor on the right spot */
Bram Moolenaar30405d32008-01-02 20:55:27 +00001027
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +01001028 /* Get a character. Ignore K_IGNORE and K_NOP, they should not do
1029 * anything, such as stop completion. */
Bram Moolenaar30405d32008-01-02 20:55:27 +00001030 do
Bram Moolenaar30405d32008-01-02 20:55:27 +00001031 c = safe_vgetc();
Bram Moolenaarabab0b02019-03-30 18:47:01 +01001032 while (c == K_IGNORE || c == K_NOP);
Bram Moolenaar30405d32008-01-02 20:55:27 +00001033
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034 if (KeyTyped)
1035 {
1036 some_key_typed = TRUE;
1037#ifdef FEAT_RIGHTLEFT
1038 if (cmd_hkmap)
1039 c = hkmap(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040 if (cmdmsg_rl && !KeyStuffed)
1041 {
1042 /* Invert horizontal movements and operations. Only when
1043 * typed by the user directly, not when the result of a
1044 * mapping. */
1045 switch (c)
1046 {
1047 case K_RIGHT: c = K_LEFT; break;
1048 case K_S_RIGHT: c = K_S_LEFT; break;
1049 case K_C_RIGHT: c = K_C_LEFT; break;
1050 case K_LEFT: c = K_RIGHT; break;
1051 case K_S_LEFT: c = K_S_RIGHT; break;
1052 case K_C_LEFT: c = K_C_RIGHT; break;
1053 }
1054 }
1055#endif
1056 }
1057
1058 /*
1059 * Ignore got_int when CTRL-C was typed here.
1060 * Don't ignore it in :global, we really need to break then, e.g., for
1061 * ":g/pat/normal /pat" (without the <CR>).
1062 * Don't ignore it for the input() function.
1063 */
1064 if ((c == Ctrl_C
1065#ifdef UNIX
1066 || c == intr_char
1067#endif
1068 )
1069#if defined(FEAT_EVAL) || defined(FEAT_CRYPT)
1070 && firstc != '@'
1071#endif
1072#ifdef FEAT_EVAL
1073 && !break_ctrl_c
1074#endif
1075 && !global_busy)
1076 got_int = FALSE;
1077
Bram Moolenaard7663c22019-08-06 21:59:57 +02001078 // free old command line when finished moving around in the history
1079 // list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080 if (lookfor != NULL
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001081 && c != K_S_DOWN && c != K_S_UP
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001082 && c != K_DOWN && c != K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 && c != K_PAGEDOWN && c != K_PAGEUP
1084 && c != K_KPAGEDOWN && c != K_KPAGEUP
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001085 && c != K_LEFT && c != K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N)))
Bram Moolenaard23a8232018-02-10 18:45:26 +01001087 VIM_CLEAR(lookfor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088
1089 /*
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001090 * When there are matching completions to select <S-Tab> works like
1091 * CTRL-P (unless 'wc' is <S-Tab>).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092 */
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001093 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094 c = Ctrl_P;
1095
1096#ifdef FEAT_WILDMENU
1097 /* Special translations for 'wildmenu' */
1098 if (did_wild_list && p_wmnu)
1099 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001100 if (c == K_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101 c = Ctrl_P;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001102 else if (c == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 c = Ctrl_N;
1104 }
1105 /* Hitting CR after "emenu Name.": complete submenu */
1106 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu
1107 && ccline.cmdpos > 1
1108 && ccline.cmdbuff[ccline.cmdpos - 1] == '.'
1109 && ccline.cmdbuff[ccline.cmdpos - 2] != '\\'
1110 && (c == '\n' || c == '\r' || c == K_KENTER))
1111 c = K_DOWN;
1112#endif
1113
1114 /* free expanded names when finished walking through matches */
1115 if (xpc.xp_numfiles != -1
1116 && !(c == p_wc && KeyTyped) && c != p_wcm
1117 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A
1118 && c != Ctrl_L)
1119 {
1120 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
1121 did_wild_list = FALSE;
1122#ifdef FEAT_WILDMENU
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001123 if (!p_wmnu || (c != K_UP && c != K_DOWN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124#endif
1125 xpc.xp_context = EXPAND_NOTHING;
1126 wim_index = 0;
1127#ifdef FEAT_WILDMENU
1128 if (p_wmnu && wild_menu_showing != 0)
1129 {
1130 int skt = KeyTyped;
Bram Moolenaar1e015462005-09-25 22:16:38 +00001131 int old_RedrawingDisabled = RedrawingDisabled;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001132
1133 if (ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001134 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135
1136 if (wild_menu_showing == WM_SCROLLED)
1137 {
1138 /* Entered command line, move it up */
1139 cmdline_row--;
1140 redrawcmd();
1141 }
1142 else if (save_p_ls != -1)
1143 {
1144 /* restore 'laststatus' and 'winminheight' */
1145 p_ls = save_p_ls;
1146 p_wmh = save_p_wmh;
1147 last_status(FALSE);
1148 update_screen(VALID); /* redraw the screen NOW */
1149 redrawcmd();
1150 save_p_ls = -1;
1151 }
1152 else
1153 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 win_redraw_last_status(topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 redraw_statuslines();
1156 }
1157 KeyTyped = skt;
1158 wild_menu_showing = 0;
Bram Moolenaar1e015462005-09-25 22:16:38 +00001159 if (ccline.input_fn)
1160 RedrawingDisabled = old_RedrawingDisabled;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 }
1162#endif
1163 }
1164
1165#ifdef FEAT_WILDMENU
1166 /* Special translations for 'wildmenu' */
1167 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu)
1168 {
1169 /* Hitting <Down> after "emenu Name.": complete submenu */
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +00001170 if (c == K_DOWN && ccline.cmdpos > 0
1171 && ccline.cmdbuff[ccline.cmdpos - 1] == '.')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 c = p_wc;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001173 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 {
1175 /* Hitting <Up>: Remove one submenu name in front of the
1176 * cursor */
1177 int found = FALSE;
1178
1179 j = (int)(xpc.xp_pattern - ccline.cmdbuff);
1180 i = 0;
1181 while (--j > 0)
1182 {
1183 /* check for start of menu name */
1184 if (ccline.cmdbuff[j] == ' '
1185 && ccline.cmdbuff[j - 1] != '\\')
1186 {
1187 i = j + 1;
1188 break;
1189 }
1190 /* check for start of submenu name */
1191 if (ccline.cmdbuff[j] == '.'
1192 && ccline.cmdbuff[j - 1] != '\\')
1193 {
1194 if (found)
1195 {
1196 i = j + 1;
1197 break;
1198 }
1199 else
1200 found = TRUE;
1201 }
1202 }
1203 if (i > 0)
1204 cmdline_del(i);
1205 c = p_wc;
1206 xpc.xp_context = EXPAND_NOTHING;
1207 }
1208 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001209 if ((xpc.xp_context == EXPAND_FILES
Bram Moolenaar446cb832008-06-24 21:56:24 +00001210 || xpc.xp_context == EXPAND_DIRECTORIES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001211 || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 {
1213 char_u upseg[5];
1214
1215 upseg[0] = PATHSEP;
1216 upseg[1] = '.';
1217 upseg[2] = '.';
1218 upseg[3] = PATHSEP;
1219 upseg[4] = NUL;
1220
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +00001221 if (c == K_DOWN
1222 && ccline.cmdpos > 0
1223 && ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP
1224 && (ccline.cmdpos < 3
1225 || ccline.cmdbuff[ccline.cmdpos - 2] != '.'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 || ccline.cmdbuff[ccline.cmdpos - 3] != '.'))
1227 {
1228 /* go down a directory */
1229 c = p_wc;
1230 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001231 else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 {
1233 /* If in a direct ancestor, strip off one ../ to go down */
1234 int found = FALSE;
1235
1236 j = ccline.cmdpos;
1237 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
1238 while (--j > i)
1239 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001240 if (has_mbyte)
1241 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242 if (vim_ispathsep(ccline.cmdbuff[j]))
1243 {
1244 found = TRUE;
1245 break;
1246 }
1247 }
1248 if (found
1249 && ccline.cmdbuff[j - 1] == '.'
1250 && ccline.cmdbuff[j - 2] == '.'
1251 && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2))
1252 {
1253 cmdline_del(j - 2);
1254 c = p_wc;
1255 }
1256 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001257 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 {
1259 /* go up a directory */
1260 int found = FALSE;
1261
1262 j = ccline.cmdpos - 1;
1263 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
1264 while (--j > i)
1265 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 if (has_mbyte)
1267 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 if (vim_ispathsep(ccline.cmdbuff[j])
1269#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001270 && vim_strchr((char_u *)" *?[{`$%#",
1271 ccline.cmdbuff[j + 1]) == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272#endif
1273 )
1274 {
1275 if (found)
1276 {
1277 i = j + 1;
1278 break;
1279 }
1280 else
1281 found = TRUE;
1282 }
1283 }
1284
1285 if (!found)
1286 j = i;
1287 else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0)
1288 j += 4;
1289 else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0
1290 && j == i)
1291 j += 3;
1292 else
1293 j = 0;
1294 if (j > 0)
1295 {
1296 /* TODO this is only for DOS/UNIX systems - need to put in
1297 * machine-specific stuff here and in upseg init */
1298 cmdline_del(j);
1299 put_on_cmdline(upseg + 1, 3, FALSE);
1300 }
1301 else if (ccline.cmdpos > i)
1302 cmdline_del(i);
Bram Moolenaar96a89642011-12-08 18:44:51 +01001303
1304 /* Now complete in the new directory. Set KeyTyped in case the
1305 * Up key came from a mapping. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 c = p_wc;
Bram Moolenaar96a89642011-12-08 18:44:51 +01001307 KeyTyped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 }
1309 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310
1311#endif /* FEAT_WILDMENU */
1312
1313 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert
1314 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */
1315 if (c == Ctrl_BSL)
1316 {
1317 ++no_mapping;
1318 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001319 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 --no_mapping;
1321 --allow_keys;
Bram Moolenaarb7356812012-10-11 04:04:37 +02001322 /* CTRL-\ e doesn't work when obtaining an expression, unless it
1323 * is in a mapping. */
1324 if (c != Ctrl_N && c != Ctrl_G && (c != 'e'
Bram Moolenaar31cbadf2018-09-25 20:48:57 +02001325 || (ccline.cmdfirstc == '=' && KeyTyped)
1326#ifdef FEAT_EVAL
Bram Moolenaaree91c332018-09-25 22:27:35 +02001327 || cmdline_star > 0
Bram Moolenaar31cbadf2018-09-25 20:48:57 +02001328#endif
1329 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 {
1331 vungetc(c);
1332 c = Ctrl_BSL;
1333 }
1334#ifdef FEAT_EVAL
1335 else if (c == 'e')
1336 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +02001337 char_u *p = NULL;
1338 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339
1340 /*
1341 * Replace the command line with the result of an expression.
Bram Moolenaar4770d092006-01-12 23:22:24 +00001342 * Need to save and restore the current command line, to be
1343 * able to enter a new one...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 */
1345 if (ccline.cmdpos == ccline.cmdlen)
1346 new_cmdpos = 99999; /* keep it at the end */
1347 else
1348 new_cmdpos = ccline.cmdpos;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001349
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 c = get_expr_register();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351 if (c == '=')
1352 {
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001353 /* Need to save and restore ccline. And set "textlock"
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001354 * to avoid nasty things like going to another buffer when
1355 * evaluating an expression. */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001356 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 p = get_expr_line();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001358 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001359
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001360 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 {
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001362 len = (int)STRLEN(p);
1363 if (realloc_cmdbuff(len + 1) == OK)
1364 {
1365 ccline.cmdlen = len;
1366 STRCPY(ccline.cmdbuff, p);
1367 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001369 /* Restore the cursor or use the position set with
1370 * set_cmdline_pos(). */
1371 if (new_cmdpos > ccline.cmdlen)
1372 ccline.cmdpos = ccline.cmdlen;
1373 else
1374 ccline.cmdpos = new_cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001376 KeyTyped = FALSE; /* Don't do p_wc completion. */
1377 redrawcmd();
1378 goto cmdline_changed;
1379 }
Bram Moolenaar4e303c82018-11-24 14:27:44 +01001380 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 }
1382 }
1383 beep_flush();
Bram Moolenaar66b4bf82010-11-16 14:06:08 +01001384 got_int = FALSE; /* don't abandon the command line */
1385 did_emsg = FALSE;
1386 emsg_on_display = FALSE;
1387 redrawcmd();
1388 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 }
1390#endif
1391 else
1392 {
1393 if (c == Ctrl_G && p_im && restart_edit == 0)
1394 restart_edit = 'a';
1395 gotesc = TRUE; /* will free ccline.cmdbuff after putting it
1396 in history */
1397 goto returncmd; /* back to Normal mode */
1398 }
1399 }
1400
1401#ifdef FEAT_CMDWIN
1402 if (c == cedit_key || c == K_CMDWIN)
1403 {
Bram Moolenaar58da7072014-09-09 18:45:49 +02001404 if (ex_normal_busy == 0 && got_int == FALSE)
1405 {
1406 /*
1407 * Open a window to edit the command line (and history).
1408 */
Bram Moolenaar3bab9392017-04-07 15:42:25 +02001409 c = open_cmdwin();
Bram Moolenaar58da7072014-09-09 18:45:49 +02001410 some_key_typed = TRUE;
1411 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412 }
1413# ifdef FEAT_DIGRAPHS
1414 else
1415# endif
1416#endif
1417#ifdef FEAT_DIGRAPHS
1418 c = do_digraph(c);
1419#endif
1420
1421 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC
1422 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL)))
1423 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001424 /* In Ex mode a backslash escapes a newline. */
1425 if (exmode_active
1426 && c != ESC
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001427 && ccline.cmdpos == ccline.cmdlen
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +00001428 && ccline.cmdpos > 0
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001429 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001431 if (c == K_KENTER)
1432 c = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001434 else
1435 {
1436 gotesc = FALSE; /* Might have typed ESC previously, don't
1437 truncate the cmdline now. */
1438 if (ccheck_abbr(c + ABBR_OFF))
1439 goto cmdline_changed;
1440 if (!cmd_silent)
1441 {
1442 windgoto(msg_row, 0);
1443 out_flush();
1444 }
1445 break;
1446 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447 }
1448
1449 /*
1450 * Completion for 'wildchar' or 'wildcharm' key.
1451 * - hitting <ESC> twice means: abandon command line.
1452 * - wildcard expansion is only done when the 'wildchar' key is really
1453 * typed, not when it comes from a macro
1454 */
1455 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm)
1456 {
1457 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */
1458 {
1459 /* if 'wildmode' contains "list" may still need to list */
1460 if (xpc.xp_numfiles > 1
1461 && !did_wild_list
1462 && (wim_flags[wim_index] & WIM_LIST))
1463 {
1464 (void)showmatches(&xpc, FALSE);
1465 redrawcmd();
1466 did_wild_list = TRUE;
1467 }
1468 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001469 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
1470 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001472 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
1473 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474 else
1475 res = OK; /* don't insert 'wildchar' now */
1476 }
1477 else /* typed p_wc first time */
1478 {
1479 wim_index = 0;
1480 j = ccline.cmdpos;
1481 /* if 'wildmode' first contains "longest", get longest
1482 * common part */
1483 if (wim_flags[0] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001484 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
1485 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 else
Bram Moolenaarb3479632012-11-28 16:49:58 +01001487 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP,
1488 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489
1490 /* if interrupted while completing, behave like it failed */
1491 if (got_int)
1492 {
1493 (void)vpeekc(); /* remove <C-C> from input stream */
1494 got_int = FALSE; /* don't abandon the command line */
1495 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
1496#ifdef FEAT_WILDMENU
1497 xpc.xp_context = EXPAND_NOTHING;
1498#endif
1499 goto cmdline_changed;
1500 }
1501
1502 /* when more than one match, and 'wildmode' first contains
1503 * "list", or no change and 'wildmode' contains "longest,list",
1504 * list all matches */
1505 if (res == OK && xpc.xp_numfiles > 1)
1506 {
1507 /* a "longest" that didn't do anything is skipped (but not
1508 * "list:longest") */
1509 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j)
1510 wim_index = 1;
1511 if ((wim_flags[wim_index] & WIM_LIST)
1512#ifdef FEAT_WILDMENU
1513 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0)
1514#endif
1515 )
1516 {
1517 if (!(wim_flags[0] & WIM_LONGEST))
1518 {
1519#ifdef FEAT_WILDMENU
1520 int p_wmnu_save = p_wmnu;
1521 p_wmnu = 0;
1522#endif
Bram Moolenaarb3479632012-11-28 16:49:58 +01001523 /* remove match */
1524 nextwild(&xpc, WILD_PREV, 0, firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525#ifdef FEAT_WILDMENU
1526 p_wmnu = p_wmnu_save;
1527#endif
1528 }
1529#ifdef FEAT_WILDMENU
1530 (void)showmatches(&xpc, p_wmnu
1531 && ((wim_flags[wim_index] & WIM_LIST) == 0));
1532#else
1533 (void)showmatches(&xpc, FALSE);
1534#endif
1535 redrawcmd();
1536 did_wild_list = TRUE;
1537 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001538 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
1539 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001541 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
1542 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 }
1544 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02001545 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 }
1547#ifdef FEAT_WILDMENU
1548 else if (xpc.xp_numfiles == -1)
1549 xpc.xp_context = EXPAND_NOTHING;
1550#endif
1551 }
1552 if (wim_index < 3)
1553 ++wim_index;
1554 if (c == ESC)
1555 gotesc = TRUE;
1556 if (res == OK)
1557 goto cmdline_changed;
1558 }
1559
1560 gotesc = FALSE;
1561
1562 /* <S-Tab> goes to last match, in a clumsy way */
1563 if (c == K_S_TAB && KeyTyped)
1564 {
Bram Moolenaarb3479632012-11-28 16:49:58 +01001565 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0, firstc != '@') == OK
1566 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK
1567 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 goto cmdline_changed;
1569 }
1570
1571 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */
1572 c = NL;
1573
1574 do_abbr = TRUE; /* default: check for abbreviation */
1575
1576 /*
1577 * Big switch for a typed command line character.
1578 */
1579 switch (c)
1580 {
1581 case K_BS:
1582 case Ctrl_H:
1583 case K_DEL:
1584 case K_KDEL:
1585 case Ctrl_W:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586 if (c == K_KDEL)
1587 c = K_DEL;
1588
1589 /*
1590 * delete current character is the same as backspace on next
1591 * character, except at end of line
1592 */
1593 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen)
1594 ++ccline.cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595 if (has_mbyte && c == K_DEL)
1596 ccline.cmdpos += mb_off_next(ccline.cmdbuff,
1597 ccline.cmdbuff + ccline.cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 if (ccline.cmdpos > 0)
1599 {
1600 char_u *p;
1601
1602 j = ccline.cmdpos;
1603 p = ccline.cmdbuff + j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 if (has_mbyte)
1605 {
1606 p = mb_prevptr(ccline.cmdbuff, p);
1607 if (c == Ctrl_W)
1608 {
1609 while (p > ccline.cmdbuff && vim_isspace(*p))
1610 p = mb_prevptr(ccline.cmdbuff, p);
1611 i = mb_get_class(p);
1612 while (p > ccline.cmdbuff && mb_get_class(p) == i)
1613 p = mb_prevptr(ccline.cmdbuff, p);
1614 if (mb_get_class(p) != i)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001615 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 }
1617 }
Bram Moolenaar13505972019-01-24 15:04:48 +01001618 else if (c == Ctrl_W)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 {
1620 while (p > ccline.cmdbuff && vim_isspace(p[-1]))
1621 --p;
1622 i = vim_iswordc(p[-1]);
1623 while (p > ccline.cmdbuff && !vim_isspace(p[-1])
1624 && vim_iswordc(p[-1]) == i)
1625 --p;
1626 }
1627 else
1628 --p;
1629 ccline.cmdpos = (int)(p - ccline.cmdbuff);
1630 ccline.cmdlen -= j - ccline.cmdpos;
1631 i = ccline.cmdpos;
1632 while (i < ccline.cmdlen)
1633 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1634
1635 /* Truncate at the end, required for multi-byte chars. */
1636 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001637#ifdef FEAT_SEARCH_EXTRA
1638 if (ccline.cmdlen == 0)
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001639 {
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001640 is_state.search_start = is_state.save_cursor;
Bram Moolenaardda933d2016-09-03 21:04:58 +02001641 /* save view settings, so that the screen
1642 * won't be restored at the wrong position */
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001643 is_state.old_viewstate = is_state.init_viewstate;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001644 }
1645#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 redrawcmd();
1647 }
1648 else if (ccline.cmdlen == 0 && c != Ctrl_W
1649 && ccline.cmdprompt == NULL && indent == 0)
1650 {
1651 /* In ex and debug mode it doesn't make sense to return. */
1652 if (exmode_active
1653#ifdef FEAT_EVAL
1654 || ccline.cmdfirstc == '>'
1655#endif
1656 )
1657 goto cmdline_not_changed;
1658
Bram Moolenaard23a8232018-02-10 18:45:26 +01001659 VIM_CLEAR(ccline.cmdbuff); /* no commandline to return */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 if (!cmd_silent)
1661 {
1662#ifdef FEAT_RIGHTLEFT
1663 if (cmdmsg_rl)
1664 msg_col = Columns;
1665 else
1666#endif
1667 msg_col = 0;
1668 msg_putchar(' '); /* delete ':' */
1669 }
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001670#ifdef FEAT_SEARCH_EXTRA
1671 if (ccline.cmdlen == 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001672 is_state.search_start = is_state.save_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001673#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 redraw_cmdline = TRUE;
1675 goto returncmd; /* back to cmd mode */
1676 }
1677 goto cmdline_changed;
1678
1679 case K_INS:
1680 case K_KINS:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 ccline.overstrike = !ccline.overstrike;
1682#ifdef CURSOR_SHAPE
1683 ui_cursor_shape(); /* may show different cursor shape */
1684#endif
1685 goto cmdline_not_changed;
1686
1687 case Ctrl_HAT:
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00001688 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689 {
1690 /* ":lmap" mappings exists, toggle use of mappings. */
1691 State ^= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001692#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 im_set_active(FALSE); /* Disable input method */
1694#endif
1695 if (b_im_ptr != NULL)
1696 {
1697 if (State & LANGMAP)
1698 *b_im_ptr = B_IMODE_LMAP;
1699 else
1700 *b_im_ptr = B_IMODE_NONE;
1701 }
1702 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001703#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 else
1705 {
1706 /* There are no ":lmap" mappings, toggle IM. When
1707 * 'imdisable' is set don't try getting the status, it's
1708 * always off. */
1709 if ((p_imdisable && b_im_ptr != NULL)
1710 ? *b_im_ptr == B_IMODE_IM : im_get_status())
1711 {
1712 im_set_active(FALSE); /* Disable input method */
1713 if (b_im_ptr != NULL)
1714 *b_im_ptr = B_IMODE_NONE;
1715 }
1716 else
1717 {
1718 im_set_active(TRUE); /* Enable input method */
1719 if (b_im_ptr != NULL)
1720 *b_im_ptr = B_IMODE_IM;
1721 }
1722 }
1723#endif
1724 if (b_im_ptr != NULL)
1725 {
1726 if (b_im_ptr == &curbuf->b_p_iminsert)
1727 set_iminsert_global();
1728 else
1729 set_imsearch_global();
1730 }
1731#ifdef CURSOR_SHAPE
1732 ui_cursor_shape(); /* may show different cursor shape */
1733#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001734#if defined(FEAT_KEYMAP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735 /* Show/unshow value of 'keymap' in status lines later. */
1736 status_redraw_curbuf();
1737#endif
1738 goto cmdline_not_changed;
1739
1740/* case '@': only in very old vi */
1741 case Ctrl_U:
1742 /* delete all characters left of the cursor */
1743 j = ccline.cmdpos;
1744 ccline.cmdlen -= j;
1745 i = ccline.cmdpos = 0;
1746 while (i < ccline.cmdlen)
1747 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1748 /* Truncate at the end, required for multi-byte chars. */
1749 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001750#ifdef FEAT_SEARCH_EXTRA
1751 if (ccline.cmdlen == 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001752 is_state.search_start = is_state.save_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001753#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754 redrawcmd();
1755 goto cmdline_changed;
1756
1757#ifdef FEAT_CLIPBOARD
1758 case Ctrl_Y:
1759 /* Copy the modeless selection, if there is one. */
1760 if (clip_star.state != SELECT_CLEARED)
1761 {
1762 if (clip_star.state == SELECT_DONE)
1763 clip_copy_modeless_selection(TRUE);
1764 goto cmdline_not_changed;
1765 }
1766 break;
1767#endif
1768
1769 case ESC: /* get here if p_wc != ESC or when ESC typed twice */
1770 case Ctrl_C:
Bram Moolenaarf4d11452005-12-02 00:46:37 +00001771 /* In exmode it doesn't make sense to return. Except when
Bram Moolenaar7c626922005-02-07 22:01:03 +00001772 * ":normal" runs out of characters. */
1773 if (exmode_active
Bram Moolenaare2c38102016-01-31 14:55:40 +01001774 && (ex_normal_busy == 0 || typebuf.tb_len > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 goto cmdline_not_changed;
1776
1777 gotesc = TRUE; /* will free ccline.cmdbuff after
1778 putting it in history */
1779 goto returncmd; /* back to cmd mode */
1780
1781 case Ctrl_R: /* insert register */
1782#ifdef USE_ON_FLY_SCROLL
1783 dont_scroll = TRUE; /* disallow scrolling here */
1784#endif
1785 putcmdline('"', TRUE);
1786 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001787 i = c = plain_vgetc(); /* CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 if (i == Ctrl_O)
1789 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */
1790 if (i == Ctrl_R)
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001791 c = plain_vgetc(); /* CTRL-R CTRL-R <char> */
Bram Moolenaara92522f2017-07-15 15:21:38 +02001792 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 --no_mapping;
1794#ifdef FEAT_EVAL
1795 /*
1796 * Insert the result of an expression.
1797 * Need to save the current command line, to be able to enter
1798 * a new one...
1799 */
1800 new_cmdpos = -1;
1801 if (c == '=')
1802 {
Bram Moolenaaree91c332018-09-25 22:27:35 +02001803 if (ccline.cmdfirstc == '=' // can't do this recursively
1804 || cmdline_star > 0) // or when typing a password
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 {
1806 beep_flush();
1807 c = ESC;
1808 }
1809 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 c = get_expr_register();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 }
1812#endif
1813 if (c != ESC) /* use ESC to cancel inserting register */
1814 {
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001815 cmdline_paste(c, i == Ctrl_R, FALSE);
Bram Moolenaaracf53452005-12-17 22:06:52 +00001816
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001817#ifdef FEAT_EVAL
Bram Moolenaaracf53452005-12-17 22:06:52 +00001818 /* When there was a serious error abort getting the
1819 * command line. */
1820 if (aborting())
1821 {
1822 gotesc = TRUE; /* will free ccline.cmdbuff after
1823 putting it in history */
1824 goto returncmd; /* back to cmd mode */
1825 }
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001826#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 KeyTyped = FALSE; /* Don't do p_wc completion. */
1828#ifdef FEAT_EVAL
1829 if (new_cmdpos >= 0)
1830 {
1831 /* set_cmdline_pos() was used */
1832 if (new_cmdpos > ccline.cmdlen)
1833 ccline.cmdpos = ccline.cmdlen;
1834 else
1835 ccline.cmdpos = new_cmdpos;
1836 }
1837#endif
1838 }
1839 redrawcmd();
1840 goto cmdline_changed;
1841
1842 case Ctrl_D:
1843 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING)
1844 break; /* Use ^D as normal char instead */
1845
1846 redrawcmd();
1847 continue; /* don't do incremental search now */
1848
1849 case K_RIGHT:
1850 case K_S_RIGHT:
1851 case K_C_RIGHT:
1852 do
1853 {
1854 if (ccline.cmdpos >= ccline.cmdlen)
1855 break;
1856 i = cmdline_charsize(ccline.cmdpos);
1857 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows)
1858 break;
1859 ccline.cmdspos += i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001861 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862 + ccline.cmdpos);
1863 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 ++ccline.cmdpos;
1865 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001866 while ((c == K_S_RIGHT || c == K_C_RIGHT
1867 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 && ccline.cmdbuff[ccline.cmdpos] != ' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 if (has_mbyte)
1870 set_cmdspos_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 goto cmdline_not_changed;
1872
1873 case K_LEFT:
1874 case K_S_LEFT:
1875 case K_C_LEFT:
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001876 if (ccline.cmdpos == 0)
1877 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 do
1879 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 --ccline.cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881 if (has_mbyte) /* move to first byte of char */
1882 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff,
1883 ccline.cmdbuff + ccline.cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos);
1885 }
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001886 while (ccline.cmdpos > 0
1887 && (c == K_S_LEFT || c == K_C_LEFT
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001888 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 && ccline.cmdbuff[ccline.cmdpos - 1] != ' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 if (has_mbyte)
1891 set_cmdspos_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892 goto cmdline_not_changed;
1893
1894 case K_IGNORE:
Bram Moolenaar3bab9392017-04-07 15:42:25 +02001895 /* Ignore mouse event or open_cmdwin() result. */
Bram Moolenaar30405d32008-01-02 20:55:27 +00001896 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897
Bram Moolenaar4f974752019-02-17 17:44:42 +01001898#ifdef FEAT_GUI_MSWIN
1899 /* On MS-Windows ignore <M-F4>, we get it when closing the window
1900 * was cancelled. */
Bram Moolenaar4770d092006-01-12 23:22:24 +00001901 case K_F4:
1902 if (mod_mask == MOD_MASK_ALT)
1903 {
1904 redrawcmd(); /* somehow the cmdline is cleared */
1905 goto cmdline_not_changed;
1906 }
1907 break;
1908#endif
1909
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910#ifdef FEAT_MOUSE
1911 case K_MIDDLEDRAG:
1912 case K_MIDDLERELEASE:
1913 goto cmdline_not_changed; /* Ignore mouse */
1914
1915 case K_MIDDLEMOUSE:
1916# ifdef FEAT_GUI
1917 /* When GUI is active, also paste when 'mouse' is empty */
1918 if (!gui.in_use)
1919# endif
1920 if (!mouse_has(MOUSE_COMMAND))
1921 goto cmdline_not_changed; /* Ignore mouse */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001922# ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 if (clip_star.available)
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001924 cmdline_paste('*', TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925 else
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001926# endif
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001927 cmdline_paste(0, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 redrawcmd();
1929 goto cmdline_changed;
1930
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001931# ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932 case K_DROP:
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001933 cmdline_paste('~', TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 redrawcmd();
1935 goto cmdline_changed;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001936# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937
1938 case K_LEFTDRAG:
1939 case K_LEFTRELEASE:
1940 case K_RIGHTDRAG:
1941 case K_RIGHTRELEASE:
1942 /* Ignore drag and release events when the button-down wasn't
1943 * seen before. */
1944 if (ignore_drag_release)
1945 goto cmdline_not_changed;
1946 /* FALLTHROUGH */
1947 case K_LEFTMOUSE:
1948 case K_RIGHTMOUSE:
1949 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE)
1950 ignore_drag_release = TRUE;
1951 else
1952 ignore_drag_release = FALSE;
1953# ifdef FEAT_GUI
1954 /* When GUI is active, also move when 'mouse' is empty */
1955 if (!gui.in_use)
1956# endif
1957 if (!mouse_has(MOUSE_COMMAND))
1958 goto cmdline_not_changed; /* Ignore mouse */
1959# ifdef FEAT_CLIPBOARD
1960 if (mouse_row < cmdline_row && clip_star.available)
1961 {
1962 int button, is_click, is_drag;
1963
1964 /*
1965 * Handle modeless selection.
1966 */
1967 button = get_mouse_button(KEY2TERMCAP1(c),
1968 &is_click, &is_drag);
1969 if (mouse_model_popup() && button == MOUSE_LEFT
1970 && (mod_mask & MOD_MASK_SHIFT))
1971 {
1972 /* Translate shift-left to right button. */
1973 button = MOUSE_RIGHT;
1974 mod_mask &= ~MOD_MASK_SHIFT;
1975 }
1976 clip_modeless(button, is_click, is_drag);
1977 goto cmdline_not_changed;
1978 }
1979# endif
1980
1981 set_cmdspos();
1982 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen;
1983 ++ccline.cmdpos)
1984 {
1985 i = cmdline_charsize(ccline.cmdpos);
1986 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns
1987 && mouse_col < ccline.cmdspos % Columns + i)
1988 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 if (has_mbyte)
1990 {
1991 /* Count ">" for double-wide char that doesn't fit. */
1992 correct_cmdspos(ccline.cmdpos, i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001993 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 + ccline.cmdpos) - 1;
1995 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996 ccline.cmdspos += i;
1997 }
1998 goto cmdline_not_changed;
1999
2000 /* Mouse scroll wheel: ignored here */
2001 case K_MOUSEDOWN:
2002 case K_MOUSEUP:
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002003 case K_MOUSELEFT:
2004 case K_MOUSERIGHT:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005 /* Alternate buttons ignored here */
2006 case K_X1MOUSE:
2007 case K_X1DRAG:
2008 case K_X1RELEASE:
2009 case K_X2MOUSE:
2010 case K_X2DRAG:
2011 case K_X2RELEASE:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01002012 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 goto cmdline_not_changed;
2014
2015#endif /* FEAT_MOUSE */
2016
2017#ifdef FEAT_GUI
2018 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */
2019 case K_LEFTRELEASE_NM:
2020 goto cmdline_not_changed;
2021
2022 case K_VER_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002023 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 {
2025 gui_do_scroll();
2026 redrawcmd();
2027 }
2028 goto cmdline_not_changed;
2029
2030 case K_HOR_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002031 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002033 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 redrawcmd();
2035 }
2036 goto cmdline_not_changed;
2037#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002038#ifdef FEAT_GUI_TABLINE
2039 case K_TABLINE:
2040 case K_TABMENU:
2041 /* Don't want to change any tabs here. Make sure the same tab
2042 * is still selected. */
2043 if (gui_use_tabline())
2044 gui_mch_set_curtab(tabpage_index(curtab));
2045 goto cmdline_not_changed;
2046#endif
2047
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 case K_SELECT: /* end of Select mode mapping - ignore */
2049 goto cmdline_not_changed;
2050
2051 case Ctrl_B: /* begin of command line */
2052 case K_HOME:
2053 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 case K_S_HOME:
2055 case K_C_HOME:
2056 ccline.cmdpos = 0;
2057 set_cmdspos();
2058 goto cmdline_not_changed;
2059
2060 case Ctrl_E: /* end of command line */
2061 case K_END:
2062 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 case K_S_END:
2064 case K_C_END:
2065 ccline.cmdpos = ccline.cmdlen;
2066 set_cmdspos_cursor();
2067 goto cmdline_not_changed;
2068
2069 case Ctrl_A: /* all matches */
Bram Moolenaarb3479632012-11-28 16:49:58 +01002070 if (nextwild(&xpc, WILD_ALL, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 break;
2072 goto cmdline_changed;
2073
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002074 case Ctrl_L:
2075#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002076 if (may_add_char_to_search(firstc, &c, &is_state) == OK)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002077 goto cmdline_not_changed;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002078#endif
2079
2080 /* completion: longest common part */
Bram Moolenaarb3479632012-11-28 16:49:58 +01002081 if (nextwild(&xpc, WILD_LONGEST, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 break;
2083 goto cmdline_changed;
2084
2085 case Ctrl_N: /* next match */
2086 case Ctrl_P: /* previous match */
Bram Moolenaar7df0f632016-08-26 19:56:00 +02002087 if (xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 {
Bram Moolenaarb3479632012-11-28 16:49:58 +01002089 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT,
2090 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091 break;
Bram Moolenaar11956692016-08-27 16:26:56 +02002092 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002094 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 case K_UP:
2096 case K_DOWN:
2097 case K_S_UP:
2098 case K_S_DOWN:
2099 case K_PAGEUP:
2100 case K_KPAGEUP:
2101 case K_PAGEDOWN:
2102 case K_KPAGEDOWN:
Bram Moolenaard7663c22019-08-06 21:59:57 +02002103 if (get_hislen() == 0 || firstc == NUL) /* no history */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 goto cmdline_not_changed;
2105
2106 i = hiscnt;
2107
2108 /* save current command string so it can be restored later */
2109 if (lookfor == NULL)
2110 {
2111 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL)
2112 goto cmdline_not_changed;
2113 lookfor[ccline.cmdpos] = NUL;
2114 }
2115
2116 j = (int)STRLEN(lookfor);
2117 for (;;)
2118 {
2119 /* one step backwards */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002120 if (c == K_UP|| c == K_S_UP || c == Ctrl_P
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002121 || c == K_PAGEUP || c == K_KPAGEUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122 {
Bram Moolenaard7663c22019-08-06 21:59:57 +02002123 if (hiscnt == get_hislen()) /* first time */
2124 hiscnt = *get_hisidx(histype);
2125 else if (hiscnt == 0 && *get_hisidx(histype) != get_hislen() - 1)
2126 hiscnt = get_hislen() - 1;
2127 else if (hiscnt != *get_hisidx(histype) + 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 --hiscnt;
2129 else /* at top of list */
2130 {
2131 hiscnt = i;
2132 break;
2133 }
2134 }
2135 else /* one step forwards */
2136 {
2137 /* on last entry, clear the line */
Bram Moolenaard7663c22019-08-06 21:59:57 +02002138 if (hiscnt == *get_hisidx(histype))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 {
Bram Moolenaard7663c22019-08-06 21:59:57 +02002140 hiscnt = get_hislen();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 break;
2142 }
2143
2144 /* not on a history line, nothing to do */
Bram Moolenaard7663c22019-08-06 21:59:57 +02002145 if (hiscnt == get_hislen())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146 break;
Bram Moolenaard7663c22019-08-06 21:59:57 +02002147 if (hiscnt == get_hislen() - 1) /* wrap around */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148 hiscnt = 0;
2149 else
2150 ++hiscnt;
2151 }
Bram Moolenaard7663c22019-08-06 21:59:57 +02002152 if (hiscnt < 0 || get_histentry(histype)[hiscnt].hisstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153 {
2154 hiscnt = i;
2155 break;
2156 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002157 if ((c != K_UP && c != K_DOWN)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002158 || hiscnt == i
Bram Moolenaard7663c22019-08-06 21:59:57 +02002159 || STRNCMP(get_histentry(histype)[hiscnt].hisstr,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 lookfor, (size_t)j) == 0)
2161 break;
2162 }
2163
2164 if (hiscnt != i) /* jumped to other entry */
2165 {
2166 char_u *p;
2167 int len;
2168 int old_firstc;
2169
Bram Moolenaar438d1762018-09-30 17:11:48 +02002170 VIM_CLEAR(ccline.cmdbuff);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002171 xpc.xp_context = EXPAND_NOTHING;
Bram Moolenaard7663c22019-08-06 21:59:57 +02002172 if (hiscnt == get_hislen())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 p = lookfor; /* back to the old one */
2174 else
Bram Moolenaard7663c22019-08-06 21:59:57 +02002175 p = get_histentry(histype)[hiscnt].hisstr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176
2177 if (histype == HIST_SEARCH
2178 && p != lookfor
2179 && (old_firstc = p[STRLEN(p) + 1]) != firstc)
2180 {
2181 /* Correct for the separator character used when
2182 * adding the history entry vs the one used now.
2183 * First loop: count length.
2184 * Second loop: copy the characters. */
2185 for (i = 0; i <= 1; ++i)
2186 {
2187 len = 0;
2188 for (j = 0; p[j] != NUL; ++j)
2189 {
2190 /* Replace old sep with new sep, unless it is
2191 * escaped. */
2192 if (p[j] == old_firstc
2193 && (j == 0 || p[j - 1] != '\\'))
2194 {
2195 if (i > 0)
2196 ccline.cmdbuff[len] = firstc;
2197 }
2198 else
2199 {
2200 /* Escape new sep, unless it is already
2201 * escaped. */
2202 if (p[j] == firstc
2203 && (j == 0 || p[j - 1] != '\\'))
2204 {
2205 if (i > 0)
2206 ccline.cmdbuff[len] = '\\';
2207 ++len;
2208 }
2209 if (i > 0)
2210 ccline.cmdbuff[len] = p[j];
2211 }
2212 ++len;
2213 }
2214 if (i == 0)
2215 {
2216 alloc_cmdbuff(len);
2217 if (ccline.cmdbuff == NULL)
2218 goto returncmd;
2219 }
2220 }
2221 ccline.cmdbuff[len] = NUL;
2222 }
2223 else
2224 {
2225 alloc_cmdbuff((int)STRLEN(p));
2226 if (ccline.cmdbuff == NULL)
2227 goto returncmd;
2228 STRCPY(ccline.cmdbuff, p);
2229 }
2230
2231 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
2232 redrawcmd();
2233 goto cmdline_changed;
2234 }
2235 beep_flush();
Bram Moolenaar11956692016-08-27 16:26:56 +02002236 goto cmdline_not_changed;
2237
Bram Moolenaar349e7d92016-09-03 20:04:34 +02002238#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar11956692016-08-27 16:26:56 +02002239 case Ctrl_G: /* next match */
2240 case Ctrl_T: /* previous match */
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002241 if (may_adjust_incsearch_highlighting(
2242 firstc, count, &is_state, c) == FAIL)
Bram Moolenaar349e7d92016-09-03 20:04:34 +02002243 goto cmdline_not_changed;
Bram Moolenaar349e7d92016-09-03 20:04:34 +02002244 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245#endif
2246
2247 case Ctrl_V:
2248 case Ctrl_Q:
2249#ifdef FEAT_MOUSE
2250 ignore_drag_release = TRUE;
2251#endif
2252 putcmdline('^', TRUE);
2253 c = get_literal(); /* get next (two) character(s) */
2254 do_abbr = FALSE; /* don't do abbreviation now */
Bram Moolenaara92522f2017-07-15 15:21:38 +02002255 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 /* may need to remove ^ when composing char was typed */
2257 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent)
2258 {
2259 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2260 msg_putchar(' ');
2261 cursorcmd();
2262 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263 break;
2264
2265#ifdef FEAT_DIGRAPHS
2266 case Ctrl_K:
2267#ifdef FEAT_MOUSE
2268 ignore_drag_release = TRUE;
2269#endif
2270 putcmdline('?', TRUE);
2271#ifdef USE_ON_FLY_SCROLL
2272 dont_scroll = TRUE; /* disallow scrolling here */
2273#endif
2274 c = get_digraph(TRUE);
Bram Moolenaara92522f2017-07-15 15:21:38 +02002275 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 if (c != NUL)
2277 break;
2278
2279 redrawcmd();
2280 goto cmdline_not_changed;
2281#endif /* FEAT_DIGRAPHS */
2282
2283#ifdef FEAT_RIGHTLEFT
2284 case Ctrl__: /* CTRL-_: switch language mode */
2285 if (!p_ari)
2286 break;
Bram Moolenaar14184a32019-02-16 15:10:30 +01002287 cmd_hkmap = !cmd_hkmap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 goto cmdline_not_changed;
2289#endif
2290
Bram Moolenaarabbc4482017-01-24 15:57:55 +01002291 case K_PS:
2292 bracketed_paste(PASTE_CMDLINE, FALSE, NULL);
2293 goto cmdline_changed;
2294
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 default:
2296#ifdef UNIX
2297 if (c == intr_char)
2298 {
2299 gotesc = TRUE; /* will free ccline.cmdbuff after
2300 putting it in history */
2301 goto returncmd; /* back to Normal mode */
2302 }
2303#endif
2304 /*
2305 * Normal character with no special meaning. Just set mod_mask
2306 * to 0x0 so that typing Shift-Space in the GUI doesn't enter
2307 * the string <S-Space>. This should only happen after ^V.
2308 */
2309 if (!IS_SPECIAL(c))
2310 mod_mask = 0x0;
2311 break;
2312 }
2313 /*
2314 * End of switch on command line character.
2315 * We come here if we have a normal character.
2316 */
2317
Bram Moolenaar13505972019-01-24 15:04:48 +01002318 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c))
2319 && (ccheck_abbr(
2320 // Add ABBR_OFF for characters above 0x100, this is
2321 // what check_abbr() expects.
2322 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) : c)
2323 || c == Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 goto cmdline_changed;
2325
2326 /*
2327 * put the character in the command line
2328 */
2329 if (IS_SPECIAL(c) || mod_mask != 0)
2330 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE);
2331 else
2332 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333 if (has_mbyte)
2334 {
2335 j = (*mb_char2bytes)(c, IObuff);
2336 IObuff[j] = NUL; /* exclude composing chars */
2337 put_on_cmdline(IObuff, j, TRUE);
2338 }
2339 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 {
2341 IObuff[0] = c;
2342 put_on_cmdline(IObuff, 1, TRUE);
2343 }
2344 }
2345 goto cmdline_changed;
2346
2347/*
2348 * This part implements incremental searches for "/" and "?"
2349 * Jump to cmdline_not_changed when a character has been read but the command
2350 * line did not change. Then we only search and redraw if something changed in
2351 * the past.
2352 * Jump to cmdline_changed when the command line did change.
2353 * (Sorry for the goto's, I know it is ugly).
2354 */
2355cmdline_not_changed:
2356#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002357 if (!is_state.incsearch_postponed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 continue;
2359#endif
2360
2361cmdline_changed:
Bram Moolenaar153b7042018-01-31 15:48:32 +01002362 /* Trigger CmdlineChanged autocommands. */
2363 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINECHANGED);
Bram Moolenaar153b7042018-01-31 15:48:32 +01002364
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002366 may_do_incsearch_highlighting(firstc, count, &is_state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367#endif
2368
2369#ifdef FEAT_RIGHTLEFT
2370 if (cmdmsg_rl
2371# ifdef FEAT_ARABIC
Bram Moolenaar693f7dc2019-06-21 02:30:38 +02002372 || (p_arshape && !p_tbidi
2373 && cmdline_has_arabic(0, ccline.cmdlen))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374# endif
2375 )
2376 /* Always redraw the whole command line to fix shaping and
Bram Moolenaar58437e02012-02-22 17:58:04 +01002377 * right-left typing. Not efficient, but it works.
2378 * Do it only when there are no characters left to read
2379 * to avoid useless intermediate redraws. */
2380 if (vpeekc() == NUL)
2381 redrawcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382#endif
2383 }
2384
2385returncmd:
2386
2387#ifdef FEAT_RIGHTLEFT
2388 cmdmsg_rl = FALSE;
2389#endif
2390
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391 ExpandCleanup(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002392 ccline.xpc = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393
2394#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaarc7f08b72018-08-12 17:39:14 +02002395 finish_incsearch_highlighting(gotesc, &is_state, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396#endif
2397
2398 if (ccline.cmdbuff != NULL)
2399 {
2400 /*
2401 * Put line in history buffer (":" and "=" only when it was typed).
2402 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 if (ccline.cmdlen && firstc != NUL
2404 && (some_key_typed || histype == HIST_SEARCH))
2405 {
2406 add_to_history(histype, ccline.cmdbuff, TRUE,
2407 histype == HIST_SEARCH ? firstc : NUL);
2408 if (firstc == ':')
2409 {
2410 vim_free(new_last_cmdline);
2411 new_last_cmdline = vim_strsave(ccline.cmdbuff);
2412 }
2413 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414
Bram Moolenaarf8e8c062017-10-22 14:44:17 +02002415 if (gotesc)
2416 abandon_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417 }
2418
2419 /*
2420 * If the screen was shifted up, redraw the whole screen (later).
2421 * If the line is too long, clear it, so ruler and shown command do
2422 * not get printed in the middle of it.
2423 */
2424 msg_check();
2425 msg_scroll = save_msg_scroll;
2426 redir_off = FALSE;
2427
2428 /* When the command line was typed, no need for a wait-return prompt. */
2429 if (some_key_typed)
2430 need_wait_return = FALSE;
2431
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02002432 /* Trigger CmdlineLeave autocommands. */
2433 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINELEAVE);
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02002434
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435 State = save_State;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002436#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP)
2438 im_save_status(b_im_ptr);
2439 im_set_active(FALSE);
2440#endif
2441#ifdef FEAT_MOUSE
2442 setmouse();
2443#endif
2444#ifdef CURSOR_SHAPE
2445 ui_cursor_shape(); /* may show different cursor shape */
2446#endif
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002447 sb_text_end_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448
Bram Moolenaar438d1762018-09-30 17:11:48 +02002449theend:
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002450 {
2451 char_u *p = ccline.cmdbuff;
2452
Bram Moolenaar438d1762018-09-30 17:11:48 +02002453 if (did_save_ccline)
2454 restore_cmdline(&save_ccline);
2455 else
2456 ccline.cmdbuff = NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002457 return p;
2458 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459}
2460
2461#if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO)
2462/*
2463 * Get a command line with a prompt.
2464 * This is prepared to be called recursively from getcmdline() (e.g. by
2465 * f_input() when evaluating an expression from CTRL-R =).
2466 * Returns the command line in allocated memory, or NULL.
2467 */
2468 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002469getcmdline_prompt(
2470 int firstc,
2471 char_u *prompt, /* command line prompt */
2472 int attr, /* attributes for prompt */
2473 int xp_context, /* type of expansion */
2474 char_u *xp_arg) /* user-defined expansion argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475{
2476 char_u *s;
2477 struct cmdline_info save_ccline;
Bram Moolenaar438d1762018-09-30 17:11:48 +02002478 int did_save_ccline = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 int msg_col_save = msg_col;
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002480 int msg_silent_save = msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481
Bram Moolenaar438d1762018-09-30 17:11:48 +02002482 if (ccline.cmdbuff != NULL)
2483 {
2484 // Save the values of the current cmdline and restore them below.
2485 save_cmdline(&save_ccline);
2486 did_save_ccline = TRUE;
2487 }
2488
2489 vim_memset(&ccline, 0, sizeof(struct cmdline_info));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490 ccline.cmdprompt = prompt;
2491 ccline.cmdattr = attr;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002492# ifdef FEAT_EVAL
2493 ccline.xp_context = xp_context;
2494 ccline.xp_arg = xp_arg;
2495 ccline.input_fn = (firstc == '@');
2496# endif
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002497 msg_silent = 0;
Bram Moolenaar438d1762018-09-30 17:11:48 +02002498 s = getcmdline_int(firstc, 1L, 0, FALSE);
2499
2500 if (did_save_ccline)
2501 restore_cmdline(&save_ccline);
2502
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002503 msg_silent = msg_silent_save;
Bram Moolenaar1db1f772011-08-17 16:25:48 +02002504 /* Restore msg_col, the prompt from input() may have changed it.
2505 * But only if called recursively and the commandline is therefore being
2506 * restored to an old one; if not, the input() prompt stays on the screen,
2507 * so we need its modified msg_col left intact. */
2508 if (ccline.cmdbuff != NULL)
2509 msg_col = msg_col_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510
2511 return s;
2512}
2513#endif
2514
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002515/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002516 * Return TRUE when the text must not be changed and we can't switch to
2517 * another window or buffer. Used when editing the command line, evaluating
2518 * 'balloonexpr', etc.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002519 */
2520 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002521text_locked(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002522{
2523#ifdef FEAT_CMDWIN
2524 if (cmdwin_type != 0)
2525 return TRUE;
2526#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002527 return textlock != 0;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002528}
2529
2530/*
2531 * Give an error message for a command that isn't allowed while the cmdline
2532 * window is open or editing the cmdline in another way.
2533 */
2534 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002535text_locked_msg(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002536{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002537 emsg(_(get_text_locked_msg()));
Bram Moolenaar5a497892016-09-03 16:29:04 +02002538}
2539
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002540 char *
Bram Moolenaar5a497892016-09-03 16:29:04 +02002541get_text_locked_msg(void)
2542{
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002543#ifdef FEAT_CMDWIN
2544 if (cmdwin_type != 0)
Bram Moolenaar5a497892016-09-03 16:29:04 +02002545 return e_cmdwin;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002546#endif
Bram Moolenaar5a497892016-09-03 16:29:04 +02002547 return e_secure;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002548}
2549
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002550/*
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002551 * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is
2552 * and give an error message.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002553 */
2554 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002555curbuf_locked(void)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002556{
2557 if (curbuf_lock > 0)
2558 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002559 emsg(_("E788: Not allowed to edit another buffer now"));
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002560 return TRUE;
2561 }
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002562 return allbuf_locked();
2563}
2564
2565/*
2566 * Check if "allbuf_lock" is set and return TRUE when it is and give an error
2567 * message.
2568 */
2569 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002570allbuf_locked(void)
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002571{
2572 if (allbuf_lock > 0)
2573 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002574 emsg(_("E811: Not allowed to change buffer information now"));
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002575 return TRUE;
2576 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002577 return FALSE;
2578}
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002579
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002581cmdline_charsize(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582{
2583#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2584 if (cmdline_star > 0) /* showing '*', always 1 position */
2585 return 1;
2586#endif
2587 return ptr2cells(ccline.cmdbuff + idx);
2588}
2589
2590/*
2591 * Compute the offset of the cursor on the command line for the prompt and
2592 * indent.
2593 */
2594 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002595set_cmdspos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002597 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598 ccline.cmdspos = 1 + ccline.cmdindent;
2599 else
2600 ccline.cmdspos = 0 + ccline.cmdindent;
2601}
2602
2603/*
2604 * Compute the screen position for the cursor on the command line.
2605 */
2606 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002607set_cmdspos_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608{
2609 int i, m, c;
2610
2611 set_cmdspos();
2612 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002613 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002615 if (m < 0) /* overflow, Columns or Rows at weird value */
2616 m = MAXCOL;
2617 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618 else
2619 m = MAXCOL;
2620 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
2621 {
2622 c = cmdline_charsize(i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 /* Count ">" for double-wide multi-byte char that doesn't fit. */
2624 if (has_mbyte)
2625 correct_cmdspos(i, c);
Bram Moolenaarf9821062008-06-20 16:31:07 +00002626 /* If the cmdline doesn't fit, show cursor on last visible char.
2627 * Don't move the cursor itself, so we can still append. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 if ((ccline.cmdspos += c) >= m)
2629 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002630 ccline.cmdspos -= c;
2631 break;
2632 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002634 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 }
2636}
2637
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638/*
2639 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2640 * character that doesn't fit, so that a ">" must be displayed.
2641 */
2642 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002643correct_cmdspos(int idx, int cells)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002645 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2647 && ccline.cmdspos % Columns + cells > Columns)
2648 ccline.cmdspos++;
2649}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650
2651/*
2652 * Get an Ex command line for the ":" command.
2653 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002655getexline(
2656 int c, /* normally ':', NUL for ":append" */
2657 void *cookie UNUSED,
Bram Moolenaare96a2492019-06-25 04:12:16 +02002658 int indent, /* indent for inside conditionals */
2659 int do_concat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660{
2661 /* When executing a register, remove ':' that's in front of each line. */
2662 if (exec_from_reg && vpeekc() == ':')
2663 (void)vgetc();
Bram Moolenaare96a2492019-06-25 04:12:16 +02002664 return getcmdline(c, 1L, indent, do_concat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665}
2666
2667/*
2668 * Get an Ex command line for Ex mode.
2669 * In Ex mode we only use the OS supplied line editing features and no
2670 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002671 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002674getexmodeline(
2675 int promptc, /* normally ':', NUL for ":append" and '?' for
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002676 :s prompt */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002677 void *cookie UNUSED,
Bram Moolenaare96a2492019-06-25 04:12:16 +02002678 int indent, /* indent for inside conditionals */
2679 int do_concat UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002681 garray_T line_ga;
2682 char_u *pend;
2683 int startcol = 0;
Bram Moolenaar76624232007-07-28 12:21:47 +00002684 int c1 = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002685 int escaped = FALSE; /* CTRL-V typed */
2686 int vcol = 0;
2687 char_u *p;
Bram Moolenaar76624232007-07-28 12:21:47 +00002688 int prev_char;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002689 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690
2691 /* Switch cursor on now. This avoids that it happens after the "\n", which
2692 * confuses the system function that computes tabstops. */
2693 cursor_on();
2694
2695 /* always start in column 0; write a newline if necessary */
2696 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002697 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002699 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002701 /* indent that is only displayed, not in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002702 if (p_prompt)
2703 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704 while (indent-- > 0)
2705 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707 }
2708
2709 ga_init2(&line_ga, 1, 30);
2710
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002711 /* autoindent for :insert and :append is in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002712 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002713 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002714 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002715 while (indent >= 8)
2716 {
2717 ga_append(&line_ga, TAB);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002718 msg_puts(" ");
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002719 indent -= 8;
2720 }
2721 while (indent-- > 0)
2722 {
2723 ga_append(&line_ga, ' ');
2724 msg_putchar(' ');
2725 }
2726 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002727 ++no_mapping;
2728 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002729
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730 /*
2731 * Get the line, one character at a time.
2732 */
2733 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002734 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002735 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002736 long sw;
2737 char_u *s;
2738
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 if (ga_grow(&line_ga, 40) == FAIL)
2740 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741
Bram Moolenaarba748c82017-02-26 14:00:07 +01002742 /*
2743 * Get one character at a time.
2744 */
Bram Moolenaar76624232007-07-28 12:21:47 +00002745 prev_char = c1;
Bram Moolenaarba748c82017-02-26 14:00:07 +01002746
2747 /* Check for a ":normal" command and no more characters left. */
2748 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
2749 c1 = '\n';
2750 else
2751 c1 = vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752
2753 /*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002754 * Handle line editing.
2755 * Previously this was left to the system, putting the terminal in
2756 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002758 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002760 msg_putchar('\n');
2761 break;
2762 }
2763
Bram Moolenaarabbc4482017-01-24 15:57:55 +01002764 if (c1 == K_PS)
2765 {
2766 bracketed_paste(PASTE_EX, FALSE, &line_ga);
2767 goto redraw;
2768 }
2769
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002770 if (!escaped)
2771 {
2772 /* CR typed means "enter", which is NL */
2773 if (c1 == '\r')
2774 c1 = '\n';
2775
2776 if (c1 == BS || c1 == K_BS
2777 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002779 if (line_ga.ga_len > 0)
2780 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002781 if (has_mbyte)
2782 {
2783 p = (char_u *)line_ga.ga_data;
2784 p[line_ga.ga_len] = NUL;
2785 len = (*mb_head_off)(p, p + line_ga.ga_len - 1) + 1;
2786 line_ga.ga_len -= len;
2787 }
2788 else
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002789 --line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002790 goto redraw;
2791 }
2792 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793 }
2794
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002795 if (c1 == Ctrl_U)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002797 msg_col = startcol;
2798 msg_clr_eos();
2799 line_ga.ga_len = 0;
Bram Moolenaarda636572015-04-03 17:11:45 +02002800 goto redraw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002801 }
2802
2803 if (c1 == Ctrl_T)
2804 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002805 sw = get_sw_value(curbuf);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002806 p = (char_u *)line_ga.ga_data;
2807 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002808 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaar14f24742012-08-08 18:01:05 +02002809 indent += sw - indent % sw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002810add_indent:
Bram Moolenaar597a4222014-06-25 14:39:50 +02002811 while (get_indent_str(p, 8, FALSE) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002813 (void)ga_grow(&line_ga, 2); /* one more for the NUL */
Bram Moolenaarda636572015-04-03 17:11:45 +02002814 p = (char_u *)line_ga.ga_data;
2815 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002816 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2817 *s = ' ';
2818 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002820redraw:
2821 /* redraw the line */
2822 msg_col = startcol;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002823 vcol = 0;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002824 p = (char_u *)line_ga.ga_data;
2825 p[line_ga.ga_len] = NUL;
2826 while (p < (char_u *)line_ga.ga_data + line_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002828 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002830 do
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002831 msg_putchar(' ');
Bram Moolenaarabab0b02019-03-30 18:47:01 +01002832 while (++vcol % 8);
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002833 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002834 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002835 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002837 len = MB_PTR2LEN(p);
2838 msg_outtrans_len(p, len);
2839 vcol += ptr2cells(p);
2840 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 }
2842 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002843 msg_clr_eos();
Bram Moolenaar76624232007-07-28 12:21:47 +00002844 windgoto(msg_row, msg_col);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002845 continue;
2846 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002848 if (c1 == Ctrl_D)
2849 {
2850 /* Delete one shiftwidth. */
2851 p = (char_u *)line_ga.ga_data;
2852 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002854 if (prev_char == '^')
2855 ex_keep_indent = TRUE;
2856 indent = 0;
2857 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 }
2859 else
2860 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002861 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002862 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaarda636572015-04-03 17:11:45 +02002863 if (indent > 0)
2864 {
2865 --indent;
2866 indent -= indent % get_sw_value(curbuf);
2867 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02002869 while (get_indent_str(p, 8, FALSE) > indent)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002870 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002871 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002872 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2873 --line_ga.ga_len;
2874 }
2875 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002876 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002877
2878 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2879 {
2880 escaped = TRUE;
2881 continue;
2882 }
2883
2884 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
2885 if (IS_SPECIAL(c1))
2886 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002888
2889 if (IS_SPECIAL(c1))
2890 c1 = '?';
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002891 if (has_mbyte)
2892 len = (*mb_char2bytes)(c1,
2893 (char_u *)line_ga.ga_data + line_ga.ga_len);
2894 else
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002895 {
2896 len = 1;
2897 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
2898 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002899 if (c1 == '\n')
2900 msg_putchar('\n');
2901 else if (c1 == TAB)
2902 {
2903 /* Don't use chartabsize(), 'ts' can be different */
2904 do
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002905 msg_putchar(' ');
Bram Moolenaarabab0b02019-03-30 18:47:01 +01002906 while (++vcol % 8);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002907 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002910 msg_outtrans_len(
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002911 ((char_u *)line_ga.ga_data) + line_ga.ga_len, len);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002912 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913 }
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002914 line_ga.ga_len += len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002915 escaped = FALSE;
2916
2917 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002918 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002919
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002920 /* We are done when a NL is entered, but not when it comes after an
2921 * odd number of backslashes, that results in a NUL. */
2922 if (line_ga.ga_len > 0 && pend[-1] == '\n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002923 {
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002924 int bcount = 0;
2925
2926 while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\')
2927 ++bcount;
2928
2929 if (bcount > 0)
2930 {
2931 /* Halve the number of backslashes: "\NL" -> "NUL", "\\NL" ->
2932 * "\NL", etc. */
2933 line_ga.ga_len -= (bcount + 1) / 2;
2934 pend -= (bcount + 1) / 2;
2935 pend[-1] = '\n';
2936 }
2937
2938 if ((bcount & 1) == 0)
2939 {
2940 --line_ga.ga_len;
2941 --pend;
2942 *pend = NUL;
2943 break;
2944 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 }
2946 }
2947
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002948 --no_mapping;
2949 --allow_keys;
2950
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951 /* make following messages go to the next line */
2952 msg_didout = FALSE;
2953 msg_col = 0;
2954 if (msg_row < Rows - 1)
2955 ++msg_row;
2956 emsg_on_display = FALSE; /* don't want ui_delay() */
2957
2958 if (got_int)
2959 ga_clear(&line_ga);
2960
2961 return (char_u *)line_ga.ga_data;
2962}
2963
Bram Moolenaare344bea2005-09-01 20:46:49 +00002964# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
2965 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966/*
2967 * Return TRUE if ccline.overstrike is on.
2968 */
2969 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002970cmdline_overstrike(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971{
2972 return ccline.overstrike;
2973}
2974
2975/*
2976 * Return TRUE if the cursor is at the end of the cmdline.
2977 */
2978 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002979cmdline_at_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980{
2981 return (ccline.cmdpos >= ccline.cmdlen);
2982}
2983#endif
2984
Bram Moolenaar9372a112005-12-06 19:59:18 +00002985#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986/*
2987 * Return the virtual column number at the current cursor position.
2988 * This is used by the IM code to obtain the start of the preedit string.
2989 */
2990 colnr_T
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002991cmdline_getvcol_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992{
2993 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
2994 return MAXCOL;
2995
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 if (has_mbyte)
2997 {
2998 colnr_T col;
2999 int i = 0;
3000
3001 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003002 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003
3004 return col;
3005 }
3006 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 return ccline.cmdpos;
3008}
3009#endif
3010
3011#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
3012/*
3013 * If part of the command line is an IM preedit string, redraw it with
3014 * IM feedback attributes. The cursor position is restored after drawing.
3015 */
3016 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003017redrawcmd_preedit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018{
3019 if ((State & CMDLINE)
3020 && xic != NULL
Bram Moolenaar494c82a2006-09-14 08:25:49 +00003021 /* && im_get_status() doesn't work when using SCIM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 && !p_imdisable
3023 && im_is_preediting())
3024 {
3025 int cmdpos = 0;
3026 int cmdspos;
3027 int old_row;
3028 int old_col;
3029 colnr_T col;
3030
3031 old_row = msg_row;
3032 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003033 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003034
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035 if (has_mbyte)
3036 {
3037 for (col = 0; col < preedit_start_col
3038 && cmdpos < ccline.cmdlen; ++col)
3039 {
3040 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003041 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042 }
3043 }
3044 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045 {
3046 cmdspos += preedit_start_col;
3047 cmdpos += preedit_start_col;
3048 }
3049
3050 msg_row = cmdline_row + (cmdspos / (int)Columns);
3051 msg_col = cmdspos % (int)Columns;
3052 if (msg_row >= Rows)
3053 msg_row = Rows - 1;
3054
3055 for (col = 0; cmdpos < ccline.cmdlen; ++col)
3056 {
3057 int char_len;
3058 int char_attr;
3059
3060 char_attr = im_get_feedback_attr(col);
3061 if (char_attr < 0)
3062 break; /* end of preedit string */
3063
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003065 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067 char_len = 1;
3068
3069 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
3070 cmdpos += char_len;
3071 }
3072
3073 msg_row = old_row;
3074 msg_col = old_col;
3075 }
3076}
3077#endif /* FEAT_XIM && FEAT_GUI_GTK */
3078
3079/*
3080 * Allocate a new command line buffer.
3081 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082 */
3083 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003084alloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085{
3086 /*
3087 * give some extra space to avoid having to allocate all the time
3088 */
3089 if (len < 80)
3090 len = 100;
3091 else
3092 len += 20;
3093
3094 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */
3095 ccline.cmdbufflen = len;
3096}
3097
3098/*
3099 * Re-allocate the command line to length len + something extra.
3100 * return FAIL for failure, OK otherwise
3101 */
3102 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003103realloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003104{
3105 char_u *p;
3106
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003107 if (len < ccline.cmdbufflen)
3108 return OK; /* no need to resize */
3109
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110 p = ccline.cmdbuff;
3111 alloc_cmdbuff(len); /* will get some more */
3112 if (ccline.cmdbuff == NULL) /* out of memory */
3113 {
3114 ccline.cmdbuff = p; /* keep the old one */
3115 return FAIL;
3116 }
Bram Moolenaar35a34232010-08-13 16:51:26 +02003117 /* There isn't always a NUL after the command, but it may need to be
3118 * there, thus copy up to the NUL and add a NUL. */
3119 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen);
3120 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121 vim_free(p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003122
3123 if (ccline.xpc != NULL
3124 && ccline.xpc->xp_pattern != NULL
3125 && ccline.xpc->xp_context != EXPAND_NOTHING
3126 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL)
3127 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00003128 int i = (int)(ccline.xpc->xp_pattern - p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003129
3130 /* If xp_pattern points inside the old cmdbuff it needs to be adjusted
3131 * to point into the newly allocated memory. */
3132 if (i >= 0 && i <= ccline.cmdlen)
3133 ccline.xpc->xp_pattern = ccline.cmdbuff + i;
3134 }
3135
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 return OK;
3137}
3138
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003139#if defined(FEAT_ARABIC) || defined(PROTO)
3140static char_u *arshape_buf = NULL;
3141
3142# if defined(EXITFREE) || defined(PROTO)
3143 void
Bram Moolenaar48ac6712019-07-04 20:26:21 +02003144free_arshape_buf(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003145{
3146 vim_free(arshape_buf);
3147}
3148# endif
3149#endif
3150
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151/*
3152 * Draw part of the cmdline at the current cursor position. But draw stars
3153 * when cmdline_star is TRUE.
3154 */
3155 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003156draw_cmdline(int start, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157{
3158#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
3159 int i;
3160
3161 if (cmdline_star > 0)
3162 for (i = 0; i < len; ++i)
3163 {
3164 msg_putchar('*');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003166 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167 }
3168 else
3169#endif
3170#ifdef FEAT_ARABIC
Bram Moolenaar693f7dc2019-06-21 02:30:38 +02003171 if (p_arshape && !p_tbidi && cmdline_has_arabic(start, len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 static int buflen = 0;
3174 char_u *p;
3175 int j;
3176 int newlen = 0;
3177 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003178 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179 int prev_c = 0;
3180 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003181 int u8c;
3182 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184
3185 /*
3186 * Do arabic shaping into a temporary buffer. This is very
3187 * inefficient!
3188 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003189 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 {
3191 /* Re-allocate the buffer. We keep it around to avoid a lot of
3192 * alloc()/free() calls. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003193 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003194 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003195 arshape_buf = alloc(buflen);
3196 if (arshape_buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 return; /* out of memory */
3198 }
3199
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003200 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
3201 {
3202 /* Prepend a space to draw the leading composing char on. */
3203 arshape_buf[0] = ' ';
3204 newlen = 1;
3205 }
3206
Bram Moolenaar071d4272004-06-13 20:20:40 +00003207 for (j = start; j < start + len; j += mb_l)
3208 {
3209 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003210 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003211 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212 if (ARABIC_CHAR(u8c))
3213 {
3214 /* Do Arabic shaping. */
3215 if (cmdmsg_rl)
3216 {
3217 /* displaying from right to left */
3218 pc = prev_c;
3219 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003220 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221 if (j + mb_l >= start + len)
3222 nc = NUL;
3223 else
3224 nc = utf_ptr2char(p + mb_l);
3225 }
3226 else
3227 {
3228 /* displaying from left to right */
3229 if (j + mb_l >= start + len)
3230 pc = NUL;
3231 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003232 {
3233 int pcc[MAX_MCO];
3234
3235 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003236 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003237 pc1 = pcc[0];
3238 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239 nc = prev_c;
3240 }
3241 prev_c = u8c;
3242
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003243 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003245 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003246 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003248 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
3249 if (u8cc[1] != 0)
3250 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003251 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 }
3253 }
3254 else
3255 {
3256 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003257 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258 newlen += mb_l;
3259 }
3260 }
3261
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003262 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263 }
3264 else
3265#endif
3266 msg_outtrans_len(ccline.cmdbuff + start, len);
3267}
3268
3269/*
3270 * Put a character on the command line. Shifts the following text to the
3271 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
3272 * "c" must be printable (fit in one display cell)!
3273 */
3274 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003275putcmdline(int c, int shift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276{
3277 if (cmd_silent)
3278 return;
3279 msg_no_more = TRUE;
3280 msg_putchar(c);
3281 if (shift)
3282 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
3283 msg_no_more = FALSE;
3284 cursorcmd();
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003285 extra_char = c;
3286 extra_char_shift = shift;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287}
3288
3289/*
3290 * Undo a putcmdline(c, FALSE).
3291 */
3292 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003293unputcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294{
3295 if (cmd_silent)
3296 return;
3297 msg_no_more = TRUE;
3298 if (ccline.cmdlen == ccline.cmdpos)
3299 msg_putchar(' ');
Bram Moolenaar64fdf5c2012-06-06 12:03:06 +02003300 else if (has_mbyte)
3301 draw_cmdline(ccline.cmdpos,
3302 (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003303 else
3304 draw_cmdline(ccline.cmdpos, 1);
3305 msg_no_more = FALSE;
3306 cursorcmd();
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003307 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308}
3309
3310/*
3311 * Put the given string, of the given length, onto the command line.
3312 * If len is -1, then STRLEN() is used to calculate the length.
3313 * If 'redraw' is TRUE then the new part of the command line, and the remaining
3314 * part will be redrawn, otherwise it will not. If this function is called
3315 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
3316 * called afterwards.
3317 */
3318 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003319put_on_cmdline(char_u *str, int len, int redraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320{
3321 int retval;
3322 int i;
3323 int m;
3324 int c;
3325
3326 if (len < 0)
3327 len = (int)STRLEN(str);
3328
3329 /* Check if ccline.cmdbuff needs to be longer */
3330 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003331 retval = realloc_cmdbuff(ccline.cmdlen + len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332 else
3333 retval = OK;
3334 if (retval == OK)
3335 {
3336 if (!ccline.overstrike)
3337 {
3338 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
3339 ccline.cmdbuff + ccline.cmdpos,
3340 (size_t)(ccline.cmdlen - ccline.cmdpos));
3341 ccline.cmdlen += len;
3342 }
3343 else
3344 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345 if (has_mbyte)
3346 {
3347 /* Count nr of characters in the new string. */
3348 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003349 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 ++m;
3351 /* Count nr of bytes in cmdline that are overwritten by these
3352 * characters. */
3353 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003354 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 --m;
3356 if (i < ccline.cmdlen)
3357 {
3358 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
3359 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
3360 ccline.cmdlen += ccline.cmdpos + len - i;
3361 }
3362 else
3363 ccline.cmdlen = ccline.cmdpos + len;
3364 }
Bram Moolenaar13505972019-01-24 15:04:48 +01003365 else if (ccline.cmdpos + len > ccline.cmdlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366 ccline.cmdlen = ccline.cmdpos + len;
3367 }
3368 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
3369 ccline.cmdbuff[ccline.cmdlen] = NUL;
3370
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 if (enc_utf8)
3372 {
3373 /* When the inserted text starts with a composing character,
3374 * backup to the character before it. There could be two of them.
3375 */
3376 i = 0;
3377 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3378 while (ccline.cmdpos > 0 && utf_iscomposing(c))
3379 {
3380 i = (*mb_head_off)(ccline.cmdbuff,
3381 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3382 ccline.cmdpos -= i;
3383 len += i;
3384 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3385 }
Bram Moolenaar13505972019-01-24 15:04:48 +01003386#ifdef FEAT_ARABIC
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
3388 {
3389 /* Check the previous character for Arabic combining pair. */
3390 i = (*mb_head_off)(ccline.cmdbuff,
3391 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3392 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
3393 + ccline.cmdpos - i), c))
3394 {
3395 ccline.cmdpos -= i;
3396 len += i;
3397 }
3398 else
3399 i = 0;
3400 }
Bram Moolenaar13505972019-01-24 15:04:48 +01003401#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402 if (i != 0)
3403 {
3404 /* Also backup the cursor position. */
3405 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
3406 ccline.cmdspos -= i;
3407 msg_col -= i;
3408 if (msg_col < 0)
3409 {
3410 msg_col += Columns;
3411 --msg_row;
3412 }
3413 }
3414 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415
3416 if (redraw && !cmd_silent)
3417 {
3418 msg_no_more = TRUE;
3419 i = cmdline_row;
Bram Moolenaar73dc59a2011-09-30 17:46:21 +02003420 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
3422 /* Avoid clearing the rest of the line too often. */
3423 if (cmdline_row != i || ccline.overstrike)
3424 msg_clr_eos();
3425 msg_no_more = FALSE;
3426 }
Bram Moolenaar14184a32019-02-16 15:10:30 +01003427 if (KeyTyped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003428 {
Bram Moolenaar14184a32019-02-16 15:10:30 +01003429 m = Columns * Rows;
3430 if (m < 0) /* overflow, Columns or Rows at weird value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431 m = MAXCOL;
Bram Moolenaar14184a32019-02-16 15:10:30 +01003432 }
3433 else
3434 m = MAXCOL;
3435 for (i = 0; i < len; ++i)
3436 {
3437 c = cmdline_charsize(ccline.cmdpos);
3438 /* count ">" for a double-wide char that doesn't fit. */
3439 if (has_mbyte)
3440 correct_cmdspos(ccline.cmdpos, c);
3441 /* Stop cursor at the end of the screen, but do increment the
3442 * insert position, so that entering a very long command
3443 * works, even though you can't see it. */
3444 if (ccline.cmdspos + c < m)
3445 ccline.cmdspos += c;
Bram Moolenaar13505972019-01-24 15:04:48 +01003446
Bram Moolenaar14184a32019-02-16 15:10:30 +01003447 if (has_mbyte)
3448 {
3449 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
3450 if (c > len - i - 1)
3451 c = len - i - 1;
3452 ccline.cmdpos += c;
3453 i += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 }
Bram Moolenaar14184a32019-02-16 15:10:30 +01003455 ++ccline.cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 }
3457 }
3458 if (redraw)
3459 msg_check();
3460 return retval;
3461}
3462
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003463static struct cmdline_info prev_ccline;
3464static int prev_ccline_used = FALSE;
3465
3466/*
3467 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
3468 * and overwrite it. But get_cmdline_str() may need it, thus make it
3469 * available globally in prev_ccline.
3470 */
3471 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003472save_cmdline(struct cmdline_info *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003473{
3474 if (!prev_ccline_used)
3475 {
3476 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info));
3477 prev_ccline_used = TRUE;
3478 }
3479 *ccp = prev_ccline;
3480 prev_ccline = ccline;
Bram Moolenaar438d1762018-09-30 17:11:48 +02003481 ccline.cmdbuff = NULL; // signal that ccline is not in use
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003482}
3483
3484/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003485 * Restore ccline after it has been saved with save_cmdline().
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003486 */
3487 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003488restore_cmdline(struct cmdline_info *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003489{
3490 ccline = prev_ccline;
3491 prev_ccline = *ccp;
3492}
3493
Bram Moolenaar8299df92004-07-10 09:47:34 +00003494/*
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003495 * Paste a yank register into the command line.
3496 * Used by CTRL-R command in command-line mode.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003497 * insert_reg() can't be used here, because special characters from the
3498 * register contents will be interpreted as commands.
3499 *
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003500 * Return FAIL for failure, OK otherwise.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003501 */
3502 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003503cmdline_paste(
3504 int regname,
3505 int literally, /* Insert text literally instead of "as typed" */
3506 int remcr) /* remove trailing CR */
Bram Moolenaar8299df92004-07-10 09:47:34 +00003507{
3508 long i;
3509 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003510 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003511 int allocated;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003512
3513 /* check for valid regname; also accept special characters for CTRL-R in
3514 * the command line */
3515 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
Bram Moolenaare2c8d832018-05-01 19:24:03 +02003516 && regname != Ctrl_A && regname != Ctrl_L
3517 && !valid_yank_reg(regname, FALSE))
Bram Moolenaar8299df92004-07-10 09:47:34 +00003518 return FAIL;
3519
3520 /* A register containing CTRL-R can cause an endless loop. Allow using
3521 * CTRL-C to break the loop. */
3522 line_breakcheck();
3523 if (got_int)
3524 return FAIL;
3525
3526#ifdef FEAT_CLIPBOARD
3527 regname = may_get_selection(regname);
3528#endif
3529
Bram Moolenaar438d1762018-09-30 17:11:48 +02003530 // Need to set "textlock" to avoid nasty things like going to another
3531 // buffer when evaluating an expression.
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003532 ++textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003533 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003534 --textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003535
3536 if (i)
3537 {
3538 /* Got the value of a special register in "arg". */
3539 if (arg == NULL)
3540 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003541
3542 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
3543 * part of the word. */
3544 p = arg;
3545 if (p_is && regname == Ctrl_W)
3546 {
3547 char_u *w;
3548 int len;
3549
3550 /* Locate start of last word in the cmd buffer. */
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003551 for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; )
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003552 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003553 if (has_mbyte)
3554 {
3555 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
3556 if (!vim_iswordc(mb_ptr2char(w - len)))
3557 break;
3558 w -= len;
3559 }
3560 else
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003561 {
3562 if (!vim_iswordc(w[-1]))
3563 break;
3564 --w;
3565 }
3566 }
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003567 len = (int)((ccline.cmdbuff + ccline.cmdpos) - w);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003568 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
3569 p += len;
3570 }
3571
3572 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003573 if (allocated)
3574 vim_free(arg);
3575 return OK;
3576 }
3577
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003578 return cmdline_paste_reg(regname, literally, remcr);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003579}
3580
3581/*
3582 * Put a string on the command line.
3583 * When "literally" is TRUE, insert literally.
3584 * When "literally" is FALSE, insert as typed, but don't leave the command
3585 * line.
3586 */
3587 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003588cmdline_paste_str(char_u *s, int literally)
Bram Moolenaar8299df92004-07-10 09:47:34 +00003589{
3590 int c, cv;
3591
3592 if (literally)
3593 put_on_cmdline(s, -1, TRUE);
3594 else
3595 while (*s != NUL)
3596 {
3597 cv = *s;
3598 if (cv == Ctrl_V && s[1])
3599 ++s;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003600 if (has_mbyte)
Bram Moolenaar48be32b2008-06-20 10:56:16 +00003601 c = mb_cptr2char_adv(&s);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003602 else
Bram Moolenaar8299df92004-07-10 09:47:34 +00003603 c = *s++;
Bram Moolenaare79abdd2012-06-29 13:44:41 +02003604 if (cv == Ctrl_V || c == ESC || c == Ctrl_C
3605 || c == CAR || c == NL || c == Ctrl_L
Bram Moolenaar8299df92004-07-10 09:47:34 +00003606#ifdef UNIX
3607 || c == intr_char
3608#endif
3609 || (c == Ctrl_BSL && *s == Ctrl_N))
3610 stuffcharReadbuff(Ctrl_V);
3611 stuffcharReadbuff(c);
3612 }
3613}
3614
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615#ifdef FEAT_WILDMENU
3616/*
3617 * Delete characters on the command line, from "from" to the current
3618 * position.
3619 */
3620 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003621cmdline_del(int from)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622{
3623 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
3624 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3625 ccline.cmdlen -= ccline.cmdpos - from;
3626 ccline.cmdpos = from;
3627}
3628#endif
3629
3630/*
Bram Moolenaar89c79b92016-05-05 17:18:41 +02003631 * This function is called when the screen size changes and with incremental
3632 * search and in other situations where the command line may have been
3633 * overwritten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 */
3635 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003636redrawcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637{
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003638 redrawcmdline_ex(TRUE);
3639}
3640
3641 void
3642redrawcmdline_ex(int do_compute_cmdrow)
3643{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 if (cmd_silent)
3645 return;
3646 need_wait_return = FALSE;
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003647 if (do_compute_cmdrow)
3648 compute_cmdrow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 redrawcmd();
3650 cursorcmd();
3651}
3652
3653 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003654redrawcmdprompt(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655{
3656 int i;
3657
3658 if (cmd_silent)
3659 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003660 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661 msg_putchar(ccline.cmdfirstc);
3662 if (ccline.cmdprompt != NULL)
3663 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003664 msg_puts_attr((char *)ccline.cmdprompt, ccline.cmdattr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
3666 /* do the reverse of set_cmdspos() */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003667 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668 --ccline.cmdindent;
3669 }
3670 else
3671 for (i = ccline.cmdindent; i > 0; --i)
3672 msg_putchar(' ');
3673}
3674
3675/*
3676 * Redraw what is currently on the command line.
3677 */
3678 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003679redrawcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680{
3681 if (cmd_silent)
3682 return;
3683
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003684 /* when 'incsearch' is set there may be no command line while redrawing */
3685 if (ccline.cmdbuff == NULL)
3686 {
3687 windgoto(cmdline_row, 0);
3688 msg_clr_eos();
3689 return;
3690 }
3691
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692 msg_start();
3693 redrawcmdprompt();
3694
3695 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
3696 msg_no_more = TRUE;
3697 draw_cmdline(0, ccline.cmdlen);
3698 msg_clr_eos();
3699 msg_no_more = FALSE;
3700
3701 set_cmdspos_cursor();
Bram Moolenaara92522f2017-07-15 15:21:38 +02003702 if (extra_char != NUL)
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003703 putcmdline(extra_char, extra_char_shift);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704
3705 /*
3706 * An emsg() before may have set msg_scroll. This is used in normal mode,
3707 * in cmdline mode we can reset them now.
3708 */
3709 msg_scroll = FALSE; /* next message overwrites cmdline */
3710
3711 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
3712 * in cmdline mode */
3713 skip_redraw = FALSE;
3714}
3715
3716 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003717compute_cmdrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003719 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720 cmdline_row = Rows - 1;
3721 else
3722 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
Bram Moolenaare0de17d2017-09-24 16:24:34 +02003723 + lastwin->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724}
3725
3726 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003727cursorcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728{
3729 if (cmd_silent)
3730 return;
3731
3732#ifdef FEAT_RIGHTLEFT
3733 if (cmdmsg_rl)
3734 {
3735 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3736 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3737 if (msg_row <= 0)
3738 msg_row = Rows - 1;
3739 }
3740 else
3741#endif
3742 {
3743 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3744 msg_col = ccline.cmdspos % (int)Columns;
3745 if (msg_row >= Rows)
3746 msg_row = Rows - 1;
3747 }
3748
3749 windgoto(msg_row, msg_col);
3750#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar5c6dbcb2017-08-30 22:00:20 +02003751 if (p_imst == IM_ON_THE_SPOT)
3752 redrawcmd_preedit();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753#endif
3754#ifdef MCH_CURSOR_SHAPE
3755 mch_update_cursor();
3756#endif
3757}
3758
3759 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003760gotocmdline(int clr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761{
3762 msg_start();
3763#ifdef FEAT_RIGHTLEFT
3764 if (cmdmsg_rl)
3765 msg_col = Columns - 1;
3766 else
3767#endif
3768 msg_col = 0; /* always start in column 0 */
3769 if (clr) /* clear the bottom line(s) */
3770 msg_clr_eos(); /* will reset clear_cmdline */
3771 windgoto(cmdline_row, 0);
3772}
3773
3774/*
3775 * Check the word in front of the cursor for an abbreviation.
3776 * Called when the non-id character "c" has been entered.
3777 * When an abbreviation is recognized it is removed from the text with
3778 * backspaces and the replacement string is inserted, followed by "c".
3779 */
3780 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003781ccheck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782{
Bram Moolenaar5e3423d2018-05-13 18:36:27 +02003783 int spos = 0;
3784
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
3786 return FALSE;
3787
Bram Moolenaar5e3423d2018-05-13 18:36:27 +02003788 /* Do not consider '<,'> be part of the mapping, skip leading whitespace.
3789 * Actually accepts any mark. */
3790 while (VIM_ISWHITE(ccline.cmdbuff[spos]) && spos < ccline.cmdlen)
3791 spos++;
3792 if (ccline.cmdlen - spos > 5
3793 && ccline.cmdbuff[spos] == '\''
3794 && ccline.cmdbuff[spos + 2] == ','
3795 && ccline.cmdbuff[spos + 3] == '\'')
3796 spos += 5;
3797 else
3798 /* check abbreviation from the beginning of the commandline */
3799 spos = 0;
3800
3801 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, spos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802}
3803
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003804#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3805 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003806sort_func_compare(const void *s1, const void *s2)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003807{
3808 char_u *p1 = *(char_u **)s1;
3809 char_u *p2 = *(char_u **)s2;
3810
3811 if (*p1 != '<' && *p2 == '<') return -1;
3812 if (*p1 == '<' && *p2 != '<') return 1;
3813 return STRCMP(p1, p2);
3814}
3815#endif
3816
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817/*
3818 * Return FAIL if this is not an appropriate context in which to do
3819 * completion of anything, return OK if it is (even if there are no matches).
3820 * For the caller, this means that the character is just passed through like a
3821 * normal character (instead of being expanded). This allows :s/^I^D etc.
3822 */
3823 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003824nextwild(
3825 expand_T *xp,
3826 int type,
3827 int options, /* extra options for ExpandOne() */
3828 int escape) /* if TRUE, escape the returned matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003829{
3830 int i, j;
3831 char_u *p1;
3832 char_u *p2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833 int difflen;
3834 int v;
3835
3836 if (xp->xp_numfiles == -1)
3837 {
3838 set_expand_context(xp);
3839 cmd_showtail = expand_showtail(xp);
3840 }
3841
3842 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
3843 {
3844 beep_flush();
3845 return OK; /* Something illegal on command line */
3846 }
3847 if (xp->xp_context == EXPAND_NOTHING)
3848 {
3849 /* Caller can use the character as a normal char instead */
3850 return FAIL;
3851 }
3852
Bram Moolenaar32526b32019-01-19 17:43:09 +01003853 msg_puts("..."); /* show that we are busy */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854 out_flush();
3855
3856 i = (int)(xp->xp_pattern - ccline.cmdbuff);
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003857 xp->xp_pattern_len = ccline.cmdpos - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858
3859 if (type == WILD_NEXT || type == WILD_PREV)
3860 {
3861 /*
3862 * Get next/previous match for a previous expanded pattern.
3863 */
3864 p2 = ExpandOne(xp, NULL, NULL, 0, type);
3865 }
3866 else
3867 {
3868 /*
3869 * Translate string into pattern and expand it.
3870 */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003871 if ((p1 = addstar(xp->xp_pattern, xp->xp_pattern_len,
3872 xp->xp_context)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873 p2 = NULL;
3874 else
3875 {
Bram Moolenaar94950a92010-12-02 16:01:29 +01003876 int use_options = options |
Bram Moolenaarb3479632012-11-28 16:49:58 +01003877 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT;
3878 if (escape)
3879 use_options |= WILD_ESCAPE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01003880
3881 if (p_wic)
3882 use_options += WILD_ICASE;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003883 p2 = ExpandOne(xp, p1,
3884 vim_strnsave(&ccline.cmdbuff[i], xp->xp_pattern_len),
Bram Moolenaar94950a92010-12-02 16:01:29 +01003885 use_options, type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886 vim_free(p1);
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003887 /* longest match: make sure it is not shorter, happens with :help */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888 if (p2 != NULL && type == WILD_LONGEST)
3889 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003890 for (j = 0; j < xp->xp_pattern_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891 if (ccline.cmdbuff[i + j] == '*'
3892 || ccline.cmdbuff[i + j] == '?')
3893 break;
3894 if ((int)STRLEN(p2) < j)
Bram Moolenaard23a8232018-02-10 18:45:26 +01003895 VIM_CLEAR(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896 }
3897 }
3898 }
3899
3900 if (p2 != NULL && !got_int)
3901 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003902 difflen = (int)STRLEN(p2) - xp->xp_pattern_len;
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003903 if (ccline.cmdlen + difflen + 4 > ccline.cmdbufflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003905 v = realloc_cmdbuff(ccline.cmdlen + difflen + 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906 xp->xp_pattern = ccline.cmdbuff + i;
3907 }
3908 else
3909 v = OK;
3910 if (v == OK)
3911 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003912 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen],
3913 &ccline.cmdbuff[ccline.cmdpos],
3914 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3915 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916 ccline.cmdlen += difflen;
3917 ccline.cmdpos += difflen;
3918 }
3919 }
3920 vim_free(p2);
3921
3922 redrawcmd();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003923 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924
3925 /* When expanding a ":map" command and no matches are found, assume that
3926 * the key is supposed to be inserted literally */
3927 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL)
3928 return FAIL;
3929
3930 if (xp->xp_numfiles <= 0 && p2 == NULL)
3931 beep_flush();
3932 else if (xp->xp_numfiles == 1)
3933 /* free expanded pattern */
3934 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
3935
3936 return OK;
3937}
3938
3939/*
3940 * Do wildcard expansion on the string 'str'.
3941 * Chars that should not be expanded must be preceded with a backslash.
Bram Moolenaarf9821062008-06-20 16:31:07 +00003942 * Return a pointer to allocated memory containing the new string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943 * Return NULL for failure.
3944 *
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003945 * "orig" is the originally expanded string, copied to allocated memory. It
3946 * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or
3947 * WILD_PREV "orig" should be NULL.
3948 *
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003949 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode"
3950 * is WILD_EXPAND_FREE or WILD_ALL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 *
3952 * mode = WILD_FREE: just free previously expanded matches
3953 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches
3954 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches
3955 * mode = WILD_NEXT: use next match in multiple match, wrap to first
3956 * mode = WILD_PREV: use previous match in multiple match, wrap to first
3957 * mode = WILD_ALL: return all matches concatenated
3958 * mode = WILD_LONGEST: return longest matched part
Bram Moolenaar146e9c32012-03-07 19:18:23 +01003959 * mode = WILD_ALL_KEEP: get all matches, keep matches
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 *
3961 * options = WILD_LIST_NOTFOUND: list entries without a match
3962 * options = WILD_HOME_REPLACE: do home_replace() for buffer names
3963 * options = WILD_USE_NL: Use '\n' for WILD_ALL
3964 * options = WILD_NO_BEEP: Don't beep for multiple matches
3965 * options = WILD_ADD_SLASH: add a slash after directory names
3966 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries
3967 * options = WILD_SILENT: don't print warning messages
3968 * options = WILD_ESCAPE: put backslash before special chars
Bram Moolenaar94950a92010-12-02 16:01:29 +01003969 * options = WILD_ICASE: ignore case for files
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970 *
3971 * The variables xp->xp_context and xp->xp_backslash must have been set!
3972 */
3973 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003974ExpandOne(
3975 expand_T *xp,
3976 char_u *str,
3977 char_u *orig, /* allocated copy of original of expanded string */
3978 int options,
3979 int mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980{
3981 char_u *ss = NULL;
3982 static int findex;
3983 static char_u *orig_save = NULL; /* kept value of orig */
Bram Moolenaar96426642007-10-30 16:37:15 +00003984 int orig_saved = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 int i;
3986 long_u len;
3987 int non_suf_match; /* number without matching suffix */
3988
3989 /*
3990 * first handle the case of using an old match
3991 */
3992 if (mode == WILD_NEXT || mode == WILD_PREV)
3993 {
3994 if (xp->xp_numfiles > 0)
3995 {
3996 if (mode == WILD_PREV)
3997 {
3998 if (findex == -1)
3999 findex = xp->xp_numfiles;
4000 --findex;
4001 }
4002 else /* mode == WILD_NEXT */
4003 ++findex;
4004
4005 /*
4006 * When wrapping around, return the original string, set findex to
4007 * -1.
4008 */
4009 if (findex < 0)
4010 {
4011 if (orig_save == NULL)
4012 findex = xp->xp_numfiles - 1;
4013 else
4014 findex = -1;
4015 }
4016 if (findex >= xp->xp_numfiles)
4017 {
4018 if (orig_save == NULL)
4019 findex = 0;
4020 else
4021 findex = -1;
4022 }
4023#ifdef FEAT_WILDMENU
4024 if (p_wmnu)
4025 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files,
4026 findex, cmd_showtail);
4027#endif
4028 if (findex == -1)
4029 return vim_strsave(orig_save);
4030 return vim_strsave(xp->xp_files[findex]);
4031 }
4032 else
4033 return NULL;
4034 }
4035
Bram Moolenaarecf4de52007-09-30 20:11:26 +00004036 /* free old names */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST)
4038 {
4039 FreeWild(xp->xp_numfiles, xp->xp_files);
4040 xp->xp_numfiles = -1;
Bram Moolenaard23a8232018-02-10 18:45:26 +01004041 VIM_CLEAR(orig_save);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042 }
4043 findex = 0;
4044
4045 if (mode == WILD_FREE) /* only release file name */
4046 return NULL;
4047
4048 if (xp->xp_numfiles == -1)
4049 {
4050 vim_free(orig_save);
4051 orig_save = orig;
Bram Moolenaar96426642007-10-30 16:37:15 +00004052 orig_saved = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053
4054 /*
4055 * Do the expansion.
4056 */
4057 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files,
4058 options) == FAIL)
4059 {
4060#ifdef FNAME_ILLEGAL
4061 /* Illegal file name has been silently skipped. But when there
4062 * are wildcards, the real problem is that there was no match,
4063 * causing the pattern to be added, which has illegal characters.
4064 */
4065 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004066 semsg(_(e_nomatch2), str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067#endif
4068 }
4069 else if (xp->xp_numfiles == 0)
4070 {
4071 if (!(options & WILD_SILENT))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004072 semsg(_(e_nomatch2), str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 }
4074 else
4075 {
4076 /* Escape the matches for use on the command line. */
4077 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options);
4078
4079 /*
4080 * Check for matching suffixes in file names.
4081 */
Bram Moolenaar146e9c32012-03-07 19:18:23 +01004082 if (mode != WILD_ALL && mode != WILD_ALL_KEEP
4083 && mode != WILD_LONGEST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 {
4085 if (xp->xp_numfiles)
4086 non_suf_match = xp->xp_numfiles;
4087 else
4088 non_suf_match = 1;
4089 if ((xp->xp_context == EXPAND_FILES
4090 || xp->xp_context == EXPAND_DIRECTORIES)
4091 && xp->xp_numfiles > 1)
4092 {
4093 /*
4094 * More than one match; check suffix.
4095 * The files will have been sorted on matching suffix in
4096 * expand_wildcards, only need to check the first two.
4097 */
4098 non_suf_match = 0;
4099 for (i = 0; i < 2; ++i)
4100 if (match_suffix(xp->xp_files[i]))
4101 ++non_suf_match;
4102 }
4103 if (non_suf_match != 1)
4104 {
4105 /* Can we ever get here unless it's while expanding
4106 * interactively? If not, we can get rid of this all
4107 * together. Don't really want to wait for this message
4108 * (and possibly have to hit return to continue!).
4109 */
4110 if (!(options & WILD_SILENT))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004111 emsg(_(e_toomany));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 else if (!(options & WILD_NO_BEEP))
4113 beep_flush();
4114 }
4115 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE))
4116 ss = vim_strsave(xp->xp_files[0]);
4117 }
4118 }
4119 }
4120
4121 /* Find longest common part */
4122 if (mode == WILD_LONGEST && xp->xp_numfiles > 0)
4123 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004124 int mb_len = 1;
4125 int c0, ci;
4126
4127 for (len = 0; xp->xp_files[0][len]; len += mb_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004129 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004131 mb_len = (*mb_ptr2len)(&xp->xp_files[0][len]);
4132 c0 =(* mb_ptr2char)(&xp->xp_files[0][len]);
4133 }
4134 else
Bram Moolenaare4eda3b2015-11-21 16:28:50 +01004135 c0 = xp->xp_files[0][len];
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004136 for (i = 1; i < xp->xp_numfiles; ++i)
4137 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004138 if (has_mbyte)
4139 ci =(* mb_ptr2char)(&xp->xp_files[i][len]);
4140 else
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004141 ci = xp->xp_files[i][len];
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01004142 if (p_fic && (xp->xp_context == EXPAND_DIRECTORIES
Bram Moolenaar071d4272004-06-13 20:20:40 +00004143 || xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004144 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01004145 || xp->xp_context == EXPAND_BUFFERS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004147 if (MB_TOLOWER(c0) != MB_TOLOWER(ci))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 break;
4149 }
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004150 else if (c0 != ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 break;
4152 }
4153 if (i < xp->xp_numfiles)
4154 {
4155 if (!(options & WILD_NO_BEEP))
Bram Moolenaar165bc692015-07-21 17:53:25 +02004156 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157 break;
4158 }
4159 }
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01004160
Bram Moolenaar964b3742019-05-24 18:54:09 +02004161 ss = alloc(len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162 if (ss)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004163 vim_strncpy(ss, xp->xp_files[0], (size_t)len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164 findex = -1; /* next p_wc gets first one */
4165 }
4166
4167 /* Concatenate all matching names */
4168 if (mode == WILD_ALL && xp->xp_numfiles > 0)
4169 {
4170 len = 0;
4171 for (i = 0; i < xp->xp_numfiles; ++i)
4172 len += (long_u)STRLEN(xp->xp_files[i]) + 1;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004173 ss = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174 if (ss != NULL)
4175 {
4176 *ss = NUL;
4177 for (i = 0; i < xp->xp_numfiles; ++i)
4178 {
4179 STRCAT(ss, xp->xp_files[i]);
4180 if (i != xp->xp_numfiles - 1)
4181 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " ");
4182 }
4183 }
4184 }
4185
4186 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL)
4187 ExpandCleanup(xp);
4188
Bram Moolenaarecf4de52007-09-30 20:11:26 +00004189 /* Free "orig" if it wasn't stored in "orig_save". */
Bram Moolenaar96426642007-10-30 16:37:15 +00004190 if (!orig_saved)
Bram Moolenaarecf4de52007-09-30 20:11:26 +00004191 vim_free(orig);
4192
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193 return ss;
4194}
4195
4196/*
4197 * Prepare an expand structure for use.
4198 */
4199 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004200ExpandInit(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201{
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00004202 xp->xp_pattern = NULL;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004203 xp->xp_pattern_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00004205#ifndef BACKSLASH_IN_FILENAME
4206 xp->xp_shell = FALSE;
4207#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208 xp->xp_numfiles = -1;
4209 xp->xp_files = NULL;
Bram Moolenaarac9fb182019-04-27 13:04:13 +02004210#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00004211 xp->xp_arg = NULL;
4212#endif
Bram Moolenaarb7515462013-06-29 12:58:33 +02004213 xp->xp_line = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004214}
4215
4216/*
4217 * Cleanup an expand structure after use.
4218 */
4219 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004220ExpandCleanup(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221{
4222 if (xp->xp_numfiles >= 0)
4223 {
4224 FreeWild(xp->xp_numfiles, xp->xp_files);
4225 xp->xp_numfiles = -1;
4226 }
4227}
4228
4229 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004230ExpandEscape(
4231 expand_T *xp,
4232 char_u *str,
4233 int numfiles,
4234 char_u **files,
4235 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236{
4237 int i;
4238 char_u *p;
4239
4240 /*
4241 * May change home directory back to "~"
4242 */
4243 if (options & WILD_HOME_REPLACE)
4244 tilde_replace(str, numfiles, files);
4245
4246 if (options & WILD_ESCAPE)
4247 {
4248 if (xp->xp_context == EXPAND_FILES
Bram Moolenaarcca92ec2011-04-28 17:21:53 +02004249 || xp->xp_context == EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004250 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251 || xp->xp_context == EXPAND_BUFFERS
4252 || xp->xp_context == EXPAND_DIRECTORIES)
4253 {
4254 /*
4255 * Insert a backslash into a file name before a space, \, %, #
4256 * and wildmatch characters, except '~'.
4257 */
4258 for (i = 0; i < numfiles; ++i)
4259 {
4260 /* for ":set path=" we need to escape spaces twice */
4261 if (xp->xp_backslash == XP_BS_THREE)
4262 {
4263 p = vim_strsave_escaped(files[i], (char_u *)" ");
4264 if (p != NULL)
4265 {
4266 vim_free(files[i]);
4267 files[i] = p;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00004268#if defined(BACKSLASH_IN_FILENAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269 p = vim_strsave_escaped(files[i], (char_u *)" ");
4270 if (p != NULL)
4271 {
4272 vim_free(files[i]);
4273 files[i] = p;
4274 }
4275#endif
4276 }
4277 }
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00004278#ifdef BACKSLASH_IN_FILENAME
4279 p = vim_strsave_fnameescape(files[i], FALSE);
4280#else
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004281 p = vim_strsave_fnameescape(files[i], xp->xp_shell);
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00004282#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004283 if (p != NULL)
4284 {
4285 vim_free(files[i]);
4286 files[i] = p;
4287 }
4288
4289 /* If 'str' starts with "\~", replace "~" at start of
4290 * files[i] with "\~". */
4291 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~')
Bram Moolenaar45360022005-07-21 21:08:21 +00004292 escape_fname(&files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293 }
4294 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar45360022005-07-21 21:08:21 +00004295
4296 /* If the first file starts with a '+' escape it. Otherwise it
4297 * could be seen as "+cmd". */
4298 if (*files[0] == '+')
4299 escape_fname(&files[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300 }
4301 else if (xp->xp_context == EXPAND_TAGS)
4302 {
4303 /*
4304 * Insert a backslash before characters in a tag name that
4305 * would terminate the ":tag" command.
4306 */
4307 for (i = 0; i < numfiles; ++i)
4308 {
4309 p = vim_strsave_escaped(files[i], (char_u *)"\\|\"");
4310 if (p != NULL)
4311 {
4312 vim_free(files[i]);
4313 files[i] = p;
4314 }
4315 }
4316 }
4317 }
4318}
4319
4320/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004321 * Escape special characters in "fname" for when used as a file name argument
4322 * after a Vim command, or, when "shell" is non-zero, a shell command.
4323 * Returns the result in allocated memory.
4324 */
4325 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004326vim_strsave_fnameescape(char_u *fname, int shell)
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004327{
Bram Moolenaar7693ec62008-07-24 18:29:37 +00004328 char_u *p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004329#ifdef BACKSLASH_IN_FILENAME
4330 char_u buf[20];
4331 int j = 0;
4332
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01004333 /* Don't escape '[', '{' and '!' if they are in 'isfname'. */
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004334 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01004335 if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p))
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004336 buf[j++] = *p;
4337 buf[j] = NUL;
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004338 p = vim_strsave_escaped(fname, buf);
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004339#else
Bram Moolenaar7693ec62008-07-24 18:29:37 +00004340 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
4341 if (shell && csh_like_shell() && p != NULL)
4342 {
4343 char_u *s;
4344
4345 /* For csh and similar shells need to put two backslashes before '!'.
4346 * One is taken by Vim, one by the shell. */
4347 s = vim_strsave_escaped(p, (char_u *)"!");
4348 vim_free(p);
4349 p = s;
4350 }
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004351#endif
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004352
4353 /* '>' and '+' are special at the start of some commands, e.g. ":edit" and
4354 * ":write". "cd -" has a special meaning. */
Bram Moolenaara9d52e32010-07-31 16:44:19 +02004355 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL)))
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004356 escape_fname(&p);
4357
4358 return p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004359}
4360
4361/*
Bram Moolenaar45360022005-07-21 21:08:21 +00004362 * Put a backslash before the file name in "pp", which is in allocated memory.
4363 */
4364 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004365escape_fname(char_u **pp)
Bram Moolenaar45360022005-07-21 21:08:21 +00004366{
4367 char_u *p;
4368
Bram Moolenaar964b3742019-05-24 18:54:09 +02004369 p = alloc(STRLEN(*pp) + 2);
Bram Moolenaar45360022005-07-21 21:08:21 +00004370 if (p != NULL)
4371 {
4372 p[0] = '\\';
4373 STRCPY(p + 1, *pp);
4374 vim_free(*pp);
4375 *pp = p;
4376 }
4377}
4378
4379/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 * For each file name in files[num_files]:
4381 * If 'orig_pat' starts with "~/", replace the home directory with "~".
4382 */
4383 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004384tilde_replace(
4385 char_u *orig_pat,
4386 int num_files,
4387 char_u **files)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388{
4389 int i;
4390 char_u *p;
4391
4392 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
4393 {
4394 for (i = 0; i < num_files; ++i)
4395 {
4396 p = home_replace_save(NULL, files[i]);
4397 if (p != NULL)
4398 {
4399 vim_free(files[i]);
4400 files[i] = p;
4401 }
4402 }
4403 }
4404}
4405
4406/*
4407 * Show all matches for completion on the command line.
4408 * Returns EXPAND_NOTHING when the character that triggered expansion should
4409 * be inserted like a normal character.
4410 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004412showmatches(expand_T *xp, int wildmenu UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413{
4414#define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m])
4415 int num_files;
4416 char_u **files_found;
4417 int i, j, k;
4418 int maxlen;
4419 int lines;
4420 int columns;
4421 char_u *p;
4422 int lastlen;
4423 int attr;
4424 int showtail;
4425
4426 if (xp->xp_numfiles == -1)
4427 {
4428 set_expand_context(xp);
4429 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos,
4430 &num_files, &files_found);
4431 showtail = expand_showtail(xp);
4432 if (i != EXPAND_OK)
4433 return i;
4434
4435 }
4436 else
4437 {
4438 num_files = xp->xp_numfiles;
4439 files_found = xp->xp_files;
4440 showtail = cmd_showtail;
4441 }
4442
4443#ifdef FEAT_WILDMENU
4444 if (!wildmenu)
4445 {
4446#endif
4447 msg_didany = FALSE; /* lines_left will be set */
4448 msg_start(); /* prepare for paging */
4449 msg_putchar('\n');
4450 out_flush();
4451 cmdline_row = msg_row;
4452 msg_didany = FALSE; /* lines_left will be set again */
4453 msg_start(); /* prepare for paging */
4454#ifdef FEAT_WILDMENU
4455 }
4456#endif
4457
4458 if (got_int)
4459 got_int = FALSE; /* only int. the completion, not the cmd line */
4460#ifdef FEAT_WILDMENU
4461 else if (wildmenu)
Bram Moolenaaref8eb082017-03-30 22:04:55 +02004462 win_redr_status_matches(xp, num_files, files_found, -1, showtail);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463#endif
4464 else
4465 {
4466 /* find the length of the longest file name */
4467 maxlen = 0;
4468 for (i = 0; i < num_files; ++i)
4469 {
4470 if (!showtail && (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004471 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472 || xp->xp_context == EXPAND_BUFFERS))
4473 {
4474 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE);
4475 j = vim_strsize(NameBuff);
4476 }
4477 else
4478 j = vim_strsize(L_SHOWFILE(i));
4479 if (j > maxlen)
4480 maxlen = j;
4481 }
4482
4483 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4484 lines = num_files;
4485 else
4486 {
4487 /* compute the number of columns and lines for the listing */
4488 maxlen += 2; /* two spaces between file names */
4489 columns = ((int)Columns + 2) / maxlen;
4490 if (columns < 1)
4491 columns = 1;
4492 lines = (num_files + columns - 1) / columns;
4493 }
4494
Bram Moolenaar8820b482017-03-16 17:23:31 +01004495 attr = HL_ATTR(HLF_D); /* find out highlighting for directories */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496
4497 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4498 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004499 msg_puts_attr(_("tagname"), HL_ATTR(HLF_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500 msg_clr_eos();
4501 msg_advance(maxlen - 3);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004502 msg_puts_attr(_(" kind file\n"), HL_ATTR(HLF_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 }
4504
4505 /* list the files line by line */
4506 for (i = 0; i < lines; ++i)
4507 {
4508 lastlen = 999;
4509 for (k = i; k < num_files; k += lines)
4510 {
4511 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4512 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01004513 msg_outtrans_attr(files_found[k], HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514 p = files_found[k] + STRLEN(files_found[k]) + 1;
4515 msg_advance(maxlen + 1);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004516 msg_puts((char *)p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517 msg_advance(maxlen + 3);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004518 msg_outtrans_long_attr(p + 2, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004519 break;
4520 }
4521 for (j = maxlen - lastlen; --j >= 0; )
4522 msg_putchar(' ');
4523 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004524 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 || xp->xp_context == EXPAND_BUFFERS)
4526 {
Bram Moolenaarb91e59b2010-03-17 19:13:27 +01004527 /* highlight directories */
Bram Moolenaar63fa5262010-03-23 18:06:52 +01004528 if (xp->xp_numfiles != -1)
4529 {
4530 char_u *halved_slash;
4531 char_u *exp_path;
4532
4533 /* Expansion was done before and special characters
4534 * were escaped, need to halve backslashes. Also
4535 * $HOME has been replaced with ~/. */
4536 exp_path = expand_env_save_opt(files_found[k], TRUE);
4537 halved_slash = backslash_halve_save(
4538 exp_path != NULL ? exp_path : files_found[k]);
4539 j = mch_isdir(halved_slash != NULL ? halved_slash
4540 : files_found[k]);
4541 vim_free(exp_path);
4542 vim_free(halved_slash);
4543 }
4544 else
4545 /* Expansion was done here, file names are literal. */
4546 j = mch_isdir(files_found[k]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547 if (showtail)
4548 p = L_SHOWFILE(k);
4549 else
4550 {
4551 home_replace(NULL, files_found[k], NameBuff, MAXPATHL,
4552 TRUE);
4553 p = NameBuff;
4554 }
4555 }
4556 else
4557 {
4558 j = FALSE;
4559 p = L_SHOWFILE(k);
4560 }
4561 lastlen = msg_outtrans_attr(p, j ? attr : 0);
4562 }
4563 if (msg_col > 0) /* when not wrapped around */
4564 {
4565 msg_clr_eos();
4566 msg_putchar('\n');
4567 }
4568 out_flush(); /* show one line at a time */
4569 if (got_int)
4570 {
4571 got_int = FALSE;
4572 break;
4573 }
4574 }
4575
4576 /*
4577 * we redraw the command below the lines that we have just listed
4578 * This is a bit tricky, but it saves a lot of screen updating.
4579 */
4580 cmdline_row = msg_row; /* will put it back later */
4581 }
4582
4583 if (xp->xp_numfiles == -1)
4584 FreeWild(num_files, files_found);
4585
4586 return EXPAND_OK;
4587}
4588
4589/*
4590 * Private gettail for showmatches() (and win_redr_status_matches()):
4591 * Find tail of file name path, but ignore trailing "/".
4592 */
4593 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004594sm_gettail(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595{
4596 char_u *p;
4597 char_u *t = s;
4598 int had_sep = FALSE;
4599
4600 for (p = s; *p != NUL; )
4601 {
4602 if (vim_ispathsep(*p)
4603#ifdef BACKSLASH_IN_FILENAME
4604 && !rem_backslash(p)
4605#endif
4606 )
4607 had_sep = TRUE;
4608 else if (had_sep)
4609 {
4610 t = p;
4611 had_sep = FALSE;
4612 }
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004613 MB_PTR_ADV(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 }
4615 return t;
4616}
4617
4618/*
4619 * Return TRUE if we only need to show the tail of completion matches.
4620 * When not completing file names or there is a wildcard in the path FALSE is
4621 * returned.
4622 */
4623 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004624expand_showtail(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625{
4626 char_u *s;
4627 char_u *end;
4628
4629 /* When not completing file names a "/" may mean something different. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004630 if (xp->xp_context != EXPAND_FILES
4631 && xp->xp_context != EXPAND_SHELLCMD
4632 && xp->xp_context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633 return FALSE;
4634
4635 end = gettail(xp->xp_pattern);
4636 if (end == xp->xp_pattern) /* there is no path separator */
4637 return FALSE;
4638
4639 for (s = xp->xp_pattern; s < end; s++)
4640 {
4641 /* Skip escaped wildcards. Only when the backslash is not a path
4642 * separator, on DOS the '*' "path\*\file" must not be skipped. */
4643 if (rem_backslash(s))
4644 ++s;
4645 else if (vim_strchr((char_u *)"*?[", *s) != NULL)
4646 return FALSE;
4647 }
4648 return TRUE;
4649}
4650
4651/*
4652 * Prepare a string for expansion.
4653 * When expanding file names: The string will be used with expand_wildcards().
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004654 * Copy "fname[len]" into allocated memory and add a '*' at the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655 * When expanding other names: The string will be used with regcomp(). Copy
4656 * the name into allocated memory and prepend "^".
4657 */
4658 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004659addstar(
4660 char_u *fname,
4661 int len,
4662 int context) /* EXPAND_FILES etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663{
4664 char_u *retval;
4665 int i, j;
4666 int new_len;
4667 char_u *tail;
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004668 int ends_in_star;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004670 if (context != EXPAND_FILES
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004671 && context != EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004672 && context != EXPAND_SHELLCMD
4673 && context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674 {
4675 /*
4676 * Matching will be done internally (on something other than files).
4677 * So we convert the file-matching-type wildcards into our kind for
4678 * use with vim_regcomp(). First work out how long it will be:
4679 */
4680
4681 /* For help tags the translation is done in find_help_tags().
4682 * For a tag pattern starting with "/" no translation is needed. */
4683 if (context == EXPAND_HELP
4684 || context == EXPAND_COLORS
4685 || context == EXPAND_COMPILER
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004686 || context == EXPAND_OWNSYNTAX
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004687 || context == EXPAND_FILETYPE
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01004688 || context == EXPAND_PACKADD
Bram Moolenaarba47b512017-01-24 21:18:19 +01004689 || ((context == EXPAND_TAGS_LISTFILES
4690 || context == EXPAND_TAGS)
4691 && fname[0] == '/'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692 retval = vim_strnsave(fname, len);
4693 else
4694 {
4695 new_len = len + 2; /* +2 for '^' at start, NUL at end */
4696 for (i = 0; i < len; i++)
4697 {
4698 if (fname[i] == '*' || fname[i] == '~')
4699 new_len++; /* '*' needs to be replaced by ".*"
4700 '~' needs to be replaced by "\~" */
4701
4702 /* Buffer names are like file names. "." should be literal */
4703 if (context == EXPAND_BUFFERS && fname[i] == '.')
4704 new_len++; /* "." becomes "\." */
4705
4706 /* Custom expansion takes care of special things, match
4707 * backslashes literally (perhaps also for other types?) */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004708 if ((context == EXPAND_USER_DEFINED
4709 || context == EXPAND_USER_LIST) && fname[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004710 new_len++; /* '\' becomes "\\" */
4711 }
4712 retval = alloc(new_len);
4713 if (retval != NULL)
4714 {
4715 retval[0] = '^';
4716 j = 1;
4717 for (i = 0; i < len; i++, j++)
4718 {
4719 /* Skip backslash. But why? At least keep it for custom
4720 * expansion. */
4721 if (context != EXPAND_USER_DEFINED
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004722 && context != EXPAND_USER_LIST
4723 && fname[i] == '\\'
4724 && ++i == len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725 break;
4726
4727 switch (fname[i])
4728 {
4729 case '*': retval[j++] = '.';
4730 break;
4731 case '~': retval[j++] = '\\';
4732 break;
4733 case '?': retval[j] = '.';
4734 continue;
4735 case '.': if (context == EXPAND_BUFFERS)
4736 retval[j++] = '\\';
4737 break;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004738 case '\\': if (context == EXPAND_USER_DEFINED
4739 || context == EXPAND_USER_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 retval[j++] = '\\';
4741 break;
4742 }
4743 retval[j] = fname[i];
4744 }
4745 retval[j] = NUL;
4746 }
4747 }
4748 }
4749 else
4750 {
4751 retval = alloc(len + 4);
4752 if (retval != NULL)
4753 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004754 vim_strncpy(retval, fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755
4756 /*
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004757 * Don't add a star to *, ~, ~user, $var or `cmd`.
4758 * * would become **, which walks the whole tree.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759 * ~ would be at the start of the file name, but not the tail.
4760 * $ could be anywhere in the tail.
4761 * ` could be anywhere in the file name.
Bram Moolenaar066b6222008-01-04 14:17:47 +00004762 * When the name ends in '$' don't add a star, remove the '$'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004763 */
4764 tail = gettail(retval);
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004765 ends_in_star = (len > 0 && retval[len - 1] == '*');
4766#ifndef BACKSLASH_IN_FILENAME
4767 for (i = len - 2; i >= 0; --i)
4768 {
4769 if (retval[i] != '\\')
4770 break;
4771 ends_in_star = !ends_in_star;
4772 }
4773#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774 if ((*retval != '~' || tail != retval)
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004775 && !ends_in_star
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776 && vim_strchr(tail, '$') == NULL
4777 && vim_strchr(retval, '`') == NULL)
4778 retval[len++] = '*';
Bram Moolenaar066b6222008-01-04 14:17:47 +00004779 else if (len > 0 && retval[len - 1] == '$')
4780 --len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781 retval[len] = NUL;
4782 }
4783 }
4784 return retval;
4785}
4786
4787/*
4788 * Must parse the command line so far to work out what context we are in.
4789 * Completion can then be done based on that context.
4790 * This routine sets the variables:
4791 * xp->xp_pattern The start of the pattern to be expanded within
4792 * the command line (ends at the cursor).
4793 * xp->xp_context The type of thing to expand. Will be one of:
4794 *
4795 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on
4796 * the command line, like an unknown command. Caller
4797 * should beep.
4798 * EXPAND_NOTHING Unrecognised context for completion, use char like
4799 * a normal char, rather than for completion. eg
4800 * :s/^I/
4801 * EXPAND_COMMANDS Cursor is still touching the command, so complete
4802 * it.
4803 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands.
Bram Moolenaar8071cb22019-07-12 17:58:01 +02004804 * EXPAND_FILES After command with EX_XFILE set, or after setting
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805 * with P_EXPAND set. eg :e ^I, :w>>^I
4806 * EXPAND_DIRECTORIES In some cases this is used instead of the latter
4807 * when we know only directories are of interest. eg
4808 * :set dir=^I
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004809 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810 * EXPAND_SETTINGS Complete variable names. eg :set d^I
4811 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I
4812 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I
4813 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect
4814 * EXPAND_HELP Complete tags from the file 'helpfile'/tags
4815 * EXPAND_EVENTS Complete event names
4816 * EXPAND_SYNTAX Complete :syntax command arguments
4817 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names
4818 * EXPAND_AUGROUP Complete autocommand group names
4819 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I
4820 * EXPAND_MAPPINGS Complete mapping and abbreviation names,
4821 * eg :unmap a^I , :cunab x^I
4822 * EXPAND_FUNCTIONS Complete internal or user defined function names,
4823 * eg :call sub^I
4824 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I
4825 * EXPAND_EXPRESSION Complete internal or user defined function/variable
4826 * names in expressions, eg :while s^I
4827 * EXPAND_ENV_VARS Complete environment variable names
Bram Moolenaar24305862012-08-15 14:05:05 +02004828 * EXPAND_USER Complete user names
Bram Moolenaar071d4272004-06-13 20:20:40 +00004829 */
4830 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004831set_expand_context(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004833 /* only expansion for ':', '>' and '=' command-lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834 if (ccline.cmdfirstc != ':'
4835#ifdef FEAT_EVAL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004836 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '='
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004837 && !ccline.input_fn
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838#endif
4839 )
4840 {
4841 xp->xp_context = EXPAND_NOTHING;
4842 return;
4843 }
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004844 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845}
4846
4847 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004848set_cmd_context(
4849 expand_T *xp,
4850 char_u *str, /* start of command line */
4851 int len, /* length of command line (excl. NUL) */
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004852 int col, /* position of cursor */
4853 int use_ccline UNUSED) /* use ccline for info */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854{
4855 int old_char = NUL;
4856 char_u *nextcomm;
4857
4858 /*
4859 * Avoid a UMR warning from Purify, only save the character if it has been
4860 * written before.
4861 */
4862 if (col < len)
4863 old_char = str[col];
4864 str[col] = NUL;
4865 nextcomm = str;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004866
4867#ifdef FEAT_EVAL
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004868 if (use_ccline && ccline.cmdfirstc == '=')
Bram Moolenaar4f688582007-07-24 12:34:30 +00004869 {
4870# ifdef FEAT_CMDL_COMPL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004871 /* pass CMD_SIZE because there is no real command */
4872 set_context_for_expression(xp, str, CMD_SIZE);
Bram Moolenaar4f688582007-07-24 12:34:30 +00004873# endif
4874 }
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004875 else if (use_ccline && ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004876 {
4877 xp->xp_context = ccline.xp_context;
4878 xp->xp_pattern = ccline.cmdbuff;
Bram Moolenaarac9fb182019-04-27 13:04:13 +02004879# if defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004880 xp->xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004881# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004882 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004883 else
4884#endif
4885 while (nextcomm != NULL)
4886 nextcomm = set_one_cmd_context(xp, nextcomm);
4887
Bram Moolenaara4c8dcb2013-06-30 12:21:24 +02004888 /* Store the string here so that call_user_expand_func() can get to them
4889 * easily. */
4890 xp->xp_line = str;
4891 xp->xp_col = col;
4892
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893 str[col] = old_char;
4894}
4895
4896/*
4897 * Expand the command line "str" from context "xp".
4898 * "xp" must have been set by set_cmd_context().
4899 * xp->xp_pattern points into "str", to where the text that is to be expanded
4900 * starts.
4901 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the
4902 * cursor.
4903 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the
4904 * key that triggered expansion literally.
4905 * Returns EXPAND_OK otherwise.
4906 */
4907 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004908expand_cmdline(
4909 expand_T *xp,
4910 char_u *str, /* start of command line */
4911 int col, /* position of cursor */
4912 int *matchcount, /* return: nr of matches */
4913 char_u ***matches) /* return: array of pointers to matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914{
4915 char_u *file_str = NULL;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004916 int options = WILD_ADD_SLASH|WILD_SILENT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917
4918 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
4919 {
4920 beep_flush();
4921 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */
4922 }
4923 if (xp->xp_context == EXPAND_NOTHING)
4924 {
4925 /* Caller can use the character as a normal char instead */
4926 return EXPAND_NOTHING;
4927 }
4928
4929 /* add star to file name, or convert to regexp if not exp. files. */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004930 xp->xp_pattern_len = (int)(str + col - xp->xp_pattern);
4931 file_str = addstar(xp->xp_pattern, xp->xp_pattern_len, xp->xp_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 if (file_str == NULL)
4933 return EXPAND_UNSUCCESSFUL;
4934
Bram Moolenaar94950a92010-12-02 16:01:29 +01004935 if (p_wic)
4936 options += WILD_ICASE;
4937
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 /* find all files that match the description */
Bram Moolenaar94950a92010-12-02 16:01:29 +01004939 if (ExpandFromContext(xp, file_str, matchcount, matches, options) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 {
4941 *matchcount = 0;
4942 *matches = NULL;
4943 }
4944 vim_free(file_str);
4945
4946 return EXPAND_OK;
4947}
4948
4949#ifdef FEAT_MULTI_LANG
4950/*
Bram Moolenaar61264d92016-03-28 19:59:02 +02004951 * Cleanup matches for help tags:
4952 * Remove "@ab" if the top of 'helplang' is "ab" and the language of the first
4953 * tag matches it. Otherwise remove "@en" if "en" is the only language.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004956cleanup_help_tags(int num_file, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957{
4958 int i, j;
4959 int len;
Bram Moolenaar61264d92016-03-28 19:59:02 +02004960 char_u buf[4];
4961 char_u *p = buf;
4962
Bram Moolenaar89c79b92016-05-05 17:18:41 +02004963 if (p_hlg[0] != NUL && (p_hlg[0] != 'e' || p_hlg[1] != 'n'))
Bram Moolenaar61264d92016-03-28 19:59:02 +02004964 {
4965 *p++ = '@';
4966 *p++ = p_hlg[0];
4967 *p++ = p_hlg[1];
4968 }
4969 *p = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970
4971 for (i = 0; i < num_file; ++i)
4972 {
4973 len = (int)STRLEN(file[i]) - 3;
Bram Moolenaar61264d92016-03-28 19:59:02 +02004974 if (len <= 0)
4975 continue;
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02004976 if (STRCMP(file[i] + len, "@en") == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 {
4978 /* Sorting on priority means the same item in another language may
4979 * be anywhere. Search all items for a match up to the "@en". */
4980 for (j = 0; j < num_file; ++j)
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02004981 if (j != i && (int)STRLEN(file[j]) == len + 3
4982 && STRNCMP(file[i], file[j], len + 1) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 break;
4984 if (j == num_file)
Bram Moolenaar89c79b92016-05-05 17:18:41 +02004985 /* item only exists with @en, remove it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 file[i][len] = NUL;
4987 }
4988 }
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02004989
4990 if (*buf != NUL)
4991 for (i = 0; i < num_file; ++i)
4992 {
4993 len = (int)STRLEN(file[i]) - 3;
4994 if (len <= 0)
4995 continue;
4996 if (STRCMP(file[i] + len, buf) == 0)
4997 {
4998 /* remove the default language */
4999 file[i][len] = NUL;
5000 }
5001 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002}
5003#endif
5004
5005/*
5006 * Do the expansion based on xp->xp_context and "pat".
5007 */
5008 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005009ExpandFromContext(
5010 expand_T *xp,
5011 char_u *pat,
5012 int *num_file,
5013 char_u ***file,
Bram Moolenaar50f91d22019-08-02 19:52:15 +02005014 int options) // WILD_ flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015{
5016#ifdef FEAT_CMDL_COMPL
5017 regmatch_T regmatch;
5018#endif
5019 int ret;
5020 int flags;
5021
5022 flags = EW_DIR; /* include directories */
5023 if (options & WILD_LIST_NOTFOUND)
5024 flags |= EW_NOTFOUND;
5025 if (options & WILD_ADD_SLASH)
5026 flags |= EW_ADDSLASH;
5027 if (options & WILD_KEEP_ALL)
5028 flags |= EW_KEEPALL;
5029 if (options & WILD_SILENT)
5030 flags |= EW_SILENT;
Bram Moolenaara245bc72015-03-05 19:35:25 +01005031 if (options & WILD_ALLLINKS)
5032 flags |= EW_ALLLINKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033
Bram Moolenaarcc448b32010-07-14 16:52:17 +02005034 if (xp->xp_context == EXPAND_FILES
5035 || xp->xp_context == EXPAND_DIRECTORIES
5036 || xp->xp_context == EXPAND_FILES_IN_PATH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037 {
5038 /*
5039 * Expand file or directory names.
5040 */
5041 int free_pat = FALSE;
5042 int i;
5043
5044 /* for ":set path=" and ":set tags=" halve backslashes for escaped
5045 * space */
5046 if (xp->xp_backslash != XP_BS_NONE)
5047 {
5048 free_pat = TRUE;
5049 pat = vim_strsave(pat);
5050 for (i = 0; pat[i]; ++i)
5051 if (pat[i] == '\\')
5052 {
5053 if (xp->xp_backslash == XP_BS_THREE
5054 && pat[i + 1] == '\\'
5055 && pat[i + 2] == '\\'
5056 && pat[i + 3] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00005057 STRMOVE(pat + i, pat + i + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 if (xp->xp_backslash == XP_BS_ONE
5059 && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00005060 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 }
5062 }
5063
5064 if (xp->xp_context == EXPAND_FILES)
5065 flags |= EW_FILE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02005066 else if (xp->xp_context == EXPAND_FILES_IN_PATH)
5067 flags |= (EW_FILE | EW_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 else
5069 flags = (flags | EW_DIR) & ~EW_FILE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01005070 if (options & WILD_ICASE)
5071 flags |= EW_ICASE;
5072
Bram Moolenaard7834d32009-12-02 16:14:36 +00005073 /* Expand wildcards, supporting %:h and the like. */
5074 ret = expand_wildcards_eval(&pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075 if (free_pat)
5076 vim_free(pat);
Bram Moolenaarac3150d2019-07-28 16:36:39 +02005077#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar50f91d22019-08-02 19:52:15 +02005078 if (p_csl[0] != NUL && (options & WILD_IGNORE_COMPLETESLASH) == 0)
Bram Moolenaarac3150d2019-07-28 16:36:39 +02005079 {
5080 int i;
5081
5082 for (i = 0; i < *num_file; ++i)
5083 {
5084 char_u *ptr = (*file)[i];
5085
5086 while (*ptr != NUL)
5087 {
5088 if (p_csl[0] == 's' && *ptr == '\\')
5089 *ptr = '/';
5090 else if (p_csl[0] == 'b' && *ptr == '/')
5091 *ptr = '\\';
5092 ptr += (*mb_ptr2len)(ptr);
5093 }
5094 }
5095 }
5096#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 return ret;
5098 }
5099
5100 *file = (char_u **)"";
5101 *num_file = 0;
5102 if (xp->xp_context == EXPAND_HELP)
5103 {
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00005104 /* With an empty argument we would get all the help tags, which is
5105 * very slow. Get matches for "help" instead. */
5106 if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat,
5107 num_file, file, FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108 {
5109#ifdef FEAT_MULTI_LANG
5110 cleanup_help_tags(*num_file, *file);
5111#endif
5112 return OK;
5113 }
5114 return FAIL;
5115 }
5116
5117#ifndef FEAT_CMDL_COMPL
5118 return FAIL;
5119#else
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005120 if (xp->xp_context == EXPAND_SHELLCMD)
5121 return expand_shellcmd(pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005122 if (xp->xp_context == EXPAND_OLD_SETTING)
5123 return ExpandOldSetting(num_file, file);
5124 if (xp->xp_context == EXPAND_BUFFERS)
5125 return ExpandBufnames(pat, num_file, file, options);
5126 if (xp->xp_context == EXPAND_TAGS
5127 || xp->xp_context == EXPAND_TAGS_LISTFILES)
5128 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file);
5129 if (xp->xp_context == EXPAND_COLORS)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005130 {
5131 char *directories[] = {"colors", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005132 return ExpandRTDir(pat, DIP_START + DIP_OPT, num_file, file,
5133 directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005134 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 if (xp->xp_context == EXPAND_COMPILER)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005136 {
Bram Moolenaara627c962011-09-30 16:23:32 +02005137 char *directories[] = {"compiler", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005138 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005139 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005140 if (xp->xp_context == EXPAND_OWNSYNTAX)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005141 {
5142 char *directories[] = {"syntax", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005143 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005144 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005145 if (xp->xp_context == EXPAND_FILETYPE)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005146 {
5147 char *directories[] = {"syntax", "indent", "ftplugin", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005148 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005149 }
Bram Moolenaarac9fb182019-04-27 13:04:13 +02005150# if defined(FEAT_EVAL)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005151 if (xp->xp_context == EXPAND_USER_LIST)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00005152 return ExpandUserList(xp, num_file, file);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005153# endif
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01005154 if (xp->xp_context == EXPAND_PACKADD)
5155 return ExpandPackAddDir(pat, num_file, file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156
5157 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
5158 if (regmatch.regprog == NULL)
5159 return FAIL;
5160
5161 /* set ignore-case according to p_ic, p_scs and pat */
5162 regmatch.rm_ic = ignorecase(pat);
5163
5164 if (xp->xp_context == EXPAND_SETTINGS
5165 || xp->xp_context == EXPAND_BOOL_SETTINGS)
5166 ret = ExpandSettings(xp, &regmatch, num_file, file);
5167 else if (xp->xp_context == EXPAND_MAPPINGS)
5168 ret = ExpandMappings(&regmatch, num_file, file);
Bram Moolenaarac9fb182019-04-27 13:04:13 +02005169# if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170 else if (xp->xp_context == EXPAND_USER_DEFINED)
5171 ret = ExpandUserDefined(xp, &regmatch, num_file, file);
5172# endif
5173 else
5174 {
5175 static struct expgen
5176 {
5177 int context;
Bram Moolenaard99df422016-01-29 23:20:40 +01005178 char_u *((*func)(expand_T *, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179 int ic;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005180 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181 } tab[] =
5182 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005183 {EXPAND_COMMANDS, get_command_name, FALSE, TRUE},
5184 {EXPAND_BEHAVE, get_behave_arg, TRUE, TRUE},
Bram Moolenaarcae92dc2017-08-06 15:22:15 +02005185 {EXPAND_MAPCLEAR, get_mapclear_arg, TRUE, TRUE},
Bram Moolenaar9e507ca2016-10-15 15:39:39 +02005186 {EXPAND_MESSAGES, get_messages_arg, TRUE, TRUE},
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005187 {EXPAND_HISTORY, get_history_arg, TRUE, TRUE},
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005188 {EXPAND_USER_COMMANDS, get_user_commands, FALSE, TRUE},
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005189 {EXPAND_USER_ADDR_TYPE, get_user_cmd_addr_type, FALSE, TRUE},
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005190 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE, TRUE},
5191 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE, TRUE},
5192 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193#ifdef FEAT_EVAL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005194 {EXPAND_USER_VARS, get_user_var_name, FALSE, TRUE},
5195 {EXPAND_FUNCTIONS, get_function_name, FALSE, TRUE},
5196 {EXPAND_USER_FUNC, get_user_func_name, FALSE, TRUE},
5197 {EXPAND_EXPRESSION, get_expr_name, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198#endif
5199#ifdef FEAT_MENU
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005200 {EXPAND_MENUS, get_menu_name, FALSE, TRUE},
5201 {EXPAND_MENUNAMES, get_menu_names, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005202#endif
5203#ifdef FEAT_SYN_HL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005204 {EXPAND_SYNTAX, get_syntax_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205#endif
Bram Moolenaarcd9c4622013-06-08 15:24:48 +02005206#ifdef FEAT_PROFILE
5207 {EXPAND_SYNTIME, get_syntime_arg, TRUE, TRUE},
5208#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005209 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE, TRUE},
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005210 {EXPAND_EVENTS, get_event_name, TRUE, TRUE},
5211 {EXPAND_AUGROUP, get_augroup_name, TRUE, TRUE},
Bram Moolenaarf4580d82009-03-18 11:52:53 +00005212#ifdef FEAT_CSCOPE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005213 {EXPAND_CSCOPE, get_cscope_name, TRUE, TRUE},
Bram Moolenaarf4580d82009-03-18 11:52:53 +00005214#endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00005215#ifdef FEAT_SIGNS
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005216 {EXPAND_SIGN, get_sign_name, TRUE, TRUE},
Bram Moolenaar3c65e312009-04-29 16:47:23 +00005217#endif
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01005218#ifdef FEAT_PROFILE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005219 {EXPAND_PROFILE, get_profile_name, TRUE, TRUE},
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01005220#endif
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005221#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005222 {EXPAND_LANGUAGE, get_lang_arg, TRUE, FALSE},
5223 {EXPAND_LOCALES, get_locales, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005224#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005225 {EXPAND_ENV_VARS, get_env_name, TRUE, TRUE},
Bram Moolenaar24305862012-08-15 14:05:05 +02005226 {EXPAND_USER, get_users, TRUE, FALSE},
Bram Moolenaarcd43eff2018-03-29 15:55:38 +02005227 {EXPAND_ARGLIST, get_arglist_name, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228 };
5229 int i;
5230
5231 /*
5232 * Find a context in the table and call the ExpandGeneric() with the
5233 * right function to do the expansion.
5234 */
5235 ret = FAIL;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00005236 for (i = 0; i < (int)(sizeof(tab) / sizeof(struct expgen)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237 if (xp->xp_context == tab[i].context)
5238 {
5239 if (tab[i].ic)
5240 regmatch.rm_ic = TRUE;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005241 ret = ExpandGeneric(xp, &regmatch, num_file, file,
Bram Moolenaare79abdd2012-06-29 13:44:41 +02005242 tab[i].func, tab[i].escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005243 break;
5244 }
5245 }
5246
Bram Moolenaar473de612013-06-08 18:19:48 +02005247 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248
5249 return ret;
5250#endif /* FEAT_CMDL_COMPL */
5251}
5252
5253#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5254/*
5255 * Expand a list of names.
5256 *
5257 * Generic function for command line completion. It calls a function to
5258 * obtain strings, one by one. The strings are matched against a regexp
5259 * program. Matching strings are copied into an array, which is returned.
5260 *
5261 * Returns OK when no problems encountered, FAIL for error (out of memory).
5262 */
5263 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005264ExpandGeneric(
5265 expand_T *xp,
5266 regmatch_T *regmatch,
5267 int *num_file,
5268 char_u ***file,
5269 char_u *((*func)(expand_T *, int)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270 /* returns a string from the list */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005271 int escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272{
5273 int i;
5274 int count = 0;
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005275 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 char_u *str;
5277
5278 /* do this loop twice:
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005279 * round == 0: count the number of matching names
5280 * round == 1: copy the matching names into allocated memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281 */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005282 for (round = 0; round <= 1; ++round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283 {
5284 for (i = 0; ; ++i)
5285 {
5286 str = (*func)(xp, i);
5287 if (str == NULL) /* end of list */
5288 break;
5289 if (*str == NUL) /* skip empty strings */
5290 continue;
5291
5292 if (vim_regexec(regmatch, str, (colnr_T)0))
5293 {
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005294 if (round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005296 if (escaped)
5297 str = vim_strsave_escaped(str, (char_u *)" \t\\.");
5298 else
5299 str = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300 (*file)[count] = str;
5301#ifdef FEAT_MENU
5302 if (func == get_menu_names && str != NULL)
5303 {
5304 /* test for separator added by get_menu_names() */
5305 str += STRLEN(str) - 1;
5306 if (*str == '\001')
5307 *str = '.';
5308 }
5309#endif
5310 }
5311 ++count;
5312 }
5313 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005314 if (round == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315 {
5316 if (count == 0)
5317 return OK;
5318 *num_file = count;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005319 *file = ALLOC_MULT(char_u *, count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005320 if (*file == NULL)
5321 {
5322 *file = (char_u **)"";
5323 return FAIL;
5324 }
5325 count = 0;
5326 }
5327 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005328
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005329 /* Sort the results. Keep menu's in the specified order. */
5330 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02005331 {
5332 if (xp->xp_context == EXPAND_EXPRESSION
5333 || xp->xp_context == EXPAND_FUNCTIONS
5334 || xp->xp_context == EXPAND_USER_FUNC)
5335 /* <SNR> functions should be sorted to the end. */
5336 qsort((void *)*file, (size_t)*num_file, sizeof(char_u *),
5337 sort_func_compare);
5338 else
5339 sort_strings(*file, *num_file);
5340 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005341
Bram Moolenaar4f688582007-07-24 12:34:30 +00005342#ifdef FEAT_CMDL_COMPL
5343 /* Reset the variables used for special highlight names expansion, so that
5344 * they don't show up when getting normal highlight names by ID. */
5345 reset_expand_highlight();
5346#endif
5347
Bram Moolenaar071d4272004-06-13 20:20:40 +00005348 return OK;
5349}
5350
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005351/*
5352 * Complete a shell command.
5353 * Returns FAIL or OK;
5354 */
5355 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005356expand_shellcmd(
5357 char_u *filepat, /* pattern to match with command names */
5358 int *num_file, /* return: number of matches */
5359 char_u ***file, /* return: array with matches */
5360 int flagsarg) /* EW_ flags */
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005361{
5362 char_u *pat;
5363 int i;
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005364 char_u *path = NULL;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005365 int mustfree = FALSE;
5366 garray_T ga;
5367 char_u *buf = alloc(MAXPATHL);
5368 size_t l;
5369 char_u *s, *e;
5370 int flags = flagsarg;
5371 int ret;
Bram Moolenaarb5971142015-03-21 17:32:19 +01005372 int did_curdir = FALSE;
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005373 hashtab_T found_ht;
5374 hashitem_T *hi;
5375 hash_T hash;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005376
5377 if (buf == NULL)
5378 return FAIL;
5379
5380 /* for ":set path=" and ":set tags=" halve backslashes for escaped
5381 * space */
5382 pat = vim_strsave(filepat);
5383 for (i = 0; pat[i]; ++i)
5384 if (pat[i] == '\\' && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00005385 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005386
Bram Moolenaarb5971142015-03-21 17:32:19 +01005387 flags |= EW_FILE | EW_EXEC | EW_SHELLCMD;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005388
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005389 if (pat[0] == '.' && (vim_ispathsep(pat[1])
5390 || (pat[1] == '.' && vim_ispathsep(pat[2]))))
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005391 path = (char_u *)".";
5392 else
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01005393 {
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005394 /* For an absolute name we don't use $PATH. */
5395 if (!mch_isFullName(pat))
5396 path = vim_getenv((char_u *)"PATH", &mustfree);
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01005397 if (path == NULL)
5398 path = (char_u *)"";
5399 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005400
5401 /*
5402 * Go over all directories in $PATH. Expand matches in that directory and
Bram Moolenaarb5971142015-03-21 17:32:19 +01005403 * collect them in "ga". When "." is not in $PATH also expand for the
5404 * current directory, to find "subdir/cmd".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005405 */
5406 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005407 hash_init(&found_ht);
Bram Moolenaarb5971142015-03-21 17:32:19 +01005408 for (s = path; ; s = e)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005409 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005410#if defined(MSWIN)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005411 e = vim_strchr(s, ';');
5412#else
5413 e = vim_strchr(s, ':');
5414#endif
5415 if (e == NULL)
5416 e = s + STRLEN(s);
5417
Bram Moolenaar6ab9e422018-07-28 19:20:13 +02005418 if (*s == NUL)
5419 {
5420 if (did_curdir)
5421 break;
5422 // Find directories in the current directory, path is empty.
5423 did_curdir = TRUE;
5424 flags |= EW_DIR;
5425 }
5426 else if (STRNCMP(s, ".", (int)(e - s)) == 0)
5427 {
5428 did_curdir = TRUE;
5429 flags |= EW_DIR;
5430 }
5431 else
5432 // Do not match directories inside a $PATH item.
5433 flags &= ~EW_DIR;
5434
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005435 l = e - s;
5436 if (l > MAXPATHL - 5)
5437 break;
5438 vim_strncpy(buf, s, l);
5439 add_pathsep(buf);
5440 l = STRLEN(buf);
5441 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l);
5442
5443 /* Expand matches in one directory of $PATH. */
5444 ret = expand_wildcards(1, &buf, num_file, file, flags);
5445 if (ret == OK)
5446 {
5447 if (ga_grow(&ga, *num_file) == FAIL)
5448 FreeWild(*num_file, *file);
5449 else
5450 {
5451 for (i = 0; i < *num_file; ++i)
5452 {
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005453 char_u *name = (*file)[i];
5454
5455 if (STRLEN(name) > l)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005456 {
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005457 // Check if this name was already found.
5458 hash = hash_hash(name + l);
5459 hi = hash_lookup(&found_ht, name + l, hash);
5460 if (HASHITEM_EMPTY(hi))
5461 {
5462 // Remove the path that was prepended.
5463 STRMOVE(name, name + l);
5464 ((char_u **)ga.ga_data)[ga.ga_len++] = name;
5465 hash_add_item(&found_ht, hi, name, hash);
5466 name = NULL;
5467 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005468 }
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005469 vim_free(name);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005470 }
5471 vim_free(*file);
5472 }
5473 }
5474 if (*e != NUL)
5475 ++e;
5476 }
5477 *file = ga.ga_data;
5478 *num_file = ga.ga_len;
5479
5480 vim_free(buf);
5481 vim_free(pat);
5482 if (mustfree)
5483 vim_free(path);
Bram Moolenaar62fe66f2018-05-22 16:58:47 +02005484 hash_clear(&found_ht);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005485 return OK;
5486}
5487
5488
Bram Moolenaarac9fb182019-04-27 13:04:13 +02005489# if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490/*
Bram Moolenaarb544f3c2017-02-23 19:03:28 +01005491 * Call "user_expand_func()" to invoke a user defined Vim script function and
5492 * return the result (either a string or a List).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493 */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005494 static void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005495call_user_expand_func(
Bram Moolenaarded27a12018-08-01 19:06:03 +02005496 void *(*user_expand_func)(char_u *, int, typval_T *),
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005497 expand_T *xp,
5498 int *num_file,
5499 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005500{
Bram Moolenaar673b9a32013-06-30 22:43:27 +02005501 int keep = 0;
Bram Moolenaarffa96842018-06-12 22:05:14 +02005502 typval_T args[4];
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005503 sctx_T save_current_sctx = current_sctx;
Bram Moolenaarffa96842018-06-12 22:05:14 +02005504 char_u *pat = NULL;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005505 void *ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506
Bram Moolenaarb7515462013-06-29 12:58:33 +02005507 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0' || xp->xp_line == NULL)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005508 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509 *num_file = 0;
5510 *file = NULL;
5511
Bram Moolenaarb7515462013-06-29 12:58:33 +02005512 if (ccline.cmdbuff != NULL)
Bram Moolenaar21669c02008-01-18 12:16:16 +00005513 {
Bram Moolenaar21669c02008-01-18 12:16:16 +00005514 keep = ccline.cmdbuff[ccline.cmdlen];
5515 ccline.cmdbuff[ccline.cmdlen] = 0;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005516 }
Bram Moolenaarb7515462013-06-29 12:58:33 +02005517
Bram Moolenaarffa96842018-06-12 22:05:14 +02005518 pat = vim_strnsave(xp->xp_pattern, xp->xp_pattern_len);
5519
5520 args[0].v_type = VAR_STRING;
5521 args[0].vval.v_string = pat;
5522 args[1].v_type = VAR_STRING;
5523 args[1].vval.v_string = xp->xp_line;
5524 args[2].v_type = VAR_NUMBER;
5525 args[2].vval.v_number = xp->xp_col;
5526 args[3].v_type = VAR_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005528 current_sctx = xp->xp_script_ctx;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005529
Bram Moolenaarded27a12018-08-01 19:06:03 +02005530 ret = user_expand_func(xp->xp_arg, 3, args);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005531
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005532 current_sctx = save_current_sctx;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005533 if (ccline.cmdbuff != NULL)
5534 ccline.cmdbuff[ccline.cmdlen] = keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005535
Bram Moolenaarffa96842018-06-12 22:05:14 +02005536 vim_free(pat);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005537 return ret;
5538}
5539
5540/*
5541 * Expand names with a function defined by the user.
5542 */
5543 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005544ExpandUserDefined(
5545 expand_T *xp,
5546 regmatch_T *regmatch,
5547 int *num_file,
5548 char_u ***file)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005549{
5550 char_u *retstr;
5551 char_u *s;
5552 char_u *e;
Bram Moolenaar71a43c02018-02-11 15:20:20 +01005553 int keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005554 garray_T ga;
Bram Moolenaar71a43c02018-02-11 15:20:20 +01005555 int skip;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005556
5557 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file);
5558 if (retstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559 return FAIL;
5560
5561 ga_init2(&ga, (int)sizeof(char *), 3);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005562 for (s = retstr; *s != NUL; s = e)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 {
5564 e = vim_strchr(s, '\n');
5565 if (e == NULL)
5566 e = s + STRLEN(s);
5567 keep = *e;
Bram Moolenaar71a43c02018-02-11 15:20:20 +01005568 *e = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569
Bram Moolenaar71a43c02018-02-11 15:20:20 +01005570 skip = xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0;
5571 *e = keep;
5572
5573 if (!skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574 {
Bram Moolenaar71a43c02018-02-11 15:20:20 +01005575 if (ga_grow(&ga, 1) == FAIL)
5576 break;
5577 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s));
5578 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579 }
5580
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581 if (*e != NUL)
5582 ++e;
5583 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005584 vim_free(retstr);
5585 *file = ga.ga_data;
5586 *num_file = ga.ga_len;
5587 return OK;
5588}
5589
5590/*
5591 * Expand names with a list returned by a function defined by the user.
5592 */
5593 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005594ExpandUserList(
5595 expand_T *xp,
5596 int *num_file,
5597 char_u ***file)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005598{
5599 list_T *retlist;
5600 listitem_T *li;
5601 garray_T ga;
5602
5603 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file);
5604 if (retlist == NULL)
5605 return FAIL;
5606
5607 ga_init2(&ga, (int)sizeof(char *), 3);
5608 /* Loop over the items in the list. */
5609 for (li = retlist->lv_first; li != NULL; li = li->li_next)
5610 {
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005611 if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL)
5612 continue; /* Skip non-string items and empty strings */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005613
5614 if (ga_grow(&ga, 1) == FAIL)
5615 break;
5616
5617 ((char_u **)ga.ga_data)[ga.ga_len] =
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005618 vim_strsave(li->li_tv.vval.v_string);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005619 ++ga.ga_len;
5620 }
5621 list_unref(retlist);
5622
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623 *file = ga.ga_data;
5624 *num_file = ga.ga_len;
5625 return OK;
5626}
5627#endif
5628
5629/*
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005630 * Expand color scheme, compiler or filetype names.
5631 * Search from 'runtimepath':
5632 * 'runtimepath'/{dirnames}/{pat}.vim
5633 * When "flags" has DIP_START: search also from 'start' of 'packpath':
5634 * 'packpath'/pack/ * /start/ * /{dirnames}/{pat}.vim
5635 * When "flags" has DIP_OPT: search also from 'opt' of 'packpath':
5636 * 'packpath'/pack/ * /opt/ * /{dirnames}/{pat}.vim
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005637 * "dirnames" is an array with one or more directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638 */
5639 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005640ExpandRTDir(
5641 char_u *pat,
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005642 int flags,
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005643 int *num_file,
5644 char_u ***file,
5645 char *dirnames[])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005647 char_u *s;
5648 char_u *e;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005649 char_u *match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005650 garray_T ga;
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005651 int i;
5652 int pat_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005653
5654 *num_file = 0;
5655 *file = NULL;
Bram Moolenaar5cfe2d72011-07-07 15:04:52 +02005656 pat_len = (int)STRLEN(pat);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005657 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005659 for (i = 0; dirnames[i] != NULL; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02005661 s = alloc(STRLEN(dirnames[i]) + pat_len + 7);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005662 if (s == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005663 {
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005664 ga_clear_strings(&ga);
5665 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005666 }
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005667 sprintf((char *)s, "%s/%s*.vim", dirnames[i], pat);
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005668 globpath(p_rtp, s, &ga, 0);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005669 vim_free(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005670 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005671
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005672 if (flags & DIP_START) {
5673 for (i = 0; dirnames[i] != NULL; ++i)
5674 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02005675 s = alloc(STRLEN(dirnames[i]) + pat_len + 22);
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005676 if (s == NULL)
5677 {
5678 ga_clear_strings(&ga);
5679 return FAIL;
5680 }
5681 sprintf((char *)s, "pack/*/start/*/%s/%s*.vim", dirnames[i], pat);
5682 globpath(p_pp, s, &ga, 0);
5683 vim_free(s);
5684 }
5685 }
5686
5687 if (flags & DIP_OPT) {
5688 for (i = 0; dirnames[i] != NULL; ++i)
5689 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02005690 s = alloc(STRLEN(dirnames[i]) + pat_len + 20);
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/*/opt/*/%s/%s*.vim", dirnames[i], pat);
5697 globpath(p_pp, s, &ga, 0);
5698 vim_free(s);
5699 }
5700 }
5701
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005702 for (i = 0; i < ga.ga_len; ++i)
5703 {
5704 match = ((char_u **)ga.ga_data)[i];
5705 s = match;
5706 e = s + STRLEN(s);
5707 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0)
5708 {
5709 e -= 4;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005710 for (s = e; s > match; MB_PTR_BACK(match, s))
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005711 if (s < match || vim_ispathsep(*s))
5712 break;
5713 ++s;
5714 *e = NUL;
5715 mch_memmove(match, s, e - s + 1);
5716 }
5717 }
5718
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005719 if (ga.ga_len == 0)
Bram Moolenaare79abdd2012-06-29 13:44:41 +02005720 return FAIL;
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005721
5722 /* Sort and remove duplicates which can happen when specifying multiple
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005723 * directories in dirnames. */
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005724 remove_duplicates(&ga);
5725
Bram Moolenaar071d4272004-06-13 20:20:40 +00005726 *file = ga.ga_data;
5727 *num_file = ga.ga_len;
5728 return OK;
5729}
5730
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01005731/*
5732 * Expand loadplugin names:
5733 * 'packpath'/pack/ * /opt/{pat}
5734 */
5735 static int
5736ExpandPackAddDir(
5737 char_u *pat,
5738 int *num_file,
5739 char_u ***file)
5740{
5741 char_u *s;
5742 char_u *e;
5743 char_u *match;
5744 garray_T ga;
5745 int i;
5746 int pat_len;
5747
5748 *num_file = 0;
5749 *file = NULL;
5750 pat_len = (int)STRLEN(pat);
5751 ga_init2(&ga, (int)sizeof(char *), 10);
5752
Bram Moolenaar964b3742019-05-24 18:54:09 +02005753 s = alloc(pat_len + 26);
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01005754 if (s == NULL)
5755 {
5756 ga_clear_strings(&ga);
5757 return FAIL;
5758 }
5759 sprintf((char *)s, "pack/*/opt/%s*", pat);
5760 globpath(p_pp, s, &ga, 0);
5761 vim_free(s);
5762
5763 for (i = 0; i < ga.ga_len; ++i)
5764 {
5765 match = ((char_u **)ga.ga_data)[i];
5766 s = gettail(match);
5767 e = s + STRLEN(s);
5768 mch_memmove(match, s, e - s + 1);
5769 }
5770
5771 if (ga.ga_len == 0)
5772 return FAIL;
5773
5774 /* Sort and remove duplicates which can happen when specifying multiple
5775 * directories in dirnames. */
5776 remove_duplicates(&ga);
5777
5778 *file = ga.ga_data;
5779 *num_file = ga.ga_len;
5780 return OK;
5781}
5782
Bram Moolenaar071d4272004-06-13 20:20:40 +00005783#endif
5784
5785#if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO)
5786/*
5787 * Expand "file" for all comma-separated directories in "path".
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005788 * Adds the matches to "ga". Caller must init "ga".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789 */
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005790 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005791globpath(
5792 char_u *path,
5793 char_u *file,
5794 garray_T *ga,
5795 int expand_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005796{
5797 expand_T xpc;
5798 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005800 int num_p;
5801 char_u **p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005802
5803 buf = alloc(MAXPATHL);
5804 if (buf == NULL)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005805 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005807 ExpandInit(&xpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005809
Bram Moolenaar071d4272004-06-13 20:20:40 +00005810 /* Loop over all entries in {path}. */
5811 while (*path != NUL)
5812 {
5813 /* Copy one item of the path to buf[] and concatenate the file name. */
5814 copy_option_part(&path, buf, MAXPATHL, ",");
5815 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
5816 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005817# if defined(MSWIN)
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005818 /* Using the platform's path separator (\) makes vim incorrectly
5819 * treat it as an escape character, use '/' instead. */
5820 if (*buf != NUL && !after_pathsep(buf, buf + STRLEN(buf)))
5821 STRCAT(buf, "/");
5822# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005823 add_pathsep(buf);
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005824# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005825 STRCAT(buf, file);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005826 if (ExpandFromContext(&xpc, buf, &num_p, &p,
5827 WILD_SILENT|expand_options) != FAIL && num_p > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005828 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005829 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT|expand_options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005830
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005831 if (ga_grow(ga, num_p) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005832 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005833 for (i = 0; i < num_p; ++i)
5834 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005835 ((char_u **)ga->ga_data)[ga->ga_len] =
Bram Moolenaar7116aa02014-05-29 14:36:29 +02005836 vim_strnsave(p[i], (int)STRLEN(p[i]));
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005837 ++ga->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005838 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005839 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005840
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841 FreeWild(num_p, p);
5842 }
5843 }
5844 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005845
5846 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005847}
5848
5849#endif
5850
Bram Moolenaar064154c2016-03-19 22:50:43 +01005851#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01005852/*
Bram Moolenaar438d1762018-09-30 17:11:48 +02005853 * Get pointer to the command line info to use. save_ccline() may clear
Bram Moolenaard293b2b2016-03-19 22:29:49 +01005854 * ccline and put the previous value in prev_ccline.
5855 */
5856 static struct cmdline_info *
5857get_ccline_ptr(void)
5858{
5859 if ((State & CMDLINE) == 0)
5860 return NULL;
5861 if (ccline.cmdbuff != NULL)
5862 return &ccline;
5863 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
5864 return &prev_ccline;
5865 return NULL;
5866}
Bram Moolenaar064154c2016-03-19 22:50:43 +01005867#endif
Bram Moolenaard293b2b2016-03-19 22:29:49 +01005868
Bram Moolenaar064154c2016-03-19 22:50:43 +01005869#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01005870/*
5871 * Get the current command line in allocated memory.
5872 * Only works when the command line is being edited.
5873 * Returns NULL when something is wrong.
5874 */
5875 char_u *
5876get_cmdline_str(void)
5877{
Bram Moolenaaree91c332018-09-25 22:27:35 +02005878 struct cmdline_info *p;
Bram Moolenaard293b2b2016-03-19 22:29:49 +01005879
Bram Moolenaaree91c332018-09-25 22:27:35 +02005880 if (cmdline_star > 0)
5881 return NULL;
5882 p = get_ccline_ptr();
Bram Moolenaard293b2b2016-03-19 22:29:49 +01005883 if (p == NULL)
5884 return NULL;
5885 return vim_strnsave(p->cmdbuff, p->cmdlen);
5886}
5887
5888/*
5889 * Get the current command line position, counted in bytes.
5890 * Zero is the first position.
5891 * Only works when the command line is being edited.
5892 * Returns -1 when something is wrong.
5893 */
5894 int
5895get_cmdline_pos(void)
5896{
5897 struct cmdline_info *p = get_ccline_ptr();
5898
5899 if (p == NULL)
5900 return -1;
5901 return p->cmdpos;
5902}
5903
5904/*
5905 * Set the command line byte position to "pos". Zero is the first position.
5906 * Only works when the command line is being edited.
5907 * Returns 1 when failed, 0 when OK.
5908 */
5909 int
5910set_cmdline_pos(
5911 int pos)
5912{
5913 struct cmdline_info *p = get_ccline_ptr();
5914
5915 if (p == NULL)
5916 return 1;
5917
5918 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
5919 * changed the command line. */
5920 if (pos < 0)
5921 new_cmdpos = 0;
5922 else
5923 new_cmdpos = pos;
5924 return 0;
5925}
5926#endif
5927
5928#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
5929/*
5930 * Get the current command-line type.
5931 * Returns ':' or '/' or '?' or '@' or '>' or '-'
5932 * Only works when the command line is being edited.
5933 * Returns NUL when something is wrong.
5934 */
5935 int
5936get_cmdline_type(void)
5937{
5938 struct cmdline_info *p = get_ccline_ptr();
5939
5940 if (p == NULL)
5941 return NUL;
5942 if (p->cmdfirstc == NUL)
Bram Moolenaar064154c2016-03-19 22:50:43 +01005943 return
5944# ifdef FEAT_EVAL
5945 (p->input_fn) ? '@' :
5946# endif
5947 '-';
Bram Moolenaard293b2b2016-03-19 22:29:49 +01005948 return p->cmdfirstc;
5949}
5950#endif
5951
Bram Moolenaard7663c22019-08-06 21:59:57 +02005952/*
5953 * Return the first character of the current command line.
5954 */
5955 int
5956get_cmdline_firstc(void)
5957{
5958 return ccline.cmdfirstc;
5959}
5960
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961/*
5962 * Get indices "num1,num2" that specify a range within a list (not a range of
5963 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
5964 * Returns OK if parsed successfully, otherwise FAIL.
5965 */
5966 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005967get_list_range(char_u **str, int *num1, int *num2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005968{
5969 int len;
5970 int first = FALSE;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005971 varnumber_T num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005972
5973 *str = skipwhite(*str);
5974 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
5975 {
Bram Moolenaar16e9b852019-05-19 19:59:35 +02005976 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005977 *str += len;
5978 *num1 = (int)num;
5979 first = TRUE;
5980 }
5981 *str = skipwhite(*str);
5982 if (**str == ',') /* parse "to" part of range */
5983 {
5984 *str = skipwhite(*str + 1);
Bram Moolenaar16e9b852019-05-19 19:59:35 +02005985 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005986 if (len > 0)
5987 {
5988 *num2 = (int)num;
5989 *str = skipwhite(*str + len);
5990 }
5991 else if (!first) /* no number given at all */
5992 return FAIL;
5993 }
5994 else if (first) /* only one number given */
5995 *num2 = *num1;
5996 return OK;
5997}
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02005998
Bram Moolenaar071d4272004-06-13 20:20:40 +00005999#if defined(FEAT_CMDWIN) || defined(PROTO)
6000/*
6001 * Open a window on the current command line and history. Allow editing in
6002 * the window. Returns when the window is closed.
6003 * Returns:
6004 * CR if the command is to be executed
6005 * Ctrl_C if it is to be abandoned
6006 * K_IGNORE if editing continues
6007 */
6008 static int
Bram Moolenaar3bab9392017-04-07 15:42:25 +02006009open_cmdwin(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006010{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006011 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006012 win_T *old_curwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006013 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006014 win_T *wp;
6015 int i;
6016 linenr_T lnum;
6017 int histtype;
6018 garray_T winsizes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006019 int save_restart_edit = restart_edit;
6020 int save_State = State;
6021 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00006022#ifdef FEAT_RIGHTLEFT
6023 int save_cmdmsg_rl = cmdmsg_rl;
6024#endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006025#ifdef FEAT_FOLDING
6026 int save_KeyTyped;
6027#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006028
6029 /* Can't do this recursively. Can't do it when typing a password. */
6030 if (cmdwin_type != 0
6031# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
6032 || cmdline_star > 0
6033# endif
6034 )
6035 {
6036 beep_flush();
6037 return K_IGNORE;
6038 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006039 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006040
6041 /* Save current window sizes. */
6042 win_size_save(&winsizes);
6043
Bram Moolenaar071d4272004-06-13 20:20:40 +00006044 /* Don't execute autocommands while creating the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006045 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006046
Bram Moolenaarf88af6e2019-01-22 22:55:00 +01006047#if defined(FEAT_INS_EXPAND)
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01006048 // When using completion in Insert mode with <C-R>=<C-F> one can open the
6049 // command line window, but we don't want the popup menu then.
6050 pum_undisplay();
Bram Moolenaarf88af6e2019-01-22 22:55:00 +01006051#endif
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01006052
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00006053 /* don't use a new tab page */
6054 cmdmod.tab = 0;
Bram Moolenaar3bab9392017-04-07 15:42:25 +02006055 cmdmod.noswapfile = 1;
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00006056
Bram Moolenaar071d4272004-06-13 20:20:40 +00006057 /* Create a window for the command-line buffer. */
6058 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
6059 {
6060 beep_flush();
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006061 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062 return K_IGNORE;
6063 }
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006064 cmdwin_type = get_cmdline_type();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065
6066 /* Create the command-line buffer empty. */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006067 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL);
Bram Moolenaar446cb832008-06-24 21:56:24 +00006068 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006069 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006070 curbuf->b_p_ma = TRUE;
Bram Moolenaar876f6d72009-04-29 10:05:51 +00006071#ifdef FEAT_FOLDING
6072 curwin->w_p_fen = FALSE;
6073#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006074# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00006075 curwin->w_p_rl = cmdmsg_rl;
6076 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006077# endif
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006078 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006079
Bram Moolenaar071d4272004-06-13 20:20:40 +00006080 /* Do execute autocommands for setting the filetype (load syntax). */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006081 unblock_autocmds();
Bram Moolenaar18141832017-06-25 21:17:25 +02006082 /* But don't allow switching to another buffer. */
6083 ++curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006084
Bram Moolenaar46152342005-09-07 21:18:43 +00006085 /* Showing the prompt may have set need_wait_return, reset it. */
6086 need_wait_return = FALSE;
6087
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006088 histtype = hist_char2type(cmdwin_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006089 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
6090 {
6091 if (p_wc == TAB)
6092 {
6093 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
6094 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
6095 }
6096 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
6097 }
Bram Moolenaar18141832017-06-25 21:17:25 +02006098 --curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006099
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006100 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
6101 * sets 'textwidth' to 78). */
6102 curbuf->b_p_tw = 0;
6103
Bram Moolenaar071d4272004-06-13 20:20:40 +00006104 /* Fill the buffer with the history. */
6105 init_history();
Bram Moolenaard7663c22019-08-06 21:59:57 +02006106 if (get_hislen() > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006107 {
Bram Moolenaard7663c22019-08-06 21:59:57 +02006108 i = *get_hisidx(histtype);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006109 if (i >= 0)
6110 {
6111 lnum = 0;
6112 do
6113 {
Bram Moolenaard7663c22019-08-06 21:59:57 +02006114 if (++i == get_hislen())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006115 i = 0;
Bram Moolenaard7663c22019-08-06 21:59:57 +02006116 if (get_histentry(histtype)[i].hisstr != NULL)
6117 ml_append(lnum++, get_histentry(histtype)[i].hisstr,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006118 (colnr_T)0, FALSE);
6119 }
Bram Moolenaard7663c22019-08-06 21:59:57 +02006120 while (i != *get_hisidx(histtype));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006121 }
6122 }
6123
6124 /* Replace the empty last line with the current command-line and put the
6125 * cursor there. */
6126 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
6127 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6128 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00006129 changed_line_abv_curs();
6130 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00006131 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132
Bram Moolenaar071d4272004-06-13 20:20:40 +00006133 /* No Ex mode here! */
6134 exmode_active = 0;
6135
6136 State = NORMAL;
6137# ifdef FEAT_MOUSE
6138 setmouse();
6139# endif
6140
Bram Moolenaar071d4272004-06-13 20:20:40 +00006141 /* Trigger CmdwinEnter autocommands. */
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02006142 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINENTER);
Bram Moolenaar5495cc92006-08-16 14:23:04 +00006143 if (restart_edit != 0) /* autocmd with ":startinsert" */
6144 stuffcharReadbuff(K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006145
6146 i = RedrawingDisabled;
6147 RedrawingDisabled = 0;
6148
6149 /*
6150 * Call the main loop until <CR> or CTRL-C is typed.
6151 */
6152 cmdwin_result = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00006153 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006154
6155 RedrawingDisabled = i;
6156
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006157# ifdef FEAT_FOLDING
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006158 save_KeyTyped = KeyTyped;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006159# endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006160
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161 /* Trigger CmdwinLeave autocommands. */
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02006162 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINLEAVE);
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006163
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006164# ifdef FEAT_FOLDING
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006165 /* Restore KeyTyped in case it is modified by autocommands */
6166 KeyTyped = save_KeyTyped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006167# endif
6168
Bram Moolenaar071d4272004-06-13 20:20:40 +00006169 cmdwin_type = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006170 exmode_active = save_exmode;
6171
Bram Moolenaarf9821062008-06-20 16:31:07 +00006172 /* Safety check: The old window or buffer was deleted: It's a bug when
Bram Moolenaar071d4272004-06-13 20:20:40 +00006173 * this happens! */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006174 if (!win_valid(old_curwin) || !bufref_valid(&old_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006175 {
6176 cmdwin_result = Ctrl_C;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006177 emsg(_("E199: Active window or buffer deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006178 }
6179 else
6180 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006181# if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006182 /* autocmds may abort script processing */
6183 if (aborting() && cmdwin_result != K_IGNORE)
6184 cmdwin_result = Ctrl_C;
6185# endif
6186 /* Set the new command line from the cmdline buffer. */
6187 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00006188 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189 {
Bram Moolenaar46152342005-09-07 21:18:43 +00006190 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
6191
6192 if (histtype == HIST_CMD)
6193 {
6194 /* Execute the command directly. */
6195 ccline.cmdbuff = vim_strsave((char_u *)p);
6196 cmdwin_result = CAR;
6197 }
6198 else
6199 {
6200 /* First need to cancel what we were doing. */
6201 ccline.cmdbuff = NULL;
6202 stuffcharReadbuff(':');
6203 stuffReadbuff((char_u *)p);
6204 stuffcharReadbuff(CAR);
6205 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006206 }
6207 else if (cmdwin_result == K_XF2) /* :qa typed */
6208 {
6209 ccline.cmdbuff = vim_strsave((char_u *)"qa");
6210 cmdwin_result = CAR;
6211 }
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02006212 else if (cmdwin_result == Ctrl_C)
6213 {
6214 /* :q or :close, don't execute any command
6215 * and don't modify the cmd window. */
6216 ccline.cmdbuff = NULL;
6217 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006218 else
6219 ccline.cmdbuff = vim_strsave(ml_get_curline());
6220 if (ccline.cmdbuff == NULL)
Bram Moolenaar5a15b6a2017-07-11 15:11:57 +02006221 {
6222 ccline.cmdbuff = vim_strsave((char_u *)"");
6223 ccline.cmdlen = 0;
6224 ccline.cmdbufflen = 1;
6225 ccline.cmdpos = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006226 cmdwin_result = Ctrl_C;
Bram Moolenaar5a15b6a2017-07-11 15:11:57 +02006227 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006228 else
6229 {
6230 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
6231 ccline.cmdbufflen = ccline.cmdlen + 1;
6232 ccline.cmdpos = curwin->w_cursor.col;
6233 if (ccline.cmdpos > ccline.cmdlen)
6234 ccline.cmdpos = ccline.cmdlen;
6235 if (cmdwin_result == K_IGNORE)
6236 {
6237 set_cmdspos_cursor();
6238 redrawcmd();
6239 }
6240 }
6241
Bram Moolenaar071d4272004-06-13 20:20:40 +00006242 /* Don't execute autocommands while deleting the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006243 block_autocmds();
Bram Moolenaarfa67fbe2015-06-25 18:20:36 +02006244# ifdef FEAT_CONCEAL
6245 /* Avoid command-line window first character being concealed. */
6246 curwin->w_p_cole = 0;
6247# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006248 wp = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006249 set_bufref(&bufref, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006250 win_goto(old_curwin);
6251 win_close(wp, TRUE);
Bram Moolenaar8006d692010-03-02 17:23:21 +01006252
6253 /* win_close() may have already wiped the buffer when 'bh' is
6254 * set to 'wipe' */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006255 if (bufref_valid(&bufref))
6256 close_buffer(NULL, bufref.br_buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257
6258 /* Restore window sizes. */
6259 win_size_restore(&winsizes);
6260
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006261 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006262 }
6263
6264 ga_clear(&winsizes);
6265 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00006266# ifdef FEAT_RIGHTLEFT
6267 cmdmsg_rl = save_cmdmsg_rl;
6268# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006269
6270 State = save_State;
6271# ifdef FEAT_MOUSE
6272 setmouse();
6273# endif
6274
6275 return cmdwin_result;
6276}
6277#endif /* FEAT_CMDWIN */
6278
6279/*
6280 * Used for commands that either take a simple command string argument, or:
6281 * cmd << endmarker
6282 * {script}
6283 * endmarker
6284 * Returns a pointer to allocated memory with {script} or NULL.
6285 */
6286 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006287script_get(exarg_T *eap, char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006288{
6289 char_u *theline;
6290 char *end_pattern = NULL;
6291 char dot[] = ".";
6292 garray_T ga;
6293
6294 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
6295 return NULL;
6296
6297 ga_init2(&ga, 1, 0x400);
6298
6299 if (cmd[2] != NUL)
6300 end_pattern = (char *)skipwhite(cmd + 2);
6301 else
6302 end_pattern = dot;
6303
6304 for (;;)
6305 {
6306 theline = eap->getline(
6307#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00006308 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00006309#endif
Bram Moolenaare96a2492019-06-25 04:12:16 +02006310 NUL, eap->cookie, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006311
6312 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
Bram Moolenaarbe555e72008-08-06 12:19:26 +00006313 {
6314 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315 break;
Bram Moolenaarbe555e72008-08-06 12:19:26 +00006316 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006317
6318 ga_concat(&ga, theline);
6319 ga_append(&ga, '\n');
6320 vim_free(theline);
6321 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00006322 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006323
6324 return (char_u *)ga.ga_data;
6325}