blob: 45a0a3632150fb80fc4520dcb5a5b16c6777be78 [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 Moolenaar438d1762018-09-30 17:11:48 +020020// The current cmdline_info. It is initialized in getcmdline() and after that
21// used by other functions. When invoking getcmdline() recursively it needs
22// to be saved with save_cmdline() and restored with restore_cmdline().
Bram Moolenaar66b51422019-08-18 21:44:12 +020023static cmdline_info_T ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +000024
25#ifdef FEAT_EVAL
26static int new_cmdpos; /* position set by set_cmdline_pos() */
27#endif
28
Bram Moolenaara92522f2017-07-15 15:21:38 +020029static int extra_char = NUL; /* extra character to display when redrawing
30 * the command line */
Bram Moolenaar6a77d262017-07-16 15:24:01 +020031static int extra_char_shift;
32
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#ifdef FEAT_RIGHTLEFT
34static int cmd_hkmap = 0; /* Hebrew mapping during command line */
35#endif
36
Bram Moolenaar438d1762018-09-30 17:11:48 +020037static char_u *getcmdline_int(int firstc, long count, int indent, int init_ccline);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010038static int cmdline_charsize(int idx);
39static void set_cmdspos(void);
40static void set_cmdspos_cursor(void);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010041static void correct_cmdspos(int idx, int cells);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010042static void alloc_cmdbuff(int len);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010043static void draw_cmdline(int start, int len);
Bram Moolenaar66b51422019-08-18 21:44:12 +020044static void save_cmdline(cmdline_info_T *ccp);
45static void restore_cmdline(cmdline_info_T *ccp);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010046static int cmdline_paste(int regname, int literally, int remcr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000047#ifdef FEAT_WILDMENU
Bram Moolenaard25c16e2016-01-29 22:13:30 +010048static void cmdline_del(int from);
Bram Moolenaar071d4272004-06-13 20:20:40 +000049#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010050static void redrawcmdprompt(void);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010051static int ccheck_abbr(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000052
53#ifdef FEAT_CMDWIN
Bram Moolenaar3bab9392017-04-07 15:42:25 +020054static int open_cmdwin(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000055#endif
56
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +020057
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +020058 static void
59trigger_cmd_autocmd(int typechar, int evt)
60{
61 char_u typestr[2];
62
63 typestr[0] = typechar;
64 typestr[1] = NUL;
65 apply_autocmds(evt, typestr, typestr, FALSE, curbuf);
66}
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +020067
Bram Moolenaar071d4272004-06-13 20:20:40 +000068/*
Bram Moolenaarf8e8c062017-10-22 14:44:17 +020069 * Abandon the command line.
70 */
71 static void
72abandon_cmdline(void)
73{
Bram Moolenaard23a8232018-02-10 18:45:26 +010074 VIM_CLEAR(ccline.cmdbuff);
Bram Moolenaarf8e8c062017-10-22 14:44:17 +020075 if (msg_scrolled == 0)
76 compute_cmdrow();
Bram Moolenaar32526b32019-01-19 17:43:09 +010077 msg("");
Bram Moolenaarf8e8c062017-10-22 14:44:17 +020078 redraw_cmdline = TRUE;
79}
80
Bram Moolenaaree219b02017-12-17 14:55:01 +010081#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaarf8e8c062017-10-22 14:44:17 +020082/*
Bram Moolenaar66216052017-12-16 16:33:44 +010083 * Guess that the pattern matches everything. Only finds specific cases, such
84 * as a trailing \|, which can happen while typing a pattern.
85 */
86 static int
87empty_pattern(char_u *p)
88{
Bram Moolenaar200ea8f2018-01-02 15:37:46 +010089 size_t n = STRLEN(p);
Bram Moolenaar66216052017-12-16 16:33:44 +010090
91 /* remove trailing \v and the like */
92 while (n >= 2 && p[n - 2] == '\\'
93 && vim_strchr((char_u *)"mMvVcCZ", p[n - 1]) != NULL)
94 n -= 2;
95 return n == 0 || (n >= 2 && p[n - 2] == '\\' && p[n - 1] == '|');
96}
97
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +020098// Struct to store the viewstate during 'incsearch' highlighting.
Bram Moolenaar9b25af32018-04-28 13:56:09 +020099typedef struct {
100 colnr_T vs_curswant;
101 colnr_T vs_leftcol;
102 linenr_T vs_topline;
103# ifdef FEAT_DIFF
104 int vs_topfill;
105# endif
106 linenr_T vs_botline;
107 linenr_T vs_empty_rows;
108} viewstate_T;
109
110 static void
111save_viewstate(viewstate_T *vs)
112{
113 vs->vs_curswant = curwin->w_curswant;
114 vs->vs_leftcol = curwin->w_leftcol;
115 vs->vs_topline = curwin->w_topline;
116# ifdef FEAT_DIFF
117 vs->vs_topfill = curwin->w_topfill;
118# endif
119 vs->vs_botline = curwin->w_botline;
120 vs->vs_empty_rows = curwin->w_empty_rows;
121}
122
123 static void
124restore_viewstate(viewstate_T *vs)
125{
126 curwin->w_curswant = vs->vs_curswant;
127 curwin->w_leftcol = vs->vs_leftcol;
128 curwin->w_topline = vs->vs_topline;
129# ifdef FEAT_DIFF
130 curwin->w_topfill = vs->vs_topfill;
131# endif
132 curwin->w_botline = vs->vs_botline;
133 curwin->w_empty_rows = vs->vs_empty_rows;
134}
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200135
136// Struct to store the state of 'incsearch' highlighting.
137typedef struct {
138 pos_T search_start; // where 'incsearch' starts searching
Bram Moolenaar23324a02019-10-01 17:39:04 +0200139 pos_T save_cursor;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200140 viewstate_T init_viewstate;
141 viewstate_T old_viewstate;
Bram Moolenaar23324a02019-10-01 17:39:04 +0200142 pos_T match_start;
143 pos_T match_end;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200144 int did_incsearch;
145 int incsearch_postponed;
Bram Moolenaar167ae422018-08-14 21:32:21 +0200146 int magic_save;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200147} incsearch_state_T;
148
149 static void
150init_incsearch_state(incsearch_state_T *is_state)
151{
152 is_state->match_start = curwin->w_cursor;
153 is_state->did_incsearch = FALSE;
154 is_state->incsearch_postponed = FALSE;
Bram Moolenaar167ae422018-08-14 21:32:21 +0200155 is_state->magic_save = p_magic;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200156 CLEAR_POS(&is_state->match_end);
157 is_state->save_cursor = curwin->w_cursor; // may be restored later
158 is_state->search_start = curwin->w_cursor;
159 save_viewstate(&is_state->init_viewstate);
160 save_viewstate(&is_state->old_viewstate);
161}
162
163/*
164 * First move cursor to end of match, then to the start. This
165 * moves the whole match onto the screen when 'nowrap' is set.
166 */
167 static void
168set_search_match(pos_T *t)
169{
170 t->lnum += search_match_lines;
171 t->col = search_match_endcol;
172 if (t->lnum > curbuf->b_ml.ml_line_count)
173 {
174 t->lnum = curbuf->b_ml.ml_line_count;
175 coladvance((colnr_T)MAXCOL);
176 }
177}
178
179/*
180 * Return TRUE when 'incsearch' highlighting is to be done.
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200181 * Sets search_first_line and search_last_line to the address range.
Bram Moolenaar198cb662018-09-06 21:44:17 +0200182 * May change the last search pattern.
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200183 */
184 static int
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200185do_incsearch_highlighting(int firstc, incsearch_state_T *is_state,
186 int *skiplen, int *patlen)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200187{
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200188 char_u *cmd;
189 cmdmod_T save_cmdmod = cmdmod;
190 char_u *p;
191 int delim_optional = FALSE;
192 int delim;
193 char_u *end;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100194 char *dummy;
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200195 exarg_T ea;
196 pos_T save_cursor;
Bram Moolenaar8b0d5ce2018-08-22 23:05:44 +0200197 int use_last_pat;
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200198
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200199 *skiplen = 0;
200 *patlen = ccline.cmdlen;
201
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200202 if (!p_is || cmd_silent)
203 return FALSE;
204
205 // by default search all lines
206 search_first_line = 0;
207 search_last_line = MAXLNUM;
208
209 if (firstc == '/' || firstc == '?')
210 return TRUE;
211 if (firstc != ':')
212 return FALSE;
213
214 vim_memset(&ea, 0, sizeof(ea));
215 ea.line1 = 1;
216 ea.line2 = 1;
217 ea.cmd = ccline.cmdbuff;
218 ea.addr_type = ADDR_LINES;
219
220 parse_command_modifiers(&ea, &dummy, TRUE);
221 cmdmod = save_cmdmod;
222
223 cmd = skip_range(ea.cmd, NULL);
224 if (vim_strchr((char_u *)"sgvl", *cmd) == NULL)
225 return FALSE;
226
227 // Skip over "substitute" to find the pattern separator.
228 for (p = cmd; ASCII_ISALPHA(*p); ++p)
229 ;
230 if (*skipwhite(p) == NUL)
231 return FALSE;
232
233 if (STRNCMP(cmd, "substitute", p - cmd) == 0
234 || STRNCMP(cmd, "smagic", p - cmd) == 0
235 || STRNCMP(cmd, "snomagic", MAX(p - cmd, 3)) == 0
236 || STRNCMP(cmd, "vglobal", p - cmd) == 0)
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200237 {
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200238 if (*cmd == 's' && cmd[1] == 'm')
239 p_magic = TRUE;
240 else if (*cmd == 's' && cmd[1] == 'n')
241 p_magic = FALSE;
242 }
243 else if (STRNCMP(cmd, "sort", MAX(p - cmd, 3)) == 0)
244 {
245 // skip over flags
246 while (ASCII_ISALPHA(*(p = skipwhite(p))))
247 ++p;
248 if (*p == NUL)
249 return FALSE;
250 }
251 else if (STRNCMP(cmd, "vimgrep", MAX(p - cmd, 3)) == 0
252 || STRNCMP(cmd, "vimgrepadd", MAX(p - cmd, 8)) == 0
253 || STRNCMP(cmd, "lvimgrep", MAX(p - cmd, 2)) == 0
254 || STRNCMP(cmd, "lvimgrepadd", MAX(p - cmd, 9)) == 0
255 || STRNCMP(cmd, "global", p - cmd) == 0)
256 {
257 // skip over "!"
258 if (*p == '!')
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200259 {
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200260 p++;
261 if (*skipwhite(p) == NUL)
262 return FALSE;
263 }
264 if (*cmd != 'g')
265 delim_optional = TRUE;
266 }
267 else
268 return FALSE;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200269
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200270 p = skipwhite(p);
271 delim = (delim_optional && vim_isIDc(*p)) ? ' ' : *p++;
272 end = skip_regexp(p, delim, p_magic, NULL);
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +0200273
Bram Moolenaar8b0d5ce2018-08-22 23:05:44 +0200274 use_last_pat = end == p && *end == delim;
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +0200275
Bram Moolenaar8b0d5ce2018-08-22 23:05:44 +0200276 if (end == p && !use_last_pat)
277 return FALSE;
278
279 // Don't do 'hlsearch' highlighting if the pattern matches everything.
280 if (!use_last_pat)
281 {
282 char c = *end;
283 int empty;
284
285 *end = NUL;
286 empty = empty_pattern(p);
287 *end = c;
288 if (empty)
289 return FALSE;
290 }
291
292 // found a non-empty pattern or //
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200293 *skiplen = (int)(p - ccline.cmdbuff);
294 *patlen = (int)(end - p);
Bram Moolenaar264cf5c2018-08-18 21:05:31 +0200295
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200296 // parse the address range
297 save_cursor = curwin->w_cursor;
298 curwin->w_cursor = is_state->search_start;
Bram Moolenaar50eb16c2018-09-15 15:42:40 +0200299 parse_cmd_address(&ea, &dummy, TRUE);
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200300 if (ea.addr_count > 0)
301 {
302 // Allow for reverse match.
303 if (ea.line2 < ea.line1)
304 {
305 search_first_line = ea.line2;
306 search_last_line = ea.line1;
307 }
308 else
309 {
310 search_first_line = ea.line1;
311 search_last_line = ea.line2;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200312 }
313 }
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200314 else if (cmd[0] == 's' && cmd[1] != 'o')
315 {
316 // :s defaults to the current line
317 search_first_line = curwin->w_cursor.lnum;
318 search_last_line = curwin->w_cursor.lnum;
319 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200320
Bram Moolenaar111bbd62018-08-18 21:23:05 +0200321 curwin->w_cursor = save_cursor;
322 return TRUE;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200323}
324
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200325 static void
326finish_incsearch_highlighting(
327 int gotesc,
328 incsearch_state_T *is_state,
329 int call_update_screen)
330{
331 if (is_state->did_incsearch)
332 {
333 is_state->did_incsearch = FALSE;
334 if (gotesc)
335 curwin->w_cursor = is_state->save_cursor;
336 else
337 {
338 if (!EQUAL_POS(is_state->save_cursor, is_state->search_start))
339 {
340 // put the '" mark at the original position
341 curwin->w_cursor = is_state->save_cursor;
342 setpcmark();
343 }
344 curwin->w_cursor = is_state->search_start;
345 }
346 restore_viewstate(&is_state->old_viewstate);
347 highlight_match = FALSE;
Bram Moolenaarf13daa42018-08-31 22:09:54 +0200348
349 // by default search all lines
350 search_first_line = 0;
351 search_last_line = MAXLNUM;
352
353 p_magic = is_state->magic_save;
354
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200355 validate_cursor(); /* needed for TAB */
Bram Moolenaar65985ac2018-09-16 17:08:04 +0200356 redraw_all_later(SOME_VALID);
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200357 if (call_update_screen)
358 update_screen(SOME_VALID);
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200359 }
360}
361
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200362/*
363 * Do 'incsearch' highlighting if desired.
364 */
365 static void
366may_do_incsearch_highlighting(
367 int firstc,
368 long count,
369 incsearch_state_T *is_state)
370{
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200371 int skiplen, patlen;
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200372 int found; // do_search() result
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200373 pos_T end_pos;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200374#ifdef FEAT_RELTIME
375 proftime_T tm;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200376 searchit_arg_T sia;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200377#endif
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200378 int next_char;
379 int use_last_pat;
Bram Moolenaar693f7dc2019-06-21 02:30:38 +0200380 int did_do_incsearch = is_state->did_incsearch;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200381
Bram Moolenaar198cb662018-09-06 21:44:17 +0200382 // Parsing range may already set the last search pattern.
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100383 // NOTE: must call restore_last_search_pattern() before returning!
Bram Moolenaar198cb662018-09-06 21:44:17 +0200384 save_last_search_pattern();
385
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200386 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen))
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200387 {
Bram Moolenaar198cb662018-09-06 21:44:17 +0200388 restore_last_search_pattern();
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200389 finish_incsearch_highlighting(FALSE, is_state, TRUE);
Bram Moolenaar693f7dc2019-06-21 02:30:38 +0200390 if (did_do_incsearch && vpeekc() == NUL)
391 // may have skipped a redraw, do it now
392 redrawcmd();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200393 return;
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200394 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200395
396 // If there is a character waiting, search and redraw later.
397 if (char_avail())
398 {
Bram Moolenaar198cb662018-09-06 21:44:17 +0200399 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200400 is_state->incsearch_postponed = TRUE;
401 return;
402 }
403 is_state->incsearch_postponed = FALSE;
404
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200405 if (search_first_line == 0)
406 // start at the original cursor position
407 curwin->w_cursor = is_state->search_start;
Bram Moolenaar1c299432018-10-28 14:36:09 +0100408 else if (search_first_line > curbuf->b_ml.ml_line_count)
409 {
410 // start after the last line
411 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
412 curwin->w_cursor.col = MAXCOL;
413 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200414 else
415 {
416 // start at the first line in the range
417 curwin->w_cursor.lnum = search_first_line;
418 curwin->w_cursor.col = 0;
419 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200420
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200421 // Use the previous pattern for ":s//".
422 next_char = ccline.cmdbuff[skiplen + patlen];
423 use_last_pat = patlen == 0 && skiplen > 0
424 && ccline.cmdbuff[skiplen - 1] == next_char;
425
426 // If there is no pattern, don't do anything.
427 if (patlen == 0 && !use_last_pat)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200428 {
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200429 found = 0;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200430 set_no_hlsearch(TRUE); // turn off previous highlight
431 redraw_all_later(SOME_VALID);
432 }
433 else
434 {
435 int search_flags = SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK;
436
437 cursor_off(); // so the user knows we're busy
438 out_flush();
439 ++emsg_off; // so it doesn't beep if bad expr
440#ifdef FEAT_RELTIME
441 // Set the time limit to half a second.
442 profile_setlimit(500L, &tm);
443#endif
444 if (!p_hls)
445 search_flags += SEARCH_KEEP;
Bram Moolenaar976b8472018-08-12 15:49:47 +0200446 if (search_first_line != 0)
447 search_flags += SEARCH_START;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200448 ccline.cmdbuff[skiplen + patlen] = NUL;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200449#ifdef FEAT_RELTIME
450 vim_memset(&sia, 0, sizeof(sia));
451 sia.sa_tm = &tm;
452#endif
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200453 found = do_search(NULL, firstc == ':' ? '/' : firstc,
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200454 ccline.cmdbuff + skiplen, count, search_flags,
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200455#ifdef FEAT_RELTIME
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200456 &sia
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200457#else
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200458 NULL
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200459#endif
460 );
Bram Moolenaarc7f08b72018-08-12 17:39:14 +0200461 ccline.cmdbuff[skiplen + patlen] = next_char;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200462 --emsg_off;
463
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200464 if (curwin->w_cursor.lnum < search_first_line
465 || curwin->w_cursor.lnum > search_last_line)
Bram Moolenaar2f6a3462018-08-14 18:16:52 +0200466 {
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200467 // match outside of address range
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200468 found = 0;
Bram Moolenaar2f6a3462018-08-14 18:16:52 +0200469 curwin->w_cursor = is_state->search_start;
470 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200471
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200472 // if interrupted while searching, behave like it failed
473 if (got_int)
474 {
475 (void)vpeekc(); // remove <C-C> from input stream
476 got_int = FALSE; // don't abandon the command line
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200477 found = 0;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200478 }
479 else if (char_avail())
480 // cancelled searching because a char was typed
481 is_state->incsearch_postponed = TRUE;
482 }
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200483 if (found != 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200484 highlight_match = TRUE; // highlight position
485 else
486 highlight_match = FALSE; // remove highlight
487
488 // First restore the old curwin values, so the screen is positioned in the
489 // same way as the actual search command.
490 restore_viewstate(&is_state->old_viewstate);
491 changed_cline_bef_curs();
492 update_topline();
493
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200494 if (found != 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200495 {
496 pos_T save_pos = curwin->w_cursor;
497
498 is_state->match_start = curwin->w_cursor;
499 set_search_match(&curwin->w_cursor);
500 validate_cursor();
501 end_pos = curwin->w_cursor;
502 is_state->match_end = end_pos;
503 curwin->w_cursor = save_pos;
504 }
505 else
506 end_pos = curwin->w_cursor; // shutup gcc 4
507
Bram Moolenaar4edfe2d2018-08-23 20:55:45 +0200508 // Disable 'hlsearch' highlighting if the pattern matches everything.
509 // Avoids a flash when typing "foo\|".
510 if (!use_last_pat)
511 {
512 next_char = ccline.cmdbuff[skiplen + patlen];
513 ccline.cmdbuff[skiplen + patlen] = NUL;
Bram Moolenaar65985ac2018-09-16 17:08:04 +0200514 if (empty_pattern(ccline.cmdbuff) && !no_hlsearch)
515 {
516 redraw_all_later(SOME_VALID);
Bram Moolenaar4edfe2d2018-08-23 20:55:45 +0200517 set_no_hlsearch(TRUE);
Bram Moolenaar65985ac2018-09-16 17:08:04 +0200518 }
Bram Moolenaar4edfe2d2018-08-23 20:55:45 +0200519 ccline.cmdbuff[skiplen + patlen] = next_char;
520 }
521
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200522 validate_cursor();
523 // May redraw the status line to show the cursor position.
524 if (p_ru && curwin->w_status_height > 0)
525 curwin->w_redr_status = TRUE;
526
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200527 update_screen(SOME_VALID);
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200528 restore_last_search_pattern();
529
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200530 // Leave it at the end to make CTRL-R CTRL-W work. But not when beyond the
531 // end of the pattern, e.g. for ":s/pat/".
532 if (ccline.cmdbuff[skiplen + patlen] != NUL)
533 curwin->w_cursor = is_state->search_start;
534 else if (found != 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200535 curwin->w_cursor = end_pos;
536
537 msg_starthere();
538 redrawcmdline();
539 is_state->did_incsearch = TRUE;
540}
541
542/*
543 * May adjust 'incsearch' highlighting for typing CTRL-G and CTRL-T, go to next
544 * or previous match.
545 * Returns FAIL when jumping to cmdline_not_changed;
546 */
547 static int
548may_adjust_incsearch_highlighting(
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200549 int firstc,
550 long count,
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200551 incsearch_state_T *is_state,
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200552 int c)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200553{
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200554 int skiplen, patlen;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200555 pos_T t;
556 char_u *pat;
557 int search_flags = SEARCH_NOOF;
558 int i;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200559 int save;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200560
Bram Moolenaar198cb662018-09-06 21:44:17 +0200561 // Parsing range may already set the last search pattern.
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100562 // NOTE: must call restore_last_search_pattern() before returning!
Bram Moolenaar198cb662018-09-06 21:44:17 +0200563 save_last_search_pattern();
564
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200565 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen))
Bram Moolenaar198cb662018-09-06 21:44:17 +0200566 {
567 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200568 return OK;
Bram Moolenaar198cb662018-09-06 21:44:17 +0200569 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200570 if (patlen == 0 && ccline.cmdbuff[skiplen] == NUL)
Bram Moolenaar198cb662018-09-06 21:44:17 +0200571 {
572 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200573 return FAIL;
Bram Moolenaar198cb662018-09-06 21:44:17 +0200574 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200575
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200576 if (firstc == ccline.cmdbuff[skiplen])
Bram Moolenaaref73a282018-08-11 19:02:22 +0200577 {
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200578 pat = last_search_pattern();
Bram Moolenaaref73a282018-08-11 19:02:22 +0200579 skiplen = 0;
Bram Moolenaard7cc1632018-08-14 20:18:26 +0200580 patlen = (int)STRLEN(pat);
Bram Moolenaaref73a282018-08-11 19:02:22 +0200581 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200582 else
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200583 pat = ccline.cmdbuff + skiplen;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200584
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200585 cursor_off();
586 out_flush();
587 if (c == Ctrl_G)
588 {
589 t = is_state->match_end;
590 if (LT_POS(is_state->match_start, is_state->match_end))
591 // Start searching at the end of the match not at the beginning of
592 // the next column.
593 (void)decl(&t);
594 search_flags += SEARCH_COL;
595 }
596 else
597 t = is_state->match_start;
598 if (!p_hls)
599 search_flags += SEARCH_KEEP;
600 ++emsg_off;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200601 save = pat[patlen];
602 pat[patlen] = NUL;
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100603 i = searchit(curwin, curbuf, &t, NULL,
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200604 c == Ctrl_G ? FORWARD : BACKWARD,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200605 pat, count, search_flags, RE_SEARCH, NULL);
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200606 --emsg_off;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200607 pat[patlen] = save;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200608 if (i)
609 {
610 is_state->search_start = is_state->match_start;
611 is_state->match_end = t;
612 is_state->match_start = t;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200613 if (c == Ctrl_T && firstc != '?')
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200614 {
615 // Move just before the current match, so that when nv_search
616 // finishes the cursor will be put back on the match.
617 is_state->search_start = t;
618 (void)decl(&is_state->search_start);
619 }
620 else if (c == Ctrl_G && firstc == '?')
621 {
622 // Move just after the current match, so that when nv_search
623 // finishes the cursor will be put back on the match.
624 is_state->search_start = t;
625 (void)incl(&is_state->search_start);
626 }
627 if (LT_POS(t, is_state->search_start) && c == Ctrl_G)
628 {
629 // wrap around
630 is_state->search_start = t;
631 if (firstc == '?')
632 (void)incl(&is_state->search_start);
633 else
634 (void)decl(&is_state->search_start);
635 }
636
637 set_search_match(&is_state->match_end);
638 curwin->w_cursor = is_state->match_start;
639 changed_cline_bef_curs();
640 update_topline();
641 validate_cursor();
642 highlight_match = TRUE;
643 save_viewstate(&is_state->old_viewstate);
644 update_screen(NOT_VALID);
645 redrawcmdline();
Bram Moolenaar69a5b862019-07-16 21:38:51 +0200646 curwin->w_cursor = is_state->match_end;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200647 }
648 else
649 vim_beep(BO_ERROR);
650 restore_last_search_pattern();
651 return FAIL;
652}
653
654/*
655 * When CTRL-L typed: add character from the match to the pattern.
656 * May set "*c" to the added character.
657 * Return OK when jumping to cmdline_not_changed.
658 */
659 static int
660may_add_char_to_search(int firstc, int *c, incsearch_state_T *is_state)
661{
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200662 int skiplen, patlen;
663
Bram Moolenaar198cb662018-09-06 21:44:17 +0200664 // Parsing range may already set the last search pattern.
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100665 // NOTE: must call restore_last_search_pattern() before returning!
Bram Moolenaar198cb662018-09-06 21:44:17 +0200666 save_last_search_pattern();
667
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200668 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen))
Bram Moolenaar198cb662018-09-06 21:44:17 +0200669 {
670 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200671 return FAIL;
Bram Moolenaar198cb662018-09-06 21:44:17 +0200672 }
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100673 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200674
675 // Add a character from under the cursor for 'incsearch'.
676 if (is_state->did_incsearch)
677 {
678 curwin->w_cursor = is_state->match_end;
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200679 *c = gchar_cursor();
680 if (*c != NUL)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200681 {
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200682 // If 'ignorecase' and 'smartcase' are set and the
683 // command line has no uppercase characters, convert
684 // the character to lowercase.
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200685 if (p_ic && p_scs && !pat_has_uppercase(ccline.cmdbuff + skiplen))
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200686 *c = MB_TOLOWER(*c);
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200687 if (*c == firstc || vim_strchr((char_u *)(
688 p_magic ? "\\~^$.*[" : "\\^$"), *c) != NULL)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200689 {
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200690 // put a backslash before special characters
691 stuffcharReadbuff(*c);
692 *c = '\\';
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200693 }
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200694 // add any composing characters
695 if (mb_char2len(*c) != mb_ptr2len(ml_get_cursor()))
696 {
697 int save_c = *c;
698
699 while (mb_char2len(*c) != mb_ptr2len(ml_get_cursor()))
700 {
701 curwin->w_cursor.col += mb_char2len(*c);
702 *c = gchar_cursor();
703 stuffcharReadbuff(*c);
704 }
705 *c = save_c;
706 }
707 return FAIL;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200708 }
709 }
710 return OK;
711}
Bram Moolenaar9b25af32018-04-28 13:56:09 +0200712#endif
713
Bram Moolenaar693f7dc2019-06-21 02:30:38 +0200714#ifdef FEAT_ARABIC
715/*
716 * Return TRUE if the command line has an Arabic character at or after "start"
717 * for "len" bytes.
718 */
719 static int
720cmdline_has_arabic(int start, int len)
721{
722 int j;
723 int mb_l;
724 int u8c;
725 char_u *p;
726 int u8cc[MAX_MCO];
727
728 if (!enc_utf8)
729 return FALSE;
730
731 for (j = start; j < start + len; j += mb_l)
732 {
733 p = ccline.cmdbuff + j;
734 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
735 mb_l = utfc_ptr2len_len(p, start + len - j);
736 if (ARABIC_CHAR(u8c))
737 return TRUE;
738 }
739 return FALSE;
740}
741#endif
742
Bram Moolenaard3dc0622018-09-30 17:45:30 +0200743 void
744cmdline_init(void)
745{
Bram Moolenaar66b51422019-08-18 21:44:12 +0200746 vim_memset(&ccline, 0, sizeof(cmdline_info_T));
Bram Moolenaard3dc0622018-09-30 17:45:30 +0200747}
748
Bram Moolenaar66216052017-12-16 16:33:44 +0100749/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 * getcmdline() - accept a command line starting with firstc.
751 *
752 * firstc == ':' get ":" command line.
753 * firstc == '/' or '?' get search pattern
754 * firstc == '=' get expression
755 * firstc == '@' get text for input() function
756 * firstc == '>' get text for debug mode
757 * firstc == NUL get text for :insert command
758 * firstc == -1 like NUL, and break on CTRL-C
759 *
760 * The line is collected in ccline.cmdbuff, which is reallocated to fit the
761 * command line.
762 *
763 * Careful: getcmdline() can be called recursively!
764 *
765 * Return pointer to allocated string if there is a commandline, NULL
766 * otherwise.
767 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100769getcmdline(
770 int firstc,
Bram Moolenaar438d1762018-09-30 17:11:48 +0200771 long count, // only used for incremental search
Bram Moolenaare96a2492019-06-25 04:12:16 +0200772 int indent, // indent for inside conditionals
773 int do_concat UNUSED)
Bram Moolenaar438d1762018-09-30 17:11:48 +0200774{
775 return getcmdline_int(firstc, count, indent, TRUE);
776}
777
778 static char_u *
779getcmdline_int(
780 int firstc,
781 long count UNUSED, // only used for incremental search
782 int indent, // indent for inside conditionals
783 int init_ccline) // clear ccline first
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784{
785 int c;
786 int i;
787 int j;
788 int gotesc = FALSE; /* TRUE when <ESC> just typed */
789 int do_abbr; /* when TRUE check for abbr. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790 char_u *lookfor = NULL; /* string to match */
791 int hiscnt; /* current history line in use */
792 int histype; /* history type to be used */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200794 incsearch_state_T is_state;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795#endif
796 int did_wild_list = FALSE; /* did wild_list() recently */
797 int wim_index = 0; /* index in wim_flags[] */
798 int res;
799 int save_msg_scroll = msg_scroll;
800 int save_State = State; /* remember State when called */
801 int some_key_typed = FALSE; /* one of the keys was typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 /* mouse drag and release events are ignored, unless they are
803 * preceded with a mouse down event */
804 int ignore_drag_release = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805#ifdef FEAT_EVAL
806 int break_ctrl_c = FALSE;
807#endif
808 expand_T xpc;
809 long *b_im_ptr = NULL;
Bram Moolenaar66b51422019-08-18 21:44:12 +0200810 cmdline_info_T save_ccline;
Bram Moolenaar438d1762018-09-30 17:11:48 +0200811 int did_save_ccline = FALSE;
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200812 int cmdline_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813
Bram Moolenaar438d1762018-09-30 17:11:48 +0200814 if (ccline.cmdbuff != NULL)
815 {
816 // Being called recursively. Since ccline is global, we need to save
817 // the current buffer and restore it when returning.
818 save_cmdline(&save_ccline);
819 did_save_ccline = TRUE;
820 }
821 if (init_ccline)
Bram Moolenaar66b51422019-08-18 21:44:12 +0200822 vim_memset(&ccline, 0, sizeof(cmdline_info_T));
Bram Moolenaar438d1762018-09-30 17:11:48 +0200823
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824#ifdef FEAT_EVAL
825 if (firstc == -1)
826 {
827 firstc = NUL;
828 break_ctrl_c = TRUE;
829 }
830#endif
831#ifdef FEAT_RIGHTLEFT
832 /* start without Hebrew mapping for a command line */
833 if (firstc == ':' || firstc == '=' || firstc == '>')
834 cmd_hkmap = 0;
835#endif
836
837 ccline.overstrike = FALSE; /* always start in insert mode */
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200838
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200840 init_incsearch_state(&is_state);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841#endif
842
843 /*
844 * set some variables for redrawcmd()
845 */
846 ccline.cmdfirstc = (firstc == '@' ? 0 : firstc);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000847 ccline.cmdindent = (firstc > 0 ? indent : 0);
848
849 /* alloc initial ccline.cmdbuff */
850 alloc_cmdbuff(exmode_active ? 250 : indent + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851 if (ccline.cmdbuff == NULL)
Bram Moolenaar438d1762018-09-30 17:11:48 +0200852 goto theend; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 ccline.cmdlen = ccline.cmdpos = 0;
854 ccline.cmdbuff[0] = NUL;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +0100855 sb_text_start_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000857 /* autoindent for :insert and :append */
858 if (firstc <= 0)
859 {
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200860 vim_memset(ccline.cmdbuff, ' ', indent);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000861 ccline.cmdbuff[indent] = NUL;
862 ccline.cmdpos = indent;
863 ccline.cmdspos = indent;
864 ccline.cmdlen = indent;
865 }
866
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 ExpandInit(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000868 ccline.xpc = &xpc;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869
870#ifdef FEAT_RIGHTLEFT
871 if (curwin->w_p_rl && *curwin->w_p_rlc == 's'
872 && (firstc == '/' || firstc == '?'))
873 cmdmsg_rl = TRUE;
874 else
875 cmdmsg_rl = FALSE;
876#endif
877
878 redir_off = TRUE; /* don't redirect the typed command */
879 if (!cmd_silent)
880 {
881 i = msg_scrolled;
882 msg_scrolled = 0; /* avoid wait_return message */
883 gotocmdline(TRUE);
884 msg_scrolled += i;
885 redrawcmdprompt(); /* draw prompt or indent */
886 set_cmdspos();
887 }
888 xpc.xp_context = EXPAND_NOTHING;
889 xpc.xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000890#ifndef BACKSLASH_IN_FILENAME
891 xpc.xp_shell = FALSE;
892#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000894#if defined(FEAT_EVAL)
895 if (ccline.input_fn)
896 {
897 xpc.xp_context = ccline.xp_context;
898 xpc.xp_pattern = ccline.cmdbuff;
899 xpc.xp_arg = ccline.xp_arg;
900 }
901#endif
902
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 /*
904 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when
905 * doing ":@0" when register 0 doesn't contain a CR.
906 */
907 msg_scroll = FALSE;
908
909 State = CMDLINE;
910
911 if (firstc == '/' || firstc == '?' || firstc == '@')
912 {
913 /* Use ":lmap" mappings for search pattern and input(). */
914 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT)
915 b_im_ptr = &curbuf->b_p_iminsert;
916 else
917 b_im_ptr = &curbuf->b_p_imsearch;
918 if (*b_im_ptr == B_IMODE_LMAP)
919 State |= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100920#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 im_set_active(*b_im_ptr == B_IMODE_IM);
922#endif
923 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100924#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 else if (p_imcmdline)
926 im_set_active(TRUE);
927#endif
928
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930#ifdef CURSOR_SHAPE
931 ui_cursor_shape(); /* may show different cursor shape */
932#endif
933
Bram Moolenaarf4d11452005-12-02 00:46:37 +0000934 /* When inside an autocommand for writing "exiting" may be set and
935 * terminal mode set to cooked. Need to set raw mode here then. */
936 settmode(TMODE_RAW);
937
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200938 /* Trigger CmdlineEnter autocommands. */
939 cmdline_type = firstc == NUL ? '-' : firstc;
940 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINEENTER);
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200941
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942 init_history();
Bram Moolenaard7663c22019-08-06 21:59:57 +0200943 hiscnt = get_hislen(); /* set hiscnt to impossible history value */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 histype = hist_char2type(firstc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945
946#ifdef FEAT_DIGRAPHS
Bram Moolenaar3c65e312009-04-29 16:47:23 +0000947 do_digraph(-1); /* init digraph typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948#endif
949
Bram Moolenaar15a35c42014-06-25 12:26:46 +0200950 /* If something above caused an error, reset the flags, we do want to type
951 * and execute commands. Display may be messed up a bit. */
952 if (did_emsg)
953 redrawcmd();
954 did_emsg = FALSE;
955 got_int = FALSE;
956
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 /*
958 * Collect the command string, handling editing keys.
959 */
960 for (;;)
961 {
Bram Moolenaar29b2d262006-09-10 19:07:28 +0000962 redir_off = TRUE; /* Don't redirect the typed command.
963 Repeated, because a ":redir" inside
964 completion may switch it on. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965#ifdef USE_ON_FLY_SCROLL
966 dont_scroll = FALSE; /* allow scrolling here */
967#endif
968 quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */
969
Bram Moolenaar72532d32018-04-07 19:09:09 +0200970 did_emsg = FALSE; /* There can't really be a reason why an error
971 that occurs while typing a command should
972 cause the command not to be executed. */
973
Bram Moolenaar8aeec402019-09-15 23:02:04 +0200974 // Trigger SafeState if nothing is pending.
975 may_trigger_safestate(xpc.xp_numfiles <= 0);
976
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 cursorcmd(); /* set the cursor on the right spot */
Bram Moolenaar30405d32008-01-02 20:55:27 +0000978
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +0100979 /* Get a character. Ignore K_IGNORE and K_NOP, they should not do
980 * anything, such as stop completion. */
Bram Moolenaar30405d32008-01-02 20:55:27 +0000981 do
Bram Moolenaar30405d32008-01-02 20:55:27 +0000982 c = safe_vgetc();
Bram Moolenaarabab0b02019-03-30 18:47:01 +0100983 while (c == K_IGNORE || c == K_NOP);
Bram Moolenaar30405d32008-01-02 20:55:27 +0000984
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 if (KeyTyped)
986 {
987 some_key_typed = TRUE;
988#ifdef FEAT_RIGHTLEFT
989 if (cmd_hkmap)
990 c = hkmap(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 if (cmdmsg_rl && !KeyStuffed)
992 {
993 /* Invert horizontal movements and operations. Only when
994 * typed by the user directly, not when the result of a
995 * mapping. */
996 switch (c)
997 {
998 case K_RIGHT: c = K_LEFT; break;
999 case K_S_RIGHT: c = K_S_LEFT; break;
1000 case K_C_RIGHT: c = K_C_LEFT; break;
1001 case K_LEFT: c = K_RIGHT; break;
1002 case K_S_LEFT: c = K_S_RIGHT; break;
1003 case K_C_LEFT: c = K_C_RIGHT; break;
1004 }
1005 }
1006#endif
1007 }
1008
1009 /*
1010 * Ignore got_int when CTRL-C was typed here.
1011 * Don't ignore it in :global, we really need to break then, e.g., for
1012 * ":g/pat/normal /pat" (without the <CR>).
1013 * Don't ignore it for the input() function.
1014 */
1015 if ((c == Ctrl_C
1016#ifdef UNIX
1017 || c == intr_char
1018#endif
1019 )
1020#if defined(FEAT_EVAL) || defined(FEAT_CRYPT)
1021 && firstc != '@'
1022#endif
1023#ifdef FEAT_EVAL
1024 && !break_ctrl_c
1025#endif
1026 && !global_busy)
1027 got_int = FALSE;
1028
Bram Moolenaard7663c22019-08-06 21:59:57 +02001029 // free old command line when finished moving around in the history
1030 // list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 if (lookfor != NULL
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001032 && c != K_S_DOWN && c != K_S_UP
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001033 && c != K_DOWN && c != K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034 && c != K_PAGEDOWN && c != K_PAGEUP
1035 && c != K_KPAGEDOWN && c != K_KPAGEUP
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001036 && c != K_LEFT && c != K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N)))
Bram Moolenaard23a8232018-02-10 18:45:26 +01001038 VIM_CLEAR(lookfor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039
1040 /*
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001041 * When there are matching completions to select <S-Tab> works like
1042 * CTRL-P (unless 'wc' is <S-Tab>).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043 */
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001044 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 c = Ctrl_P;
1046
1047#ifdef FEAT_WILDMENU
1048 /* Special translations for 'wildmenu' */
1049 if (did_wild_list && p_wmnu)
1050 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001051 if (c == K_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052 c = Ctrl_P;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001053 else if (c == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054 c = Ctrl_N;
1055 }
1056 /* Hitting CR after "emenu Name.": complete submenu */
1057 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu
1058 && ccline.cmdpos > 1
1059 && ccline.cmdbuff[ccline.cmdpos - 1] == '.'
1060 && ccline.cmdbuff[ccline.cmdpos - 2] != '\\'
1061 && (c == '\n' || c == '\r' || c == K_KENTER))
1062 c = K_DOWN;
1063#endif
1064
1065 /* free expanded names when finished walking through matches */
1066 if (xpc.xp_numfiles != -1
1067 && !(c == p_wc && KeyTyped) && c != p_wcm
1068 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A
1069 && c != Ctrl_L)
1070 {
1071 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
1072 did_wild_list = FALSE;
1073#ifdef FEAT_WILDMENU
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001074 if (!p_wmnu || (c != K_UP && c != K_DOWN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075#endif
1076 xpc.xp_context = EXPAND_NOTHING;
1077 wim_index = 0;
1078#ifdef FEAT_WILDMENU
1079 if (p_wmnu && wild_menu_showing != 0)
1080 {
1081 int skt = KeyTyped;
Bram Moolenaar1e015462005-09-25 22:16:38 +00001082 int old_RedrawingDisabled = RedrawingDisabled;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001083
1084 if (ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001085 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086
1087 if (wild_menu_showing == WM_SCROLLED)
1088 {
1089 /* Entered command line, move it up */
1090 cmdline_row--;
1091 redrawcmd();
1092 }
1093 else if (save_p_ls != -1)
1094 {
1095 /* restore 'laststatus' and 'winminheight' */
1096 p_ls = save_p_ls;
1097 p_wmh = save_p_wmh;
1098 last_status(FALSE);
1099 update_screen(VALID); /* redraw the screen NOW */
1100 redrawcmd();
1101 save_p_ls = -1;
1102 }
1103 else
1104 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 win_redraw_last_status(topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 redraw_statuslines();
1107 }
1108 KeyTyped = skt;
1109 wild_menu_showing = 0;
Bram Moolenaar1e015462005-09-25 22:16:38 +00001110 if (ccline.input_fn)
1111 RedrawingDisabled = old_RedrawingDisabled;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112 }
1113#endif
1114 }
1115
1116#ifdef FEAT_WILDMENU
1117 /* Special translations for 'wildmenu' */
1118 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu)
1119 {
1120 /* Hitting <Down> after "emenu Name.": complete submenu */
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +00001121 if (c == K_DOWN && ccline.cmdpos > 0
1122 && ccline.cmdbuff[ccline.cmdpos - 1] == '.')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123 c = p_wc;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001124 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125 {
1126 /* Hitting <Up>: Remove one submenu name in front of the
1127 * cursor */
1128 int found = FALSE;
1129
1130 j = (int)(xpc.xp_pattern - ccline.cmdbuff);
1131 i = 0;
1132 while (--j > 0)
1133 {
1134 /* check for start of menu name */
1135 if (ccline.cmdbuff[j] == ' '
1136 && ccline.cmdbuff[j - 1] != '\\')
1137 {
1138 i = j + 1;
1139 break;
1140 }
1141 /* check for start of submenu name */
1142 if (ccline.cmdbuff[j] == '.'
1143 && ccline.cmdbuff[j - 1] != '\\')
1144 {
1145 if (found)
1146 {
1147 i = j + 1;
1148 break;
1149 }
1150 else
1151 found = TRUE;
1152 }
1153 }
1154 if (i > 0)
1155 cmdline_del(i);
1156 c = p_wc;
1157 xpc.xp_context = EXPAND_NOTHING;
1158 }
1159 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001160 if ((xpc.xp_context == EXPAND_FILES
Bram Moolenaar446cb832008-06-24 21:56:24 +00001161 || xpc.xp_context == EXPAND_DIRECTORIES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001162 || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 {
1164 char_u upseg[5];
1165
1166 upseg[0] = PATHSEP;
1167 upseg[1] = '.';
1168 upseg[2] = '.';
1169 upseg[3] = PATHSEP;
1170 upseg[4] = NUL;
1171
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +00001172 if (c == K_DOWN
1173 && ccline.cmdpos > 0
1174 && ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP
1175 && (ccline.cmdpos < 3
1176 || ccline.cmdbuff[ccline.cmdpos - 2] != '.'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177 || ccline.cmdbuff[ccline.cmdpos - 3] != '.'))
1178 {
1179 /* go down a directory */
1180 c = p_wc;
1181 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001182 else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 {
1184 /* If in a direct ancestor, strip off one ../ to go down */
1185 int found = FALSE;
1186
1187 j = ccline.cmdpos;
1188 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
1189 while (--j > i)
1190 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001191 if (has_mbyte)
1192 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 if (vim_ispathsep(ccline.cmdbuff[j]))
1194 {
1195 found = TRUE;
1196 break;
1197 }
1198 }
1199 if (found
1200 && ccline.cmdbuff[j - 1] == '.'
1201 && ccline.cmdbuff[j - 2] == '.'
1202 && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2))
1203 {
1204 cmdline_del(j - 2);
1205 c = p_wc;
1206 }
1207 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001208 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209 {
1210 /* go up a directory */
1211 int found = FALSE;
1212
1213 j = ccline.cmdpos - 1;
1214 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
1215 while (--j > i)
1216 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 if (has_mbyte)
1218 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 if (vim_ispathsep(ccline.cmdbuff[j])
1220#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001221 && vim_strchr((char_u *)" *?[{`$%#",
1222 ccline.cmdbuff[j + 1]) == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223#endif
1224 )
1225 {
1226 if (found)
1227 {
1228 i = j + 1;
1229 break;
1230 }
1231 else
1232 found = TRUE;
1233 }
1234 }
1235
1236 if (!found)
1237 j = i;
1238 else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0)
1239 j += 4;
1240 else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0
1241 && j == i)
1242 j += 3;
1243 else
1244 j = 0;
1245 if (j > 0)
1246 {
1247 /* TODO this is only for DOS/UNIX systems - need to put in
1248 * machine-specific stuff here and in upseg init */
1249 cmdline_del(j);
1250 put_on_cmdline(upseg + 1, 3, FALSE);
1251 }
1252 else if (ccline.cmdpos > i)
1253 cmdline_del(i);
Bram Moolenaar96a89642011-12-08 18:44:51 +01001254
1255 /* Now complete in the new directory. Set KeyTyped in case the
1256 * Up key came from a mapping. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 c = p_wc;
Bram Moolenaar96a89642011-12-08 18:44:51 +01001258 KeyTyped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 }
1260 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261
1262#endif /* FEAT_WILDMENU */
1263
1264 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert
1265 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */
1266 if (c == Ctrl_BSL)
1267 {
1268 ++no_mapping;
1269 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001270 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 --no_mapping;
1272 --allow_keys;
Bram Moolenaarb7356812012-10-11 04:04:37 +02001273 /* CTRL-\ e doesn't work when obtaining an expression, unless it
1274 * is in a mapping. */
1275 if (c != Ctrl_N && c != Ctrl_G && (c != 'e'
Bram Moolenaar31cbadf2018-09-25 20:48:57 +02001276 || (ccline.cmdfirstc == '=' && KeyTyped)
1277#ifdef FEAT_EVAL
Bram Moolenaaree91c332018-09-25 22:27:35 +02001278 || cmdline_star > 0
Bram Moolenaar31cbadf2018-09-25 20:48:57 +02001279#endif
1280 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 {
1282 vungetc(c);
1283 c = Ctrl_BSL;
1284 }
1285#ifdef FEAT_EVAL
1286 else if (c == 'e')
1287 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +02001288 char_u *p = NULL;
1289 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290
1291 /*
1292 * Replace the command line with the result of an expression.
Bram Moolenaar4770d092006-01-12 23:22:24 +00001293 * Need to save and restore the current command line, to be
1294 * able to enter a new one...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 */
1296 if (ccline.cmdpos == ccline.cmdlen)
1297 new_cmdpos = 99999; /* keep it at the end */
1298 else
1299 new_cmdpos = ccline.cmdpos;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001300
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 c = get_expr_register();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302 if (c == '=')
1303 {
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001304 /* Need to save and restore ccline. And set "textlock"
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001305 * to avoid nasty things like going to another buffer when
1306 * evaluating an expression. */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001307 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 p = get_expr_line();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001309 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001310
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001311 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 {
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001313 len = (int)STRLEN(p);
1314 if (realloc_cmdbuff(len + 1) == OK)
1315 {
1316 ccline.cmdlen = len;
1317 STRCPY(ccline.cmdbuff, p);
1318 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001320 /* Restore the cursor or use the position set with
1321 * set_cmdline_pos(). */
1322 if (new_cmdpos > ccline.cmdlen)
1323 ccline.cmdpos = ccline.cmdlen;
1324 else
1325 ccline.cmdpos = new_cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001327 KeyTyped = FALSE; /* Don't do p_wc completion. */
1328 redrawcmd();
1329 goto cmdline_changed;
1330 }
Bram Moolenaar4e303c82018-11-24 14:27:44 +01001331 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 }
1333 }
1334 beep_flush();
Bram Moolenaar66b4bf82010-11-16 14:06:08 +01001335 got_int = FALSE; /* don't abandon the command line */
1336 did_emsg = FALSE;
1337 emsg_on_display = FALSE;
1338 redrawcmd();
1339 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 }
1341#endif
1342 else
1343 {
1344 if (c == Ctrl_G && p_im && restart_edit == 0)
1345 restart_edit = 'a';
1346 gotesc = TRUE; /* will free ccline.cmdbuff after putting it
1347 in history */
1348 goto returncmd; /* back to Normal mode */
1349 }
1350 }
1351
1352#ifdef FEAT_CMDWIN
1353 if (c == cedit_key || c == K_CMDWIN)
1354 {
Bram Moolenaar58da7072014-09-09 18:45:49 +02001355 if (ex_normal_busy == 0 && got_int == FALSE)
1356 {
1357 /*
1358 * Open a window to edit the command line (and history).
1359 */
Bram Moolenaar3bab9392017-04-07 15:42:25 +02001360 c = open_cmdwin();
Bram Moolenaar58da7072014-09-09 18:45:49 +02001361 some_key_typed = TRUE;
1362 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 }
1364# ifdef FEAT_DIGRAPHS
1365 else
1366# endif
1367#endif
1368#ifdef FEAT_DIGRAPHS
1369 c = do_digraph(c);
1370#endif
1371
1372 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC
1373 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL)))
1374 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001375 /* In Ex mode a backslash escapes a newline. */
1376 if (exmode_active
1377 && c != ESC
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001378 && ccline.cmdpos == ccline.cmdlen
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +00001379 && ccline.cmdpos > 0
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001380 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001382 if (c == K_KENTER)
1383 c = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001385 else
1386 {
1387 gotesc = FALSE; /* Might have typed ESC previously, don't
1388 truncate the cmdline now. */
1389 if (ccheck_abbr(c + ABBR_OFF))
1390 goto cmdline_changed;
1391 if (!cmd_silent)
1392 {
1393 windgoto(msg_row, 0);
1394 out_flush();
1395 }
1396 break;
1397 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 }
1399
1400 /*
1401 * Completion for 'wildchar' or 'wildcharm' key.
1402 * - hitting <ESC> twice means: abandon command line.
1403 * - wildcard expansion is only done when the 'wildchar' key is really
1404 * typed, not when it comes from a macro
1405 */
1406 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm)
1407 {
1408 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */
1409 {
1410 /* if 'wildmode' contains "list" may still need to list */
1411 if (xpc.xp_numfiles > 1
1412 && !did_wild_list
1413 && (wim_flags[wim_index] & WIM_LIST))
1414 {
1415 (void)showmatches(&xpc, FALSE);
1416 redrawcmd();
1417 did_wild_list = TRUE;
1418 }
1419 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001420 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
1421 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001422 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001423 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
1424 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 else
1426 res = OK; /* don't insert 'wildchar' now */
1427 }
1428 else /* typed p_wc first time */
1429 {
1430 wim_index = 0;
1431 j = ccline.cmdpos;
1432 /* if 'wildmode' first contains "longest", get longest
1433 * common part */
1434 if (wim_flags[0] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001435 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
1436 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001437 else
Bram Moolenaarb3479632012-11-28 16:49:58 +01001438 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP,
1439 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440
1441 /* if interrupted while completing, behave like it failed */
1442 if (got_int)
1443 {
1444 (void)vpeekc(); /* remove <C-C> from input stream */
1445 got_int = FALSE; /* don't abandon the command line */
1446 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
1447#ifdef FEAT_WILDMENU
1448 xpc.xp_context = EXPAND_NOTHING;
1449#endif
1450 goto cmdline_changed;
1451 }
1452
1453 /* when more than one match, and 'wildmode' first contains
1454 * "list", or no change and 'wildmode' contains "longest,list",
1455 * list all matches */
1456 if (res == OK && xpc.xp_numfiles > 1)
1457 {
1458 /* a "longest" that didn't do anything is skipped (but not
1459 * "list:longest") */
1460 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j)
1461 wim_index = 1;
1462 if ((wim_flags[wim_index] & WIM_LIST)
1463#ifdef FEAT_WILDMENU
1464 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0)
1465#endif
1466 )
1467 {
1468 if (!(wim_flags[0] & WIM_LONGEST))
1469 {
1470#ifdef FEAT_WILDMENU
1471 int p_wmnu_save = p_wmnu;
1472 p_wmnu = 0;
1473#endif
Bram Moolenaarb3479632012-11-28 16:49:58 +01001474 /* remove match */
1475 nextwild(&xpc, WILD_PREV, 0, firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476#ifdef FEAT_WILDMENU
1477 p_wmnu = p_wmnu_save;
1478#endif
1479 }
1480#ifdef FEAT_WILDMENU
1481 (void)showmatches(&xpc, p_wmnu
1482 && ((wim_flags[wim_index] & WIM_LIST) == 0));
1483#else
1484 (void)showmatches(&xpc, FALSE);
1485#endif
1486 redrawcmd();
1487 did_wild_list = TRUE;
1488 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001489 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
1490 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001492 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
1493 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 }
1495 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02001496 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497 }
1498#ifdef FEAT_WILDMENU
1499 else if (xpc.xp_numfiles == -1)
1500 xpc.xp_context = EXPAND_NOTHING;
1501#endif
1502 }
1503 if (wim_index < 3)
1504 ++wim_index;
1505 if (c == ESC)
1506 gotesc = TRUE;
1507 if (res == OK)
1508 goto cmdline_changed;
1509 }
1510
1511 gotesc = FALSE;
1512
1513 /* <S-Tab> goes to last match, in a clumsy way */
1514 if (c == K_S_TAB && KeyTyped)
1515 {
Bram Moolenaarb3479632012-11-28 16:49:58 +01001516 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0, firstc != '@') == OK
1517 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK
1518 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 goto cmdline_changed;
1520 }
1521
1522 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */
1523 c = NL;
1524
1525 do_abbr = TRUE; /* default: check for abbreviation */
1526
1527 /*
1528 * Big switch for a typed command line character.
1529 */
1530 switch (c)
1531 {
1532 case K_BS:
1533 case Ctrl_H:
1534 case K_DEL:
1535 case K_KDEL:
1536 case Ctrl_W:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 if (c == K_KDEL)
1538 c = K_DEL;
1539
1540 /*
1541 * delete current character is the same as backspace on next
1542 * character, except at end of line
1543 */
1544 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen)
1545 ++ccline.cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 if (has_mbyte && c == K_DEL)
1547 ccline.cmdpos += mb_off_next(ccline.cmdbuff,
1548 ccline.cmdbuff + ccline.cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549 if (ccline.cmdpos > 0)
1550 {
1551 char_u *p;
1552
1553 j = ccline.cmdpos;
1554 p = ccline.cmdbuff + j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 if (has_mbyte)
1556 {
1557 p = mb_prevptr(ccline.cmdbuff, p);
1558 if (c == Ctrl_W)
1559 {
1560 while (p > ccline.cmdbuff && vim_isspace(*p))
1561 p = mb_prevptr(ccline.cmdbuff, p);
1562 i = mb_get_class(p);
1563 while (p > ccline.cmdbuff && mb_get_class(p) == i)
1564 p = mb_prevptr(ccline.cmdbuff, p);
1565 if (mb_get_class(p) != i)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001566 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 }
1568 }
Bram Moolenaar13505972019-01-24 15:04:48 +01001569 else if (c == Ctrl_W)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 {
1571 while (p > ccline.cmdbuff && vim_isspace(p[-1]))
1572 --p;
1573 i = vim_iswordc(p[-1]);
1574 while (p > ccline.cmdbuff && !vim_isspace(p[-1])
1575 && vim_iswordc(p[-1]) == i)
1576 --p;
1577 }
1578 else
1579 --p;
1580 ccline.cmdpos = (int)(p - ccline.cmdbuff);
1581 ccline.cmdlen -= j - ccline.cmdpos;
1582 i = ccline.cmdpos;
1583 while (i < ccline.cmdlen)
1584 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1585
1586 /* Truncate at the end, required for multi-byte chars. */
1587 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001588#ifdef FEAT_SEARCH_EXTRA
1589 if (ccline.cmdlen == 0)
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001590 {
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001591 is_state.search_start = is_state.save_cursor;
Bram Moolenaardda933d2016-09-03 21:04:58 +02001592 /* save view settings, so that the screen
1593 * won't be restored at the wrong position */
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001594 is_state.old_viewstate = is_state.init_viewstate;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001595 }
1596#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 redrawcmd();
1598 }
1599 else if (ccline.cmdlen == 0 && c != Ctrl_W
1600 && ccline.cmdprompt == NULL && indent == 0)
1601 {
1602 /* In ex and debug mode it doesn't make sense to return. */
1603 if (exmode_active
1604#ifdef FEAT_EVAL
1605 || ccline.cmdfirstc == '>'
1606#endif
1607 )
1608 goto cmdline_not_changed;
1609
Bram Moolenaard23a8232018-02-10 18:45:26 +01001610 VIM_CLEAR(ccline.cmdbuff); /* no commandline to return */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 if (!cmd_silent)
1612 {
1613#ifdef FEAT_RIGHTLEFT
1614 if (cmdmsg_rl)
1615 msg_col = Columns;
1616 else
1617#endif
1618 msg_col = 0;
1619 msg_putchar(' '); /* delete ':' */
1620 }
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001621#ifdef FEAT_SEARCH_EXTRA
1622 if (ccline.cmdlen == 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001623 is_state.search_start = is_state.save_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001624#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 redraw_cmdline = TRUE;
1626 goto returncmd; /* back to cmd mode */
1627 }
1628 goto cmdline_changed;
1629
1630 case K_INS:
1631 case K_KINS:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 ccline.overstrike = !ccline.overstrike;
1633#ifdef CURSOR_SHAPE
1634 ui_cursor_shape(); /* may show different cursor shape */
1635#endif
1636 goto cmdline_not_changed;
1637
1638 case Ctrl_HAT:
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00001639 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640 {
1641 /* ":lmap" mappings exists, toggle use of mappings. */
1642 State ^= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001643#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 im_set_active(FALSE); /* Disable input method */
1645#endif
1646 if (b_im_ptr != NULL)
1647 {
1648 if (State & LANGMAP)
1649 *b_im_ptr = B_IMODE_LMAP;
1650 else
1651 *b_im_ptr = B_IMODE_NONE;
1652 }
1653 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001654#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 else
1656 {
1657 /* There are no ":lmap" mappings, toggle IM. When
1658 * 'imdisable' is set don't try getting the status, it's
1659 * always off. */
1660 if ((p_imdisable && b_im_ptr != NULL)
1661 ? *b_im_ptr == B_IMODE_IM : im_get_status())
1662 {
1663 im_set_active(FALSE); /* Disable input method */
1664 if (b_im_ptr != NULL)
1665 *b_im_ptr = B_IMODE_NONE;
1666 }
1667 else
1668 {
1669 im_set_active(TRUE); /* Enable input method */
1670 if (b_im_ptr != NULL)
1671 *b_im_ptr = B_IMODE_IM;
1672 }
1673 }
1674#endif
1675 if (b_im_ptr != NULL)
1676 {
1677 if (b_im_ptr == &curbuf->b_p_iminsert)
1678 set_iminsert_global();
1679 else
1680 set_imsearch_global();
1681 }
1682#ifdef CURSOR_SHAPE
1683 ui_cursor_shape(); /* may show different cursor shape */
1684#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001685#if defined(FEAT_KEYMAP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686 /* Show/unshow value of 'keymap' in status lines later. */
1687 status_redraw_curbuf();
1688#endif
1689 goto cmdline_not_changed;
1690
1691/* case '@': only in very old vi */
1692 case Ctrl_U:
1693 /* delete all characters left of the cursor */
1694 j = ccline.cmdpos;
1695 ccline.cmdlen -= j;
1696 i = ccline.cmdpos = 0;
1697 while (i < ccline.cmdlen)
1698 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1699 /* Truncate at the end, required for multi-byte chars. */
1700 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001701#ifdef FEAT_SEARCH_EXTRA
1702 if (ccline.cmdlen == 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001703 is_state.search_start = is_state.save_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001704#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705 redrawcmd();
1706 goto cmdline_changed;
1707
1708#ifdef FEAT_CLIPBOARD
1709 case Ctrl_Y:
1710 /* Copy the modeless selection, if there is one. */
1711 if (clip_star.state != SELECT_CLEARED)
1712 {
1713 if (clip_star.state == SELECT_DONE)
1714 clip_copy_modeless_selection(TRUE);
1715 goto cmdline_not_changed;
1716 }
1717 break;
1718#endif
1719
1720 case ESC: /* get here if p_wc != ESC or when ESC typed twice */
1721 case Ctrl_C:
Bram Moolenaarf4d11452005-12-02 00:46:37 +00001722 /* In exmode it doesn't make sense to return. Except when
Bram Moolenaar7c626922005-02-07 22:01:03 +00001723 * ":normal" runs out of characters. */
1724 if (exmode_active
Bram Moolenaare2c38102016-01-31 14:55:40 +01001725 && (ex_normal_busy == 0 || typebuf.tb_len > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 goto cmdline_not_changed;
1727
1728 gotesc = TRUE; /* will free ccline.cmdbuff after
1729 putting it in history */
1730 goto returncmd; /* back to cmd mode */
1731
1732 case Ctrl_R: /* insert register */
1733#ifdef USE_ON_FLY_SCROLL
1734 dont_scroll = TRUE; /* disallow scrolling here */
1735#endif
1736 putcmdline('"', TRUE);
1737 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001738 i = c = plain_vgetc(); /* CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 if (i == Ctrl_O)
1740 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */
1741 if (i == Ctrl_R)
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001742 c = plain_vgetc(); /* CTRL-R CTRL-R <char> */
Bram Moolenaara92522f2017-07-15 15:21:38 +02001743 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 --no_mapping;
1745#ifdef FEAT_EVAL
1746 /*
1747 * Insert the result of an expression.
1748 * Need to save the current command line, to be able to enter
1749 * a new one...
1750 */
1751 new_cmdpos = -1;
1752 if (c == '=')
1753 {
Bram Moolenaaree91c332018-09-25 22:27:35 +02001754 if (ccline.cmdfirstc == '=' // can't do this recursively
1755 || cmdline_star > 0) // or when typing a password
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 {
1757 beep_flush();
1758 c = ESC;
1759 }
1760 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 c = get_expr_register();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 }
1763#endif
1764 if (c != ESC) /* use ESC to cancel inserting register */
1765 {
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001766 cmdline_paste(c, i == Ctrl_R, FALSE);
Bram Moolenaaracf53452005-12-17 22:06:52 +00001767
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001768#ifdef FEAT_EVAL
Bram Moolenaaracf53452005-12-17 22:06:52 +00001769 /* When there was a serious error abort getting the
1770 * command line. */
1771 if (aborting())
1772 {
1773 gotesc = TRUE; /* will free ccline.cmdbuff after
1774 putting it in history */
1775 goto returncmd; /* back to cmd mode */
1776 }
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001777#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778 KeyTyped = FALSE; /* Don't do p_wc completion. */
1779#ifdef FEAT_EVAL
1780 if (new_cmdpos >= 0)
1781 {
1782 /* set_cmdline_pos() was used */
1783 if (new_cmdpos > ccline.cmdlen)
1784 ccline.cmdpos = ccline.cmdlen;
1785 else
1786 ccline.cmdpos = new_cmdpos;
1787 }
1788#endif
1789 }
1790 redrawcmd();
1791 goto cmdline_changed;
1792
1793 case Ctrl_D:
1794 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING)
1795 break; /* Use ^D as normal char instead */
1796
1797 redrawcmd();
1798 continue; /* don't do incremental search now */
1799
1800 case K_RIGHT:
1801 case K_S_RIGHT:
1802 case K_C_RIGHT:
1803 do
1804 {
1805 if (ccline.cmdpos >= ccline.cmdlen)
1806 break;
1807 i = cmdline_charsize(ccline.cmdpos);
1808 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows)
1809 break;
1810 ccline.cmdspos += i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001812 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 + ccline.cmdpos);
1814 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 ++ccline.cmdpos;
1816 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001817 while ((c == K_S_RIGHT || c == K_C_RIGHT
1818 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819 && ccline.cmdbuff[ccline.cmdpos] != ' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820 if (has_mbyte)
1821 set_cmdspos_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 goto cmdline_not_changed;
1823
1824 case K_LEFT:
1825 case K_S_LEFT:
1826 case K_C_LEFT:
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001827 if (ccline.cmdpos == 0)
1828 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829 do
1830 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 --ccline.cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832 if (has_mbyte) /* move to first byte of char */
1833 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff,
1834 ccline.cmdbuff + ccline.cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos);
1836 }
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001837 while (ccline.cmdpos > 0
1838 && (c == K_S_LEFT || c == K_C_LEFT
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001839 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 && ccline.cmdbuff[ccline.cmdpos - 1] != ' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 if (has_mbyte)
1842 set_cmdspos_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 goto cmdline_not_changed;
1844
1845 case K_IGNORE:
Bram Moolenaar3bab9392017-04-07 15:42:25 +02001846 /* Ignore mouse event or open_cmdwin() result. */
Bram Moolenaar30405d32008-01-02 20:55:27 +00001847 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848
Bram Moolenaar4f974752019-02-17 17:44:42 +01001849#ifdef FEAT_GUI_MSWIN
1850 /* On MS-Windows ignore <M-F4>, we get it when closing the window
1851 * was cancelled. */
Bram Moolenaar4770d092006-01-12 23:22:24 +00001852 case K_F4:
1853 if (mod_mask == MOD_MASK_ALT)
1854 {
1855 redrawcmd(); /* somehow the cmdline is cleared */
1856 goto cmdline_not_changed;
1857 }
1858 break;
1859#endif
1860
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 case K_MIDDLEDRAG:
1862 case K_MIDDLERELEASE:
1863 goto cmdline_not_changed; /* Ignore mouse */
1864
1865 case K_MIDDLEMOUSE:
1866# ifdef FEAT_GUI
1867 /* When GUI is active, also paste when 'mouse' is empty */
1868 if (!gui.in_use)
1869# endif
1870 if (!mouse_has(MOUSE_COMMAND))
1871 goto cmdline_not_changed; /* Ignore mouse */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001872# ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 if (clip_star.available)
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001874 cmdline_paste('*', TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 else
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001876# endif
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001877 cmdline_paste(0, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 redrawcmd();
1879 goto cmdline_changed;
1880
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001881# ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 case K_DROP:
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001883 cmdline_paste('~', TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 redrawcmd();
1885 goto cmdline_changed;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001886# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887
1888 case K_LEFTDRAG:
1889 case K_LEFTRELEASE:
1890 case K_RIGHTDRAG:
1891 case K_RIGHTRELEASE:
1892 /* Ignore drag and release events when the button-down wasn't
1893 * seen before. */
1894 if (ignore_drag_release)
1895 goto cmdline_not_changed;
1896 /* FALLTHROUGH */
1897 case K_LEFTMOUSE:
1898 case K_RIGHTMOUSE:
1899 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE)
1900 ignore_drag_release = TRUE;
1901 else
1902 ignore_drag_release = FALSE;
1903# ifdef FEAT_GUI
1904 /* When GUI is active, also move when 'mouse' is empty */
1905 if (!gui.in_use)
1906# endif
1907 if (!mouse_has(MOUSE_COMMAND))
1908 goto cmdline_not_changed; /* Ignore mouse */
1909# ifdef FEAT_CLIPBOARD
1910 if (mouse_row < cmdline_row && clip_star.available)
1911 {
1912 int button, is_click, is_drag;
1913
1914 /*
1915 * Handle modeless selection.
1916 */
1917 button = get_mouse_button(KEY2TERMCAP1(c),
1918 &is_click, &is_drag);
1919 if (mouse_model_popup() && button == MOUSE_LEFT
1920 && (mod_mask & MOD_MASK_SHIFT))
1921 {
1922 /* Translate shift-left to right button. */
1923 button = MOUSE_RIGHT;
1924 mod_mask &= ~MOD_MASK_SHIFT;
1925 }
1926 clip_modeless(button, is_click, is_drag);
1927 goto cmdline_not_changed;
1928 }
1929# endif
1930
1931 set_cmdspos();
1932 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen;
1933 ++ccline.cmdpos)
1934 {
1935 i = cmdline_charsize(ccline.cmdpos);
1936 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns
1937 && mouse_col < ccline.cmdspos % Columns + i)
1938 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 if (has_mbyte)
1940 {
1941 /* Count ">" for double-wide char that doesn't fit. */
1942 correct_cmdspos(ccline.cmdpos, i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001943 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 + ccline.cmdpos) - 1;
1945 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 ccline.cmdspos += i;
1947 }
1948 goto cmdline_not_changed;
1949
1950 /* Mouse scroll wheel: ignored here */
1951 case K_MOUSEDOWN:
1952 case K_MOUSEUP:
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001953 case K_MOUSELEFT:
1954 case K_MOUSERIGHT:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 /* Alternate buttons ignored here */
1956 case K_X1MOUSE:
1957 case K_X1DRAG:
1958 case K_X1RELEASE:
1959 case K_X2MOUSE:
1960 case K_X2DRAG:
1961 case K_X2RELEASE:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001962 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963 goto cmdline_not_changed;
1964
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965#ifdef FEAT_GUI
1966 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */
1967 case K_LEFTRELEASE_NM:
1968 goto cmdline_not_changed;
1969
1970 case K_VER_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001971 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 {
1973 gui_do_scroll();
1974 redrawcmd();
1975 }
1976 goto cmdline_not_changed;
1977
1978 case K_HOR_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001979 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001981 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 redrawcmd();
1983 }
1984 goto cmdline_not_changed;
1985#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001986#ifdef FEAT_GUI_TABLINE
1987 case K_TABLINE:
1988 case K_TABMENU:
1989 /* Don't want to change any tabs here. Make sure the same tab
1990 * is still selected. */
1991 if (gui_use_tabline())
1992 gui_mch_set_curtab(tabpage_index(curtab));
1993 goto cmdline_not_changed;
1994#endif
1995
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996 case K_SELECT: /* end of Select mode mapping - ignore */
1997 goto cmdline_not_changed;
1998
1999 case Ctrl_B: /* begin of command line */
2000 case K_HOME:
2001 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002 case K_S_HOME:
2003 case K_C_HOME:
2004 ccline.cmdpos = 0;
2005 set_cmdspos();
2006 goto cmdline_not_changed;
2007
2008 case Ctrl_E: /* end of command line */
2009 case K_END:
2010 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 case K_S_END:
2012 case K_C_END:
2013 ccline.cmdpos = ccline.cmdlen;
2014 set_cmdspos_cursor();
2015 goto cmdline_not_changed;
2016
2017 case Ctrl_A: /* all matches */
Bram Moolenaarb3479632012-11-28 16:49:58 +01002018 if (nextwild(&xpc, WILD_ALL, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019 break;
2020 goto cmdline_changed;
2021
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002022 case Ctrl_L:
2023#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002024 if (may_add_char_to_search(firstc, &c, &is_state) == OK)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002025 goto cmdline_not_changed;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002026#endif
2027
2028 /* completion: longest common part */
Bram Moolenaarb3479632012-11-28 16:49:58 +01002029 if (nextwild(&xpc, WILD_LONGEST, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 break;
2031 goto cmdline_changed;
2032
2033 case Ctrl_N: /* next match */
2034 case Ctrl_P: /* previous match */
Bram Moolenaar7df0f632016-08-26 19:56:00 +02002035 if (xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 {
Bram Moolenaarb3479632012-11-28 16:49:58 +01002037 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT,
2038 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 break;
Bram Moolenaar11956692016-08-27 16:26:56 +02002040 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002042 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043 case K_UP:
2044 case K_DOWN:
2045 case K_S_UP:
2046 case K_S_DOWN:
2047 case K_PAGEUP:
2048 case K_KPAGEUP:
2049 case K_PAGEDOWN:
2050 case K_KPAGEDOWN:
Bram Moolenaard7663c22019-08-06 21:59:57 +02002051 if (get_hislen() == 0 || firstc == NUL) /* no history */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 goto cmdline_not_changed;
2053
2054 i = hiscnt;
2055
2056 /* save current command string so it can be restored later */
2057 if (lookfor == NULL)
2058 {
2059 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL)
2060 goto cmdline_not_changed;
2061 lookfor[ccline.cmdpos] = NUL;
2062 }
2063
2064 j = (int)STRLEN(lookfor);
2065 for (;;)
2066 {
2067 /* one step backwards */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002068 if (c == K_UP|| c == K_S_UP || c == Ctrl_P
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002069 || c == K_PAGEUP || c == K_KPAGEUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070 {
Bram Moolenaard7663c22019-08-06 21:59:57 +02002071 if (hiscnt == get_hislen()) /* first time */
2072 hiscnt = *get_hisidx(histype);
2073 else if (hiscnt == 0 && *get_hisidx(histype) != get_hislen() - 1)
2074 hiscnt = get_hislen() - 1;
2075 else if (hiscnt != *get_hisidx(histype) + 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 --hiscnt;
2077 else /* at top of list */
2078 {
2079 hiscnt = i;
2080 break;
2081 }
2082 }
2083 else /* one step forwards */
2084 {
2085 /* on last entry, clear the line */
Bram Moolenaard7663c22019-08-06 21:59:57 +02002086 if (hiscnt == *get_hisidx(histype))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 {
Bram Moolenaard7663c22019-08-06 21:59:57 +02002088 hiscnt = get_hislen();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089 break;
2090 }
2091
2092 /* not on a history line, nothing to do */
Bram Moolenaard7663c22019-08-06 21:59:57 +02002093 if (hiscnt == get_hislen())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 break;
Bram Moolenaard7663c22019-08-06 21:59:57 +02002095 if (hiscnt == get_hislen() - 1) /* wrap around */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 hiscnt = 0;
2097 else
2098 ++hiscnt;
2099 }
Bram Moolenaard7663c22019-08-06 21:59:57 +02002100 if (hiscnt < 0 || get_histentry(histype)[hiscnt].hisstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101 {
2102 hiscnt = i;
2103 break;
2104 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002105 if ((c != K_UP && c != K_DOWN)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002106 || hiscnt == i
Bram Moolenaard7663c22019-08-06 21:59:57 +02002107 || STRNCMP(get_histentry(histype)[hiscnt].hisstr,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 lookfor, (size_t)j) == 0)
2109 break;
2110 }
2111
2112 if (hiscnt != i) /* jumped to other entry */
2113 {
2114 char_u *p;
2115 int len;
2116 int old_firstc;
2117
Bram Moolenaar438d1762018-09-30 17:11:48 +02002118 VIM_CLEAR(ccline.cmdbuff);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002119 xpc.xp_context = EXPAND_NOTHING;
Bram Moolenaard7663c22019-08-06 21:59:57 +02002120 if (hiscnt == get_hislen())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121 p = lookfor; /* back to the old one */
2122 else
Bram Moolenaard7663c22019-08-06 21:59:57 +02002123 p = get_histentry(histype)[hiscnt].hisstr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124
2125 if (histype == HIST_SEARCH
2126 && p != lookfor
2127 && (old_firstc = p[STRLEN(p) + 1]) != firstc)
2128 {
2129 /* Correct for the separator character used when
2130 * adding the history entry vs the one used now.
2131 * First loop: count length.
2132 * Second loop: copy the characters. */
2133 for (i = 0; i <= 1; ++i)
2134 {
2135 len = 0;
2136 for (j = 0; p[j] != NUL; ++j)
2137 {
2138 /* Replace old sep with new sep, unless it is
2139 * escaped. */
2140 if (p[j] == old_firstc
2141 && (j == 0 || p[j - 1] != '\\'))
2142 {
2143 if (i > 0)
2144 ccline.cmdbuff[len] = firstc;
2145 }
2146 else
2147 {
2148 /* Escape new sep, unless it is already
2149 * escaped. */
2150 if (p[j] == firstc
2151 && (j == 0 || p[j - 1] != '\\'))
2152 {
2153 if (i > 0)
2154 ccline.cmdbuff[len] = '\\';
2155 ++len;
2156 }
2157 if (i > 0)
2158 ccline.cmdbuff[len] = p[j];
2159 }
2160 ++len;
2161 }
2162 if (i == 0)
2163 {
2164 alloc_cmdbuff(len);
2165 if (ccline.cmdbuff == NULL)
2166 goto returncmd;
2167 }
2168 }
2169 ccline.cmdbuff[len] = NUL;
2170 }
2171 else
2172 {
2173 alloc_cmdbuff((int)STRLEN(p));
2174 if (ccline.cmdbuff == NULL)
2175 goto returncmd;
2176 STRCPY(ccline.cmdbuff, p);
2177 }
2178
2179 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
2180 redrawcmd();
2181 goto cmdline_changed;
2182 }
2183 beep_flush();
Bram Moolenaar11956692016-08-27 16:26:56 +02002184 goto cmdline_not_changed;
2185
Bram Moolenaar349e7d92016-09-03 20:04:34 +02002186#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar11956692016-08-27 16:26:56 +02002187 case Ctrl_G: /* next match */
2188 case Ctrl_T: /* previous match */
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002189 if (may_adjust_incsearch_highlighting(
2190 firstc, count, &is_state, c) == FAIL)
Bram Moolenaar349e7d92016-09-03 20:04:34 +02002191 goto cmdline_not_changed;
Bram Moolenaar349e7d92016-09-03 20:04:34 +02002192 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193#endif
2194
2195 case Ctrl_V:
2196 case Ctrl_Q:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 ignore_drag_release = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198 putcmdline('^', TRUE);
2199 c = get_literal(); /* get next (two) character(s) */
2200 do_abbr = FALSE; /* don't do abbreviation now */
Bram Moolenaara92522f2017-07-15 15:21:38 +02002201 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 /* may need to remove ^ when composing char was typed */
2203 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent)
2204 {
2205 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2206 msg_putchar(' ');
2207 cursorcmd();
2208 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209 break;
2210
2211#ifdef FEAT_DIGRAPHS
2212 case Ctrl_K:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 ignore_drag_release = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214 putcmdline('?', TRUE);
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002215# ifdef USE_ON_FLY_SCROLL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 dont_scroll = TRUE; /* disallow scrolling here */
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002217# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 c = get_digraph(TRUE);
Bram Moolenaara92522f2017-07-15 15:21:38 +02002219 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 if (c != NUL)
2221 break;
2222
2223 redrawcmd();
2224 goto cmdline_not_changed;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002225#endif // FEAT_DIGRAPHS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226
2227#ifdef FEAT_RIGHTLEFT
2228 case Ctrl__: /* CTRL-_: switch language mode */
2229 if (!p_ari)
2230 break;
Bram Moolenaar14184a32019-02-16 15:10:30 +01002231 cmd_hkmap = !cmd_hkmap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232 goto cmdline_not_changed;
2233#endif
2234
Bram Moolenaarabbc4482017-01-24 15:57:55 +01002235 case K_PS:
2236 bracketed_paste(PASTE_CMDLINE, FALSE, NULL);
2237 goto cmdline_changed;
2238
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 default:
2240#ifdef UNIX
2241 if (c == intr_char)
2242 {
2243 gotesc = TRUE; /* will free ccline.cmdbuff after
2244 putting it in history */
2245 goto returncmd; /* back to Normal mode */
2246 }
2247#endif
2248 /*
2249 * Normal character with no special meaning. Just set mod_mask
2250 * to 0x0 so that typing Shift-Space in the GUI doesn't enter
2251 * the string <S-Space>. This should only happen after ^V.
2252 */
2253 if (!IS_SPECIAL(c))
2254 mod_mask = 0x0;
2255 break;
2256 }
2257 /*
2258 * End of switch on command line character.
2259 * We come here if we have a normal character.
2260 */
2261
Bram Moolenaar13505972019-01-24 15:04:48 +01002262 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c))
2263 && (ccheck_abbr(
2264 // Add ABBR_OFF for characters above 0x100, this is
2265 // what check_abbr() expects.
2266 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) : c)
2267 || c == Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002268 goto cmdline_changed;
2269
2270 /*
2271 * put the character in the command line
2272 */
2273 if (IS_SPECIAL(c) || mod_mask != 0)
2274 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE);
2275 else
2276 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 if (has_mbyte)
2278 {
2279 j = (*mb_char2bytes)(c, IObuff);
2280 IObuff[j] = NUL; /* exclude composing chars */
2281 put_on_cmdline(IObuff, j, TRUE);
2282 }
2283 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 {
2285 IObuff[0] = c;
2286 put_on_cmdline(IObuff, 1, TRUE);
2287 }
2288 }
2289 goto cmdline_changed;
2290
2291/*
2292 * This part implements incremental searches for "/" and "?"
2293 * Jump to cmdline_not_changed when a character has been read but the command
2294 * line did not change. Then we only search and redraw if something changed in
2295 * the past.
2296 * Jump to cmdline_changed when the command line did change.
2297 * (Sorry for the goto's, I know it is ugly).
2298 */
2299cmdline_not_changed:
2300#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002301 if (!is_state.incsearch_postponed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 continue;
2303#endif
2304
2305cmdline_changed:
Bram Moolenaar153b7042018-01-31 15:48:32 +01002306 /* Trigger CmdlineChanged autocommands. */
2307 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINECHANGED);
Bram Moolenaar153b7042018-01-31 15:48:32 +01002308
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002310 may_do_incsearch_highlighting(firstc, count, &is_state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311#endif
2312
2313#ifdef FEAT_RIGHTLEFT
2314 if (cmdmsg_rl
2315# ifdef FEAT_ARABIC
Bram Moolenaar693f7dc2019-06-21 02:30:38 +02002316 || (p_arshape && !p_tbidi
2317 && cmdline_has_arabic(0, ccline.cmdlen))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318# endif
2319 )
2320 /* Always redraw the whole command line to fix shaping and
Bram Moolenaar58437e02012-02-22 17:58:04 +01002321 * right-left typing. Not efficient, but it works.
2322 * Do it only when there are no characters left to read
2323 * to avoid useless intermediate redraws. */
2324 if (vpeekc() == NUL)
2325 redrawcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326#endif
2327 }
2328
2329returncmd:
2330
2331#ifdef FEAT_RIGHTLEFT
2332 cmdmsg_rl = FALSE;
2333#endif
2334
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 ExpandCleanup(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002336 ccline.xpc = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337
2338#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaarc7f08b72018-08-12 17:39:14 +02002339 finish_incsearch_highlighting(gotesc, &is_state, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340#endif
2341
2342 if (ccline.cmdbuff != NULL)
2343 {
2344 /*
2345 * Put line in history buffer (":" and "=" only when it was typed).
2346 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347 if (ccline.cmdlen && firstc != NUL
2348 && (some_key_typed || histype == HIST_SEARCH))
2349 {
2350 add_to_history(histype, ccline.cmdbuff, TRUE,
2351 histype == HIST_SEARCH ? firstc : NUL);
2352 if (firstc == ':')
2353 {
2354 vim_free(new_last_cmdline);
2355 new_last_cmdline = vim_strsave(ccline.cmdbuff);
2356 }
2357 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358
Bram Moolenaarf8e8c062017-10-22 14:44:17 +02002359 if (gotesc)
2360 abandon_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 }
2362
2363 /*
2364 * If the screen was shifted up, redraw the whole screen (later).
2365 * If the line is too long, clear it, so ruler and shown command do
2366 * not get printed in the middle of it.
2367 */
2368 msg_check();
2369 msg_scroll = save_msg_scroll;
2370 redir_off = FALSE;
2371
2372 /* When the command line was typed, no need for a wait-return prompt. */
2373 if (some_key_typed)
2374 need_wait_return = FALSE;
2375
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02002376 /* Trigger CmdlineLeave autocommands. */
2377 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINELEAVE);
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02002378
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379 State = save_State;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002380#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP)
2382 im_save_status(b_im_ptr);
2383 im_set_active(FALSE);
2384#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386#ifdef CURSOR_SHAPE
2387 ui_cursor_shape(); /* may show different cursor shape */
2388#endif
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002389 sb_text_end_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390
Bram Moolenaar438d1762018-09-30 17:11:48 +02002391theend:
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002392 {
2393 char_u *p = ccline.cmdbuff;
2394
Bram Moolenaar438d1762018-09-30 17:11:48 +02002395 if (did_save_ccline)
2396 restore_cmdline(&save_ccline);
2397 else
2398 ccline.cmdbuff = NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002399 return p;
2400 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401}
2402
2403#if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO)
2404/*
2405 * Get a command line with a prompt.
2406 * This is prepared to be called recursively from getcmdline() (e.g. by
2407 * f_input() when evaluating an expression from CTRL-R =).
2408 * Returns the command line in allocated memory, or NULL.
2409 */
2410 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002411getcmdline_prompt(
2412 int firstc,
2413 char_u *prompt, /* command line prompt */
2414 int attr, /* attributes for prompt */
2415 int xp_context, /* type of expansion */
2416 char_u *xp_arg) /* user-defined expansion argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417{
2418 char_u *s;
Bram Moolenaar66b51422019-08-18 21:44:12 +02002419 cmdline_info_T save_ccline;
Bram Moolenaar438d1762018-09-30 17:11:48 +02002420 int did_save_ccline = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 int msg_col_save = msg_col;
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002422 int msg_silent_save = msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423
Bram Moolenaar438d1762018-09-30 17:11:48 +02002424 if (ccline.cmdbuff != NULL)
2425 {
2426 // Save the values of the current cmdline and restore them below.
2427 save_cmdline(&save_ccline);
2428 did_save_ccline = TRUE;
2429 }
2430
Bram Moolenaar66b51422019-08-18 21:44:12 +02002431 vim_memset(&ccline, 0, sizeof(cmdline_info_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 ccline.cmdprompt = prompt;
2433 ccline.cmdattr = attr;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002434# ifdef FEAT_EVAL
2435 ccline.xp_context = xp_context;
2436 ccline.xp_arg = xp_arg;
2437 ccline.input_fn = (firstc == '@');
2438# endif
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002439 msg_silent = 0;
Bram Moolenaar438d1762018-09-30 17:11:48 +02002440 s = getcmdline_int(firstc, 1L, 0, FALSE);
2441
2442 if (did_save_ccline)
2443 restore_cmdline(&save_ccline);
2444
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002445 msg_silent = msg_silent_save;
Bram Moolenaar1db1f772011-08-17 16:25:48 +02002446 /* Restore msg_col, the prompt from input() may have changed it.
2447 * But only if called recursively and the commandline is therefore being
2448 * restored to an old one; if not, the input() prompt stays on the screen,
2449 * so we need its modified msg_col left intact. */
2450 if (ccline.cmdbuff != NULL)
2451 msg_col = msg_col_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452
2453 return s;
2454}
2455#endif
2456
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002457/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002458 * Return TRUE when the text must not be changed and we can't switch to
2459 * another window or buffer. Used when editing the command line, evaluating
2460 * 'balloonexpr', etc.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002461 */
2462 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002463text_locked(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002464{
2465#ifdef FEAT_CMDWIN
2466 if (cmdwin_type != 0)
2467 return TRUE;
2468#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002469 return textlock != 0;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002470}
2471
2472/*
2473 * Give an error message for a command that isn't allowed while the cmdline
2474 * window is open or editing the cmdline in another way.
2475 */
2476 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002477text_locked_msg(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002478{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002479 emsg(_(get_text_locked_msg()));
Bram Moolenaar5a497892016-09-03 16:29:04 +02002480}
2481
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002482 char *
Bram Moolenaar5a497892016-09-03 16:29:04 +02002483get_text_locked_msg(void)
2484{
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002485#ifdef FEAT_CMDWIN
2486 if (cmdwin_type != 0)
Bram Moolenaar5a497892016-09-03 16:29:04 +02002487 return e_cmdwin;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002488#endif
Bram Moolenaar5a497892016-09-03 16:29:04 +02002489 return e_secure;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002490}
2491
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002492/*
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002493 * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is
2494 * and give an error message.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002495 */
2496 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002497curbuf_locked(void)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002498{
2499 if (curbuf_lock > 0)
2500 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002501 emsg(_("E788: Not allowed to edit another buffer now"));
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002502 return TRUE;
2503 }
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002504 return allbuf_locked();
2505}
2506
2507/*
2508 * Check if "allbuf_lock" is set and return TRUE when it is and give an error
2509 * message.
2510 */
2511 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002512allbuf_locked(void)
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002513{
2514 if (allbuf_lock > 0)
2515 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002516 emsg(_("E811: Not allowed to change buffer information now"));
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002517 return TRUE;
2518 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002519 return FALSE;
2520}
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002521
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002523cmdline_charsize(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524{
2525#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2526 if (cmdline_star > 0) /* showing '*', always 1 position */
2527 return 1;
2528#endif
2529 return ptr2cells(ccline.cmdbuff + idx);
2530}
2531
2532/*
2533 * Compute the offset of the cursor on the command line for the prompt and
2534 * indent.
2535 */
2536 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002537set_cmdspos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002539 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 ccline.cmdspos = 1 + ccline.cmdindent;
2541 else
2542 ccline.cmdspos = 0 + ccline.cmdindent;
2543}
2544
2545/*
2546 * Compute the screen position for the cursor on the command line.
2547 */
2548 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002549set_cmdspos_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550{
2551 int i, m, c;
2552
2553 set_cmdspos();
2554 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002555 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002557 if (m < 0) /* overflow, Columns or Rows at weird value */
2558 m = MAXCOL;
2559 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560 else
2561 m = MAXCOL;
2562 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
2563 {
2564 c = cmdline_charsize(i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565 /* Count ">" for double-wide multi-byte char that doesn't fit. */
2566 if (has_mbyte)
2567 correct_cmdspos(i, c);
Bram Moolenaarf9821062008-06-20 16:31:07 +00002568 /* If the cmdline doesn't fit, show cursor on last visible char.
2569 * Don't move the cursor itself, so we can still append. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 if ((ccline.cmdspos += c) >= m)
2571 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 ccline.cmdspos -= c;
2573 break;
2574 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002576 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 }
2578}
2579
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580/*
2581 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2582 * character that doesn't fit, so that a ">" must be displayed.
2583 */
2584 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002585correct_cmdspos(int idx, int cells)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002587 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2589 && ccline.cmdspos % Columns + cells > Columns)
2590 ccline.cmdspos++;
2591}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592
2593/*
2594 * Get an Ex command line for the ":" command.
2595 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002597getexline(
2598 int c, /* normally ':', NUL for ":append" */
2599 void *cookie UNUSED,
Bram Moolenaare96a2492019-06-25 04:12:16 +02002600 int indent, /* indent for inside conditionals */
2601 int do_concat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602{
2603 /* When executing a register, remove ':' that's in front of each line. */
2604 if (exec_from_reg && vpeekc() == ':')
2605 (void)vgetc();
Bram Moolenaare96a2492019-06-25 04:12:16 +02002606 return getcmdline(c, 1L, indent, do_concat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607}
2608
2609/*
2610 * Get an Ex command line for Ex mode.
2611 * In Ex mode we only use the OS supplied line editing features and no
2612 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002613 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002616getexmodeline(
2617 int promptc, /* normally ':', NUL for ":append" and '?' for
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002618 :s prompt */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002619 void *cookie UNUSED,
Bram Moolenaare96a2492019-06-25 04:12:16 +02002620 int indent, /* indent for inside conditionals */
2621 int do_concat UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002623 garray_T line_ga;
2624 char_u *pend;
2625 int startcol = 0;
Bram Moolenaar76624232007-07-28 12:21:47 +00002626 int c1 = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002627 int escaped = FALSE; /* CTRL-V typed */
2628 int vcol = 0;
2629 char_u *p;
Bram Moolenaar76624232007-07-28 12:21:47 +00002630 int prev_char;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002631 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632
2633 /* Switch cursor on now. This avoids that it happens after the "\n", which
2634 * confuses the system function that computes tabstops. */
2635 cursor_on();
2636
2637 /* always start in column 0; write a newline if necessary */
2638 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002639 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002641 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002643 /* indent that is only displayed, not in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002644 if (p_prompt)
2645 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 while (indent-- > 0)
2647 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649 }
2650
2651 ga_init2(&line_ga, 1, 30);
2652
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002653 /* autoindent for :insert and :append is in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002654 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002655 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002656 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002657 while (indent >= 8)
2658 {
2659 ga_append(&line_ga, TAB);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002660 msg_puts(" ");
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002661 indent -= 8;
2662 }
2663 while (indent-- > 0)
2664 {
2665 ga_append(&line_ga, ' ');
2666 msg_putchar(' ');
2667 }
2668 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002669 ++no_mapping;
2670 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002671
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 /*
2673 * Get the line, one character at a time.
2674 */
2675 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002676 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002678 long sw;
2679 char_u *s;
2680
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681 if (ga_grow(&line_ga, 40) == FAIL)
2682 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683
Bram Moolenaarba748c82017-02-26 14:00:07 +01002684 /*
2685 * Get one character at a time.
2686 */
Bram Moolenaar76624232007-07-28 12:21:47 +00002687 prev_char = c1;
Bram Moolenaarba748c82017-02-26 14:00:07 +01002688
2689 /* Check for a ":normal" command and no more characters left. */
2690 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
2691 c1 = '\n';
2692 else
2693 c1 = vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694
2695 /*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002696 * Handle line editing.
2697 * Previously this was left to the system, putting the terminal in
2698 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002700 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002702 msg_putchar('\n');
2703 break;
2704 }
2705
Bram Moolenaarabbc4482017-01-24 15:57:55 +01002706 if (c1 == K_PS)
2707 {
2708 bracketed_paste(PASTE_EX, FALSE, &line_ga);
2709 goto redraw;
2710 }
2711
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002712 if (!escaped)
2713 {
2714 /* CR typed means "enter", which is NL */
2715 if (c1 == '\r')
2716 c1 = '\n';
2717
2718 if (c1 == BS || c1 == K_BS
2719 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002721 if (line_ga.ga_len > 0)
2722 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002723 if (has_mbyte)
2724 {
2725 p = (char_u *)line_ga.ga_data;
2726 p[line_ga.ga_len] = NUL;
2727 len = (*mb_head_off)(p, p + line_ga.ga_len - 1) + 1;
2728 line_ga.ga_len -= len;
2729 }
2730 else
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002731 --line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002732 goto redraw;
2733 }
2734 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002735 }
2736
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002737 if (c1 == Ctrl_U)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002739 msg_col = startcol;
2740 msg_clr_eos();
2741 line_ga.ga_len = 0;
Bram Moolenaarda636572015-04-03 17:11:45 +02002742 goto redraw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002743 }
2744
2745 if (c1 == Ctrl_T)
2746 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002747 sw = get_sw_value(curbuf);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002748 p = (char_u *)line_ga.ga_data;
2749 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002750 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaar14f24742012-08-08 18:01:05 +02002751 indent += sw - indent % sw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002752add_indent:
Bram Moolenaar597a4222014-06-25 14:39:50 +02002753 while (get_indent_str(p, 8, FALSE) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002755 (void)ga_grow(&line_ga, 2); /* one more for the NUL */
Bram Moolenaarda636572015-04-03 17:11:45 +02002756 p = (char_u *)line_ga.ga_data;
2757 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002758 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2759 *s = ' ';
2760 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002762redraw:
2763 /* redraw the line */
2764 msg_col = startcol;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002765 vcol = 0;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002766 p = (char_u *)line_ga.ga_data;
2767 p[line_ga.ga_len] = NUL;
2768 while (p < (char_u *)line_ga.ga_data + line_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002770 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002772 do
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002773 msg_putchar(' ');
Bram Moolenaarabab0b02019-03-30 18:47:01 +01002774 while (++vcol % 8);
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002775 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002777 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778 {
Bram Moolenaar1614a142019-10-06 22:00:13 +02002779 len = mb_ptr2len(p);
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002780 msg_outtrans_len(p, len);
2781 vcol += ptr2cells(p);
2782 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 }
2784 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002785 msg_clr_eos();
Bram Moolenaar76624232007-07-28 12:21:47 +00002786 windgoto(msg_row, msg_col);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002787 continue;
2788 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002790 if (c1 == Ctrl_D)
2791 {
2792 /* Delete one shiftwidth. */
2793 p = (char_u *)line_ga.ga_data;
2794 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002796 if (prev_char == '^')
2797 ex_keep_indent = TRUE;
2798 indent = 0;
2799 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 }
2801 else
2802 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002803 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002804 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaarda636572015-04-03 17:11:45 +02002805 if (indent > 0)
2806 {
2807 --indent;
2808 indent -= indent % get_sw_value(curbuf);
2809 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02002811 while (get_indent_str(p, 8, FALSE) > indent)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002812 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002813 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002814 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2815 --line_ga.ga_len;
2816 }
2817 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002819
2820 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2821 {
2822 escaped = TRUE;
2823 continue;
2824 }
2825
2826 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
2827 if (IS_SPECIAL(c1))
2828 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002830
2831 if (IS_SPECIAL(c1))
2832 c1 = '?';
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002833 if (has_mbyte)
2834 len = (*mb_char2bytes)(c1,
2835 (char_u *)line_ga.ga_data + line_ga.ga_len);
2836 else
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002837 {
2838 len = 1;
2839 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
2840 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002841 if (c1 == '\n')
2842 msg_putchar('\n');
2843 else if (c1 == TAB)
2844 {
2845 /* Don't use chartabsize(), 'ts' can be different */
2846 do
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002847 msg_putchar(' ');
Bram Moolenaarabab0b02019-03-30 18:47:01 +01002848 while (++vcol % 8);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002849 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002852 msg_outtrans_len(
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002853 ((char_u *)line_ga.ga_data) + line_ga.ga_len, len);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002854 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855 }
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002856 line_ga.ga_len += len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002857 escaped = FALSE;
2858
2859 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002860 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002861
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002862 /* We are done when a NL is entered, but not when it comes after an
2863 * odd number of backslashes, that results in a NUL. */
2864 if (line_ga.ga_len > 0 && pend[-1] == '\n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 {
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002866 int bcount = 0;
2867
2868 while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\')
2869 ++bcount;
2870
2871 if (bcount > 0)
2872 {
2873 /* Halve the number of backslashes: "\NL" -> "NUL", "\\NL" ->
2874 * "\NL", etc. */
2875 line_ga.ga_len -= (bcount + 1) / 2;
2876 pend -= (bcount + 1) / 2;
2877 pend[-1] = '\n';
2878 }
2879
2880 if ((bcount & 1) == 0)
2881 {
2882 --line_ga.ga_len;
2883 --pend;
2884 *pend = NUL;
2885 break;
2886 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887 }
2888 }
2889
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002890 --no_mapping;
2891 --allow_keys;
2892
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893 /* make following messages go to the next line */
2894 msg_didout = FALSE;
2895 msg_col = 0;
2896 if (msg_row < Rows - 1)
2897 ++msg_row;
2898 emsg_on_display = FALSE; /* don't want ui_delay() */
2899
2900 if (got_int)
2901 ga_clear(&line_ga);
2902
2903 return (char_u *)line_ga.ga_data;
2904}
2905
Bram Moolenaare344bea2005-09-01 20:46:49 +00002906# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
2907 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908/*
2909 * Return TRUE if ccline.overstrike is on.
2910 */
2911 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002912cmdline_overstrike(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913{
2914 return ccline.overstrike;
2915}
2916
2917/*
2918 * Return TRUE if the cursor is at the end of the cmdline.
2919 */
2920 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002921cmdline_at_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922{
2923 return (ccline.cmdpos >= ccline.cmdlen);
2924}
2925#endif
2926
Bram Moolenaar9372a112005-12-06 19:59:18 +00002927#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002928/*
2929 * Return the virtual column number at the current cursor position.
2930 * This is used by the IM code to obtain the start of the preedit string.
2931 */
2932 colnr_T
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002933cmdline_getvcol_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934{
2935 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
2936 return MAXCOL;
2937
Bram Moolenaar071d4272004-06-13 20:20:40 +00002938 if (has_mbyte)
2939 {
2940 colnr_T col;
2941 int i = 0;
2942
2943 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002944 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945
2946 return col;
2947 }
2948 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949 return ccline.cmdpos;
2950}
2951#endif
2952
2953#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2954/*
2955 * If part of the command line is an IM preedit string, redraw it with
2956 * IM feedback attributes. The cursor position is restored after drawing.
2957 */
2958 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002959redrawcmd_preedit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960{
2961 if ((State & CMDLINE)
2962 && xic != NULL
Bram Moolenaar494c82a2006-09-14 08:25:49 +00002963 /* && im_get_status() doesn't work when using SCIM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964 && !p_imdisable
2965 && im_is_preediting())
2966 {
2967 int cmdpos = 0;
2968 int cmdspos;
2969 int old_row;
2970 int old_col;
2971 colnr_T col;
2972
2973 old_row = msg_row;
2974 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002975 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977 if (has_mbyte)
2978 {
2979 for (col = 0; col < preedit_start_col
2980 && cmdpos < ccline.cmdlen; ++col)
2981 {
2982 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002983 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984 }
2985 }
2986 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987 {
2988 cmdspos += preedit_start_col;
2989 cmdpos += preedit_start_col;
2990 }
2991
2992 msg_row = cmdline_row + (cmdspos / (int)Columns);
2993 msg_col = cmdspos % (int)Columns;
2994 if (msg_row >= Rows)
2995 msg_row = Rows - 1;
2996
2997 for (col = 0; cmdpos < ccline.cmdlen; ++col)
2998 {
2999 int char_len;
3000 int char_attr;
3001
3002 char_attr = im_get_feedback_attr(col);
3003 if (char_attr < 0)
3004 break; /* end of preedit string */
3005
Bram Moolenaar071d4272004-06-13 20:20:40 +00003006 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003007 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009 char_len = 1;
3010
3011 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
3012 cmdpos += char_len;
3013 }
3014
3015 msg_row = old_row;
3016 msg_col = old_col;
3017 }
3018}
3019#endif /* FEAT_XIM && FEAT_GUI_GTK */
3020
3021/*
3022 * Allocate a new command line buffer.
3023 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 */
3025 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003026alloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027{
3028 /*
3029 * give some extra space to avoid having to allocate all the time
3030 */
3031 if (len < 80)
3032 len = 100;
3033 else
3034 len += 20;
3035
3036 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */
3037 ccline.cmdbufflen = len;
3038}
3039
3040/*
3041 * Re-allocate the command line to length len + something extra.
3042 * return FAIL for failure, OK otherwise
3043 */
Bram Moolenaar66b51422019-08-18 21:44:12 +02003044 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003045realloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046{
3047 char_u *p;
3048
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003049 if (len < ccline.cmdbufflen)
3050 return OK; /* no need to resize */
3051
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052 p = ccline.cmdbuff;
3053 alloc_cmdbuff(len); /* will get some more */
3054 if (ccline.cmdbuff == NULL) /* out of memory */
3055 {
3056 ccline.cmdbuff = p; /* keep the old one */
3057 return FAIL;
3058 }
Bram Moolenaar35a34232010-08-13 16:51:26 +02003059 /* There isn't always a NUL after the command, but it may need to be
3060 * there, thus copy up to the NUL and add a NUL. */
3061 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen);
3062 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063 vim_free(p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003064
3065 if (ccline.xpc != NULL
3066 && ccline.xpc->xp_pattern != NULL
3067 && ccline.xpc->xp_context != EXPAND_NOTHING
3068 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL)
3069 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00003070 int i = (int)(ccline.xpc->xp_pattern - p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003071
3072 /* If xp_pattern points inside the old cmdbuff it needs to be adjusted
3073 * to point into the newly allocated memory. */
3074 if (i >= 0 && i <= ccline.cmdlen)
3075 ccline.xpc->xp_pattern = ccline.cmdbuff + i;
3076 }
3077
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078 return OK;
3079}
3080
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003081#if defined(FEAT_ARABIC) || defined(PROTO)
3082static char_u *arshape_buf = NULL;
3083
3084# if defined(EXITFREE) || defined(PROTO)
3085 void
Bram Moolenaar48ac6712019-07-04 20:26:21 +02003086free_arshape_buf(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003087{
3088 vim_free(arshape_buf);
3089}
3090# endif
3091#endif
3092
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093/*
3094 * Draw part of the cmdline at the current cursor position. But draw stars
3095 * when cmdline_star is TRUE.
3096 */
3097 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003098draw_cmdline(int start, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099{
3100#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
3101 int i;
3102
3103 if (cmdline_star > 0)
3104 for (i = 0; i < len; ++i)
3105 {
3106 msg_putchar('*');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003108 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109 }
3110 else
3111#endif
3112#ifdef FEAT_ARABIC
Bram Moolenaar693f7dc2019-06-21 02:30:38 +02003113 if (p_arshape && !p_tbidi && cmdline_has_arabic(start, len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115 static int buflen = 0;
3116 char_u *p;
3117 int j;
3118 int newlen = 0;
3119 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003120 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121 int prev_c = 0;
3122 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003123 int u8c;
3124 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126
3127 /*
3128 * Do arabic shaping into a temporary buffer. This is very
3129 * inefficient!
3130 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003131 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 {
3133 /* Re-allocate the buffer. We keep it around to avoid a lot of
3134 * alloc()/free() calls. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003135 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003136 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003137 arshape_buf = alloc(buflen);
3138 if (arshape_buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139 return; /* out of memory */
3140 }
3141
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003142 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
3143 {
3144 /* Prepend a space to draw the leading composing char on. */
3145 arshape_buf[0] = ' ';
3146 newlen = 1;
3147 }
3148
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149 for (j = start; j < start + len; j += mb_l)
3150 {
3151 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003152 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003153 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 if (ARABIC_CHAR(u8c))
3155 {
3156 /* Do Arabic shaping. */
3157 if (cmdmsg_rl)
3158 {
3159 /* displaying from right to left */
3160 pc = prev_c;
3161 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003162 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163 if (j + mb_l >= start + len)
3164 nc = NUL;
3165 else
3166 nc = utf_ptr2char(p + mb_l);
3167 }
3168 else
3169 {
3170 /* displaying from left to right */
3171 if (j + mb_l >= start + len)
3172 pc = NUL;
3173 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003174 {
3175 int pcc[MAX_MCO];
3176
3177 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003179 pc1 = pcc[0];
3180 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181 nc = prev_c;
3182 }
3183 prev_c = u8c;
3184
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003185 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003187 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003188 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003190 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
3191 if (u8cc[1] != 0)
3192 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003193 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 }
3195 }
3196 else
3197 {
3198 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003199 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 newlen += mb_l;
3201 }
3202 }
3203
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003204 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 }
3206 else
3207#endif
3208 msg_outtrans_len(ccline.cmdbuff + start, len);
3209}
3210
3211/*
3212 * Put a character on the command line. Shifts the following text to the
3213 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
3214 * "c" must be printable (fit in one display cell)!
3215 */
3216 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003217putcmdline(int c, int shift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218{
3219 if (cmd_silent)
3220 return;
3221 msg_no_more = TRUE;
3222 msg_putchar(c);
3223 if (shift)
3224 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
3225 msg_no_more = FALSE;
3226 cursorcmd();
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003227 extra_char = c;
3228 extra_char_shift = shift;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229}
3230
3231/*
3232 * Undo a putcmdline(c, FALSE).
3233 */
3234 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003235unputcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003236{
3237 if (cmd_silent)
3238 return;
3239 msg_no_more = TRUE;
3240 if (ccline.cmdlen == ccline.cmdpos)
3241 msg_putchar(' ');
Bram Moolenaar64fdf5c2012-06-06 12:03:06 +02003242 else if (has_mbyte)
3243 draw_cmdline(ccline.cmdpos,
3244 (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245 else
3246 draw_cmdline(ccline.cmdpos, 1);
3247 msg_no_more = FALSE;
3248 cursorcmd();
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003249 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250}
3251
3252/*
3253 * Put the given string, of the given length, onto the command line.
3254 * If len is -1, then STRLEN() is used to calculate the length.
3255 * If 'redraw' is TRUE then the new part of the command line, and the remaining
3256 * part will be redrawn, otherwise it will not. If this function is called
3257 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
3258 * called afterwards.
3259 */
3260 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003261put_on_cmdline(char_u *str, int len, int redraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003262{
3263 int retval;
3264 int i;
3265 int m;
3266 int c;
3267
3268 if (len < 0)
3269 len = (int)STRLEN(str);
3270
3271 /* Check if ccline.cmdbuff needs to be longer */
3272 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003273 retval = realloc_cmdbuff(ccline.cmdlen + len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274 else
3275 retval = OK;
3276 if (retval == OK)
3277 {
3278 if (!ccline.overstrike)
3279 {
3280 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
3281 ccline.cmdbuff + ccline.cmdpos,
3282 (size_t)(ccline.cmdlen - ccline.cmdpos));
3283 ccline.cmdlen += len;
3284 }
3285 else
3286 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 if (has_mbyte)
3288 {
3289 /* Count nr of characters in the new string. */
3290 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003291 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292 ++m;
3293 /* Count nr of bytes in cmdline that are overwritten by these
3294 * characters. */
3295 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003296 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297 --m;
3298 if (i < ccline.cmdlen)
3299 {
3300 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
3301 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
3302 ccline.cmdlen += ccline.cmdpos + len - i;
3303 }
3304 else
3305 ccline.cmdlen = ccline.cmdpos + len;
3306 }
Bram Moolenaar13505972019-01-24 15:04:48 +01003307 else if (ccline.cmdpos + len > ccline.cmdlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308 ccline.cmdlen = ccline.cmdpos + len;
3309 }
3310 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
3311 ccline.cmdbuff[ccline.cmdlen] = NUL;
3312
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313 if (enc_utf8)
3314 {
3315 /* When the inserted text starts with a composing character,
3316 * backup to the character before it. There could be two of them.
3317 */
3318 i = 0;
3319 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3320 while (ccline.cmdpos > 0 && utf_iscomposing(c))
3321 {
3322 i = (*mb_head_off)(ccline.cmdbuff,
3323 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3324 ccline.cmdpos -= i;
3325 len += i;
3326 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3327 }
Bram Moolenaar13505972019-01-24 15:04:48 +01003328#ifdef FEAT_ARABIC
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
3330 {
3331 /* Check the previous character for Arabic combining pair. */
3332 i = (*mb_head_off)(ccline.cmdbuff,
3333 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3334 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
3335 + ccline.cmdpos - i), c))
3336 {
3337 ccline.cmdpos -= i;
3338 len += i;
3339 }
3340 else
3341 i = 0;
3342 }
Bram Moolenaar13505972019-01-24 15:04:48 +01003343#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 if (i != 0)
3345 {
3346 /* Also backup the cursor position. */
3347 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
3348 ccline.cmdspos -= i;
3349 msg_col -= i;
3350 if (msg_col < 0)
3351 {
3352 msg_col += Columns;
3353 --msg_row;
3354 }
3355 }
3356 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003357
3358 if (redraw && !cmd_silent)
3359 {
3360 msg_no_more = TRUE;
3361 i = cmdline_row;
Bram Moolenaar73dc59a2011-09-30 17:46:21 +02003362 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
3364 /* Avoid clearing the rest of the line too often. */
3365 if (cmdline_row != i || ccline.overstrike)
3366 msg_clr_eos();
3367 msg_no_more = FALSE;
3368 }
Bram Moolenaar14184a32019-02-16 15:10:30 +01003369 if (KeyTyped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370 {
Bram Moolenaar14184a32019-02-16 15:10:30 +01003371 m = Columns * Rows;
3372 if (m < 0) /* overflow, Columns or Rows at weird value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373 m = MAXCOL;
Bram Moolenaar14184a32019-02-16 15:10:30 +01003374 }
3375 else
3376 m = MAXCOL;
3377 for (i = 0; i < len; ++i)
3378 {
3379 c = cmdline_charsize(ccline.cmdpos);
3380 /* count ">" for a double-wide char that doesn't fit. */
3381 if (has_mbyte)
3382 correct_cmdspos(ccline.cmdpos, c);
3383 /* Stop cursor at the end of the screen, but do increment the
3384 * insert position, so that entering a very long command
3385 * works, even though you can't see it. */
3386 if (ccline.cmdspos + c < m)
3387 ccline.cmdspos += c;
Bram Moolenaar13505972019-01-24 15:04:48 +01003388
Bram Moolenaar14184a32019-02-16 15:10:30 +01003389 if (has_mbyte)
3390 {
3391 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
3392 if (c > len - i - 1)
3393 c = len - i - 1;
3394 ccline.cmdpos += c;
3395 i += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396 }
Bram Moolenaar14184a32019-02-16 15:10:30 +01003397 ++ccline.cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 }
3399 }
3400 if (redraw)
3401 msg_check();
3402 return retval;
3403}
3404
Bram Moolenaar66b51422019-08-18 21:44:12 +02003405static cmdline_info_T prev_ccline;
3406static int prev_ccline_used = FALSE;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003407
3408/*
3409 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
3410 * and overwrite it. But get_cmdline_str() may need it, thus make it
3411 * available globally in prev_ccline.
3412 */
3413 static void
Bram Moolenaar66b51422019-08-18 21:44:12 +02003414save_cmdline(cmdline_info_T *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003415{
3416 if (!prev_ccline_used)
3417 {
Bram Moolenaar66b51422019-08-18 21:44:12 +02003418 vim_memset(&prev_ccline, 0, sizeof(cmdline_info_T));
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003419 prev_ccline_used = TRUE;
3420 }
3421 *ccp = prev_ccline;
3422 prev_ccline = ccline;
Bram Moolenaar438d1762018-09-30 17:11:48 +02003423 ccline.cmdbuff = NULL; // signal that ccline is not in use
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003424}
3425
3426/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003427 * Restore ccline after it has been saved with save_cmdline().
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003428 */
3429 static void
Bram Moolenaar66b51422019-08-18 21:44:12 +02003430restore_cmdline(cmdline_info_T *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003431{
3432 ccline = prev_ccline;
3433 prev_ccline = *ccp;
3434}
3435
Bram Moolenaar8299df92004-07-10 09:47:34 +00003436/*
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003437 * Paste a yank register into the command line.
3438 * Used by CTRL-R command in command-line mode.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003439 * insert_reg() can't be used here, because special characters from the
3440 * register contents will be interpreted as commands.
3441 *
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003442 * Return FAIL for failure, OK otherwise.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003443 */
3444 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003445cmdline_paste(
3446 int regname,
3447 int literally, /* Insert text literally instead of "as typed" */
3448 int remcr) /* remove trailing CR */
Bram Moolenaar8299df92004-07-10 09:47:34 +00003449{
3450 long i;
3451 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003452 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003453 int allocated;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003454
3455 /* check for valid regname; also accept special characters for CTRL-R in
3456 * the command line */
3457 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
Bram Moolenaare2c8d832018-05-01 19:24:03 +02003458 && regname != Ctrl_A && regname != Ctrl_L
3459 && !valid_yank_reg(regname, FALSE))
Bram Moolenaar8299df92004-07-10 09:47:34 +00003460 return FAIL;
3461
3462 /* A register containing CTRL-R can cause an endless loop. Allow using
3463 * CTRL-C to break the loop. */
3464 line_breakcheck();
3465 if (got_int)
3466 return FAIL;
3467
3468#ifdef FEAT_CLIPBOARD
3469 regname = may_get_selection(regname);
3470#endif
3471
Bram Moolenaar438d1762018-09-30 17:11:48 +02003472 // Need to set "textlock" to avoid nasty things like going to another
3473 // buffer when evaluating an expression.
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003474 ++textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003475 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003476 --textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003477
3478 if (i)
3479 {
3480 /* Got the value of a special register in "arg". */
3481 if (arg == NULL)
3482 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003483
3484 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
3485 * part of the word. */
3486 p = arg;
3487 if (p_is && regname == Ctrl_W)
3488 {
3489 char_u *w;
3490 int len;
3491
3492 /* Locate start of last word in the cmd buffer. */
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003493 for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; )
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003494 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003495 if (has_mbyte)
3496 {
3497 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
3498 if (!vim_iswordc(mb_ptr2char(w - len)))
3499 break;
3500 w -= len;
3501 }
3502 else
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003503 {
3504 if (!vim_iswordc(w[-1]))
3505 break;
3506 --w;
3507 }
3508 }
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003509 len = (int)((ccline.cmdbuff + ccline.cmdpos) - w);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003510 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
3511 p += len;
3512 }
3513
3514 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003515 if (allocated)
3516 vim_free(arg);
3517 return OK;
3518 }
3519
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003520 return cmdline_paste_reg(regname, literally, remcr);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003521}
3522
3523/*
3524 * Put a string on the command line.
3525 * When "literally" is TRUE, insert literally.
3526 * When "literally" is FALSE, insert as typed, but don't leave the command
3527 * line.
3528 */
3529 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003530cmdline_paste_str(char_u *s, int literally)
Bram Moolenaar8299df92004-07-10 09:47:34 +00003531{
3532 int c, cv;
3533
3534 if (literally)
3535 put_on_cmdline(s, -1, TRUE);
3536 else
3537 while (*s != NUL)
3538 {
3539 cv = *s;
3540 if (cv == Ctrl_V && s[1])
3541 ++s;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003542 if (has_mbyte)
Bram Moolenaar48be32b2008-06-20 10:56:16 +00003543 c = mb_cptr2char_adv(&s);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003544 else
Bram Moolenaar8299df92004-07-10 09:47:34 +00003545 c = *s++;
Bram Moolenaare79abdd2012-06-29 13:44:41 +02003546 if (cv == Ctrl_V || c == ESC || c == Ctrl_C
3547 || c == CAR || c == NL || c == Ctrl_L
Bram Moolenaar8299df92004-07-10 09:47:34 +00003548#ifdef UNIX
3549 || c == intr_char
3550#endif
3551 || (c == Ctrl_BSL && *s == Ctrl_N))
3552 stuffcharReadbuff(Ctrl_V);
3553 stuffcharReadbuff(c);
3554 }
3555}
3556
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557#ifdef FEAT_WILDMENU
3558/*
3559 * Delete characters on the command line, from "from" to the current
3560 * position.
3561 */
3562 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003563cmdline_del(int from)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564{
3565 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
3566 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3567 ccline.cmdlen -= ccline.cmdpos - from;
3568 ccline.cmdpos = from;
3569}
3570#endif
3571
3572/*
Bram Moolenaar89c79b92016-05-05 17:18:41 +02003573 * This function is called when the screen size changes and with incremental
3574 * search and in other situations where the command line may have been
3575 * overwritten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576 */
3577 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003578redrawcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579{
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003580 redrawcmdline_ex(TRUE);
3581}
3582
3583 void
3584redrawcmdline_ex(int do_compute_cmdrow)
3585{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586 if (cmd_silent)
3587 return;
3588 need_wait_return = FALSE;
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003589 if (do_compute_cmdrow)
3590 compute_cmdrow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591 redrawcmd();
3592 cursorcmd();
3593}
3594
3595 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003596redrawcmdprompt(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597{
3598 int i;
3599
3600 if (cmd_silent)
3601 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003602 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603 msg_putchar(ccline.cmdfirstc);
3604 if (ccline.cmdprompt != NULL)
3605 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003606 msg_puts_attr((char *)ccline.cmdprompt, ccline.cmdattr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
3608 /* do the reverse of set_cmdspos() */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003609 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610 --ccline.cmdindent;
3611 }
3612 else
3613 for (i = ccline.cmdindent; i > 0; --i)
3614 msg_putchar(' ');
3615}
3616
3617/*
3618 * Redraw what is currently on the command line.
3619 */
3620 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003621redrawcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622{
3623 if (cmd_silent)
3624 return;
3625
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003626 /* when 'incsearch' is set there may be no command line while redrawing */
3627 if (ccline.cmdbuff == NULL)
3628 {
3629 windgoto(cmdline_row, 0);
3630 msg_clr_eos();
3631 return;
3632 }
3633
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 msg_start();
3635 redrawcmdprompt();
3636
3637 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
3638 msg_no_more = TRUE;
3639 draw_cmdline(0, ccline.cmdlen);
3640 msg_clr_eos();
3641 msg_no_more = FALSE;
3642
3643 set_cmdspos_cursor();
Bram Moolenaara92522f2017-07-15 15:21:38 +02003644 if (extra_char != NUL)
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003645 putcmdline(extra_char, extra_char_shift);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646
3647 /*
3648 * An emsg() before may have set msg_scroll. This is used in normal mode,
3649 * in cmdline mode we can reset them now.
3650 */
3651 msg_scroll = FALSE; /* next message overwrites cmdline */
3652
3653 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
3654 * in cmdline mode */
3655 skip_redraw = FALSE;
3656}
3657
3658 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003659compute_cmdrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003661 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003662 cmdline_row = Rows - 1;
3663 else
3664 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
Bram Moolenaare0de17d2017-09-24 16:24:34 +02003665 + lastwin->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666}
3667
Bram Moolenaar66b51422019-08-18 21:44:12 +02003668 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003669cursorcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670{
3671 if (cmd_silent)
3672 return;
3673
3674#ifdef FEAT_RIGHTLEFT
3675 if (cmdmsg_rl)
3676 {
3677 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3678 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3679 if (msg_row <= 0)
3680 msg_row = Rows - 1;
3681 }
3682 else
3683#endif
3684 {
3685 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3686 msg_col = ccline.cmdspos % (int)Columns;
3687 if (msg_row >= Rows)
3688 msg_row = Rows - 1;
3689 }
3690
3691 windgoto(msg_row, msg_col);
3692#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar5c6dbcb2017-08-30 22:00:20 +02003693 if (p_imst == IM_ON_THE_SPOT)
3694 redrawcmd_preedit();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695#endif
3696#ifdef MCH_CURSOR_SHAPE
3697 mch_update_cursor();
3698#endif
3699}
3700
3701 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003702gotocmdline(int clr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703{
3704 msg_start();
3705#ifdef FEAT_RIGHTLEFT
3706 if (cmdmsg_rl)
3707 msg_col = Columns - 1;
3708 else
3709#endif
3710 msg_col = 0; /* always start in column 0 */
3711 if (clr) /* clear the bottom line(s) */
3712 msg_clr_eos(); /* will reset clear_cmdline */
3713 windgoto(cmdline_row, 0);
3714}
3715
3716/*
3717 * Check the word in front of the cursor for an abbreviation.
3718 * Called when the non-id character "c" has been entered.
3719 * When an abbreviation is recognized it is removed from the text with
3720 * backspaces and the replacement string is inserted, followed by "c".
3721 */
3722 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003723ccheck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724{
Bram Moolenaar5e3423d2018-05-13 18:36:27 +02003725 int spos = 0;
3726
Bram Moolenaar071d4272004-06-13 20:20:40 +00003727 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
3728 return FALSE;
3729
Bram Moolenaar5e3423d2018-05-13 18:36:27 +02003730 /* Do not consider '<,'> be part of the mapping, skip leading whitespace.
3731 * Actually accepts any mark. */
3732 while (VIM_ISWHITE(ccline.cmdbuff[spos]) && spos < ccline.cmdlen)
3733 spos++;
3734 if (ccline.cmdlen - spos > 5
3735 && ccline.cmdbuff[spos] == '\''
3736 && ccline.cmdbuff[spos + 2] == ','
3737 && ccline.cmdbuff[spos + 3] == '\'')
3738 spos += 5;
3739 else
3740 /* check abbreviation from the beginning of the commandline */
3741 spos = 0;
3742
3743 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, spos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744}
3745
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003747 * Escape special characters in "fname" for when used as a file name argument
3748 * after a Vim command, or, when "shell" is non-zero, a shell command.
3749 * Returns the result in allocated memory.
3750 */
3751 char_u *
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02003752vim_strsave_fnameescape(char_u *fname, int shell UNUSED)
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003753{
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003754 char_u *p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003755#ifdef BACKSLASH_IN_FILENAME
3756 char_u buf[20];
3757 int j = 0;
3758
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01003759 /* Don't escape '[', '{' and '!' if they are in 'isfname'. */
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003760 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01003761 if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p))
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003762 buf[j++] = *p;
3763 buf[j] = NUL;
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003764 p = vim_strsave_escaped(fname, buf);
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003765#else
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003766 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
3767 if (shell && csh_like_shell() && p != NULL)
3768 {
3769 char_u *s;
3770
3771 /* For csh and similar shells need to put two backslashes before '!'.
3772 * One is taken by Vim, one by the shell. */
3773 s = vim_strsave_escaped(p, (char_u *)"!");
3774 vim_free(p);
3775 p = s;
3776 }
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003777#endif
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003778
3779 /* '>' and '+' are special at the start of some commands, e.g. ":edit" and
3780 * ":write". "cd -" has a special meaning. */
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003781 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL)))
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003782 escape_fname(&p);
3783
3784 return p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003785}
3786
3787/*
Bram Moolenaar45360022005-07-21 21:08:21 +00003788 * Put a backslash before the file name in "pp", which is in allocated memory.
3789 */
Bram Moolenaar66b51422019-08-18 21:44:12 +02003790 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003791escape_fname(char_u **pp)
Bram Moolenaar45360022005-07-21 21:08:21 +00003792{
3793 char_u *p;
3794
Bram Moolenaar964b3742019-05-24 18:54:09 +02003795 p = alloc(STRLEN(*pp) + 2);
Bram Moolenaar45360022005-07-21 21:08:21 +00003796 if (p != NULL)
3797 {
3798 p[0] = '\\';
3799 STRCPY(p + 1, *pp);
3800 vim_free(*pp);
3801 *pp = p;
3802 }
3803}
3804
3805/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 * For each file name in files[num_files]:
3807 * If 'orig_pat' starts with "~/", replace the home directory with "~".
3808 */
3809 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003810tilde_replace(
3811 char_u *orig_pat,
3812 int num_files,
3813 char_u **files)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814{
3815 int i;
3816 char_u *p;
3817
3818 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
3819 {
3820 for (i = 0; i < num_files; ++i)
3821 {
3822 p = home_replace_save(NULL, files[i]);
3823 if (p != NULL)
3824 {
3825 vim_free(files[i]);
3826 files[i] = p;
3827 }
3828 }
3829 }
3830}
3831
3832/*
Bram Moolenaar66b51422019-08-18 21:44:12 +02003833 * Get a pointer to the current command line info.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 */
Bram Moolenaar66b51422019-08-18 21:44:12 +02003835 cmdline_info_T *
3836get_cmdline_info(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837{
Bram Moolenaar66b51422019-08-18 21:44:12 +02003838 return &ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839}
3840
Bram Moolenaar064154c2016-03-19 22:50:43 +01003841#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003842/*
Bram Moolenaar438d1762018-09-30 17:11:48 +02003843 * Get pointer to the command line info to use. save_ccline() may clear
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003844 * ccline and put the previous value in prev_ccline.
3845 */
Bram Moolenaar66b51422019-08-18 21:44:12 +02003846 static cmdline_info_T *
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003847get_ccline_ptr(void)
3848{
3849 if ((State & CMDLINE) == 0)
3850 return NULL;
3851 if (ccline.cmdbuff != NULL)
3852 return &ccline;
3853 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
3854 return &prev_ccline;
3855 return NULL;
3856}
Bram Moolenaar064154c2016-03-19 22:50:43 +01003857#endif
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003858
Bram Moolenaar064154c2016-03-19 22:50:43 +01003859#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003860/*
3861 * Get the current command line in allocated memory.
3862 * Only works when the command line is being edited.
3863 * Returns NULL when something is wrong.
3864 */
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003865 static char_u *
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003866get_cmdline_str(void)
3867{
Bram Moolenaar66b51422019-08-18 21:44:12 +02003868 cmdline_info_T *p;
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003869
Bram Moolenaaree91c332018-09-25 22:27:35 +02003870 if (cmdline_star > 0)
3871 return NULL;
3872 p = get_ccline_ptr();
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003873 if (p == NULL)
3874 return NULL;
3875 return vim_strnsave(p->cmdbuff, p->cmdlen);
3876}
3877
3878/*
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003879 * "getcmdline()" function
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003880 */
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003881 void
3882f_getcmdline(typval_T *argvars UNUSED, typval_T *rettv)
3883{
3884 rettv->v_type = VAR_STRING;
3885 rettv->vval.v_string = get_cmdline_str();
3886}
3887
3888/*
3889 * "getcmdpos()" function
3890 */
3891 void
3892f_getcmdpos(typval_T *argvars UNUSED, typval_T *rettv)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003893{
Bram Moolenaar66b51422019-08-18 21:44:12 +02003894 cmdline_info_T *p = get_ccline_ptr();
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003895
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003896 rettv->vval.v_number = 0;
3897 if (p != NULL)
3898 rettv->vval.v_number = p->cmdpos + 1;
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003899}
3900
3901/*
3902 * Set the command line byte position to "pos". Zero is the first position.
3903 * Only works when the command line is being edited.
3904 * Returns 1 when failed, 0 when OK.
3905 */
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003906 static int
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003907set_cmdline_pos(
3908 int pos)
3909{
Bram Moolenaar66b51422019-08-18 21:44:12 +02003910 cmdline_info_T *p = get_ccline_ptr();
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003911
3912 if (p == NULL)
3913 return 1;
3914
3915 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
3916 * changed the command line. */
3917 if (pos < 0)
3918 new_cmdpos = 0;
3919 else
3920 new_cmdpos = pos;
3921 return 0;
3922}
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003923
3924/*
3925 * "setcmdpos()" function
3926 */
3927 void
3928f_setcmdpos(typval_T *argvars, typval_T *rettv)
3929{
3930 int pos = (int)tv_get_number(&argvars[0]) - 1;
3931
3932 if (pos >= 0)
3933 rettv->vval.v_number = set_cmdline_pos(pos);
3934}
3935
3936/*
3937 * "getcmdtype()" function
3938 */
3939 void
3940f_getcmdtype(typval_T *argvars UNUSED, typval_T *rettv)
3941{
3942 rettv->v_type = VAR_STRING;
3943 rettv->vval.v_string = alloc(2);
3944 if (rettv->vval.v_string != NULL)
3945 {
3946 rettv->vval.v_string[0] = get_cmdline_type();
3947 rettv->vval.v_string[1] = NUL;
3948 }
3949}
3950
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003951#endif
3952
3953#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
3954/*
3955 * Get the current command-line type.
3956 * Returns ':' or '/' or '?' or '@' or '>' or '-'
3957 * Only works when the command line is being edited.
3958 * Returns NUL when something is wrong.
3959 */
3960 int
3961get_cmdline_type(void)
3962{
Bram Moolenaar66b51422019-08-18 21:44:12 +02003963 cmdline_info_T *p = get_ccline_ptr();
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003964
3965 if (p == NULL)
3966 return NUL;
3967 if (p->cmdfirstc == NUL)
Bram Moolenaar064154c2016-03-19 22:50:43 +01003968 return
3969# ifdef FEAT_EVAL
3970 (p->input_fn) ? '@' :
3971# endif
3972 '-';
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003973 return p->cmdfirstc;
3974}
3975#endif
3976
Bram Moolenaard7663c22019-08-06 21:59:57 +02003977/*
3978 * Return the first character of the current command line.
3979 */
3980 int
3981get_cmdline_firstc(void)
3982{
3983 return ccline.cmdfirstc;
3984}
3985
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986/*
3987 * Get indices "num1,num2" that specify a range within a list (not a range of
3988 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
3989 * Returns OK if parsed successfully, otherwise FAIL.
3990 */
3991 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003992get_list_range(char_u **str, int *num1, int *num2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993{
3994 int len;
3995 int first = FALSE;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02003996 varnumber_T num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997
3998 *str = skipwhite(*str);
3999 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
4000 {
Bram Moolenaar16e9b852019-05-19 19:59:35 +02004001 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002 *str += len;
4003 *num1 = (int)num;
4004 first = TRUE;
4005 }
4006 *str = skipwhite(*str);
4007 if (**str == ',') /* parse "to" part of range */
4008 {
4009 *str = skipwhite(*str + 1);
Bram Moolenaar16e9b852019-05-19 19:59:35 +02004010 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 if (len > 0)
4012 {
4013 *num2 = (int)num;
4014 *str = skipwhite(*str + len);
4015 }
4016 else if (!first) /* no number given at all */
4017 return FAIL;
4018 }
4019 else if (first) /* only one number given */
4020 *num2 = *num1;
4021 return OK;
4022}
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02004023
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024#if defined(FEAT_CMDWIN) || defined(PROTO)
4025/*
4026 * Open a window on the current command line and history. Allow editing in
4027 * the window. Returns when the window is closed.
4028 * Returns:
4029 * CR if the command is to be executed
4030 * Ctrl_C if it is to be abandoned
4031 * K_IGNORE if editing continues
4032 */
4033 static int
Bram Moolenaar3bab9392017-04-07 15:42:25 +02004034open_cmdwin(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004036 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 win_T *old_curwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004038 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 win_T *wp;
4040 int i;
4041 linenr_T lnum;
4042 int histtype;
4043 garray_T winsizes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 int save_restart_edit = restart_edit;
4045 int save_State = State;
4046 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00004047#ifdef FEAT_RIGHTLEFT
4048 int save_cmdmsg_rl = cmdmsg_rl;
4049#endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02004050#ifdef FEAT_FOLDING
4051 int save_KeyTyped;
4052#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053
4054 /* Can't do this recursively. Can't do it when typing a password. */
4055 if (cmdwin_type != 0
4056# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
4057 || cmdline_star > 0
4058# endif
4059 )
4060 {
4061 beep_flush();
4062 return K_IGNORE;
4063 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004064 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004065
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004066 // Save current window sizes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067 win_size_save(&winsizes);
4068
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01004069 // When using completion in Insert mode with <C-R>=<C-F> one can open the
4070 // command line window, but we don't want the popup menu then.
4071 pum_undisplay();
4072
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004073 // don't use a new tab page
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00004074 cmdmod.tab = 0;
Bram Moolenaar3bab9392017-04-07 15:42:25 +02004075 cmdmod.noswapfile = 1;
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00004076
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004077 // Create a window for the command-line buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
4079 {
4080 beep_flush();
4081 return K_IGNORE;
4082 }
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00004083 cmdwin_type = get_cmdline_type();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004085 // Create the command-line buffer empty.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00004086 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL);
Bram Moolenaar446cb832008-06-24 21:56:24 +00004087 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089 curbuf->b_p_ma = TRUE;
Bram Moolenaar876f6d72009-04-29 10:05:51 +00004090#ifdef FEAT_FOLDING
4091 curwin->w_p_fen = FALSE;
4092#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00004094 curwin->w_p_rl = cmdmsg_rl;
4095 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004096# endif
Bram Moolenaar3368ea22010-09-21 16:56:35 +02004097 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004099 // Don't allow switching to another buffer.
Bram Moolenaar18141832017-06-25 21:17:25 +02004100 ++curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004101
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004102 // Showing the prompt may have set need_wait_return, reset it.
Bram Moolenaar46152342005-09-07 21:18:43 +00004103 need_wait_return = FALSE;
4104
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00004105 histtype = hist_char2type(cmdwin_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
4107 {
4108 if (p_wc == TAB)
4109 {
4110 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
4111 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
4112 }
4113 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
4114 }
Bram Moolenaar18141832017-06-25 21:17:25 +02004115 --curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004117 // Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
4118 // sets 'textwidth' to 78).
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00004119 curbuf->b_p_tw = 0;
4120
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004121 // Fill the buffer with the history.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122 init_history();
Bram Moolenaard7663c22019-08-06 21:59:57 +02004123 if (get_hislen() > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 {
Bram Moolenaard7663c22019-08-06 21:59:57 +02004125 i = *get_hisidx(histtype);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 if (i >= 0)
4127 {
4128 lnum = 0;
4129 do
4130 {
Bram Moolenaard7663c22019-08-06 21:59:57 +02004131 if (++i == get_hislen())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132 i = 0;
Bram Moolenaard7663c22019-08-06 21:59:57 +02004133 if (get_histentry(histtype)[i].hisstr != NULL)
4134 ml_append(lnum++, get_histentry(histtype)[i].hisstr,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004135 (colnr_T)0, FALSE);
4136 }
Bram Moolenaard7663c22019-08-06 21:59:57 +02004137 while (i != *get_hisidx(histtype));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004138 }
4139 }
4140
4141 /* Replace the empty last line with the current command-line and put the
4142 * cursor there. */
4143 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
4144 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4145 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00004146 changed_line_abv_curs();
4147 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004148 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149
Bram Moolenaar23324a02019-10-01 17:39:04 +02004150 // No Ex mode here!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 exmode_active = 0;
4152
4153 State = NORMAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155
Bram Moolenaar23324a02019-10-01 17:39:04 +02004156 // Reset here so it can be set by a CmdWinEnter autocommand.
4157 cmdwin_result = 0;
4158
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004159 // Trigger CmdwinEnter autocommands.
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02004160 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINENTER);
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004161 if (restart_edit != 0) // autocmd with ":startinsert"
Bram Moolenaar5495cc92006-08-16 14:23:04 +00004162 stuffcharReadbuff(K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163
4164 i = RedrawingDisabled;
4165 RedrawingDisabled = 0;
4166
4167 /*
4168 * Call the main loop until <CR> or CTRL-C is typed.
4169 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004170 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171
4172 RedrawingDisabled = i;
4173
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004174# ifdef FEAT_FOLDING
Bram Moolenaar42f06f92014-08-17 17:24:07 +02004175 save_KeyTyped = KeyTyped;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004176# endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02004177
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004178 // Trigger CmdwinLeave autocommands.
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02004179 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINLEAVE);
Bram Moolenaar42f06f92014-08-17 17:24:07 +02004180
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004181# ifdef FEAT_FOLDING
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004182 // Restore KeyTyped in case it is modified by autocommands
Bram Moolenaar42f06f92014-08-17 17:24:07 +02004183 KeyTyped = save_KeyTyped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184# endif
4185
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186 cmdwin_type = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004187 exmode_active = save_exmode;
4188
Bram Moolenaarf9821062008-06-20 16:31:07 +00004189 /* Safety check: The old window or buffer was deleted: It's a bug when
Bram Moolenaar071d4272004-06-13 20:20:40 +00004190 * this happens! */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004191 if (!win_valid(old_curwin) || !bufref_valid(&old_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192 {
4193 cmdwin_result = Ctrl_C;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004194 emsg(_("E199: Active window or buffer deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195 }
4196 else
4197 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004198# if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 /* autocmds may abort script processing */
4200 if (aborting() && cmdwin_result != K_IGNORE)
4201 cmdwin_result = Ctrl_C;
4202# endif
4203 /* Set the new command line from the cmdline buffer. */
4204 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00004205 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004206 {
Bram Moolenaar46152342005-09-07 21:18:43 +00004207 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
4208
4209 if (histtype == HIST_CMD)
4210 {
4211 /* Execute the command directly. */
4212 ccline.cmdbuff = vim_strsave((char_u *)p);
4213 cmdwin_result = CAR;
4214 }
4215 else
4216 {
4217 /* First need to cancel what we were doing. */
4218 ccline.cmdbuff = NULL;
4219 stuffcharReadbuff(':');
4220 stuffReadbuff((char_u *)p);
4221 stuffcharReadbuff(CAR);
4222 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 }
4224 else if (cmdwin_result == K_XF2) /* :qa typed */
4225 {
4226 ccline.cmdbuff = vim_strsave((char_u *)"qa");
4227 cmdwin_result = CAR;
4228 }
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02004229 else if (cmdwin_result == Ctrl_C)
4230 {
4231 /* :q or :close, don't execute any command
4232 * and don't modify the cmd window. */
4233 ccline.cmdbuff = NULL;
4234 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235 else
4236 ccline.cmdbuff = vim_strsave(ml_get_curline());
4237 if (ccline.cmdbuff == NULL)
Bram Moolenaar5a15b6a2017-07-11 15:11:57 +02004238 {
4239 ccline.cmdbuff = vim_strsave((char_u *)"");
4240 ccline.cmdlen = 0;
4241 ccline.cmdbufflen = 1;
4242 ccline.cmdpos = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 cmdwin_result = Ctrl_C;
Bram Moolenaar5a15b6a2017-07-11 15:11:57 +02004244 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004245 else
4246 {
4247 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
4248 ccline.cmdbufflen = ccline.cmdlen + 1;
4249 ccline.cmdpos = curwin->w_cursor.col;
4250 if (ccline.cmdpos > ccline.cmdlen)
4251 ccline.cmdpos = ccline.cmdlen;
4252 if (cmdwin_result == K_IGNORE)
4253 {
4254 set_cmdspos_cursor();
4255 redrawcmd();
4256 }
4257 }
4258
Bram Moolenaarfa67fbe2015-06-25 18:20:36 +02004259# ifdef FEAT_CONCEAL
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004260 // Avoid command-line window first character being concealed.
Bram Moolenaarfa67fbe2015-06-25 18:20:36 +02004261 curwin->w_p_cole = 0;
4262# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 wp = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004264 set_bufref(&bufref, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265 win_goto(old_curwin);
4266 win_close(wp, TRUE);
Bram Moolenaar8006d692010-03-02 17:23:21 +01004267
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004268 // win_close() may have already wiped the buffer when 'bh' is
4269 // set to 'wipe'
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004270 if (bufref_valid(&bufref))
4271 close_buffer(NULL, bufref.br_buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004272
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004273 // Restore window sizes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274 win_size_restore(&winsizes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004275 }
4276
4277 ga_clear(&winsizes);
4278 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00004279# ifdef FEAT_RIGHTLEFT
4280 cmdmsg_rl = save_cmdmsg_rl;
4281# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282
4283 State = save_State;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004285
4286 return cmdwin_result;
4287}
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004288#endif // FEAT_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289
4290/*
4291 * Used for commands that either take a simple command string argument, or:
4292 * cmd << endmarker
4293 * {script}
4294 * endmarker
4295 * Returns a pointer to allocated memory with {script} or NULL.
4296 */
4297 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004298script_get(exarg_T *eap, char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004299{
4300 char_u *theline;
4301 char *end_pattern = NULL;
4302 char dot[] = ".";
4303 garray_T ga;
4304
4305 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
4306 return NULL;
4307
4308 ga_init2(&ga, 1, 0x400);
4309
4310 if (cmd[2] != NUL)
4311 end_pattern = (char *)skipwhite(cmd + 2);
4312 else
4313 end_pattern = dot;
4314
4315 for (;;)
4316 {
4317 theline = eap->getline(
4318#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00004319 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320#endif
Bram Moolenaare96a2492019-06-25 04:12:16 +02004321 NUL, eap->cookie, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322
4323 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
Bram Moolenaarbe555e72008-08-06 12:19:26 +00004324 {
4325 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326 break;
Bram Moolenaarbe555e72008-08-06 12:19:26 +00004327 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004328
4329 ga_concat(&ga, theline);
4330 ga_append(&ga, '\n');
4331 vim_free(theline);
4332 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00004333 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334
4335 return (char_u *)ga.ga_data;
4336}
Bram Moolenaarda6c0332019-09-01 16:01:30 +02004337
4338#if defined(FEAT_EVAL) || defined(PROTO)
4339/*
4340 * This function is used by f_input() and f_inputdialog() functions. The third
4341 * argument to f_input() specifies the type of completion to use at the
4342 * prompt. The third argument to f_inputdialog() specifies the value to return
4343 * when the user cancels the prompt.
4344 */
4345 void
4346get_user_input(
4347 typval_T *argvars,
4348 typval_T *rettv,
4349 int inputdialog,
4350 int secret)
4351{
4352 char_u *prompt = tv_get_string_chk(&argvars[0]);
4353 char_u *p = NULL;
4354 int c;
4355 char_u buf[NUMBUFLEN];
4356 int cmd_silent_save = cmd_silent;
4357 char_u *defstr = (char_u *)"";
4358 int xp_type = EXPAND_NOTHING;
4359 char_u *xp_arg = NULL;
4360
4361 rettv->v_type = VAR_STRING;
4362 rettv->vval.v_string = NULL;
4363
4364#ifdef NO_CONSOLE_INPUT
4365 // While starting up, there is no place to enter text. When running tests
4366 // with --not-a-term we assume feedkeys() will be used.
4367 if (no_console_input() && !is_not_a_term())
4368 return;
4369#endif
4370
4371 cmd_silent = FALSE; // Want to see the prompt.
4372 if (prompt != NULL)
4373 {
4374 // Only the part of the message after the last NL is considered as
4375 // prompt for the command line
4376 p = vim_strrchr(prompt, '\n');
4377 if (p == NULL)
4378 p = prompt;
4379 else
4380 {
4381 ++p;
4382 c = *p;
4383 *p = NUL;
4384 msg_start();
4385 msg_clr_eos();
4386 msg_puts_attr((char *)prompt, get_echo_attr());
4387 msg_didout = FALSE;
4388 msg_starthere();
4389 *p = c;
4390 }
4391 cmdline_row = msg_row;
4392
4393 if (argvars[1].v_type != VAR_UNKNOWN)
4394 {
4395 defstr = tv_get_string_buf_chk(&argvars[1], buf);
4396 if (defstr != NULL)
4397 stuffReadbuffSpec(defstr);
4398
4399 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN)
4400 {
4401 char_u *xp_name;
4402 int xp_namelen;
4403 long argt;
4404
4405 // input() with a third argument: completion
4406 rettv->vval.v_string = NULL;
4407
4408 xp_name = tv_get_string_buf_chk(&argvars[2], buf);
4409 if (xp_name == NULL)
4410 return;
4411
4412 xp_namelen = (int)STRLEN(xp_name);
4413
4414 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt,
4415 &xp_arg) == FAIL)
4416 return;
4417 }
4418 }
4419
4420 if (defstr != NULL)
4421 {
4422 int save_ex_normal_busy = ex_normal_busy;
4423
4424 ex_normal_busy = 0;
4425 rettv->vval.v_string =
4426 getcmdline_prompt(secret ? NUL : '@', p, get_echo_attr(),
4427 xp_type, xp_arg);
4428 ex_normal_busy = save_ex_normal_busy;
4429 }
4430 if (inputdialog && rettv->vval.v_string == NULL
4431 && argvars[1].v_type != VAR_UNKNOWN
4432 && argvars[2].v_type != VAR_UNKNOWN)
4433 rettv->vval.v_string = vim_strsave(tv_get_string_buf(
4434 &argvars[2], buf));
4435
4436 vim_free(xp_arg);
4437
4438 // since the user typed this, no need to wait for return
4439 need_wait_return = FALSE;
4440 msg_didout = FALSE;
4441 }
4442 cmd_silent = cmd_silent_save;
4443}
4444#endif