blob: 9c98f99babb5b0a5e411e699fe7599a096c3b97c [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 Moolenaar7ab5d772019-10-26 20:45:24 +0200528 highlight_match = FALSE;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200529 restore_last_search_pattern();
530
Bram Moolenaar99f043a2018-09-09 15:54:14 +0200531 // Leave it at the end to make CTRL-R CTRL-W work. But not when beyond the
532 // end of the pattern, e.g. for ":s/pat/".
533 if (ccline.cmdbuff[skiplen + patlen] != NUL)
534 curwin->w_cursor = is_state->search_start;
535 else if (found != 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200536 curwin->w_cursor = end_pos;
537
538 msg_starthere();
539 redrawcmdline();
540 is_state->did_incsearch = TRUE;
541}
542
543/*
544 * May adjust 'incsearch' highlighting for typing CTRL-G and CTRL-T, go to next
545 * or previous match.
546 * Returns FAIL when jumping to cmdline_not_changed;
547 */
548 static int
549may_adjust_incsearch_highlighting(
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200550 int firstc,
551 long count,
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200552 incsearch_state_T *is_state,
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200553 int c)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200554{
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200555 int skiplen, patlen;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200556 pos_T t;
557 char_u *pat;
558 int search_flags = SEARCH_NOOF;
559 int i;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200560 int save;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200561
Bram Moolenaar198cb662018-09-06 21:44:17 +0200562 // Parsing range may already set the last search pattern.
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100563 // NOTE: must call restore_last_search_pattern() before returning!
Bram Moolenaar198cb662018-09-06 21:44:17 +0200564 save_last_search_pattern();
565
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200566 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen))
Bram Moolenaar198cb662018-09-06 21:44:17 +0200567 {
568 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200569 return OK;
Bram Moolenaar198cb662018-09-06 21:44:17 +0200570 }
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200571 if (patlen == 0 && ccline.cmdbuff[skiplen] == NUL)
Bram Moolenaar198cb662018-09-06 21:44:17 +0200572 {
573 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200574 return FAIL;
Bram Moolenaar198cb662018-09-06 21:44:17 +0200575 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200576
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200577 if (firstc == ccline.cmdbuff[skiplen])
Bram Moolenaaref73a282018-08-11 19:02:22 +0200578 {
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200579 pat = last_search_pattern();
Bram Moolenaaref73a282018-08-11 19:02:22 +0200580 skiplen = 0;
Bram Moolenaard7cc1632018-08-14 20:18:26 +0200581 patlen = (int)STRLEN(pat);
Bram Moolenaaref73a282018-08-11 19:02:22 +0200582 }
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200583 else
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200584 pat = ccline.cmdbuff + skiplen;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200585
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200586 cursor_off();
587 out_flush();
588 if (c == Ctrl_G)
589 {
590 t = is_state->match_end;
591 if (LT_POS(is_state->match_start, is_state->match_end))
592 // Start searching at the end of the match not at the beginning of
593 // the next column.
594 (void)decl(&t);
595 search_flags += SEARCH_COL;
596 }
597 else
598 t = is_state->match_start;
599 if (!p_hls)
600 search_flags += SEARCH_KEEP;
601 ++emsg_off;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200602 save = pat[patlen];
603 pat[patlen] = NUL;
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100604 i = searchit(curwin, curbuf, &t, NULL,
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200605 c == Ctrl_G ? FORWARD : BACKWARD,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200606 pat, count, search_flags, RE_SEARCH, NULL);
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200607 --emsg_off;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200608 pat[patlen] = save;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200609 if (i)
610 {
611 is_state->search_start = is_state->match_start;
612 is_state->match_end = t;
613 is_state->match_start = t;
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200614 if (c == Ctrl_T && firstc != '?')
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200615 {
616 // Move just before the current match, so that when nv_search
617 // finishes the cursor will be put back on the match.
618 is_state->search_start = t;
619 (void)decl(&is_state->search_start);
620 }
621 else if (c == Ctrl_G && firstc == '?')
622 {
623 // Move just after the current match, so that when nv_search
624 // finishes the cursor will be put back on the match.
625 is_state->search_start = t;
626 (void)incl(&is_state->search_start);
627 }
628 if (LT_POS(t, is_state->search_start) && c == Ctrl_G)
629 {
630 // wrap around
631 is_state->search_start = t;
632 if (firstc == '?')
633 (void)incl(&is_state->search_start);
634 else
635 (void)decl(&is_state->search_start);
636 }
637
638 set_search_match(&is_state->match_end);
639 curwin->w_cursor = is_state->match_start;
640 changed_cline_bef_curs();
641 update_topline();
642 validate_cursor();
643 highlight_match = TRUE;
644 save_viewstate(&is_state->old_viewstate);
645 update_screen(NOT_VALID);
Bram Moolenaar7ab5d772019-10-26 20:45:24 +0200646 highlight_match = FALSE;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200647 redrawcmdline();
Bram Moolenaar69a5b862019-07-16 21:38:51 +0200648 curwin->w_cursor = is_state->match_end;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200649 }
650 else
651 vim_beep(BO_ERROR);
652 restore_last_search_pattern();
653 return FAIL;
654}
655
656/*
657 * When CTRL-L typed: add character from the match to the pattern.
658 * May set "*c" to the added character.
659 * Return OK when jumping to cmdline_not_changed.
660 */
661 static int
662may_add_char_to_search(int firstc, int *c, incsearch_state_T *is_state)
663{
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200664 int skiplen, patlen;
665
Bram Moolenaar198cb662018-09-06 21:44:17 +0200666 // Parsing range may already set the last search pattern.
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100667 // NOTE: must call restore_last_search_pattern() before returning!
Bram Moolenaar198cb662018-09-06 21:44:17 +0200668 save_last_search_pattern();
669
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200670 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen))
Bram Moolenaar198cb662018-09-06 21:44:17 +0200671 {
672 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200673 return FAIL;
Bram Moolenaar198cb662018-09-06 21:44:17 +0200674 }
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100675 restore_last_search_pattern();
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200676
677 // Add a character from under the cursor for 'incsearch'.
678 if (is_state->did_incsearch)
679 {
680 curwin->w_cursor = is_state->match_end;
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200681 *c = gchar_cursor();
682 if (*c != NUL)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200683 {
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200684 // If 'ignorecase' and 'smartcase' are set and the
685 // command line has no uppercase characters, convert
686 // the character to lowercase.
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200687 if (p_ic && p_scs && !pat_has_uppercase(ccline.cmdbuff + skiplen))
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200688 *c = MB_TOLOWER(*c);
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200689 if (*c == firstc || vim_strchr((char_u *)(
690 p_magic ? "\\~^$.*[" : "\\^$"), *c) != NULL)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200691 {
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200692 // put a backslash before special characters
693 stuffcharReadbuff(*c);
694 *c = '\\';
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200695 }
Bram Moolenaar730f48f2019-04-11 13:45:57 +0200696 // add any composing characters
697 if (mb_char2len(*c) != mb_ptr2len(ml_get_cursor()))
698 {
699 int save_c = *c;
700
701 while (mb_char2len(*c) != mb_ptr2len(ml_get_cursor()))
702 {
703 curwin->w_cursor.col += mb_char2len(*c);
704 *c = gchar_cursor();
705 stuffcharReadbuff(*c);
706 }
707 *c = save_c;
708 }
709 return FAIL;
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200710 }
711 }
712 return OK;
713}
Bram Moolenaar9b25af32018-04-28 13:56:09 +0200714#endif
715
Bram Moolenaar693f7dc2019-06-21 02:30:38 +0200716#ifdef FEAT_ARABIC
717/*
718 * Return TRUE if the command line has an Arabic character at or after "start"
719 * for "len" bytes.
720 */
721 static int
722cmdline_has_arabic(int start, int len)
723{
724 int j;
725 int mb_l;
726 int u8c;
727 char_u *p;
728 int u8cc[MAX_MCO];
729
730 if (!enc_utf8)
731 return FALSE;
732
733 for (j = start; j < start + len; j += mb_l)
734 {
735 p = ccline.cmdbuff + j;
736 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
737 mb_l = utfc_ptr2len_len(p, start + len - j);
738 if (ARABIC_CHAR(u8c))
739 return TRUE;
740 }
741 return FALSE;
742}
743#endif
744
Bram Moolenaard3dc0622018-09-30 17:45:30 +0200745 void
746cmdline_init(void)
747{
Bram Moolenaar66b51422019-08-18 21:44:12 +0200748 vim_memset(&ccline, 0, sizeof(cmdline_info_T));
Bram Moolenaard3dc0622018-09-30 17:45:30 +0200749}
750
Bram Moolenaar66216052017-12-16 16:33:44 +0100751/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 * getcmdline() - accept a command line starting with firstc.
753 *
754 * firstc == ':' get ":" command line.
755 * firstc == '/' or '?' get search pattern
756 * firstc == '=' get expression
757 * firstc == '@' get text for input() function
758 * firstc == '>' get text for debug mode
759 * firstc == NUL get text for :insert command
760 * firstc == -1 like NUL, and break on CTRL-C
761 *
762 * The line is collected in ccline.cmdbuff, which is reallocated to fit the
763 * command line.
764 *
765 * Careful: getcmdline() can be called recursively!
766 *
767 * Return pointer to allocated string if there is a commandline, NULL
768 * otherwise.
769 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100771getcmdline(
772 int firstc,
Bram Moolenaar438d1762018-09-30 17:11:48 +0200773 long count, // only used for incremental search
Bram Moolenaare96a2492019-06-25 04:12:16 +0200774 int indent, // indent for inside conditionals
775 int do_concat UNUSED)
Bram Moolenaar438d1762018-09-30 17:11:48 +0200776{
777 return getcmdline_int(firstc, count, indent, TRUE);
778}
779
780 static char_u *
781getcmdline_int(
782 int firstc,
783 long count UNUSED, // only used for incremental search
784 int indent, // indent for inside conditionals
785 int init_ccline) // clear ccline first
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786{
787 int c;
788 int i;
789 int j;
790 int gotesc = FALSE; /* TRUE when <ESC> just typed */
791 int do_abbr; /* when TRUE check for abbr. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 char_u *lookfor = NULL; /* string to match */
793 int hiscnt; /* current history line in use */
794 int histype; /* history type to be used */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200796 incsearch_state_T is_state;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797#endif
798 int did_wild_list = FALSE; /* did wild_list() recently */
799 int wim_index = 0; /* index in wim_flags[] */
800 int res;
801 int save_msg_scroll = msg_scroll;
802 int save_State = State; /* remember State when called */
803 int some_key_typed = FALSE; /* one of the keys was typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804 /* mouse drag and release events are ignored, unless they are
805 * preceded with a mouse down event */
806 int ignore_drag_release = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807#ifdef FEAT_EVAL
808 int break_ctrl_c = FALSE;
809#endif
810 expand_T xpc;
811 long *b_im_ptr = NULL;
Bram Moolenaar66b51422019-08-18 21:44:12 +0200812 cmdline_info_T save_ccline;
Bram Moolenaar438d1762018-09-30 17:11:48 +0200813 int did_save_ccline = FALSE;
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200814 int cmdline_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815
Bram Moolenaar438d1762018-09-30 17:11:48 +0200816 if (ccline.cmdbuff != NULL)
817 {
818 // Being called recursively. Since ccline is global, we need to save
819 // the current buffer and restore it when returning.
820 save_cmdline(&save_ccline);
821 did_save_ccline = TRUE;
822 }
823 if (init_ccline)
Bram Moolenaar66b51422019-08-18 21:44:12 +0200824 vim_memset(&ccline, 0, sizeof(cmdline_info_T));
Bram Moolenaar438d1762018-09-30 17:11:48 +0200825
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826#ifdef FEAT_EVAL
827 if (firstc == -1)
828 {
829 firstc = NUL;
830 break_ctrl_c = TRUE;
831 }
832#endif
833#ifdef FEAT_RIGHTLEFT
834 /* start without Hebrew mapping for a command line */
835 if (firstc == ':' || firstc == '=' || firstc == '>')
836 cmd_hkmap = 0;
837#endif
838
839 ccline.overstrike = FALSE; /* always start in insert mode */
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200840
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +0200842 init_incsearch_state(&is_state);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843#endif
844
845 /*
846 * set some variables for redrawcmd()
847 */
848 ccline.cmdfirstc = (firstc == '@' ? 0 : firstc);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000849 ccline.cmdindent = (firstc > 0 ? indent : 0);
850
851 /* alloc initial ccline.cmdbuff */
852 alloc_cmdbuff(exmode_active ? 250 : indent + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 if (ccline.cmdbuff == NULL)
Bram Moolenaar438d1762018-09-30 17:11:48 +0200854 goto theend; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855 ccline.cmdlen = ccline.cmdpos = 0;
856 ccline.cmdbuff[0] = NUL;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +0100857 sb_text_start_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000859 /* autoindent for :insert and :append */
860 if (firstc <= 0)
861 {
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200862 vim_memset(ccline.cmdbuff, ' ', indent);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000863 ccline.cmdbuff[indent] = NUL;
864 ccline.cmdpos = indent;
865 ccline.cmdspos = indent;
866 ccline.cmdlen = indent;
867 }
868
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869 ExpandInit(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000870 ccline.xpc = &xpc;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871
872#ifdef FEAT_RIGHTLEFT
873 if (curwin->w_p_rl && *curwin->w_p_rlc == 's'
874 && (firstc == '/' || firstc == '?'))
875 cmdmsg_rl = TRUE;
876 else
877 cmdmsg_rl = FALSE;
878#endif
879
880 redir_off = TRUE; /* don't redirect the typed command */
881 if (!cmd_silent)
882 {
883 i = msg_scrolled;
884 msg_scrolled = 0; /* avoid wait_return message */
885 gotocmdline(TRUE);
886 msg_scrolled += i;
887 redrawcmdprompt(); /* draw prompt or indent */
888 set_cmdspos();
889 }
890 xpc.xp_context = EXPAND_NOTHING;
891 xpc.xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000892#ifndef BACKSLASH_IN_FILENAME
893 xpc.xp_shell = FALSE;
894#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000896#if defined(FEAT_EVAL)
897 if (ccline.input_fn)
898 {
899 xpc.xp_context = ccline.xp_context;
900 xpc.xp_pattern = ccline.cmdbuff;
901 xpc.xp_arg = ccline.xp_arg;
902 }
903#endif
904
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 /*
906 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when
907 * doing ":@0" when register 0 doesn't contain a CR.
908 */
909 msg_scroll = FALSE;
910
911 State = CMDLINE;
912
913 if (firstc == '/' || firstc == '?' || firstc == '@')
914 {
915 /* Use ":lmap" mappings for search pattern and input(). */
916 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT)
917 b_im_ptr = &curbuf->b_p_iminsert;
918 else
919 b_im_ptr = &curbuf->b_p_imsearch;
920 if (*b_im_ptr == B_IMODE_LMAP)
921 State |= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100922#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923 im_set_active(*b_im_ptr == B_IMODE_IM);
924#endif
925 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100926#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 else if (p_imcmdline)
928 im_set_active(TRUE);
929#endif
930
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932#ifdef CURSOR_SHAPE
933 ui_cursor_shape(); /* may show different cursor shape */
934#endif
935
Bram Moolenaarf4d11452005-12-02 00:46:37 +0000936 /* When inside an autocommand for writing "exiting" may be set and
937 * terminal mode set to cooked. Need to set raw mode here then. */
938 settmode(TMODE_RAW);
939
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200940 /* Trigger CmdlineEnter autocommands. */
941 cmdline_type = firstc == NUL ? '-' : firstc;
942 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINEENTER);
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200943
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 init_history();
Bram Moolenaard7663c22019-08-06 21:59:57 +0200945 hiscnt = get_hislen(); /* set hiscnt to impossible history value */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 histype = hist_char2type(firstc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947
948#ifdef FEAT_DIGRAPHS
Bram Moolenaar3c65e312009-04-29 16:47:23 +0000949 do_digraph(-1); /* init digraph typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950#endif
951
Bram Moolenaar15a35c42014-06-25 12:26:46 +0200952 /* If something above caused an error, reset the flags, we do want to type
953 * and execute commands. Display may be messed up a bit. */
954 if (did_emsg)
955 redrawcmd();
956 did_emsg = FALSE;
957 got_int = FALSE;
958
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 /*
960 * Collect the command string, handling editing keys.
961 */
962 for (;;)
963 {
Bram Moolenaar29b2d262006-09-10 19:07:28 +0000964 redir_off = TRUE; /* Don't redirect the typed command.
965 Repeated, because a ":redir" inside
966 completion may switch it on. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967#ifdef USE_ON_FLY_SCROLL
968 dont_scroll = FALSE; /* allow scrolling here */
969#endif
970 quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */
971
Bram Moolenaar72532d32018-04-07 19:09:09 +0200972 did_emsg = FALSE; /* There can't really be a reason why an error
973 that occurs while typing a command should
974 cause the command not to be executed. */
975
Bram Moolenaar8aeec402019-09-15 23:02:04 +0200976 // Trigger SafeState if nothing is pending.
977 may_trigger_safestate(xpc.xp_numfiles <= 0);
978
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979 cursorcmd(); /* set the cursor on the right spot */
Bram Moolenaar30405d32008-01-02 20:55:27 +0000980
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +0100981 /* Get a character. Ignore K_IGNORE and K_NOP, they should not do
982 * anything, such as stop completion. */
Bram Moolenaar30405d32008-01-02 20:55:27 +0000983 do
Bram Moolenaar30405d32008-01-02 20:55:27 +0000984 c = safe_vgetc();
Bram Moolenaarabab0b02019-03-30 18:47:01 +0100985 while (c == K_IGNORE || c == K_NOP);
Bram Moolenaar30405d32008-01-02 20:55:27 +0000986
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 if (KeyTyped)
988 {
989 some_key_typed = TRUE;
990#ifdef FEAT_RIGHTLEFT
991 if (cmd_hkmap)
992 c = hkmap(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 if (cmdmsg_rl && !KeyStuffed)
994 {
995 /* Invert horizontal movements and operations. Only when
996 * typed by the user directly, not when the result of a
997 * mapping. */
998 switch (c)
999 {
1000 case K_RIGHT: c = K_LEFT; break;
1001 case K_S_RIGHT: c = K_S_LEFT; break;
1002 case K_C_RIGHT: c = K_C_LEFT; break;
1003 case K_LEFT: c = K_RIGHT; break;
1004 case K_S_LEFT: c = K_S_RIGHT; break;
1005 case K_C_LEFT: c = K_C_RIGHT; break;
1006 }
1007 }
1008#endif
1009 }
1010
1011 /*
1012 * Ignore got_int when CTRL-C was typed here.
1013 * Don't ignore it in :global, we really need to break then, e.g., for
1014 * ":g/pat/normal /pat" (without the <CR>).
1015 * Don't ignore it for the input() function.
1016 */
1017 if ((c == Ctrl_C
1018#ifdef UNIX
1019 || c == intr_char
1020#endif
1021 )
1022#if defined(FEAT_EVAL) || defined(FEAT_CRYPT)
1023 && firstc != '@'
1024#endif
1025#ifdef FEAT_EVAL
1026 && !break_ctrl_c
1027#endif
1028 && !global_busy)
1029 got_int = FALSE;
1030
Bram Moolenaard7663c22019-08-06 21:59:57 +02001031 // free old command line when finished moving around in the history
1032 // list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033 if (lookfor != NULL
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001034 && c != K_S_DOWN && c != K_S_UP
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001035 && c != K_DOWN && c != K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 && c != K_PAGEDOWN && c != K_PAGEUP
1037 && c != K_KPAGEDOWN && c != K_KPAGEUP
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001038 && c != K_LEFT && c != K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N)))
Bram Moolenaard23a8232018-02-10 18:45:26 +01001040 VIM_CLEAR(lookfor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041
1042 /*
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001043 * When there are matching completions to select <S-Tab> works like
1044 * CTRL-P (unless 'wc' is <S-Tab>).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 */
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001046 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 c = Ctrl_P;
1048
1049#ifdef FEAT_WILDMENU
1050 /* Special translations for 'wildmenu' */
1051 if (did_wild_list && p_wmnu)
1052 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001053 if (c == K_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054 c = Ctrl_P;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001055 else if (c == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 c = Ctrl_N;
1057 }
1058 /* Hitting CR after "emenu Name.": complete submenu */
1059 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu
1060 && ccline.cmdpos > 1
1061 && ccline.cmdbuff[ccline.cmdpos - 1] == '.'
1062 && ccline.cmdbuff[ccline.cmdpos - 2] != '\\'
1063 && (c == '\n' || c == '\r' || c == K_KENTER))
1064 c = K_DOWN;
1065#endif
1066
1067 /* free expanded names when finished walking through matches */
1068 if (xpc.xp_numfiles != -1
1069 && !(c == p_wc && KeyTyped) && c != p_wcm
1070 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A
1071 && c != Ctrl_L)
1072 {
1073 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
1074 did_wild_list = FALSE;
1075#ifdef FEAT_WILDMENU
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001076 if (!p_wmnu || (c != K_UP && c != K_DOWN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077#endif
1078 xpc.xp_context = EXPAND_NOTHING;
1079 wim_index = 0;
1080#ifdef FEAT_WILDMENU
1081 if (p_wmnu && wild_menu_showing != 0)
1082 {
1083 int skt = KeyTyped;
Bram Moolenaar1e015462005-09-25 22:16:38 +00001084 int old_RedrawingDisabled = RedrawingDisabled;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001085
1086 if (ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001087 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088
1089 if (wild_menu_showing == WM_SCROLLED)
1090 {
1091 /* Entered command line, move it up */
1092 cmdline_row--;
1093 redrawcmd();
1094 }
1095 else if (save_p_ls != -1)
1096 {
1097 /* restore 'laststatus' and 'winminheight' */
1098 p_ls = save_p_ls;
1099 p_wmh = save_p_wmh;
1100 last_status(FALSE);
1101 update_screen(VALID); /* redraw the screen NOW */
1102 redrawcmd();
1103 save_p_ls = -1;
1104 }
1105 else
1106 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107 win_redraw_last_status(topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 redraw_statuslines();
1109 }
1110 KeyTyped = skt;
1111 wild_menu_showing = 0;
Bram Moolenaar1e015462005-09-25 22:16:38 +00001112 if (ccline.input_fn)
1113 RedrawingDisabled = old_RedrawingDisabled;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 }
1115#endif
1116 }
1117
1118#ifdef FEAT_WILDMENU
1119 /* Special translations for 'wildmenu' */
1120 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu)
1121 {
1122 /* Hitting <Down> after "emenu Name.": complete submenu */
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +00001123 if (c == K_DOWN && ccline.cmdpos > 0
1124 && ccline.cmdbuff[ccline.cmdpos - 1] == '.')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125 c = p_wc;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001126 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127 {
1128 /* Hitting <Up>: Remove one submenu name in front of the
1129 * cursor */
1130 int found = FALSE;
1131
1132 j = (int)(xpc.xp_pattern - ccline.cmdbuff);
1133 i = 0;
1134 while (--j > 0)
1135 {
1136 /* check for start of menu name */
1137 if (ccline.cmdbuff[j] == ' '
1138 && ccline.cmdbuff[j - 1] != '\\')
1139 {
1140 i = j + 1;
1141 break;
1142 }
1143 /* check for start of submenu name */
1144 if (ccline.cmdbuff[j] == '.'
1145 && ccline.cmdbuff[j - 1] != '\\')
1146 {
1147 if (found)
1148 {
1149 i = j + 1;
1150 break;
1151 }
1152 else
1153 found = TRUE;
1154 }
1155 }
1156 if (i > 0)
1157 cmdline_del(i);
1158 c = p_wc;
1159 xpc.xp_context = EXPAND_NOTHING;
1160 }
1161 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001162 if ((xpc.xp_context == EXPAND_FILES
Bram Moolenaar446cb832008-06-24 21:56:24 +00001163 || xpc.xp_context == EXPAND_DIRECTORIES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001164 || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 {
1166 char_u upseg[5];
1167
1168 upseg[0] = PATHSEP;
1169 upseg[1] = '.';
1170 upseg[2] = '.';
1171 upseg[3] = PATHSEP;
1172 upseg[4] = NUL;
1173
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +00001174 if (c == K_DOWN
1175 && ccline.cmdpos > 0
1176 && ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP
1177 && (ccline.cmdpos < 3
1178 || ccline.cmdbuff[ccline.cmdpos - 2] != '.'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 || ccline.cmdbuff[ccline.cmdpos - 3] != '.'))
1180 {
1181 /* go down a directory */
1182 c = p_wc;
1183 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001184 else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 {
1186 /* If in a direct ancestor, strip off one ../ to go down */
1187 int found = FALSE;
1188
1189 j = ccline.cmdpos;
1190 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
1191 while (--j > i)
1192 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001193 if (has_mbyte)
1194 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 if (vim_ispathsep(ccline.cmdbuff[j]))
1196 {
1197 found = TRUE;
1198 break;
1199 }
1200 }
1201 if (found
1202 && ccline.cmdbuff[j - 1] == '.'
1203 && ccline.cmdbuff[j - 2] == '.'
1204 && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2))
1205 {
1206 cmdline_del(j - 2);
1207 c = p_wc;
1208 }
1209 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001210 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 {
1212 /* go up a directory */
1213 int found = FALSE;
1214
1215 j = ccline.cmdpos - 1;
1216 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
1217 while (--j > i)
1218 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 if (has_mbyte)
1220 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 if (vim_ispathsep(ccline.cmdbuff[j])
1222#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001223 && vim_strchr((char_u *)" *?[{`$%#",
1224 ccline.cmdbuff[j + 1]) == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225#endif
1226 )
1227 {
1228 if (found)
1229 {
1230 i = j + 1;
1231 break;
1232 }
1233 else
1234 found = TRUE;
1235 }
1236 }
1237
1238 if (!found)
1239 j = i;
1240 else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0)
1241 j += 4;
1242 else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0
1243 && j == i)
1244 j += 3;
1245 else
1246 j = 0;
1247 if (j > 0)
1248 {
1249 /* TODO this is only for DOS/UNIX systems - need to put in
1250 * machine-specific stuff here and in upseg init */
1251 cmdline_del(j);
1252 put_on_cmdline(upseg + 1, 3, FALSE);
1253 }
1254 else if (ccline.cmdpos > i)
1255 cmdline_del(i);
Bram Moolenaar96a89642011-12-08 18:44:51 +01001256
1257 /* Now complete in the new directory. Set KeyTyped in case the
1258 * Up key came from a mapping. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 c = p_wc;
Bram Moolenaar96a89642011-12-08 18:44:51 +01001260 KeyTyped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 }
1262 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263
1264#endif /* FEAT_WILDMENU */
1265
1266 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert
1267 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */
1268 if (c == Ctrl_BSL)
1269 {
1270 ++no_mapping;
1271 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001272 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 --no_mapping;
1274 --allow_keys;
Bram Moolenaarb7356812012-10-11 04:04:37 +02001275 /* CTRL-\ e doesn't work when obtaining an expression, unless it
1276 * is in a mapping. */
1277 if (c != Ctrl_N && c != Ctrl_G && (c != 'e'
Bram Moolenaar31cbadf2018-09-25 20:48:57 +02001278 || (ccline.cmdfirstc == '=' && KeyTyped)
1279#ifdef FEAT_EVAL
Bram Moolenaaree91c332018-09-25 22:27:35 +02001280 || cmdline_star > 0
Bram Moolenaar31cbadf2018-09-25 20:48:57 +02001281#endif
1282 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 {
1284 vungetc(c);
1285 c = Ctrl_BSL;
1286 }
1287#ifdef FEAT_EVAL
1288 else if (c == 'e')
1289 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +02001290 char_u *p = NULL;
1291 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292
1293 /*
1294 * Replace the command line with the result of an expression.
Bram Moolenaar4770d092006-01-12 23:22:24 +00001295 * Need to save and restore the current command line, to be
1296 * able to enter a new one...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 */
1298 if (ccline.cmdpos == ccline.cmdlen)
1299 new_cmdpos = 99999; /* keep it at the end */
1300 else
1301 new_cmdpos = ccline.cmdpos;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001302
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 c = get_expr_register();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 if (c == '=')
1305 {
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001306 /* Need to save and restore ccline. And set "textlock"
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001307 * to avoid nasty things like going to another buffer when
1308 * evaluating an expression. */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001309 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 p = get_expr_line();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001311 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001312
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001313 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 {
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001315 len = (int)STRLEN(p);
1316 if (realloc_cmdbuff(len + 1) == OK)
1317 {
1318 ccline.cmdlen = len;
1319 STRCPY(ccline.cmdbuff, p);
1320 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001322 /* Restore the cursor or use the position set with
1323 * set_cmdline_pos(). */
1324 if (new_cmdpos > ccline.cmdlen)
1325 ccline.cmdpos = ccline.cmdlen;
1326 else
1327 ccline.cmdpos = new_cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +02001329 KeyTyped = FALSE; /* Don't do p_wc completion. */
1330 redrawcmd();
1331 goto cmdline_changed;
1332 }
Bram Moolenaar4e303c82018-11-24 14:27:44 +01001333 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 }
1335 }
1336 beep_flush();
Bram Moolenaar66b4bf82010-11-16 14:06:08 +01001337 got_int = FALSE; /* don't abandon the command line */
1338 did_emsg = FALSE;
1339 emsg_on_display = FALSE;
1340 redrawcmd();
1341 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342 }
1343#endif
1344 else
1345 {
1346 if (c == Ctrl_G && p_im && restart_edit == 0)
1347 restart_edit = 'a';
1348 gotesc = TRUE; /* will free ccline.cmdbuff after putting it
1349 in history */
1350 goto returncmd; /* back to Normal mode */
1351 }
1352 }
1353
1354#ifdef FEAT_CMDWIN
1355 if (c == cedit_key || c == K_CMDWIN)
1356 {
Bram Moolenaar58da7072014-09-09 18:45:49 +02001357 if (ex_normal_busy == 0 && got_int == FALSE)
1358 {
1359 /*
1360 * Open a window to edit the command line (and history).
1361 */
Bram Moolenaar3bab9392017-04-07 15:42:25 +02001362 c = open_cmdwin();
Bram Moolenaar58da7072014-09-09 18:45:49 +02001363 some_key_typed = TRUE;
1364 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 }
1366# ifdef FEAT_DIGRAPHS
1367 else
1368# endif
1369#endif
1370#ifdef FEAT_DIGRAPHS
1371 c = do_digraph(c);
1372#endif
1373
1374 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC
1375 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL)))
1376 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001377 /* In Ex mode a backslash escapes a newline. */
1378 if (exmode_active
1379 && c != ESC
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001380 && ccline.cmdpos == ccline.cmdlen
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +00001381 && ccline.cmdpos > 0
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001382 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001384 if (c == K_KENTER)
1385 c = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001387 else
1388 {
1389 gotesc = FALSE; /* Might have typed ESC previously, don't
1390 truncate the cmdline now. */
1391 if (ccheck_abbr(c + ABBR_OFF))
1392 goto cmdline_changed;
1393 if (!cmd_silent)
1394 {
1395 windgoto(msg_row, 0);
1396 out_flush();
1397 }
1398 break;
1399 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 }
1401
1402 /*
1403 * Completion for 'wildchar' or 'wildcharm' key.
1404 * - hitting <ESC> twice means: abandon command line.
1405 * - wildcard expansion is only done when the 'wildchar' key is really
1406 * typed, not when it comes from a macro
1407 */
1408 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm)
1409 {
1410 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */
1411 {
1412 /* if 'wildmode' contains "list" may still need to list */
1413 if (xpc.xp_numfiles > 1
1414 && !did_wild_list
1415 && (wim_flags[wim_index] & WIM_LIST))
1416 {
1417 (void)showmatches(&xpc, FALSE);
1418 redrawcmd();
1419 did_wild_list = TRUE;
1420 }
1421 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001422 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
1423 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001425 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
1426 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427 else
1428 res = OK; /* don't insert 'wildchar' now */
1429 }
1430 else /* typed p_wc first time */
1431 {
1432 wim_index = 0;
1433 j = ccline.cmdpos;
1434 /* if 'wildmode' first contains "longest", get longest
1435 * common part */
1436 if (wim_flags[0] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001437 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
1438 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 else
Bram Moolenaarb3479632012-11-28 16:49:58 +01001440 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP,
1441 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442
1443 /* if interrupted while completing, behave like it failed */
1444 if (got_int)
1445 {
1446 (void)vpeekc(); /* remove <C-C> from input stream */
1447 got_int = FALSE; /* don't abandon the command line */
1448 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
1449#ifdef FEAT_WILDMENU
1450 xpc.xp_context = EXPAND_NOTHING;
1451#endif
1452 goto cmdline_changed;
1453 }
1454
1455 /* when more than one match, and 'wildmode' first contains
1456 * "list", or no change and 'wildmode' contains "longest,list",
1457 * list all matches */
1458 if (res == OK && xpc.xp_numfiles > 1)
1459 {
1460 /* a "longest" that didn't do anything is skipped (but not
1461 * "list:longest") */
1462 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j)
1463 wim_index = 1;
1464 if ((wim_flags[wim_index] & WIM_LIST)
1465#ifdef FEAT_WILDMENU
1466 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0)
1467#endif
1468 )
1469 {
1470 if (!(wim_flags[0] & WIM_LONGEST))
1471 {
1472#ifdef FEAT_WILDMENU
1473 int p_wmnu_save = p_wmnu;
1474 p_wmnu = 0;
1475#endif
Bram Moolenaarb3479632012-11-28 16:49:58 +01001476 /* remove match */
1477 nextwild(&xpc, WILD_PREV, 0, firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001478#ifdef FEAT_WILDMENU
1479 p_wmnu = p_wmnu_save;
1480#endif
1481 }
1482#ifdef FEAT_WILDMENU
1483 (void)showmatches(&xpc, p_wmnu
1484 && ((wim_flags[wim_index] & WIM_LIST) == 0));
1485#else
1486 (void)showmatches(&xpc, FALSE);
1487#endif
1488 redrawcmd();
1489 did_wild_list = TRUE;
1490 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001491 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
1492 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +01001494 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
1495 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496 }
1497 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02001498 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499 }
1500#ifdef FEAT_WILDMENU
1501 else if (xpc.xp_numfiles == -1)
1502 xpc.xp_context = EXPAND_NOTHING;
1503#endif
1504 }
1505 if (wim_index < 3)
1506 ++wim_index;
1507 if (c == ESC)
1508 gotesc = TRUE;
1509 if (res == OK)
1510 goto cmdline_changed;
1511 }
1512
1513 gotesc = FALSE;
1514
1515 /* <S-Tab> goes to last match, in a clumsy way */
1516 if (c == K_S_TAB && KeyTyped)
1517 {
Bram Moolenaarb3479632012-11-28 16:49:58 +01001518 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0, firstc != '@') == OK
1519 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK
1520 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 goto cmdline_changed;
1522 }
1523
1524 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */
1525 c = NL;
1526
1527 do_abbr = TRUE; /* default: check for abbreviation */
1528
1529 /*
1530 * Big switch for a typed command line character.
1531 */
1532 switch (c)
1533 {
1534 case K_BS:
1535 case Ctrl_H:
1536 case K_DEL:
1537 case K_KDEL:
1538 case Ctrl_W:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539 if (c == K_KDEL)
1540 c = K_DEL;
1541
1542 /*
1543 * delete current character is the same as backspace on next
1544 * character, except at end of line
1545 */
1546 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen)
1547 ++ccline.cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 if (has_mbyte && c == K_DEL)
1549 ccline.cmdpos += mb_off_next(ccline.cmdbuff,
1550 ccline.cmdbuff + ccline.cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 if (ccline.cmdpos > 0)
1552 {
1553 char_u *p;
1554
1555 j = ccline.cmdpos;
1556 p = ccline.cmdbuff + j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557 if (has_mbyte)
1558 {
1559 p = mb_prevptr(ccline.cmdbuff, p);
1560 if (c == Ctrl_W)
1561 {
1562 while (p > ccline.cmdbuff && vim_isspace(*p))
1563 p = mb_prevptr(ccline.cmdbuff, p);
1564 i = mb_get_class(p);
1565 while (p > ccline.cmdbuff && mb_get_class(p) == i)
1566 p = mb_prevptr(ccline.cmdbuff, p);
1567 if (mb_get_class(p) != i)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001568 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 }
1570 }
Bram Moolenaar13505972019-01-24 15:04:48 +01001571 else if (c == Ctrl_W)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 {
1573 while (p > ccline.cmdbuff && vim_isspace(p[-1]))
1574 --p;
1575 i = vim_iswordc(p[-1]);
1576 while (p > ccline.cmdbuff && !vim_isspace(p[-1])
1577 && vim_iswordc(p[-1]) == i)
1578 --p;
1579 }
1580 else
1581 --p;
1582 ccline.cmdpos = (int)(p - ccline.cmdbuff);
1583 ccline.cmdlen -= j - ccline.cmdpos;
1584 i = ccline.cmdpos;
1585 while (i < ccline.cmdlen)
1586 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1587
1588 /* Truncate at the end, required for multi-byte chars. */
1589 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001590#ifdef FEAT_SEARCH_EXTRA
1591 if (ccline.cmdlen == 0)
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001592 {
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001593 is_state.search_start = is_state.save_cursor;
Bram Moolenaardda933d2016-09-03 21:04:58 +02001594 /* save view settings, so that the screen
1595 * won't be restored at the wrong position */
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001596 is_state.old_viewstate = is_state.init_viewstate;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001597 }
1598#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 redrawcmd();
1600 }
1601 else if (ccline.cmdlen == 0 && c != Ctrl_W
1602 && ccline.cmdprompt == NULL && indent == 0)
1603 {
1604 /* In ex and debug mode it doesn't make sense to return. */
1605 if (exmode_active
1606#ifdef FEAT_EVAL
1607 || ccline.cmdfirstc == '>'
1608#endif
1609 )
1610 goto cmdline_not_changed;
1611
Bram Moolenaard23a8232018-02-10 18:45:26 +01001612 VIM_CLEAR(ccline.cmdbuff); /* no commandline to return */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613 if (!cmd_silent)
1614 {
1615#ifdef FEAT_RIGHTLEFT
1616 if (cmdmsg_rl)
1617 msg_col = Columns;
1618 else
1619#endif
1620 msg_col = 0;
1621 msg_putchar(' '); /* delete ':' */
1622 }
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001623#ifdef FEAT_SEARCH_EXTRA
1624 if (ccline.cmdlen == 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001625 is_state.search_start = is_state.save_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001626#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627 redraw_cmdline = TRUE;
1628 goto returncmd; /* back to cmd mode */
1629 }
1630 goto cmdline_changed;
1631
1632 case K_INS:
1633 case K_KINS:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 ccline.overstrike = !ccline.overstrike;
1635#ifdef CURSOR_SHAPE
1636 ui_cursor_shape(); /* may show different cursor shape */
1637#endif
1638 goto cmdline_not_changed;
1639
1640 case Ctrl_HAT:
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00001641 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642 {
1643 /* ":lmap" mappings exists, toggle use of mappings. */
1644 State ^= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001645#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 im_set_active(FALSE); /* Disable input method */
1647#endif
1648 if (b_im_ptr != NULL)
1649 {
1650 if (State & LANGMAP)
1651 *b_im_ptr = B_IMODE_LMAP;
1652 else
1653 *b_im_ptr = B_IMODE_NONE;
1654 }
1655 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001656#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 else
1658 {
1659 /* There are no ":lmap" mappings, toggle IM. When
1660 * 'imdisable' is set don't try getting the status, it's
1661 * always off. */
1662 if ((p_imdisable && b_im_ptr != NULL)
1663 ? *b_im_ptr == B_IMODE_IM : im_get_status())
1664 {
1665 im_set_active(FALSE); /* Disable input method */
1666 if (b_im_ptr != NULL)
1667 *b_im_ptr = B_IMODE_NONE;
1668 }
1669 else
1670 {
1671 im_set_active(TRUE); /* Enable input method */
1672 if (b_im_ptr != NULL)
1673 *b_im_ptr = B_IMODE_IM;
1674 }
1675 }
1676#endif
1677 if (b_im_ptr != NULL)
1678 {
1679 if (b_im_ptr == &curbuf->b_p_iminsert)
1680 set_iminsert_global();
1681 else
1682 set_imsearch_global();
1683 }
1684#ifdef CURSOR_SHAPE
1685 ui_cursor_shape(); /* may show different cursor shape */
1686#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001687#if defined(FEAT_KEYMAP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688 /* Show/unshow value of 'keymap' in status lines later. */
1689 status_redraw_curbuf();
1690#endif
1691 goto cmdline_not_changed;
1692
1693/* case '@': only in very old vi */
1694 case Ctrl_U:
1695 /* delete all characters left of the cursor */
1696 j = ccline.cmdpos;
1697 ccline.cmdlen -= j;
1698 i = ccline.cmdpos = 0;
1699 while (i < ccline.cmdlen)
1700 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1701 /* Truncate at the end, required for multi-byte chars. */
1702 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001703#ifdef FEAT_SEARCH_EXTRA
1704 if (ccline.cmdlen == 0)
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02001705 is_state.search_start = is_state.save_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001706#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707 redrawcmd();
1708 goto cmdline_changed;
1709
1710#ifdef FEAT_CLIPBOARD
1711 case Ctrl_Y:
1712 /* Copy the modeless selection, if there is one. */
1713 if (clip_star.state != SELECT_CLEARED)
1714 {
1715 if (clip_star.state == SELECT_DONE)
1716 clip_copy_modeless_selection(TRUE);
1717 goto cmdline_not_changed;
1718 }
1719 break;
1720#endif
1721
1722 case ESC: /* get here if p_wc != ESC or when ESC typed twice */
1723 case Ctrl_C:
Bram Moolenaarf4d11452005-12-02 00:46:37 +00001724 /* In exmode it doesn't make sense to return. Except when
Bram Moolenaar7c626922005-02-07 22:01:03 +00001725 * ":normal" runs out of characters. */
1726 if (exmode_active
Bram Moolenaare2c38102016-01-31 14:55:40 +01001727 && (ex_normal_busy == 0 || typebuf.tb_len > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728 goto cmdline_not_changed;
1729
1730 gotesc = TRUE; /* will free ccline.cmdbuff after
1731 putting it in history */
1732 goto returncmd; /* back to cmd mode */
1733
1734 case Ctrl_R: /* insert register */
1735#ifdef USE_ON_FLY_SCROLL
1736 dont_scroll = TRUE; /* disallow scrolling here */
1737#endif
1738 putcmdline('"', TRUE);
1739 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001740 i = c = plain_vgetc(); /* CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 if (i == Ctrl_O)
1742 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */
1743 if (i == Ctrl_R)
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001744 c = plain_vgetc(); /* CTRL-R CTRL-R <char> */
Bram Moolenaara92522f2017-07-15 15:21:38 +02001745 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 --no_mapping;
1747#ifdef FEAT_EVAL
1748 /*
1749 * Insert the result of an expression.
1750 * Need to save the current command line, to be able to enter
1751 * a new one...
1752 */
1753 new_cmdpos = -1;
1754 if (c == '=')
1755 {
Bram Moolenaaree91c332018-09-25 22:27:35 +02001756 if (ccline.cmdfirstc == '=' // can't do this recursively
1757 || cmdline_star > 0) // or when typing a password
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 {
1759 beep_flush();
1760 c = ESC;
1761 }
1762 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 c = get_expr_register();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 }
1765#endif
1766 if (c != ESC) /* use ESC to cancel inserting register */
1767 {
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001768 cmdline_paste(c, i == Ctrl_R, FALSE);
Bram Moolenaaracf53452005-12-17 22:06:52 +00001769
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001770#ifdef FEAT_EVAL
Bram Moolenaaracf53452005-12-17 22:06:52 +00001771 /* When there was a serious error abort getting the
1772 * command line. */
1773 if (aborting())
1774 {
1775 gotesc = TRUE; /* will free ccline.cmdbuff after
1776 putting it in history */
1777 goto returncmd; /* back to cmd mode */
1778 }
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001779#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 KeyTyped = FALSE; /* Don't do p_wc completion. */
1781#ifdef FEAT_EVAL
1782 if (new_cmdpos >= 0)
1783 {
1784 /* set_cmdline_pos() was used */
1785 if (new_cmdpos > ccline.cmdlen)
1786 ccline.cmdpos = ccline.cmdlen;
1787 else
1788 ccline.cmdpos = new_cmdpos;
1789 }
1790#endif
1791 }
1792 redrawcmd();
1793 goto cmdline_changed;
1794
1795 case Ctrl_D:
1796 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING)
1797 break; /* Use ^D as normal char instead */
1798
1799 redrawcmd();
1800 continue; /* don't do incremental search now */
1801
1802 case K_RIGHT:
1803 case K_S_RIGHT:
1804 case K_C_RIGHT:
1805 do
1806 {
1807 if (ccline.cmdpos >= ccline.cmdlen)
1808 break;
1809 i = cmdline_charsize(ccline.cmdpos);
1810 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows)
1811 break;
1812 ccline.cmdspos += i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001814 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 + ccline.cmdpos);
1816 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 ++ccline.cmdpos;
1818 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001819 while ((c == K_S_RIGHT || c == K_C_RIGHT
1820 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 && ccline.cmdbuff[ccline.cmdpos] != ' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 if (has_mbyte)
1823 set_cmdspos_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824 goto cmdline_not_changed;
1825
1826 case K_LEFT:
1827 case K_S_LEFT:
1828 case K_C_LEFT:
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001829 if (ccline.cmdpos == 0)
1830 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 do
1832 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 --ccline.cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 if (has_mbyte) /* move to first byte of char */
1835 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff,
1836 ccline.cmdbuff + ccline.cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos);
1838 }
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001839 while (ccline.cmdpos > 0
1840 && (c == K_S_LEFT || c == K_C_LEFT
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001841 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 && ccline.cmdbuff[ccline.cmdpos - 1] != ' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 if (has_mbyte)
1844 set_cmdspos_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 goto cmdline_not_changed;
1846
1847 case K_IGNORE:
Bram Moolenaar3bab9392017-04-07 15:42:25 +02001848 /* Ignore mouse event or open_cmdwin() result. */
Bram Moolenaar30405d32008-01-02 20:55:27 +00001849 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850
Bram Moolenaar4f974752019-02-17 17:44:42 +01001851#ifdef FEAT_GUI_MSWIN
1852 /* On MS-Windows ignore <M-F4>, we get it when closing the window
1853 * was cancelled. */
Bram Moolenaar4770d092006-01-12 23:22:24 +00001854 case K_F4:
1855 if (mod_mask == MOD_MASK_ALT)
1856 {
1857 redrawcmd(); /* somehow the cmdline is cleared */
1858 goto cmdline_not_changed;
1859 }
1860 break;
1861#endif
1862
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 case K_MIDDLEDRAG:
1864 case K_MIDDLERELEASE:
1865 goto cmdline_not_changed; /* Ignore mouse */
1866
1867 case K_MIDDLEMOUSE:
1868# ifdef FEAT_GUI
1869 /* When GUI is active, also paste when 'mouse' is empty */
1870 if (!gui.in_use)
1871# endif
1872 if (!mouse_has(MOUSE_COMMAND))
1873 goto cmdline_not_changed; /* Ignore mouse */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001874# ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 if (clip_star.available)
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001876 cmdline_paste('*', TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 else
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001878# endif
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001879 cmdline_paste(0, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 redrawcmd();
1881 goto cmdline_changed;
1882
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001883# ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 case K_DROP:
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001885 cmdline_paste('~', TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 redrawcmd();
1887 goto cmdline_changed;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001888# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889
1890 case K_LEFTDRAG:
1891 case K_LEFTRELEASE:
1892 case K_RIGHTDRAG:
1893 case K_RIGHTRELEASE:
1894 /* Ignore drag and release events when the button-down wasn't
1895 * seen before. */
1896 if (ignore_drag_release)
1897 goto cmdline_not_changed;
1898 /* FALLTHROUGH */
1899 case K_LEFTMOUSE:
1900 case K_RIGHTMOUSE:
1901 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE)
1902 ignore_drag_release = TRUE;
1903 else
1904 ignore_drag_release = FALSE;
1905# ifdef FEAT_GUI
1906 /* When GUI is active, also move when 'mouse' is empty */
1907 if (!gui.in_use)
1908# endif
1909 if (!mouse_has(MOUSE_COMMAND))
1910 goto cmdline_not_changed; /* Ignore mouse */
1911# ifdef FEAT_CLIPBOARD
1912 if (mouse_row < cmdline_row && clip_star.available)
1913 {
1914 int button, is_click, is_drag;
1915
1916 /*
1917 * Handle modeless selection.
1918 */
1919 button = get_mouse_button(KEY2TERMCAP1(c),
1920 &is_click, &is_drag);
1921 if (mouse_model_popup() && button == MOUSE_LEFT
1922 && (mod_mask & MOD_MASK_SHIFT))
1923 {
1924 /* Translate shift-left to right button. */
1925 button = MOUSE_RIGHT;
1926 mod_mask &= ~MOD_MASK_SHIFT;
1927 }
1928 clip_modeless(button, is_click, is_drag);
1929 goto cmdline_not_changed;
1930 }
1931# endif
1932
1933 set_cmdspos();
1934 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen;
1935 ++ccline.cmdpos)
1936 {
1937 i = cmdline_charsize(ccline.cmdpos);
1938 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns
1939 && mouse_col < ccline.cmdspos % Columns + i)
1940 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 if (has_mbyte)
1942 {
1943 /* Count ">" for double-wide char that doesn't fit. */
1944 correct_cmdspos(ccline.cmdpos, i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001945 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 + ccline.cmdpos) - 1;
1947 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948 ccline.cmdspos += i;
1949 }
1950 goto cmdline_not_changed;
1951
1952 /* Mouse scroll wheel: ignored here */
1953 case K_MOUSEDOWN:
1954 case K_MOUSEUP:
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001955 case K_MOUSELEFT:
1956 case K_MOUSERIGHT:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 /* Alternate buttons ignored here */
1958 case K_X1MOUSE:
1959 case K_X1DRAG:
1960 case K_X1RELEASE:
1961 case K_X2MOUSE:
1962 case K_X2DRAG:
1963 case K_X2RELEASE:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001964 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 goto cmdline_not_changed;
1966
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967#ifdef FEAT_GUI
1968 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */
1969 case K_LEFTRELEASE_NM:
1970 goto cmdline_not_changed;
1971
1972 case K_VER_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001973 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974 {
1975 gui_do_scroll();
1976 redrawcmd();
1977 }
1978 goto cmdline_not_changed;
1979
1980 case K_HOR_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001981 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001983 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 redrawcmd();
1985 }
1986 goto cmdline_not_changed;
1987#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001988#ifdef FEAT_GUI_TABLINE
1989 case K_TABLINE:
1990 case K_TABMENU:
1991 /* Don't want to change any tabs here. Make sure the same tab
1992 * is still selected. */
1993 if (gui_use_tabline())
1994 gui_mch_set_curtab(tabpage_index(curtab));
1995 goto cmdline_not_changed;
1996#endif
1997
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 case K_SELECT: /* end of Select mode mapping - ignore */
1999 goto cmdline_not_changed;
2000
2001 case Ctrl_B: /* begin of command line */
2002 case K_HOME:
2003 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 case K_S_HOME:
2005 case K_C_HOME:
2006 ccline.cmdpos = 0;
2007 set_cmdspos();
2008 goto cmdline_not_changed;
2009
2010 case Ctrl_E: /* end of command line */
2011 case K_END:
2012 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 case K_S_END:
2014 case K_C_END:
2015 ccline.cmdpos = ccline.cmdlen;
2016 set_cmdspos_cursor();
2017 goto cmdline_not_changed;
2018
2019 case Ctrl_A: /* all matches */
Bram Moolenaarb3479632012-11-28 16:49:58 +01002020 if (nextwild(&xpc, WILD_ALL, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 break;
2022 goto cmdline_changed;
2023
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002024 case Ctrl_L:
2025#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002026 if (may_add_char_to_search(firstc, &c, &is_state) == OK)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002027 goto cmdline_not_changed;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002028#endif
2029
2030 /* completion: longest common part */
Bram Moolenaarb3479632012-11-28 16:49:58 +01002031 if (nextwild(&xpc, WILD_LONGEST, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 break;
2033 goto cmdline_changed;
2034
2035 case Ctrl_N: /* next match */
2036 case Ctrl_P: /* previous match */
Bram Moolenaar7df0f632016-08-26 19:56:00 +02002037 if (xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 {
Bram Moolenaarb3479632012-11-28 16:49:58 +01002039 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT,
2040 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 break;
Bram Moolenaar11956692016-08-27 16:26:56 +02002042 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002044 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 case K_UP:
2046 case K_DOWN:
2047 case K_S_UP:
2048 case K_S_DOWN:
2049 case K_PAGEUP:
2050 case K_KPAGEUP:
2051 case K_PAGEDOWN:
2052 case K_KPAGEDOWN:
Bram Moolenaard7663c22019-08-06 21:59:57 +02002053 if (get_hislen() == 0 || firstc == NUL) /* no history */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 goto cmdline_not_changed;
2055
2056 i = hiscnt;
2057
2058 /* save current command string so it can be restored later */
2059 if (lookfor == NULL)
2060 {
2061 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL)
2062 goto cmdline_not_changed;
2063 lookfor[ccline.cmdpos] = NUL;
2064 }
2065
2066 j = (int)STRLEN(lookfor);
2067 for (;;)
2068 {
2069 /* one step backwards */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002070 if (c == K_UP|| c == K_S_UP || c == Ctrl_P
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002071 || c == K_PAGEUP || c == K_KPAGEUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 {
Bram Moolenaard7663c22019-08-06 21:59:57 +02002073 if (hiscnt == get_hislen()) /* first time */
2074 hiscnt = *get_hisidx(histype);
2075 else if (hiscnt == 0 && *get_hisidx(histype) != get_hislen() - 1)
2076 hiscnt = get_hislen() - 1;
2077 else if (hiscnt != *get_hisidx(histype) + 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 --hiscnt;
2079 else /* at top of list */
2080 {
2081 hiscnt = i;
2082 break;
2083 }
2084 }
2085 else /* one step forwards */
2086 {
2087 /* on last entry, clear the line */
Bram Moolenaard7663c22019-08-06 21:59:57 +02002088 if (hiscnt == *get_hisidx(histype))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089 {
Bram Moolenaard7663c22019-08-06 21:59:57 +02002090 hiscnt = get_hislen();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091 break;
2092 }
2093
2094 /* not on a history line, nothing to do */
Bram Moolenaard7663c22019-08-06 21:59:57 +02002095 if (hiscnt == get_hislen())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 break;
Bram Moolenaard7663c22019-08-06 21:59:57 +02002097 if (hiscnt == get_hislen() - 1) /* wrap around */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 hiscnt = 0;
2099 else
2100 ++hiscnt;
2101 }
Bram Moolenaard7663c22019-08-06 21:59:57 +02002102 if (hiscnt < 0 || get_histentry(histype)[hiscnt].hisstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 {
2104 hiscnt = i;
2105 break;
2106 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002107 if ((c != K_UP && c != K_DOWN)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002108 || hiscnt == i
Bram Moolenaard7663c22019-08-06 21:59:57 +02002109 || STRNCMP(get_histentry(histype)[hiscnt].hisstr,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110 lookfor, (size_t)j) == 0)
2111 break;
2112 }
2113
2114 if (hiscnt != i) /* jumped to other entry */
2115 {
2116 char_u *p;
2117 int len;
2118 int old_firstc;
2119
Bram Moolenaar438d1762018-09-30 17:11:48 +02002120 VIM_CLEAR(ccline.cmdbuff);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002121 xpc.xp_context = EXPAND_NOTHING;
Bram Moolenaard7663c22019-08-06 21:59:57 +02002122 if (hiscnt == get_hislen())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 p = lookfor; /* back to the old one */
2124 else
Bram Moolenaard7663c22019-08-06 21:59:57 +02002125 p = get_histentry(histype)[hiscnt].hisstr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126
2127 if (histype == HIST_SEARCH
2128 && p != lookfor
2129 && (old_firstc = p[STRLEN(p) + 1]) != firstc)
2130 {
2131 /* Correct for the separator character used when
2132 * adding the history entry vs the one used now.
2133 * First loop: count length.
2134 * Second loop: copy the characters. */
2135 for (i = 0; i <= 1; ++i)
2136 {
2137 len = 0;
2138 for (j = 0; p[j] != NUL; ++j)
2139 {
2140 /* Replace old sep with new sep, unless it is
2141 * escaped. */
2142 if (p[j] == old_firstc
2143 && (j == 0 || p[j - 1] != '\\'))
2144 {
2145 if (i > 0)
2146 ccline.cmdbuff[len] = firstc;
2147 }
2148 else
2149 {
2150 /* Escape new sep, unless it is already
2151 * escaped. */
2152 if (p[j] == firstc
2153 && (j == 0 || p[j - 1] != '\\'))
2154 {
2155 if (i > 0)
2156 ccline.cmdbuff[len] = '\\';
2157 ++len;
2158 }
2159 if (i > 0)
2160 ccline.cmdbuff[len] = p[j];
2161 }
2162 ++len;
2163 }
2164 if (i == 0)
2165 {
2166 alloc_cmdbuff(len);
2167 if (ccline.cmdbuff == NULL)
2168 goto returncmd;
2169 }
2170 }
2171 ccline.cmdbuff[len] = NUL;
2172 }
2173 else
2174 {
2175 alloc_cmdbuff((int)STRLEN(p));
2176 if (ccline.cmdbuff == NULL)
2177 goto returncmd;
2178 STRCPY(ccline.cmdbuff, p);
2179 }
2180
2181 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
2182 redrawcmd();
2183 goto cmdline_changed;
2184 }
2185 beep_flush();
Bram Moolenaar11956692016-08-27 16:26:56 +02002186 goto cmdline_not_changed;
2187
Bram Moolenaar349e7d92016-09-03 20:04:34 +02002188#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar11956692016-08-27 16:26:56 +02002189 case Ctrl_G: /* next match */
2190 case Ctrl_T: /* previous match */
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002191 if (may_adjust_incsearch_highlighting(
2192 firstc, count, &is_state, c) == FAIL)
Bram Moolenaar349e7d92016-09-03 20:04:34 +02002193 goto cmdline_not_changed;
Bram Moolenaar349e7d92016-09-03 20:04:34 +02002194 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195#endif
2196
2197 case Ctrl_V:
2198 case Ctrl_Q:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 ignore_drag_release = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 putcmdline('^', TRUE);
2201 c = get_literal(); /* get next (two) character(s) */
2202 do_abbr = FALSE; /* don't do abbreviation now */
Bram Moolenaara92522f2017-07-15 15:21:38 +02002203 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204 /* may need to remove ^ when composing char was typed */
2205 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent)
2206 {
2207 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2208 msg_putchar(' ');
2209 cursorcmd();
2210 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211 break;
2212
2213#ifdef FEAT_DIGRAPHS
2214 case Ctrl_K:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 ignore_drag_release = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 putcmdline('?', TRUE);
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002217# ifdef USE_ON_FLY_SCROLL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 dont_scroll = TRUE; /* disallow scrolling here */
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002219# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 c = get_digraph(TRUE);
Bram Moolenaara92522f2017-07-15 15:21:38 +02002221 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222 if (c != NUL)
2223 break;
2224
2225 redrawcmd();
2226 goto cmdline_not_changed;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002227#endif // FEAT_DIGRAPHS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228
2229#ifdef FEAT_RIGHTLEFT
2230 case Ctrl__: /* CTRL-_: switch language mode */
2231 if (!p_ari)
2232 break;
Bram Moolenaar14184a32019-02-16 15:10:30 +01002233 cmd_hkmap = !cmd_hkmap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 goto cmdline_not_changed;
2235#endif
2236
Bram Moolenaarabbc4482017-01-24 15:57:55 +01002237 case K_PS:
2238 bracketed_paste(PASTE_CMDLINE, FALSE, NULL);
2239 goto cmdline_changed;
2240
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 default:
2242#ifdef UNIX
2243 if (c == intr_char)
2244 {
2245 gotesc = TRUE; /* will free ccline.cmdbuff after
2246 putting it in history */
2247 goto returncmd; /* back to Normal mode */
2248 }
2249#endif
2250 /*
2251 * Normal character with no special meaning. Just set mod_mask
2252 * to 0x0 so that typing Shift-Space in the GUI doesn't enter
2253 * the string <S-Space>. This should only happen after ^V.
2254 */
2255 if (!IS_SPECIAL(c))
2256 mod_mask = 0x0;
2257 break;
2258 }
2259 /*
2260 * End of switch on command line character.
2261 * We come here if we have a normal character.
2262 */
2263
Bram Moolenaar13505972019-01-24 15:04:48 +01002264 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c))
2265 && (ccheck_abbr(
2266 // Add ABBR_OFF for characters above 0x100, this is
2267 // what check_abbr() expects.
2268 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) : c)
2269 || c == Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 goto cmdline_changed;
2271
2272 /*
2273 * put the character in the command line
2274 */
2275 if (IS_SPECIAL(c) || mod_mask != 0)
2276 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE);
2277 else
2278 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 if (has_mbyte)
2280 {
2281 j = (*mb_char2bytes)(c, IObuff);
2282 IObuff[j] = NUL; /* exclude composing chars */
2283 put_on_cmdline(IObuff, j, TRUE);
2284 }
2285 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 {
2287 IObuff[0] = c;
2288 put_on_cmdline(IObuff, 1, TRUE);
2289 }
2290 }
2291 goto cmdline_changed;
2292
2293/*
2294 * This part implements incremental searches for "/" and "?"
2295 * Jump to cmdline_not_changed when a character has been read but the command
2296 * line did not change. Then we only search and redraw if something changed in
2297 * the past.
2298 * Jump to cmdline_changed when the command line did change.
2299 * (Sorry for the goto's, I know it is ugly).
2300 */
2301cmdline_not_changed:
2302#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002303 if (!is_state.incsearch_postponed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 continue;
2305#endif
2306
2307cmdline_changed:
Bram Moolenaar153b7042018-01-31 15:48:32 +01002308 /* Trigger CmdlineChanged autocommands. */
2309 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINECHANGED);
Bram Moolenaar153b7042018-01-31 15:48:32 +01002310
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar0ee81cb2018-08-10 22:07:32 +02002312 may_do_incsearch_highlighting(firstc, count, &is_state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313#endif
2314
2315#ifdef FEAT_RIGHTLEFT
2316 if (cmdmsg_rl
2317# ifdef FEAT_ARABIC
Bram Moolenaar693f7dc2019-06-21 02:30:38 +02002318 || (p_arshape && !p_tbidi
2319 && cmdline_has_arabic(0, ccline.cmdlen))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320# endif
2321 )
2322 /* Always redraw the whole command line to fix shaping and
Bram Moolenaar58437e02012-02-22 17:58:04 +01002323 * right-left typing. Not efficient, but it works.
2324 * Do it only when there are no characters left to read
2325 * to avoid useless intermediate redraws. */
2326 if (vpeekc() == NUL)
2327 redrawcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328#endif
2329 }
2330
2331returncmd:
2332
2333#ifdef FEAT_RIGHTLEFT
2334 cmdmsg_rl = FALSE;
2335#endif
2336
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 ExpandCleanup(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002338 ccline.xpc = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339
2340#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaarc7f08b72018-08-12 17:39:14 +02002341 finish_incsearch_highlighting(gotesc, &is_state, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342#endif
2343
2344 if (ccline.cmdbuff != NULL)
2345 {
2346 /*
2347 * Put line in history buffer (":" and "=" only when it was typed).
2348 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 if (ccline.cmdlen && firstc != NUL
2350 && (some_key_typed || histype == HIST_SEARCH))
2351 {
2352 add_to_history(histype, ccline.cmdbuff, TRUE,
2353 histype == HIST_SEARCH ? firstc : NUL);
2354 if (firstc == ':')
2355 {
2356 vim_free(new_last_cmdline);
2357 new_last_cmdline = vim_strsave(ccline.cmdbuff);
2358 }
2359 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360
Bram Moolenaarf8e8c062017-10-22 14:44:17 +02002361 if (gotesc)
2362 abandon_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 }
2364
2365 /*
2366 * If the screen was shifted up, redraw the whole screen (later).
2367 * If the line is too long, clear it, so ruler and shown command do
2368 * not get printed in the middle of it.
2369 */
2370 msg_check();
2371 msg_scroll = save_msg_scroll;
2372 redir_off = FALSE;
2373
2374 /* When the command line was typed, no need for a wait-return prompt. */
2375 if (some_key_typed)
2376 need_wait_return = FALSE;
2377
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02002378 /* Trigger CmdlineLeave autocommands. */
2379 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINELEAVE);
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02002380
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 State = save_State;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002382#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP)
2384 im_save_status(b_im_ptr);
2385 im_set_active(FALSE);
2386#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388#ifdef CURSOR_SHAPE
2389 ui_cursor_shape(); /* may show different cursor shape */
2390#endif
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002391 sb_text_end_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392
Bram Moolenaar438d1762018-09-30 17:11:48 +02002393theend:
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002394 {
2395 char_u *p = ccline.cmdbuff;
2396
Bram Moolenaar438d1762018-09-30 17:11:48 +02002397 if (did_save_ccline)
2398 restore_cmdline(&save_ccline);
2399 else
2400 ccline.cmdbuff = NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002401 return p;
2402 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403}
2404
2405#if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO)
2406/*
2407 * Get a command line with a prompt.
2408 * This is prepared to be called recursively from getcmdline() (e.g. by
2409 * f_input() when evaluating an expression from CTRL-R =).
2410 * Returns the command line in allocated memory, or NULL.
2411 */
2412 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002413getcmdline_prompt(
2414 int firstc,
2415 char_u *prompt, /* command line prompt */
2416 int attr, /* attributes for prompt */
2417 int xp_context, /* type of expansion */
2418 char_u *xp_arg) /* user-defined expansion argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419{
2420 char_u *s;
Bram Moolenaar66b51422019-08-18 21:44:12 +02002421 cmdline_info_T save_ccline;
Bram Moolenaar438d1762018-09-30 17:11:48 +02002422 int did_save_ccline = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 int msg_col_save = msg_col;
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002424 int msg_silent_save = msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425
Bram Moolenaar438d1762018-09-30 17:11:48 +02002426 if (ccline.cmdbuff != NULL)
2427 {
2428 // Save the values of the current cmdline and restore them below.
2429 save_cmdline(&save_ccline);
2430 did_save_ccline = TRUE;
2431 }
2432
Bram Moolenaar66b51422019-08-18 21:44:12 +02002433 vim_memset(&ccline, 0, sizeof(cmdline_info_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 ccline.cmdprompt = prompt;
2435 ccline.cmdattr = attr;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002436# ifdef FEAT_EVAL
2437 ccline.xp_context = xp_context;
2438 ccline.xp_arg = xp_arg;
2439 ccline.input_fn = (firstc == '@');
2440# endif
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002441 msg_silent = 0;
Bram Moolenaar438d1762018-09-30 17:11:48 +02002442 s = getcmdline_int(firstc, 1L, 0, FALSE);
2443
2444 if (did_save_ccline)
2445 restore_cmdline(&save_ccline);
2446
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002447 msg_silent = msg_silent_save;
Bram Moolenaar1db1f772011-08-17 16:25:48 +02002448 /* Restore msg_col, the prompt from input() may have changed it.
2449 * But only if called recursively and the commandline is therefore being
2450 * restored to an old one; if not, the input() prompt stays on the screen,
2451 * so we need its modified msg_col left intact. */
2452 if (ccline.cmdbuff != NULL)
2453 msg_col = msg_col_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454
2455 return s;
2456}
2457#endif
2458
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002459/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002460 * Return TRUE when the text must not be changed and we can't switch to
2461 * another window or buffer. Used when editing the command line, evaluating
2462 * 'balloonexpr', etc.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002463 */
2464 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002465text_locked(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002466{
2467#ifdef FEAT_CMDWIN
2468 if (cmdwin_type != 0)
2469 return TRUE;
2470#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002471 return textlock != 0;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002472}
2473
2474/*
2475 * Give an error message for a command that isn't allowed while the cmdline
2476 * window is open or editing the cmdline in another way.
2477 */
2478 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002479text_locked_msg(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002480{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002481 emsg(_(get_text_locked_msg()));
Bram Moolenaar5a497892016-09-03 16:29:04 +02002482}
2483
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002484 char *
Bram Moolenaar5a497892016-09-03 16:29:04 +02002485get_text_locked_msg(void)
2486{
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002487#ifdef FEAT_CMDWIN
2488 if (cmdwin_type != 0)
Bram Moolenaar5a497892016-09-03 16:29:04 +02002489 return e_cmdwin;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002490#endif
Bram Moolenaar5a497892016-09-03 16:29:04 +02002491 return e_secure;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002492}
2493
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002494/*
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002495 * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is
2496 * and give an error message.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002497 */
2498 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002499curbuf_locked(void)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002500{
2501 if (curbuf_lock > 0)
2502 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002503 emsg(_("E788: Not allowed to edit another buffer now"));
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002504 return TRUE;
2505 }
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002506 return allbuf_locked();
2507}
2508
2509/*
2510 * Check if "allbuf_lock" is set and return TRUE when it is and give an error
2511 * message.
2512 */
2513 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002514allbuf_locked(void)
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002515{
2516 if (allbuf_lock > 0)
2517 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002518 emsg(_("E811: Not allowed to change buffer information now"));
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002519 return TRUE;
2520 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002521 return FALSE;
2522}
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002523
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002525cmdline_charsize(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526{
2527#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2528 if (cmdline_star > 0) /* showing '*', always 1 position */
2529 return 1;
2530#endif
2531 return ptr2cells(ccline.cmdbuff + idx);
2532}
2533
2534/*
2535 * Compute the offset of the cursor on the command line for the prompt and
2536 * indent.
2537 */
2538 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002539set_cmdspos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002541 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 ccline.cmdspos = 1 + ccline.cmdindent;
2543 else
2544 ccline.cmdspos = 0 + ccline.cmdindent;
2545}
2546
2547/*
2548 * Compute the screen position for the cursor on the command line.
2549 */
2550 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002551set_cmdspos_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552{
2553 int i, m, c;
2554
2555 set_cmdspos();
2556 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002557 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002559 if (m < 0) /* overflow, Columns or Rows at weird value */
2560 m = MAXCOL;
2561 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562 else
2563 m = MAXCOL;
2564 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
2565 {
2566 c = cmdline_charsize(i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 /* Count ">" for double-wide multi-byte char that doesn't fit. */
2568 if (has_mbyte)
2569 correct_cmdspos(i, c);
Bram Moolenaarf9821062008-06-20 16:31:07 +00002570 /* If the cmdline doesn't fit, show cursor on last visible char.
2571 * Don't move the cursor itself, so we can still append. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 if ((ccline.cmdspos += c) >= m)
2573 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 ccline.cmdspos -= c;
2575 break;
2576 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002578 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 }
2580}
2581
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582/*
2583 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2584 * character that doesn't fit, so that a ">" must be displayed.
2585 */
2586 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002587correct_cmdspos(int idx, int cells)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002589 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2591 && ccline.cmdspos % Columns + cells > Columns)
2592 ccline.cmdspos++;
2593}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594
2595/*
2596 * Get an Ex command line for the ":" command.
2597 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002599getexline(
2600 int c, /* normally ':', NUL for ":append" */
2601 void *cookie UNUSED,
Bram Moolenaare96a2492019-06-25 04:12:16 +02002602 int indent, /* indent for inside conditionals */
2603 int do_concat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604{
2605 /* When executing a register, remove ':' that's in front of each line. */
2606 if (exec_from_reg && vpeekc() == ':')
2607 (void)vgetc();
Bram Moolenaare96a2492019-06-25 04:12:16 +02002608 return getcmdline(c, 1L, indent, do_concat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609}
2610
2611/*
2612 * Get an Ex command line for Ex mode.
2613 * In Ex mode we only use the OS supplied line editing features and no
2614 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002615 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002618getexmodeline(
2619 int promptc, /* normally ':', NUL for ":append" and '?' for
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002620 :s prompt */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002621 void *cookie UNUSED,
Bram Moolenaare96a2492019-06-25 04:12:16 +02002622 int indent, /* indent for inside conditionals */
2623 int do_concat UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002625 garray_T line_ga;
2626 char_u *pend;
2627 int startcol = 0;
Bram Moolenaar76624232007-07-28 12:21:47 +00002628 int c1 = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002629 int escaped = FALSE; /* CTRL-V typed */
2630 int vcol = 0;
2631 char_u *p;
Bram Moolenaar76624232007-07-28 12:21:47 +00002632 int prev_char;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002633 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634
2635 /* Switch cursor on now. This avoids that it happens after the "\n", which
2636 * confuses the system function that computes tabstops. */
2637 cursor_on();
2638
2639 /* always start in column 0; write a newline if necessary */
2640 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002641 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002643 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002645 /* indent that is only displayed, not in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002646 if (p_prompt)
2647 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 while (indent-- > 0)
2649 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 }
2652
2653 ga_init2(&line_ga, 1, 30);
2654
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002655 /* autoindent for :insert and :append is in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002656 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002657 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002658 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002659 while (indent >= 8)
2660 {
2661 ga_append(&line_ga, TAB);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002662 msg_puts(" ");
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002663 indent -= 8;
2664 }
2665 while (indent-- > 0)
2666 {
2667 ga_append(&line_ga, ' ');
2668 msg_putchar(' ');
2669 }
2670 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002671 ++no_mapping;
2672 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002673
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674 /*
2675 * Get the line, one character at a time.
2676 */
2677 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002678 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002680 long sw;
2681 char_u *s;
2682
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683 if (ga_grow(&line_ga, 40) == FAIL)
2684 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685
Bram Moolenaarba748c82017-02-26 14:00:07 +01002686 /*
2687 * Get one character at a time.
2688 */
Bram Moolenaar76624232007-07-28 12:21:47 +00002689 prev_char = c1;
Bram Moolenaarba748c82017-02-26 14:00:07 +01002690
2691 /* Check for a ":normal" command and no more characters left. */
2692 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
2693 c1 = '\n';
2694 else
2695 c1 = vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696
2697 /*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002698 * Handle line editing.
2699 * Previously this was left to the system, putting the terminal in
2700 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002702 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002704 msg_putchar('\n');
2705 break;
2706 }
2707
Bram Moolenaarabbc4482017-01-24 15:57:55 +01002708 if (c1 == K_PS)
2709 {
2710 bracketed_paste(PASTE_EX, FALSE, &line_ga);
2711 goto redraw;
2712 }
2713
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002714 if (!escaped)
2715 {
2716 /* CR typed means "enter", which is NL */
2717 if (c1 == '\r')
2718 c1 = '\n';
2719
2720 if (c1 == BS || c1 == K_BS
2721 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002723 if (line_ga.ga_len > 0)
2724 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002725 if (has_mbyte)
2726 {
2727 p = (char_u *)line_ga.ga_data;
2728 p[line_ga.ga_len] = NUL;
2729 len = (*mb_head_off)(p, p + line_ga.ga_len - 1) + 1;
2730 line_ga.ga_len -= len;
2731 }
2732 else
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002733 --line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002734 goto redraw;
2735 }
2736 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737 }
2738
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002739 if (c1 == Ctrl_U)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002741 msg_col = startcol;
2742 msg_clr_eos();
2743 line_ga.ga_len = 0;
Bram Moolenaarda636572015-04-03 17:11:45 +02002744 goto redraw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002745 }
2746
2747 if (c1 == Ctrl_T)
2748 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002749 sw = get_sw_value(curbuf);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002750 p = (char_u *)line_ga.ga_data;
2751 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002752 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaar14f24742012-08-08 18:01:05 +02002753 indent += sw - indent % sw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002754add_indent:
Bram Moolenaar597a4222014-06-25 14:39:50 +02002755 while (get_indent_str(p, 8, FALSE) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002757 (void)ga_grow(&line_ga, 2); /* one more for the NUL */
Bram Moolenaarda636572015-04-03 17:11:45 +02002758 p = (char_u *)line_ga.ga_data;
2759 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002760 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2761 *s = ' ';
2762 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002764redraw:
2765 /* redraw the line */
2766 msg_col = startcol;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002767 vcol = 0;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002768 p = (char_u *)line_ga.ga_data;
2769 p[line_ga.ga_len] = NUL;
2770 while (p < (char_u *)line_ga.ga_data + line_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002772 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002774 do
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002775 msg_putchar(' ');
Bram Moolenaarabab0b02019-03-30 18:47:01 +01002776 while (++vcol % 8);
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002777 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002779 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002780 {
Bram Moolenaar1614a142019-10-06 22:00:13 +02002781 len = mb_ptr2len(p);
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002782 msg_outtrans_len(p, len);
2783 vcol += ptr2cells(p);
2784 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785 }
2786 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002787 msg_clr_eos();
Bram Moolenaar76624232007-07-28 12:21:47 +00002788 windgoto(msg_row, msg_col);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002789 continue;
2790 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002792 if (c1 == Ctrl_D)
2793 {
2794 /* Delete one shiftwidth. */
2795 p = (char_u *)line_ga.ga_data;
2796 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002798 if (prev_char == '^')
2799 ex_keep_indent = TRUE;
2800 indent = 0;
2801 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802 }
2803 else
2804 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002805 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002806 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaarda636572015-04-03 17:11:45 +02002807 if (indent > 0)
2808 {
2809 --indent;
2810 indent -= indent % get_sw_value(curbuf);
2811 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02002813 while (get_indent_str(p, 8, FALSE) > indent)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002814 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002815 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002816 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2817 --line_ga.ga_len;
2818 }
2819 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002821
2822 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2823 {
2824 escaped = TRUE;
2825 continue;
2826 }
2827
2828 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
2829 if (IS_SPECIAL(c1))
2830 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002831 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002832
2833 if (IS_SPECIAL(c1))
2834 c1 = '?';
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002835 if (has_mbyte)
2836 len = (*mb_char2bytes)(c1,
2837 (char_u *)line_ga.ga_data + line_ga.ga_len);
2838 else
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002839 {
2840 len = 1;
2841 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
2842 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002843 if (c1 == '\n')
2844 msg_putchar('\n');
2845 else if (c1 == TAB)
2846 {
2847 /* Don't use chartabsize(), 'ts' can be different */
2848 do
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002849 msg_putchar(' ');
Bram Moolenaarabab0b02019-03-30 18:47:01 +01002850 while (++vcol % 8);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002851 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002854 msg_outtrans_len(
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002855 ((char_u *)line_ga.ga_data) + line_ga.ga_len, len);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002856 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 }
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002858 line_ga.ga_len += len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002859 escaped = FALSE;
2860
2861 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002862 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002863
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002864 /* We are done when a NL is entered, but not when it comes after an
2865 * odd number of backslashes, that results in a NUL. */
2866 if (line_ga.ga_len > 0 && pend[-1] == '\n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 {
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002868 int bcount = 0;
2869
2870 while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\')
2871 ++bcount;
2872
2873 if (bcount > 0)
2874 {
2875 /* Halve the number of backslashes: "\NL" -> "NUL", "\\NL" ->
2876 * "\NL", etc. */
2877 line_ga.ga_len -= (bcount + 1) / 2;
2878 pend -= (bcount + 1) / 2;
2879 pend[-1] = '\n';
2880 }
2881
2882 if ((bcount & 1) == 0)
2883 {
2884 --line_ga.ga_len;
2885 --pend;
2886 *pend = NUL;
2887 break;
2888 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889 }
2890 }
2891
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002892 --no_mapping;
2893 --allow_keys;
2894
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895 /* make following messages go to the next line */
2896 msg_didout = FALSE;
2897 msg_col = 0;
2898 if (msg_row < Rows - 1)
2899 ++msg_row;
2900 emsg_on_display = FALSE; /* don't want ui_delay() */
2901
2902 if (got_int)
2903 ga_clear(&line_ga);
2904
2905 return (char_u *)line_ga.ga_data;
2906}
2907
Bram Moolenaare344bea2005-09-01 20:46:49 +00002908# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
2909 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910/*
2911 * Return TRUE if ccline.overstrike is on.
2912 */
2913 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002914cmdline_overstrike(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915{
2916 return ccline.overstrike;
2917}
2918
2919/*
2920 * Return TRUE if the cursor is at the end of the cmdline.
2921 */
2922 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002923cmdline_at_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924{
2925 return (ccline.cmdpos >= ccline.cmdlen);
2926}
2927#endif
2928
Bram Moolenaar9372a112005-12-06 19:59:18 +00002929#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930/*
2931 * Return the virtual column number at the current cursor position.
2932 * This is used by the IM code to obtain the start of the preedit string.
2933 */
2934 colnr_T
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002935cmdline_getvcol_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936{
2937 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
2938 return MAXCOL;
2939
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940 if (has_mbyte)
2941 {
2942 colnr_T col;
2943 int i = 0;
2944
2945 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002946 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947
2948 return col;
2949 }
2950 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951 return ccline.cmdpos;
2952}
2953#endif
2954
2955#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2956/*
2957 * If part of the command line is an IM preedit string, redraw it with
2958 * IM feedback attributes. The cursor position is restored after drawing.
2959 */
2960 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002961redrawcmd_preedit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962{
2963 if ((State & CMDLINE)
2964 && xic != NULL
Bram Moolenaar494c82a2006-09-14 08:25:49 +00002965 /* && im_get_status() doesn't work when using SCIM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 && !p_imdisable
2967 && im_is_preediting())
2968 {
2969 int cmdpos = 0;
2970 int cmdspos;
2971 int old_row;
2972 int old_col;
2973 colnr_T col;
2974
2975 old_row = msg_row;
2976 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002977 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979 if (has_mbyte)
2980 {
2981 for (col = 0; col < preedit_start_col
2982 && cmdpos < ccline.cmdlen; ++col)
2983 {
2984 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002985 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986 }
2987 }
2988 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989 {
2990 cmdspos += preedit_start_col;
2991 cmdpos += preedit_start_col;
2992 }
2993
2994 msg_row = cmdline_row + (cmdspos / (int)Columns);
2995 msg_col = cmdspos % (int)Columns;
2996 if (msg_row >= Rows)
2997 msg_row = Rows - 1;
2998
2999 for (col = 0; cmdpos < ccline.cmdlen; ++col)
3000 {
3001 int char_len;
3002 int char_attr;
3003
3004 char_attr = im_get_feedback_attr(col);
3005 if (char_attr < 0)
3006 break; /* end of preedit string */
3007
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003009 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011 char_len = 1;
3012
3013 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
3014 cmdpos += char_len;
3015 }
3016
3017 msg_row = old_row;
3018 msg_col = old_col;
3019 }
3020}
3021#endif /* FEAT_XIM && FEAT_GUI_GTK */
3022
3023/*
3024 * Allocate a new command line buffer.
3025 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026 */
3027 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003028alloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029{
3030 /*
3031 * give some extra space to avoid having to allocate all the time
3032 */
3033 if (len < 80)
3034 len = 100;
3035 else
3036 len += 20;
3037
3038 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */
3039 ccline.cmdbufflen = len;
3040}
3041
3042/*
3043 * Re-allocate the command line to length len + something extra.
3044 * return FAIL for failure, OK otherwise
3045 */
Bram Moolenaar66b51422019-08-18 21:44:12 +02003046 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003047realloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048{
3049 char_u *p;
3050
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003051 if (len < ccline.cmdbufflen)
3052 return OK; /* no need to resize */
3053
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054 p = ccline.cmdbuff;
3055 alloc_cmdbuff(len); /* will get some more */
3056 if (ccline.cmdbuff == NULL) /* out of memory */
3057 {
3058 ccline.cmdbuff = p; /* keep the old one */
3059 return FAIL;
3060 }
Bram Moolenaar35a34232010-08-13 16:51:26 +02003061 /* There isn't always a NUL after the command, but it may need to be
3062 * there, thus copy up to the NUL and add a NUL. */
3063 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen);
3064 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065 vim_free(p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003066
3067 if (ccline.xpc != NULL
3068 && ccline.xpc->xp_pattern != NULL
3069 && ccline.xpc->xp_context != EXPAND_NOTHING
3070 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL)
3071 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00003072 int i = (int)(ccline.xpc->xp_pattern - p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003073
3074 /* If xp_pattern points inside the old cmdbuff it needs to be adjusted
3075 * to point into the newly allocated memory. */
3076 if (i >= 0 && i <= ccline.cmdlen)
3077 ccline.xpc->xp_pattern = ccline.cmdbuff + i;
3078 }
3079
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080 return OK;
3081}
3082
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003083#if defined(FEAT_ARABIC) || defined(PROTO)
3084static char_u *arshape_buf = NULL;
3085
3086# if defined(EXITFREE) || defined(PROTO)
3087 void
Bram Moolenaar48ac6712019-07-04 20:26:21 +02003088free_arshape_buf(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003089{
3090 vim_free(arshape_buf);
3091}
3092# endif
3093#endif
3094
Bram Moolenaar071d4272004-06-13 20:20:40 +00003095/*
3096 * Draw part of the cmdline at the current cursor position. But draw stars
3097 * when cmdline_star is TRUE.
3098 */
3099 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003100draw_cmdline(int start, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101{
3102#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
3103 int i;
3104
3105 if (cmdline_star > 0)
3106 for (i = 0; i < len; ++i)
3107 {
3108 msg_putchar('*');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003110 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111 }
3112 else
3113#endif
3114#ifdef FEAT_ARABIC
Bram Moolenaar693f7dc2019-06-21 02:30:38 +02003115 if (p_arshape && !p_tbidi && cmdline_has_arabic(start, len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117 static int buflen = 0;
3118 char_u *p;
3119 int j;
3120 int newlen = 0;
3121 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003122 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123 int prev_c = 0;
3124 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003125 int u8c;
3126 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128
3129 /*
3130 * Do arabic shaping into a temporary buffer. This is very
3131 * inefficient!
3132 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003133 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134 {
3135 /* Re-allocate the buffer. We keep it around to avoid a lot of
3136 * alloc()/free() calls. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003137 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003138 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003139 arshape_buf = alloc(buflen);
3140 if (arshape_buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 return; /* out of memory */
3142 }
3143
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003144 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
3145 {
3146 /* Prepend a space to draw the leading composing char on. */
3147 arshape_buf[0] = ' ';
3148 newlen = 1;
3149 }
3150
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151 for (j = start; j < start + len; j += mb_l)
3152 {
3153 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003154 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003155 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 if (ARABIC_CHAR(u8c))
3157 {
3158 /* Do Arabic shaping. */
3159 if (cmdmsg_rl)
3160 {
3161 /* displaying from right to left */
3162 pc = prev_c;
3163 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003164 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165 if (j + mb_l >= start + len)
3166 nc = NUL;
3167 else
3168 nc = utf_ptr2char(p + mb_l);
3169 }
3170 else
3171 {
3172 /* displaying from left to right */
3173 if (j + mb_l >= start + len)
3174 pc = NUL;
3175 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003176 {
3177 int pcc[MAX_MCO];
3178
3179 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003181 pc1 = pcc[0];
3182 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183 nc = prev_c;
3184 }
3185 prev_c = u8c;
3186
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003187 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003189 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003190 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003192 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
3193 if (u8cc[1] != 0)
3194 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003195 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196 }
3197 }
3198 else
3199 {
3200 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003201 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202 newlen += mb_l;
3203 }
3204 }
3205
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003206 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003207 }
3208 else
3209#endif
3210 msg_outtrans_len(ccline.cmdbuff + start, len);
3211}
3212
3213/*
3214 * Put a character on the command line. Shifts the following text to the
3215 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
3216 * "c" must be printable (fit in one display cell)!
3217 */
3218 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003219putcmdline(int c, int shift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220{
3221 if (cmd_silent)
3222 return;
3223 msg_no_more = TRUE;
3224 msg_putchar(c);
3225 if (shift)
3226 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
3227 msg_no_more = FALSE;
3228 cursorcmd();
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003229 extra_char = c;
3230 extra_char_shift = shift;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231}
3232
3233/*
3234 * Undo a putcmdline(c, FALSE).
3235 */
3236 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003237unputcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003238{
3239 if (cmd_silent)
3240 return;
3241 msg_no_more = TRUE;
3242 if (ccline.cmdlen == ccline.cmdpos)
3243 msg_putchar(' ');
Bram Moolenaar64fdf5c2012-06-06 12:03:06 +02003244 else if (has_mbyte)
3245 draw_cmdline(ccline.cmdpos,
3246 (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247 else
3248 draw_cmdline(ccline.cmdpos, 1);
3249 msg_no_more = FALSE;
3250 cursorcmd();
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003251 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252}
3253
3254/*
3255 * Put the given string, of the given length, onto the command line.
3256 * If len is -1, then STRLEN() is used to calculate the length.
3257 * If 'redraw' is TRUE then the new part of the command line, and the remaining
3258 * part will be redrawn, otherwise it will not. If this function is called
3259 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
3260 * called afterwards.
3261 */
3262 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003263put_on_cmdline(char_u *str, int len, int redraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264{
3265 int retval;
3266 int i;
3267 int m;
3268 int c;
3269
3270 if (len < 0)
3271 len = (int)STRLEN(str);
3272
3273 /* Check if ccline.cmdbuff needs to be longer */
3274 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003275 retval = realloc_cmdbuff(ccline.cmdlen + len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276 else
3277 retval = OK;
3278 if (retval == OK)
3279 {
3280 if (!ccline.overstrike)
3281 {
3282 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
3283 ccline.cmdbuff + ccline.cmdpos,
3284 (size_t)(ccline.cmdlen - ccline.cmdpos));
3285 ccline.cmdlen += len;
3286 }
3287 else
3288 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289 if (has_mbyte)
3290 {
3291 /* Count nr of characters in the new string. */
3292 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003293 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294 ++m;
3295 /* Count nr of bytes in cmdline that are overwritten by these
3296 * characters. */
3297 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003298 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003299 --m;
3300 if (i < ccline.cmdlen)
3301 {
3302 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
3303 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
3304 ccline.cmdlen += ccline.cmdpos + len - i;
3305 }
3306 else
3307 ccline.cmdlen = ccline.cmdpos + len;
3308 }
Bram Moolenaar13505972019-01-24 15:04:48 +01003309 else if (ccline.cmdpos + len > ccline.cmdlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310 ccline.cmdlen = ccline.cmdpos + len;
3311 }
3312 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
3313 ccline.cmdbuff[ccline.cmdlen] = NUL;
3314
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 if (enc_utf8)
3316 {
3317 /* When the inserted text starts with a composing character,
3318 * backup to the character before it. There could be two of them.
3319 */
3320 i = 0;
3321 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3322 while (ccline.cmdpos > 0 && utf_iscomposing(c))
3323 {
3324 i = (*mb_head_off)(ccline.cmdbuff,
3325 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3326 ccline.cmdpos -= i;
3327 len += i;
3328 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3329 }
Bram Moolenaar13505972019-01-24 15:04:48 +01003330#ifdef FEAT_ARABIC
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
3332 {
3333 /* Check the previous character for Arabic combining pair. */
3334 i = (*mb_head_off)(ccline.cmdbuff,
3335 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3336 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
3337 + ccline.cmdpos - i), c))
3338 {
3339 ccline.cmdpos -= i;
3340 len += i;
3341 }
3342 else
3343 i = 0;
3344 }
Bram Moolenaar13505972019-01-24 15:04:48 +01003345#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346 if (i != 0)
3347 {
3348 /* Also backup the cursor position. */
3349 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
3350 ccline.cmdspos -= i;
3351 msg_col -= i;
3352 if (msg_col < 0)
3353 {
3354 msg_col += Columns;
3355 --msg_row;
3356 }
3357 }
3358 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359
3360 if (redraw && !cmd_silent)
3361 {
3362 msg_no_more = TRUE;
3363 i = cmdline_row;
Bram Moolenaar73dc59a2011-09-30 17:46:21 +02003364 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
3366 /* Avoid clearing the rest of the line too often. */
3367 if (cmdline_row != i || ccline.overstrike)
3368 msg_clr_eos();
3369 msg_no_more = FALSE;
3370 }
Bram Moolenaar14184a32019-02-16 15:10:30 +01003371 if (KeyTyped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372 {
Bram Moolenaar14184a32019-02-16 15:10:30 +01003373 m = Columns * Rows;
3374 if (m < 0) /* overflow, Columns or Rows at weird value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375 m = MAXCOL;
Bram Moolenaar14184a32019-02-16 15:10:30 +01003376 }
3377 else
3378 m = MAXCOL;
3379 for (i = 0; i < len; ++i)
3380 {
3381 c = cmdline_charsize(ccline.cmdpos);
3382 /* count ">" for a double-wide char that doesn't fit. */
3383 if (has_mbyte)
3384 correct_cmdspos(ccline.cmdpos, c);
3385 /* Stop cursor at the end of the screen, but do increment the
3386 * insert position, so that entering a very long command
3387 * works, even though you can't see it. */
3388 if (ccline.cmdspos + c < m)
3389 ccline.cmdspos += c;
Bram Moolenaar13505972019-01-24 15:04:48 +01003390
Bram Moolenaar14184a32019-02-16 15:10:30 +01003391 if (has_mbyte)
3392 {
3393 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
3394 if (c > len - i - 1)
3395 c = len - i - 1;
3396 ccline.cmdpos += c;
3397 i += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 }
Bram Moolenaar14184a32019-02-16 15:10:30 +01003399 ++ccline.cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 }
3401 }
3402 if (redraw)
3403 msg_check();
3404 return retval;
3405}
3406
Bram Moolenaar66b51422019-08-18 21:44:12 +02003407static cmdline_info_T prev_ccline;
3408static int prev_ccline_used = FALSE;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003409
3410/*
3411 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
3412 * and overwrite it. But get_cmdline_str() may need it, thus make it
3413 * available globally in prev_ccline.
3414 */
3415 static void
Bram Moolenaar66b51422019-08-18 21:44:12 +02003416save_cmdline(cmdline_info_T *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003417{
3418 if (!prev_ccline_used)
3419 {
Bram Moolenaar66b51422019-08-18 21:44:12 +02003420 vim_memset(&prev_ccline, 0, sizeof(cmdline_info_T));
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003421 prev_ccline_used = TRUE;
3422 }
3423 *ccp = prev_ccline;
3424 prev_ccline = ccline;
Bram Moolenaar438d1762018-09-30 17:11:48 +02003425 ccline.cmdbuff = NULL; // signal that ccline is not in use
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003426}
3427
3428/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003429 * Restore ccline after it has been saved with save_cmdline().
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003430 */
3431 static void
Bram Moolenaar66b51422019-08-18 21:44:12 +02003432restore_cmdline(cmdline_info_T *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003433{
3434 ccline = prev_ccline;
3435 prev_ccline = *ccp;
3436}
3437
Bram Moolenaar8299df92004-07-10 09:47:34 +00003438/*
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003439 * Paste a yank register into the command line.
3440 * Used by CTRL-R command in command-line mode.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003441 * insert_reg() can't be used here, because special characters from the
3442 * register contents will be interpreted as commands.
3443 *
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003444 * Return FAIL for failure, OK otherwise.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003445 */
3446 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003447cmdline_paste(
3448 int regname,
3449 int literally, /* Insert text literally instead of "as typed" */
3450 int remcr) /* remove trailing CR */
Bram Moolenaar8299df92004-07-10 09:47:34 +00003451{
3452 long i;
3453 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003454 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003455 int allocated;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003456
3457 /* check for valid regname; also accept special characters for CTRL-R in
3458 * the command line */
3459 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
Bram Moolenaare2c8d832018-05-01 19:24:03 +02003460 && regname != Ctrl_A && regname != Ctrl_L
3461 && !valid_yank_reg(regname, FALSE))
Bram Moolenaar8299df92004-07-10 09:47:34 +00003462 return FAIL;
3463
3464 /* A register containing CTRL-R can cause an endless loop. Allow using
3465 * CTRL-C to break the loop. */
3466 line_breakcheck();
3467 if (got_int)
3468 return FAIL;
3469
3470#ifdef FEAT_CLIPBOARD
3471 regname = may_get_selection(regname);
3472#endif
3473
Bram Moolenaar438d1762018-09-30 17:11:48 +02003474 // Need to set "textlock" to avoid nasty things like going to another
3475 // buffer when evaluating an expression.
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003476 ++textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003477 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003478 --textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003479
3480 if (i)
3481 {
3482 /* Got the value of a special register in "arg". */
3483 if (arg == NULL)
3484 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003485
3486 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
3487 * part of the word. */
3488 p = arg;
3489 if (p_is && regname == Ctrl_W)
3490 {
3491 char_u *w;
3492 int len;
3493
3494 /* Locate start of last word in the cmd buffer. */
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003495 for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; )
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003496 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003497 if (has_mbyte)
3498 {
3499 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
3500 if (!vim_iswordc(mb_ptr2char(w - len)))
3501 break;
3502 w -= len;
3503 }
3504 else
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003505 {
3506 if (!vim_iswordc(w[-1]))
3507 break;
3508 --w;
3509 }
3510 }
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003511 len = (int)((ccline.cmdbuff + ccline.cmdpos) - w);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003512 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
3513 p += len;
3514 }
3515
3516 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003517 if (allocated)
3518 vim_free(arg);
3519 return OK;
3520 }
3521
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003522 return cmdline_paste_reg(regname, literally, remcr);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003523}
3524
3525/*
3526 * Put a string on the command line.
3527 * When "literally" is TRUE, insert literally.
3528 * When "literally" is FALSE, insert as typed, but don't leave the command
3529 * line.
3530 */
3531 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003532cmdline_paste_str(char_u *s, int literally)
Bram Moolenaar8299df92004-07-10 09:47:34 +00003533{
3534 int c, cv;
3535
3536 if (literally)
3537 put_on_cmdline(s, -1, TRUE);
3538 else
3539 while (*s != NUL)
3540 {
3541 cv = *s;
3542 if (cv == Ctrl_V && s[1])
3543 ++s;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003544 if (has_mbyte)
Bram Moolenaar48be32b2008-06-20 10:56:16 +00003545 c = mb_cptr2char_adv(&s);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003546 else
Bram Moolenaar8299df92004-07-10 09:47:34 +00003547 c = *s++;
Bram Moolenaare79abdd2012-06-29 13:44:41 +02003548 if (cv == Ctrl_V || c == ESC || c == Ctrl_C
3549 || c == CAR || c == NL || c == Ctrl_L
Bram Moolenaar8299df92004-07-10 09:47:34 +00003550#ifdef UNIX
3551 || c == intr_char
3552#endif
3553 || (c == Ctrl_BSL && *s == Ctrl_N))
3554 stuffcharReadbuff(Ctrl_V);
3555 stuffcharReadbuff(c);
3556 }
3557}
3558
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559#ifdef FEAT_WILDMENU
3560/*
3561 * Delete characters on the command line, from "from" to the current
3562 * position.
3563 */
3564 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003565cmdline_del(int from)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003566{
3567 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
3568 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3569 ccline.cmdlen -= ccline.cmdpos - from;
3570 ccline.cmdpos = from;
3571}
3572#endif
3573
3574/*
Bram Moolenaar89c79b92016-05-05 17:18:41 +02003575 * This function is called when the screen size changes and with incremental
3576 * search and in other situations where the command line may have been
3577 * overwritten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578 */
3579 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003580redrawcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581{
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003582 redrawcmdline_ex(TRUE);
3583}
3584
3585 void
3586redrawcmdline_ex(int do_compute_cmdrow)
3587{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588 if (cmd_silent)
3589 return;
3590 need_wait_return = FALSE;
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003591 if (do_compute_cmdrow)
3592 compute_cmdrow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593 redrawcmd();
3594 cursorcmd();
3595}
3596
3597 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003598redrawcmdprompt(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599{
3600 int i;
3601
3602 if (cmd_silent)
3603 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003604 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605 msg_putchar(ccline.cmdfirstc);
3606 if (ccline.cmdprompt != NULL)
3607 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003608 msg_puts_attr((char *)ccline.cmdprompt, ccline.cmdattr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
3610 /* do the reverse of set_cmdspos() */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003611 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612 --ccline.cmdindent;
3613 }
3614 else
3615 for (i = ccline.cmdindent; i > 0; --i)
3616 msg_putchar(' ');
3617}
3618
3619/*
3620 * Redraw what is currently on the command line.
3621 */
3622 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003623redrawcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624{
3625 if (cmd_silent)
3626 return;
3627
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003628 /* when 'incsearch' is set there may be no command line while redrawing */
3629 if (ccline.cmdbuff == NULL)
3630 {
3631 windgoto(cmdline_row, 0);
3632 msg_clr_eos();
3633 return;
3634 }
3635
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636 msg_start();
3637 redrawcmdprompt();
3638
3639 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
3640 msg_no_more = TRUE;
3641 draw_cmdline(0, ccline.cmdlen);
3642 msg_clr_eos();
3643 msg_no_more = FALSE;
3644
3645 set_cmdspos_cursor();
Bram Moolenaara92522f2017-07-15 15:21:38 +02003646 if (extra_char != NUL)
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003647 putcmdline(extra_char, extra_char_shift);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648
3649 /*
3650 * An emsg() before may have set msg_scroll. This is used in normal mode,
3651 * in cmdline mode we can reset them now.
3652 */
3653 msg_scroll = FALSE; /* next message overwrites cmdline */
3654
3655 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
3656 * in cmdline mode */
3657 skip_redraw = FALSE;
3658}
3659
3660 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003661compute_cmdrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003662{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003663 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664 cmdline_row = Rows - 1;
3665 else
3666 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
Bram Moolenaare0de17d2017-09-24 16:24:34 +02003667 + lastwin->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668}
3669
Bram Moolenaar66b51422019-08-18 21:44:12 +02003670 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003671cursorcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672{
3673 if (cmd_silent)
3674 return;
3675
3676#ifdef FEAT_RIGHTLEFT
3677 if (cmdmsg_rl)
3678 {
3679 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3680 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3681 if (msg_row <= 0)
3682 msg_row = Rows - 1;
3683 }
3684 else
3685#endif
3686 {
3687 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3688 msg_col = ccline.cmdspos % (int)Columns;
3689 if (msg_row >= Rows)
3690 msg_row = Rows - 1;
3691 }
3692
3693 windgoto(msg_row, msg_col);
3694#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar5c6dbcb2017-08-30 22:00:20 +02003695 if (p_imst == IM_ON_THE_SPOT)
3696 redrawcmd_preedit();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697#endif
3698#ifdef MCH_CURSOR_SHAPE
3699 mch_update_cursor();
3700#endif
3701}
3702
3703 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003704gotocmdline(int clr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705{
3706 msg_start();
3707#ifdef FEAT_RIGHTLEFT
3708 if (cmdmsg_rl)
3709 msg_col = Columns - 1;
3710 else
3711#endif
3712 msg_col = 0; /* always start in column 0 */
3713 if (clr) /* clear the bottom line(s) */
3714 msg_clr_eos(); /* will reset clear_cmdline */
3715 windgoto(cmdline_row, 0);
3716}
3717
3718/*
3719 * Check the word in front of the cursor for an abbreviation.
3720 * Called when the non-id character "c" has been entered.
3721 * When an abbreviation is recognized it is removed from the text with
3722 * backspaces and the replacement string is inserted, followed by "c".
3723 */
3724 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003725ccheck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726{
Bram Moolenaar5e3423d2018-05-13 18:36:27 +02003727 int spos = 0;
3728
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
3730 return FALSE;
3731
Bram Moolenaar5e3423d2018-05-13 18:36:27 +02003732 /* Do not consider '<,'> be part of the mapping, skip leading whitespace.
3733 * Actually accepts any mark. */
3734 while (VIM_ISWHITE(ccline.cmdbuff[spos]) && spos < ccline.cmdlen)
3735 spos++;
3736 if (ccline.cmdlen - spos > 5
3737 && ccline.cmdbuff[spos] == '\''
3738 && ccline.cmdbuff[spos + 2] == ','
3739 && ccline.cmdbuff[spos + 3] == '\'')
3740 spos += 5;
3741 else
3742 /* check abbreviation from the beginning of the commandline */
3743 spos = 0;
3744
3745 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, spos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746}
3747
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003749 * Escape special characters in "fname" for when used as a file name argument
3750 * after a Vim command, or, when "shell" is non-zero, a shell command.
3751 * Returns the result in allocated memory.
3752 */
3753 char_u *
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02003754vim_strsave_fnameescape(char_u *fname, int shell UNUSED)
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003755{
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003756 char_u *p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003757#ifdef BACKSLASH_IN_FILENAME
3758 char_u buf[20];
3759 int j = 0;
3760
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01003761 /* Don't escape '[', '{' and '!' if they are in 'isfname'. */
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003762 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01003763 if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p))
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003764 buf[j++] = *p;
3765 buf[j] = NUL;
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003766 p = vim_strsave_escaped(fname, buf);
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003767#else
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003768 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
3769 if (shell && csh_like_shell() && p != NULL)
3770 {
3771 char_u *s;
3772
3773 /* For csh and similar shells need to put two backslashes before '!'.
3774 * One is taken by Vim, one by the shell. */
3775 s = vim_strsave_escaped(p, (char_u *)"!");
3776 vim_free(p);
3777 p = s;
3778 }
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003779#endif
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003780
3781 /* '>' and '+' are special at the start of some commands, e.g. ":edit" and
3782 * ":write". "cd -" has a special meaning. */
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003783 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL)))
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00003784 escape_fname(&p);
3785
3786 return p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003787}
3788
3789/*
Bram Moolenaar45360022005-07-21 21:08:21 +00003790 * Put a backslash before the file name in "pp", which is in allocated memory.
3791 */
Bram Moolenaar66b51422019-08-18 21:44:12 +02003792 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003793escape_fname(char_u **pp)
Bram Moolenaar45360022005-07-21 21:08:21 +00003794{
3795 char_u *p;
3796
Bram Moolenaar964b3742019-05-24 18:54:09 +02003797 p = alloc(STRLEN(*pp) + 2);
Bram Moolenaar45360022005-07-21 21:08:21 +00003798 if (p != NULL)
3799 {
3800 p[0] = '\\';
3801 STRCPY(p + 1, *pp);
3802 vim_free(*pp);
3803 *pp = p;
3804 }
3805}
3806
3807/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 * For each file name in files[num_files]:
3809 * If 'orig_pat' starts with "~/", replace the home directory with "~".
3810 */
3811 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003812tilde_replace(
3813 char_u *orig_pat,
3814 int num_files,
3815 char_u **files)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816{
3817 int i;
3818 char_u *p;
3819
3820 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
3821 {
3822 for (i = 0; i < num_files; ++i)
3823 {
3824 p = home_replace_save(NULL, files[i]);
3825 if (p != NULL)
3826 {
3827 vim_free(files[i]);
3828 files[i] = p;
3829 }
3830 }
3831 }
3832}
3833
3834/*
Bram Moolenaar66b51422019-08-18 21:44:12 +02003835 * Get a pointer to the current command line info.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003836 */
Bram Moolenaar66b51422019-08-18 21:44:12 +02003837 cmdline_info_T *
3838get_cmdline_info(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839{
Bram Moolenaar66b51422019-08-18 21:44:12 +02003840 return &ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841}
3842
Bram Moolenaar064154c2016-03-19 22:50:43 +01003843#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003844/*
Bram Moolenaar438d1762018-09-30 17:11:48 +02003845 * Get pointer to the command line info to use. save_ccline() may clear
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003846 * ccline and put the previous value in prev_ccline.
3847 */
Bram Moolenaar66b51422019-08-18 21:44:12 +02003848 static cmdline_info_T *
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003849get_ccline_ptr(void)
3850{
3851 if ((State & CMDLINE) == 0)
3852 return NULL;
3853 if (ccline.cmdbuff != NULL)
3854 return &ccline;
3855 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
3856 return &prev_ccline;
3857 return NULL;
3858}
Bram Moolenaar064154c2016-03-19 22:50:43 +01003859#endif
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003860
Bram Moolenaar064154c2016-03-19 22:50:43 +01003861#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003862/*
3863 * Get the current command line in allocated memory.
3864 * Only works when the command line is being edited.
3865 * Returns NULL when something is wrong.
3866 */
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003867 static char_u *
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003868get_cmdline_str(void)
3869{
Bram Moolenaar66b51422019-08-18 21:44:12 +02003870 cmdline_info_T *p;
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003871
Bram Moolenaaree91c332018-09-25 22:27:35 +02003872 if (cmdline_star > 0)
3873 return NULL;
3874 p = get_ccline_ptr();
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003875 if (p == NULL)
3876 return NULL;
3877 return vim_strnsave(p->cmdbuff, p->cmdlen);
3878}
3879
3880/*
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003881 * "getcmdline()" function
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003882 */
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003883 void
3884f_getcmdline(typval_T *argvars UNUSED, typval_T *rettv)
3885{
3886 rettv->v_type = VAR_STRING;
3887 rettv->vval.v_string = get_cmdline_str();
3888}
3889
3890/*
3891 * "getcmdpos()" function
3892 */
3893 void
3894f_getcmdpos(typval_T *argvars UNUSED, typval_T *rettv)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003895{
Bram Moolenaar66b51422019-08-18 21:44:12 +02003896 cmdline_info_T *p = get_ccline_ptr();
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003897
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003898 rettv->vval.v_number = 0;
3899 if (p != NULL)
3900 rettv->vval.v_number = p->cmdpos + 1;
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003901}
3902
3903/*
3904 * Set the command line byte position to "pos". Zero is the first position.
3905 * Only works when the command line is being edited.
3906 * Returns 1 when failed, 0 when OK.
3907 */
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003908 static int
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003909set_cmdline_pos(
3910 int pos)
3911{
Bram Moolenaar66b51422019-08-18 21:44:12 +02003912 cmdline_info_T *p = get_ccline_ptr();
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003913
3914 if (p == NULL)
3915 return 1;
3916
3917 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
3918 * changed the command line. */
3919 if (pos < 0)
3920 new_cmdpos = 0;
3921 else
3922 new_cmdpos = pos;
3923 return 0;
3924}
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003925
3926/*
3927 * "setcmdpos()" function
3928 */
3929 void
3930f_setcmdpos(typval_T *argvars, typval_T *rettv)
3931{
3932 int pos = (int)tv_get_number(&argvars[0]) - 1;
3933
3934 if (pos >= 0)
3935 rettv->vval.v_number = set_cmdline_pos(pos);
3936}
3937
3938/*
3939 * "getcmdtype()" function
3940 */
3941 void
3942f_getcmdtype(typval_T *argvars UNUSED, typval_T *rettv)
3943{
3944 rettv->v_type = VAR_STRING;
3945 rettv->vval.v_string = alloc(2);
3946 if (rettv->vval.v_string != NULL)
3947 {
3948 rettv->vval.v_string[0] = get_cmdline_type();
3949 rettv->vval.v_string[1] = NUL;
3950 }
3951}
3952
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003953#endif
3954
3955#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
3956/*
3957 * Get the current command-line type.
3958 * Returns ':' or '/' or '?' or '@' or '>' or '-'
3959 * Only works when the command line is being edited.
3960 * Returns NUL when something is wrong.
3961 */
3962 int
3963get_cmdline_type(void)
3964{
Bram Moolenaar66b51422019-08-18 21:44:12 +02003965 cmdline_info_T *p = get_ccline_ptr();
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003966
3967 if (p == NULL)
3968 return NUL;
3969 if (p->cmdfirstc == NUL)
Bram Moolenaar064154c2016-03-19 22:50:43 +01003970 return
3971# ifdef FEAT_EVAL
3972 (p->input_fn) ? '@' :
3973# endif
3974 '-';
Bram Moolenaard293b2b2016-03-19 22:29:49 +01003975 return p->cmdfirstc;
3976}
3977#endif
3978
Bram Moolenaard7663c22019-08-06 21:59:57 +02003979/*
3980 * Return the first character of the current command line.
3981 */
3982 int
3983get_cmdline_firstc(void)
3984{
3985 return ccline.cmdfirstc;
3986}
3987
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988/*
3989 * Get indices "num1,num2" that specify a range within a list (not a range of
3990 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
3991 * Returns OK if parsed successfully, otherwise FAIL.
3992 */
3993 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003994get_list_range(char_u **str, int *num1, int *num2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995{
3996 int len;
3997 int first = FALSE;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02003998 varnumber_T num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999
4000 *str = skipwhite(*str);
4001 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
4002 {
Bram Moolenaar16e9b852019-05-19 19:59:35 +02004003 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004 *str += len;
4005 *num1 = (int)num;
4006 first = TRUE;
4007 }
4008 *str = skipwhite(*str);
4009 if (**str == ',') /* parse "to" part of range */
4010 {
4011 *str = skipwhite(*str + 1);
Bram Moolenaar16e9b852019-05-19 19:59:35 +02004012 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 if (len > 0)
4014 {
4015 *num2 = (int)num;
4016 *str = skipwhite(*str + len);
4017 }
4018 else if (!first) /* no number given at all */
4019 return FAIL;
4020 }
4021 else if (first) /* only one number given */
4022 *num2 = *num1;
4023 return OK;
4024}
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02004025
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026#if defined(FEAT_CMDWIN) || defined(PROTO)
4027/*
4028 * Open a window on the current command line and history. Allow editing in
4029 * the window. Returns when the window is closed.
4030 * Returns:
4031 * CR if the command is to be executed
4032 * Ctrl_C if it is to be abandoned
4033 * K_IGNORE if editing continues
4034 */
4035 static int
Bram Moolenaar3bab9392017-04-07 15:42:25 +02004036open_cmdwin(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037{
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004038 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 win_T *old_curwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004040 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041 win_T *wp;
4042 int i;
4043 linenr_T lnum;
4044 int histtype;
4045 garray_T winsizes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046 int save_restart_edit = restart_edit;
4047 int save_State = State;
4048 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00004049#ifdef FEAT_RIGHTLEFT
4050 int save_cmdmsg_rl = cmdmsg_rl;
4051#endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02004052#ifdef FEAT_FOLDING
4053 int save_KeyTyped;
4054#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055
4056 /* Can't do this recursively. Can't do it when typing a password. */
4057 if (cmdwin_type != 0
4058# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
4059 || cmdline_star > 0
4060# endif
4061 )
4062 {
4063 beep_flush();
4064 return K_IGNORE;
4065 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004066 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004068 // Save current window sizes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069 win_size_save(&winsizes);
4070
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01004071 // When using completion in Insert mode with <C-R>=<C-F> one can open the
4072 // command line window, but we don't want the popup menu then.
4073 pum_undisplay();
4074
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004075 // don't use a new tab page
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00004076 cmdmod.tab = 0;
Bram Moolenaar3bab9392017-04-07 15:42:25 +02004077 cmdmod.noswapfile = 1;
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00004078
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004079 // Create a window for the command-line buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
4081 {
4082 beep_flush();
4083 return K_IGNORE;
4084 }
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00004085 cmdwin_type = get_cmdline_type();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004087 // Create the command-line buffer empty.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00004088 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL);
Bram Moolenaar446cb832008-06-24 21:56:24 +00004089 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091 curbuf->b_p_ma = TRUE;
Bram Moolenaar876f6d72009-04-29 10:05:51 +00004092#ifdef FEAT_FOLDING
4093 curwin->w_p_fen = FALSE;
4094#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004095# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00004096 curwin->w_p_rl = cmdmsg_rl;
4097 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098# endif
Bram Moolenaar3368ea22010-09-21 16:56:35 +02004099 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004101 // Don't allow switching to another buffer.
Bram Moolenaar18141832017-06-25 21:17:25 +02004102 ++curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004104 // Showing the prompt may have set need_wait_return, reset it.
Bram Moolenaar46152342005-09-07 21:18:43 +00004105 need_wait_return = FALSE;
4106
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00004107 histtype = hist_char2type(cmdwin_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
4109 {
4110 if (p_wc == TAB)
4111 {
4112 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
4113 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
4114 }
4115 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
4116 }
Bram Moolenaar18141832017-06-25 21:17:25 +02004117 --curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004118
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004119 // Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
4120 // sets 'textwidth' to 78).
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00004121 curbuf->b_p_tw = 0;
4122
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004123 // Fill the buffer with the history.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 init_history();
Bram Moolenaard7663c22019-08-06 21:59:57 +02004125 if (get_hislen() > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 {
Bram Moolenaard7663c22019-08-06 21:59:57 +02004127 i = *get_hisidx(histtype);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128 if (i >= 0)
4129 {
4130 lnum = 0;
4131 do
4132 {
Bram Moolenaard7663c22019-08-06 21:59:57 +02004133 if (++i == get_hislen())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134 i = 0;
Bram Moolenaard7663c22019-08-06 21:59:57 +02004135 if (get_histentry(histtype)[i].hisstr != NULL)
4136 ml_append(lnum++, get_histentry(histtype)[i].hisstr,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137 (colnr_T)0, FALSE);
4138 }
Bram Moolenaard7663c22019-08-06 21:59:57 +02004139 while (i != *get_hisidx(histtype));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004140 }
4141 }
4142
4143 /* Replace the empty last line with the current command-line and put the
4144 * cursor there. */
4145 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
4146 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4147 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00004148 changed_line_abv_curs();
4149 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004150 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151
Bram Moolenaar23324a02019-10-01 17:39:04 +02004152 // No Ex mode here!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 exmode_active = 0;
4154
4155 State = NORMAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157
Bram Moolenaar23324a02019-10-01 17:39:04 +02004158 // Reset here so it can be set by a CmdWinEnter autocommand.
4159 cmdwin_result = 0;
4160
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004161 // Trigger CmdwinEnter autocommands.
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02004162 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINENTER);
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004163 if (restart_edit != 0) // autocmd with ":startinsert"
Bram Moolenaar5495cc92006-08-16 14:23:04 +00004164 stuffcharReadbuff(K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165
4166 i = RedrawingDisabled;
4167 RedrawingDisabled = 0;
4168
4169 /*
4170 * Call the main loop until <CR> or CTRL-C is typed.
4171 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004172 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173
4174 RedrawingDisabled = i;
4175
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004176# ifdef FEAT_FOLDING
Bram Moolenaar42f06f92014-08-17 17:24:07 +02004177 save_KeyTyped = KeyTyped;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004178# endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02004179
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004180 // Trigger CmdwinLeave autocommands.
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02004181 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINLEAVE);
Bram Moolenaar42f06f92014-08-17 17:24:07 +02004182
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004183# ifdef FEAT_FOLDING
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004184 // Restore KeyTyped in case it is modified by autocommands
Bram Moolenaar42f06f92014-08-17 17:24:07 +02004185 KeyTyped = save_KeyTyped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186# endif
4187
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188 cmdwin_type = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189 exmode_active = save_exmode;
4190
Bram Moolenaarf9821062008-06-20 16:31:07 +00004191 /* Safety check: The old window or buffer was deleted: It's a bug when
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192 * this happens! */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004193 if (!win_valid(old_curwin) || !bufref_valid(&old_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194 {
4195 cmdwin_result = Ctrl_C;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004196 emsg(_("E199: Active window or buffer deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197 }
4198 else
4199 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004200# if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201 /* autocmds may abort script processing */
4202 if (aborting() && cmdwin_result != K_IGNORE)
4203 cmdwin_result = Ctrl_C;
4204# endif
4205 /* Set the new command line from the cmdline buffer. */
4206 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00004207 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208 {
Bram Moolenaar46152342005-09-07 21:18:43 +00004209 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
4210
4211 if (histtype == HIST_CMD)
4212 {
4213 /* Execute the command directly. */
4214 ccline.cmdbuff = vim_strsave((char_u *)p);
4215 cmdwin_result = CAR;
4216 }
4217 else
4218 {
4219 /* First need to cancel what we were doing. */
4220 ccline.cmdbuff = NULL;
4221 stuffcharReadbuff(':');
4222 stuffReadbuff((char_u *)p);
4223 stuffcharReadbuff(CAR);
4224 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004225 }
4226 else if (cmdwin_result == K_XF2) /* :qa typed */
4227 {
4228 ccline.cmdbuff = vim_strsave((char_u *)"qa");
4229 cmdwin_result = CAR;
4230 }
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02004231 else if (cmdwin_result == Ctrl_C)
4232 {
4233 /* :q or :close, don't execute any command
4234 * and don't modify the cmd window. */
4235 ccline.cmdbuff = NULL;
4236 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237 else
4238 ccline.cmdbuff = vim_strsave(ml_get_curline());
4239 if (ccline.cmdbuff == NULL)
Bram Moolenaar5a15b6a2017-07-11 15:11:57 +02004240 {
4241 ccline.cmdbuff = vim_strsave((char_u *)"");
4242 ccline.cmdlen = 0;
4243 ccline.cmdbufflen = 1;
4244 ccline.cmdpos = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004245 cmdwin_result = Ctrl_C;
Bram Moolenaar5a15b6a2017-07-11 15:11:57 +02004246 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247 else
4248 {
4249 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
4250 ccline.cmdbufflen = ccline.cmdlen + 1;
4251 ccline.cmdpos = curwin->w_cursor.col;
4252 if (ccline.cmdpos > ccline.cmdlen)
4253 ccline.cmdpos = ccline.cmdlen;
4254 if (cmdwin_result == K_IGNORE)
4255 {
4256 set_cmdspos_cursor();
4257 redrawcmd();
4258 }
4259 }
4260
Bram Moolenaarfa67fbe2015-06-25 18:20:36 +02004261# ifdef FEAT_CONCEAL
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004262 // Avoid command-line window first character being concealed.
Bram Moolenaarfa67fbe2015-06-25 18:20:36 +02004263 curwin->w_p_cole = 0;
4264# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265 wp = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004266 set_bufref(&bufref, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267 win_goto(old_curwin);
4268 win_close(wp, TRUE);
Bram Moolenaar8006d692010-03-02 17:23:21 +01004269
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004270 // win_close() may have already wiped the buffer when 'bh' is
4271 // set to 'wipe'
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004272 if (bufref_valid(&bufref))
4273 close_buffer(NULL, bufref.br_buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004275 // Restore window sizes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004276 win_size_restore(&winsizes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 }
4278
4279 ga_clear(&winsizes);
4280 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00004281# ifdef FEAT_RIGHTLEFT
4282 cmdmsg_rl = save_cmdmsg_rl;
4283# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284
4285 State = save_State;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287
4288 return cmdwin_result;
4289}
Bram Moolenaar96e38a82019-09-09 18:35:33 +02004290#endif // FEAT_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291
4292/*
4293 * Used for commands that either take a simple command string argument, or:
4294 * cmd << endmarker
4295 * {script}
4296 * endmarker
4297 * Returns a pointer to allocated memory with {script} or NULL.
4298 */
4299 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004300script_get(exarg_T *eap, char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301{
4302 char_u *theline;
4303 char *end_pattern = NULL;
4304 char dot[] = ".";
4305 garray_T ga;
4306
4307 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
4308 return NULL;
4309
4310 ga_init2(&ga, 1, 0x400);
4311
4312 if (cmd[2] != NUL)
4313 end_pattern = (char *)skipwhite(cmd + 2);
4314 else
4315 end_pattern = dot;
4316
4317 for (;;)
4318 {
4319 theline = eap->getline(
4320#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00004321 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322#endif
Bram Moolenaare96a2492019-06-25 04:12:16 +02004323 NUL, eap->cookie, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324
4325 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
Bram Moolenaarbe555e72008-08-06 12:19:26 +00004326 {
4327 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004328 break;
Bram Moolenaarbe555e72008-08-06 12:19:26 +00004329 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330
4331 ga_concat(&ga, theline);
4332 ga_append(&ga, '\n');
4333 vim_free(theline);
4334 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00004335 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336
4337 return (char_u *)ga.ga_data;
4338}
Bram Moolenaarda6c0332019-09-01 16:01:30 +02004339
4340#if defined(FEAT_EVAL) || defined(PROTO)
4341/*
4342 * This function is used by f_input() and f_inputdialog() functions. The third
4343 * argument to f_input() specifies the type of completion to use at the
4344 * prompt. The third argument to f_inputdialog() specifies the value to return
4345 * when the user cancels the prompt.
4346 */
4347 void
4348get_user_input(
4349 typval_T *argvars,
4350 typval_T *rettv,
4351 int inputdialog,
4352 int secret)
4353{
4354 char_u *prompt = tv_get_string_chk(&argvars[0]);
4355 char_u *p = NULL;
4356 int c;
4357 char_u buf[NUMBUFLEN];
4358 int cmd_silent_save = cmd_silent;
4359 char_u *defstr = (char_u *)"";
4360 int xp_type = EXPAND_NOTHING;
4361 char_u *xp_arg = NULL;
4362
4363 rettv->v_type = VAR_STRING;
4364 rettv->vval.v_string = NULL;
4365
4366#ifdef NO_CONSOLE_INPUT
4367 // While starting up, there is no place to enter text. When running tests
4368 // with --not-a-term we assume feedkeys() will be used.
4369 if (no_console_input() && !is_not_a_term())
4370 return;
4371#endif
4372
4373 cmd_silent = FALSE; // Want to see the prompt.
4374 if (prompt != NULL)
4375 {
4376 // Only the part of the message after the last NL is considered as
4377 // prompt for the command line
4378 p = vim_strrchr(prompt, '\n');
4379 if (p == NULL)
4380 p = prompt;
4381 else
4382 {
4383 ++p;
4384 c = *p;
4385 *p = NUL;
4386 msg_start();
4387 msg_clr_eos();
4388 msg_puts_attr((char *)prompt, get_echo_attr());
4389 msg_didout = FALSE;
4390 msg_starthere();
4391 *p = c;
4392 }
4393 cmdline_row = msg_row;
4394
4395 if (argvars[1].v_type != VAR_UNKNOWN)
4396 {
4397 defstr = tv_get_string_buf_chk(&argvars[1], buf);
4398 if (defstr != NULL)
4399 stuffReadbuffSpec(defstr);
4400
4401 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN)
4402 {
4403 char_u *xp_name;
4404 int xp_namelen;
4405 long argt;
4406
4407 // input() with a third argument: completion
4408 rettv->vval.v_string = NULL;
4409
4410 xp_name = tv_get_string_buf_chk(&argvars[2], buf);
4411 if (xp_name == NULL)
4412 return;
4413
4414 xp_namelen = (int)STRLEN(xp_name);
4415
4416 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt,
4417 &xp_arg) == FAIL)
4418 return;
4419 }
4420 }
4421
4422 if (defstr != NULL)
4423 {
4424 int save_ex_normal_busy = ex_normal_busy;
4425
4426 ex_normal_busy = 0;
4427 rettv->vval.v_string =
4428 getcmdline_prompt(secret ? NUL : '@', p, get_echo_attr(),
4429 xp_type, xp_arg);
4430 ex_normal_busy = save_ex_normal_busy;
4431 }
4432 if (inputdialog && rettv->vval.v_string == NULL
4433 && argvars[1].v_type != VAR_UNKNOWN
4434 && argvars[2].v_type != VAR_UNKNOWN)
4435 rettv->vval.v_string = vim_strsave(tv_get_string_buf(
4436 &argvars[2], buf));
4437
4438 vim_free(xp_arg);
4439
4440 // since the user typed this, no need to wait for return
4441 need_wait_return = FALSE;
4442 msg_didout = FALSE;
4443 }
4444 cmd_silent = cmd_silent_save;
4445}
4446#endif