blob: d025368218a29623dd4bdf69a15eccc75796beb5 [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 Moolenaar2f3cd2e2020-09-06 15:54:00 +020020// Return value when handling keys in command-line mode.
21#define CMDLINE_NOT_CHANGED 1
22#define CMDLINE_CHANGED 2
23#define GOTO_NORMAL_MODE 3
Bram Moolenaar9c929712020-09-07 22:05:28 +020024#define PROCESS_NEXT_KEY 4
Bram Moolenaar2f3cd2e2020-09-06 15:54:00 +020025
Bram Moolenaar438d1762018-09-30 17:11:48 +020026// The current cmdline_info. It is initialized in getcmdline() and after that
27// used by other functions. When invoking getcmdline() recursively it needs
28// to be saved with save_cmdline() and restored with restore_cmdline().
Bram Moolenaar66b51422019-08-18 21:44:12 +020029static cmdline_info_T ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +000030
31#ifdef FEAT_EVAL
Bram Moolenaar217e1b82019-12-01 21:41:28 +010032static int new_cmdpos; // position set by set_cmdline_pos()
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#endif
34
Bram Moolenaar217e1b82019-12-01 21:41:28 +010035static int extra_char = NUL; // extra character to display when redrawing
36 // the command line
Bram Moolenaar6a77d262017-07-16 15:24:01 +020037static int extra_char_shift;
38
Bram Moolenaar071d4272004-06-13 20:20:40 +000039#ifdef FEAT_RIGHTLEFT
Bram Moolenaar217e1b82019-12-01 21:41:28 +010040static int cmd_hkmap = 0; // Hebrew mapping during command line
Bram Moolenaar071d4272004-06-13 20:20:40 +000041#endif
42
Bram Moolenaar9c929712020-09-07 22:05:28 +020043static char_u *getcmdline_int(int firstc, long count, int indent, int clear_ccline);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010044static int cmdline_charsize(int idx);
45static void set_cmdspos(void);
46static void set_cmdspos_cursor(void);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010047static void correct_cmdspos(int idx, int cells);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010048static void alloc_cmdbuff(int len);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010049static void draw_cmdline(int start, int len);
Bram Moolenaar66b51422019-08-18 21:44:12 +020050static void save_cmdline(cmdline_info_T *ccp);
51static void restore_cmdline(cmdline_info_T *ccp);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010052static int cmdline_paste(int regname, int literally, int remcr);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010053static void redrawcmdprompt(void);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010054static int ccheck_abbr(int);
Bram Moolenaard93a7fc2021-01-04 12:42:13 +010055#ifdef FEAT_SEARCH_EXTRA
56static int empty_pattern_magic(char_u *pat, size_t len, magic_T magic_val);
57#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000058
59#ifdef FEAT_CMDWIN
Bram Moolenaar3bab9392017-04-07 15:42:25 +020060static int open_cmdwin(void);
Bram Moolenaar7bae0b12019-11-21 22:14:18 +010061
62static int cedit_key INIT(= -1); // key value of 'cedit' option
Bram Moolenaar071d4272004-06-13 20:20:40 +000063#endif
64
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +020065
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +020066 static void
67trigger_cmd_autocmd(int typechar, int evt)
68{
69 char_u typestr[2];
70
71 typestr[0] = typechar;
72 typestr[1] = NUL;
73 apply_autocmds(evt, typestr, typestr, FALSE, curbuf);
74}
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +020075
Bram Moolenaar071d4272004-06-13 20:20:40 +000076/*
Bram Moolenaarf8e8c062017-10-22 14:44:17 +020077 * Abandon the command line.
78 */
79 static void
80abandon_cmdline(void)
81{
Bram Moolenaard23a8232018-02-10 18:45:26 +010082 VIM_CLEAR(ccline.cmdbuff);
Bram Moolenaarf8e8c062017-10-22 14:44:17 +020083 if (msg_scrolled == 0)
84 compute_cmdrow();
Bram Moolenaar32526b32019-01-19 17:43:09 +010085 msg("");
Bram Moolenaarf8e8c062017-10-22 14:44:17 +020086 redraw_cmdline = TRUE;
87}
88
Bram Moolenaaree219b02017-12-17 14:55:01 +010089#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaarf8e8c062017-10-22 14:44:17 +020090/*
Bram Moolenaar66216052017-12-16 16:33:44 +010091 * Guess that the pattern matches everything. Only finds specific cases, such
92 * as a trailing \|, which can happen while typing a pattern.
93 */
94 static int
Bram Moolenaard93a7fc2021-01-04 12:42:13 +010095empty_pattern(char_u *p, int delim)
Bram Moolenaar66216052017-12-16 16:33:44 +010096{
Bram Moolenaard93a7fc2021-01-04 12:42:13 +010097 size_t n = STRLEN(p);
98 magic_T magic_val = MAGIC_ON;
Bram Moolenaar66216052017-12-16 16:33:44 +010099
Bram Moolenaard93a7fc2021-01-04 12:42:13 +0100100 if (n > 0)
101 (void) skip_regexp_ex(p, delim, magic_isset(), NULL, NULL, &magic_val);
102 else
103 return TRUE;
104
105 return empty_pattern_magic(p, n, magic_val);
106}
107
108 static int
109empty_pattern_magic(char_u *p, size_t len, magic_T magic_val)
110{
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100111 // remove trailing \v and the like
Bram Moolenaard93a7fc2021-01-04 12:42:13 +0100112 while (len >= 2 && p[len - 2] == '\\'
113 && vim_strchr((char_u *)"mMvVcCZ", p[len - 1]) != NULL)
114 len -= 2;
115
116 // true, if the pattern is empty, or the pattern ends with \| and magic is
117 // set (or it ends with '|' and very magic is set)
118 return len == 0 || (len > 1
119 && ((p[len - 2] == '\\'
120 && p[len - 1] == '|' && magic_val == MAGIC_ON)
121 || (p[len - 2] != '\\'
122 && p[len - 1] == '|' && magic_val == MAGIC_ALL)));
Bram Moolenaar66216052017-12-16 16:33:44 +0100123}
124
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200125// Struct to store the viewstate during 'incsearch' highlighting.
Bram Moolenaar9b25af32018-04-28 13:56:09 +0200126typedef struct {
127 colnr_T vs_curswant;
128 colnr_T vs_leftcol;
129 linenr_T vs_topline;
130# ifdef FEAT_DIFF
131 int vs_topfill;
132# endif
133 linenr_T vs_botline;
134 linenr_T vs_empty_rows;
135} viewstate_T;
136
137 static void
138save_viewstate(viewstate_T *vs)
139{
140 vs->vs_curswant = curwin->w_curswant;
141 vs->vs_leftcol = curwin->w_leftcol;
142 vs->vs_topline = curwin->w_topline;
143# ifdef FEAT_DIFF
144 vs->vs_topfill = curwin->w_topfill;
145# endif
146 vs->vs_botline = curwin->w_botline;
147 vs->vs_empty_rows = curwin->w_empty_rows;
148}
149
150 static void
151restore_viewstate(viewstate_T *vs)
152{
153 curwin->w_curswant = vs->vs_curswant;
154 curwin->w_leftcol = vs->vs_leftcol;
155 curwin->w_topline = vs->vs_topline;
156# ifdef FEAT_DIFF
157 curwin->w_topfill = vs->vs_topfill;
158# endif
159 curwin->w_botline = vs->vs_botline;
160 curwin->w_empty_rows = vs->vs_empty_rows;
161}
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200162
163// Struct to store the state of 'incsearch' highlighting.
164typedef struct {
165 pos_T search_start; // where 'incsearch' starts searching
Bram Moolenaar23324a02019-10-01 17:39:04 +0200166 pos_T save_cursor;
Bram Moolenaarf4d61bc2020-11-14 14:22:28 +0100167 int winid; // window where this state is valid
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200168 viewstate_T init_viewstate;
169 viewstate_T old_viewstate;
Bram Moolenaar23324a02019-10-01 17:39:04 +0200170 pos_T match_start;
171 pos_T match_end;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200172 int did_incsearch;
173 int incsearch_postponed;
Bram Moolenaard93a7fc2021-01-04 12:42:13 +0100174 optmagic_T magic_overruled_save;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200175} incsearch_state_T;
176
177 static void
178init_incsearch_state(incsearch_state_T *is_state)
179{
Bram Moolenaarf4d61bc2020-11-14 14:22:28 +0100180 is_state->winid = curwin->w_id;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200181 is_state->match_start = curwin->w_cursor;
182 is_state->did_incsearch = FALSE;
183 is_state->incsearch_postponed = FALSE;
Bram Moolenaarf4e20992020-12-21 19:59:08 +0100184 is_state->magic_overruled_save = magic_overruled;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200185 CLEAR_POS(&is_state->match_end);
186 is_state->save_cursor = curwin->w_cursor; // may be restored later
187 is_state->search_start = curwin->w_cursor;
188 save_viewstate(&is_state->init_viewstate);
189 save_viewstate(&is_state->old_viewstate);
190}
191
192/*
193 * First move cursor to end of match, then to the start. This
194 * moves the whole match onto the screen when 'nowrap' is set.
195 */
196 static void
197set_search_match(pos_T *t)
198{
199 t->lnum += search_match_lines;
200 t->col = search_match_endcol;
201 if (t->lnum > curbuf->b_ml.ml_line_count)
202 {
203 t->lnum = curbuf->b_ml.ml_line_count;
204 coladvance((colnr_T)MAXCOL);
205 }
206}
207
208/*
209 * Return TRUE when 'incsearch' highlighting is to be done.
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200210 * Sets search_first_line and search_last_line to the address range.
Bram Moolenaar198cb662018-09-06 21:44:17 +0200211 * May change the last search pattern.
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200212 */
213 static int
Bram Moolenaar3bd8de42020-09-14 16:37:34 +0200214do_incsearch_highlighting(
215 int firstc,
216 int *search_delim,
217 incsearch_state_T *is_state,
218 int *skiplen,
219 int *patlen)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200220{
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200221 char_u *cmd;
Bram Moolenaare1004402020-10-24 20:49:43 +0200222 cmdmod_T dummy_cmdmod;
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200223 char_u *p;
224 int delim_optional = FALSE;
225 int delim;
226 char_u *end;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100227 char *dummy;
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200228 exarg_T ea;
229 pos_T save_cursor;
Bram Moolenaar8b0d5ce2018-08-22 23:05:44 +0200230 int use_last_pat;
Bram Moolenaarc6725252019-11-23 21:56:46 +0100231 int retval = FALSE;
Bram Moolenaard93a7fc2021-01-04 12:42:13 +0100232 magic_T magic = 0;
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200233
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200234 *skiplen = 0;
235 *patlen = ccline.cmdlen;
236
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200237 if (!p_is || cmd_silent)
238 return FALSE;
239
240 // by default search all lines
241 search_first_line = 0;
242 search_last_line = MAXLNUM;
243
244 if (firstc == '/' || firstc == '?')
Bram Moolenaarc036e872020-02-21 21:30:52 +0100245 {
246 *search_delim = firstc;
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200247 return TRUE;
Bram Moolenaarc036e872020-02-21 21:30:52 +0100248 }
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200249 if (firstc != ':')
250 return FALSE;
251
Bram Moolenaarc6725252019-11-23 21:56:46 +0100252 ++emsg_off;
Bram Moolenaara80faa82020-04-12 19:37:17 +0200253 CLEAR_FIELD(ea);
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200254 ea.line1 = 1;
255 ea.line2 = 1;
256 ea.cmd = ccline.cmdbuff;
257 ea.addr_type = ADDR_LINES;
258
Bram Moolenaare1004402020-10-24 20:49:43 +0200259 CLEAR_FIELD(dummy_cmdmod);
260 parse_command_modifiers(&ea, &dummy, &dummy_cmdmod, TRUE);
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200261
Bram Moolenaar3bd8de42020-09-14 16:37:34 +0200262 cmd = skip_range(ea.cmd, TRUE, NULL);
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200263 if (vim_strchr((char_u *)"sgvl", *cmd) == NULL)
Bram Moolenaarc6725252019-11-23 21:56:46 +0100264 goto theend;
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200265
266 // Skip over "substitute" to find the pattern separator.
267 for (p = cmd; ASCII_ISALPHA(*p); ++p)
268 ;
269 if (*skipwhite(p) == NUL)
Bram Moolenaarc6725252019-11-23 21:56:46 +0100270 goto theend;
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200271
272 if (STRNCMP(cmd, "substitute", p - cmd) == 0
273 || STRNCMP(cmd, "smagic", p - cmd) == 0
274 || STRNCMP(cmd, "snomagic", MAX(p - cmd, 3)) == 0
275 || STRNCMP(cmd, "vglobal", p - cmd) == 0)
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200276 {
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200277 if (*cmd == 's' && cmd[1] == 'm')
Bram Moolenaard93a7fc2021-01-04 12:42:13 +0100278 magic_overruled = OPTION_MAGIC_ON;
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200279 else if (*cmd == 's' && cmd[1] == 'n')
Bram Moolenaard93a7fc2021-01-04 12:42:13 +0100280 magic_overruled = OPTION_MAGIC_OFF;
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200281 }
282 else if (STRNCMP(cmd, "sort", MAX(p - cmd, 3)) == 0)
283 {
Bram Moolenaar333015a2020-04-25 15:54:16 +0200284 // skip over ! and flags
285 if (*p == '!')
286 p = skipwhite(p + 1);
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200287 while (ASCII_ISALPHA(*(p = skipwhite(p))))
288 ++p;
289 if (*p == NUL)
Bram Moolenaarc6725252019-11-23 21:56:46 +0100290 goto theend;
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200291 }
292 else if (STRNCMP(cmd, "vimgrep", MAX(p - cmd, 3)) == 0
293 || STRNCMP(cmd, "vimgrepadd", MAX(p - cmd, 8)) == 0
294 || STRNCMP(cmd, "lvimgrep", MAX(p - cmd, 2)) == 0
295 || STRNCMP(cmd, "lvimgrepadd", MAX(p - cmd, 9)) == 0
296 || STRNCMP(cmd, "global", p - cmd) == 0)
297 {
298 // skip over "!"
299 if (*p == '!')
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200300 {
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200301 p++;
302 if (*skipwhite(p) == NUL)
Bram Moolenaarc6725252019-11-23 21:56:46 +0100303 goto theend;
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200304 }
305 if (*cmd != 'g')
306 delim_optional = TRUE;
307 }
308 else
Bram Moolenaarc6725252019-11-23 21:56:46 +0100309 goto theend;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200310
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200311 p = skipwhite(p);
312 delim = (delim_optional && vim_isIDc(*p)) ? ' ' : *p++;
Bram Moolenaarc036e872020-02-21 21:30:52 +0100313 *search_delim = delim;
Bram Moolenaard93a7fc2021-01-04 12:42:13 +0100314 end = skip_regexp_ex(p, delim, magic_isset(), NULL, NULL, &magic);
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +0200315
Bram Moolenaar8b0d5ce2018-08-22 23:05:44 +0200316 use_last_pat = end == p && *end == delim;
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +0200317
Bram Moolenaar8b0d5ce2018-08-22 23:05:44 +0200318 if (end == p && !use_last_pat)
Bram Moolenaarc6725252019-11-23 21:56:46 +0100319 goto theend;
Bram Moolenaar8b0d5ce2018-08-22 23:05:44 +0200320
321 // Don't do 'hlsearch' highlighting if the pattern matches everything.
322 if (!use_last_pat)
323 {
324 char c = *end;
325 int empty;
326
327 *end = NUL;
Bram Moolenaard93a7fc2021-01-04 12:42:13 +0100328 empty = empty_pattern_magic(p, STRLEN(p), magic);
Bram Moolenaar8b0d5ce2018-08-22 23:05:44 +0200329 *end = c;
330 if (empty)
Bram Moolenaarc6725252019-11-23 21:56:46 +0100331 goto theend;
Bram Moolenaar8b0d5ce2018-08-22 23:05:44 +0200332 }
333
334 // found a non-empty pattern or //
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200335 *skiplen = (int)(p - ccline.cmdbuff);
336 *patlen = (int)(end - p);
Bram Moolenaar264cf5c2018-08-18 21:05:31 +0200337
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200338 // parse the address range
339 save_cursor = curwin->w_cursor;
340 curwin->w_cursor = is_state->search_start;
Bram Moolenaar50eb16c2018-09-15 15:42:40 +0200341 parse_cmd_address(&ea, &dummy, TRUE);
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200342 if (ea.addr_count > 0)
343 {
344 // Allow for reverse match.
345 if (ea.line2 < ea.line1)
346 {
347 search_first_line = ea.line2;
348 search_last_line = ea.line1;
349 }
350 else
351 {
352 search_first_line = ea.line1;
353 search_last_line = ea.line2;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200354 }
355 }
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200356 else if (cmd[0] == 's' && cmd[1] != 'o')
357 {
358 // :s defaults to the current line
359 search_first_line = curwin->w_cursor.lnum;
360 search_last_line = curwin->w_cursor.lnum;
361 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200362
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200363 curwin->w_cursor = save_cursor;
Bram Moolenaarc6725252019-11-23 21:56:46 +0100364 retval = TRUE;
365theend:
366 --emsg_off;
367 return retval;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200368}
369
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200370 static void
371finish_incsearch_highlighting(
372 int gotesc,
373 incsearch_state_T *is_state,
374 int call_update_screen)
375{
376 if (is_state->did_incsearch)
377 {
378 is_state->did_incsearch = FALSE;
379 if (gotesc)
380 curwin->w_cursor = is_state->save_cursor;
381 else
382 {
383 if (!EQUAL_POS(is_state->save_cursor, is_state->search_start))
384 {
385 // put the '" mark at the original position
386 curwin->w_cursor = is_state->save_cursor;
387 setpcmark();
388 }
389 curwin->w_cursor = is_state->search_start;
390 }
391 restore_viewstate(&is_state->old_viewstate);
392 highlight_match = FALSE;
Bram Moolenaarf13daa42018-08-31 22:09:54 +0200393
394 // by default search all lines
395 search_first_line = 0;
396 search_last_line = MAXLNUM;
397
Bram Moolenaarf4e20992020-12-21 19:59:08 +0100398 magic_overruled = is_state->magic_overruled_save;
Bram Moolenaarf13daa42018-08-31 22:09:54 +0200399
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100400 validate_cursor(); // needed for TAB
Bram Moolenaar65985ac2018-09-16 17:08:04 +0200401 redraw_all_later(SOME_VALID);
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200402 if (call_update_screen)
403 update_screen(SOME_VALID);
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200404 }
405}
406
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200407/*
408 * Do 'incsearch' highlighting if desired.
409 */
410 static void
411may_do_incsearch_highlighting(
412 int firstc,
413 long count,
414 incsearch_state_T *is_state)
415{
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200416 int skiplen, patlen;
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200417 int found; // do_search() result
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200418 pos_T end_pos;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200419#ifdef FEAT_RELTIME
420 proftime_T tm;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200421 searchit_arg_T sia;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200422#endif
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200423 int next_char;
424 int use_last_pat;
Bram Moolenaar693f7dc2019-06-21 02:30:38 +0200425 int did_do_incsearch = is_state->did_incsearch;
Bram Moolenaarc036e872020-02-21 21:30:52 +0100426 int search_delim;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200427
Bram Moolenaar198cb662018-09-06 21:44:17 +0200428 // Parsing range may already set the last search pattern.
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100429 // NOTE: must call restore_last_search_pattern() before returning!
Bram Moolenaar198cb662018-09-06 21:44:17 +0200430 save_last_search_pattern();
431
Bram Moolenaara60053b2020-09-03 16:50:13 +0200432 if (!do_incsearch_highlighting(firstc, &search_delim, is_state,
433 &skiplen, &patlen))
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200434 {
Bram Moolenaar198cb662018-09-06 21:44:17 +0200435 restore_last_search_pattern();
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200436 finish_incsearch_highlighting(FALSE, is_state, TRUE);
Bram Moolenaar693f7dc2019-06-21 02:30:38 +0200437 if (did_do_incsearch && vpeekc() == NUL)
438 // may have skipped a redraw, do it now
439 redrawcmd();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200440 return;
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200441 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200442
443 // If there is a character waiting, search and redraw later.
444 if (char_avail())
445 {
Bram Moolenaar198cb662018-09-06 21:44:17 +0200446 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200447 is_state->incsearch_postponed = TRUE;
448 return;
449 }
450 is_state->incsearch_postponed = FALSE;
451
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200452 if (search_first_line == 0)
453 // start at the original cursor position
454 curwin->w_cursor = is_state->search_start;
Bram Moolenaar1c299432018-10-28 14:36:09 +0100455 else if (search_first_line > curbuf->b_ml.ml_line_count)
456 {
457 // start after the last line
458 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
459 curwin->w_cursor.col = MAXCOL;
460 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200461 else
462 {
463 // start at the first line in the range
464 curwin->w_cursor.lnum = search_first_line;
465 curwin->w_cursor.col = 0;
466 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200467
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200468 // Use the previous pattern for ":s//".
469 next_char = ccline.cmdbuff[skiplen + patlen];
470 use_last_pat = patlen == 0 && skiplen > 0
471 && ccline.cmdbuff[skiplen - 1] == next_char;
472
473 // If there is no pattern, don't do anything.
474 if (patlen == 0 && !use_last_pat)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200475 {
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200476 found = 0;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200477 set_no_hlsearch(TRUE); // turn off previous highlight
478 redraw_all_later(SOME_VALID);
479 }
480 else
481 {
482 int search_flags = SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK;
483
484 cursor_off(); // so the user knows we're busy
485 out_flush();
486 ++emsg_off; // so it doesn't beep if bad expr
487#ifdef FEAT_RELTIME
488 // Set the time limit to half a second.
489 profile_setlimit(500L, &tm);
490#endif
491 if (!p_hls)
492 search_flags += SEARCH_KEEP;
Bram Moolenaar976b8472018-08-12 15:49:47 +0200493 if (search_first_line != 0)
494 search_flags += SEARCH_START;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200495 ccline.cmdbuff[skiplen + patlen] = NUL;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200496#ifdef FEAT_RELTIME
Bram Moolenaara80faa82020-04-12 19:37:17 +0200497 CLEAR_FIELD(sia);
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200498 sia.sa_tm = &tm;
499#endif
Bram Moolenaarc036e872020-02-21 21:30:52 +0100500 found = do_search(NULL, firstc == ':' ? '/' : firstc, search_delim,
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200501 ccline.cmdbuff + skiplen, count, search_flags,
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200502#ifdef FEAT_RELTIME
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200503 &sia
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200504#else
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200505 NULL
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200506#endif
507 );
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200508 ccline.cmdbuff[skiplen + patlen] = next_char;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200509 --emsg_off;
510
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200511 if (curwin->w_cursor.lnum < search_first_line
512 || curwin->w_cursor.lnum > search_last_line)
Bram Moolenaar2f6a3462018-08-14 18:16:52 +0200513 {
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200514 // match outside of address range
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200515 found = 0;
Bram Moolenaar2f6a3462018-08-14 18:16:52 +0200516 curwin->w_cursor = is_state->search_start;
517 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200518
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200519 // if interrupted while searching, behave like it failed
520 if (got_int)
521 {
522 (void)vpeekc(); // remove <C-C> from input stream
523 got_int = FALSE; // don't abandon the command line
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200524 found = 0;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200525 }
526 else if (char_avail())
527 // cancelled searching because a char was typed
528 is_state->incsearch_postponed = TRUE;
529 }
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200530 if (found != 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200531 highlight_match = TRUE; // highlight position
532 else
533 highlight_match = FALSE; // remove highlight
534
535 // First restore the old curwin values, so the screen is positioned in the
536 // same way as the actual search command.
537 restore_viewstate(&is_state->old_viewstate);
538 changed_cline_bef_curs();
539 update_topline();
540
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200541 if (found != 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200542 {
543 pos_T save_pos = curwin->w_cursor;
544
545 is_state->match_start = curwin->w_cursor;
546 set_search_match(&curwin->w_cursor);
547 validate_cursor();
548 end_pos = curwin->w_cursor;
549 is_state->match_end = end_pos;
550 curwin->w_cursor = save_pos;
551 }
552 else
553 end_pos = curwin->w_cursor; // shutup gcc 4
554
Bram Moolenaar4edfe2d2018-08-23 20:55:45 +0200555 // Disable 'hlsearch' highlighting if the pattern matches everything.
556 // Avoids a flash when typing "foo\|".
557 if (!use_last_pat)
558 {
559 next_char = ccline.cmdbuff[skiplen + patlen];
560 ccline.cmdbuff[skiplen + patlen] = NUL;
Bram Moolenaard93a7fc2021-01-04 12:42:13 +0100561 if (empty_pattern(ccline.cmdbuff + skiplen, search_delim)
562 && !no_hlsearch)
Bram Moolenaar65985ac2018-09-16 17:08:04 +0200563 {
564 redraw_all_later(SOME_VALID);
Bram Moolenaar4edfe2d2018-08-23 20:55:45 +0200565 set_no_hlsearch(TRUE);
Bram Moolenaar65985ac2018-09-16 17:08:04 +0200566 }
Bram Moolenaar4edfe2d2018-08-23 20:55:45 +0200567 ccline.cmdbuff[skiplen + patlen] = next_char;
568 }
569
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200570 validate_cursor();
571 // May redraw the status line to show the cursor position.
572 if (p_ru && curwin->w_status_height > 0)
573 curwin->w_redr_status = TRUE;
574
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200575 update_screen(SOME_VALID);
Bram Moolenaar7ab5d772019-10-26 20:45:24 +0200576 highlight_match = FALSE;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200577 restore_last_search_pattern();
578
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200579 // Leave it at the end to make CTRL-R CTRL-W work. But not when beyond the
580 // end of the pattern, e.g. for ":s/pat/".
581 if (ccline.cmdbuff[skiplen + patlen] != NUL)
582 curwin->w_cursor = is_state->search_start;
583 else if (found != 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200584 curwin->w_cursor = end_pos;
585
586 msg_starthere();
587 redrawcmdline();
588 is_state->did_incsearch = TRUE;
589}
590
591/*
592 * May adjust 'incsearch' highlighting for typing CTRL-G and CTRL-T, go to next
593 * or previous match.
594 * Returns FAIL when jumping to cmdline_not_changed;
595 */
596 static int
597may_adjust_incsearch_highlighting(
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200598 int firstc,
599 long count,
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200600 incsearch_state_T *is_state,
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200601 int c)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200602{
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200603 int skiplen, patlen;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200604 pos_T t;
605 char_u *pat;
606 int search_flags = SEARCH_NOOF;
607 int i;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200608 int save;
Bram Moolenaarc036e872020-02-21 21:30:52 +0100609 int search_delim;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200610
Bram Moolenaar198cb662018-09-06 21:44:17 +0200611 // Parsing range may already set the last search pattern.
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100612 // NOTE: must call restore_last_search_pattern() before returning!
Bram Moolenaar198cb662018-09-06 21:44:17 +0200613 save_last_search_pattern();
614
Bram Moolenaarc036e872020-02-21 21:30:52 +0100615 if (!do_incsearch_highlighting(firstc, &search_delim, is_state, &skiplen, &patlen))
Bram Moolenaar198cb662018-09-06 21:44:17 +0200616 {
617 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200618 return OK;
Bram Moolenaar198cb662018-09-06 21:44:17 +0200619 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200620 if (patlen == 0 && ccline.cmdbuff[skiplen] == NUL)
Bram Moolenaar198cb662018-09-06 21:44:17 +0200621 {
622 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200623 return FAIL;
Bram Moolenaar198cb662018-09-06 21:44:17 +0200624 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200625
Bram Moolenaarc036e872020-02-21 21:30:52 +0100626 if (search_delim == ccline.cmdbuff[skiplen])
Bram Moolenaaref73a282018-08-11 19:02:22 +0200627 {
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200628 pat = last_search_pattern();
Bram Moolenaaref73a282018-08-11 19:02:22 +0200629 skiplen = 0;
Bram Moolenaard7cc1632018-08-14 20:18:26 +0200630 patlen = (int)STRLEN(pat);
Bram Moolenaaref73a282018-08-11 19:02:22 +0200631 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200632 else
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200633 pat = ccline.cmdbuff + skiplen;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200634
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200635 cursor_off();
636 out_flush();
637 if (c == Ctrl_G)
638 {
639 t = is_state->match_end;
640 if (LT_POS(is_state->match_start, is_state->match_end))
641 // Start searching at the end of the match not at the beginning of
642 // the next column.
643 (void)decl(&t);
644 search_flags += SEARCH_COL;
645 }
646 else
647 t = is_state->match_start;
648 if (!p_hls)
649 search_flags += SEARCH_KEEP;
650 ++emsg_off;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200651 save = pat[patlen];
652 pat[patlen] = NUL;
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100653 i = searchit(curwin, curbuf, &t, NULL,
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200654 c == Ctrl_G ? FORWARD : BACKWARD,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200655 pat, count, search_flags, RE_SEARCH, NULL);
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200656 --emsg_off;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200657 pat[patlen] = save;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200658 if (i)
659 {
660 is_state->search_start = is_state->match_start;
661 is_state->match_end = t;
662 is_state->match_start = t;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200663 if (c == Ctrl_T && firstc != '?')
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200664 {
665 // Move just before the current match, so that when nv_search
666 // finishes the cursor will be put back on the match.
667 is_state->search_start = t;
668 (void)decl(&is_state->search_start);
669 }
670 else if (c == Ctrl_G && firstc == '?')
671 {
672 // Move just after the current match, so that when nv_search
673 // finishes the cursor will be put back on the match.
674 is_state->search_start = t;
675 (void)incl(&is_state->search_start);
676 }
677 if (LT_POS(t, is_state->search_start) && c == Ctrl_G)
678 {
679 // wrap around
680 is_state->search_start = t;
681 if (firstc == '?')
682 (void)incl(&is_state->search_start);
683 else
684 (void)decl(&is_state->search_start);
685 }
686
687 set_search_match(&is_state->match_end);
688 curwin->w_cursor = is_state->match_start;
689 changed_cline_bef_curs();
690 update_topline();
691 validate_cursor();
692 highlight_match = TRUE;
693 save_viewstate(&is_state->old_viewstate);
694 update_screen(NOT_VALID);
Bram Moolenaar7ab5d772019-10-26 20:45:24 +0200695 highlight_match = FALSE;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200696 redrawcmdline();
Bram Moolenaar69a5b862019-07-16 21:38:51 +0200697 curwin->w_cursor = is_state->match_end;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200698 }
699 else
700 vim_beep(BO_ERROR);
701 restore_last_search_pattern();
702 return FAIL;
703}
704
705/*
706 * When CTRL-L typed: add character from the match to the pattern.
707 * May set "*c" to the added character.
708 * Return OK when jumping to cmdline_not_changed.
709 */
710 static int
711may_add_char_to_search(int firstc, int *c, incsearch_state_T *is_state)
712{
Bram Moolenaarc036e872020-02-21 21:30:52 +0100713 int skiplen, patlen, search_delim;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200714
Bram Moolenaar198cb662018-09-06 21:44:17 +0200715 // Parsing range may already set the last search pattern.
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100716 // NOTE: must call restore_last_search_pattern() before returning!
Bram Moolenaar198cb662018-09-06 21:44:17 +0200717 save_last_search_pattern();
718
Bram Moolenaar9b7cce22020-06-06 15:14:08 +0200719 if (!do_incsearch_highlighting(firstc, &search_delim, is_state,
720 &skiplen, &patlen))
Bram Moolenaar198cb662018-09-06 21:44:17 +0200721 {
722 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200723 return FAIL;
Bram Moolenaar198cb662018-09-06 21:44:17 +0200724 }
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100725 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200726
727 // Add a character from under the cursor for 'incsearch'.
728 if (is_state->did_incsearch)
729 {
730 curwin->w_cursor = is_state->match_end;
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200731 *c = gchar_cursor();
732 if (*c != NUL)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200733 {
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200734 // If 'ignorecase' and 'smartcase' are set and the
735 // command line has no uppercase characters, convert
736 // the character to lowercase.
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200737 if (p_ic && p_scs && !pat_has_uppercase(ccline.cmdbuff + skiplen))
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200738 *c = MB_TOLOWER(*c);
Bram Moolenaarc036e872020-02-21 21:30:52 +0100739 if (*c == search_delim || vim_strchr((char_u *)(
Bram Moolenaarf4e20992020-12-21 19:59:08 +0100740 magic_isset() ? "\\~^$.*[" : "\\^$"), *c) != NULL)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200741 {
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200742 // put a backslash before special characters
743 stuffcharReadbuff(*c);
744 *c = '\\';
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200745 }
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200746 // add any composing characters
747 if (mb_char2len(*c) != mb_ptr2len(ml_get_cursor()))
748 {
749 int save_c = *c;
750
751 while (mb_char2len(*c) != mb_ptr2len(ml_get_cursor()))
752 {
753 curwin->w_cursor.col += mb_char2len(*c);
754 *c = gchar_cursor();
755 stuffcharReadbuff(*c);
756 }
757 *c = save_c;
758 }
759 return FAIL;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200760 }
761 }
762 return OK;
763}
Bram Moolenaar9b25af32018-04-28 13:56:09 +0200764#endif
765
Bram Moolenaar693f7dc2019-06-21 02:30:38 +0200766#ifdef FEAT_ARABIC
767/*
768 * Return TRUE if the command line has an Arabic character at or after "start"
769 * for "len" bytes.
770 */
771 static int
772cmdline_has_arabic(int start, int len)
773{
774 int j;
775 int mb_l;
776 int u8c;
777 char_u *p;
778 int u8cc[MAX_MCO];
779
780 if (!enc_utf8)
781 return FALSE;
782
783 for (j = start; j < start + len; j += mb_l)
784 {
785 p = ccline.cmdbuff + j;
786 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
787 mb_l = utfc_ptr2len_len(p, start + len - j);
788 if (ARABIC_CHAR(u8c))
789 return TRUE;
790 }
791 return FALSE;
792}
793#endif
794
Bram Moolenaard3dc0622018-09-30 17:45:30 +0200795 void
796cmdline_init(void)
797{
Bram Moolenaara80faa82020-04-12 19:37:17 +0200798 CLEAR_FIELD(ccline);
Bram Moolenaard3dc0622018-09-30 17:45:30 +0200799}
800
Bram Moolenaar66216052017-12-16 16:33:44 +0100801/*
Bram Moolenaar9c929712020-09-07 22:05:28 +0200802 * Handle the backslash key pressed in the command-line mode. CTRL-\ CTRL-N
803 * goes to Normal mode, CTRL-\ CTRL-G goes to Insert mode when 'insertmode' is
804 * set, CTRL-\ e prompts for an expression.
805 */
806 static int
807cmdline_handle_backslash_key(int c, int *gotesc)
808{
809 ++no_mapping;
810 ++allow_keys;
811 c = plain_vgetc();
812 --no_mapping;
813 --allow_keys;
814
815 // CTRL-\ e doesn't work when obtaining an expression, unless it
816 // is in a mapping.
817 if (c != Ctrl_N && c != Ctrl_G && (c != 'e'
818 || (ccline.cmdfirstc == '=' && KeyTyped)
819#ifdef FEAT_EVAL
820 || cmdline_star > 0
821#endif
822 ))
823 {
824 vungetc(c);
825 return PROCESS_NEXT_KEY;
826 }
827
828#ifdef FEAT_EVAL
829 if (c == 'e')
830 {
831 char_u *p = NULL;
832 int len;
833
834 /*
835 * Replace the command line with the result of an expression.
836 * Need to save and restore the current command line, to be
837 * able to enter a new one...
838 */
839 if (ccline.cmdpos == ccline.cmdlen)
840 new_cmdpos = 99999; // keep it at the end
841 else
842 new_cmdpos = ccline.cmdpos;
843
844 c = get_expr_register();
845 if (c == '=')
846 {
847 // Need to save and restore ccline. And set "textwinlock"
848 // to avoid nasty things like going to another buffer when
849 // evaluating an expression.
850 ++textwinlock;
851 p = get_expr_line();
852 --textwinlock;
853
854 if (p != NULL)
855 {
856 len = (int)STRLEN(p);
857 if (realloc_cmdbuff(len + 1) == OK)
858 {
859 ccline.cmdlen = len;
860 STRCPY(ccline.cmdbuff, p);
861 vim_free(p);
862
863 // Restore the cursor or use the position set with
864 // set_cmdline_pos().
865 if (new_cmdpos > ccline.cmdlen)
866 ccline.cmdpos = ccline.cmdlen;
867 else
868 ccline.cmdpos = new_cmdpos;
869
870 KeyTyped = FALSE; // Don't do p_wc completion.
871 redrawcmd();
872 return CMDLINE_CHANGED;
873 }
874 vim_free(p);
875 }
876 }
877 beep_flush();
878 got_int = FALSE; // don't abandon the command line
879 did_emsg = FALSE;
880 emsg_on_display = FALSE;
881 redrawcmd();
882 return CMDLINE_NOT_CHANGED;
883 }
884#endif
885
886 if (c == Ctrl_G && p_im && restart_edit == 0)
887 restart_edit = 'a';
888 *gotesc = TRUE; // will free ccline.cmdbuff after putting it
889 // in history
890 return GOTO_NORMAL_MODE;
891}
892
893/*
894 * Completion for 'wildchar' or 'wildcharm' key.
895 * - hitting <ESC> twice means: abandon command line.
896 * - wildcard expansion is only done when the 'wildchar' key is really
897 * typed, not when it comes from a macro
898 * Returns CMDLINE_CHANGED if command line is changed or CMDLINE_NOT_CHANGED.
899 */
900 static int
901cmdline_wildchar_complete(
902 int c,
903 int escape,
904 int *did_wild_list,
905 int *wim_index_p,
906 expand_T *xp,
907 int *gotesc)
908{
909 int wim_index = *wim_index_p;
910 int res;
911 int j;
912 int options = WILD_NO_BEEP;
913
914 if (wim_flags[wim_index] & WIM_BUFLASTUSED)
915 options |= WILD_BUFLASTUSED;
916 if (xp->xp_numfiles > 0) // typed p_wc at least twice
917 {
918 // if 'wildmode' contains "list" may still need to list
919 if (xp->xp_numfiles > 1
920 && !*did_wild_list
921 && (wim_flags[wim_index] & WIM_LIST))
922 {
923 (void)showmatches(xp, FALSE);
924 redrawcmd();
925 *did_wild_list = TRUE;
926 }
927 if (wim_flags[wim_index] & WIM_LONGEST)
928 res = nextwild(xp, WILD_LONGEST, options, escape);
929 else if (wim_flags[wim_index] & WIM_FULL)
930 res = nextwild(xp, WILD_NEXT, options, escape);
931 else
932 res = OK; // don't insert 'wildchar' now
933 }
934 else // typed p_wc first time
935 {
936 wim_index = 0;
937 j = ccline.cmdpos;
938 // if 'wildmode' first contains "longest", get longest
939 // common part
940 if (wim_flags[0] & WIM_LONGEST)
941 res = nextwild(xp, WILD_LONGEST, options, escape);
942 else
943 res = nextwild(xp, WILD_EXPAND_KEEP, options, escape);
944
945 // if interrupted while completing, behave like it failed
946 if (got_int)
947 {
948 (void)vpeekc(); // remove <C-C> from input stream
949 got_int = FALSE; // don't abandon the command line
950 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
951#ifdef FEAT_WILDMENU
952 xp->xp_context = EXPAND_NOTHING;
953#endif
954 *wim_index_p = wim_index;
955 return CMDLINE_CHANGED;
956 }
957
958 // when more than one match, and 'wildmode' first contains
959 // "list", or no change and 'wildmode' contains "longest,list",
960 // list all matches
961 if (res == OK && xp->xp_numfiles > 1)
962 {
963 // a "longest" that didn't do anything is skipped (but not
964 // "list:longest")
965 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j)
966 wim_index = 1;
967 if ((wim_flags[wim_index] & WIM_LIST)
968#ifdef FEAT_WILDMENU
969 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0)
970#endif
971 )
972 {
973 if (!(wim_flags[0] & WIM_LONGEST))
974 {
975#ifdef FEAT_WILDMENU
976 int p_wmnu_save = p_wmnu;
977 p_wmnu = 0;
978#endif
979 // remove match
980 nextwild(xp, WILD_PREV, 0, escape);
981#ifdef FEAT_WILDMENU
982 p_wmnu = p_wmnu_save;
983#endif
984 }
985#ifdef FEAT_WILDMENU
986 (void)showmatches(xp, p_wmnu
987 && ((wim_flags[wim_index] & WIM_LIST) == 0));
988#else
989 (void)showmatches(xp, FALSE);
990#endif
991 redrawcmd();
992 *did_wild_list = TRUE;
993 if (wim_flags[wim_index] & WIM_LONGEST)
994 nextwild(xp, WILD_LONGEST, options, escape);
995 else if (wim_flags[wim_index] & WIM_FULL)
996 nextwild(xp, WILD_NEXT, options, escape);
997 }
998 else
999 vim_beep(BO_WILD);
1000 }
1001#ifdef FEAT_WILDMENU
1002 else if (xp->xp_numfiles == -1)
1003 xp->xp_context = EXPAND_NOTHING;
1004#endif
1005 }
1006 if (wim_index < 3)
1007 ++wim_index;
1008 if (c == ESC)
1009 *gotesc = TRUE;
1010
1011 *wim_index_p = wim_index;
1012 return (res == OK) ? CMDLINE_CHANGED : CMDLINE_NOT_CHANGED;
1013}
1014
1015/*
Bram Moolenaar2f3cd2e2020-09-06 15:54:00 +02001016 * Handle backspace, delete and CTRL-W keys in the command-line mode.
1017 * Returns:
1018 * CMDLINE_NOT_CHANGED - if the command line is not changed
1019 * CMDLINE_CHANGED - if the command line is changed
1020 * GOTO_NORMAL_MODE - go back to normal mode
1021 */
1022 static int
1023cmdline_erase_chars(
1024 int c,
1025 int indent
1026#ifdef FEAT_SEARCH_EXTRA
1027 , incsearch_state_T *isp
1028#endif
1029 )
1030{
1031 int i;
1032 int j;
1033
1034 if (c == K_KDEL)
1035 c = K_DEL;
1036
1037 /*
1038 * Delete current character is the same as backspace on next
1039 * character, except at end of line.
1040 */
1041 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen)
1042 ++ccline.cmdpos;
1043 if (has_mbyte && c == K_DEL)
1044 ccline.cmdpos += mb_off_next(ccline.cmdbuff,
1045 ccline.cmdbuff + ccline.cmdpos);
1046 if (ccline.cmdpos > 0)
1047 {
1048 char_u *p;
1049
1050 j = ccline.cmdpos;
1051 p = ccline.cmdbuff + j;
1052 if (has_mbyte)
1053 {
1054 p = mb_prevptr(ccline.cmdbuff, p);
1055 if (c == Ctrl_W)
1056 {
1057 while (p > ccline.cmdbuff && vim_isspace(*p))
1058 p = mb_prevptr(ccline.cmdbuff, p);
1059 i = mb_get_class(p);
1060 while (p > ccline.cmdbuff && mb_get_class(p) == i)
1061 p = mb_prevptr(ccline.cmdbuff, p);
1062 if (mb_get_class(p) != i)
1063 p += (*mb_ptr2len)(p);
1064 }
1065 }
1066 else if (c == Ctrl_W)
1067 {
1068 while (p > ccline.cmdbuff && vim_isspace(p[-1]))
1069 --p;
1070 i = vim_iswordc(p[-1]);
1071 while (p > ccline.cmdbuff && !vim_isspace(p[-1])
1072 && vim_iswordc(p[-1]) == i)
1073 --p;
1074 }
1075 else
1076 --p;
1077 ccline.cmdpos = (int)(p - ccline.cmdbuff);
1078 ccline.cmdlen -= j - ccline.cmdpos;
1079 i = ccline.cmdpos;
1080 while (i < ccline.cmdlen)
1081 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1082
1083 // Truncate at the end, required for multi-byte chars.
1084 ccline.cmdbuff[ccline.cmdlen] = NUL;
1085#ifdef FEAT_SEARCH_EXTRA
1086 if (ccline.cmdlen == 0)
1087 {
1088 isp->search_start = isp->save_cursor;
1089 // save view settings, so that the screen
1090 // won't be restored at the wrong position
1091 isp->old_viewstate = isp->init_viewstate;
1092 }
1093#endif
1094 redrawcmd();
1095 }
1096 else if (ccline.cmdlen == 0 && c != Ctrl_W
1097 && ccline.cmdprompt == NULL && indent == 0)
1098 {
1099 // In ex and debug mode it doesn't make sense to return.
1100 if (exmode_active
1101#ifdef FEAT_EVAL
1102 || ccline.cmdfirstc == '>'
1103#endif
1104 )
1105 return CMDLINE_NOT_CHANGED;
1106
1107 VIM_CLEAR(ccline.cmdbuff); // no commandline to return
1108 if (!cmd_silent)
1109 {
1110#ifdef FEAT_RIGHTLEFT
1111 if (cmdmsg_rl)
1112 msg_col = Columns;
1113 else
1114#endif
1115 msg_col = 0;
1116 msg_putchar(' '); // delete ':'
1117 }
1118#ifdef FEAT_SEARCH_EXTRA
1119 if (ccline.cmdlen == 0)
1120 isp->search_start = isp->save_cursor;
1121#endif
1122 redraw_cmdline = TRUE;
1123 return GOTO_NORMAL_MODE;
1124 }
1125 return CMDLINE_CHANGED;
1126}
1127
1128/*
1129 * Handle the CTRL-^ key in the command-line mode and toggle the use of the
1130 * language :lmap mappings and/or Input Method.
1131 */
1132 static void
1133cmdline_toggle_langmap(long *b_im_ptr)
1134{
1135 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
1136 {
1137 // ":lmap" mappings exists, toggle use of mappings.
1138 State ^= LANGMAP;
1139#ifdef HAVE_INPUT_METHOD
1140 im_set_active(FALSE); // Disable input method
1141#endif
1142 if (b_im_ptr != NULL)
1143 {
1144 if (State & LANGMAP)
1145 *b_im_ptr = B_IMODE_LMAP;
1146 else
1147 *b_im_ptr = B_IMODE_NONE;
1148 }
1149 }
1150#ifdef HAVE_INPUT_METHOD
1151 else
1152 {
1153 // There are no ":lmap" mappings, toggle IM. When
1154 // 'imdisable' is set don't try getting the status, it's
1155 // always off.
1156 if ((p_imdisable && b_im_ptr != NULL)
1157 ? *b_im_ptr == B_IMODE_IM : im_get_status())
1158 {
1159 im_set_active(FALSE); // Disable input method
1160 if (b_im_ptr != NULL)
1161 *b_im_ptr = B_IMODE_NONE;
1162 }
1163 else
1164 {
1165 im_set_active(TRUE); // Enable input method
1166 if (b_im_ptr != NULL)
1167 *b_im_ptr = B_IMODE_IM;
1168 }
1169 }
1170#endif
1171 if (b_im_ptr != NULL)
1172 {
1173 if (b_im_ptr == &curbuf->b_p_iminsert)
1174 set_iminsert_global();
1175 else
1176 set_imsearch_global();
1177 }
1178#ifdef CURSOR_SHAPE
1179 ui_cursor_shape(); // may show different cursor shape
1180#endif
1181#if defined(FEAT_KEYMAP)
1182 // Show/unshow value of 'keymap' in status lines later.
1183 status_redraw_curbuf();
1184#endif
1185}
1186
1187/*
1188 * Handle the CTRL-R key in the command-line mode and insert the contents of a
1189 * numbered or named register.
1190 */
1191 static int
1192cmdline_insert_reg(int *gotesc UNUSED)
1193{
1194 int i;
1195 int c;
1196
1197#ifdef USE_ON_FLY_SCROLL
1198 dont_scroll = TRUE; // disallow scrolling here
1199#endif
1200 putcmdline('"', TRUE);
1201 ++no_mapping;
1202 ++allow_keys;
1203 i = c = plain_vgetc(); // CTRL-R <char>
1204 if (i == Ctrl_O)
1205 i = Ctrl_R; // CTRL-R CTRL-O == CTRL-R CTRL-R
1206 if (i == Ctrl_R)
1207 c = plain_vgetc(); // CTRL-R CTRL-R <char>
1208 extra_char = NUL;
1209 --no_mapping;
1210 --allow_keys;
1211#ifdef FEAT_EVAL
1212 /*
1213 * Insert the result of an expression.
1214 * Need to save the current command line, to be able to enter
1215 * a new one...
1216 */
1217 new_cmdpos = -1;
1218 if (c == '=')
1219 {
1220 if (ccline.cmdfirstc == '=' // can't do this recursively
1221 || cmdline_star > 0) // or when typing a password
1222 {
1223 beep_flush();
1224 c = ESC;
1225 }
1226 else
1227 c = get_expr_register();
1228 }
1229#endif
1230 if (c != ESC) // use ESC to cancel inserting register
1231 {
1232 cmdline_paste(c, i == Ctrl_R, FALSE);
1233
1234#ifdef FEAT_EVAL
1235 // When there was a serious error abort getting the
1236 // command line.
1237 if (aborting())
1238 {
1239 *gotesc = TRUE; // will free ccline.cmdbuff after
1240 // putting it in history
1241 return GOTO_NORMAL_MODE;
1242 }
1243#endif
1244 KeyTyped = FALSE; // Don't do p_wc completion.
1245#ifdef FEAT_EVAL
1246 if (new_cmdpos >= 0)
1247 {
1248 // set_cmdline_pos() was used
1249 if (new_cmdpos > ccline.cmdlen)
1250 ccline.cmdpos = ccline.cmdlen;
1251 else
1252 ccline.cmdpos = new_cmdpos;
1253 }
1254#endif
1255 }
1256 redrawcmd();
1257 return CMDLINE_CHANGED;
1258}
1259
1260/*
1261 * Handle the Left and Right mouse clicks in the command-line mode.
1262 */
1263 static void
1264cmdline_left_right_mouse(int c, int *ignore_drag_release)
1265{
1266 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE)
1267 *ignore_drag_release = TRUE;
1268 else
1269 *ignore_drag_release = FALSE;
1270# ifdef FEAT_GUI
1271 // When GUI is active, also move when 'mouse' is empty
1272 if (!gui.in_use)
1273# endif
1274 if (!mouse_has(MOUSE_COMMAND))
1275 return;
1276# ifdef FEAT_CLIPBOARD
1277 if (mouse_row < cmdline_row && clip_star.available)
1278 {
1279 int button, is_click, is_drag;
1280
1281 /*
1282 * Handle modeless selection.
1283 */
1284 button = get_mouse_button(KEY2TERMCAP1(c),
1285 &is_click, &is_drag);
1286 if (mouse_model_popup() && button == MOUSE_LEFT
1287 && (mod_mask & MOD_MASK_SHIFT))
1288 {
1289 // Translate shift-left to right button.
1290 button = MOUSE_RIGHT;
1291 mod_mask &= ~MOD_MASK_SHIFT;
1292 }
1293 clip_modeless(button, is_click, is_drag);
1294 return;
1295 }
1296# endif
1297
1298 set_cmdspos();
1299 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen;
1300 ++ccline.cmdpos)
1301 {
1302 int i;
1303
1304 i = cmdline_charsize(ccline.cmdpos);
1305 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns
1306 && mouse_col < ccline.cmdspos % Columns + i)
1307 break;
1308 if (has_mbyte)
1309 {
1310 // Count ">" for double-wide char that doesn't fit.
1311 correct_cmdspos(ccline.cmdpos, i);
1312 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
1313 + ccline.cmdpos) - 1;
1314 }
1315 ccline.cmdspos += i;
1316 }
1317}
1318
1319/*
1320 * Handle the Up, Down, Page Up, Page down, CTRL-N and CTRL-P key in the
1321 * command-line mode. The pressed key is in 'c'.
1322 * Returns:
1323 * CMDLINE_NOT_CHANGED - if the command line is not changed
1324 * CMDLINE_CHANGED - if the command line is changed
1325 * GOTO_NORMAL_MODE - go back to normal mode
1326 */
1327 static int
1328cmdline_browse_history(
1329 int c,
1330 int firstc,
1331 char_u **curcmdstr,
1332 int histype,
1333 int *hiscnt_p,
1334 expand_T *xp)
1335{
1336 int i;
1337 int j;
1338 char_u *lookfor = *curcmdstr;
1339 int hiscnt = *hiscnt_p;
1340 int res;
1341
1342 if (get_hislen() == 0 || firstc == NUL) // no history
1343 return CMDLINE_NOT_CHANGED;
1344
1345 i = hiscnt;
1346
1347 // save current command string so it can be restored later
1348 if (lookfor == NULL)
1349 {
1350 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL)
1351 return CMDLINE_NOT_CHANGED;
1352 lookfor[ccline.cmdpos] = NUL;
1353 }
1354
1355 j = (int)STRLEN(lookfor);
1356 for (;;)
1357 {
1358 // one step backwards
1359 if (c == K_UP|| c == K_S_UP || c == Ctrl_P
1360 || c == K_PAGEUP || c == K_KPAGEUP)
1361 {
1362 if (hiscnt == get_hislen()) // first time
1363 hiscnt = *get_hisidx(histype);
1364 else if (hiscnt == 0 && *get_hisidx(histype)
1365 != get_hislen() - 1)
1366 hiscnt = get_hislen() - 1;
1367 else if (hiscnt != *get_hisidx(histype) + 1)
1368 --hiscnt;
1369 else // at top of list
1370 {
1371 hiscnt = i;
1372 break;
1373 }
1374 }
1375 else // one step forwards
1376 {
1377 // on last entry, clear the line
1378 if (hiscnt == *get_hisidx(histype))
1379 {
1380 hiscnt = get_hislen();
1381 break;
1382 }
1383
1384 // not on a history line, nothing to do
1385 if (hiscnt == get_hislen())
1386 break;
1387 if (hiscnt == get_hislen() - 1) // wrap around
1388 hiscnt = 0;
1389 else
1390 ++hiscnt;
1391 }
1392 if (hiscnt < 0 || get_histentry(histype)[hiscnt].hisstr
1393 == NULL)
1394 {
1395 hiscnt = i;
1396 break;
1397 }
1398 if ((c != K_UP && c != K_DOWN)
1399 || hiscnt == i
1400 || STRNCMP(get_histentry(histype)[hiscnt].hisstr,
1401 lookfor, (size_t)j) == 0)
1402 break;
1403 }
1404
1405 if (hiscnt != i) // jumped to other entry
1406 {
1407 char_u *p;
1408 int len;
1409 int old_firstc;
1410
1411 VIM_CLEAR(ccline.cmdbuff);
1412 xp->xp_context = EXPAND_NOTHING;
1413 if (hiscnt == get_hislen())
1414 p = lookfor; // back to the old one
1415 else
1416 p = get_histentry(histype)[hiscnt].hisstr;
1417
1418 if (histype == HIST_SEARCH
1419 && p != lookfor
1420 && (old_firstc = p[STRLEN(p) + 1]) != firstc)
1421 {
1422 // Correct for the separator character used when
1423 // adding the history entry vs the one used now.
1424 // First loop: count length.
1425 // Second loop: copy the characters.
1426 for (i = 0; i <= 1; ++i)
1427 {
1428 len = 0;
1429 for (j = 0; p[j] != NUL; ++j)
1430 {
1431 // Replace old sep with new sep, unless it is
1432 // escaped.
1433 if (p[j] == old_firstc
1434 && (j == 0 || p[j - 1] != '\\'))
1435 {
1436 if (i > 0)
1437 ccline.cmdbuff[len] = firstc;
1438 }
1439 else
1440 {
1441 // Escape new sep, unless it is already
1442 // escaped.
1443 if (p[j] == firstc
1444 && (j == 0 || p[j - 1] != '\\'))
1445 {
1446 if (i > 0)
1447 ccline.cmdbuff[len] = '\\';
1448 ++len;
1449 }
1450 if (i > 0)
1451 ccline.cmdbuff[len] = p[j];
1452 }
1453 ++len;
1454 }
1455 if (i == 0)
1456 {
1457 alloc_cmdbuff(len);
1458 if (ccline.cmdbuff == NULL)
1459 {
1460 res = GOTO_NORMAL_MODE;
1461 goto done;
1462 }
1463 }
1464 }
1465 ccline.cmdbuff[len] = NUL;
1466 }
1467 else
1468 {
1469 alloc_cmdbuff((int)STRLEN(p));
1470 if (ccline.cmdbuff == NULL)
1471 {
1472 res = GOTO_NORMAL_MODE;
1473 goto done;
1474 }
1475 STRCPY(ccline.cmdbuff, p);
1476 }
1477
1478 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
1479 redrawcmd();
1480 res = CMDLINE_CHANGED;
1481 goto done;
1482 }
1483 beep_flush();
1484 res = CMDLINE_NOT_CHANGED;
1485
1486done:
1487 *curcmdstr = lookfor;
1488 *hiscnt_p = hiscnt;
1489 return res;
1490}
1491
1492/*
Bram Moolenaar9c929712020-09-07 22:05:28 +02001493 * Initialize the current command-line info.
1494 */
1495 static int
1496init_ccline(int firstc, int indent)
1497{
1498 ccline.overstrike = FALSE; // always start in insert mode
1499
1500 /*
1501 * set some variables for redrawcmd()
1502 */
1503 ccline.cmdfirstc = (firstc == '@' ? 0 : firstc);
1504 ccline.cmdindent = (firstc > 0 ? indent : 0);
1505
1506 // alloc initial ccline.cmdbuff
1507 alloc_cmdbuff(exmode_active ? 250 : indent + 1);
1508 if (ccline.cmdbuff == NULL)
1509 return FAIL;
1510 ccline.cmdlen = ccline.cmdpos = 0;
1511 ccline.cmdbuff[0] = NUL;
1512 sb_text_start_cmdline();
1513
1514 // autoindent for :insert and :append
1515 if (firstc <= 0)
1516 {
1517 vim_memset(ccline.cmdbuff, ' ', indent);
1518 ccline.cmdbuff[indent] = NUL;
1519 ccline.cmdpos = indent;
1520 ccline.cmdspos = indent;
1521 ccline.cmdlen = indent;
1522 }
1523
1524 return OK;
1525}
1526
1527/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528 * getcmdline() - accept a command line starting with firstc.
1529 *
1530 * firstc == ':' get ":" command line.
1531 * firstc == '/' or '?' get search pattern
1532 * firstc == '=' get expression
1533 * firstc == '@' get text for input() function
1534 * firstc == '>' get text for debug mode
1535 * firstc == NUL get text for :insert command
1536 * firstc == -1 like NUL, and break on CTRL-C
1537 *
1538 * The line is collected in ccline.cmdbuff, which is reallocated to fit the
1539 * command line.
1540 *
1541 * Careful: getcmdline() can be called recursively!
1542 *
1543 * Return pointer to allocated string if there is a commandline, NULL
1544 * otherwise.
1545 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001547getcmdline(
1548 int firstc,
Bram Moolenaar438d1762018-09-30 17:11:48 +02001549 long count, // only used for incremental search
Bram Moolenaare96a2492019-06-25 04:12:16 +02001550 int indent, // indent for inside conditionals
1551 int do_concat UNUSED)
Bram Moolenaar438d1762018-09-30 17:11:48 +02001552{
1553 return getcmdline_int(firstc, count, indent, TRUE);
1554}
1555
1556 static char_u *
1557getcmdline_int(
1558 int firstc,
1559 long count UNUSED, // only used for incremental search
1560 int indent, // indent for inside conditionals
Bram Moolenaar9c929712020-09-07 22:05:28 +02001561 int clear_ccline) // clear ccline first
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562{
1563 int c;
1564 int i;
1565 int j;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001566 int gotesc = FALSE; // TRUE when <ESC> just typed
1567 int do_abbr; // when TRUE check for abbr.
1568 char_u *lookfor = NULL; // string to match
1569 int hiscnt; // current history line in use
1570 int histype; // history type to be used
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001572 incsearch_state_T is_state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573#endif
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001574 int did_wild_list = FALSE; // did wild_list() recently
1575 int wim_index = 0; // index in wim_flags[]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 int res;
1577 int save_msg_scroll = msg_scroll;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001578 int save_State = State; // remember State when called
1579 int some_key_typed = FALSE; // one of the keys was typed
1580 // mouse drag and release events are ignored, unless they are
1581 // preceded with a mouse down event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 int ignore_drag_release = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583#ifdef FEAT_EVAL
1584 int break_ctrl_c = FALSE;
1585#endif
1586 expand_T xpc;
1587 long *b_im_ptr = NULL;
Bram Moolenaar66b51422019-08-18 21:44:12 +02001588 cmdline_info_T save_ccline;
Bram Moolenaar438d1762018-09-30 17:11:48 +02001589 int did_save_ccline = FALSE;
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02001590 int cmdline_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591
Bram Moolenaar438d1762018-09-30 17:11:48 +02001592 if (ccline.cmdbuff != NULL)
1593 {
1594 // Being called recursively. Since ccline is global, we need to save
1595 // the current buffer and restore it when returning.
1596 save_cmdline(&save_ccline);
1597 did_save_ccline = TRUE;
1598 }
Bram Moolenaar9c929712020-09-07 22:05:28 +02001599 if (clear_ccline)
Bram Moolenaara80faa82020-04-12 19:37:17 +02001600 CLEAR_FIELD(ccline);
Bram Moolenaar438d1762018-09-30 17:11:48 +02001601
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602#ifdef FEAT_EVAL
1603 if (firstc == -1)
1604 {
1605 firstc = NUL;
1606 break_ctrl_c = TRUE;
1607 }
1608#endif
1609#ifdef FEAT_RIGHTLEFT
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001610 // start without Hebrew mapping for a command line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 if (firstc == ':' || firstc == '=' || firstc == '>')
1612 cmd_hkmap = 0;
1613#endif
1614
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001616 init_incsearch_state(&is_state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617#endif
1618
Bram Moolenaar9c929712020-09-07 22:05:28 +02001619 if (init_ccline(firstc, indent) != OK)
Bram Moolenaar438d1762018-09-30 17:11:48 +02001620 goto theend; // out of memory
Bram Moolenaar4399ef42005-02-12 14:29:27 +00001621
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622 ExpandInit(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001623 ccline.xpc = &xpc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624
1625#ifdef FEAT_RIGHTLEFT
1626 if (curwin->w_p_rl && *curwin->w_p_rlc == 's'
1627 && (firstc == '/' || firstc == '?'))
1628 cmdmsg_rl = TRUE;
1629 else
1630 cmdmsg_rl = FALSE;
1631#endif
1632
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001633 redir_off = TRUE; // don't redirect the typed command
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 if (!cmd_silent)
1635 {
1636 i = msg_scrolled;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001637 msg_scrolled = 0; // avoid wait_return message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 gotocmdline(TRUE);
1639 msg_scrolled += i;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001640 redrawcmdprompt(); // draw prompt or indent
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 set_cmdspos();
1642 }
1643 xpc.xp_context = EXPAND_NOTHING;
1644 xpc.xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001645#ifndef BACKSLASH_IN_FILENAME
1646 xpc.xp_shell = FALSE;
1647#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001649#if defined(FEAT_EVAL)
1650 if (ccline.input_fn)
1651 {
1652 xpc.xp_context = ccline.xp_context;
1653 xpc.xp_pattern = ccline.cmdbuff;
1654 xpc.xp_arg = ccline.xp_arg;
1655 }
1656#endif
1657
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658 /*
1659 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when
1660 * doing ":@0" when register 0 doesn't contain a CR.
1661 */
1662 msg_scroll = FALSE;
1663
1664 State = CMDLINE;
1665
1666 if (firstc == '/' || firstc == '?' || firstc == '@')
1667 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001668 // Use ":lmap" mappings for search pattern and input().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT)
1670 b_im_ptr = &curbuf->b_p_iminsert;
1671 else
1672 b_im_ptr = &curbuf->b_p_imsearch;
1673 if (*b_im_ptr == B_IMODE_LMAP)
1674 State |= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001675#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 im_set_active(*b_im_ptr == B_IMODE_IM);
1677#endif
1678 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001679#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001680 else if (p_imcmdline)
1681 im_set_active(TRUE);
1682#endif
1683
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685#ifdef CURSOR_SHAPE
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001686 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687#endif
1688
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001689 // When inside an autocommand for writing "exiting" may be set and
1690 // terminal mode set to cooked. Need to set raw mode here then.
Bram Moolenaarf4d11452005-12-02 00:46:37 +00001691 settmode(TMODE_RAW);
1692
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001693 // Trigger CmdlineEnter autocommands.
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02001694 cmdline_type = firstc == NUL ? '-' : firstc;
1695 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINEENTER);
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02001696
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 init_history();
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001698 hiscnt = get_hislen(); // set hiscnt to impossible history value
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699 histype = hist_char2type(firstc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700
1701#ifdef FEAT_DIGRAPHS
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001702 do_digraph(-1); // init digraph typeahead
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703#endif
1704
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001705 // If something above caused an error, reset the flags, we do want to type
1706 // and execute commands. Display may be messed up a bit.
Bram Moolenaar15a35c42014-06-25 12:26:46 +02001707 if (did_emsg)
1708 redrawcmd();
1709 did_emsg = FALSE;
1710 got_int = FALSE;
1711
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712 /*
1713 * Collect the command string, handling editing keys.
1714 */
1715 for (;;)
1716 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001717 redir_off = TRUE; // Don't redirect the typed command.
1718 // Repeated, because a ":redir" inside
1719 // completion may switch it on.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001721 dont_scroll = FALSE; // allow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722#endif
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001723 quit_more = FALSE; // reset after CTRL-D which had a more-prompt
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001725 did_emsg = FALSE; // There can't really be a reason why an error
1726 // that occurs while typing a command should
1727 // cause the command not to be executed.
Bram Moolenaar72532d32018-04-07 19:09:09 +02001728
Bram Moolenaar8aeec402019-09-15 23:02:04 +02001729 // Trigger SafeState if nothing is pending.
1730 may_trigger_safestate(xpc.xp_numfiles <= 0);
1731
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001732 // Get a character. Ignore K_IGNORE and K_NOP, they should not do
1733 // anything, such as stop completion.
Bram Moolenaar30405d32008-01-02 20:55:27 +00001734 do
Bram Moolenaarf4d61bc2020-11-14 14:22:28 +01001735 {
1736 cursorcmd(); // set the cursor on the right spot
Bram Moolenaar30405d32008-01-02 20:55:27 +00001737 c = safe_vgetc();
Bram Moolenaarf4d61bc2020-11-14 14:22:28 +01001738 } while (c == K_IGNORE || c == K_NOP);
Bram Moolenaar30405d32008-01-02 20:55:27 +00001739
Bram Moolenaar957cf672020-11-12 14:21:06 +01001740 if (c == K_COMMAND
1741 && do_cmdline(NULL, getcmdkeycmd, NULL, DOCMD_NOWAIT) == OK)
1742 goto cmdline_changed;
1743
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 if (KeyTyped)
1745 {
1746 some_key_typed = TRUE;
1747#ifdef FEAT_RIGHTLEFT
1748 if (cmd_hkmap)
1749 c = hkmap(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 if (cmdmsg_rl && !KeyStuffed)
1751 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001752 // Invert horizontal movements and operations. Only when
1753 // typed by the user directly, not when the result of a
1754 // mapping.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 switch (c)
1756 {
1757 case K_RIGHT: c = K_LEFT; break;
1758 case K_S_RIGHT: c = K_S_LEFT; break;
1759 case K_C_RIGHT: c = K_C_LEFT; break;
1760 case K_LEFT: c = K_RIGHT; break;
1761 case K_S_LEFT: c = K_S_RIGHT; break;
1762 case K_C_LEFT: c = K_C_RIGHT; break;
1763 }
1764 }
1765#endif
1766 }
1767
1768 /*
1769 * Ignore got_int when CTRL-C was typed here.
1770 * Don't ignore it in :global, we really need to break then, e.g., for
1771 * ":g/pat/normal /pat" (without the <CR>).
1772 * Don't ignore it for the input() function.
1773 */
1774 if ((c == Ctrl_C
1775#ifdef UNIX
1776 || c == intr_char
1777#endif
1778 )
1779#if defined(FEAT_EVAL) || defined(FEAT_CRYPT)
1780 && firstc != '@'
1781#endif
1782#ifdef FEAT_EVAL
1783 && !break_ctrl_c
1784#endif
1785 && !global_busy)
1786 got_int = FALSE;
1787
Bram Moolenaard7663c22019-08-06 21:59:57 +02001788 // free old command line when finished moving around in the history
1789 // list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 if (lookfor != NULL
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001791 && c != K_S_DOWN && c != K_S_UP
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001792 && c != K_DOWN && c != K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 && c != K_PAGEDOWN && c != K_PAGEUP
1794 && c != K_KPAGEDOWN && c != K_KPAGEUP
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001795 && c != K_LEFT && c != K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N)))
Bram Moolenaard23a8232018-02-10 18:45:26 +01001797 VIM_CLEAR(lookfor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798
1799 /*
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001800 * When there are matching completions to select <S-Tab> works like
1801 * CTRL-P (unless 'wc' is <S-Tab>).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 */
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001803 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804 c = Ctrl_P;
1805
1806#ifdef FEAT_WILDMENU
Bram Moolenaareadee482020-09-04 15:37:31 +02001807 c = wildmenu_translate_key(&ccline, c, &xpc, did_wild_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808#endif
1809
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001810 // free expanded names when finished walking through matches
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 if (xpc.xp_numfiles != -1
1812 && !(c == p_wc && KeyTyped) && c != p_wcm
1813 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A
1814 && c != Ctrl_L)
1815 {
1816 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
1817 did_wild_list = FALSE;
1818#ifdef FEAT_WILDMENU
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001819 if (!p_wmnu || (c != K_UP && c != K_DOWN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820#endif
1821 xpc.xp_context = EXPAND_NOTHING;
1822 wim_index = 0;
1823#ifdef FEAT_WILDMENU
Bram Moolenaareadee482020-09-04 15:37:31 +02001824 wildmenu_cleanup(&ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825#endif
1826 }
1827
1828#ifdef FEAT_WILDMENU
Bram Moolenaareadee482020-09-04 15:37:31 +02001829 c = wildmenu_process_key(&ccline, c, &xpc);
1830#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001832 // CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert
1833 // mode when 'insertmode' is set, CTRL-\ e prompts for an expression.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 if (c == Ctrl_BSL)
1835 {
Bram Moolenaar9c929712020-09-07 22:05:28 +02001836 res = cmdline_handle_backslash_key(c, &gotesc);
1837 if (res == CMDLINE_CHANGED)
1838 goto cmdline_changed;
1839 else if (res == CMDLINE_NOT_CHANGED)
Bram Moolenaar66b4bf82010-11-16 14:06:08 +01001840 goto cmdline_not_changed;
Bram Moolenaar9c929712020-09-07 22:05:28 +02001841 else if (res == GOTO_NORMAL_MODE)
1842 goto returncmd; // back to cmd mode
1843 c = Ctrl_BSL; // backslash key not processed by
1844 // cmdline_handle_backslash_key()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 }
1846
1847#ifdef FEAT_CMDWIN
1848 if (c == cedit_key || c == K_CMDWIN)
1849 {
Bram Moolenaar85db5472019-12-04 15:11:08 +01001850 // TODO: why is ex_normal_busy checked here?
1851 if ((c == K_CMDWIN || ex_normal_busy == 0) && got_int == FALSE)
Bram Moolenaar58da7072014-09-09 18:45:49 +02001852 {
1853 /*
1854 * Open a window to edit the command line (and history).
1855 */
Bram Moolenaar3bab9392017-04-07 15:42:25 +02001856 c = open_cmdwin();
Bram Moolenaar58da7072014-09-09 18:45:49 +02001857 some_key_typed = TRUE;
1858 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 }
1860# ifdef FEAT_DIGRAPHS
1861 else
1862# endif
1863#endif
1864#ifdef FEAT_DIGRAPHS
1865 c = do_digraph(c);
1866#endif
1867
1868 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC
1869 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL)))
1870 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001871 // In Ex mode a backslash escapes a newline.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001872 if (exmode_active
1873 && c != ESC
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001874 && ccline.cmdpos == ccline.cmdlen
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +00001875 && ccline.cmdpos > 0
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001876 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001878 if (c == K_KENTER)
1879 c = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001881 else
1882 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001883 gotesc = FALSE; // Might have typed ESC previously, don't
1884 // truncate the cmdline now.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001885 if (ccheck_abbr(c + ABBR_OFF))
1886 goto cmdline_changed;
1887 if (!cmd_silent)
1888 {
1889 windgoto(msg_row, 0);
1890 out_flush();
1891 }
1892 break;
1893 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 }
1895
Bram Moolenaar9c929712020-09-07 22:05:28 +02001896 // Completion for 'wildchar' or 'wildcharm' key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm)
1898 {
Bram Moolenaar9c929712020-09-07 22:05:28 +02001899 res = cmdline_wildchar_complete(c, firstc != '@', &did_wild_list,
1900 &wim_index, &xpc, &gotesc);
1901 if (res == CMDLINE_CHANGED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 goto cmdline_changed;
1903 }
1904
1905 gotesc = FALSE;
1906
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001907 // <S-Tab> goes to last match, in a clumsy way
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 if (c == K_S_TAB && KeyTyped)
1909 {
Bram Moolenaarb3479632012-11-28 16:49:58 +01001910 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0, firstc != '@') == OK
1911 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK
1912 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 goto cmdline_changed;
1914 }
1915
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001916 if (c == NUL || c == K_ZERO) // NUL is stored as NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917 c = NL;
1918
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001919 do_abbr = TRUE; // default: check for abbreviation
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920
1921 /*
1922 * Big switch for a typed command line character.
1923 */
1924 switch (c)
1925 {
1926 case K_BS:
1927 case Ctrl_H:
1928 case K_DEL:
1929 case K_KDEL:
1930 case Ctrl_W:
Bram Moolenaar2f3cd2e2020-09-06 15:54:00 +02001931 res = cmdline_erase_chars(c, indent
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001932#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar2f3cd2e2020-09-06 15:54:00 +02001933 , &is_state
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001934#endif
Bram Moolenaar2f3cd2e2020-09-06 15:54:00 +02001935 );
1936 if (res == CMDLINE_NOT_CHANGED)
1937 goto cmdline_not_changed;
1938 else if (res == GOTO_NORMAL_MODE)
1939 goto returncmd; // back to cmd mode
1940 goto cmdline_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941
1942 case K_INS:
1943 case K_KINS:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 ccline.overstrike = !ccline.overstrike;
1945#ifdef CURSOR_SHAPE
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001946 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947#endif
1948 goto cmdline_not_changed;
1949
1950 case Ctrl_HAT:
Bram Moolenaar2f3cd2e2020-09-06 15:54:00 +02001951 cmdline_toggle_langmap(b_im_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 goto cmdline_not_changed;
1953
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001954// case '@': only in very old vi
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 case Ctrl_U:
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001956 // delete all characters left of the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 j = ccline.cmdpos;
1958 ccline.cmdlen -= j;
1959 i = ccline.cmdpos = 0;
1960 while (i < ccline.cmdlen)
1961 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001962 // Truncate at the end, required for multi-byte chars.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001964#ifdef FEAT_SEARCH_EXTRA
1965 if (ccline.cmdlen == 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001966 is_state.search_start = is_state.save_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001967#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 redrawcmd();
1969 goto cmdline_changed;
1970
1971#ifdef FEAT_CLIPBOARD
1972 case Ctrl_Y:
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001973 // Copy the modeless selection, if there is one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974 if (clip_star.state != SELECT_CLEARED)
1975 {
1976 if (clip_star.state == SELECT_DONE)
1977 clip_copy_modeless_selection(TRUE);
1978 goto cmdline_not_changed;
1979 }
1980 break;
1981#endif
1982
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001983 case ESC: // get here if p_wc != ESC or when ESC typed twice
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 case Ctrl_C:
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001985 // In exmode it doesn't make sense to return. Except when
1986 // ":normal" runs out of characters.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001987 if (exmode_active
Bram Moolenaare2c38102016-01-31 14:55:40 +01001988 && (ex_normal_busy == 0 || typebuf.tb_len > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 goto cmdline_not_changed;
1990
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001991 gotesc = TRUE; // will free ccline.cmdbuff after
1992 // putting it in history
1993 goto returncmd; // back to cmd mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001995 case Ctrl_R: // insert register
Bram Moolenaar2f3cd2e2020-09-06 15:54:00 +02001996 res = cmdline_insert_reg(&gotesc);
1997 if (res == CMDLINE_NOT_CHANGED)
1998 goto cmdline_not_changed;
1999 else if (res == GOTO_NORMAL_MODE)
2000 goto returncmd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 goto cmdline_changed;
2002
2003 case Ctrl_D:
2004 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002005 break; // Use ^D as normal char instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006
2007 redrawcmd();
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002008 continue; // don't do incremental search now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009
2010 case K_RIGHT:
2011 case K_S_RIGHT:
2012 case K_C_RIGHT:
2013 do
2014 {
2015 if (ccline.cmdpos >= ccline.cmdlen)
2016 break;
2017 i = cmdline_charsize(ccline.cmdpos);
2018 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows)
2019 break;
2020 ccline.cmdspos += i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002022 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 + ccline.cmdpos);
2024 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 ++ccline.cmdpos;
2026 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002027 while ((c == K_S_RIGHT || c == K_C_RIGHT
2028 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002029 && ccline.cmdbuff[ccline.cmdpos] != ' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 if (has_mbyte)
2031 set_cmdspos_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 goto cmdline_not_changed;
2033
2034 case K_LEFT:
2035 case K_S_LEFT:
2036 case K_C_LEFT:
Bram Moolenaar49feabd2007-12-07 19:28:58 +00002037 if (ccline.cmdpos == 0)
2038 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 do
2040 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 --ccline.cmdpos;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002042 if (has_mbyte) // move to first byte of char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff,
2044 ccline.cmdbuff + ccline.cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos);
2046 }
Bram Moolenaar49feabd2007-12-07 19:28:58 +00002047 while (ccline.cmdpos > 0
2048 && (c == K_S_LEFT || c == K_C_LEFT
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002049 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 && ccline.cmdbuff[ccline.cmdpos - 1] != ' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051 if (has_mbyte)
2052 set_cmdspos_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 goto cmdline_not_changed;
2054
2055 case K_IGNORE:
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002056 // Ignore mouse event or open_cmdwin() result.
Bram Moolenaar30405d32008-01-02 20:55:27 +00002057 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058
Bram Moolenaar4f974752019-02-17 17:44:42 +01002059#ifdef FEAT_GUI_MSWIN
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002060 // On MS-Windows ignore <M-F4>, we get it when closing the window
2061 // was cancelled.
Bram Moolenaar4770d092006-01-12 23:22:24 +00002062 case K_F4:
2063 if (mod_mask == MOD_MASK_ALT)
2064 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002065 redrawcmd(); // somehow the cmdline is cleared
Bram Moolenaar4770d092006-01-12 23:22:24 +00002066 goto cmdline_not_changed;
2067 }
2068 break;
2069#endif
2070
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 case K_MIDDLEDRAG:
2072 case K_MIDDLERELEASE:
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002073 goto cmdline_not_changed; // Ignore mouse
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074
2075 case K_MIDDLEMOUSE:
2076# ifdef FEAT_GUI
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002077 // When GUI is active, also paste when 'mouse' is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 if (!gui.in_use)
2079# endif
2080 if (!mouse_has(MOUSE_COMMAND))
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002081 goto cmdline_not_changed; // Ignore mouse
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002082# ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 if (clip_star.available)
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00002084 cmdline_paste('*', TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 else
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002086# endif
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00002087 cmdline_paste(0, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 redrawcmd();
2089 goto cmdline_changed;
2090
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002091# ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 case K_DROP:
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00002093 cmdline_paste('~', TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 redrawcmd();
2095 goto cmdline_changed;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002096# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097
2098 case K_LEFTDRAG:
2099 case K_LEFTRELEASE:
2100 case K_RIGHTDRAG:
2101 case K_RIGHTRELEASE:
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002102 // Ignore drag and release events when the button-down wasn't
2103 // seen before.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 if (ignore_drag_release)
2105 goto cmdline_not_changed;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002106 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107 case K_LEFTMOUSE:
2108 case K_RIGHTMOUSE:
Bram Moolenaar2f3cd2e2020-09-06 15:54:00 +02002109 cmdline_left_right_mouse(c, &ignore_drag_release);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110 goto cmdline_not_changed;
2111
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002112 // Mouse scroll wheel: ignored here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 case K_MOUSEDOWN:
2114 case K_MOUSEUP:
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002115 case K_MOUSELEFT:
2116 case K_MOUSERIGHT:
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002117 // Alternate buttons ignored here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002118 case K_X1MOUSE:
2119 case K_X1DRAG:
2120 case K_X1RELEASE:
2121 case K_X2MOUSE:
2122 case K_X2DRAG:
2123 case K_X2RELEASE:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01002124 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 goto cmdline_not_changed;
2126
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127#ifdef FEAT_GUI
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002128 case K_LEFTMOUSE_NM: // mousefocus click, ignored
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129 case K_LEFTRELEASE_NM:
2130 goto cmdline_not_changed;
2131
2132 case K_VER_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002133 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134 {
2135 gui_do_scroll();
2136 redrawcmd();
2137 }
2138 goto cmdline_not_changed;
2139
2140 case K_HOR_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002141 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002143 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144 redrawcmd();
2145 }
2146 goto cmdline_not_changed;
2147#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002148#ifdef FEAT_GUI_TABLINE
2149 case K_TABLINE:
2150 case K_TABMENU:
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002151 // Don't want to change any tabs here. Make sure the same tab
2152 // is still selected.
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002153 if (gui_use_tabline())
2154 gui_mch_set_curtab(tabpage_index(curtab));
2155 goto cmdline_not_changed;
2156#endif
2157
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002158 case K_SELECT: // end of Select mode mapping - ignore
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 goto cmdline_not_changed;
2160
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002161 case Ctrl_B: // begin of command line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 case K_HOME:
2163 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 case K_S_HOME:
2165 case K_C_HOME:
2166 ccline.cmdpos = 0;
2167 set_cmdspos();
2168 goto cmdline_not_changed;
2169
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002170 case Ctrl_E: // end of command line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 case K_END:
2172 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 case K_S_END:
2174 case K_C_END:
2175 ccline.cmdpos = ccline.cmdlen;
2176 set_cmdspos_cursor();
2177 goto cmdline_not_changed;
2178
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002179 case Ctrl_A: // all matches
Bram Moolenaarb3479632012-11-28 16:49:58 +01002180 if (nextwild(&xpc, WILD_ALL, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181 break;
2182 goto cmdline_changed;
2183
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002184 case Ctrl_L:
2185#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002186 if (may_add_char_to_search(firstc, &c, &is_state) == OK)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002187 goto cmdline_not_changed;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002188#endif
2189
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002190 // completion: longest common part
Bram Moolenaarb3479632012-11-28 16:49:58 +01002191 if (nextwild(&xpc, WILD_LONGEST, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192 break;
2193 goto cmdline_changed;
2194
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002195 case Ctrl_N: // next match
2196 case Ctrl_P: // previous match
Bram Moolenaar7df0f632016-08-26 19:56:00 +02002197 if (xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198 {
Bram Moolenaarb3479632012-11-28 16:49:58 +01002199 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT,
2200 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201 break;
Bram Moolenaar11956692016-08-27 16:26:56 +02002202 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002204 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 case K_UP:
2206 case K_DOWN:
2207 case K_S_UP:
2208 case K_S_DOWN:
2209 case K_PAGEUP:
2210 case K_KPAGEUP:
2211 case K_PAGEDOWN:
2212 case K_KPAGEDOWN:
Bram Moolenaar2f3cd2e2020-09-06 15:54:00 +02002213 res = cmdline_browse_history(c, firstc, &lookfor, histype,
2214 &hiscnt, &xpc);
2215 if (res == CMDLINE_CHANGED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 goto cmdline_changed;
Bram Moolenaar2f3cd2e2020-09-06 15:54:00 +02002217 else if (res == GOTO_NORMAL_MODE)
2218 goto returncmd;
Bram Moolenaar11956692016-08-27 16:26:56 +02002219 goto cmdline_not_changed;
2220
Bram Moolenaar349e7d92016-09-03 20:04:34 +02002221#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002222 case Ctrl_G: // next match
2223 case Ctrl_T: // previous match
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002224 if (may_adjust_incsearch_highlighting(
2225 firstc, count, &is_state, c) == FAIL)
Bram Moolenaar349e7d92016-09-03 20:04:34 +02002226 goto cmdline_not_changed;
Bram Moolenaar349e7d92016-09-03 20:04:34 +02002227 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228#endif
2229
2230 case Ctrl_V:
2231 case Ctrl_Q:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232 {
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01002233 ignore_drag_release = TRUE;
2234 putcmdline('^', TRUE);
Bram Moolenaar0684e362020-12-03 19:54:42 +01002235
2236 // Get next (two) character(s). Do not change any
2237 // modifyOtherKeys ESC sequence to a normal key for
2238 // CTRL-SHIFT-V.
2239 c = get_literal(mod_mask & MOD_MASK_SHIFT);
2240
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01002241 do_abbr = FALSE; // don't do abbreviation now
2242 extra_char = NUL;
2243 // may need to remove ^ when composing char was typed
2244 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent)
2245 {
2246 draw_cmdline(ccline.cmdpos,
2247 ccline.cmdlen - ccline.cmdpos);
2248 msg_putchar(' ');
2249 cursorcmd();
2250 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 }
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01002252
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253 break;
2254
2255#ifdef FEAT_DIGRAPHS
2256 case Ctrl_K:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257 ignore_drag_release = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 putcmdline('?', TRUE);
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002259# ifdef USE_ON_FLY_SCROLL
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002260 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002261# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 c = get_digraph(TRUE);
Bram Moolenaara92522f2017-07-15 15:21:38 +02002263 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 if (c != NUL)
2265 break;
2266
2267 redrawcmd();
2268 goto cmdline_not_changed;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002269#endif // FEAT_DIGRAPHS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270
2271#ifdef FEAT_RIGHTLEFT
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002272 case Ctrl__: // CTRL-_: switch language mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 if (!p_ari)
2274 break;
Bram Moolenaar14184a32019-02-16 15:10:30 +01002275 cmd_hkmap = !cmd_hkmap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 goto cmdline_not_changed;
2277#endif
2278
Bram Moolenaarabbc4482017-01-24 15:57:55 +01002279 case K_PS:
2280 bracketed_paste(PASTE_CMDLINE, FALSE, NULL);
2281 goto cmdline_changed;
2282
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 default:
2284#ifdef UNIX
2285 if (c == intr_char)
2286 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002287 gotesc = TRUE; // will free ccline.cmdbuff after
2288 // putting it in history
2289 goto returncmd; // back to Normal mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290 }
2291#endif
2292 /*
2293 * Normal character with no special meaning. Just set mod_mask
2294 * to 0x0 so that typing Shift-Space in the GUI doesn't enter
2295 * the string <S-Space>. This should only happen after ^V.
2296 */
2297 if (!IS_SPECIAL(c))
2298 mod_mask = 0x0;
2299 break;
2300 }
2301 /*
2302 * End of switch on command line character.
2303 * We come here if we have a normal character.
2304 */
2305
Bram Moolenaar13505972019-01-24 15:04:48 +01002306 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c))
2307 && (ccheck_abbr(
2308 // Add ABBR_OFF for characters above 0x100, this is
2309 // what check_abbr() expects.
2310 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) : c)
2311 || c == Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312 goto cmdline_changed;
2313
2314 /*
2315 * put the character in the command line
2316 */
2317 if (IS_SPECIAL(c) || mod_mask != 0)
2318 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE);
2319 else
2320 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 if (has_mbyte)
2322 {
2323 j = (*mb_char2bytes)(c, IObuff);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002324 IObuff[j] = NUL; // exclude composing chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325 put_on_cmdline(IObuff, j, TRUE);
2326 }
2327 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328 {
2329 IObuff[0] = c;
2330 put_on_cmdline(IObuff, 1, TRUE);
2331 }
2332 }
2333 goto cmdline_changed;
2334
2335/*
2336 * This part implements incremental searches for "/" and "?"
2337 * Jump to cmdline_not_changed when a character has been read but the command
2338 * line did not change. Then we only search and redraw if something changed in
2339 * the past.
2340 * Jump to cmdline_changed when the command line did change.
2341 * (Sorry for the goto's, I know it is ugly).
2342 */
2343cmdline_not_changed:
2344#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002345 if (!is_state.incsearch_postponed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 continue;
2347#endif
2348
2349cmdline_changed:
Bram Moolenaarf4d61bc2020-11-14 14:22:28 +01002350#ifdef FEAT_SEARCH_EXTRA
2351 // If the window changed incremental search state is not valid.
2352 if (is_state.winid != curwin->w_id)
2353 init_incsearch_state(&is_state);
2354#endif
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002355 // Trigger CmdlineChanged autocommands.
Bram Moolenaar153b7042018-01-31 15:48:32 +01002356 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINECHANGED);
Bram Moolenaar153b7042018-01-31 15:48:32 +01002357
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaara60053b2020-09-03 16:50:13 +02002359 if (xpc.xp_context == EXPAND_NOTHING)
2360 may_do_incsearch_highlighting(firstc, count, &is_state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361#endif
2362
2363#ifdef FEAT_RIGHTLEFT
2364 if (cmdmsg_rl
2365# ifdef FEAT_ARABIC
Bram Moolenaar693f7dc2019-06-21 02:30:38 +02002366 || (p_arshape && !p_tbidi
2367 && cmdline_has_arabic(0, ccline.cmdlen))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368# endif
2369 )
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002370 // Always redraw the whole command line to fix shaping and
2371 // right-left typing. Not efficient, but it works.
2372 // Do it only when there are no characters left to read
2373 // to avoid useless intermediate redraws.
Bram Moolenaar58437e02012-02-22 17:58:04 +01002374 if (vpeekc() == NUL)
2375 redrawcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376#endif
2377 }
2378
2379returncmd:
2380
2381#ifdef FEAT_RIGHTLEFT
2382 cmdmsg_rl = FALSE;
2383#endif
2384
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 ExpandCleanup(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002386 ccline.xpc = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387
2388#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaarc7f08b72018-08-12 17:39:14 +02002389 finish_incsearch_highlighting(gotesc, &is_state, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390#endif
2391
2392 if (ccline.cmdbuff != NULL)
2393 {
2394 /*
2395 * Put line in history buffer (":" and "=" only when it was typed).
2396 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 if (ccline.cmdlen && firstc != NUL
2398 && (some_key_typed || histype == HIST_SEARCH))
2399 {
2400 add_to_history(histype, ccline.cmdbuff, TRUE,
2401 histype == HIST_SEARCH ? firstc : NUL);
2402 if (firstc == ':')
2403 {
2404 vim_free(new_last_cmdline);
2405 new_last_cmdline = vim_strsave(ccline.cmdbuff);
2406 }
2407 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408
Bram Moolenaarf8e8c062017-10-22 14:44:17 +02002409 if (gotesc)
2410 abandon_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 }
2412
2413 /*
2414 * If the screen was shifted up, redraw the whole screen (later).
2415 * If the line is too long, clear it, so ruler and shown command do
2416 * not get printed in the middle of it.
2417 */
2418 msg_check();
2419 msg_scroll = save_msg_scroll;
2420 redir_off = FALSE;
2421
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002422 // When the command line was typed, no need for a wait-return prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 if (some_key_typed)
2424 need_wait_return = FALSE;
2425
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002426 // Trigger CmdlineLeave autocommands.
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02002427 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINELEAVE);
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02002428
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 State = save_State;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002430#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP)
2432 im_save_status(b_im_ptr);
2433 im_set_active(FALSE);
2434#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436#ifdef CURSOR_SHAPE
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002437 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438#endif
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002439 sb_text_end_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440
Bram Moolenaar438d1762018-09-30 17:11:48 +02002441theend:
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002442 {
2443 char_u *p = ccline.cmdbuff;
2444
Bram Moolenaar438d1762018-09-30 17:11:48 +02002445 if (did_save_ccline)
2446 restore_cmdline(&save_ccline);
2447 else
2448 ccline.cmdbuff = NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002449 return p;
2450 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451}
2452
2453#if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO)
2454/*
2455 * Get a command line with a prompt.
2456 * This is prepared to be called recursively from getcmdline() (e.g. by
2457 * f_input() when evaluating an expression from CTRL-R =).
2458 * Returns the command line in allocated memory, or NULL.
2459 */
2460 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002461getcmdline_prompt(
2462 int firstc,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002463 char_u *prompt, // command line prompt
2464 int attr, // attributes for prompt
2465 int xp_context, // type of expansion
2466 char_u *xp_arg) // user-defined expansion argument
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467{
2468 char_u *s;
Bram Moolenaar66b51422019-08-18 21:44:12 +02002469 cmdline_info_T save_ccline;
Bram Moolenaar438d1762018-09-30 17:11:48 +02002470 int did_save_ccline = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 int msg_col_save = msg_col;
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002472 int msg_silent_save = msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473
Bram Moolenaar438d1762018-09-30 17:11:48 +02002474 if (ccline.cmdbuff != NULL)
2475 {
2476 // Save the values of the current cmdline and restore them below.
2477 save_cmdline(&save_ccline);
2478 did_save_ccline = TRUE;
2479 }
2480
Bram Moolenaara80faa82020-04-12 19:37:17 +02002481 CLEAR_FIELD(ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482 ccline.cmdprompt = prompt;
2483 ccline.cmdattr = attr;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002484# ifdef FEAT_EVAL
2485 ccline.xp_context = xp_context;
2486 ccline.xp_arg = xp_arg;
2487 ccline.input_fn = (firstc == '@');
2488# endif
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002489 msg_silent = 0;
Bram Moolenaar438d1762018-09-30 17:11:48 +02002490 s = getcmdline_int(firstc, 1L, 0, FALSE);
2491
2492 if (did_save_ccline)
2493 restore_cmdline(&save_ccline);
2494
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002495 msg_silent = msg_silent_save;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002496 // Restore msg_col, the prompt from input() may have changed it.
2497 // But only if called recursively and the commandline is therefore being
2498 // restored to an old one; if not, the input() prompt stays on the screen,
2499 // so we need its modified msg_col left intact.
Bram Moolenaar1db1f772011-08-17 16:25:48 +02002500 if (ccline.cmdbuff != NULL)
2501 msg_col = msg_col_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502
2503 return s;
2504}
2505#endif
2506
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002507/*
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01002508 * Read the 'wildmode' option, fill wim_flags[].
2509 */
2510 int
2511check_opt_wim(void)
2512{
2513 char_u new_wim_flags[4];
2514 char_u *p;
2515 int i;
2516 int idx = 0;
2517
2518 for (i = 0; i < 4; ++i)
2519 new_wim_flags[i] = 0;
2520
2521 for (p = p_wim; *p; ++p)
2522 {
2523 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
2524 ;
2525 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
2526 return FAIL;
2527 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
2528 new_wim_flags[idx] |= WIM_LONGEST;
2529 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
2530 new_wim_flags[idx] |= WIM_FULL;
2531 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
2532 new_wim_flags[idx] |= WIM_LIST;
2533 else if (i == 8 && STRNCMP(p, "lastused", 8) == 0)
2534 new_wim_flags[idx] |= WIM_BUFLASTUSED;
2535 else
2536 return FAIL;
2537 p += i;
2538 if (*p == NUL)
2539 break;
2540 if (*p == ',')
2541 {
2542 if (idx == 3)
2543 return FAIL;
2544 ++idx;
2545 }
2546 }
2547
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002548 // fill remaining entries with last flag
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01002549 while (idx < 3)
2550 {
2551 new_wim_flags[idx + 1] = new_wim_flags[idx];
2552 ++idx;
2553 }
2554
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002555 // only when there are no errors, wim_flags[] is changed
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01002556 for (i = 0; i < 4; ++i)
2557 wim_flags[i] = new_wim_flags[i];
2558 return OK;
2559}
2560
2561/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002562 * Return TRUE when the text must not be changed and we can't switch to
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02002563 * another window or buffer. TRUE when editing the command line, evaluating
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002564 * 'balloonexpr', etc.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002565 */
2566 int
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02002567text_and_win_locked(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002568{
2569#ifdef FEAT_CMDWIN
2570 if (cmdwin_type != 0)
2571 return TRUE;
2572#endif
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02002573 return textwinlock != 0;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002574}
2575
2576/*
2577 * Give an error message for a command that isn't allowed while the cmdline
2578 * window is open or editing the cmdline in another way.
2579 */
2580 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002581text_locked_msg(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002582{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002583 emsg(_(get_text_locked_msg()));
Bram Moolenaar5a497892016-09-03 16:29:04 +02002584}
2585
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002586 char *
Bram Moolenaar5a497892016-09-03 16:29:04 +02002587get_text_locked_msg(void)
2588{
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002589#ifdef FEAT_CMDWIN
2590 if (cmdwin_type != 0)
Bram Moolenaar5a497892016-09-03 16:29:04 +02002591 return e_cmdwin;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002592#endif
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02002593 if (textwinlock != 0)
2594 return e_textwinlock;
Bram Moolenaarff06f282020-04-21 22:01:14 +02002595 return e_textlock;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002596}
2597
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002598/*
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02002599 * Return TRUE when the text must not be changed and/or we cannot switch to
2600 * another window. TRUE while evaluating 'completefunc'.
2601 */
2602 int
2603text_locked(void)
2604{
2605 return text_and_win_locked() || textlock != 0;
2606}
2607
2608/*
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002609 * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is
2610 * and give an error message.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002611 */
2612 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002613curbuf_locked(void)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002614{
2615 if (curbuf_lock > 0)
2616 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002617 emsg(_("E788: Not allowed to edit another buffer now"));
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002618 return TRUE;
2619 }
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002620 return allbuf_locked();
2621}
2622
2623/*
2624 * Check if "allbuf_lock" is set and return TRUE when it is and give an error
2625 * message.
2626 */
2627 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002628allbuf_locked(void)
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002629{
2630 if (allbuf_lock > 0)
2631 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002632 emsg(_("E811: Not allowed to change buffer information now"));
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002633 return TRUE;
2634 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002635 return FALSE;
2636}
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002637
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002639cmdline_charsize(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640{
2641#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002642 if (cmdline_star > 0) // showing '*', always 1 position
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 return 1;
2644#endif
2645 return ptr2cells(ccline.cmdbuff + idx);
2646}
2647
2648/*
2649 * Compute the offset of the cursor on the command line for the prompt and
2650 * indent.
2651 */
2652 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002653set_cmdspos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002655 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 ccline.cmdspos = 1 + ccline.cmdindent;
2657 else
2658 ccline.cmdspos = 0 + ccline.cmdindent;
2659}
2660
2661/*
2662 * Compute the screen position for the cursor on the command line.
2663 */
2664 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002665set_cmdspos_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666{
2667 int i, m, c;
2668
2669 set_cmdspos();
2670 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002671 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 m = Columns * Rows;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002673 if (m < 0) // overflow, Columns or Rows at weird value
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002674 m = MAXCOL;
2675 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676 else
2677 m = MAXCOL;
2678 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
2679 {
2680 c = cmdline_charsize(i);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002681 // Count ">" for double-wide multi-byte char that doesn't fit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682 if (has_mbyte)
2683 correct_cmdspos(i, c);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002684 // If the cmdline doesn't fit, show cursor on last visible char.
2685 // Don't move the cursor itself, so we can still append.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686 if ((ccline.cmdspos += c) >= m)
2687 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 ccline.cmdspos -= c;
2689 break;
2690 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002692 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693 }
2694}
2695
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696/*
2697 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2698 * character that doesn't fit, so that a ">" must be displayed.
2699 */
2700 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002701correct_cmdspos(int idx, int cells)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002703 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2705 && ccline.cmdspos % Columns + cells > Columns)
2706 ccline.cmdspos++;
2707}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708
2709/*
2710 * Get an Ex command line for the ":" command.
2711 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002713getexline(
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002714 int c, // normally ':', NUL for ":append"
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002715 void *cookie UNUSED,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002716 int indent, // indent for inside conditionals
Bram Moolenaar66250c92020-08-20 15:02:42 +02002717 getline_opt_T options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002719 // When executing a register, remove ':' that's in front of each line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720 if (exec_from_reg && vpeekc() == ':')
2721 (void)vgetc();
Bram Moolenaar66250c92020-08-20 15:02:42 +02002722 return getcmdline(c, 1L, indent, options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723}
2724
2725/*
2726 * Get an Ex command line for Ex mode.
2727 * In Ex mode we only use the OS supplied line editing features and no
2728 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002729 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002732getexmodeline(
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002733 int promptc, // normally ':', NUL for ":append" and '?' for
2734 // :s prompt
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002735 void *cookie UNUSED,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002736 int indent, // indent for inside conditionals
Bram Moolenaar66250c92020-08-20 15:02:42 +02002737 getline_opt_T options UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002739 garray_T line_ga;
2740 char_u *pend;
2741 int startcol = 0;
Bram Moolenaar76624232007-07-28 12:21:47 +00002742 int c1 = 0;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002743 int escaped = FALSE; // CTRL-V typed
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002744 int vcol = 0;
2745 char_u *p;
Bram Moolenaar76624232007-07-28 12:21:47 +00002746 int prev_char;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002747 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002749 // Switch cursor on now. This avoids that it happens after the "\n", which
2750 // confuses the system function that computes tabstops.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 cursor_on();
2752
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002753 // always start in column 0; write a newline if necessary
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002755 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002757 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002758 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002759 // indent that is only displayed, not in the line itself
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002760 if (p_prompt)
2761 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 while (indent-- > 0)
2763 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765 }
2766
2767 ga_init2(&line_ga, 1, 30);
2768
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002769 // autoindent for :insert and :append is in the line itself
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002770 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002771 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002772 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002773 while (indent >= 8)
2774 {
2775 ga_append(&line_ga, TAB);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002776 msg_puts(" ");
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002777 indent -= 8;
2778 }
2779 while (indent-- > 0)
2780 {
2781 ga_append(&line_ga, ' ');
2782 msg_putchar(' ');
2783 }
2784 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002785 ++no_mapping;
2786 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002787
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788 /*
2789 * Get the line, one character at a time.
2790 */
2791 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002792 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002794 long sw;
2795 char_u *s;
2796
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 if (ga_grow(&line_ga, 40) == FAIL)
2798 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799
Bram Moolenaarba748c82017-02-26 14:00:07 +01002800 /*
2801 * Get one character at a time.
2802 */
Bram Moolenaar76624232007-07-28 12:21:47 +00002803 prev_char = c1;
Bram Moolenaarba748c82017-02-26 14:00:07 +01002804
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002805 // Check for a ":normal" command and no more characters left.
Bram Moolenaarba748c82017-02-26 14:00:07 +01002806 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
2807 c1 = '\n';
2808 else
2809 c1 = vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810
2811 /*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002812 * Handle line editing.
2813 * Previously this was left to the system, putting the terminal in
2814 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002816 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002818 msg_putchar('\n');
2819 break;
2820 }
2821
Bram Moolenaarabbc4482017-01-24 15:57:55 +01002822 if (c1 == K_PS)
2823 {
2824 bracketed_paste(PASTE_EX, FALSE, &line_ga);
2825 goto redraw;
2826 }
2827
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002828 if (!escaped)
2829 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002830 // CR typed means "enter", which is NL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002831 if (c1 == '\r')
2832 c1 = '\n';
2833
2834 if (c1 == BS || c1 == K_BS
2835 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002837 if (line_ga.ga_len > 0)
2838 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002839 if (has_mbyte)
2840 {
2841 p = (char_u *)line_ga.ga_data;
2842 p[line_ga.ga_len] = NUL;
2843 len = (*mb_head_off)(p, p + line_ga.ga_len - 1) + 1;
2844 line_ga.ga_len -= len;
2845 }
2846 else
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002847 --line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002848 goto redraw;
2849 }
2850 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 }
2852
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002853 if (c1 == Ctrl_U)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002855 msg_col = startcol;
2856 msg_clr_eos();
2857 line_ga.ga_len = 0;
Bram Moolenaarda636572015-04-03 17:11:45 +02002858 goto redraw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002859 }
2860
2861 if (c1 == Ctrl_T)
2862 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002863 sw = get_sw_value(curbuf);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002864 p = (char_u *)line_ga.ga_data;
2865 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002866 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaar14f24742012-08-08 18:01:05 +02002867 indent += sw - indent % sw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002868add_indent:
Bram Moolenaar597a4222014-06-25 14:39:50 +02002869 while (get_indent_str(p, 8, FALSE) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002871 (void)ga_grow(&line_ga, 2); // one more for the NUL
Bram Moolenaarda636572015-04-03 17:11:45 +02002872 p = (char_u *)line_ga.ga_data;
2873 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002874 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2875 *s = ' ';
2876 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002878redraw:
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002879 // redraw the line
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002880 msg_col = startcol;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002881 vcol = 0;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002882 p = (char_u *)line_ga.ga_data;
2883 p[line_ga.ga_len] = NUL;
2884 while (p < (char_u *)line_ga.ga_data + line_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002886 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002888 do
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002889 msg_putchar(' ');
Bram Moolenaarabab0b02019-03-30 18:47:01 +01002890 while (++vcol % 8);
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002891 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002893 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894 {
Bram Moolenaar1614a142019-10-06 22:00:13 +02002895 len = mb_ptr2len(p);
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002896 msg_outtrans_len(p, len);
2897 vcol += ptr2cells(p);
2898 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 }
2900 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002901 msg_clr_eos();
Bram Moolenaar76624232007-07-28 12:21:47 +00002902 windgoto(msg_row, msg_col);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002903 continue;
2904 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002906 if (c1 == Ctrl_D)
2907 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002908 // Delete one shiftwidth.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002909 p = (char_u *)line_ga.ga_data;
2910 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002912 if (prev_char == '^')
2913 ex_keep_indent = TRUE;
2914 indent = 0;
2915 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916 }
2917 else
2918 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002919 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002920 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaarda636572015-04-03 17:11:45 +02002921 if (indent > 0)
2922 {
2923 --indent;
2924 indent -= indent % get_sw_value(curbuf);
2925 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02002927 while (get_indent_str(p, 8, FALSE) > indent)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002928 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002929 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002930 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2931 --line_ga.ga_len;
2932 }
2933 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002935
2936 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2937 {
2938 escaped = TRUE;
2939 continue;
2940 }
2941
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002942 // Ignore special key codes: mouse movement, K_IGNORE, etc.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002943 if (IS_SPECIAL(c1))
2944 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002946
2947 if (IS_SPECIAL(c1))
2948 c1 = '?';
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002949 if (has_mbyte)
2950 len = (*mb_char2bytes)(c1,
2951 (char_u *)line_ga.ga_data + line_ga.ga_len);
2952 else
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002953 {
2954 len = 1;
2955 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
2956 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002957 if (c1 == '\n')
2958 msg_putchar('\n');
2959 else if (c1 == TAB)
2960 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002961 // Don't use chartabsize(), 'ts' can be different
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002962 do
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002963 msg_putchar(' ');
Bram Moolenaarabab0b02019-03-30 18:47:01 +01002964 while (++vcol % 8);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002965 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002968 msg_outtrans_len(
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002969 ((char_u *)line_ga.ga_data) + line_ga.ga_len, len);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002970 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971 }
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002972 line_ga.ga_len += len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002973 escaped = FALSE;
2974
2975 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002976 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002977
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002978 // We are done when a NL is entered, but not when it comes after an
2979 // odd number of backslashes, that results in a NUL.
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002980 if (line_ga.ga_len > 0 && pend[-1] == '\n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 {
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002982 int bcount = 0;
2983
2984 while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\')
2985 ++bcount;
2986
2987 if (bcount > 0)
2988 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002989 // Halve the number of backslashes: "\NL" -> "NUL", "\\NL" ->
2990 // "\NL", etc.
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002991 line_ga.ga_len -= (bcount + 1) / 2;
2992 pend -= (bcount + 1) / 2;
2993 pend[-1] = '\n';
2994 }
2995
2996 if ((bcount & 1) == 0)
2997 {
2998 --line_ga.ga_len;
2999 --pend;
3000 *pend = NUL;
3001 break;
3002 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 }
3004 }
3005
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003006 --no_mapping;
3007 --allow_keys;
3008
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003009 // make following messages go to the next line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010 msg_didout = FALSE;
3011 msg_col = 0;
3012 if (msg_row < Rows - 1)
3013 ++msg_row;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003014 emsg_on_display = FALSE; // don't want ui_delay()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015
3016 if (got_int)
3017 ga_clear(&line_ga);
3018
3019 return (char_u *)line_ga.ga_data;
3020}
3021
Bram Moolenaare344bea2005-09-01 20:46:49 +00003022# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3023 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024/*
3025 * Return TRUE if ccline.overstrike is on.
3026 */
3027 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003028cmdline_overstrike(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029{
3030 return ccline.overstrike;
3031}
3032
3033/*
3034 * Return TRUE if the cursor is at the end of the cmdline.
3035 */
3036 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003037cmdline_at_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038{
3039 return (ccline.cmdpos >= ccline.cmdlen);
3040}
3041#endif
3042
Bram Moolenaar9372a112005-12-06 19:59:18 +00003043#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044/*
3045 * Return the virtual column number at the current cursor position.
3046 * This is used by the IM code to obtain the start of the preedit string.
3047 */
3048 colnr_T
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003049cmdline_getvcol_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050{
3051 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
3052 return MAXCOL;
3053
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054 if (has_mbyte)
3055 {
3056 colnr_T col;
3057 int i = 0;
3058
3059 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003060 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061
3062 return col;
3063 }
3064 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065 return ccline.cmdpos;
3066}
3067#endif
3068
3069#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
3070/*
3071 * If part of the command line is an IM preedit string, redraw it with
3072 * IM feedback attributes. The cursor position is restored after drawing.
3073 */
3074 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003075redrawcmd_preedit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076{
3077 if ((State & CMDLINE)
3078 && xic != NULL
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003079 // && im_get_status() doesn't work when using SCIM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080 && !p_imdisable
3081 && im_is_preediting())
3082 {
3083 int cmdpos = 0;
3084 int cmdspos;
3085 int old_row;
3086 int old_col;
3087 colnr_T col;
3088
3089 old_row = msg_row;
3090 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003091 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093 if (has_mbyte)
3094 {
3095 for (col = 0; col < preedit_start_col
3096 && cmdpos < ccline.cmdlen; ++col)
3097 {
3098 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003099 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100 }
3101 }
3102 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103 {
3104 cmdspos += preedit_start_col;
3105 cmdpos += preedit_start_col;
3106 }
3107
3108 msg_row = cmdline_row + (cmdspos / (int)Columns);
3109 msg_col = cmdspos % (int)Columns;
3110 if (msg_row >= Rows)
3111 msg_row = Rows - 1;
3112
3113 for (col = 0; cmdpos < ccline.cmdlen; ++col)
3114 {
3115 int char_len;
3116 int char_attr;
3117
3118 char_attr = im_get_feedback_attr(col);
3119 if (char_attr < 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003120 break; // end of preedit string
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003123 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125 char_len = 1;
3126
3127 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
3128 cmdpos += char_len;
3129 }
3130
3131 msg_row = old_row;
3132 msg_col = old_col;
3133 }
3134}
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003135#endif // FEAT_XIM && FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136
3137/*
3138 * Allocate a new command line buffer.
3139 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 */
3141 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003142alloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143{
3144 /*
3145 * give some extra space to avoid having to allocate all the time
3146 */
3147 if (len < 80)
3148 len = 100;
3149 else
3150 len += 20;
3151
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003152 ccline.cmdbuff = alloc(len); // caller should check for out-of-memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 ccline.cmdbufflen = len;
3154}
3155
3156/*
3157 * Re-allocate the command line to length len + something extra.
3158 * return FAIL for failure, OK otherwise
3159 */
Bram Moolenaar66b51422019-08-18 21:44:12 +02003160 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003161realloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162{
3163 char_u *p;
3164
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003165 if (len < ccline.cmdbufflen)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003166 return OK; // no need to resize
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003167
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168 p = ccline.cmdbuff;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003169 alloc_cmdbuff(len); // will get some more
3170 if (ccline.cmdbuff == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003172 ccline.cmdbuff = p; // keep the old one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 return FAIL;
3174 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003175 // There isn't always a NUL after the command, but it may need to be
3176 // there, thus copy up to the NUL and add a NUL.
Bram Moolenaar35a34232010-08-13 16:51:26 +02003177 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen);
3178 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179 vim_free(p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003180
3181 if (ccline.xpc != NULL
3182 && ccline.xpc->xp_pattern != NULL
3183 && ccline.xpc->xp_context != EXPAND_NOTHING
3184 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL)
3185 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00003186 int i = (int)(ccline.xpc->xp_pattern - p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003187
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003188 // If xp_pattern points inside the old cmdbuff it needs to be adjusted
3189 // to point into the newly allocated memory.
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003190 if (i >= 0 && i <= ccline.cmdlen)
3191 ccline.xpc->xp_pattern = ccline.cmdbuff + i;
3192 }
3193
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 return OK;
3195}
3196
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003197#if defined(FEAT_ARABIC) || defined(PROTO)
3198static char_u *arshape_buf = NULL;
3199
3200# if defined(EXITFREE) || defined(PROTO)
3201 void
Bram Moolenaar48ac6712019-07-04 20:26:21 +02003202free_arshape_buf(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003203{
3204 vim_free(arshape_buf);
3205}
3206# endif
3207#endif
3208
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209/*
3210 * Draw part of the cmdline at the current cursor position. But draw stars
3211 * when cmdline_star is TRUE.
3212 */
3213 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003214draw_cmdline(int start, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215{
3216#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
3217 int i;
3218
3219 if (cmdline_star > 0)
3220 for (i = 0; i < len; ++i)
3221 {
3222 msg_putchar('*');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003224 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 }
3226 else
3227#endif
3228#ifdef FEAT_ARABIC
Bram Moolenaar693f7dc2019-06-21 02:30:38 +02003229 if (p_arshape && !p_tbidi && cmdline_has_arabic(start, len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231 static int buflen = 0;
3232 char_u *p;
3233 int j;
3234 int newlen = 0;
3235 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003236 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237 int prev_c = 0;
3238 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003239 int u8c;
3240 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242
3243 /*
3244 * Do arabic shaping into a temporary buffer. This is very
3245 * inefficient!
3246 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003247 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003249 // Re-allocate the buffer. We keep it around to avoid a lot of
3250 // alloc()/free() calls.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003251 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003252 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003253 arshape_buf = alloc(buflen);
3254 if (arshape_buf == NULL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003255 return; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 }
3257
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003258 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
3259 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003260 // Prepend a space to draw the leading composing char on.
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003261 arshape_buf[0] = ' ';
3262 newlen = 1;
3263 }
3264
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 for (j = start; j < start + len; j += mb_l)
3266 {
3267 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003268 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003269 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270 if (ARABIC_CHAR(u8c))
3271 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003272 // Do Arabic shaping.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273 if (cmdmsg_rl)
3274 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003275 // displaying from right to left
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276 pc = prev_c;
3277 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003278 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003279 if (j + mb_l >= start + len)
3280 nc = NUL;
3281 else
3282 nc = utf_ptr2char(p + mb_l);
3283 }
3284 else
3285 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003286 // displaying from left to right
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 if (j + mb_l >= start + len)
3288 pc = NUL;
3289 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003290 {
3291 int pcc[MAX_MCO];
3292
3293 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003295 pc1 = pcc[0];
3296 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297 nc = prev_c;
3298 }
3299 prev_c = u8c;
3300
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003301 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003303 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003304 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003306 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
3307 if (u8cc[1] != 0)
3308 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003309 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310 }
3311 }
3312 else
3313 {
3314 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003315 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003316 newlen += mb_l;
3317 }
3318 }
3319
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003320 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 }
3322 else
3323#endif
3324 msg_outtrans_len(ccline.cmdbuff + start, len);
3325}
3326
3327/*
3328 * Put a character on the command line. Shifts the following text to the
3329 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
3330 * "c" must be printable (fit in one display cell)!
3331 */
3332 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003333putcmdline(int c, int shift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334{
3335 if (cmd_silent)
3336 return;
3337 msg_no_more = TRUE;
3338 msg_putchar(c);
3339 if (shift)
3340 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
3341 msg_no_more = FALSE;
3342 cursorcmd();
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003343 extra_char = c;
3344 extra_char_shift = shift;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345}
3346
3347/*
3348 * Undo a putcmdline(c, FALSE).
3349 */
3350 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003351unputcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352{
3353 if (cmd_silent)
3354 return;
3355 msg_no_more = TRUE;
3356 if (ccline.cmdlen == ccline.cmdpos)
3357 msg_putchar(' ');
Bram Moolenaar64fdf5c2012-06-06 12:03:06 +02003358 else if (has_mbyte)
3359 draw_cmdline(ccline.cmdpos,
3360 (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361 else
3362 draw_cmdline(ccline.cmdpos, 1);
3363 msg_no_more = FALSE;
3364 cursorcmd();
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003365 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366}
3367
3368/*
3369 * Put the given string, of the given length, onto the command line.
3370 * If len is -1, then STRLEN() is used to calculate the length.
3371 * If 'redraw' is TRUE then the new part of the command line, and the remaining
3372 * part will be redrawn, otherwise it will not. If this function is called
3373 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
3374 * called afterwards.
3375 */
3376 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003377put_on_cmdline(char_u *str, int len, int redraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378{
3379 int retval;
3380 int i;
3381 int m;
3382 int c;
3383
3384 if (len < 0)
3385 len = (int)STRLEN(str);
3386
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003387 // Check if ccline.cmdbuff needs to be longer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003389 retval = realloc_cmdbuff(ccline.cmdlen + len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390 else
3391 retval = OK;
3392 if (retval == OK)
3393 {
3394 if (!ccline.overstrike)
3395 {
3396 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
3397 ccline.cmdbuff + ccline.cmdpos,
3398 (size_t)(ccline.cmdlen - ccline.cmdpos));
3399 ccline.cmdlen += len;
3400 }
3401 else
3402 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 if (has_mbyte)
3404 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003405 // Count nr of characters in the new string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003407 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 ++m;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003409 // Count nr of bytes in cmdline that are overwritten by these
3410 // characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003412 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413 --m;
3414 if (i < ccline.cmdlen)
3415 {
3416 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
3417 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
3418 ccline.cmdlen += ccline.cmdpos + len - i;
3419 }
3420 else
3421 ccline.cmdlen = ccline.cmdpos + len;
3422 }
Bram Moolenaar13505972019-01-24 15:04:48 +01003423 else if (ccline.cmdpos + len > ccline.cmdlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424 ccline.cmdlen = ccline.cmdpos + len;
3425 }
3426 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
3427 ccline.cmdbuff[ccline.cmdlen] = NUL;
3428
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429 if (enc_utf8)
3430 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003431 // When the inserted text starts with a composing character,
3432 // backup to the character before it. There could be two of them.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 i = 0;
3434 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3435 while (ccline.cmdpos > 0 && utf_iscomposing(c))
3436 {
3437 i = (*mb_head_off)(ccline.cmdbuff,
3438 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3439 ccline.cmdpos -= i;
3440 len += i;
3441 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3442 }
Bram Moolenaar13505972019-01-24 15:04:48 +01003443#ifdef FEAT_ARABIC
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
3445 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003446 // Check the previous character for Arabic combining pair.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447 i = (*mb_head_off)(ccline.cmdbuff,
3448 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3449 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
3450 + ccline.cmdpos - i), c))
3451 {
3452 ccline.cmdpos -= i;
3453 len += i;
3454 }
3455 else
3456 i = 0;
3457 }
Bram Moolenaar13505972019-01-24 15:04:48 +01003458#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459 if (i != 0)
3460 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003461 // Also backup the cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
3463 ccline.cmdspos -= i;
3464 msg_col -= i;
3465 if (msg_col < 0)
3466 {
3467 msg_col += Columns;
3468 --msg_row;
3469 }
3470 }
3471 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472
3473 if (redraw && !cmd_silent)
3474 {
3475 msg_no_more = TRUE;
3476 i = cmdline_row;
Bram Moolenaar73dc59a2011-09-30 17:46:21 +02003477 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003479 // Avoid clearing the rest of the line too often.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480 if (cmdline_row != i || ccline.overstrike)
3481 msg_clr_eos();
3482 msg_no_more = FALSE;
3483 }
Bram Moolenaar14184a32019-02-16 15:10:30 +01003484 if (KeyTyped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 {
Bram Moolenaar14184a32019-02-16 15:10:30 +01003486 m = Columns * Rows;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003487 if (m < 0) // overflow, Columns or Rows at weird value
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 m = MAXCOL;
Bram Moolenaar14184a32019-02-16 15:10:30 +01003489 }
3490 else
3491 m = MAXCOL;
3492 for (i = 0; i < len; ++i)
3493 {
3494 c = cmdline_charsize(ccline.cmdpos);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003495 // count ">" for a double-wide char that doesn't fit.
Bram Moolenaar14184a32019-02-16 15:10:30 +01003496 if (has_mbyte)
3497 correct_cmdspos(ccline.cmdpos, c);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003498 // Stop cursor at the end of the screen, but do increment the
3499 // insert position, so that entering a very long command
3500 // works, even though you can't see it.
Bram Moolenaar14184a32019-02-16 15:10:30 +01003501 if (ccline.cmdspos + c < m)
3502 ccline.cmdspos += c;
Bram Moolenaar13505972019-01-24 15:04:48 +01003503
Bram Moolenaar14184a32019-02-16 15:10:30 +01003504 if (has_mbyte)
3505 {
3506 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
3507 if (c > len - i - 1)
3508 c = len - i - 1;
3509 ccline.cmdpos += c;
3510 i += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511 }
Bram Moolenaar14184a32019-02-16 15:10:30 +01003512 ++ccline.cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513 }
3514 }
3515 if (redraw)
3516 msg_check();
3517 return retval;
3518}
3519
Bram Moolenaar66b51422019-08-18 21:44:12 +02003520static cmdline_info_T prev_ccline;
3521static int prev_ccline_used = FALSE;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003522
3523/*
3524 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
3525 * and overwrite it. But get_cmdline_str() may need it, thus make it
3526 * available globally in prev_ccline.
3527 */
3528 static void
Bram Moolenaar66b51422019-08-18 21:44:12 +02003529save_cmdline(cmdline_info_T *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003530{
3531 if (!prev_ccline_used)
3532 {
Bram Moolenaara80faa82020-04-12 19:37:17 +02003533 CLEAR_FIELD(prev_ccline);
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003534 prev_ccline_used = TRUE;
3535 }
3536 *ccp = prev_ccline;
3537 prev_ccline = ccline;
Bram Moolenaar438d1762018-09-30 17:11:48 +02003538 ccline.cmdbuff = NULL; // signal that ccline is not in use
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003539}
3540
3541/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003542 * Restore ccline after it has been saved with save_cmdline().
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003543 */
3544 static void
Bram Moolenaar66b51422019-08-18 21:44:12 +02003545restore_cmdline(cmdline_info_T *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003546{
3547 ccline = prev_ccline;
3548 prev_ccline = *ccp;
3549}
3550
Bram Moolenaar8299df92004-07-10 09:47:34 +00003551/*
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003552 * Paste a yank register into the command line.
3553 * Used by CTRL-R command in command-line mode.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003554 * insert_reg() can't be used here, because special characters from the
3555 * register contents will be interpreted as commands.
3556 *
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003557 * Return FAIL for failure, OK otherwise.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003558 */
3559 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003560cmdline_paste(
3561 int regname,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003562 int literally, // Insert text literally instead of "as typed"
3563 int remcr) // remove trailing CR
Bram Moolenaar8299df92004-07-10 09:47:34 +00003564{
3565 long i;
3566 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003567 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003568 int allocated;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003569
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003570 // check for valid regname; also accept special characters for CTRL-R in
3571 // the command line
Bram Moolenaar8299df92004-07-10 09:47:34 +00003572 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
Bram Moolenaare2c8d832018-05-01 19:24:03 +02003573 && regname != Ctrl_A && regname != Ctrl_L
3574 && !valid_yank_reg(regname, FALSE))
Bram Moolenaar8299df92004-07-10 09:47:34 +00003575 return FAIL;
3576
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003577 // A register containing CTRL-R can cause an endless loop. Allow using
3578 // CTRL-C to break the loop.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003579 line_breakcheck();
3580 if (got_int)
3581 return FAIL;
3582
3583#ifdef FEAT_CLIPBOARD
3584 regname = may_get_selection(regname);
3585#endif
3586
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02003587 // Need to set "textwinlock" to avoid nasty things like going to another
Bram Moolenaar438d1762018-09-30 17:11:48 +02003588 // buffer when evaluating an expression.
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02003589 ++textwinlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003590 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02003591 --textwinlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003592
3593 if (i)
3594 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003595 // Got the value of a special register in "arg".
Bram Moolenaar8299df92004-07-10 09:47:34 +00003596 if (arg == NULL)
3597 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003598
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003599 // When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
3600 // part of the word.
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003601 p = arg;
3602 if (p_is && regname == Ctrl_W)
3603 {
3604 char_u *w;
3605 int len;
3606
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003607 // Locate start of last word in the cmd buffer.
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003608 for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; )
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003609 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003610 if (has_mbyte)
3611 {
3612 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
3613 if (!vim_iswordc(mb_ptr2char(w - len)))
3614 break;
3615 w -= len;
3616 }
3617 else
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003618 {
3619 if (!vim_iswordc(w[-1]))
3620 break;
3621 --w;
3622 }
3623 }
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003624 len = (int)((ccline.cmdbuff + ccline.cmdpos) - w);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003625 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
3626 p += len;
3627 }
3628
3629 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003630 if (allocated)
3631 vim_free(arg);
3632 return OK;
3633 }
3634
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003635 return cmdline_paste_reg(regname, literally, remcr);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003636}
3637
3638/*
3639 * Put a string on the command line.
3640 * When "literally" is TRUE, insert literally.
3641 * When "literally" is FALSE, insert as typed, but don't leave the command
3642 * line.
3643 */
3644 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003645cmdline_paste_str(char_u *s, int literally)
Bram Moolenaar8299df92004-07-10 09:47:34 +00003646{
3647 int c, cv;
3648
3649 if (literally)
3650 put_on_cmdline(s, -1, TRUE);
3651 else
3652 while (*s != NUL)
3653 {
3654 cv = *s;
3655 if (cv == Ctrl_V && s[1])
3656 ++s;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003657 if (has_mbyte)
Bram Moolenaar48be32b2008-06-20 10:56:16 +00003658 c = mb_cptr2char_adv(&s);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003659 else
Bram Moolenaar8299df92004-07-10 09:47:34 +00003660 c = *s++;
Bram Moolenaare79abdd2012-06-29 13:44:41 +02003661 if (cv == Ctrl_V || c == ESC || c == Ctrl_C
3662 || c == CAR || c == NL || c == Ctrl_L
Bram Moolenaar8299df92004-07-10 09:47:34 +00003663#ifdef UNIX
3664 || c == intr_char
3665#endif
3666 || (c == Ctrl_BSL && *s == Ctrl_N))
3667 stuffcharReadbuff(Ctrl_V);
3668 stuffcharReadbuff(c);
3669 }
3670}
3671
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672/*
Bram Moolenaar89c79b92016-05-05 17:18:41 +02003673 * This function is called when the screen size changes and with incremental
3674 * search and in other situations where the command line may have been
3675 * overwritten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 */
3677 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003678redrawcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679{
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003680 redrawcmdline_ex(TRUE);
3681}
3682
3683 void
3684redrawcmdline_ex(int do_compute_cmdrow)
3685{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 if (cmd_silent)
3687 return;
3688 need_wait_return = FALSE;
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003689 if (do_compute_cmdrow)
3690 compute_cmdrow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003691 redrawcmd();
3692 cursorcmd();
3693}
3694
3695 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003696redrawcmdprompt(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697{
3698 int i;
3699
3700 if (cmd_silent)
3701 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003702 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 msg_putchar(ccline.cmdfirstc);
3704 if (ccline.cmdprompt != NULL)
3705 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003706 msg_puts_attr((char *)ccline.cmdprompt, ccline.cmdattr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003708 // do the reverse of set_cmdspos()
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003709 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710 --ccline.cmdindent;
3711 }
3712 else
3713 for (i = ccline.cmdindent; i > 0; --i)
3714 msg_putchar(' ');
3715}
3716
3717/*
3718 * Redraw what is currently on the command line.
3719 */
3720 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003721redrawcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722{
3723 if (cmd_silent)
3724 return;
3725
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003726 // when 'incsearch' is set there may be no command line while redrawing
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003727 if (ccline.cmdbuff == NULL)
3728 {
3729 windgoto(cmdline_row, 0);
3730 msg_clr_eos();
3731 return;
3732 }
3733
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734 msg_start();
3735 redrawcmdprompt();
3736
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003737 // Don't use more prompt, truncate the cmdline if it doesn't fit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738 msg_no_more = TRUE;
3739 draw_cmdline(0, ccline.cmdlen);
3740 msg_clr_eos();
3741 msg_no_more = FALSE;
3742
3743 set_cmdspos_cursor();
Bram Moolenaara92522f2017-07-15 15:21:38 +02003744 if (extra_char != NUL)
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003745 putcmdline(extra_char, extra_char_shift);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746
3747 /*
3748 * An emsg() before may have set msg_scroll. This is used in normal mode,
3749 * in cmdline mode we can reset them now.
3750 */
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003751 msg_scroll = FALSE; // next message overwrites cmdline
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003753 // Typing ':' at the more prompt may set skip_redraw. We don't want this
3754 // in cmdline mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755 skip_redraw = FALSE;
3756}
3757
3758 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003759compute_cmdrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003761 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 cmdline_row = Rows - 1;
3763 else
3764 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
Bram Moolenaare0de17d2017-09-24 16:24:34 +02003765 + lastwin->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766}
3767
Bram Moolenaar66b51422019-08-18 21:44:12 +02003768 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003769cursorcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770{
3771 if (cmd_silent)
3772 return;
3773
3774#ifdef FEAT_RIGHTLEFT
3775 if (cmdmsg_rl)
3776 {
3777 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3778 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3779 if (msg_row <= 0)
3780 msg_row = Rows - 1;
3781 }
3782 else
3783#endif
3784 {
3785 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3786 msg_col = ccline.cmdspos % (int)Columns;
3787 if (msg_row >= Rows)
3788 msg_row = Rows - 1;
3789 }
3790
3791 windgoto(msg_row, msg_col);
3792#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar5c6dbcb2017-08-30 22:00:20 +02003793 if (p_imst == IM_ON_THE_SPOT)
3794 redrawcmd_preedit();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795#endif
3796#ifdef MCH_CURSOR_SHAPE
3797 mch_update_cursor();
3798#endif
3799}
3800
3801 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003802gotocmdline(int clr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803{
3804 msg_start();
3805#ifdef FEAT_RIGHTLEFT
3806 if (cmdmsg_rl)
3807 msg_col = Columns - 1;
3808 else
3809#endif
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003810 msg_col = 0; // always start in column 0
3811 if (clr) // clear the bottom line(s)
3812 msg_clr_eos(); // will reset clear_cmdline
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813 windgoto(cmdline_row, 0);
3814}
3815
3816/*
3817 * Check the word in front of the cursor for an abbreviation.
3818 * Called when the non-id character "c" has been entered.
3819 * When an abbreviation is recognized it is removed from the text with
3820 * backspaces and the replacement string is inserted, followed by "c".
3821 */
3822 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003823ccheck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824{
Bram Moolenaar5e3423d2018-05-13 18:36:27 +02003825 int spos = 0;
3826
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003827 if (p_paste || no_abbr) // no abbreviations or in paste mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828 return FALSE;
3829
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003830 // Do not consider '<,'> be part of the mapping, skip leading whitespace.
3831 // Actually accepts any mark.
Bram Moolenaar5e3423d2018-05-13 18:36:27 +02003832 while (VIM_ISWHITE(ccline.cmdbuff[spos]) && spos < ccline.cmdlen)
3833 spos++;
3834 if (ccline.cmdlen - spos > 5
3835 && ccline.cmdbuff[spos] == '\''
3836 && ccline.cmdbuff[spos + 2] == ','
3837 && ccline.cmdbuff[spos + 3] == '\'')
3838 spos += 5;
3839 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003840 // check abbreviation from the beginning of the commandline
Bram Moolenaar5e3423d2018-05-13 18:36:27 +02003841 spos = 0;
3842
3843 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, spos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844}
3845
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003847 * Escape special characters in "fname" for when used as a file name argument
3848 * after a Vim command, or, when "shell" is non-zero, a shell command.
3849 * Returns the result in allocated memory.
3850 */
3851 char_u *
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02003852vim_strsave_fnameescape(char_u *fname, int shell UNUSED)
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003853{
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003854 char_u *p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003855#ifdef BACKSLASH_IN_FILENAME
3856 char_u buf[20];
3857 int j = 0;
3858
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003859 // Don't escape '[', '{' and '!' if they are in 'isfname'.
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003860 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01003861 if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p))
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003862 buf[j++] = *p;
3863 buf[j] = NUL;
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003864 p = vim_strsave_escaped(fname, buf);
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003865#else
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003866 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
3867 if (shell && csh_like_shell() && p != NULL)
3868 {
3869 char_u *s;
3870
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003871 // For csh and similar shells need to put two backslashes before '!'.
3872 // One is taken by Vim, one by the shell.
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003873 s = vim_strsave_escaped(p, (char_u *)"!");
3874 vim_free(p);
3875 p = s;
3876 }
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003877#endif
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003878
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003879 // '>' and '+' are special at the start of some commands, e.g. ":edit" and
3880 // ":write". "cd -" has a special meaning.
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003881 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL)))
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003882 escape_fname(&p);
3883
3884 return p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003885}
3886
3887/*
Bram Moolenaar45360022005-07-21 21:08:21 +00003888 * Put a backslash before the file name in "pp", which is in allocated memory.
3889 */
Bram Moolenaar66b51422019-08-18 21:44:12 +02003890 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003891escape_fname(char_u **pp)
Bram Moolenaar45360022005-07-21 21:08:21 +00003892{
3893 char_u *p;
3894
Bram Moolenaar964b3742019-05-24 18:54:09 +02003895 p = alloc(STRLEN(*pp) + 2);
Bram Moolenaar45360022005-07-21 21:08:21 +00003896 if (p != NULL)
3897 {
3898 p[0] = '\\';
3899 STRCPY(p + 1, *pp);
3900 vim_free(*pp);
3901 *pp = p;
3902 }
3903}
3904
3905/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906 * For each file name in files[num_files]:
3907 * If 'orig_pat' starts with "~/", replace the home directory with "~".
3908 */
3909 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003910tilde_replace(
3911 char_u *orig_pat,
3912 int num_files,
3913 char_u **files)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003914{
3915 int i;
3916 char_u *p;
3917
3918 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
3919 {
3920 for (i = 0; i < num_files; ++i)
3921 {
3922 p = home_replace_save(NULL, files[i]);
3923 if (p != NULL)
3924 {
3925 vim_free(files[i]);
3926 files[i] = p;
3927 }
3928 }
3929 }
3930}
3931
3932/*
Bram Moolenaar66b51422019-08-18 21:44:12 +02003933 * Get a pointer to the current command line info.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934 */
Bram Moolenaar66b51422019-08-18 21:44:12 +02003935 cmdline_info_T *
3936get_cmdline_info(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937{
Bram Moolenaar66b51422019-08-18 21:44:12 +02003938 return &ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939}
3940
Bram Moolenaar064154c2016-03-19 22:50:43 +01003941#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003942/*
Bram Moolenaar438d1762018-09-30 17:11:48 +02003943 * Get pointer to the command line info to use. save_ccline() may clear
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003944 * ccline and put the previous value in prev_ccline.
3945 */
Bram Moolenaar66b51422019-08-18 21:44:12 +02003946 static cmdline_info_T *
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003947get_ccline_ptr(void)
3948{
3949 if ((State & CMDLINE) == 0)
3950 return NULL;
3951 if (ccline.cmdbuff != NULL)
3952 return &ccline;
3953 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
3954 return &prev_ccline;
3955 return NULL;
3956}
Bram Moolenaar064154c2016-03-19 22:50:43 +01003957#endif
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003958
Bram Moolenaar064154c2016-03-19 22:50:43 +01003959#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003960/*
3961 * Get the current command line in allocated memory.
3962 * Only works when the command line is being edited.
3963 * Returns NULL when something is wrong.
3964 */
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003965 static char_u *
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003966get_cmdline_str(void)
3967{
Bram Moolenaar66b51422019-08-18 21:44:12 +02003968 cmdline_info_T *p;
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003969
Bram Moolenaaree91c332018-09-25 22:27:35 +02003970 if (cmdline_star > 0)
3971 return NULL;
3972 p = get_ccline_ptr();
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003973 if (p == NULL)
3974 return NULL;
3975 return vim_strnsave(p->cmdbuff, p->cmdlen);
3976}
3977
3978/*
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003979 * "getcmdline()" function
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003980 */
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003981 void
3982f_getcmdline(typval_T *argvars UNUSED, typval_T *rettv)
3983{
3984 rettv->v_type = VAR_STRING;
3985 rettv->vval.v_string = get_cmdline_str();
3986}
3987
3988/*
3989 * "getcmdpos()" function
3990 */
3991 void
3992f_getcmdpos(typval_T *argvars UNUSED, typval_T *rettv)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003993{
Bram Moolenaar66b51422019-08-18 21:44:12 +02003994 cmdline_info_T *p = get_ccline_ptr();
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003995
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003996 rettv->vval.v_number = 0;
3997 if (p != NULL)
3998 rettv->vval.v_number = p->cmdpos + 1;
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003999}
4000
4001/*
4002 * Set the command line byte position to "pos". Zero is the first position.
4003 * Only works when the command line is being edited.
4004 * Returns 1 when failed, 0 when OK.
4005 */
Bram Moolenaar08c308a2019-09-04 17:48:15 +02004006 static int
Bram Moolenaard293b2b2016-03-19 22:29:49 +01004007set_cmdline_pos(
4008 int pos)
4009{
Bram Moolenaar66b51422019-08-18 21:44:12 +02004010 cmdline_info_T *p = get_ccline_ptr();
Bram Moolenaard293b2b2016-03-19 22:29:49 +01004011
4012 if (p == NULL)
4013 return 1;
4014
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004015 // The position is not set directly but after CTRL-\ e or CTRL-R = has
4016 // changed the command line.
Bram Moolenaard293b2b2016-03-19 22:29:49 +01004017 if (pos < 0)
4018 new_cmdpos = 0;
4019 else
4020 new_cmdpos = pos;
4021 return 0;
4022}
Bram Moolenaar08c308a2019-09-04 17:48:15 +02004023
4024/*
4025 * "setcmdpos()" function
4026 */
4027 void
4028f_setcmdpos(typval_T *argvars, typval_T *rettv)
4029{
4030 int pos = (int)tv_get_number(&argvars[0]) - 1;
4031
4032 if (pos >= 0)
4033 rettv->vval.v_number = set_cmdline_pos(pos);
4034}
4035
4036/*
4037 * "getcmdtype()" function
4038 */
4039 void
4040f_getcmdtype(typval_T *argvars UNUSED, typval_T *rettv)
4041{
4042 rettv->v_type = VAR_STRING;
4043 rettv->vval.v_string = alloc(2);
4044 if (rettv->vval.v_string != NULL)
4045 {
4046 rettv->vval.v_string[0] = get_cmdline_type();
4047 rettv->vval.v_string[1] = NUL;
4048 }
4049}
4050
Bram Moolenaard293b2b2016-03-19 22:29:49 +01004051#endif
4052
4053#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
4054/*
4055 * Get the current command-line type.
4056 * Returns ':' or '/' or '?' or '@' or '>' or '-'
4057 * Only works when the command line is being edited.
4058 * Returns NUL when something is wrong.
4059 */
4060 int
4061get_cmdline_type(void)
4062{
Bram Moolenaar66b51422019-08-18 21:44:12 +02004063 cmdline_info_T *p = get_ccline_ptr();
Bram Moolenaard293b2b2016-03-19 22:29:49 +01004064
4065 if (p == NULL)
4066 return NUL;
4067 if (p->cmdfirstc == NUL)
Bram Moolenaar064154c2016-03-19 22:50:43 +01004068 return
4069# ifdef FEAT_EVAL
4070 (p->input_fn) ? '@' :
4071# endif
4072 '-';
Bram Moolenaard293b2b2016-03-19 22:29:49 +01004073 return p->cmdfirstc;
4074}
4075#endif
4076
Bram Moolenaard7663c22019-08-06 21:59:57 +02004077/*
4078 * Return the first character of the current command line.
4079 */
4080 int
4081get_cmdline_firstc(void)
4082{
4083 return ccline.cmdfirstc;
4084}
4085
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086/*
4087 * Get indices "num1,num2" that specify a range within a list (not a range of
4088 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
4089 * Returns OK if parsed successfully, otherwise FAIL.
4090 */
4091 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004092get_list_range(char_u **str, int *num1, int *num2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093{
4094 int len;
4095 int first = FALSE;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004096 varnumber_T num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097
4098 *str = skipwhite(*str);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004099 if (**str == '-' || vim_isdigit(**str)) // parse "from" part of range
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100 {
Bram Moolenaar16e9b852019-05-19 19:59:35 +02004101 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 *str += len;
4103 *num1 = (int)num;
4104 first = TRUE;
4105 }
4106 *str = skipwhite(*str);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004107 if (**str == ',') // parse "to" part of range
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 {
4109 *str = skipwhite(*str + 1);
Bram Moolenaar16e9b852019-05-19 19:59:35 +02004110 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111 if (len > 0)
4112 {
4113 *num2 = (int)num;
4114 *str = skipwhite(*str + len);
4115 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004116 else if (!first) // no number given at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117 return FAIL;
4118 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004119 else if (first) // only one number given
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120 *num2 = *num1;
4121 return OK;
4122}
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02004123
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124#if defined(FEAT_CMDWIN) || defined(PROTO)
4125/*
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004126 * Check value of 'cedit' and set cedit_key.
4127 * Returns NULL if value is OK, error message otherwise.
4128 */
4129 char *
4130check_cedit(void)
4131{
4132 int n;
4133
4134 if (*p_cedit == NUL)
4135 cedit_key = -1;
4136 else
4137 {
4138 n = string_to_key(p_cedit, FALSE);
4139 if (vim_isprintc(n))
4140 return e_invarg;
4141 cedit_key = n;
4142 }
4143 return NULL;
4144}
4145
4146/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004147 * Open a window on the current command line and history. Allow editing in
4148 * the window. Returns when the window is closed.
4149 * Returns:
4150 * CR if the command is to be executed
4151 * Ctrl_C if it is to be abandoned
4152 * K_IGNORE if editing continues
4153 */
4154 static int
Bram Moolenaar3bab9392017-04-07 15:42:25 +02004155open_cmdwin(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004157 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 win_T *old_curwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004159 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160 win_T *wp;
4161 int i;
4162 linenr_T lnum;
4163 int histtype;
4164 garray_T winsizes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165 int save_restart_edit = restart_edit;
4166 int save_State = State;
4167 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00004168#ifdef FEAT_RIGHTLEFT
4169 int save_cmdmsg_rl = cmdmsg_rl;
4170#endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02004171#ifdef FEAT_FOLDING
4172 int save_KeyTyped;
4173#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004175 // Can't do this recursively. Can't do it when typing a password.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176 if (cmdwin_type != 0
4177# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
4178 || cmdline_star > 0
4179# endif
4180 )
4181 {
4182 beep_flush();
4183 return K_IGNORE;
4184 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004185 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004187 // Save current window sizes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188 win_size_save(&winsizes);
4189
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01004190 // When using completion in Insert mode with <C-R>=<C-F> one can open the
4191 // command line window, but we don't want the popup menu then.
4192 pum_undisplay();
4193
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004194 // don't use a new tab page
Bram Moolenaare1004402020-10-24 20:49:43 +02004195 cmdmod.cmod_tab = 0;
4196 cmdmod.cmod_flags |= CMOD_NOSWAPFILE;
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00004197
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004198 // Create a window for the command-line buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
4200 {
4201 beep_flush();
Bram Moolenaar292b90d2020-03-18 15:23:16 +01004202 ga_clear(&winsizes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004203 return K_IGNORE;
4204 }
Bram Moolenaar9b7cce22020-06-06 15:14:08 +02004205 // Don't let quitting the More prompt make this fail.
4206 got_int = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207
Bram Moolenaarbb4b93e2021-01-26 21:35:08 +01004208 // Set "cmdwin_type" before any autocommands may mess things up.
4209 cmdwin_type = get_cmdline_type();
4210
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004211 // Create the command-line buffer empty.
Bram Moolenaar9b7cce22020-06-06 15:14:08 +02004212 if (do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL) == FAIL)
4213 {
4214 // Some autocommand messed it up?
4215 win_close(curwin, TRUE);
4216 ga_clear(&winsizes);
4217 return Ctrl_C;
4218 }
Bram Moolenaar9b7cce22020-06-06 15:14:08 +02004219
Bram Moolenaar5e94a292020-03-19 18:46:57 +01004220 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar446cb832008-06-24 21:56:24 +00004221 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE);
Bram Moolenaar5e94a292020-03-19 18:46:57 +01004222 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 curbuf->b_p_ma = TRUE;
Bram Moolenaar876f6d72009-04-29 10:05:51 +00004225#ifdef FEAT_FOLDING
4226 curwin->w_p_fen = FALSE;
4227#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00004229 curwin->w_p_rl = cmdmsg_rl;
4230 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231# endif
Bram Moolenaar3368ea22010-09-21 16:56:35 +02004232 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004233
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004234 // Don't allow switching to another buffer.
Bram Moolenaar18141832017-06-25 21:17:25 +02004235 ++curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004237 // Showing the prompt may have set need_wait_return, reset it.
Bram Moolenaar46152342005-09-07 21:18:43 +00004238 need_wait_return = FALSE;
4239
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00004240 histtype = hist_char2type(cmdwin_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
4242 {
4243 if (p_wc == TAB)
4244 {
4245 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
4246 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
4247 }
4248 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
4249 }
Bram Moolenaar18141832017-06-25 21:17:25 +02004250 --curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004252 // Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
4253 // sets 'textwidth' to 78).
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00004254 curbuf->b_p_tw = 0;
4255
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004256 // Fill the buffer with the history.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004257 init_history();
Bram Moolenaard7663c22019-08-06 21:59:57 +02004258 if (get_hislen() > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259 {
Bram Moolenaard7663c22019-08-06 21:59:57 +02004260 i = *get_hisidx(histtype);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 if (i >= 0)
4262 {
4263 lnum = 0;
4264 do
4265 {
Bram Moolenaard7663c22019-08-06 21:59:57 +02004266 if (++i == get_hislen())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267 i = 0;
Bram Moolenaard7663c22019-08-06 21:59:57 +02004268 if (get_histentry(histtype)[i].hisstr != NULL)
4269 ml_append(lnum++, get_histentry(histtype)[i].hisstr,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004270 (colnr_T)0, FALSE);
4271 }
Bram Moolenaard7663c22019-08-06 21:59:57 +02004272 while (i != *get_hisidx(histtype));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273 }
4274 }
4275
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004276 // Replace the empty last line with the current command-line and put the
4277 // cursor there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004278 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
4279 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4280 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00004281 changed_line_abv_curs();
4282 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004283 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284
Bram Moolenaar23324a02019-10-01 17:39:04 +02004285 // No Ex mode here!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 exmode_active = 0;
4287
4288 State = NORMAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290
Bram Moolenaar23324a02019-10-01 17:39:04 +02004291 // Reset here so it can be set by a CmdWinEnter autocommand.
4292 cmdwin_result = 0;
4293
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004294 // Trigger CmdwinEnter autocommands.
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02004295 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINENTER);
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004296 if (restart_edit != 0) // autocmd with ":startinsert"
Bram Moolenaar5495cc92006-08-16 14:23:04 +00004297 stuffcharReadbuff(K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298
4299 i = RedrawingDisabled;
4300 RedrawingDisabled = 0;
4301
4302 /*
4303 * Call the main loop until <CR> or CTRL-C is typed.
4304 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004305 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306
4307 RedrawingDisabled = i;
4308
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004309# ifdef FEAT_FOLDING
Bram Moolenaar42f06f92014-08-17 17:24:07 +02004310 save_KeyTyped = KeyTyped;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004311# endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02004312
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004313 // Trigger CmdwinLeave autocommands.
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02004314 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINLEAVE);
Bram Moolenaar42f06f92014-08-17 17:24:07 +02004315
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004316# ifdef FEAT_FOLDING
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004317 // Restore KeyTyped in case it is modified by autocommands
Bram Moolenaar42f06f92014-08-17 17:24:07 +02004318 KeyTyped = save_KeyTyped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319# endif
4320
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321 cmdwin_type = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322 exmode_active = save_exmode;
4323
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004324 // Safety check: The old window or buffer was deleted: It's a bug when
4325 // this happens!
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004326 if (!win_valid(old_curwin) || !bufref_valid(&old_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327 {
4328 cmdwin_result = Ctrl_C;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004329 emsg(_("E199: Active window or buffer deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330 }
4331 else
4332 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004333# if defined(FEAT_EVAL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004334 // autocmds may abort script processing
Bram Moolenaar071d4272004-06-13 20:20:40 +00004335 if (aborting() && cmdwin_result != K_IGNORE)
4336 cmdwin_result = Ctrl_C;
4337# endif
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004338 // Set the new command line from the cmdline buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 vim_free(ccline.cmdbuff);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004340 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) // :qa[!] typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 {
Bram Moolenaar46152342005-09-07 21:18:43 +00004342 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
4343
4344 if (histtype == HIST_CMD)
4345 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004346 // Execute the command directly.
Bram Moolenaar46152342005-09-07 21:18:43 +00004347 ccline.cmdbuff = vim_strsave((char_u *)p);
4348 cmdwin_result = CAR;
4349 }
4350 else
4351 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004352 // First need to cancel what we were doing.
Bram Moolenaar46152342005-09-07 21:18:43 +00004353 ccline.cmdbuff = NULL;
4354 stuffcharReadbuff(':');
4355 stuffReadbuff((char_u *)p);
4356 stuffcharReadbuff(CAR);
4357 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004359 else if (cmdwin_result == K_XF2) // :qa typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360 {
4361 ccline.cmdbuff = vim_strsave((char_u *)"qa");
4362 cmdwin_result = CAR;
4363 }
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02004364 else if (cmdwin_result == Ctrl_C)
4365 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004366 // :q or :close, don't execute any command
4367 // and don't modify the cmd window.
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02004368 ccline.cmdbuff = NULL;
4369 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 else
4371 ccline.cmdbuff = vim_strsave(ml_get_curline());
4372 if (ccline.cmdbuff == NULL)
Bram Moolenaar5a15b6a2017-07-11 15:11:57 +02004373 {
4374 ccline.cmdbuff = vim_strsave((char_u *)"");
4375 ccline.cmdlen = 0;
4376 ccline.cmdbufflen = 1;
4377 ccline.cmdpos = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378 cmdwin_result = Ctrl_C;
Bram Moolenaar5a15b6a2017-07-11 15:11:57 +02004379 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 else
4381 {
4382 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
4383 ccline.cmdbufflen = ccline.cmdlen + 1;
4384 ccline.cmdpos = curwin->w_cursor.col;
4385 if (ccline.cmdpos > ccline.cmdlen)
4386 ccline.cmdpos = ccline.cmdlen;
4387 if (cmdwin_result == K_IGNORE)
4388 {
4389 set_cmdspos_cursor();
4390 redrawcmd();
4391 }
4392 }
4393
Bram Moolenaarfa67fbe2015-06-25 18:20:36 +02004394# ifdef FEAT_CONCEAL
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004395 // Avoid command-line window first character being concealed.
Bram Moolenaarfa67fbe2015-06-25 18:20:36 +02004396 curwin->w_p_cole = 0;
4397# endif
Bram Moolenaarb7e26702021-01-26 22:00:52 +01004398 // First go back to the original window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 wp = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004400 set_bufref(&bufref, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401 win_goto(old_curwin);
Bram Moolenaarb7e26702021-01-26 22:00:52 +01004402
4403 // win_goto() may trigger an autocommand that already closes the
4404 // cmdline window.
4405 if (win_valid(wp))
4406 win_close(wp, TRUE);
Bram Moolenaar8006d692010-03-02 17:23:21 +01004407
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004408 // win_close() may have already wiped the buffer when 'bh' is
4409 // set to 'wipe'
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004410 if (bufref_valid(&bufref))
Bram Moolenaara6e8f882019-12-14 16:18:15 +01004411 close_buffer(NULL, bufref.br_buf, DOBUF_WIPE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004412
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004413 // Restore window sizes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414 win_size_restore(&winsizes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 }
4416
4417 ga_clear(&winsizes);
4418 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00004419# ifdef FEAT_RIGHTLEFT
4420 cmdmsg_rl = save_cmdmsg_rl;
4421# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422
4423 State = save_State;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425
4426 return cmdwin_result;
4427}
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004428#endif // FEAT_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00004429
4430/*
4431 * Used for commands that either take a simple command string argument, or:
4432 * cmd << endmarker
4433 * {script}
4434 * endmarker
4435 * Returns a pointer to allocated memory with {script} or NULL.
4436 */
4437 char_u *
Bram Moolenaar6c2b7b82020-04-14 20:15:49 +02004438script_get(exarg_T *eap UNUSED, char_u *cmd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439{
Bram Moolenaar6c2b7b82020-04-14 20:15:49 +02004440#ifdef FEAT_EVAL
4441 list_T *l;
4442 listitem_T *li;
4443 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444 garray_T ga;
4445
4446 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
4447 return NULL;
Bram Moolenaar6c2b7b82020-04-14 20:15:49 +02004448 cmd += 2;
4449
4450 l = heredoc_get(eap, cmd, TRUE);
4451 if (l == NULL)
4452 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453
4454 ga_init2(&ga, 1, 0x400);
4455
Bram Moolenaar6c2b7b82020-04-14 20:15:49 +02004456 FOR_ALL_LIST_ITEMS(l, li)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 {
Bram Moolenaar6c2b7b82020-04-14 20:15:49 +02004458 s = tv_get_string(&li->li_tv);
4459 ga_concat(&ga, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460 ga_append(&ga, '\n');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00004462 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463
Bram Moolenaar6c2b7b82020-04-14 20:15:49 +02004464 list_free(l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465 return (char_u *)ga.ga_data;
Bram Moolenaar6c2b7b82020-04-14 20:15:49 +02004466#else
4467 return NULL;
4468#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469}
Bram Moolenaarda6c0332019-09-01 16:01:30 +02004470
4471#if defined(FEAT_EVAL) || defined(PROTO)
4472/*
4473 * This function is used by f_input() and f_inputdialog() functions. The third
4474 * argument to f_input() specifies the type of completion to use at the
4475 * prompt. The third argument to f_inputdialog() specifies the value to return
4476 * when the user cancels the prompt.
4477 */
4478 void
4479get_user_input(
4480 typval_T *argvars,
4481 typval_T *rettv,
4482 int inputdialog,
4483 int secret)
4484{
4485 char_u *prompt = tv_get_string_chk(&argvars[0]);
4486 char_u *p = NULL;
4487 int c;
4488 char_u buf[NUMBUFLEN];
4489 int cmd_silent_save = cmd_silent;
4490 char_u *defstr = (char_u *)"";
4491 int xp_type = EXPAND_NOTHING;
4492 char_u *xp_arg = NULL;
4493
4494 rettv->v_type = VAR_STRING;
4495 rettv->vval.v_string = NULL;
Bram Moolenaardfc33a62020-04-29 22:30:13 +02004496 if (input_busy)
4497 return; // this doesn't work recursively.
Bram Moolenaarda6c0332019-09-01 16:01:30 +02004498
4499#ifdef NO_CONSOLE_INPUT
4500 // While starting up, there is no place to enter text. When running tests
4501 // with --not-a-term we assume feedkeys() will be used.
4502 if (no_console_input() && !is_not_a_term())
4503 return;
4504#endif
4505
4506 cmd_silent = FALSE; // Want to see the prompt.
4507 if (prompt != NULL)
4508 {
4509 // Only the part of the message after the last NL is considered as
4510 // prompt for the command line
4511 p = vim_strrchr(prompt, '\n');
4512 if (p == NULL)
4513 p = prompt;
4514 else
4515 {
4516 ++p;
4517 c = *p;
4518 *p = NUL;
4519 msg_start();
4520 msg_clr_eos();
4521 msg_puts_attr((char *)prompt, get_echo_attr());
4522 msg_didout = FALSE;
4523 msg_starthere();
4524 *p = c;
4525 }
4526 cmdline_row = msg_row;
4527
4528 if (argvars[1].v_type != VAR_UNKNOWN)
4529 {
4530 defstr = tv_get_string_buf_chk(&argvars[1], buf);
4531 if (defstr != NULL)
4532 stuffReadbuffSpec(defstr);
4533
4534 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN)
4535 {
4536 char_u *xp_name;
4537 int xp_namelen;
4538 long argt;
4539
4540 // input() with a third argument: completion
4541 rettv->vval.v_string = NULL;
4542
4543 xp_name = tv_get_string_buf_chk(&argvars[2], buf);
4544 if (xp_name == NULL)
4545 return;
4546
4547 xp_namelen = (int)STRLEN(xp_name);
4548
4549 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt,
4550 &xp_arg) == FAIL)
4551 return;
4552 }
4553 }
4554
4555 if (defstr != NULL)
4556 {
4557 int save_ex_normal_busy = ex_normal_busy;
Bram Moolenaardfc33a62020-04-29 22:30:13 +02004558 int save_vgetc_busy = vgetc_busy;
4559 int save_input_busy = input_busy;
Bram Moolenaarda6c0332019-09-01 16:01:30 +02004560
Bram Moolenaardfc33a62020-04-29 22:30:13 +02004561 input_busy |= vgetc_busy;
Bram Moolenaarda6c0332019-09-01 16:01:30 +02004562 ex_normal_busy = 0;
Bram Moolenaardfc33a62020-04-29 22:30:13 +02004563 vgetc_busy = 0;
Bram Moolenaarda6c0332019-09-01 16:01:30 +02004564 rettv->vval.v_string =
4565 getcmdline_prompt(secret ? NUL : '@', p, get_echo_attr(),
4566 xp_type, xp_arg);
4567 ex_normal_busy = save_ex_normal_busy;
Bram Moolenaardfc33a62020-04-29 22:30:13 +02004568 vgetc_busy = save_vgetc_busy;
4569 input_busy = save_input_busy;
Bram Moolenaarda6c0332019-09-01 16:01:30 +02004570 }
4571 if (inputdialog && rettv->vval.v_string == NULL
4572 && argvars[1].v_type != VAR_UNKNOWN
4573 && argvars[2].v_type != VAR_UNKNOWN)
4574 rettv->vval.v_string = vim_strsave(tv_get_string_buf(
4575 &argvars[2], buf));
4576
4577 vim_free(xp_arg);
4578
4579 // since the user typed this, no need to wait for return
4580 need_wait_return = FALSE;
4581 msg_didout = FALSE;
4582 }
4583 cmd_silent = cmd_silent_save;
4584}
4585#endif