blob: ba6a403597dd6f41a1f5b9da7cb4399f12b14ca3 [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
16/*
17 * Variables shared between getcmdline(), redrawcmdline() and others.
18 * These need to be saved when using CTRL-R |, that's why they are in a
19 * structure.
20 */
21struct cmdline_info
22{
23 char_u *cmdbuff; /* pointer to command line buffer */
24 int cmdbufflen; /* length of cmdbuff */
25 int cmdlen; /* number of chars in command line */
26 int cmdpos; /* current cursor position */
27 int cmdspos; /* cursor column on screen */
Bram Moolenaar5ae636b2012-04-30 18:48:53 +020028 int cmdfirstc; /* ':', '/', '?', '=', '>' or NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +000029 int cmdindent; /* number of spaces before cmdline */
30 char_u *cmdprompt; /* message in front of cmdline */
31 int cmdattr; /* attributes for prompt */
32 int overstrike; /* Typing mode on the command line. Shared by
33 getcmdline() and put_on_cmdline(). */
Bram Moolenaard6e7cc62008-09-14 12:42:29 +000034 expand_T *xpc; /* struct being used for expansion, xp_pattern
35 may point into cmdbuff */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000036 int xp_context; /* type of expansion */
37# ifdef FEAT_EVAL
38 char_u *xp_arg; /* user-defined expansion arg */
Bram Moolenaar93db9752006-11-21 10:29:45 +000039 int input_fn; /* when TRUE Invoked for input() function */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000040# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000041};
42
Bram Moolenaard6e7cc62008-09-14 12:42:29 +000043/* The current cmdline_info. It is initialized in getcmdline() and after that
44 * used by other functions. When invoking getcmdline() recursively it needs
45 * to be saved with save_cmdline() and restored with restore_cmdline().
46 * TODO: make it local to getcmdline() and pass it around. */
47static struct cmdline_info ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +000048
49static int cmd_showtail; /* Only show path tail in lists ? */
50
51#ifdef FEAT_EVAL
52static int new_cmdpos; /* position set by set_cmdline_pos() */
53#endif
54
Bram Moolenaara92522f2017-07-15 15:21:38 +020055static int extra_char = NUL; /* extra character to display when redrawing
56 * the command line */
Bram Moolenaar6a77d262017-07-16 15:24:01 +020057static int extra_char_shift;
58
Bram Moolenaar071d4272004-06-13 20:20:40 +000059#ifdef FEAT_CMDHIST
60typedef struct hist_entry
61{
62 int hisnum; /* identifying number */
Bram Moolenaarb3049f42013-04-05 18:58:47 +020063 int viminfo; /* when TRUE hisstr comes from viminfo */
Bram Moolenaar071d4272004-06-13 20:20:40 +000064 char_u *hisstr; /* actual entry, separator char after the NUL */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +020065 time_t time_set; /* when it was typed, zero if unknown */
Bram Moolenaar071d4272004-06-13 20:20:40 +000066} histentry_T;
67
68static histentry_T *(history[HIST_COUNT]) = {NULL, NULL, NULL, NULL, NULL};
69static int hisidx[HIST_COUNT] = {-1, -1, -1, -1, -1}; /* lastused entry */
70static int hisnum[HIST_COUNT] = {0, 0, 0, 0, 0};
71 /* identifying (unique) number of newest history entry */
72static int hislen = 0; /* actual length of history tables */
73
Bram Moolenaard25c16e2016-01-29 22:13:30 +010074static int hist_char2type(int c);
Bram Moolenaar071d4272004-06-13 20:20:40 +000075
Bram Moolenaard25c16e2016-01-29 22:13:30 +010076static int in_history(int, char_u *, int, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000077# ifdef FEAT_EVAL
Bram Moolenaard25c16e2016-01-29 22:13:30 +010078static int calc_hist_idx(int histype, int num);
Bram Moolenaar071d4272004-06-13 20:20:40 +000079# endif
80#endif
81
82#ifdef FEAT_RIGHTLEFT
83static int cmd_hkmap = 0; /* Hebrew mapping during command line */
84#endif
85
86#ifdef FEAT_FKMAP
87static int cmd_fkmap = 0; /* Farsi mapping during command line */
88#endif
89
Bram Moolenaard25c16e2016-01-29 22:13:30 +010090static int cmdline_charsize(int idx);
91static void set_cmdspos(void);
92static void set_cmdspos_cursor(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000093#ifdef FEAT_MBYTE
Bram Moolenaard25c16e2016-01-29 22:13:30 +010094static void correct_cmdspos(int idx, int cells);
Bram Moolenaar071d4272004-06-13 20:20:40 +000095#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010096static void alloc_cmdbuff(int len);
97static int realloc_cmdbuff(int len);
98static void draw_cmdline(int start, int len);
99static void save_cmdline(struct cmdline_info *ccp);
100static void restore_cmdline(struct cmdline_info *ccp);
101static int cmdline_paste(int regname, int literally, int remcr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100103static void redrawcmd_preedit(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104#endif
105#ifdef FEAT_WILDMENU
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100106static void cmdline_del(int from);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100108static void redrawcmdprompt(void);
109static void cursorcmd(void);
110static int ccheck_abbr(int);
111static int nextwild(expand_T *xp, int type, int options, int escape);
112static void escape_fname(char_u **pp);
113static int showmatches(expand_T *xp, int wildmenu);
114static void set_expand_context(expand_T *xp);
115static int ExpandFromContext(expand_T *xp, char_u *, int *, char_u ***, int);
116static int expand_showtail(expand_T *xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117#ifdef FEAT_CMDL_COMPL
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100118static int expand_shellcmd(char_u *filepat, int *num_file, char_u ***file, int flagsarg);
Bram Moolenaar52f9c192016-03-13 13:24:45 +0100119static int ExpandRTDir(char_u *pat, int flags, int *num_file, char_u ***file, char *dirname[]);
Bram Moolenaar35ca0e72016-03-05 17:41:49 +0100120static int ExpandPackAddDir(char_u *pat, int *num_file, char_u ***file);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +0200121# ifdef FEAT_CMDHIST
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100122static char_u *get_history_arg(expand_T *xp, int idx);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +0200123# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100125static int ExpandUserDefined(expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file);
126static int ExpandUserList(expand_T *xp, int *num_file, char_u ***file);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127# endif
128#endif
Bram Moolenaar25a6df92013-04-06 14:29:00 +0200129#ifdef FEAT_CMDHIST
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100130static void clear_hist_entry(histentry_T *hisptr);
Bram Moolenaar25a6df92013-04-06 14:29:00 +0200131#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132
133#ifdef FEAT_CMDWIN
Bram Moolenaar3bab9392017-04-07 15:42:25 +0200134static int open_cmdwin(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135#endif
136
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200137#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
138static int
139#ifdef __BORLANDC__
140_RTLENTRYF
141#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100142sort_func_compare(const void *s1, const void *s2);
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200143#endif
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +0200144#ifdef FEAT_SEARCH_EXTRA
145static void set_search_match(pos_T *t);
146#endif
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200147
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200148
149#ifdef FEAT_AUTOCMD
150 static void
151trigger_cmd_autocmd(int typechar, int evt)
152{
153 char_u typestr[2];
154
155 typestr[0] = typechar;
156 typestr[1] = NUL;
157 apply_autocmds(evt, typestr, typestr, FALSE, curbuf);
158}
159#endif
160
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161/*
Bram Moolenaarf8e8c062017-10-22 14:44:17 +0200162 * Abandon the command line.
163 */
164 static void
165abandon_cmdline(void)
166{
167 vim_free(ccline.cmdbuff);
168 ccline.cmdbuff = NULL;
169 if (msg_scrolled == 0)
170 compute_cmdrow();
171 MSG("");
172 redraw_cmdline = TRUE;
173}
174
175/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176 * getcmdline() - accept a command line starting with firstc.
177 *
178 * firstc == ':' get ":" command line.
179 * firstc == '/' or '?' get search pattern
180 * firstc == '=' get expression
181 * firstc == '@' get text for input() function
182 * firstc == '>' get text for debug mode
183 * firstc == NUL get text for :insert command
184 * firstc == -1 like NUL, and break on CTRL-C
185 *
186 * The line is collected in ccline.cmdbuff, which is reallocated to fit the
187 * command line.
188 *
189 * Careful: getcmdline() can be called recursively!
190 *
191 * Return pointer to allocated string if there is a commandline, NULL
192 * otherwise.
193 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100195getcmdline(
196 int firstc,
197 long count UNUSED, /* only used for incremental search */
198 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199{
200 int c;
201 int i;
202 int j;
203 int gotesc = FALSE; /* TRUE when <ESC> just typed */
204 int do_abbr; /* when TRUE check for abbr. */
205#ifdef FEAT_CMDHIST
206 char_u *lookfor = NULL; /* string to match */
207 int hiscnt; /* current history line in use */
208 int histype; /* history type to be used */
209#endif
210#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaardda933d2016-09-03 21:04:58 +0200211 pos_T search_start; /* where 'incsearch' starts searching */
212 pos_T save_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213 colnr_T old_curswant;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200214 colnr_T init_curswant = curwin->w_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215 colnr_T old_leftcol;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200216 colnr_T init_leftcol = curwin->w_leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217 linenr_T old_topline;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200218 linenr_T init_topline = curwin->w_topline;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +0200219 pos_T match_start = curwin->w_cursor;
220 pos_T match_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221# ifdef FEAT_DIFF
222 int old_topfill;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200223 int init_topfill = curwin->w_topfill;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224# endif
225 linenr_T old_botline;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200226 linenr_T init_botline = curwin->w_botline;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227 int did_incsearch = FALSE;
228 int incsearch_postponed = FALSE;
229#endif
230 int did_wild_list = FALSE; /* did wild_list() recently */
231 int wim_index = 0; /* index in wim_flags[] */
232 int res;
233 int save_msg_scroll = msg_scroll;
234 int save_State = State; /* remember State when called */
235 int some_key_typed = FALSE; /* one of the keys was typed */
236#ifdef FEAT_MOUSE
237 /* mouse drag and release events are ignored, unless they are
238 * preceded with a mouse down event */
239 int ignore_drag_release = TRUE;
240#endif
241#ifdef FEAT_EVAL
242 int break_ctrl_c = FALSE;
243#endif
244 expand_T xpc;
245 long *b_im_ptr = NULL;
Bram Moolenaar4d850512017-02-09 18:25:14 +0100246#if defined(FEAT_WILDMENU) || defined(FEAT_EVAL) || defined(FEAT_SEARCH_EXTRA)
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000247 /* Everything that may work recursively should save and restore the
248 * current command line in save_ccline. That includes update_screen(), a
249 * custom status line may invoke ":normal". */
250 struct cmdline_info save_ccline;
251#endif
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200252#ifdef FEAT_AUTOCMD
253 int cmdline_type;
254#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256#ifdef FEAT_EVAL
257 if (firstc == -1)
258 {
259 firstc = NUL;
260 break_ctrl_c = TRUE;
261 }
262#endif
263#ifdef FEAT_RIGHTLEFT
264 /* start without Hebrew mapping for a command line */
265 if (firstc == ':' || firstc == '=' || firstc == '>')
266 cmd_hkmap = 0;
267#endif
268
269 ccline.overstrike = FALSE; /* always start in insert mode */
270#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100271 CLEAR_POS(&match_end);
Bram Moolenaardda933d2016-09-03 21:04:58 +0200272 save_cursor = curwin->w_cursor; /* may be restored later */
273 search_start = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274 old_curswant = curwin->w_curswant;
275 old_leftcol = curwin->w_leftcol;
276 old_topline = curwin->w_topline;
277# ifdef FEAT_DIFF
278 old_topfill = curwin->w_topfill;
279# endif
280 old_botline = curwin->w_botline;
281#endif
282
283 /*
284 * set some variables for redrawcmd()
285 */
286 ccline.cmdfirstc = (firstc == '@' ? 0 : firstc);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000287 ccline.cmdindent = (firstc > 0 ? indent : 0);
288
289 /* alloc initial ccline.cmdbuff */
290 alloc_cmdbuff(exmode_active ? 250 : indent + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291 if (ccline.cmdbuff == NULL)
292 return NULL; /* out of memory */
293 ccline.cmdlen = ccline.cmdpos = 0;
294 ccline.cmdbuff[0] = NUL;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +0100295 sb_text_start_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000297 /* autoindent for :insert and :append */
298 if (firstc <= 0)
299 {
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200300 vim_memset(ccline.cmdbuff, ' ', indent);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000301 ccline.cmdbuff[indent] = NUL;
302 ccline.cmdpos = indent;
303 ccline.cmdspos = indent;
304 ccline.cmdlen = indent;
305 }
306
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 ExpandInit(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000308 ccline.xpc = &xpc;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309
310#ifdef FEAT_RIGHTLEFT
311 if (curwin->w_p_rl && *curwin->w_p_rlc == 's'
312 && (firstc == '/' || firstc == '?'))
313 cmdmsg_rl = TRUE;
314 else
315 cmdmsg_rl = FALSE;
316#endif
317
318 redir_off = TRUE; /* don't redirect the typed command */
319 if (!cmd_silent)
320 {
321 i = msg_scrolled;
322 msg_scrolled = 0; /* avoid wait_return message */
323 gotocmdline(TRUE);
324 msg_scrolled += i;
325 redrawcmdprompt(); /* draw prompt or indent */
326 set_cmdspos();
327 }
328 xpc.xp_context = EXPAND_NOTHING;
329 xpc.xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000330#ifndef BACKSLASH_IN_FILENAME
331 xpc.xp_shell = FALSE;
332#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000334#if defined(FEAT_EVAL)
335 if (ccline.input_fn)
336 {
337 xpc.xp_context = ccline.xp_context;
338 xpc.xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +0000339# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000340 xpc.xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +0000341# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000342 }
343#endif
344
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345 /*
346 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when
347 * doing ":@0" when register 0 doesn't contain a CR.
348 */
349 msg_scroll = FALSE;
350
351 State = CMDLINE;
352
353 if (firstc == '/' || firstc == '?' || firstc == '@')
354 {
355 /* Use ":lmap" mappings for search pattern and input(). */
356 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT)
357 b_im_ptr = &curbuf->b_p_iminsert;
358 else
359 b_im_ptr = &curbuf->b_p_imsearch;
360 if (*b_im_ptr == B_IMODE_LMAP)
361 State |= LANGMAP;
362#ifdef USE_IM_CONTROL
363 im_set_active(*b_im_ptr == B_IMODE_IM);
364#endif
365 }
366#ifdef USE_IM_CONTROL
367 else if (p_imcmdline)
368 im_set_active(TRUE);
369#endif
370
371#ifdef FEAT_MOUSE
372 setmouse();
373#endif
374#ifdef CURSOR_SHAPE
375 ui_cursor_shape(); /* may show different cursor shape */
376#endif
377
Bram Moolenaarf4d11452005-12-02 00:46:37 +0000378 /* When inside an autocommand for writing "exiting" may be set and
379 * terminal mode set to cooked. Need to set raw mode here then. */
380 settmode(TMODE_RAW);
381
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200382#ifdef FEAT_AUTOCMD
383 /* Trigger CmdlineEnter autocommands. */
384 cmdline_type = firstc == NUL ? '-' : firstc;
385 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINEENTER);
386#endif
387
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388#ifdef FEAT_CMDHIST
389 init_history();
390 hiscnt = hislen; /* set hiscnt to impossible history value */
391 histype = hist_char2type(firstc);
392#endif
393
394#ifdef FEAT_DIGRAPHS
Bram Moolenaar3c65e312009-04-29 16:47:23 +0000395 do_digraph(-1); /* init digraph typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396#endif
397
Bram Moolenaar15a35c42014-06-25 12:26:46 +0200398 /* If something above caused an error, reset the flags, we do want to type
399 * and execute commands. Display may be messed up a bit. */
400 if (did_emsg)
401 redrawcmd();
402 did_emsg = FALSE;
403 got_int = FALSE;
404
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405 /*
406 * Collect the command string, handling editing keys.
407 */
408 for (;;)
409 {
Bram Moolenaar29b2d262006-09-10 19:07:28 +0000410 redir_off = TRUE; /* Don't redirect the typed command.
411 Repeated, because a ":redir" inside
412 completion may switch it on. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413#ifdef USE_ON_FLY_SCROLL
414 dont_scroll = FALSE; /* allow scrolling here */
415#endif
416 quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */
417
418 cursorcmd(); /* set the cursor on the right spot */
Bram Moolenaar30405d32008-01-02 20:55:27 +0000419
420 /* Get a character. Ignore K_IGNORE, it should not do anything, such
421 * as stop completion. */
422 do
423 {
424 c = safe_vgetc();
425 } while (c == K_IGNORE);
426
Bram Moolenaar071d4272004-06-13 20:20:40 +0000427 if (KeyTyped)
428 {
429 some_key_typed = TRUE;
430#ifdef FEAT_RIGHTLEFT
431 if (cmd_hkmap)
432 c = hkmap(c);
433# ifdef FEAT_FKMAP
434 if (cmd_fkmap)
435 c = cmdl_fkmap(c);
436# endif
437 if (cmdmsg_rl && !KeyStuffed)
438 {
439 /* Invert horizontal movements and operations. Only when
440 * typed by the user directly, not when the result of a
441 * mapping. */
442 switch (c)
443 {
444 case K_RIGHT: c = K_LEFT; break;
445 case K_S_RIGHT: c = K_S_LEFT; break;
446 case K_C_RIGHT: c = K_C_LEFT; break;
447 case K_LEFT: c = K_RIGHT; break;
448 case K_S_LEFT: c = K_S_RIGHT; break;
449 case K_C_LEFT: c = K_C_RIGHT; break;
450 }
451 }
452#endif
453 }
454
455 /*
456 * Ignore got_int when CTRL-C was typed here.
457 * Don't ignore it in :global, we really need to break then, e.g., for
458 * ":g/pat/normal /pat" (without the <CR>).
459 * Don't ignore it for the input() function.
460 */
461 if ((c == Ctrl_C
462#ifdef UNIX
463 || c == intr_char
464#endif
465 )
466#if defined(FEAT_EVAL) || defined(FEAT_CRYPT)
467 && firstc != '@'
468#endif
469#ifdef FEAT_EVAL
470 && !break_ctrl_c
471#endif
472 && !global_busy)
473 got_int = FALSE;
474
475#ifdef FEAT_CMDHIST
476 /* free old command line when finished moving around in the history
477 * list */
478 if (lookfor != NULL
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000479 && c != K_S_DOWN && c != K_S_UP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000480 && c != K_DOWN && c != K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481 && c != K_PAGEDOWN && c != K_PAGEUP
482 && c != K_KPAGEDOWN && c != K_KPAGEUP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000483 && c != K_LEFT && c != K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N)))
485 {
486 vim_free(lookfor);
487 lookfor = NULL;
488 }
489#endif
490
491 /*
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000492 * When there are matching completions to select <S-Tab> works like
493 * CTRL-P (unless 'wc' is <S-Tab>).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494 */
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000495 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496 c = Ctrl_P;
497
498#ifdef FEAT_WILDMENU
499 /* Special translations for 'wildmenu' */
500 if (did_wild_list && p_wmnu)
501 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000502 if (c == K_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503 c = Ctrl_P;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000504 else if (c == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 c = Ctrl_N;
506 }
507 /* Hitting CR after "emenu Name.": complete submenu */
508 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu
509 && ccline.cmdpos > 1
510 && ccline.cmdbuff[ccline.cmdpos - 1] == '.'
511 && ccline.cmdbuff[ccline.cmdpos - 2] != '\\'
512 && (c == '\n' || c == '\r' || c == K_KENTER))
513 c = K_DOWN;
514#endif
515
516 /* free expanded names when finished walking through matches */
517 if (xpc.xp_numfiles != -1
518 && !(c == p_wc && KeyTyped) && c != p_wcm
519 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A
520 && c != Ctrl_L)
521 {
522 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
523 did_wild_list = FALSE;
524#ifdef FEAT_WILDMENU
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000525 if (!p_wmnu || (c != K_UP && c != K_DOWN))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526#endif
527 xpc.xp_context = EXPAND_NOTHING;
528 wim_index = 0;
529#ifdef FEAT_WILDMENU
530 if (p_wmnu && wild_menu_showing != 0)
531 {
532 int skt = KeyTyped;
Bram Moolenaar1e015462005-09-25 22:16:38 +0000533 int old_RedrawingDisabled = RedrawingDisabled;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000534
535 if (ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000536 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537
538 if (wild_menu_showing == WM_SCROLLED)
539 {
540 /* Entered command line, move it up */
541 cmdline_row--;
542 redrawcmd();
543 }
544 else if (save_p_ls != -1)
545 {
546 /* restore 'laststatus' and 'winminheight' */
547 p_ls = save_p_ls;
548 p_wmh = save_p_wmh;
549 last_status(FALSE);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000550 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 update_screen(VALID); /* redraw the screen NOW */
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000552 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 redrawcmd();
554 save_p_ls = -1;
555 }
556 else
557 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558 win_redraw_last_status(topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 redraw_statuslines();
560 }
561 KeyTyped = skt;
562 wild_menu_showing = 0;
Bram Moolenaar1e015462005-09-25 22:16:38 +0000563 if (ccline.input_fn)
564 RedrawingDisabled = old_RedrawingDisabled;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 }
566#endif
567 }
568
569#ifdef FEAT_WILDMENU
570 /* Special translations for 'wildmenu' */
571 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu)
572 {
573 /* Hitting <Down> after "emenu Name.": complete submenu */
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000574 if (c == K_DOWN && ccline.cmdpos > 0
575 && ccline.cmdbuff[ccline.cmdpos - 1] == '.')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576 c = p_wc;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000577 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578 {
579 /* Hitting <Up>: Remove one submenu name in front of the
580 * cursor */
581 int found = FALSE;
582
583 j = (int)(xpc.xp_pattern - ccline.cmdbuff);
584 i = 0;
585 while (--j > 0)
586 {
587 /* check for start of menu name */
588 if (ccline.cmdbuff[j] == ' '
589 && ccline.cmdbuff[j - 1] != '\\')
590 {
591 i = j + 1;
592 break;
593 }
594 /* check for start of submenu name */
595 if (ccline.cmdbuff[j] == '.'
596 && ccline.cmdbuff[j - 1] != '\\')
597 {
598 if (found)
599 {
600 i = j + 1;
601 break;
602 }
603 else
604 found = TRUE;
605 }
606 }
607 if (i > 0)
608 cmdline_del(i);
609 c = p_wc;
610 xpc.xp_context = EXPAND_NOTHING;
611 }
612 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000613 if ((xpc.xp_context == EXPAND_FILES
Bram Moolenaar446cb832008-06-24 21:56:24 +0000614 || xpc.xp_context == EXPAND_DIRECTORIES
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000615 || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 {
617 char_u upseg[5];
618
619 upseg[0] = PATHSEP;
620 upseg[1] = '.';
621 upseg[2] = '.';
622 upseg[3] = PATHSEP;
623 upseg[4] = NUL;
624
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000625 if (c == K_DOWN
626 && ccline.cmdpos > 0
627 && ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP
628 && (ccline.cmdpos < 3
629 || ccline.cmdbuff[ccline.cmdpos - 2] != '.'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 || ccline.cmdbuff[ccline.cmdpos - 3] != '.'))
631 {
632 /* go down a directory */
633 c = p_wc;
634 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000635 else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636 {
637 /* If in a direct ancestor, strip off one ../ to go down */
638 int found = FALSE;
639
640 j = ccline.cmdpos;
641 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
642 while (--j > i)
643 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000644#ifdef FEAT_MBYTE
645 if (has_mbyte)
646 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
647#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000648 if (vim_ispathsep(ccline.cmdbuff[j]))
649 {
650 found = TRUE;
651 break;
652 }
653 }
654 if (found
655 && ccline.cmdbuff[j - 1] == '.'
656 && ccline.cmdbuff[j - 2] == '.'
657 && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2))
658 {
659 cmdline_del(j - 2);
660 c = p_wc;
661 }
662 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000663 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664 {
665 /* go up a directory */
666 int found = FALSE;
667
668 j = ccline.cmdpos - 1;
669 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
670 while (--j > i)
671 {
672#ifdef FEAT_MBYTE
673 if (has_mbyte)
674 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
675#endif
676 if (vim_ispathsep(ccline.cmdbuff[j])
677#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100678 && vim_strchr((char_u *)" *?[{`$%#",
679 ccline.cmdbuff[j + 1]) == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680#endif
681 )
682 {
683 if (found)
684 {
685 i = j + 1;
686 break;
687 }
688 else
689 found = TRUE;
690 }
691 }
692
693 if (!found)
694 j = i;
695 else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0)
696 j += 4;
697 else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0
698 && j == i)
699 j += 3;
700 else
701 j = 0;
702 if (j > 0)
703 {
704 /* TODO this is only for DOS/UNIX systems - need to put in
705 * machine-specific stuff here and in upseg init */
706 cmdline_del(j);
707 put_on_cmdline(upseg + 1, 3, FALSE);
708 }
709 else if (ccline.cmdpos > i)
710 cmdline_del(i);
Bram Moolenaar96a89642011-12-08 18:44:51 +0100711
712 /* Now complete in the new directory. Set KeyTyped in case the
713 * Up key came from a mapping. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714 c = p_wc;
Bram Moolenaar96a89642011-12-08 18:44:51 +0100715 KeyTyped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716 }
717 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718
719#endif /* FEAT_WILDMENU */
720
721 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert
722 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */
723 if (c == Ctrl_BSL)
724 {
725 ++no_mapping;
726 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000727 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728 --no_mapping;
729 --allow_keys;
Bram Moolenaarb7356812012-10-11 04:04:37 +0200730 /* CTRL-\ e doesn't work when obtaining an expression, unless it
731 * is in a mapping. */
732 if (c != Ctrl_N && c != Ctrl_G && (c != 'e'
733 || (ccline.cmdfirstc == '=' && KeyTyped)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 {
735 vungetc(c);
736 c = Ctrl_BSL;
737 }
738#ifdef FEAT_EVAL
739 else if (c == 'e')
740 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +0200741 char_u *p = NULL;
742 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743
744 /*
745 * Replace the command line with the result of an expression.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000746 * Need to save and restore the current command line, to be
747 * able to enter a new one...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 */
749 if (ccline.cmdpos == ccline.cmdlen)
750 new_cmdpos = 99999; /* keep it at the end */
751 else
752 new_cmdpos = ccline.cmdpos;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000753
754 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000756 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 if (c == '=')
758 {
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000759 /* Need to save and restore ccline. And set "textlock"
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000760 * to avoid nasty things like going to another buffer when
761 * evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000762 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000763 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 p = get_expr_line();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000765 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000766 restore_cmdline(&save_ccline);
767
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200768 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 {
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200770 len = (int)STRLEN(p);
771 if (realloc_cmdbuff(len + 1) == OK)
772 {
773 ccline.cmdlen = len;
774 STRCPY(ccline.cmdbuff, p);
775 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200777 /* Restore the cursor or use the position set with
778 * set_cmdline_pos(). */
779 if (new_cmdpos > ccline.cmdlen)
780 ccline.cmdpos = ccline.cmdlen;
781 else
782 ccline.cmdpos = new_cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200784 KeyTyped = FALSE; /* Don't do p_wc completion. */
785 redrawcmd();
786 goto cmdline_changed;
787 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 }
789 }
790 beep_flush();
Bram Moolenaar66b4bf82010-11-16 14:06:08 +0100791 got_int = FALSE; /* don't abandon the command line */
792 did_emsg = FALSE;
793 emsg_on_display = FALSE;
794 redrawcmd();
795 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 }
797#endif
798 else
799 {
800 if (c == Ctrl_G && p_im && restart_edit == 0)
801 restart_edit = 'a';
802 gotesc = TRUE; /* will free ccline.cmdbuff after putting it
803 in history */
804 goto returncmd; /* back to Normal mode */
805 }
806 }
807
808#ifdef FEAT_CMDWIN
809 if (c == cedit_key || c == K_CMDWIN)
810 {
Bram Moolenaar58da7072014-09-09 18:45:49 +0200811 if (ex_normal_busy == 0 && got_int == FALSE)
812 {
813 /*
814 * Open a window to edit the command line (and history).
815 */
Bram Moolenaar3bab9392017-04-07 15:42:25 +0200816 c = open_cmdwin();
Bram Moolenaar58da7072014-09-09 18:45:49 +0200817 some_key_typed = TRUE;
818 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 }
820# ifdef FEAT_DIGRAPHS
821 else
822# endif
823#endif
824#ifdef FEAT_DIGRAPHS
825 c = do_digraph(c);
826#endif
827
828 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC
829 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL)))
830 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000831 /* In Ex mode a backslash escapes a newline. */
832 if (exmode_active
833 && c != ESC
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000834 && ccline.cmdpos == ccline.cmdlen
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000835 && ccline.cmdpos > 0
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000836 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000838 if (c == K_KENTER)
839 c = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000841 else
842 {
843 gotesc = FALSE; /* Might have typed ESC previously, don't
844 truncate the cmdline now. */
845 if (ccheck_abbr(c + ABBR_OFF))
846 goto cmdline_changed;
847 if (!cmd_silent)
848 {
849 windgoto(msg_row, 0);
850 out_flush();
851 }
852 break;
853 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 }
855
856 /*
857 * Completion for 'wildchar' or 'wildcharm' key.
858 * - hitting <ESC> twice means: abandon command line.
859 * - wildcard expansion is only done when the 'wildchar' key is really
860 * typed, not when it comes from a macro
861 */
862 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm)
863 {
864 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */
865 {
866 /* if 'wildmode' contains "list" may still need to list */
867 if (xpc.xp_numfiles > 1
868 && !did_wild_list
869 && (wim_flags[wim_index] & WIM_LIST))
870 {
871 (void)showmatches(&xpc, FALSE);
872 redrawcmd();
873 did_wild_list = TRUE;
874 }
875 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100876 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
877 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100879 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
880 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881 else
882 res = OK; /* don't insert 'wildchar' now */
883 }
884 else /* typed p_wc first time */
885 {
886 wim_index = 0;
887 j = ccline.cmdpos;
888 /* if 'wildmode' first contains "longest", get longest
889 * common part */
890 if (wim_flags[0] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100891 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
892 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 else
Bram Moolenaarb3479632012-11-28 16:49:58 +0100894 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP,
895 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896
897 /* if interrupted while completing, behave like it failed */
898 if (got_int)
899 {
900 (void)vpeekc(); /* remove <C-C> from input stream */
901 got_int = FALSE; /* don't abandon the command line */
902 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
903#ifdef FEAT_WILDMENU
904 xpc.xp_context = EXPAND_NOTHING;
905#endif
906 goto cmdline_changed;
907 }
908
909 /* when more than one match, and 'wildmode' first contains
910 * "list", or no change and 'wildmode' contains "longest,list",
911 * list all matches */
912 if (res == OK && xpc.xp_numfiles > 1)
913 {
914 /* a "longest" that didn't do anything is skipped (but not
915 * "list:longest") */
916 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j)
917 wim_index = 1;
918 if ((wim_flags[wim_index] & WIM_LIST)
919#ifdef FEAT_WILDMENU
920 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0)
921#endif
922 )
923 {
924 if (!(wim_flags[0] & WIM_LONGEST))
925 {
926#ifdef FEAT_WILDMENU
927 int p_wmnu_save = p_wmnu;
928 p_wmnu = 0;
929#endif
Bram Moolenaarb3479632012-11-28 16:49:58 +0100930 /* remove match */
931 nextwild(&xpc, WILD_PREV, 0, firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932#ifdef FEAT_WILDMENU
933 p_wmnu = p_wmnu_save;
934#endif
935 }
936#ifdef FEAT_WILDMENU
937 (void)showmatches(&xpc, p_wmnu
938 && ((wim_flags[wim_index] & WIM_LIST) == 0));
939#else
940 (void)showmatches(&xpc, FALSE);
941#endif
942 redrawcmd();
943 did_wild_list = TRUE;
944 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100945 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
946 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100948 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
949 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 }
951 else
Bram Moolenaar165bc692015-07-21 17:53:25 +0200952 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953 }
954#ifdef FEAT_WILDMENU
955 else if (xpc.xp_numfiles == -1)
956 xpc.xp_context = EXPAND_NOTHING;
957#endif
958 }
959 if (wim_index < 3)
960 ++wim_index;
961 if (c == ESC)
962 gotesc = TRUE;
963 if (res == OK)
964 goto cmdline_changed;
965 }
966
967 gotesc = FALSE;
968
969 /* <S-Tab> goes to last match, in a clumsy way */
970 if (c == K_S_TAB && KeyTyped)
971 {
Bram Moolenaarb3479632012-11-28 16:49:58 +0100972 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0, firstc != '@') == OK
973 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK
974 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 goto cmdline_changed;
976 }
977
978 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */
979 c = NL;
980
981 do_abbr = TRUE; /* default: check for abbreviation */
982
983 /*
984 * Big switch for a typed command line character.
985 */
986 switch (c)
987 {
988 case K_BS:
989 case Ctrl_H:
990 case K_DEL:
991 case K_KDEL:
992 case Ctrl_W:
993#ifdef FEAT_FKMAP
994 if (cmd_fkmap && c == K_BS)
995 c = K_DEL;
996#endif
997 if (c == K_KDEL)
998 c = K_DEL;
999
1000 /*
1001 * delete current character is the same as backspace on next
1002 * character, except at end of line
1003 */
1004 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen)
1005 ++ccline.cmdpos;
1006#ifdef FEAT_MBYTE
1007 if (has_mbyte && c == K_DEL)
1008 ccline.cmdpos += mb_off_next(ccline.cmdbuff,
1009 ccline.cmdbuff + ccline.cmdpos);
1010#endif
1011 if (ccline.cmdpos > 0)
1012 {
1013 char_u *p;
1014
1015 j = ccline.cmdpos;
1016 p = ccline.cmdbuff + j;
1017#ifdef FEAT_MBYTE
1018 if (has_mbyte)
1019 {
1020 p = mb_prevptr(ccline.cmdbuff, p);
1021 if (c == Ctrl_W)
1022 {
1023 while (p > ccline.cmdbuff && vim_isspace(*p))
1024 p = mb_prevptr(ccline.cmdbuff, p);
1025 i = mb_get_class(p);
1026 while (p > ccline.cmdbuff && mb_get_class(p) == i)
1027 p = mb_prevptr(ccline.cmdbuff, p);
1028 if (mb_get_class(p) != i)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001029 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030 }
1031 }
1032 else
1033#endif
1034 if (c == Ctrl_W)
1035 {
1036 while (p > ccline.cmdbuff && vim_isspace(p[-1]))
1037 --p;
1038 i = vim_iswordc(p[-1]);
1039 while (p > ccline.cmdbuff && !vim_isspace(p[-1])
1040 && vim_iswordc(p[-1]) == i)
1041 --p;
1042 }
1043 else
1044 --p;
1045 ccline.cmdpos = (int)(p - ccline.cmdbuff);
1046 ccline.cmdlen -= j - ccline.cmdpos;
1047 i = ccline.cmdpos;
1048 while (i < ccline.cmdlen)
1049 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1050
1051 /* Truncate at the end, required for multi-byte chars. */
1052 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001053#ifdef FEAT_SEARCH_EXTRA
1054 if (ccline.cmdlen == 0)
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001055 {
Bram Moolenaardda933d2016-09-03 21:04:58 +02001056 search_start = save_cursor;
1057 /* save view settings, so that the screen
1058 * won't be restored at the wrong position */
1059 old_curswant = init_curswant;
1060 old_leftcol = init_leftcol;
1061 old_topline = init_topline;
1062# ifdef FEAT_DIFF
1063 old_topfill = init_topfill;
1064# endif
1065 old_botline = init_botline;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001066 }
1067#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 redrawcmd();
1069 }
1070 else if (ccline.cmdlen == 0 && c != Ctrl_W
1071 && ccline.cmdprompt == NULL && indent == 0)
1072 {
1073 /* In ex and debug mode it doesn't make sense to return. */
1074 if (exmode_active
1075#ifdef FEAT_EVAL
1076 || ccline.cmdfirstc == '>'
1077#endif
1078 )
1079 goto cmdline_not_changed;
1080
1081 vim_free(ccline.cmdbuff); /* no commandline to return */
1082 ccline.cmdbuff = NULL;
1083 if (!cmd_silent)
1084 {
1085#ifdef FEAT_RIGHTLEFT
1086 if (cmdmsg_rl)
1087 msg_col = Columns;
1088 else
1089#endif
1090 msg_col = 0;
1091 msg_putchar(' '); /* delete ':' */
1092 }
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001093#ifdef FEAT_SEARCH_EXTRA
1094 if (ccline.cmdlen == 0)
Bram Moolenaardda933d2016-09-03 21:04:58 +02001095 search_start = save_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001096#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 redraw_cmdline = TRUE;
1098 goto returncmd; /* back to cmd mode */
1099 }
1100 goto cmdline_changed;
1101
1102 case K_INS:
1103 case K_KINS:
1104#ifdef FEAT_FKMAP
1105 /* if Farsi mode set, we are in reverse insert mode -
1106 Do not change the mode */
1107 if (cmd_fkmap)
1108 beep_flush();
1109 else
1110#endif
1111 ccline.overstrike = !ccline.overstrike;
1112#ifdef CURSOR_SHAPE
1113 ui_cursor_shape(); /* may show different cursor shape */
1114#endif
1115 goto cmdline_not_changed;
1116
1117 case Ctrl_HAT:
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00001118 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119 {
1120 /* ":lmap" mappings exists, toggle use of mappings. */
1121 State ^= LANGMAP;
1122#ifdef USE_IM_CONTROL
1123 im_set_active(FALSE); /* Disable input method */
1124#endif
1125 if (b_im_ptr != NULL)
1126 {
1127 if (State & LANGMAP)
1128 *b_im_ptr = B_IMODE_LMAP;
1129 else
1130 *b_im_ptr = B_IMODE_NONE;
1131 }
1132 }
1133#ifdef USE_IM_CONTROL
1134 else
1135 {
1136 /* There are no ":lmap" mappings, toggle IM. When
1137 * 'imdisable' is set don't try getting the status, it's
1138 * always off. */
1139 if ((p_imdisable && b_im_ptr != NULL)
1140 ? *b_im_ptr == B_IMODE_IM : im_get_status())
1141 {
1142 im_set_active(FALSE); /* Disable input method */
1143 if (b_im_ptr != NULL)
1144 *b_im_ptr = B_IMODE_NONE;
1145 }
1146 else
1147 {
1148 im_set_active(TRUE); /* Enable input method */
1149 if (b_im_ptr != NULL)
1150 *b_im_ptr = B_IMODE_IM;
1151 }
1152 }
1153#endif
1154 if (b_im_ptr != NULL)
1155 {
1156 if (b_im_ptr == &curbuf->b_p_iminsert)
1157 set_iminsert_global();
1158 else
1159 set_imsearch_global();
1160 }
1161#ifdef CURSOR_SHAPE
1162 ui_cursor_shape(); /* may show different cursor shape */
1163#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001164#if defined(FEAT_KEYMAP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 /* Show/unshow value of 'keymap' in status lines later. */
1166 status_redraw_curbuf();
1167#endif
1168 goto cmdline_not_changed;
1169
1170/* case '@': only in very old vi */
1171 case Ctrl_U:
1172 /* delete all characters left of the cursor */
1173 j = ccline.cmdpos;
1174 ccline.cmdlen -= j;
1175 i = ccline.cmdpos = 0;
1176 while (i < ccline.cmdlen)
1177 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1178 /* Truncate at the end, required for multi-byte chars. */
1179 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001180#ifdef FEAT_SEARCH_EXTRA
1181 if (ccline.cmdlen == 0)
Bram Moolenaardda933d2016-09-03 21:04:58 +02001182 search_start = save_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001183#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 redrawcmd();
1185 goto cmdline_changed;
1186
1187#ifdef FEAT_CLIPBOARD
1188 case Ctrl_Y:
1189 /* Copy the modeless selection, if there is one. */
1190 if (clip_star.state != SELECT_CLEARED)
1191 {
1192 if (clip_star.state == SELECT_DONE)
1193 clip_copy_modeless_selection(TRUE);
1194 goto cmdline_not_changed;
1195 }
1196 break;
1197#endif
1198
1199 case ESC: /* get here if p_wc != ESC or when ESC typed twice */
1200 case Ctrl_C:
Bram Moolenaarf4d11452005-12-02 00:46:37 +00001201 /* In exmode it doesn't make sense to return. Except when
Bram Moolenaar7c626922005-02-07 22:01:03 +00001202 * ":normal" runs out of characters. */
1203 if (exmode_active
Bram Moolenaare2c38102016-01-31 14:55:40 +01001204 && (ex_normal_busy == 0 || typebuf.tb_len > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 goto cmdline_not_changed;
1206
1207 gotesc = TRUE; /* will free ccline.cmdbuff after
1208 putting it in history */
1209 goto returncmd; /* back to cmd mode */
1210
1211 case Ctrl_R: /* insert register */
1212#ifdef USE_ON_FLY_SCROLL
1213 dont_scroll = TRUE; /* disallow scrolling here */
1214#endif
1215 putcmdline('"', TRUE);
1216 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001217 i = c = plain_vgetc(); /* CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218 if (i == Ctrl_O)
1219 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */
1220 if (i == Ctrl_R)
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001221 c = plain_vgetc(); /* CTRL-R CTRL-R <char> */
Bram Moolenaara92522f2017-07-15 15:21:38 +02001222 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 --no_mapping;
1224#ifdef FEAT_EVAL
1225 /*
1226 * Insert the result of an expression.
1227 * Need to save the current command line, to be able to enter
1228 * a new one...
1229 */
1230 new_cmdpos = -1;
1231 if (c == '=')
1232 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 if (ccline.cmdfirstc == '=')/* can't do this recursively */
1234 {
1235 beep_flush();
1236 c = ESC;
1237 }
1238 else
1239 {
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001240 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001242 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243 }
1244 }
1245#endif
1246 if (c != ESC) /* use ESC to cancel inserting register */
1247 {
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001248 cmdline_paste(c, i == Ctrl_R, FALSE);
Bram Moolenaaracf53452005-12-17 22:06:52 +00001249
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001250#ifdef FEAT_EVAL
Bram Moolenaaracf53452005-12-17 22:06:52 +00001251 /* When there was a serious error abort getting the
1252 * command line. */
1253 if (aborting())
1254 {
1255 gotesc = TRUE; /* will free ccline.cmdbuff after
1256 putting it in history */
1257 goto returncmd; /* back to cmd mode */
1258 }
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001259#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 KeyTyped = FALSE; /* Don't do p_wc completion. */
1261#ifdef FEAT_EVAL
1262 if (new_cmdpos >= 0)
1263 {
1264 /* set_cmdline_pos() was used */
1265 if (new_cmdpos > ccline.cmdlen)
1266 ccline.cmdpos = ccline.cmdlen;
1267 else
1268 ccline.cmdpos = new_cmdpos;
1269 }
1270#endif
1271 }
1272 redrawcmd();
1273 goto cmdline_changed;
1274
1275 case Ctrl_D:
1276 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING)
1277 break; /* Use ^D as normal char instead */
1278
1279 redrawcmd();
1280 continue; /* don't do incremental search now */
1281
1282 case K_RIGHT:
1283 case K_S_RIGHT:
1284 case K_C_RIGHT:
1285 do
1286 {
1287 if (ccline.cmdpos >= ccline.cmdlen)
1288 break;
1289 i = cmdline_charsize(ccline.cmdpos);
1290 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows)
1291 break;
1292 ccline.cmdspos += i;
1293#ifdef FEAT_MBYTE
1294 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001295 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296 + ccline.cmdpos);
1297 else
1298#endif
1299 ++ccline.cmdpos;
1300 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001301 while ((c == K_S_RIGHT || c == K_C_RIGHT
1302 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 && ccline.cmdbuff[ccline.cmdpos] != ' ');
1304#ifdef FEAT_MBYTE
1305 if (has_mbyte)
1306 set_cmdspos_cursor();
1307#endif
1308 goto cmdline_not_changed;
1309
1310 case K_LEFT:
1311 case K_S_LEFT:
1312 case K_C_LEFT:
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001313 if (ccline.cmdpos == 0)
1314 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 do
1316 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 --ccline.cmdpos;
1318#ifdef FEAT_MBYTE
1319 if (has_mbyte) /* move to first byte of char */
1320 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff,
1321 ccline.cmdbuff + ccline.cmdpos);
1322#endif
1323 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos);
1324 }
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001325 while (ccline.cmdpos > 0
1326 && (c == K_S_LEFT || c == K_C_LEFT
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001327 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 && ccline.cmdbuff[ccline.cmdpos - 1] != ' ');
1329#ifdef FEAT_MBYTE
1330 if (has_mbyte)
1331 set_cmdspos_cursor();
1332#endif
1333 goto cmdline_not_changed;
1334
1335 case K_IGNORE:
Bram Moolenaar3bab9392017-04-07 15:42:25 +02001336 /* Ignore mouse event or open_cmdwin() result. */
Bram Moolenaar30405d32008-01-02 20:55:27 +00001337 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338
Bram Moolenaar4770d092006-01-12 23:22:24 +00001339#ifdef FEAT_GUI_W32
1340 /* On Win32 ignore <M-F4>, we get it when closing the window was
1341 * cancelled. */
1342 case K_F4:
1343 if (mod_mask == MOD_MASK_ALT)
1344 {
1345 redrawcmd(); /* somehow the cmdline is cleared */
1346 goto cmdline_not_changed;
1347 }
1348 break;
1349#endif
1350
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351#ifdef FEAT_MOUSE
1352 case K_MIDDLEDRAG:
1353 case K_MIDDLERELEASE:
1354 goto cmdline_not_changed; /* Ignore mouse */
1355
1356 case K_MIDDLEMOUSE:
1357# ifdef FEAT_GUI
1358 /* When GUI is active, also paste when 'mouse' is empty */
1359 if (!gui.in_use)
1360# endif
1361 if (!mouse_has(MOUSE_COMMAND))
1362 goto cmdline_not_changed; /* Ignore mouse */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001363# ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 if (clip_star.available)
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001365 cmdline_paste('*', TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 else
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001367# endif
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001368 cmdline_paste(0, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 redrawcmd();
1370 goto cmdline_changed;
1371
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001372# ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 case K_DROP:
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001374 cmdline_paste('~', TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 redrawcmd();
1376 goto cmdline_changed;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001377# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378
1379 case K_LEFTDRAG:
1380 case K_LEFTRELEASE:
1381 case K_RIGHTDRAG:
1382 case K_RIGHTRELEASE:
1383 /* Ignore drag and release events when the button-down wasn't
1384 * seen before. */
1385 if (ignore_drag_release)
1386 goto cmdline_not_changed;
1387 /* FALLTHROUGH */
1388 case K_LEFTMOUSE:
1389 case K_RIGHTMOUSE:
1390 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE)
1391 ignore_drag_release = TRUE;
1392 else
1393 ignore_drag_release = FALSE;
1394# ifdef FEAT_GUI
1395 /* When GUI is active, also move when 'mouse' is empty */
1396 if (!gui.in_use)
1397# endif
1398 if (!mouse_has(MOUSE_COMMAND))
1399 goto cmdline_not_changed; /* Ignore mouse */
1400# ifdef FEAT_CLIPBOARD
1401 if (mouse_row < cmdline_row && clip_star.available)
1402 {
1403 int button, is_click, is_drag;
1404
1405 /*
1406 * Handle modeless selection.
1407 */
1408 button = get_mouse_button(KEY2TERMCAP1(c),
1409 &is_click, &is_drag);
1410 if (mouse_model_popup() && button == MOUSE_LEFT
1411 && (mod_mask & MOD_MASK_SHIFT))
1412 {
1413 /* Translate shift-left to right button. */
1414 button = MOUSE_RIGHT;
1415 mod_mask &= ~MOD_MASK_SHIFT;
1416 }
1417 clip_modeless(button, is_click, is_drag);
1418 goto cmdline_not_changed;
1419 }
1420# endif
1421
1422 set_cmdspos();
1423 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen;
1424 ++ccline.cmdpos)
1425 {
1426 i = cmdline_charsize(ccline.cmdpos);
1427 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns
1428 && mouse_col < ccline.cmdspos % Columns + i)
1429 break;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001430# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431 if (has_mbyte)
1432 {
1433 /* Count ">" for double-wide char that doesn't fit. */
1434 correct_cmdspos(ccline.cmdpos, i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001435 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436 + ccline.cmdpos) - 1;
1437 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001438# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 ccline.cmdspos += i;
1440 }
1441 goto cmdline_not_changed;
1442
1443 /* Mouse scroll wheel: ignored here */
1444 case K_MOUSEDOWN:
1445 case K_MOUSEUP:
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001446 case K_MOUSELEFT:
1447 case K_MOUSERIGHT:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 /* Alternate buttons ignored here */
1449 case K_X1MOUSE:
1450 case K_X1DRAG:
1451 case K_X1RELEASE:
1452 case K_X2MOUSE:
1453 case K_X2DRAG:
1454 case K_X2RELEASE:
1455 goto cmdline_not_changed;
1456
1457#endif /* FEAT_MOUSE */
1458
1459#ifdef FEAT_GUI
1460 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */
1461 case K_LEFTRELEASE_NM:
1462 goto cmdline_not_changed;
1463
1464 case K_VER_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001465 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 {
1467 gui_do_scroll();
1468 redrawcmd();
1469 }
1470 goto cmdline_not_changed;
1471
1472 case K_HOR_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001473 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001475 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 redrawcmd();
1477 }
1478 goto cmdline_not_changed;
1479#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001480#ifdef FEAT_GUI_TABLINE
1481 case K_TABLINE:
1482 case K_TABMENU:
1483 /* Don't want to change any tabs here. Make sure the same tab
1484 * is still selected. */
1485 if (gui_use_tabline())
1486 gui_mch_set_curtab(tabpage_index(curtab));
1487 goto cmdline_not_changed;
1488#endif
1489
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 case K_SELECT: /* end of Select mode mapping - ignore */
1491 goto cmdline_not_changed;
1492
1493 case Ctrl_B: /* begin of command line */
1494 case K_HOME:
1495 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496 case K_S_HOME:
1497 case K_C_HOME:
1498 ccline.cmdpos = 0;
1499 set_cmdspos();
1500 goto cmdline_not_changed;
1501
1502 case Ctrl_E: /* end of command line */
1503 case K_END:
1504 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 case K_S_END:
1506 case K_C_END:
1507 ccline.cmdpos = ccline.cmdlen;
1508 set_cmdspos_cursor();
1509 goto cmdline_not_changed;
1510
1511 case Ctrl_A: /* all matches */
Bram Moolenaarb3479632012-11-28 16:49:58 +01001512 if (nextwild(&xpc, WILD_ALL, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 break;
1514 goto cmdline_changed;
1515
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001516 case Ctrl_L:
1517#ifdef FEAT_SEARCH_EXTRA
1518 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1519 {
1520 /* Add a character from under the cursor for 'incsearch' */
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001521 if (did_incsearch)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001522 {
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001523 curwin->w_cursor = match_end;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001524 if (!EQUAL_POS(curwin->w_cursor, search_start))
Bram Moolenaar93db9752006-11-21 10:29:45 +00001525 {
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001526 c = gchar_cursor();
1527 /* If 'ignorecase' and 'smartcase' are set and the
1528 * command line has no uppercase characters, convert
1529 * the character to lowercase */
1530 if (p_ic && p_scs
1531 && !pat_has_uppercase(ccline.cmdbuff))
1532 c = MB_TOLOWER(c);
1533 if (c != NUL)
Bram Moolenaar93db9752006-11-21 10:29:45 +00001534 {
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001535 if (c == firstc || vim_strchr((char_u *)(
Bram Moolenaara693d052017-06-29 22:23:06 +02001536 p_magic ? "\\~^$.*[" : "\\^$"), c)
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001537 != NULL)
1538 {
1539 /* put a backslash before special
1540 * characters */
1541 stuffcharReadbuff(c);
1542 c = '\\';
1543 }
1544 break;
Bram Moolenaar93db9752006-11-21 10:29:45 +00001545 }
Bram Moolenaar93db9752006-11-21 10:29:45 +00001546 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001547 }
1548 goto cmdline_not_changed;
1549 }
1550#endif
1551
1552 /* completion: longest common part */
Bram Moolenaarb3479632012-11-28 16:49:58 +01001553 if (nextwild(&xpc, WILD_LONGEST, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 break;
1555 goto cmdline_changed;
1556
1557 case Ctrl_N: /* next match */
1558 case Ctrl_P: /* previous match */
Bram Moolenaar7df0f632016-08-26 19:56:00 +02001559 if (xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 {
Bram Moolenaarb3479632012-11-28 16:49:58 +01001561 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT,
1562 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 break;
Bram Moolenaar11956692016-08-27 16:26:56 +02001564 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566#ifdef FEAT_CMDHIST
Bram Moolenaar2f40d122017-10-24 21:49:36 +02001567 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 case K_UP:
1569 case K_DOWN:
1570 case K_S_UP:
1571 case K_S_DOWN:
1572 case K_PAGEUP:
1573 case K_KPAGEUP:
1574 case K_PAGEDOWN:
1575 case K_KPAGEDOWN:
1576 if (hislen == 0 || firstc == NUL) /* no history */
1577 goto cmdline_not_changed;
1578
1579 i = hiscnt;
1580
1581 /* save current command string so it can be restored later */
1582 if (lookfor == NULL)
1583 {
1584 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL)
1585 goto cmdline_not_changed;
1586 lookfor[ccline.cmdpos] = NUL;
1587 }
1588
1589 j = (int)STRLEN(lookfor);
1590 for (;;)
1591 {
1592 /* one step backwards */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001593 if (c == K_UP|| c == K_S_UP || c == Ctrl_P
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001594 || c == K_PAGEUP || c == K_KPAGEUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595 {
1596 if (hiscnt == hislen) /* first time */
1597 hiscnt = hisidx[histype];
1598 else if (hiscnt == 0 && hisidx[histype] != hislen - 1)
1599 hiscnt = hislen - 1;
1600 else if (hiscnt != hisidx[histype] + 1)
1601 --hiscnt;
1602 else /* at top of list */
1603 {
1604 hiscnt = i;
1605 break;
1606 }
1607 }
1608 else /* one step forwards */
1609 {
1610 /* on last entry, clear the line */
1611 if (hiscnt == hisidx[histype])
1612 {
1613 hiscnt = hislen;
1614 break;
1615 }
1616
1617 /* not on a history line, nothing to do */
1618 if (hiscnt == hislen)
1619 break;
1620 if (hiscnt == hislen - 1) /* wrap around */
1621 hiscnt = 0;
1622 else
1623 ++hiscnt;
1624 }
1625 if (hiscnt < 0 || history[histype][hiscnt].hisstr == NULL)
1626 {
1627 hiscnt = i;
1628 break;
1629 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001630 if ((c != K_UP && c != K_DOWN)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001631 || hiscnt == i
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 || STRNCMP(history[histype][hiscnt].hisstr,
1633 lookfor, (size_t)j) == 0)
1634 break;
1635 }
1636
1637 if (hiscnt != i) /* jumped to other entry */
1638 {
1639 char_u *p;
1640 int len;
1641 int old_firstc;
1642
1643 vim_free(ccline.cmdbuff);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001644 xpc.xp_context = EXPAND_NOTHING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645 if (hiscnt == hislen)
1646 p = lookfor; /* back to the old one */
1647 else
1648 p = history[histype][hiscnt].hisstr;
1649
1650 if (histype == HIST_SEARCH
1651 && p != lookfor
1652 && (old_firstc = p[STRLEN(p) + 1]) != firstc)
1653 {
1654 /* Correct for the separator character used when
1655 * adding the history entry vs the one used now.
1656 * First loop: count length.
1657 * Second loop: copy the characters. */
1658 for (i = 0; i <= 1; ++i)
1659 {
1660 len = 0;
1661 for (j = 0; p[j] != NUL; ++j)
1662 {
1663 /* Replace old sep with new sep, unless it is
1664 * escaped. */
1665 if (p[j] == old_firstc
1666 && (j == 0 || p[j - 1] != '\\'))
1667 {
1668 if (i > 0)
1669 ccline.cmdbuff[len] = firstc;
1670 }
1671 else
1672 {
1673 /* Escape new sep, unless it is already
1674 * escaped. */
1675 if (p[j] == firstc
1676 && (j == 0 || p[j - 1] != '\\'))
1677 {
1678 if (i > 0)
1679 ccline.cmdbuff[len] = '\\';
1680 ++len;
1681 }
1682 if (i > 0)
1683 ccline.cmdbuff[len] = p[j];
1684 }
1685 ++len;
1686 }
1687 if (i == 0)
1688 {
1689 alloc_cmdbuff(len);
1690 if (ccline.cmdbuff == NULL)
1691 goto returncmd;
1692 }
1693 }
1694 ccline.cmdbuff[len] = NUL;
1695 }
1696 else
1697 {
1698 alloc_cmdbuff((int)STRLEN(p));
1699 if (ccline.cmdbuff == NULL)
1700 goto returncmd;
1701 STRCPY(ccline.cmdbuff, p);
1702 }
1703
1704 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
1705 redrawcmd();
1706 goto cmdline_changed;
1707 }
1708 beep_flush();
Bram Moolenaar11956692016-08-27 16:26:56 +02001709#endif
1710 goto cmdline_not_changed;
1711
Bram Moolenaar349e7d92016-09-03 20:04:34 +02001712#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar11956692016-08-27 16:26:56 +02001713 case Ctrl_G: /* next match */
1714 case Ctrl_T: /* previous match */
Bram Moolenaar11956692016-08-27 16:26:56 +02001715 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1716 {
1717 pos_T t;
Bram Moolenaarf8e8c062017-10-22 14:44:17 +02001718 int search_flags = SEARCH_KEEP + SEARCH_NOOF;
Bram Moolenaar11956692016-08-27 16:26:56 +02001719
Bram Moolenaar11956692016-08-27 16:26:56 +02001720 cursor_off();
1721 out_flush();
1722 if (c == Ctrl_G)
1723 {
1724 t = match_end;
1725 search_flags += SEARCH_COL;
1726 }
1727 else
1728 t = match_start;
1729 ++emsg_off;
1730 i = searchit(curwin, curbuf, &t,
1731 c == Ctrl_G ? FORWARD : BACKWARD,
1732 ccline.cmdbuff, count, search_flags,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001733 RE_SEARCH, 0, NULL, NULL);
Bram Moolenaar11956692016-08-27 16:26:56 +02001734 --emsg_off;
1735 if (i)
1736 {
Bram Moolenaardda933d2016-09-03 21:04:58 +02001737 search_start = match_start;
Bram Moolenaar11956692016-08-27 16:26:56 +02001738 match_end = t;
1739 match_start = t;
1740 if (c == Ctrl_T && firstc == '/')
1741 {
1742 /* move just before the current match, so that
1743 * when nv_search finishes the cursor will be
1744 * put back on the match */
Bram Moolenaardda933d2016-09-03 21:04:58 +02001745 search_start = t;
1746 (void)decl(&search_start);
Bram Moolenaar11956692016-08-27 16:26:56 +02001747 }
Bram Moolenaarda5116d2017-07-01 23:11:17 +02001748 else if (c == Ctrl_G && firstc == '?')
1749 {
1750 /* move just after the current match, so that
1751 * when nv_search finishes the cursor will be
1752 * put back on the match */
1753 search_start = t;
1754 (void)incl(&search_start);
1755 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001756 if (LT_POS(t, search_start) && c == Ctrl_G)
Bram Moolenaar11956692016-08-27 16:26:56 +02001757 {
1758 /* wrap around */
Bram Moolenaardda933d2016-09-03 21:04:58 +02001759 search_start = t;
Bram Moolenaar11956692016-08-27 16:26:56 +02001760 if (firstc == '?')
Bram Moolenaardda933d2016-09-03 21:04:58 +02001761 (void)incl(&search_start);
Bram Moolenaar11956692016-08-27 16:26:56 +02001762 else
Bram Moolenaardda933d2016-09-03 21:04:58 +02001763 (void)decl(&search_start);
Bram Moolenaar11956692016-08-27 16:26:56 +02001764 }
1765
1766 set_search_match(&match_end);
1767 curwin->w_cursor = match_start;
1768 changed_cline_bef_curs();
1769 update_topline();
1770 validate_cursor();
1771 highlight_match = TRUE;
1772 old_curswant = curwin->w_curswant;
1773 old_leftcol = curwin->w_leftcol;
1774 old_topline = curwin->w_topline;
1775# ifdef FEAT_DIFF
1776 old_topfill = curwin->w_topfill;
1777# endif
1778 old_botline = curwin->w_botline;
1779 update_screen(NOT_VALID);
1780 redrawcmdline();
1781 }
1782 else
1783 vim_beep(BO_ERROR);
Bram Moolenaar349e7d92016-09-03 20:04:34 +02001784 goto cmdline_not_changed;
Bram Moolenaar11956692016-08-27 16:26:56 +02001785 }
Bram Moolenaar349e7d92016-09-03 20:04:34 +02001786 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787#endif
1788
1789 case Ctrl_V:
1790 case Ctrl_Q:
1791#ifdef FEAT_MOUSE
1792 ignore_drag_release = TRUE;
1793#endif
1794 putcmdline('^', TRUE);
1795 c = get_literal(); /* get next (two) character(s) */
1796 do_abbr = FALSE; /* don't do abbreviation now */
Bram Moolenaara92522f2017-07-15 15:21:38 +02001797 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798#ifdef FEAT_MBYTE
1799 /* may need to remove ^ when composing char was typed */
1800 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent)
1801 {
1802 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
1803 msg_putchar(' ');
1804 cursorcmd();
1805 }
1806#endif
1807 break;
1808
1809#ifdef FEAT_DIGRAPHS
1810 case Ctrl_K:
1811#ifdef FEAT_MOUSE
1812 ignore_drag_release = TRUE;
1813#endif
1814 putcmdline('?', TRUE);
1815#ifdef USE_ON_FLY_SCROLL
1816 dont_scroll = TRUE; /* disallow scrolling here */
1817#endif
1818 c = get_digraph(TRUE);
Bram Moolenaara92522f2017-07-15 15:21:38 +02001819 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820 if (c != NUL)
1821 break;
1822
1823 redrawcmd();
1824 goto cmdline_not_changed;
1825#endif /* FEAT_DIGRAPHS */
1826
1827#ifdef FEAT_RIGHTLEFT
1828 case Ctrl__: /* CTRL-_: switch language mode */
1829 if (!p_ari)
1830 break;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001831# ifdef FEAT_FKMAP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832 if (p_altkeymap)
1833 {
1834 cmd_fkmap = !cmd_fkmap;
1835 if (cmd_fkmap) /* in Farsi always in Insert mode */
1836 ccline.overstrike = FALSE;
1837 }
1838 else /* Hebrew is default */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001839# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 cmd_hkmap = !cmd_hkmap;
1841 goto cmdline_not_changed;
1842#endif
1843
Bram Moolenaarabbc4482017-01-24 15:57:55 +01001844 case K_PS:
1845 bracketed_paste(PASTE_CMDLINE, FALSE, NULL);
1846 goto cmdline_changed;
1847
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 default:
1849#ifdef UNIX
1850 if (c == intr_char)
1851 {
1852 gotesc = TRUE; /* will free ccline.cmdbuff after
1853 putting it in history */
1854 goto returncmd; /* back to Normal mode */
1855 }
1856#endif
1857 /*
1858 * Normal character with no special meaning. Just set mod_mask
1859 * to 0x0 so that typing Shift-Space in the GUI doesn't enter
1860 * the string <S-Space>. This should only happen after ^V.
1861 */
1862 if (!IS_SPECIAL(c))
1863 mod_mask = 0x0;
1864 break;
1865 }
1866 /*
1867 * End of switch on command line character.
1868 * We come here if we have a normal character.
1869 */
1870
Bram Moolenaarede3e632013-06-23 16:16:19 +02001871 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && (ccheck_abbr(
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872#ifdef FEAT_MBYTE
1873 /* Add ABBR_OFF for characters above 0x100, this is
1874 * what check_abbr() expects. */
1875 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
1876#endif
Bram Moolenaarede3e632013-06-23 16:16:19 +02001877 c) || c == Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 goto cmdline_changed;
1879
1880 /*
1881 * put the character in the command line
1882 */
1883 if (IS_SPECIAL(c) || mod_mask != 0)
1884 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE);
1885 else
1886 {
1887#ifdef FEAT_MBYTE
1888 if (has_mbyte)
1889 {
1890 j = (*mb_char2bytes)(c, IObuff);
1891 IObuff[j] = NUL; /* exclude composing chars */
1892 put_on_cmdline(IObuff, j, TRUE);
1893 }
1894 else
1895#endif
1896 {
1897 IObuff[0] = c;
1898 put_on_cmdline(IObuff, 1, TRUE);
1899 }
1900 }
1901 goto cmdline_changed;
1902
1903/*
1904 * This part implements incremental searches for "/" and "?"
1905 * Jump to cmdline_not_changed when a character has been read but the command
1906 * line did not change. Then we only search and redraw if something changed in
1907 * the past.
1908 * Jump to cmdline_changed when the command line did change.
1909 * (Sorry for the goto's, I know it is ugly).
1910 */
1911cmdline_not_changed:
1912#ifdef FEAT_SEARCH_EXTRA
1913 if (!incsearch_postponed)
1914 continue;
1915#endif
1916
1917cmdline_changed:
1918#ifdef FEAT_SEARCH_EXTRA
1919 /*
1920 * 'incsearch' highlighting.
1921 */
1922 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1923 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001924 pos_T end_pos;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001925#ifdef FEAT_RELTIME
1926 proftime_T tm;
1927#endif
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001928
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929 /* if there is a character waiting, search and redraw later */
1930 if (char_avail())
1931 {
1932 incsearch_postponed = TRUE;
1933 continue;
1934 }
1935 incsearch_postponed = FALSE;
Bram Moolenaardda933d2016-09-03 21:04:58 +02001936 curwin->w_cursor = search_start; /* start at old position */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937
1938 /* If there is no command line, don't do anything */
1939 if (ccline.cmdlen == 0)
1940 i = 0;
1941 else
1942 {
1943 cursor_off(); /* so the user knows we're busy */
1944 out_flush();
1945 ++emsg_off; /* So it doesn't beep if bad expr */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001946#ifdef FEAT_RELTIME
1947 /* Set the time limit to half a second. */
1948 profile_setlimit(500L, &tm);
1949#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 i = do_search(NULL, firstc, ccline.cmdbuff, count,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001951 SEARCH_KEEP + SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK,
1952#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001953 &tm, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001954#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001955 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001956#endif
1957 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958 --emsg_off;
1959 /* if interrupted while searching, behave like it failed */
1960 if (got_int)
1961 {
1962 (void)vpeekc(); /* remove <C-C> from input stream */
1963 got_int = FALSE; /* don't abandon the command line */
1964 i = 0;
1965 }
1966 else if (char_avail())
1967 /* cancelled searching because a char was typed */
1968 incsearch_postponed = TRUE;
1969 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001970 if (i != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 highlight_match = TRUE; /* highlight position */
1972 else
1973 highlight_match = FALSE; /* remove highlight */
1974
1975 /* first restore the old curwin values, so the screen is
1976 * positioned in the same way as the actual search command */
1977 curwin->w_leftcol = old_leftcol;
1978 curwin->w_topline = old_topline;
1979# ifdef FEAT_DIFF
1980 curwin->w_topfill = old_topfill;
1981# endif
1982 curwin->w_botline = old_botline;
1983 changed_cline_bef_curs();
1984 update_topline();
1985
1986 if (i != 0)
1987 {
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001988 pos_T save_pos = curwin->w_cursor;
1989
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001990 match_start = curwin->w_cursor;
1991 set_search_match(&curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 validate_cursor();
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001993 end_pos = curwin->w_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001994 match_end = end_pos;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001995 curwin->w_cursor = save_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996 }
Bram Moolenaardb552d602006-03-23 22:59:57 +00001997 else
1998 end_pos = curwin->w_cursor; /* shutup gcc 4 */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001999
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 validate_cursor();
Bram Moolenaar27a23192006-09-14 09:27:26 +00002001 /* May redraw the status line to show the cursor position. */
2002 if (p_ru && curwin->w_status_height > 0)
2003 curwin->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00002005 save_cmdline(&save_ccline);
Bram Moolenaar600dddc2006-03-12 22:05:10 +00002006 update_screen(SOME_VALID);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00002007 restore_cmdline(&save_ccline);
2008
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002009 /* Leave it at the end to make CTRL-R CTRL-W work. */
2010 if (i != 0)
2011 curwin->w_cursor = end_pos;
2012
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 msg_starthere();
2014 redrawcmdline();
2015 did_incsearch = TRUE;
2016 }
2017#else /* FEAT_SEARCH_EXTRA */
2018 ;
2019#endif
2020
2021#ifdef FEAT_RIGHTLEFT
2022 if (cmdmsg_rl
2023# ifdef FEAT_ARABIC
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002024 || (p_arshape && !p_tbidi && enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025# endif
2026 )
2027 /* Always redraw the whole command line to fix shaping and
Bram Moolenaar58437e02012-02-22 17:58:04 +01002028 * right-left typing. Not efficient, but it works.
2029 * Do it only when there are no characters left to read
2030 * to avoid useless intermediate redraws. */
2031 if (vpeekc() == NUL)
2032 redrawcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033#endif
2034 }
2035
2036returncmd:
2037
2038#ifdef FEAT_RIGHTLEFT
2039 cmdmsg_rl = FALSE;
2040#endif
2041
2042#ifdef FEAT_FKMAP
2043 cmd_fkmap = 0;
2044#endif
2045
2046 ExpandCleanup(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002047 ccline.xpc = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048
2049#ifdef FEAT_SEARCH_EXTRA
2050 if (did_incsearch)
2051 {
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02002052 if (gotesc)
Bram Moolenaardda933d2016-09-03 21:04:58 +02002053 curwin->w_cursor = save_cursor;
2054 else
2055 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002056 if (!EQUAL_POS(save_cursor, search_start))
Bram Moolenaardda933d2016-09-03 21:04:58 +02002057 {
2058 /* put the '" mark at the original position */
2059 curwin->w_cursor = save_cursor;
2060 setpcmark();
2061 }
2062 curwin->w_cursor = search_start;
2063 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 curwin->w_curswant = old_curswant;
2065 curwin->w_leftcol = old_leftcol;
2066 curwin->w_topline = old_topline;
2067# ifdef FEAT_DIFF
2068 curwin->w_topfill = old_topfill;
2069# endif
2070 curwin->w_botline = old_botline;
2071 highlight_match = FALSE;
2072 validate_cursor(); /* needed for TAB */
Bram Moolenaar600dddc2006-03-12 22:05:10 +00002073 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 }
2075#endif
2076
2077 if (ccline.cmdbuff != NULL)
2078 {
2079 /*
2080 * Put line in history buffer (":" and "=" only when it was typed).
2081 */
2082#ifdef FEAT_CMDHIST
2083 if (ccline.cmdlen && firstc != NUL
2084 && (some_key_typed || histype == HIST_SEARCH))
2085 {
2086 add_to_history(histype, ccline.cmdbuff, TRUE,
2087 histype == HIST_SEARCH ? firstc : NUL);
2088 if (firstc == ':')
2089 {
2090 vim_free(new_last_cmdline);
2091 new_last_cmdline = vim_strsave(ccline.cmdbuff);
2092 }
2093 }
2094#endif
2095
Bram Moolenaarf8e8c062017-10-22 14:44:17 +02002096 if (gotesc)
2097 abandon_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 }
2099
2100 /*
2101 * If the screen was shifted up, redraw the whole screen (later).
2102 * If the line is too long, clear it, so ruler and shown command do
2103 * not get printed in the middle of it.
2104 */
2105 msg_check();
2106 msg_scroll = save_msg_scroll;
2107 redir_off = FALSE;
2108
2109 /* When the command line was typed, no need for a wait-return prompt. */
2110 if (some_key_typed)
2111 need_wait_return = FALSE;
2112
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02002113#ifdef FEAT_AUTOCMD
2114 /* Trigger CmdlineLeave autocommands. */
2115 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINELEAVE);
2116#endif
2117
Bram Moolenaar071d4272004-06-13 20:20:40 +00002118 State = save_State;
2119#ifdef USE_IM_CONTROL
2120 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP)
2121 im_save_status(b_im_ptr);
2122 im_set_active(FALSE);
2123#endif
2124#ifdef FEAT_MOUSE
2125 setmouse();
2126#endif
2127#ifdef CURSOR_SHAPE
2128 ui_cursor_shape(); /* may show different cursor shape */
2129#endif
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002130 sb_text_end_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002132 {
2133 char_u *p = ccline.cmdbuff;
2134
2135 /* Make ccline empty, getcmdline() may try to use it. */
2136 ccline.cmdbuff = NULL;
2137 return p;
2138 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139}
2140
2141#if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO)
2142/*
2143 * Get a command line with a prompt.
2144 * This is prepared to be called recursively from getcmdline() (e.g. by
2145 * f_input() when evaluating an expression from CTRL-R =).
2146 * Returns the command line in allocated memory, or NULL.
2147 */
2148 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002149getcmdline_prompt(
2150 int firstc,
2151 char_u *prompt, /* command line prompt */
2152 int attr, /* attributes for prompt */
2153 int xp_context, /* type of expansion */
2154 char_u *xp_arg) /* user-defined expansion argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155{
2156 char_u *s;
2157 struct cmdline_info save_ccline;
2158 int msg_col_save = msg_col;
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002159 int msg_silent_save = msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002161 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 ccline.cmdprompt = prompt;
2163 ccline.cmdattr = attr;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002164# ifdef FEAT_EVAL
2165 ccline.xp_context = xp_context;
2166 ccline.xp_arg = xp_arg;
2167 ccline.input_fn = (firstc == '@');
2168# endif
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002169 msg_silent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170 s = getcmdline(firstc, 1L, 0);
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002171 restore_cmdline(&save_ccline);
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002172 msg_silent = msg_silent_save;
Bram Moolenaar1db1f772011-08-17 16:25:48 +02002173 /* Restore msg_col, the prompt from input() may have changed it.
2174 * But only if called recursively and the commandline is therefore being
2175 * restored to an old one; if not, the input() prompt stays on the screen,
2176 * so we need its modified msg_col left intact. */
2177 if (ccline.cmdbuff != NULL)
2178 msg_col = msg_col_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179
2180 return s;
2181}
2182#endif
2183
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002184/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002185 * Return TRUE when the text must not be changed and we can't switch to
2186 * another window or buffer. Used when editing the command line, evaluating
2187 * 'balloonexpr', etc.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002188 */
2189 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002190text_locked(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002191{
2192#ifdef FEAT_CMDWIN
2193 if (cmdwin_type != 0)
2194 return TRUE;
2195#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002196 return textlock != 0;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002197}
2198
2199/*
2200 * Give an error message for a command that isn't allowed while the cmdline
2201 * window is open or editing the cmdline in another way.
2202 */
2203 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002204text_locked_msg(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002205{
Bram Moolenaar5a497892016-09-03 16:29:04 +02002206 EMSG(_(get_text_locked_msg()));
2207}
2208
2209 char_u *
2210get_text_locked_msg(void)
2211{
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002212#ifdef FEAT_CMDWIN
2213 if (cmdwin_type != 0)
Bram Moolenaar5a497892016-09-03 16:29:04 +02002214 return e_cmdwin;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002215#endif
Bram Moolenaar5a497892016-09-03 16:29:04 +02002216 return e_secure;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002217}
2218
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002219#if defined(FEAT_AUTOCMD) || defined(PROTO)
2220/*
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002221 * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is
2222 * and give an error message.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002223 */
2224 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002225curbuf_locked(void)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002226{
2227 if (curbuf_lock > 0)
2228 {
2229 EMSG(_("E788: Not allowed to edit another buffer now"));
2230 return TRUE;
2231 }
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002232 return allbuf_locked();
2233}
2234
2235/*
2236 * Check if "allbuf_lock" is set and return TRUE when it is and give an error
2237 * message.
2238 */
2239 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002240allbuf_locked(void)
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002241{
2242 if (allbuf_lock > 0)
2243 {
2244 EMSG(_("E811: Not allowed to change buffer information now"));
2245 return TRUE;
2246 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002247 return FALSE;
2248}
2249#endif
2250
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002252cmdline_charsize(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253{
2254#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2255 if (cmdline_star > 0) /* showing '*', always 1 position */
2256 return 1;
2257#endif
2258 return ptr2cells(ccline.cmdbuff + idx);
2259}
2260
2261/*
2262 * Compute the offset of the cursor on the command line for the prompt and
2263 * indent.
2264 */
2265 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002266set_cmdspos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002268 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269 ccline.cmdspos = 1 + ccline.cmdindent;
2270 else
2271 ccline.cmdspos = 0 + ccline.cmdindent;
2272}
2273
2274/*
2275 * Compute the screen position for the cursor on the command line.
2276 */
2277 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002278set_cmdspos_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279{
2280 int i, m, c;
2281
2282 set_cmdspos();
2283 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002284 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002286 if (m < 0) /* overflow, Columns or Rows at weird value */
2287 m = MAXCOL;
2288 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289 else
2290 m = MAXCOL;
2291 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
2292 {
2293 c = cmdline_charsize(i);
2294#ifdef FEAT_MBYTE
2295 /* Count ">" for double-wide multi-byte char that doesn't fit. */
2296 if (has_mbyte)
2297 correct_cmdspos(i, c);
2298#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00002299 /* If the cmdline doesn't fit, show cursor on last visible char.
2300 * Don't move the cursor itself, so we can still append. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301 if ((ccline.cmdspos += c) >= m)
2302 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 ccline.cmdspos -= c;
2304 break;
2305 }
2306#ifdef FEAT_MBYTE
2307 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002308 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309#endif
2310 }
2311}
2312
2313#ifdef FEAT_MBYTE
2314/*
2315 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2316 * character that doesn't fit, so that a ">" must be displayed.
2317 */
2318 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002319correct_cmdspos(int idx, int cells)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002321 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2323 && ccline.cmdspos % Columns + cells > Columns)
2324 ccline.cmdspos++;
2325}
2326#endif
2327
2328/*
2329 * Get an Ex command line for the ":" command.
2330 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002332getexline(
2333 int c, /* normally ':', NUL for ":append" */
2334 void *cookie UNUSED,
2335 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336{
2337 /* When executing a register, remove ':' that's in front of each line. */
2338 if (exec_from_reg && vpeekc() == ':')
2339 (void)vgetc();
2340 return getcmdline(c, 1L, indent);
2341}
2342
2343/*
2344 * Get an Ex command line for Ex mode.
2345 * In Ex mode we only use the OS supplied line editing features and no
2346 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002347 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002350getexmodeline(
2351 int promptc, /* normally ':', NUL for ":append" and '?' for
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002352 :s prompt */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002353 void *cookie UNUSED,
2354 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002356 garray_T line_ga;
2357 char_u *pend;
2358 int startcol = 0;
Bram Moolenaar76624232007-07-28 12:21:47 +00002359 int c1 = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002360 int escaped = FALSE; /* CTRL-V typed */
2361 int vcol = 0;
2362 char_u *p;
Bram Moolenaar76624232007-07-28 12:21:47 +00002363 int prev_char;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002364 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365
2366 /* Switch cursor on now. This avoids that it happens after the "\n", which
2367 * confuses the system function that computes tabstops. */
2368 cursor_on();
2369
2370 /* always start in column 0; write a newline if necessary */
2371 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002372 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002374 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002376 /* indent that is only displayed, not in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002377 if (p_prompt)
2378 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379 while (indent-- > 0)
2380 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382 }
2383
2384 ga_init2(&line_ga, 1, 30);
2385
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002386 /* autoindent for :insert and :append is in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002387 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002388 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002389 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002390 while (indent >= 8)
2391 {
2392 ga_append(&line_ga, TAB);
2393 msg_puts((char_u *)" ");
2394 indent -= 8;
2395 }
2396 while (indent-- > 0)
2397 {
2398 ga_append(&line_ga, ' ');
2399 msg_putchar(' ');
2400 }
2401 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002402 ++no_mapping;
2403 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002404
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 /*
2406 * Get the line, one character at a time.
2407 */
2408 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002409 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002411 long sw;
2412 char_u *s;
2413
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 if (ga_grow(&line_ga, 40) == FAIL)
2415 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416
Bram Moolenaarba748c82017-02-26 14:00:07 +01002417 /*
2418 * Get one character at a time.
2419 */
Bram Moolenaar76624232007-07-28 12:21:47 +00002420 prev_char = c1;
Bram Moolenaarba748c82017-02-26 14:00:07 +01002421
2422 /* Check for a ":normal" command and no more characters left. */
2423 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
2424 c1 = '\n';
2425 else
2426 c1 = vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427
2428 /*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002429 * Handle line editing.
2430 * Previously this was left to the system, putting the terminal in
2431 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002433 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002435 msg_putchar('\n');
2436 break;
2437 }
2438
Bram Moolenaarabbc4482017-01-24 15:57:55 +01002439 if (c1 == K_PS)
2440 {
2441 bracketed_paste(PASTE_EX, FALSE, &line_ga);
2442 goto redraw;
2443 }
2444
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002445 if (!escaped)
2446 {
2447 /* CR typed means "enter", which is NL */
2448 if (c1 == '\r')
2449 c1 = '\n';
2450
2451 if (c1 == BS || c1 == K_BS
2452 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002454 if (line_ga.ga_len > 0)
2455 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002456#ifdef FEAT_MBYTE
2457 if (has_mbyte)
2458 {
2459 p = (char_u *)line_ga.ga_data;
2460 p[line_ga.ga_len] = NUL;
2461 len = (*mb_head_off)(p, p + line_ga.ga_len - 1) + 1;
2462 line_ga.ga_len -= len;
2463 }
2464 else
2465#endif
2466 --line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002467 goto redraw;
2468 }
2469 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 }
2471
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002472 if (c1 == Ctrl_U)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002474 msg_col = startcol;
2475 msg_clr_eos();
2476 line_ga.ga_len = 0;
Bram Moolenaarda636572015-04-03 17:11:45 +02002477 goto redraw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002478 }
2479
2480 if (c1 == Ctrl_T)
2481 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002482 sw = get_sw_value(curbuf);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002483 p = (char_u *)line_ga.ga_data;
2484 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002485 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaar14f24742012-08-08 18:01:05 +02002486 indent += sw - indent % sw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002487add_indent:
Bram Moolenaar597a4222014-06-25 14:39:50 +02002488 while (get_indent_str(p, 8, FALSE) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002490 (void)ga_grow(&line_ga, 2); /* one more for the NUL */
Bram Moolenaarda636572015-04-03 17:11:45 +02002491 p = (char_u *)line_ga.ga_data;
2492 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002493 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2494 *s = ' ';
2495 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002497redraw:
2498 /* redraw the line */
2499 msg_col = startcol;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002500 vcol = 0;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002501 p = (char_u *)line_ga.ga_data;
2502 p[line_ga.ga_len] = NUL;
2503 while (p < (char_u *)line_ga.ga_data + line_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002505 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002506 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002507 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002509 msg_putchar(' ');
2510 } while (++vcol % 8);
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002511 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002513 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002515 len = MB_PTR2LEN(p);
2516 msg_outtrans_len(p, len);
2517 vcol += ptr2cells(p);
2518 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002519 }
2520 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002521 msg_clr_eos();
Bram Moolenaar76624232007-07-28 12:21:47 +00002522 windgoto(msg_row, msg_col);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002523 continue;
2524 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002526 if (c1 == Ctrl_D)
2527 {
2528 /* Delete one shiftwidth. */
2529 p = (char_u *)line_ga.ga_data;
2530 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002532 if (prev_char == '^')
2533 ex_keep_indent = TRUE;
2534 indent = 0;
2535 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536 }
2537 else
2538 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002539 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002540 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaarda636572015-04-03 17:11:45 +02002541 if (indent > 0)
2542 {
2543 --indent;
2544 indent -= indent % get_sw_value(curbuf);
2545 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02002547 while (get_indent_str(p, 8, FALSE) > indent)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002548 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002549 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002550 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2551 --line_ga.ga_len;
2552 }
2553 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002555
2556 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2557 {
2558 escaped = TRUE;
2559 continue;
2560 }
2561
2562 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
2563 if (IS_SPECIAL(c1))
2564 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002566
2567 if (IS_SPECIAL(c1))
2568 c1 = '?';
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002569#ifdef FEAT_MBYTE
2570 if (has_mbyte)
2571 len = (*mb_char2bytes)(c1,
2572 (char_u *)line_ga.ga_data + line_ga.ga_len);
2573 else
2574#endif
2575 {
2576 len = 1;
2577 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
2578 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002579 if (c1 == '\n')
2580 msg_putchar('\n');
2581 else if (c1 == TAB)
2582 {
2583 /* Don't use chartabsize(), 'ts' can be different */
2584 do
2585 {
2586 msg_putchar(' ');
2587 } while (++vcol % 8);
2588 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002591 msg_outtrans_len(
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002592 ((char_u *)line_ga.ga_data) + line_ga.ga_len, len);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002593 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594 }
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002595 line_ga.ga_len += len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002596 escaped = FALSE;
2597
2598 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002599 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002600
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002601 /* We are done when a NL is entered, but not when it comes after an
2602 * odd number of backslashes, that results in a NUL. */
2603 if (line_ga.ga_len > 0 && pend[-1] == '\n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604 {
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002605 int bcount = 0;
2606
2607 while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\')
2608 ++bcount;
2609
2610 if (bcount > 0)
2611 {
2612 /* Halve the number of backslashes: "\NL" -> "NUL", "\\NL" ->
2613 * "\NL", etc. */
2614 line_ga.ga_len -= (bcount + 1) / 2;
2615 pend -= (bcount + 1) / 2;
2616 pend[-1] = '\n';
2617 }
2618
2619 if ((bcount & 1) == 0)
2620 {
2621 --line_ga.ga_len;
2622 --pend;
2623 *pend = NUL;
2624 break;
2625 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626 }
2627 }
2628
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002629 --no_mapping;
2630 --allow_keys;
2631
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 /* make following messages go to the next line */
2633 msg_didout = FALSE;
2634 msg_col = 0;
2635 if (msg_row < Rows - 1)
2636 ++msg_row;
2637 emsg_on_display = FALSE; /* don't want ui_delay() */
2638
2639 if (got_int)
2640 ga_clear(&line_ga);
2641
2642 return (char_u *)line_ga.ga_data;
2643}
2644
Bram Moolenaare344bea2005-09-01 20:46:49 +00002645# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
2646 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647/*
2648 * Return TRUE if ccline.overstrike is on.
2649 */
2650 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002651cmdline_overstrike(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652{
2653 return ccline.overstrike;
2654}
2655
2656/*
2657 * Return TRUE if the cursor is at the end of the cmdline.
2658 */
2659 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002660cmdline_at_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661{
2662 return (ccline.cmdpos >= ccline.cmdlen);
2663}
2664#endif
2665
Bram Moolenaar9372a112005-12-06 19:59:18 +00002666#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667/*
2668 * Return the virtual column number at the current cursor position.
2669 * This is used by the IM code to obtain the start of the preedit string.
2670 */
2671 colnr_T
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002672cmdline_getvcol_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673{
2674 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
2675 return MAXCOL;
2676
2677# ifdef FEAT_MBYTE
2678 if (has_mbyte)
2679 {
2680 colnr_T col;
2681 int i = 0;
2682
2683 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002684 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685
2686 return col;
2687 }
2688 else
2689# endif
2690 return ccline.cmdpos;
2691}
2692#endif
2693
2694#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2695/*
2696 * If part of the command line is an IM preedit string, redraw it with
2697 * IM feedback attributes. The cursor position is restored after drawing.
2698 */
2699 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002700redrawcmd_preedit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701{
2702 if ((State & CMDLINE)
2703 && xic != NULL
Bram Moolenaar494c82a2006-09-14 08:25:49 +00002704 /* && im_get_status() doesn't work when using SCIM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 && !p_imdisable
2706 && im_is_preediting())
2707 {
2708 int cmdpos = 0;
2709 int cmdspos;
2710 int old_row;
2711 int old_col;
2712 colnr_T col;
2713
2714 old_row = msg_row;
2715 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002716 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717
2718# ifdef FEAT_MBYTE
2719 if (has_mbyte)
2720 {
2721 for (col = 0; col < preedit_start_col
2722 && cmdpos < ccline.cmdlen; ++col)
2723 {
2724 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002725 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726 }
2727 }
2728 else
2729# endif
2730 {
2731 cmdspos += preedit_start_col;
2732 cmdpos += preedit_start_col;
2733 }
2734
2735 msg_row = cmdline_row + (cmdspos / (int)Columns);
2736 msg_col = cmdspos % (int)Columns;
2737 if (msg_row >= Rows)
2738 msg_row = Rows - 1;
2739
2740 for (col = 0; cmdpos < ccline.cmdlen; ++col)
2741 {
2742 int char_len;
2743 int char_attr;
2744
2745 char_attr = im_get_feedback_attr(col);
2746 if (char_attr < 0)
2747 break; /* end of preedit string */
2748
2749# ifdef FEAT_MBYTE
2750 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002751 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752 else
2753# endif
2754 char_len = 1;
2755
2756 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
2757 cmdpos += char_len;
2758 }
2759
2760 msg_row = old_row;
2761 msg_col = old_col;
2762 }
2763}
2764#endif /* FEAT_XIM && FEAT_GUI_GTK */
2765
2766/*
2767 * Allocate a new command line buffer.
2768 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
2769 * Returns the new value of ccline.cmdbuff and ccline.cmdbufflen.
2770 */
2771 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002772alloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773{
2774 /*
2775 * give some extra space to avoid having to allocate all the time
2776 */
2777 if (len < 80)
2778 len = 100;
2779 else
2780 len += 20;
2781
2782 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */
2783 ccline.cmdbufflen = len;
2784}
2785
2786/*
2787 * Re-allocate the command line to length len + something extra.
2788 * return FAIL for failure, OK otherwise
2789 */
2790 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002791realloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792{
2793 char_u *p;
2794
Bram Moolenaar673b87b2010-08-13 19:12:07 +02002795 if (len < ccline.cmdbufflen)
2796 return OK; /* no need to resize */
2797
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 p = ccline.cmdbuff;
2799 alloc_cmdbuff(len); /* will get some more */
2800 if (ccline.cmdbuff == NULL) /* out of memory */
2801 {
2802 ccline.cmdbuff = p; /* keep the old one */
2803 return FAIL;
2804 }
Bram Moolenaar35a34232010-08-13 16:51:26 +02002805 /* There isn't always a NUL after the command, but it may need to be
2806 * there, thus copy up to the NUL and add a NUL. */
2807 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen);
2808 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002809 vim_free(p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002810
2811 if (ccline.xpc != NULL
2812 && ccline.xpc->xp_pattern != NULL
2813 && ccline.xpc->xp_context != EXPAND_NOTHING
2814 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL)
2815 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00002816 int i = (int)(ccline.xpc->xp_pattern - p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002817
2818 /* If xp_pattern points inside the old cmdbuff it needs to be adjusted
2819 * to point into the newly allocated memory. */
2820 if (i >= 0 && i <= ccline.cmdlen)
2821 ccline.xpc->xp_pattern = ccline.cmdbuff + i;
2822 }
2823
Bram Moolenaar071d4272004-06-13 20:20:40 +00002824 return OK;
2825}
2826
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002827#if defined(FEAT_ARABIC) || defined(PROTO)
2828static char_u *arshape_buf = NULL;
2829
2830# if defined(EXITFREE) || defined(PROTO)
2831 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002832free_cmdline_buf(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002833{
2834 vim_free(arshape_buf);
2835}
2836# endif
2837#endif
2838
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839/*
2840 * Draw part of the cmdline at the current cursor position. But draw stars
2841 * when cmdline_star is TRUE.
2842 */
2843 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002844draw_cmdline(int start, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845{
2846#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2847 int i;
2848
2849 if (cmdline_star > 0)
2850 for (i = 0; i < len; ++i)
2851 {
2852 msg_putchar('*');
2853# ifdef FEAT_MBYTE
2854 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002855 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856# endif
2857 }
2858 else
2859#endif
2860#ifdef FEAT_ARABIC
2861 if (p_arshape && !p_tbidi && enc_utf8 && len > 0)
2862 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002863 static int buflen = 0;
2864 char_u *p;
2865 int j;
2866 int newlen = 0;
2867 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00002868 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869 int prev_c = 0;
2870 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002871 int u8c;
2872 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874
2875 /*
2876 * Do arabic shaping into a temporary buffer. This is very
2877 * inefficient!
2878 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002879 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880 {
2881 /* Re-allocate the buffer. We keep it around to avoid a lot of
2882 * alloc()/free() calls. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002883 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002884 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002885 arshape_buf = alloc(buflen);
2886 if (arshape_buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887 return; /* out of memory */
2888 }
2889
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002890 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
2891 {
2892 /* Prepend a space to draw the leading composing char on. */
2893 arshape_buf[0] = ' ';
2894 newlen = 1;
2895 }
2896
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897 for (j = start; j < start + len; j += mb_l)
2898 {
2899 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002900 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002901 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902 if (ARABIC_CHAR(u8c))
2903 {
2904 /* Do Arabic shaping. */
2905 if (cmdmsg_rl)
2906 {
2907 /* displaying from right to left */
2908 pc = prev_c;
2909 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002910 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911 if (j + mb_l >= start + len)
2912 nc = NUL;
2913 else
2914 nc = utf_ptr2char(p + mb_l);
2915 }
2916 else
2917 {
2918 /* displaying from left to right */
2919 if (j + mb_l >= start + len)
2920 pc = NUL;
2921 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002922 {
2923 int pcc[MAX_MCO];
2924
2925 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002927 pc1 = pcc[0];
2928 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929 nc = prev_c;
2930 }
2931 prev_c = u8c;
2932
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002933 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002935 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002936 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002938 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
2939 if (u8cc[1] != 0)
2940 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002941 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942 }
2943 }
2944 else
2945 {
2946 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002947 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948 newlen += mb_l;
2949 }
2950 }
2951
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002952 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953 }
2954 else
2955#endif
2956 msg_outtrans_len(ccline.cmdbuff + start, len);
2957}
2958
2959/*
2960 * Put a character on the command line. Shifts the following text to the
2961 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
2962 * "c" must be printable (fit in one display cell)!
2963 */
2964 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002965putcmdline(int c, int shift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966{
2967 if (cmd_silent)
2968 return;
2969 msg_no_more = TRUE;
2970 msg_putchar(c);
2971 if (shift)
2972 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2973 msg_no_more = FALSE;
2974 cursorcmd();
Bram Moolenaar6a77d262017-07-16 15:24:01 +02002975 extra_char = c;
2976 extra_char_shift = shift;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977}
2978
2979/*
2980 * Undo a putcmdline(c, FALSE).
2981 */
2982 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002983unputcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984{
2985 if (cmd_silent)
2986 return;
2987 msg_no_more = TRUE;
2988 if (ccline.cmdlen == ccline.cmdpos)
2989 msg_putchar(' ');
Bram Moolenaar64fdf5c2012-06-06 12:03:06 +02002990#ifdef FEAT_MBYTE
2991 else if (has_mbyte)
2992 draw_cmdline(ccline.cmdpos,
2993 (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos));
2994#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 else
2996 draw_cmdline(ccline.cmdpos, 1);
2997 msg_no_more = FALSE;
2998 cursorcmd();
Bram Moolenaar6a77d262017-07-16 15:24:01 +02002999 extra_char = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000}
3001
3002/*
3003 * Put the given string, of the given length, onto the command line.
3004 * If len is -1, then STRLEN() is used to calculate the length.
3005 * If 'redraw' is TRUE then the new part of the command line, and the remaining
3006 * part will be redrawn, otherwise it will not. If this function is called
3007 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
3008 * called afterwards.
3009 */
3010 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003011put_on_cmdline(char_u *str, int len, int redraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012{
3013 int retval;
3014 int i;
3015 int m;
3016 int c;
3017
3018 if (len < 0)
3019 len = (int)STRLEN(str);
3020
3021 /* Check if ccline.cmdbuff needs to be longer */
3022 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003023 retval = realloc_cmdbuff(ccline.cmdlen + len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 else
3025 retval = OK;
3026 if (retval == OK)
3027 {
3028 if (!ccline.overstrike)
3029 {
3030 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
3031 ccline.cmdbuff + ccline.cmdpos,
3032 (size_t)(ccline.cmdlen - ccline.cmdpos));
3033 ccline.cmdlen += len;
3034 }
3035 else
3036 {
3037#ifdef FEAT_MBYTE
3038 if (has_mbyte)
3039 {
3040 /* Count nr of characters in the new string. */
3041 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003042 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043 ++m;
3044 /* Count nr of bytes in cmdline that are overwritten by these
3045 * characters. */
3046 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003047 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 --m;
3049 if (i < ccline.cmdlen)
3050 {
3051 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
3052 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
3053 ccline.cmdlen += ccline.cmdpos + len - i;
3054 }
3055 else
3056 ccline.cmdlen = ccline.cmdpos + len;
3057 }
3058 else
3059#endif
3060 if (ccline.cmdpos + len > ccline.cmdlen)
3061 ccline.cmdlen = ccline.cmdpos + len;
3062 }
3063 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
3064 ccline.cmdbuff[ccline.cmdlen] = NUL;
3065
3066#ifdef FEAT_MBYTE
3067 if (enc_utf8)
3068 {
3069 /* When the inserted text starts with a composing character,
3070 * backup to the character before it. There could be two of them.
3071 */
3072 i = 0;
3073 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3074 while (ccline.cmdpos > 0 && utf_iscomposing(c))
3075 {
3076 i = (*mb_head_off)(ccline.cmdbuff,
3077 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3078 ccline.cmdpos -= i;
3079 len += i;
3080 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3081 }
3082# ifdef FEAT_ARABIC
3083 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
3084 {
3085 /* Check the previous character for Arabic combining pair. */
3086 i = (*mb_head_off)(ccline.cmdbuff,
3087 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3088 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
3089 + ccline.cmdpos - i), c))
3090 {
3091 ccline.cmdpos -= i;
3092 len += i;
3093 }
3094 else
3095 i = 0;
3096 }
3097# endif
3098 if (i != 0)
3099 {
3100 /* Also backup the cursor position. */
3101 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
3102 ccline.cmdspos -= i;
3103 msg_col -= i;
3104 if (msg_col < 0)
3105 {
3106 msg_col += Columns;
3107 --msg_row;
3108 }
3109 }
3110 }
3111#endif
3112
3113 if (redraw && !cmd_silent)
3114 {
3115 msg_no_more = TRUE;
3116 i = cmdline_row;
Bram Moolenaar73dc59a2011-09-30 17:46:21 +02003117 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
3119 /* Avoid clearing the rest of the line too often. */
3120 if (cmdline_row != i || ccline.overstrike)
3121 msg_clr_eos();
3122 msg_no_more = FALSE;
3123 }
3124#ifdef FEAT_FKMAP
3125 /*
3126 * If we are in Farsi command mode, the character input must be in
3127 * Insert mode. So do not advance the cmdpos.
3128 */
3129 if (!cmd_fkmap)
3130#endif
3131 {
3132 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003133 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003135 if (m < 0) /* overflow, Columns or Rows at weird value */
3136 m = MAXCOL;
3137 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 else
3139 m = MAXCOL;
3140 for (i = 0; i < len; ++i)
3141 {
3142 c = cmdline_charsize(ccline.cmdpos);
3143#ifdef FEAT_MBYTE
3144 /* count ">" for a double-wide char that doesn't fit. */
3145 if (has_mbyte)
3146 correct_cmdspos(ccline.cmdpos, c);
3147#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00003148 /* Stop cursor at the end of the screen, but do increment the
3149 * insert position, so that entering a very long command
3150 * works, even though you can't see it. */
3151 if (ccline.cmdspos + c < m)
3152 ccline.cmdspos += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153#ifdef FEAT_MBYTE
3154 if (has_mbyte)
3155 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003156 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 if (c > len - i - 1)
3158 c = len - i - 1;
3159 ccline.cmdpos += c;
3160 i += c;
3161 }
3162#endif
3163 ++ccline.cmdpos;
3164 }
3165 }
3166 }
3167 if (redraw)
3168 msg_check();
3169 return retval;
3170}
3171
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003172static struct cmdline_info prev_ccline;
3173static int prev_ccline_used = FALSE;
3174
3175/*
3176 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
3177 * and overwrite it. But get_cmdline_str() may need it, thus make it
3178 * available globally in prev_ccline.
3179 */
3180 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003181save_cmdline(struct cmdline_info *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003182{
3183 if (!prev_ccline_used)
3184 {
3185 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info));
3186 prev_ccline_used = TRUE;
3187 }
3188 *ccp = prev_ccline;
3189 prev_ccline = ccline;
3190 ccline.cmdbuff = NULL;
3191 ccline.cmdprompt = NULL;
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003192 ccline.xpc = NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003193}
3194
3195/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003196 * Restore ccline after it has been saved with save_cmdline().
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003197 */
3198 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003199restore_cmdline(struct cmdline_info *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003200{
3201 ccline = prev_ccline;
3202 prev_ccline = *ccp;
3203}
3204
Bram Moolenaar5a305422006-04-28 22:38:25 +00003205#if defined(FEAT_EVAL) || defined(PROTO)
3206/*
3207 * Save the command line into allocated memory. Returns a pointer to be
3208 * passed to restore_cmdline_alloc() later.
3209 * Returns NULL when failed.
3210 */
3211 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003212save_cmdline_alloc(void)
Bram Moolenaar5a305422006-04-28 22:38:25 +00003213{
3214 struct cmdline_info *p;
3215
3216 p = (struct cmdline_info *)alloc((unsigned)sizeof(struct cmdline_info));
3217 if (p != NULL)
3218 save_cmdline(p);
3219 return (char_u *)p;
3220}
3221
3222/*
3223 * Restore the command line from the return value of save_cmdline_alloc().
3224 */
3225 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003226restore_cmdline_alloc(char_u *p)
Bram Moolenaar5a305422006-04-28 22:38:25 +00003227{
3228 if (p != NULL)
3229 {
3230 restore_cmdline((struct cmdline_info *)p);
3231 vim_free(p);
3232 }
3233}
3234#endif
3235
Bram Moolenaar8299df92004-07-10 09:47:34 +00003236/*
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003237 * Paste a yank register into the command line.
3238 * Used by CTRL-R command in command-line mode.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003239 * insert_reg() can't be used here, because special characters from the
3240 * register contents will be interpreted as commands.
3241 *
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003242 * Return FAIL for failure, OK otherwise.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003243 */
3244 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003245cmdline_paste(
3246 int regname,
3247 int literally, /* Insert text literally instead of "as typed" */
3248 int remcr) /* remove trailing CR */
Bram Moolenaar8299df92004-07-10 09:47:34 +00003249{
3250 long i;
3251 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003252 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003253 int allocated;
3254 struct cmdline_info save_ccline;
3255
3256 /* check for valid regname; also accept special characters for CTRL-R in
3257 * the command line */
3258 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
3259 && regname != Ctrl_A && !valid_yank_reg(regname, FALSE))
3260 return FAIL;
3261
3262 /* A register containing CTRL-R can cause an endless loop. Allow using
3263 * CTRL-C to break the loop. */
3264 line_breakcheck();
3265 if (got_int)
3266 return FAIL;
3267
3268#ifdef FEAT_CLIPBOARD
3269 regname = may_get_selection(regname);
3270#endif
3271
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003272 /* Need to save and restore ccline. And set "textlock" to avoid nasty
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003273 * things like going to another buffer when evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003274 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003275 ++textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003276 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003277 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003278 restore_cmdline(&save_ccline);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003279
3280 if (i)
3281 {
3282 /* Got the value of a special register in "arg". */
3283 if (arg == NULL)
3284 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003285
3286 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
3287 * part of the word. */
3288 p = arg;
3289 if (p_is && regname == Ctrl_W)
3290 {
3291 char_u *w;
3292 int len;
3293
3294 /* Locate start of last word in the cmd buffer. */
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003295 for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; )
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003296 {
3297#ifdef FEAT_MBYTE
3298 if (has_mbyte)
3299 {
3300 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
3301 if (!vim_iswordc(mb_ptr2char(w - len)))
3302 break;
3303 w -= len;
3304 }
3305 else
3306#endif
3307 {
3308 if (!vim_iswordc(w[-1]))
3309 break;
3310 --w;
3311 }
3312 }
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003313 len = (int)((ccline.cmdbuff + ccline.cmdpos) - w);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003314 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
3315 p += len;
3316 }
3317
3318 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003319 if (allocated)
3320 vim_free(arg);
3321 return OK;
3322 }
3323
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003324 return cmdline_paste_reg(regname, literally, remcr);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003325}
3326
3327/*
3328 * Put a string on the command line.
3329 * When "literally" is TRUE, insert literally.
3330 * When "literally" is FALSE, insert as typed, but don't leave the command
3331 * line.
3332 */
3333 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003334cmdline_paste_str(char_u *s, int literally)
Bram Moolenaar8299df92004-07-10 09:47:34 +00003335{
3336 int c, cv;
3337
3338 if (literally)
3339 put_on_cmdline(s, -1, TRUE);
3340 else
3341 while (*s != NUL)
3342 {
3343 cv = *s;
3344 if (cv == Ctrl_V && s[1])
3345 ++s;
3346#ifdef FEAT_MBYTE
3347 if (has_mbyte)
Bram Moolenaar48be32b2008-06-20 10:56:16 +00003348 c = mb_cptr2char_adv(&s);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003349 else
3350#endif
3351 c = *s++;
Bram Moolenaare79abdd2012-06-29 13:44:41 +02003352 if (cv == Ctrl_V || c == ESC || c == Ctrl_C
3353 || c == CAR || c == NL || c == Ctrl_L
Bram Moolenaar8299df92004-07-10 09:47:34 +00003354#ifdef UNIX
3355 || c == intr_char
3356#endif
3357 || (c == Ctrl_BSL && *s == Ctrl_N))
3358 stuffcharReadbuff(Ctrl_V);
3359 stuffcharReadbuff(c);
3360 }
3361}
3362
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363#ifdef FEAT_WILDMENU
3364/*
3365 * Delete characters on the command line, from "from" to the current
3366 * position.
3367 */
3368 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003369cmdline_del(int from)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370{
3371 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
3372 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3373 ccline.cmdlen -= ccline.cmdpos - from;
3374 ccline.cmdpos = from;
3375}
3376#endif
3377
3378/*
Bram Moolenaar89c79b92016-05-05 17:18:41 +02003379 * This function is called when the screen size changes and with incremental
3380 * search and in other situations where the command line may have been
3381 * overwritten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 */
3383 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003384redrawcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385{
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003386 redrawcmdline_ex(TRUE);
3387}
3388
3389 void
3390redrawcmdline_ex(int do_compute_cmdrow)
3391{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392 if (cmd_silent)
3393 return;
3394 need_wait_return = FALSE;
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003395 if (do_compute_cmdrow)
3396 compute_cmdrow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397 redrawcmd();
3398 cursorcmd();
3399}
3400
3401 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003402redrawcmdprompt(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403{
3404 int i;
3405
3406 if (cmd_silent)
3407 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003408 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409 msg_putchar(ccline.cmdfirstc);
3410 if (ccline.cmdprompt != NULL)
3411 {
3412 msg_puts_attr(ccline.cmdprompt, ccline.cmdattr);
3413 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
3414 /* do the reverse of set_cmdspos() */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003415 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 --ccline.cmdindent;
3417 }
3418 else
3419 for (i = ccline.cmdindent; i > 0; --i)
3420 msg_putchar(' ');
3421}
3422
3423/*
3424 * Redraw what is currently on the command line.
3425 */
3426 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003427redrawcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003428{
3429 if (cmd_silent)
3430 return;
3431
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003432 /* when 'incsearch' is set there may be no command line while redrawing */
3433 if (ccline.cmdbuff == NULL)
3434 {
3435 windgoto(cmdline_row, 0);
3436 msg_clr_eos();
3437 return;
3438 }
3439
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 msg_start();
3441 redrawcmdprompt();
3442
3443 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
3444 msg_no_more = TRUE;
3445 draw_cmdline(0, ccline.cmdlen);
3446 msg_clr_eos();
3447 msg_no_more = FALSE;
3448
3449 set_cmdspos_cursor();
Bram Moolenaara92522f2017-07-15 15:21:38 +02003450 if (extra_char != NUL)
Bram Moolenaar6a77d262017-07-16 15:24:01 +02003451 putcmdline(extra_char, extra_char_shift);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452
3453 /*
3454 * An emsg() before may have set msg_scroll. This is used in normal mode,
3455 * in cmdline mode we can reset them now.
3456 */
3457 msg_scroll = FALSE; /* next message overwrites cmdline */
3458
3459 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
3460 * in cmdline mode */
3461 skip_redraw = FALSE;
3462}
3463
3464 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003465compute_cmdrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003467 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 cmdline_row = Rows - 1;
3469 else
3470 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
Bram Moolenaare0de17d2017-09-24 16:24:34 +02003471 + lastwin->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472}
3473
3474 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003475cursorcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003476{
3477 if (cmd_silent)
3478 return;
3479
3480#ifdef FEAT_RIGHTLEFT
3481 if (cmdmsg_rl)
3482 {
3483 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3484 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3485 if (msg_row <= 0)
3486 msg_row = Rows - 1;
3487 }
3488 else
3489#endif
3490 {
3491 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3492 msg_col = ccline.cmdspos % (int)Columns;
3493 if (msg_row >= Rows)
3494 msg_row = Rows - 1;
3495 }
3496
3497 windgoto(msg_row, msg_col);
3498#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar5c6dbcb2017-08-30 22:00:20 +02003499 if (p_imst == IM_ON_THE_SPOT)
3500 redrawcmd_preedit();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501#endif
3502#ifdef MCH_CURSOR_SHAPE
3503 mch_update_cursor();
3504#endif
3505}
3506
3507 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003508gotocmdline(int clr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509{
3510 msg_start();
3511#ifdef FEAT_RIGHTLEFT
3512 if (cmdmsg_rl)
3513 msg_col = Columns - 1;
3514 else
3515#endif
3516 msg_col = 0; /* always start in column 0 */
3517 if (clr) /* clear the bottom line(s) */
3518 msg_clr_eos(); /* will reset clear_cmdline */
3519 windgoto(cmdline_row, 0);
3520}
3521
3522/*
3523 * Check the word in front of the cursor for an abbreviation.
3524 * Called when the non-id character "c" has been entered.
3525 * When an abbreviation is recognized it is removed from the text with
3526 * backspaces and the replacement string is inserted, followed by "c".
3527 */
3528 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003529ccheck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530{
3531 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
3532 return FALSE;
3533
3534 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, 0);
3535}
3536
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003537#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3538 static int
3539#ifdef __BORLANDC__
3540_RTLENTRYF
3541#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003542sort_func_compare(const void *s1, const void *s2)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003543{
3544 char_u *p1 = *(char_u **)s1;
3545 char_u *p2 = *(char_u **)s2;
3546
3547 if (*p1 != '<' && *p2 == '<') return -1;
3548 if (*p1 == '<' && *p2 != '<') return 1;
3549 return STRCMP(p1, p2);
3550}
3551#endif
3552
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553/*
3554 * Return FAIL if this is not an appropriate context in which to do
3555 * completion of anything, return OK if it is (even if there are no matches).
3556 * For the caller, this means that the character is just passed through like a
3557 * normal character (instead of being expanded). This allows :s/^I^D etc.
3558 */
3559 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003560nextwild(
3561 expand_T *xp,
3562 int type,
3563 int options, /* extra options for ExpandOne() */
3564 int escape) /* if TRUE, escape the returned matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565{
3566 int i, j;
3567 char_u *p1;
3568 char_u *p2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 int difflen;
3570 int v;
3571
3572 if (xp->xp_numfiles == -1)
3573 {
3574 set_expand_context(xp);
3575 cmd_showtail = expand_showtail(xp);
3576 }
3577
3578 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
3579 {
3580 beep_flush();
3581 return OK; /* Something illegal on command line */
3582 }
3583 if (xp->xp_context == EXPAND_NOTHING)
3584 {
3585 /* Caller can use the character as a normal char instead */
3586 return FAIL;
3587 }
3588
3589 MSG_PUTS("..."); /* show that we are busy */
3590 out_flush();
3591
3592 i = (int)(xp->xp_pattern - ccline.cmdbuff);
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003593 xp->xp_pattern_len = ccline.cmdpos - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003594
3595 if (type == WILD_NEXT || type == WILD_PREV)
3596 {
3597 /*
3598 * Get next/previous match for a previous expanded pattern.
3599 */
3600 p2 = ExpandOne(xp, NULL, NULL, 0, type);
3601 }
3602 else
3603 {
3604 /*
3605 * Translate string into pattern and expand it.
3606 */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003607 if ((p1 = addstar(xp->xp_pattern, xp->xp_pattern_len,
3608 xp->xp_context)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 p2 = NULL;
3610 else
3611 {
Bram Moolenaar94950a92010-12-02 16:01:29 +01003612 int use_options = options |
Bram Moolenaarb3479632012-11-28 16:49:58 +01003613 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT;
3614 if (escape)
3615 use_options |= WILD_ESCAPE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01003616
3617 if (p_wic)
3618 use_options += WILD_ICASE;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003619 p2 = ExpandOne(xp, p1,
3620 vim_strnsave(&ccline.cmdbuff[i], xp->xp_pattern_len),
Bram Moolenaar94950a92010-12-02 16:01:29 +01003621 use_options, type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622 vim_free(p1);
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003623 /* longest match: make sure it is not shorter, happens with :help */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624 if (p2 != NULL && type == WILD_LONGEST)
3625 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003626 for (j = 0; j < xp->xp_pattern_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627 if (ccline.cmdbuff[i + j] == '*'
3628 || ccline.cmdbuff[i + j] == '?')
3629 break;
3630 if ((int)STRLEN(p2) < j)
3631 {
3632 vim_free(p2);
3633 p2 = NULL;
3634 }
3635 }
3636 }
3637 }
3638
3639 if (p2 != NULL && !got_int)
3640 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003641 difflen = (int)STRLEN(p2) - xp->xp_pattern_len;
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003642 if (ccline.cmdlen + difflen + 4 > ccline.cmdbufflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003644 v = realloc_cmdbuff(ccline.cmdlen + difflen + 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003645 xp->xp_pattern = ccline.cmdbuff + i;
3646 }
3647 else
3648 v = OK;
3649 if (v == OK)
3650 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003651 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen],
3652 &ccline.cmdbuff[ccline.cmdpos],
3653 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3654 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 ccline.cmdlen += difflen;
3656 ccline.cmdpos += difflen;
3657 }
3658 }
3659 vim_free(p2);
3660
3661 redrawcmd();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003662 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663
3664 /* When expanding a ":map" command and no matches are found, assume that
3665 * the key is supposed to be inserted literally */
3666 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL)
3667 return FAIL;
3668
3669 if (xp->xp_numfiles <= 0 && p2 == NULL)
3670 beep_flush();
3671 else if (xp->xp_numfiles == 1)
3672 /* free expanded pattern */
3673 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
3674
3675 return OK;
3676}
3677
3678/*
3679 * Do wildcard expansion on the string 'str'.
3680 * Chars that should not be expanded must be preceded with a backslash.
Bram Moolenaarf9821062008-06-20 16:31:07 +00003681 * Return a pointer to allocated memory containing the new string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 * Return NULL for failure.
3683 *
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003684 * "orig" is the originally expanded string, copied to allocated memory. It
3685 * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or
3686 * WILD_PREV "orig" should be NULL.
3687 *
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003688 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode"
3689 * is WILD_EXPAND_FREE or WILD_ALL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690 *
3691 * mode = WILD_FREE: just free previously expanded matches
3692 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches
3693 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches
3694 * mode = WILD_NEXT: use next match in multiple match, wrap to first
3695 * mode = WILD_PREV: use previous match in multiple match, wrap to first
3696 * mode = WILD_ALL: return all matches concatenated
3697 * mode = WILD_LONGEST: return longest matched part
Bram Moolenaar146e9c32012-03-07 19:18:23 +01003698 * mode = WILD_ALL_KEEP: get all matches, keep matches
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699 *
3700 * options = WILD_LIST_NOTFOUND: list entries without a match
3701 * options = WILD_HOME_REPLACE: do home_replace() for buffer names
3702 * options = WILD_USE_NL: Use '\n' for WILD_ALL
3703 * options = WILD_NO_BEEP: Don't beep for multiple matches
3704 * options = WILD_ADD_SLASH: add a slash after directory names
3705 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries
3706 * options = WILD_SILENT: don't print warning messages
3707 * options = WILD_ESCAPE: put backslash before special chars
Bram Moolenaar94950a92010-12-02 16:01:29 +01003708 * options = WILD_ICASE: ignore case for files
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709 *
3710 * The variables xp->xp_context and xp->xp_backslash must have been set!
3711 */
3712 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003713ExpandOne(
3714 expand_T *xp,
3715 char_u *str,
3716 char_u *orig, /* allocated copy of original of expanded string */
3717 int options,
3718 int mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719{
3720 char_u *ss = NULL;
3721 static int findex;
3722 static char_u *orig_save = NULL; /* kept value of orig */
Bram Moolenaar96426642007-10-30 16:37:15 +00003723 int orig_saved = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724 int i;
3725 long_u len;
3726 int non_suf_match; /* number without matching suffix */
3727
3728 /*
3729 * first handle the case of using an old match
3730 */
3731 if (mode == WILD_NEXT || mode == WILD_PREV)
3732 {
3733 if (xp->xp_numfiles > 0)
3734 {
3735 if (mode == WILD_PREV)
3736 {
3737 if (findex == -1)
3738 findex = xp->xp_numfiles;
3739 --findex;
3740 }
3741 else /* mode == WILD_NEXT */
3742 ++findex;
3743
3744 /*
3745 * When wrapping around, return the original string, set findex to
3746 * -1.
3747 */
3748 if (findex < 0)
3749 {
3750 if (orig_save == NULL)
3751 findex = xp->xp_numfiles - 1;
3752 else
3753 findex = -1;
3754 }
3755 if (findex >= xp->xp_numfiles)
3756 {
3757 if (orig_save == NULL)
3758 findex = 0;
3759 else
3760 findex = -1;
3761 }
3762#ifdef FEAT_WILDMENU
3763 if (p_wmnu)
3764 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files,
3765 findex, cmd_showtail);
3766#endif
3767 if (findex == -1)
3768 return vim_strsave(orig_save);
3769 return vim_strsave(xp->xp_files[findex]);
3770 }
3771 else
3772 return NULL;
3773 }
3774
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003775 /* free old names */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST)
3777 {
3778 FreeWild(xp->xp_numfiles, xp->xp_files);
3779 xp->xp_numfiles = -1;
3780 vim_free(orig_save);
3781 orig_save = NULL;
3782 }
3783 findex = 0;
3784
3785 if (mode == WILD_FREE) /* only release file name */
3786 return NULL;
3787
3788 if (xp->xp_numfiles == -1)
3789 {
3790 vim_free(orig_save);
3791 orig_save = orig;
Bram Moolenaar96426642007-10-30 16:37:15 +00003792 orig_saved = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793
3794 /*
3795 * Do the expansion.
3796 */
3797 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files,
3798 options) == FAIL)
3799 {
3800#ifdef FNAME_ILLEGAL
3801 /* Illegal file name has been silently skipped. But when there
3802 * are wildcards, the real problem is that there was no match,
3803 * causing the pattern to be added, which has illegal characters.
3804 */
3805 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND))
3806 EMSG2(_(e_nomatch2), str);
3807#endif
3808 }
3809 else if (xp->xp_numfiles == 0)
3810 {
3811 if (!(options & WILD_SILENT))
3812 EMSG2(_(e_nomatch2), str);
3813 }
3814 else
3815 {
3816 /* Escape the matches for use on the command line. */
3817 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options);
3818
3819 /*
3820 * Check for matching suffixes in file names.
3821 */
Bram Moolenaar146e9c32012-03-07 19:18:23 +01003822 if (mode != WILD_ALL && mode != WILD_ALL_KEEP
3823 && mode != WILD_LONGEST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824 {
3825 if (xp->xp_numfiles)
3826 non_suf_match = xp->xp_numfiles;
3827 else
3828 non_suf_match = 1;
3829 if ((xp->xp_context == EXPAND_FILES
3830 || xp->xp_context == EXPAND_DIRECTORIES)
3831 && xp->xp_numfiles > 1)
3832 {
3833 /*
3834 * More than one match; check suffix.
3835 * The files will have been sorted on matching suffix in
3836 * expand_wildcards, only need to check the first two.
3837 */
3838 non_suf_match = 0;
3839 for (i = 0; i < 2; ++i)
3840 if (match_suffix(xp->xp_files[i]))
3841 ++non_suf_match;
3842 }
3843 if (non_suf_match != 1)
3844 {
3845 /* Can we ever get here unless it's while expanding
3846 * interactively? If not, we can get rid of this all
3847 * together. Don't really want to wait for this message
3848 * (and possibly have to hit return to continue!).
3849 */
3850 if (!(options & WILD_SILENT))
3851 EMSG(_(e_toomany));
3852 else if (!(options & WILD_NO_BEEP))
3853 beep_flush();
3854 }
3855 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE))
3856 ss = vim_strsave(xp->xp_files[0]);
3857 }
3858 }
3859 }
3860
3861 /* Find longest common part */
3862 if (mode == WILD_LONGEST && xp->xp_numfiles > 0)
3863 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003864 int mb_len = 1;
3865 int c0, ci;
3866
3867 for (len = 0; xp->xp_files[0][len]; len += mb_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003869#ifdef FEAT_MBYTE
3870 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003872 mb_len = (*mb_ptr2len)(&xp->xp_files[0][len]);
3873 c0 =(* mb_ptr2char)(&xp->xp_files[0][len]);
3874 }
3875 else
3876#endif
Bram Moolenaare4eda3b2015-11-21 16:28:50 +01003877 c0 = xp->xp_files[0][len];
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003878 for (i = 1; i < xp->xp_numfiles; ++i)
3879 {
3880#ifdef FEAT_MBYTE
3881 if (has_mbyte)
3882 ci =(* mb_ptr2char)(&xp->xp_files[i][len]);
3883 else
3884#endif
3885 ci = xp->xp_files[i][len];
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01003886 if (p_fic && (xp->xp_context == EXPAND_DIRECTORIES
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887 || xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003888 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01003889 || xp->xp_context == EXPAND_BUFFERS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003891 if (MB_TOLOWER(c0) != MB_TOLOWER(ci))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892 break;
3893 }
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003894 else if (c0 != ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 break;
3896 }
3897 if (i < xp->xp_numfiles)
3898 {
3899 if (!(options & WILD_NO_BEEP))
Bram Moolenaar165bc692015-07-21 17:53:25 +02003900 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003901 break;
3902 }
3903 }
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003904
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905 ss = alloc((unsigned)len + 1);
3906 if (ss)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003907 vim_strncpy(ss, xp->xp_files[0], (size_t)len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908 findex = -1; /* next p_wc gets first one */
3909 }
3910
3911 /* Concatenate all matching names */
3912 if (mode == WILD_ALL && xp->xp_numfiles > 0)
3913 {
3914 len = 0;
3915 for (i = 0; i < xp->xp_numfiles; ++i)
3916 len += (long_u)STRLEN(xp->xp_files[i]) + 1;
3917 ss = lalloc(len, TRUE);
3918 if (ss != NULL)
3919 {
3920 *ss = NUL;
3921 for (i = 0; i < xp->xp_numfiles; ++i)
3922 {
3923 STRCAT(ss, xp->xp_files[i]);
3924 if (i != xp->xp_numfiles - 1)
3925 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " ");
3926 }
3927 }
3928 }
3929
3930 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL)
3931 ExpandCleanup(xp);
3932
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003933 /* Free "orig" if it wasn't stored in "orig_save". */
Bram Moolenaar96426642007-10-30 16:37:15 +00003934 if (!orig_saved)
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003935 vim_free(orig);
3936
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937 return ss;
3938}
3939
3940/*
3941 * Prepare an expand structure for use.
3942 */
3943 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003944ExpandInit(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945{
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003946 xp->xp_pattern = NULL;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003947 xp->xp_pattern_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003949#ifndef BACKSLASH_IN_FILENAME
3950 xp->xp_shell = FALSE;
3951#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952 xp->xp_numfiles = -1;
3953 xp->xp_files = NULL;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003954#if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
3955 xp->xp_arg = NULL;
3956#endif
Bram Moolenaarb7515462013-06-29 12:58:33 +02003957 xp->xp_line = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958}
3959
3960/*
3961 * Cleanup an expand structure after use.
3962 */
3963 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003964ExpandCleanup(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965{
3966 if (xp->xp_numfiles >= 0)
3967 {
3968 FreeWild(xp->xp_numfiles, xp->xp_files);
3969 xp->xp_numfiles = -1;
3970 }
3971}
3972
3973 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003974ExpandEscape(
3975 expand_T *xp,
3976 char_u *str,
3977 int numfiles,
3978 char_u **files,
3979 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980{
3981 int i;
3982 char_u *p;
3983
3984 /*
3985 * May change home directory back to "~"
3986 */
3987 if (options & WILD_HOME_REPLACE)
3988 tilde_replace(str, numfiles, files);
3989
3990 if (options & WILD_ESCAPE)
3991 {
3992 if (xp->xp_context == EXPAND_FILES
Bram Moolenaarcca92ec2011-04-28 17:21:53 +02003993 || xp->xp_context == EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003994 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 || xp->xp_context == EXPAND_BUFFERS
3996 || xp->xp_context == EXPAND_DIRECTORIES)
3997 {
3998 /*
3999 * Insert a backslash into a file name before a space, \, %, #
4000 * and wildmatch characters, except '~'.
4001 */
4002 for (i = 0; i < numfiles; ++i)
4003 {
4004 /* for ":set path=" we need to escape spaces twice */
4005 if (xp->xp_backslash == XP_BS_THREE)
4006 {
4007 p = vim_strsave_escaped(files[i], (char_u *)" ");
4008 if (p != NULL)
4009 {
4010 vim_free(files[i]);
4011 files[i] = p;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00004012#if defined(BACKSLASH_IN_FILENAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 p = vim_strsave_escaped(files[i], (char_u *)" ");
4014 if (p != NULL)
4015 {
4016 vim_free(files[i]);
4017 files[i] = p;
4018 }
4019#endif
4020 }
4021 }
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00004022#ifdef BACKSLASH_IN_FILENAME
4023 p = vim_strsave_fnameescape(files[i], FALSE);
4024#else
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004025 p = vim_strsave_fnameescape(files[i], xp->xp_shell);
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00004026#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027 if (p != NULL)
4028 {
4029 vim_free(files[i]);
4030 files[i] = p;
4031 }
4032
4033 /* If 'str' starts with "\~", replace "~" at start of
4034 * files[i] with "\~". */
4035 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~')
Bram Moolenaar45360022005-07-21 21:08:21 +00004036 escape_fname(&files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 }
4038 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar45360022005-07-21 21:08:21 +00004039
4040 /* If the first file starts with a '+' escape it. Otherwise it
4041 * could be seen as "+cmd". */
4042 if (*files[0] == '+')
4043 escape_fname(&files[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 }
4045 else if (xp->xp_context == EXPAND_TAGS)
4046 {
4047 /*
4048 * Insert a backslash before characters in a tag name that
4049 * would terminate the ":tag" command.
4050 */
4051 for (i = 0; i < numfiles; ++i)
4052 {
4053 p = vim_strsave_escaped(files[i], (char_u *)"\\|\"");
4054 if (p != NULL)
4055 {
4056 vim_free(files[i]);
4057 files[i] = p;
4058 }
4059 }
4060 }
4061 }
4062}
4063
4064/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004065 * Escape special characters in "fname" for when used as a file name argument
4066 * after a Vim command, or, when "shell" is non-zero, a shell command.
4067 * Returns the result in allocated memory.
4068 */
4069 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004070vim_strsave_fnameescape(char_u *fname, int shell)
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004071{
Bram Moolenaar7693ec62008-07-24 18:29:37 +00004072 char_u *p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004073#ifdef BACKSLASH_IN_FILENAME
4074 char_u buf[20];
4075 int j = 0;
4076
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01004077 /* Don't escape '[', '{' and '!' if they are in 'isfname'. */
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004078 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01004079 if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p))
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004080 buf[j++] = *p;
4081 buf[j] = NUL;
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004082 p = vim_strsave_escaped(fname, buf);
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004083#else
Bram Moolenaar7693ec62008-07-24 18:29:37 +00004084 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
4085 if (shell && csh_like_shell() && p != NULL)
4086 {
4087 char_u *s;
4088
4089 /* For csh and similar shells need to put two backslashes before '!'.
4090 * One is taken by Vim, one by the shell. */
4091 s = vim_strsave_escaped(p, (char_u *)"!");
4092 vim_free(p);
4093 p = s;
4094 }
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004095#endif
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004096
4097 /* '>' and '+' are special at the start of some commands, e.g. ":edit" and
4098 * ":write". "cd -" has a special meaning. */
Bram Moolenaara9d52e32010-07-31 16:44:19 +02004099 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL)))
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004100 escape_fname(&p);
4101
4102 return p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004103}
4104
4105/*
Bram Moolenaar45360022005-07-21 21:08:21 +00004106 * Put a backslash before the file name in "pp", which is in allocated memory.
4107 */
4108 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004109escape_fname(char_u **pp)
Bram Moolenaar45360022005-07-21 21:08:21 +00004110{
4111 char_u *p;
4112
4113 p = alloc((unsigned)(STRLEN(*pp) + 2));
4114 if (p != NULL)
4115 {
4116 p[0] = '\\';
4117 STRCPY(p + 1, *pp);
4118 vim_free(*pp);
4119 *pp = p;
4120 }
4121}
4122
4123/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 * For each file name in files[num_files]:
4125 * If 'orig_pat' starts with "~/", replace the home directory with "~".
4126 */
4127 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004128tilde_replace(
4129 char_u *orig_pat,
4130 int num_files,
4131 char_u **files)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132{
4133 int i;
4134 char_u *p;
4135
4136 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
4137 {
4138 for (i = 0; i < num_files; ++i)
4139 {
4140 p = home_replace_save(NULL, files[i]);
4141 if (p != NULL)
4142 {
4143 vim_free(files[i]);
4144 files[i] = p;
4145 }
4146 }
4147 }
4148}
4149
4150/*
4151 * Show all matches for completion on the command line.
4152 * Returns EXPAND_NOTHING when the character that triggered expansion should
4153 * be inserted like a normal character.
4154 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004156showmatches(expand_T *xp, int wildmenu UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157{
4158#define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m])
4159 int num_files;
4160 char_u **files_found;
4161 int i, j, k;
4162 int maxlen;
4163 int lines;
4164 int columns;
4165 char_u *p;
4166 int lastlen;
4167 int attr;
4168 int showtail;
4169
4170 if (xp->xp_numfiles == -1)
4171 {
4172 set_expand_context(xp);
4173 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos,
4174 &num_files, &files_found);
4175 showtail = expand_showtail(xp);
4176 if (i != EXPAND_OK)
4177 return i;
4178
4179 }
4180 else
4181 {
4182 num_files = xp->xp_numfiles;
4183 files_found = xp->xp_files;
4184 showtail = cmd_showtail;
4185 }
4186
4187#ifdef FEAT_WILDMENU
4188 if (!wildmenu)
4189 {
4190#endif
4191 msg_didany = FALSE; /* lines_left will be set */
4192 msg_start(); /* prepare for paging */
4193 msg_putchar('\n');
4194 out_flush();
4195 cmdline_row = msg_row;
4196 msg_didany = FALSE; /* lines_left will be set again */
4197 msg_start(); /* prepare for paging */
4198#ifdef FEAT_WILDMENU
4199 }
4200#endif
4201
4202 if (got_int)
4203 got_int = FALSE; /* only int. the completion, not the cmd line */
4204#ifdef FEAT_WILDMENU
4205 else if (wildmenu)
Bram Moolenaaref8eb082017-03-30 22:04:55 +02004206 win_redr_status_matches(xp, num_files, files_found, -1, showtail);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207#endif
4208 else
4209 {
4210 /* find the length of the longest file name */
4211 maxlen = 0;
4212 for (i = 0; i < num_files; ++i)
4213 {
4214 if (!showtail && (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004215 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216 || xp->xp_context == EXPAND_BUFFERS))
4217 {
4218 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE);
4219 j = vim_strsize(NameBuff);
4220 }
4221 else
4222 j = vim_strsize(L_SHOWFILE(i));
4223 if (j > maxlen)
4224 maxlen = j;
4225 }
4226
4227 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4228 lines = num_files;
4229 else
4230 {
4231 /* compute the number of columns and lines for the listing */
4232 maxlen += 2; /* two spaces between file names */
4233 columns = ((int)Columns + 2) / maxlen;
4234 if (columns < 1)
4235 columns = 1;
4236 lines = (num_files + columns - 1) / columns;
4237 }
4238
Bram Moolenaar8820b482017-03-16 17:23:31 +01004239 attr = HL_ATTR(HLF_D); /* find out highlighting for directories */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240
4241 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4242 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01004243 MSG_PUTS_ATTR(_("tagname"), HL_ATTR(HLF_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244 msg_clr_eos();
4245 msg_advance(maxlen - 3);
Bram Moolenaar8820b482017-03-16 17:23:31 +01004246 MSG_PUTS_ATTR(_(" kind file\n"), HL_ATTR(HLF_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247 }
4248
4249 /* list the files line by line */
4250 for (i = 0; i < lines; ++i)
4251 {
4252 lastlen = 999;
4253 for (k = i; k < num_files; k += lines)
4254 {
4255 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4256 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01004257 msg_outtrans_attr(files_found[k], HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258 p = files_found[k] + STRLEN(files_found[k]) + 1;
4259 msg_advance(maxlen + 1);
4260 msg_puts(p);
4261 msg_advance(maxlen + 3);
Bram Moolenaar8820b482017-03-16 17:23:31 +01004262 msg_puts_long_attr(p + 2, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 break;
4264 }
4265 for (j = maxlen - lastlen; --j >= 0; )
4266 msg_putchar(' ');
4267 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004268 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269 || xp->xp_context == EXPAND_BUFFERS)
4270 {
Bram Moolenaarb91e59b2010-03-17 19:13:27 +01004271 /* highlight directories */
Bram Moolenaar63fa5262010-03-23 18:06:52 +01004272 if (xp->xp_numfiles != -1)
4273 {
4274 char_u *halved_slash;
4275 char_u *exp_path;
4276
4277 /* Expansion was done before and special characters
4278 * were escaped, need to halve backslashes. Also
4279 * $HOME has been replaced with ~/. */
4280 exp_path = expand_env_save_opt(files_found[k], TRUE);
4281 halved_slash = backslash_halve_save(
4282 exp_path != NULL ? exp_path : files_found[k]);
4283 j = mch_isdir(halved_slash != NULL ? halved_slash
4284 : files_found[k]);
4285 vim_free(exp_path);
4286 vim_free(halved_slash);
4287 }
4288 else
4289 /* Expansion was done here, file names are literal. */
4290 j = mch_isdir(files_found[k]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291 if (showtail)
4292 p = L_SHOWFILE(k);
4293 else
4294 {
4295 home_replace(NULL, files_found[k], NameBuff, MAXPATHL,
4296 TRUE);
4297 p = NameBuff;
4298 }
4299 }
4300 else
4301 {
4302 j = FALSE;
4303 p = L_SHOWFILE(k);
4304 }
4305 lastlen = msg_outtrans_attr(p, j ? attr : 0);
4306 }
4307 if (msg_col > 0) /* when not wrapped around */
4308 {
4309 msg_clr_eos();
4310 msg_putchar('\n');
4311 }
4312 out_flush(); /* show one line at a time */
4313 if (got_int)
4314 {
4315 got_int = FALSE;
4316 break;
4317 }
4318 }
4319
4320 /*
4321 * we redraw the command below the lines that we have just listed
4322 * This is a bit tricky, but it saves a lot of screen updating.
4323 */
4324 cmdline_row = msg_row; /* will put it back later */
4325 }
4326
4327 if (xp->xp_numfiles == -1)
4328 FreeWild(num_files, files_found);
4329
4330 return EXPAND_OK;
4331}
4332
4333/*
4334 * Private gettail for showmatches() (and win_redr_status_matches()):
4335 * Find tail of file name path, but ignore trailing "/".
4336 */
4337 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004338sm_gettail(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339{
4340 char_u *p;
4341 char_u *t = s;
4342 int had_sep = FALSE;
4343
4344 for (p = s; *p != NUL; )
4345 {
4346 if (vim_ispathsep(*p)
4347#ifdef BACKSLASH_IN_FILENAME
4348 && !rem_backslash(p)
4349#endif
4350 )
4351 had_sep = TRUE;
4352 else if (had_sep)
4353 {
4354 t = p;
4355 had_sep = FALSE;
4356 }
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004357 MB_PTR_ADV(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 }
4359 return t;
4360}
4361
4362/*
4363 * Return TRUE if we only need to show the tail of completion matches.
4364 * When not completing file names or there is a wildcard in the path FALSE is
4365 * returned.
4366 */
4367 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004368expand_showtail(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369{
4370 char_u *s;
4371 char_u *end;
4372
4373 /* When not completing file names a "/" may mean something different. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004374 if (xp->xp_context != EXPAND_FILES
4375 && xp->xp_context != EXPAND_SHELLCMD
4376 && xp->xp_context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004377 return FALSE;
4378
4379 end = gettail(xp->xp_pattern);
4380 if (end == xp->xp_pattern) /* there is no path separator */
4381 return FALSE;
4382
4383 for (s = xp->xp_pattern; s < end; s++)
4384 {
4385 /* Skip escaped wildcards. Only when the backslash is not a path
4386 * separator, on DOS the '*' "path\*\file" must not be skipped. */
4387 if (rem_backslash(s))
4388 ++s;
4389 else if (vim_strchr((char_u *)"*?[", *s) != NULL)
4390 return FALSE;
4391 }
4392 return TRUE;
4393}
4394
4395/*
4396 * Prepare a string for expansion.
4397 * When expanding file names: The string will be used with expand_wildcards().
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004398 * Copy "fname[len]" into allocated memory and add a '*' at the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 * When expanding other names: The string will be used with regcomp(). Copy
4400 * the name into allocated memory and prepend "^".
4401 */
4402 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004403addstar(
4404 char_u *fname,
4405 int len,
4406 int context) /* EXPAND_FILES etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407{
4408 char_u *retval;
4409 int i, j;
4410 int new_len;
4411 char_u *tail;
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004412 int ends_in_star;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004414 if (context != EXPAND_FILES
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004415 && context != EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004416 && context != EXPAND_SHELLCMD
4417 && context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 {
4419 /*
4420 * Matching will be done internally (on something other than files).
4421 * So we convert the file-matching-type wildcards into our kind for
4422 * use with vim_regcomp(). First work out how long it will be:
4423 */
4424
4425 /* For help tags the translation is done in find_help_tags().
4426 * For a tag pattern starting with "/" no translation is needed. */
4427 if (context == EXPAND_HELP
4428 || context == EXPAND_COLORS
4429 || context == EXPAND_COMPILER
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004430 || context == EXPAND_OWNSYNTAX
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004431 || context == EXPAND_FILETYPE
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01004432 || context == EXPAND_PACKADD
Bram Moolenaarba47b512017-01-24 21:18:19 +01004433 || ((context == EXPAND_TAGS_LISTFILES
4434 || context == EXPAND_TAGS)
4435 && fname[0] == '/'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436 retval = vim_strnsave(fname, len);
4437 else
4438 {
4439 new_len = len + 2; /* +2 for '^' at start, NUL at end */
4440 for (i = 0; i < len; i++)
4441 {
4442 if (fname[i] == '*' || fname[i] == '~')
4443 new_len++; /* '*' needs to be replaced by ".*"
4444 '~' needs to be replaced by "\~" */
4445
4446 /* Buffer names are like file names. "." should be literal */
4447 if (context == EXPAND_BUFFERS && fname[i] == '.')
4448 new_len++; /* "." becomes "\." */
4449
4450 /* Custom expansion takes care of special things, match
4451 * backslashes literally (perhaps also for other types?) */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004452 if ((context == EXPAND_USER_DEFINED
4453 || context == EXPAND_USER_LIST) && fname[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004454 new_len++; /* '\' becomes "\\" */
4455 }
4456 retval = alloc(new_len);
4457 if (retval != NULL)
4458 {
4459 retval[0] = '^';
4460 j = 1;
4461 for (i = 0; i < len; i++, j++)
4462 {
4463 /* Skip backslash. But why? At least keep it for custom
4464 * expansion. */
4465 if (context != EXPAND_USER_DEFINED
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004466 && context != EXPAND_USER_LIST
4467 && fname[i] == '\\'
4468 && ++i == len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469 break;
4470
4471 switch (fname[i])
4472 {
4473 case '*': retval[j++] = '.';
4474 break;
4475 case '~': retval[j++] = '\\';
4476 break;
4477 case '?': retval[j] = '.';
4478 continue;
4479 case '.': if (context == EXPAND_BUFFERS)
4480 retval[j++] = '\\';
4481 break;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004482 case '\\': if (context == EXPAND_USER_DEFINED
4483 || context == EXPAND_USER_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 retval[j++] = '\\';
4485 break;
4486 }
4487 retval[j] = fname[i];
4488 }
4489 retval[j] = NUL;
4490 }
4491 }
4492 }
4493 else
4494 {
4495 retval = alloc(len + 4);
4496 if (retval != NULL)
4497 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004498 vim_strncpy(retval, fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499
4500 /*
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004501 * Don't add a star to *, ~, ~user, $var or `cmd`.
4502 * * would become **, which walks the whole tree.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 * ~ would be at the start of the file name, but not the tail.
4504 * $ could be anywhere in the tail.
4505 * ` could be anywhere in the file name.
Bram Moolenaar066b6222008-01-04 14:17:47 +00004506 * When the name ends in '$' don't add a star, remove the '$'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004507 */
4508 tail = gettail(retval);
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004509 ends_in_star = (len > 0 && retval[len - 1] == '*');
4510#ifndef BACKSLASH_IN_FILENAME
4511 for (i = len - 2; i >= 0; --i)
4512 {
4513 if (retval[i] != '\\')
4514 break;
4515 ends_in_star = !ends_in_star;
4516 }
4517#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518 if ((*retval != '~' || tail != retval)
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004519 && !ends_in_star
Bram Moolenaar071d4272004-06-13 20:20:40 +00004520 && vim_strchr(tail, '$') == NULL
4521 && vim_strchr(retval, '`') == NULL)
4522 retval[len++] = '*';
Bram Moolenaar066b6222008-01-04 14:17:47 +00004523 else if (len > 0 && retval[len - 1] == '$')
4524 --len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 retval[len] = NUL;
4526 }
4527 }
4528 return retval;
4529}
4530
4531/*
4532 * Must parse the command line so far to work out what context we are in.
4533 * Completion can then be done based on that context.
4534 * This routine sets the variables:
4535 * xp->xp_pattern The start of the pattern to be expanded within
4536 * the command line (ends at the cursor).
4537 * xp->xp_context The type of thing to expand. Will be one of:
4538 *
4539 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on
4540 * the command line, like an unknown command. Caller
4541 * should beep.
4542 * EXPAND_NOTHING Unrecognised context for completion, use char like
4543 * a normal char, rather than for completion. eg
4544 * :s/^I/
4545 * EXPAND_COMMANDS Cursor is still touching the command, so complete
4546 * it.
4547 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands.
4548 * EXPAND_FILES After command with XFILE set, or after setting
4549 * with P_EXPAND set. eg :e ^I, :w>>^I
4550 * EXPAND_DIRECTORIES In some cases this is used instead of the latter
4551 * when we know only directories are of interest. eg
4552 * :set dir=^I
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004553 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004554 * EXPAND_SETTINGS Complete variable names. eg :set d^I
4555 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I
4556 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I
4557 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect
4558 * EXPAND_HELP Complete tags from the file 'helpfile'/tags
4559 * EXPAND_EVENTS Complete event names
4560 * EXPAND_SYNTAX Complete :syntax command arguments
4561 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names
4562 * EXPAND_AUGROUP Complete autocommand group names
4563 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I
4564 * EXPAND_MAPPINGS Complete mapping and abbreviation names,
4565 * eg :unmap a^I , :cunab x^I
4566 * EXPAND_FUNCTIONS Complete internal or user defined function names,
4567 * eg :call sub^I
4568 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I
4569 * EXPAND_EXPRESSION Complete internal or user defined function/variable
4570 * names in expressions, eg :while s^I
4571 * EXPAND_ENV_VARS Complete environment variable names
Bram Moolenaar24305862012-08-15 14:05:05 +02004572 * EXPAND_USER Complete user names
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573 */
4574 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004575set_expand_context(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004577 /* only expansion for ':', '>' and '=' command-lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004578 if (ccline.cmdfirstc != ':'
4579#ifdef FEAT_EVAL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004580 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '='
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004581 && !ccline.input_fn
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582#endif
4583 )
4584 {
4585 xp->xp_context = EXPAND_NOTHING;
4586 return;
4587 }
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004588 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004589}
4590
4591 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004592set_cmd_context(
4593 expand_T *xp,
4594 char_u *str, /* start of command line */
4595 int len, /* length of command line (excl. NUL) */
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004596 int col, /* position of cursor */
4597 int use_ccline UNUSED) /* use ccline for info */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004598{
4599 int old_char = NUL;
4600 char_u *nextcomm;
4601
4602 /*
4603 * Avoid a UMR warning from Purify, only save the character if it has been
4604 * written before.
4605 */
4606 if (col < len)
4607 old_char = str[col];
4608 str[col] = NUL;
4609 nextcomm = str;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004610
4611#ifdef FEAT_EVAL
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004612 if (use_ccline && ccline.cmdfirstc == '=')
Bram Moolenaar4f688582007-07-24 12:34:30 +00004613 {
4614# ifdef FEAT_CMDL_COMPL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004615 /* pass CMD_SIZE because there is no real command */
4616 set_context_for_expression(xp, str, CMD_SIZE);
Bram Moolenaar4f688582007-07-24 12:34:30 +00004617# endif
4618 }
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004619 else if (use_ccline && ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004620 {
4621 xp->xp_context = ccline.xp_context;
4622 xp->xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004623# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004624 xp->xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004625# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004626 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004627 else
4628#endif
4629 while (nextcomm != NULL)
4630 nextcomm = set_one_cmd_context(xp, nextcomm);
4631
Bram Moolenaara4c8dcb2013-06-30 12:21:24 +02004632 /* Store the string here so that call_user_expand_func() can get to them
4633 * easily. */
4634 xp->xp_line = str;
4635 xp->xp_col = col;
4636
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637 str[col] = old_char;
4638}
4639
4640/*
4641 * Expand the command line "str" from context "xp".
4642 * "xp" must have been set by set_cmd_context().
4643 * xp->xp_pattern points into "str", to where the text that is to be expanded
4644 * starts.
4645 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the
4646 * cursor.
4647 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the
4648 * key that triggered expansion literally.
4649 * Returns EXPAND_OK otherwise.
4650 */
4651 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004652expand_cmdline(
4653 expand_T *xp,
4654 char_u *str, /* start of command line */
4655 int col, /* position of cursor */
4656 int *matchcount, /* return: nr of matches */
4657 char_u ***matches) /* return: array of pointers to matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658{
4659 char_u *file_str = NULL;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004660 int options = WILD_ADD_SLASH|WILD_SILENT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661
4662 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
4663 {
4664 beep_flush();
4665 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */
4666 }
4667 if (xp->xp_context == EXPAND_NOTHING)
4668 {
4669 /* Caller can use the character as a normal char instead */
4670 return EXPAND_NOTHING;
4671 }
4672
4673 /* add star to file name, or convert to regexp if not exp. files. */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004674 xp->xp_pattern_len = (int)(str + col - xp->xp_pattern);
4675 file_str = addstar(xp->xp_pattern, xp->xp_pattern_len, xp->xp_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004676 if (file_str == NULL)
4677 return EXPAND_UNSUCCESSFUL;
4678
Bram Moolenaar94950a92010-12-02 16:01:29 +01004679 if (p_wic)
4680 options += WILD_ICASE;
4681
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682 /* find all files that match the description */
Bram Moolenaar94950a92010-12-02 16:01:29 +01004683 if (ExpandFromContext(xp, file_str, matchcount, matches, options) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684 {
4685 *matchcount = 0;
4686 *matches = NULL;
4687 }
4688 vim_free(file_str);
4689
4690 return EXPAND_OK;
4691}
4692
4693#ifdef FEAT_MULTI_LANG
4694/*
Bram Moolenaar61264d92016-03-28 19:59:02 +02004695 * Cleanup matches for help tags:
4696 * Remove "@ab" if the top of 'helplang' is "ab" and the language of the first
4697 * tag matches it. Otherwise remove "@en" if "en" is the only language.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698 */
Bram Moolenaard25c16e2016-01-29 22:13:30 +01004699static void cleanup_help_tags(int num_file, char_u **file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004700
4701 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004702cleanup_help_tags(int num_file, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703{
4704 int i, j;
4705 int len;
Bram Moolenaar61264d92016-03-28 19:59:02 +02004706 char_u buf[4];
4707 char_u *p = buf;
4708
Bram Moolenaar89c79b92016-05-05 17:18:41 +02004709 if (p_hlg[0] != NUL && (p_hlg[0] != 'e' || p_hlg[1] != 'n'))
Bram Moolenaar61264d92016-03-28 19:59:02 +02004710 {
4711 *p++ = '@';
4712 *p++ = p_hlg[0];
4713 *p++ = p_hlg[1];
4714 }
4715 *p = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716
4717 for (i = 0; i < num_file; ++i)
4718 {
4719 len = (int)STRLEN(file[i]) - 3;
Bram Moolenaar61264d92016-03-28 19:59:02 +02004720 if (len <= 0)
4721 continue;
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02004722 if (STRCMP(file[i] + len, "@en") == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723 {
4724 /* Sorting on priority means the same item in another language may
4725 * be anywhere. Search all items for a match up to the "@en". */
4726 for (j = 0; j < num_file; ++j)
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02004727 if (j != i && (int)STRLEN(file[j]) == len + 3
4728 && STRNCMP(file[i], file[j], len + 1) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729 break;
4730 if (j == num_file)
Bram Moolenaar89c79b92016-05-05 17:18:41 +02004731 /* item only exists with @en, remove it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 file[i][len] = NUL;
4733 }
4734 }
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02004735
4736 if (*buf != NUL)
4737 for (i = 0; i < num_file; ++i)
4738 {
4739 len = (int)STRLEN(file[i]) - 3;
4740 if (len <= 0)
4741 continue;
4742 if (STRCMP(file[i] + len, buf) == 0)
4743 {
4744 /* remove the default language */
4745 file[i][len] = NUL;
4746 }
4747 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748}
4749#endif
4750
4751/*
4752 * Do the expansion based on xp->xp_context and "pat".
4753 */
4754 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004755ExpandFromContext(
4756 expand_T *xp,
4757 char_u *pat,
4758 int *num_file,
4759 char_u ***file,
4760 int options) /* EW_ flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761{
4762#ifdef FEAT_CMDL_COMPL
4763 regmatch_T regmatch;
4764#endif
4765 int ret;
4766 int flags;
4767
4768 flags = EW_DIR; /* include directories */
4769 if (options & WILD_LIST_NOTFOUND)
4770 flags |= EW_NOTFOUND;
4771 if (options & WILD_ADD_SLASH)
4772 flags |= EW_ADDSLASH;
4773 if (options & WILD_KEEP_ALL)
4774 flags |= EW_KEEPALL;
4775 if (options & WILD_SILENT)
4776 flags |= EW_SILENT;
Bram Moolenaara245bc72015-03-05 19:35:25 +01004777 if (options & WILD_ALLLINKS)
4778 flags |= EW_ALLLINKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004780 if (xp->xp_context == EXPAND_FILES
4781 || xp->xp_context == EXPAND_DIRECTORIES
4782 || xp->xp_context == EXPAND_FILES_IN_PATH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004783 {
4784 /*
4785 * Expand file or directory names.
4786 */
4787 int free_pat = FALSE;
4788 int i;
4789
4790 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4791 * space */
4792 if (xp->xp_backslash != XP_BS_NONE)
4793 {
4794 free_pat = TRUE;
4795 pat = vim_strsave(pat);
4796 for (i = 0; pat[i]; ++i)
4797 if (pat[i] == '\\')
4798 {
4799 if (xp->xp_backslash == XP_BS_THREE
4800 && pat[i + 1] == '\\'
4801 && pat[i + 2] == '\\'
4802 && pat[i + 3] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004803 STRMOVE(pat + i, pat + i + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804 if (xp->xp_backslash == XP_BS_ONE
4805 && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004806 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807 }
4808 }
4809
4810 if (xp->xp_context == EXPAND_FILES)
4811 flags |= EW_FILE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004812 else if (xp->xp_context == EXPAND_FILES_IN_PATH)
4813 flags |= (EW_FILE | EW_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 else
4815 flags = (flags | EW_DIR) & ~EW_FILE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004816 if (options & WILD_ICASE)
4817 flags |= EW_ICASE;
4818
Bram Moolenaard7834d32009-12-02 16:14:36 +00004819 /* Expand wildcards, supporting %:h and the like. */
4820 ret = expand_wildcards_eval(&pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 if (free_pat)
4822 vim_free(pat);
4823 return ret;
4824 }
4825
4826 *file = (char_u **)"";
4827 *num_file = 0;
4828 if (xp->xp_context == EXPAND_HELP)
4829 {
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00004830 /* With an empty argument we would get all the help tags, which is
4831 * very slow. Get matches for "help" instead. */
4832 if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat,
4833 num_file, file, FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834 {
4835#ifdef FEAT_MULTI_LANG
4836 cleanup_help_tags(*num_file, *file);
4837#endif
4838 return OK;
4839 }
4840 return FAIL;
4841 }
4842
4843#ifndef FEAT_CMDL_COMPL
4844 return FAIL;
4845#else
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004846 if (xp->xp_context == EXPAND_SHELLCMD)
4847 return expand_shellcmd(pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004848 if (xp->xp_context == EXPAND_OLD_SETTING)
4849 return ExpandOldSetting(num_file, file);
4850 if (xp->xp_context == EXPAND_BUFFERS)
4851 return ExpandBufnames(pat, num_file, file, options);
4852 if (xp->xp_context == EXPAND_TAGS
4853 || xp->xp_context == EXPAND_TAGS_LISTFILES)
4854 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file);
4855 if (xp->xp_context == EXPAND_COLORS)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004856 {
4857 char *directories[] = {"colors", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004858 return ExpandRTDir(pat, DIP_START + DIP_OPT, num_file, file,
4859 directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004860 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861 if (xp->xp_context == EXPAND_COMPILER)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004862 {
Bram Moolenaara627c962011-09-30 16:23:32 +02004863 char *directories[] = {"compiler", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004864 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004865 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004866 if (xp->xp_context == EXPAND_OWNSYNTAX)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004867 {
4868 char *directories[] = {"syntax", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004869 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004870 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004871 if (xp->xp_context == EXPAND_FILETYPE)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004872 {
4873 char *directories[] = {"syntax", "indent", "ftplugin", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004874 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004875 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004876# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4877 if (xp->xp_context == EXPAND_USER_LIST)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004878 return ExpandUserList(xp, num_file, file);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004879# endif
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01004880 if (xp->xp_context == EXPAND_PACKADD)
4881 return ExpandPackAddDir(pat, num_file, file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004882
4883 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4884 if (regmatch.regprog == NULL)
4885 return FAIL;
4886
4887 /* set ignore-case according to p_ic, p_scs and pat */
4888 regmatch.rm_ic = ignorecase(pat);
4889
4890 if (xp->xp_context == EXPAND_SETTINGS
4891 || xp->xp_context == EXPAND_BOOL_SETTINGS)
4892 ret = ExpandSettings(xp, &regmatch, num_file, file);
4893 else if (xp->xp_context == EXPAND_MAPPINGS)
4894 ret = ExpandMappings(&regmatch, num_file, file);
4895# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4896 else if (xp->xp_context == EXPAND_USER_DEFINED)
4897 ret = ExpandUserDefined(xp, &regmatch, num_file, file);
4898# endif
4899 else
4900 {
4901 static struct expgen
4902 {
4903 int context;
Bram Moolenaard99df422016-01-29 23:20:40 +01004904 char_u *((*func)(expand_T *, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 int ic;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004906 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004907 } tab[] =
4908 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004909 {EXPAND_COMMANDS, get_command_name, FALSE, TRUE},
4910 {EXPAND_BEHAVE, get_behave_arg, TRUE, TRUE},
Bram Moolenaarcae92dc2017-08-06 15:22:15 +02004911 {EXPAND_MAPCLEAR, get_mapclear_arg, TRUE, TRUE},
Bram Moolenaar9e507ca2016-10-15 15:39:39 +02004912 {EXPAND_MESSAGES, get_messages_arg, TRUE, TRUE},
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004913#ifdef FEAT_CMDHIST
4914 {EXPAND_HISTORY, get_history_arg, TRUE, TRUE},
4915#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916#ifdef FEAT_USR_CMDS
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004917 {EXPAND_USER_COMMANDS, get_user_commands, FALSE, TRUE},
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004918 {EXPAND_USER_ADDR_TYPE, get_user_cmd_addr_type, FALSE, TRUE},
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004919 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE, TRUE},
4920 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE, TRUE},
4921 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922#endif
4923#ifdef FEAT_EVAL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004924 {EXPAND_USER_VARS, get_user_var_name, FALSE, TRUE},
4925 {EXPAND_FUNCTIONS, get_function_name, FALSE, TRUE},
4926 {EXPAND_USER_FUNC, get_user_func_name, FALSE, TRUE},
4927 {EXPAND_EXPRESSION, get_expr_name, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928#endif
4929#ifdef FEAT_MENU
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004930 {EXPAND_MENUS, get_menu_name, FALSE, TRUE},
4931 {EXPAND_MENUNAMES, get_menu_names, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932#endif
4933#ifdef FEAT_SYN_HL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004934 {EXPAND_SYNTAX, get_syntax_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935#endif
Bram Moolenaarcd9c4622013-06-08 15:24:48 +02004936#ifdef FEAT_PROFILE
4937 {EXPAND_SYNTIME, get_syntime_arg, TRUE, TRUE},
4938#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004939 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940#ifdef FEAT_AUTOCMD
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004941 {EXPAND_EVENTS, get_event_name, TRUE, TRUE},
4942 {EXPAND_AUGROUP, get_augroup_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943#endif
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004944#ifdef FEAT_CSCOPE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004945 {EXPAND_CSCOPE, get_cscope_name, TRUE, TRUE},
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004946#endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004947#ifdef FEAT_SIGNS
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004948 {EXPAND_SIGN, get_sign_name, TRUE, TRUE},
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004949#endif
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004950#ifdef FEAT_PROFILE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004951 {EXPAND_PROFILE, get_profile_name, TRUE, TRUE},
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004952#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
4954 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004955 {EXPAND_LANGUAGE, get_lang_arg, TRUE, FALSE},
4956 {EXPAND_LOCALES, get_locales, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004958 {EXPAND_ENV_VARS, get_env_name, TRUE, TRUE},
Bram Moolenaar24305862012-08-15 14:05:05 +02004959 {EXPAND_USER, get_users, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 };
4961 int i;
4962
4963 /*
4964 * Find a context in the table and call the ExpandGeneric() with the
4965 * right function to do the expansion.
4966 */
4967 ret = FAIL;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00004968 for (i = 0; i < (int)(sizeof(tab) / sizeof(struct expgen)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 if (xp->xp_context == tab[i].context)
4970 {
4971 if (tab[i].ic)
4972 regmatch.rm_ic = TRUE;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004973 ret = ExpandGeneric(xp, &regmatch, num_file, file,
Bram Moolenaare79abdd2012-06-29 13:44:41 +02004974 tab[i].func, tab[i].escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 break;
4976 }
4977 }
4978
Bram Moolenaar473de612013-06-08 18:19:48 +02004979 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980
4981 return ret;
4982#endif /* FEAT_CMDL_COMPL */
4983}
4984
4985#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4986/*
4987 * Expand a list of names.
4988 *
4989 * Generic function for command line completion. It calls a function to
4990 * obtain strings, one by one. The strings are matched against a regexp
4991 * program. Matching strings are copied into an array, which is returned.
4992 *
4993 * Returns OK when no problems encountered, FAIL for error (out of memory).
4994 */
4995 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004996ExpandGeneric(
4997 expand_T *xp,
4998 regmatch_T *regmatch,
4999 int *num_file,
5000 char_u ***file,
5001 char_u *((*func)(expand_T *, int)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 /* returns a string from the list */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005003 int escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004{
5005 int i;
5006 int count = 0;
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005007 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 char_u *str;
5009
5010 /* do this loop twice:
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005011 * round == 0: count the number of matching names
5012 * round == 1: copy the matching names into allocated memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013 */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005014 for (round = 0; round <= 1; ++round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 {
5016 for (i = 0; ; ++i)
5017 {
5018 str = (*func)(xp, i);
5019 if (str == NULL) /* end of list */
5020 break;
5021 if (*str == NUL) /* skip empty strings */
5022 continue;
5023
5024 if (vim_regexec(regmatch, str, (colnr_T)0))
5025 {
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005026 if (round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02005028 if (escaped)
5029 str = vim_strsave_escaped(str, (char_u *)" \t\\.");
5030 else
5031 str = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005032 (*file)[count] = str;
5033#ifdef FEAT_MENU
5034 if (func == get_menu_names && str != NULL)
5035 {
5036 /* test for separator added by get_menu_names() */
5037 str += STRLEN(str) - 1;
5038 if (*str == '\001')
5039 *str = '.';
5040 }
5041#endif
5042 }
5043 ++count;
5044 }
5045 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005046 if (round == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 {
5048 if (count == 0)
5049 return OK;
5050 *num_file = count;
5051 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
5052 if (*file == NULL)
5053 {
5054 *file = (char_u **)"";
5055 return FAIL;
5056 }
5057 count = 0;
5058 }
5059 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005060
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005061 /* Sort the results. Keep menu's in the specified order. */
5062 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02005063 {
5064 if (xp->xp_context == EXPAND_EXPRESSION
5065 || xp->xp_context == EXPAND_FUNCTIONS
5066 || xp->xp_context == EXPAND_USER_FUNC)
5067 /* <SNR> functions should be sorted to the end. */
5068 qsort((void *)*file, (size_t)*num_file, sizeof(char_u *),
5069 sort_func_compare);
5070 else
5071 sort_strings(*file, *num_file);
5072 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005073
Bram Moolenaar4f688582007-07-24 12:34:30 +00005074#ifdef FEAT_CMDL_COMPL
5075 /* Reset the variables used for special highlight names expansion, so that
5076 * they don't show up when getting normal highlight names by ID. */
5077 reset_expand_highlight();
5078#endif
5079
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 return OK;
5081}
5082
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005083/*
5084 * Complete a shell command.
5085 * Returns FAIL or OK;
5086 */
5087 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005088expand_shellcmd(
5089 char_u *filepat, /* pattern to match with command names */
5090 int *num_file, /* return: number of matches */
5091 char_u ***file, /* return: array with matches */
5092 int flagsarg) /* EW_ flags */
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005093{
5094 char_u *pat;
5095 int i;
5096 char_u *path;
5097 int mustfree = FALSE;
5098 garray_T ga;
5099 char_u *buf = alloc(MAXPATHL);
5100 size_t l;
5101 char_u *s, *e;
5102 int flags = flagsarg;
5103 int ret;
Bram Moolenaarb5971142015-03-21 17:32:19 +01005104 int did_curdir = FALSE;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005105
5106 if (buf == NULL)
5107 return FAIL;
5108
5109 /* for ":set path=" and ":set tags=" halve backslashes for escaped
5110 * space */
5111 pat = vim_strsave(filepat);
5112 for (i = 0; pat[i]; ++i)
5113 if (pat[i] == '\\' && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00005114 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005115
Bram Moolenaarb5971142015-03-21 17:32:19 +01005116 flags |= EW_FILE | EW_EXEC | EW_SHELLCMD;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005117
5118 /* For an absolute name we don't use $PATH. */
Bram Moolenaar68c31742006-09-02 15:54:18 +00005119 if (mch_isFullName(pat))
5120 path = (char_u *)" ";
5121 else if ((pat[0] == '.' && (vim_ispathsep(pat[1])
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005122 || (pat[1] == '.' && vim_ispathsep(pat[2])))))
5123 path = (char_u *)".";
5124 else
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01005125 {
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005126 path = vim_getenv((char_u *)"PATH", &mustfree);
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01005127 if (path == NULL)
5128 path = (char_u *)"";
5129 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005130
5131 /*
5132 * Go over all directories in $PATH. Expand matches in that directory and
Bram Moolenaarb5971142015-03-21 17:32:19 +01005133 * collect them in "ga". When "." is not in $PATH also expand for the
5134 * current directory, to find "subdir/cmd".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005135 */
5136 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaarb5971142015-03-21 17:32:19 +01005137 for (s = path; ; s = e)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005138 {
Bram Moolenaarb5971142015-03-21 17:32:19 +01005139 if (*s == NUL)
5140 {
5141 if (did_curdir)
5142 break;
5143 /* Find directories in the current directory, path is empty. */
5144 did_curdir = TRUE;
5145 }
5146 else if (*s == '.')
5147 did_curdir = TRUE;
5148
Bram Moolenaar68c31742006-09-02 15:54:18 +00005149 if (*s == ' ')
5150 ++s; /* Skip space used for absolute path name. */
5151
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005152#if defined(MSWIN)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005153 e = vim_strchr(s, ';');
5154#else
5155 e = vim_strchr(s, ':');
5156#endif
5157 if (e == NULL)
5158 e = s + STRLEN(s);
5159
5160 l = e - s;
5161 if (l > MAXPATHL - 5)
5162 break;
5163 vim_strncpy(buf, s, l);
5164 add_pathsep(buf);
5165 l = STRLEN(buf);
5166 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l);
5167
5168 /* Expand matches in one directory of $PATH. */
5169 ret = expand_wildcards(1, &buf, num_file, file, flags);
5170 if (ret == OK)
5171 {
5172 if (ga_grow(&ga, *num_file) == FAIL)
5173 FreeWild(*num_file, *file);
5174 else
5175 {
5176 for (i = 0; i < *num_file; ++i)
5177 {
5178 s = (*file)[i];
5179 if (STRLEN(s) > l)
5180 {
5181 /* Remove the path again. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00005182 STRMOVE(s, s + l);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005183 ((char_u **)ga.ga_data)[ga.ga_len++] = s;
5184 }
5185 else
5186 vim_free(s);
5187 }
5188 vim_free(*file);
5189 }
5190 }
5191 if (*e != NUL)
5192 ++e;
5193 }
5194 *file = ga.ga_data;
5195 *num_file = ga.ga_len;
5196
5197 vim_free(buf);
5198 vim_free(pat);
5199 if (mustfree)
5200 vim_free(path);
5201 return OK;
5202}
5203
5204
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaard25c16e2016-01-29 22:13:30 +01005206static void * call_user_expand_func(void *(*user_expand_func)(char_u *, int, char_u **, int), expand_T *xp, int *num_file, char_u ***file);
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00005207
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208/*
Bram Moolenaarb544f3c2017-02-23 19:03:28 +01005209 * Call "user_expand_func()" to invoke a user defined Vim script function and
5210 * return the result (either a string or a List).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211 */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005212 static void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005213call_user_expand_func(
5214 void *(*user_expand_func)(char_u *, int, char_u **, int),
5215 expand_T *xp,
5216 int *num_file,
5217 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218{
Bram Moolenaar673b9a32013-06-30 22:43:27 +02005219 int keep = 0;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005220 char_u num[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005221 char_u *args[3];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222 int save_current_SID = current_SID;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005223 void *ret;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005224 struct cmdline_info save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225
Bram Moolenaarb7515462013-06-29 12:58:33 +02005226 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0' || xp->xp_line == NULL)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005227 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228 *num_file = 0;
5229 *file = NULL;
5230
Bram Moolenaarb7515462013-06-29 12:58:33 +02005231 if (ccline.cmdbuff != NULL)
Bram Moolenaar21669c02008-01-18 12:16:16 +00005232 {
Bram Moolenaar21669c02008-01-18 12:16:16 +00005233 keep = ccline.cmdbuff[ccline.cmdlen];
5234 ccline.cmdbuff[ccline.cmdlen] = 0;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005235 }
Bram Moolenaarb7515462013-06-29 12:58:33 +02005236
Bram Moolenaar67b891e2009-09-18 15:25:52 +00005237 args[0] = vim_strnsave(xp->xp_pattern, xp->xp_pattern_len);
Bram Moolenaarb7515462013-06-29 12:58:33 +02005238 args[1] = xp->xp_line;
5239 sprintf((char *)num, "%d", xp->xp_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240 args[2] = num;
5241
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005242 /* Save the cmdline, we don't know what the function may do. */
5243 save_ccline = ccline;
5244 ccline.cmdbuff = NULL;
5245 ccline.cmdprompt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005246 current_SID = xp->xp_scriptID;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005247
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005248 ret = user_expand_func(xp->xp_arg, 3, args, FALSE);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005249
5250 ccline = save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251 current_SID = save_current_SID;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005252 if (ccline.cmdbuff != NULL)
5253 ccline.cmdbuff[ccline.cmdlen] = keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005254
Bram Moolenaar67b891e2009-09-18 15:25:52 +00005255 vim_free(args[0]);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005256 return ret;
5257}
5258
5259/*
5260 * Expand names with a function defined by the user.
5261 */
5262 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005263ExpandUserDefined(
5264 expand_T *xp,
5265 regmatch_T *regmatch,
5266 int *num_file,
5267 char_u ***file)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005268{
5269 char_u *retstr;
5270 char_u *s;
5271 char_u *e;
5272 char_u keep;
5273 garray_T ga;
5274
5275 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file);
5276 if (retstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 return FAIL;
5278
5279 ga_init2(&ga, (int)sizeof(char *), 3);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005280 for (s = retstr; *s != NUL; s = e)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281 {
5282 e = vim_strchr(s, '\n');
5283 if (e == NULL)
5284 e = s + STRLEN(s);
5285 keep = *e;
5286 *e = 0;
5287
5288 if (xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0)
5289 {
5290 *e = keep;
5291 if (*e != NUL)
5292 ++e;
5293 continue;
5294 }
5295
5296 if (ga_grow(&ga, 1) == FAIL)
5297 break;
5298
5299 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s));
5300 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301
5302 *e = keep;
5303 if (*e != NUL)
5304 ++e;
5305 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005306 vim_free(retstr);
5307 *file = ga.ga_data;
5308 *num_file = ga.ga_len;
5309 return OK;
5310}
5311
5312/*
5313 * Expand names with a list returned by a function defined by the user.
5314 */
5315 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005316ExpandUserList(
5317 expand_T *xp,
5318 int *num_file,
5319 char_u ***file)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005320{
5321 list_T *retlist;
5322 listitem_T *li;
5323 garray_T ga;
5324
5325 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file);
5326 if (retlist == NULL)
5327 return FAIL;
5328
5329 ga_init2(&ga, (int)sizeof(char *), 3);
5330 /* Loop over the items in the list. */
5331 for (li = retlist->lv_first; li != NULL; li = li->li_next)
5332 {
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005333 if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL)
5334 continue; /* Skip non-string items and empty strings */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005335
5336 if (ga_grow(&ga, 1) == FAIL)
5337 break;
5338
5339 ((char_u **)ga.ga_data)[ga.ga_len] =
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005340 vim_strsave(li->li_tv.vval.v_string);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005341 ++ga.ga_len;
5342 }
5343 list_unref(retlist);
5344
Bram Moolenaar071d4272004-06-13 20:20:40 +00005345 *file = ga.ga_data;
5346 *num_file = ga.ga_len;
5347 return OK;
5348}
5349#endif
5350
5351/*
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005352 * Expand color scheme, compiler or filetype names.
5353 * Search from 'runtimepath':
5354 * 'runtimepath'/{dirnames}/{pat}.vim
5355 * When "flags" has DIP_START: search also from 'start' of 'packpath':
5356 * 'packpath'/pack/ * /start/ * /{dirnames}/{pat}.vim
5357 * When "flags" has DIP_OPT: search also from 'opt' of 'packpath':
5358 * 'packpath'/pack/ * /opt/ * /{dirnames}/{pat}.vim
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005359 * "dirnames" is an array with one or more directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360 */
5361 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005362ExpandRTDir(
5363 char_u *pat,
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005364 int flags,
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005365 int *num_file,
5366 char_u ***file,
5367 char *dirnames[])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005369 char_u *s;
5370 char_u *e;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005371 char_u *match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372 garray_T ga;
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005373 int i;
5374 int pat_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005375
5376 *num_file = 0;
5377 *file = NULL;
Bram Moolenaar5cfe2d72011-07-07 15:04:52 +02005378 pat_len = (int)STRLEN(pat);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005379 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005380
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005381 for (i = 0; dirnames[i] != NULL; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005382 {
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005383 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 7));
5384 if (s == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385 {
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005386 ga_clear_strings(&ga);
5387 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388 }
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005389 sprintf((char *)s, "%s/%s*.vim", dirnames[i], pat);
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005390 globpath(p_rtp, s, &ga, 0);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005391 vim_free(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005392 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005393
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005394 if (flags & DIP_START) {
5395 for (i = 0; dirnames[i] != NULL; ++i)
5396 {
5397 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 22));
5398 if (s == NULL)
5399 {
5400 ga_clear_strings(&ga);
5401 return FAIL;
5402 }
5403 sprintf((char *)s, "pack/*/start/*/%s/%s*.vim", dirnames[i], pat);
5404 globpath(p_pp, s, &ga, 0);
5405 vim_free(s);
5406 }
5407 }
5408
5409 if (flags & DIP_OPT) {
5410 for (i = 0; dirnames[i] != NULL; ++i)
5411 {
5412 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 20));
5413 if (s == NULL)
5414 {
5415 ga_clear_strings(&ga);
5416 return FAIL;
5417 }
5418 sprintf((char *)s, "pack/*/opt/*/%s/%s*.vim", dirnames[i], pat);
5419 globpath(p_pp, s, &ga, 0);
5420 vim_free(s);
5421 }
5422 }
5423
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005424 for (i = 0; i < ga.ga_len; ++i)
5425 {
5426 match = ((char_u **)ga.ga_data)[i];
5427 s = match;
5428 e = s + STRLEN(s);
5429 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0)
5430 {
5431 e -= 4;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005432 for (s = e; s > match; MB_PTR_BACK(match, s))
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005433 if (s < match || vim_ispathsep(*s))
5434 break;
5435 ++s;
5436 *e = NUL;
5437 mch_memmove(match, s, e - s + 1);
5438 }
5439 }
5440
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005441 if (ga.ga_len == 0)
Bram Moolenaare79abdd2012-06-29 13:44:41 +02005442 return FAIL;
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005443
5444 /* Sort and remove duplicates which can happen when specifying multiple
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005445 * directories in dirnames. */
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005446 remove_duplicates(&ga);
5447
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448 *file = ga.ga_data;
5449 *num_file = ga.ga_len;
5450 return OK;
5451}
5452
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01005453/*
5454 * Expand loadplugin names:
5455 * 'packpath'/pack/ * /opt/{pat}
5456 */
5457 static int
5458ExpandPackAddDir(
5459 char_u *pat,
5460 int *num_file,
5461 char_u ***file)
5462{
5463 char_u *s;
5464 char_u *e;
5465 char_u *match;
5466 garray_T ga;
5467 int i;
5468 int pat_len;
5469
5470 *num_file = 0;
5471 *file = NULL;
5472 pat_len = (int)STRLEN(pat);
5473 ga_init2(&ga, (int)sizeof(char *), 10);
5474
5475 s = alloc((unsigned)(pat_len + 26));
5476 if (s == NULL)
5477 {
5478 ga_clear_strings(&ga);
5479 return FAIL;
5480 }
5481 sprintf((char *)s, "pack/*/opt/%s*", pat);
5482 globpath(p_pp, s, &ga, 0);
5483 vim_free(s);
5484
5485 for (i = 0; i < ga.ga_len; ++i)
5486 {
5487 match = ((char_u **)ga.ga_data)[i];
5488 s = gettail(match);
5489 e = s + STRLEN(s);
5490 mch_memmove(match, s, e - s + 1);
5491 }
5492
5493 if (ga.ga_len == 0)
5494 return FAIL;
5495
5496 /* Sort and remove duplicates which can happen when specifying multiple
5497 * directories in dirnames. */
5498 remove_duplicates(&ga);
5499
5500 *file = ga.ga_data;
5501 *num_file = ga.ga_len;
5502 return OK;
5503}
5504
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505#endif
5506
5507#if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO)
5508/*
5509 * Expand "file" for all comma-separated directories in "path".
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005510 * Adds the matches to "ga". Caller must init "ga".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005511 */
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005512 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005513globpath(
5514 char_u *path,
5515 char_u *file,
5516 garray_T *ga,
5517 int expand_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518{
5519 expand_T xpc;
5520 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522 int num_p;
5523 char_u **p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524
5525 buf = alloc(MAXPATHL);
5526 if (buf == NULL)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005527 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005529 ExpandInit(&xpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005531
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532 /* Loop over all entries in {path}. */
5533 while (*path != NUL)
5534 {
5535 /* Copy one item of the path to buf[] and concatenate the file name. */
5536 copy_option_part(&path, buf, MAXPATHL, ",");
5537 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
5538 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005539# if defined(MSWIN)
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005540 /* Using the platform's path separator (\) makes vim incorrectly
5541 * treat it as an escape character, use '/' instead. */
5542 if (*buf != NUL && !after_pathsep(buf, buf + STRLEN(buf)))
5543 STRCAT(buf, "/");
5544# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545 add_pathsep(buf);
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005546# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547 STRCAT(buf, file);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005548 if (ExpandFromContext(&xpc, buf, &num_p, &p,
5549 WILD_SILENT|expand_options) != FAIL && num_p > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005551 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT|expand_options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005552
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005553 if (ga_grow(ga, num_p) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005555 for (i = 0; i < num_p; ++i)
5556 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005557 ((char_u **)ga->ga_data)[ga->ga_len] =
Bram Moolenaar7116aa02014-05-29 14:36:29 +02005558 vim_strnsave(p[i], (int)STRLEN(p[i]));
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005559 ++ga->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005562
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 FreeWild(num_p, p);
5564 }
5565 }
5566 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567
5568 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569}
5570
5571#endif
5572
5573#if defined(FEAT_CMDHIST) || defined(PROTO)
5574
5575/*********************************
5576 * Command line history stuff *
5577 *********************************/
5578
5579/*
5580 * Translate a history character to the associated type number.
5581 */
5582 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005583hist_char2type(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005584{
5585 if (c == ':')
5586 return HIST_CMD;
5587 if (c == '=')
5588 return HIST_EXPR;
5589 if (c == '@')
5590 return HIST_INPUT;
5591 if (c == '>')
5592 return HIST_DEBUG;
5593 return HIST_SEARCH; /* must be '?' or '/' */
5594}
5595
5596/*
5597 * Table of history names.
5598 * These names are used in :history and various hist...() functions.
5599 * It is sufficient to give the significant prefix of a history name.
5600 */
5601
5602static char *(history_names[]) =
5603{
5604 "cmd",
5605 "search",
5606 "expr",
5607 "input",
5608 "debug",
5609 NULL
5610};
5611
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005612#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5613/*
5614 * Function given to ExpandGeneric() to obtain the possible first
5615 * arguments of the ":history command.
5616 */
5617 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005618get_history_arg(expand_T *xp UNUSED, int idx)
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005619{
5620 static char_u compl[2] = { NUL, NUL };
5621 char *short_names = ":=@>?/";
Bram Moolenaar17bd9dc2012-05-25 11:02:41 +02005622 int short_names_count = (int)STRLEN(short_names);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005623 int history_name_count = sizeof(history_names) / sizeof(char *) - 1;
5624
5625 if (idx < short_names_count)
5626 {
5627 compl[0] = (char_u)short_names[idx];
5628 return compl;
5629 }
5630 if (idx < short_names_count + history_name_count)
5631 return (char_u *)history_names[idx - short_names_count];
5632 if (idx == short_names_count + history_name_count)
5633 return (char_u *)"all";
5634 return NULL;
5635}
5636#endif
5637
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638/*
5639 * init_history() - Initialize the command line history.
5640 * Also used to re-allocate the history when the size changes.
5641 */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00005642 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005643init_history(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005644{
5645 int newlen; /* new length of history table */
5646 histentry_T *temp;
5647 int i;
5648 int j;
5649 int type;
5650
5651 /*
5652 * If size of history table changed, reallocate it
5653 */
5654 newlen = (int)p_hi;
5655 if (newlen != hislen) /* history length changed */
5656 {
5657 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */
5658 {
5659 if (newlen)
5660 {
5661 temp = (histentry_T *)lalloc(
5662 (long_u)(newlen * sizeof(histentry_T)), TRUE);
5663 if (temp == NULL) /* out of memory! */
5664 {
5665 if (type == 0) /* first one: just keep the old length */
5666 {
5667 newlen = hislen;
5668 break;
5669 }
5670 /* Already changed one table, now we can only have zero
5671 * length for all tables. */
5672 newlen = 0;
5673 type = -1;
5674 continue;
5675 }
5676 }
5677 else
5678 temp = NULL;
5679 if (newlen == 0 || temp != NULL)
5680 {
5681 if (hisidx[type] < 0) /* there are no entries yet */
5682 {
5683 for (i = 0; i < newlen; ++i)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005684 clear_hist_entry(&temp[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 }
5686 else if (newlen > hislen) /* array becomes bigger */
5687 {
5688 for (i = 0; i <= hisidx[type]; ++i)
5689 temp[i] = history[type][i];
5690 j = i;
5691 for ( ; i <= newlen - (hislen - hisidx[type]); ++i)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005692 clear_hist_entry(&temp[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005693 for ( ; j < hislen; ++i, ++j)
5694 temp[i] = history[type][j];
5695 }
5696 else /* array becomes smaller or 0 */
5697 {
5698 j = hisidx[type];
5699 for (i = newlen - 1; ; --i)
5700 {
5701 if (i >= 0) /* copy newest entries */
5702 temp[i] = history[type][j];
5703 else /* remove older entries */
5704 vim_free(history[type][j].hisstr);
5705 if (--j < 0)
5706 j = hislen - 1;
5707 if (j == hisidx[type])
5708 break;
5709 }
5710 hisidx[type] = newlen - 1;
5711 }
5712 vim_free(history[type]);
5713 history[type] = temp;
5714 }
5715 }
5716 hislen = newlen;
5717 }
5718}
5719
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005720 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005721clear_hist_entry(histentry_T *hisptr)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005722{
5723 hisptr->hisnum = 0;
5724 hisptr->viminfo = FALSE;
5725 hisptr->hisstr = NULL;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02005726 hisptr->time_set = 0;
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005727}
5728
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729/*
5730 * Check if command line 'str' is already in history.
5731 * If 'move_to_front' is TRUE, matching entry is moved to end of history.
5732 */
5733 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005734in_history(
5735 int type,
5736 char_u *str,
5737 int move_to_front, /* Move the entry to the front if it exists */
5738 int sep,
5739 int writing) /* ignore entries read from viminfo */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005740{
5741 int i;
5742 int last_i = -1;
Bram Moolenaar4c402232011-07-27 17:58:46 +02005743 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005744
5745 if (hisidx[type] < 0)
5746 return FALSE;
5747 i = hisidx[type];
5748 do
5749 {
5750 if (history[type][i].hisstr == NULL)
5751 return FALSE;
Bram Moolenaar4c402232011-07-27 17:58:46 +02005752
5753 /* For search history, check that the separator character matches as
5754 * well. */
5755 p = history[type][i].hisstr;
5756 if (STRCMP(str, p) == 0
Bram Moolenaar07219f92013-04-14 23:19:36 +02005757 && !(writing && history[type][i].viminfo)
Bram Moolenaar4c402232011-07-27 17:58:46 +02005758 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759 {
5760 if (!move_to_front)
5761 return TRUE;
5762 last_i = i;
5763 break;
5764 }
5765 if (--i < 0)
5766 i = hislen - 1;
5767 } while (i != hisidx[type]);
5768
5769 if (last_i >= 0)
5770 {
5771 str = history[type][i].hisstr;
5772 while (i != hisidx[type])
5773 {
5774 if (++i >= hislen)
5775 i = 0;
5776 history[type][last_i] = history[type][i];
5777 last_i = i;
5778 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005779 history[type][i].hisnum = ++hisnum[type];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005780 history[type][i].viminfo = FALSE;
5781 history[type][i].hisstr = str;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02005782 history[type][i].time_set = vim_time();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005783 return TRUE;
5784 }
5785 return FALSE;
5786}
5787
5788/*
5789 * Convert history name (from table above) to its HIST_ equivalent.
5790 * When "name" is empty, return "cmd" history.
5791 * Returns -1 for unknown history name.
5792 */
5793 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005794get_histtype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005795{
5796 int i;
5797 int len = (int)STRLEN(name);
5798
5799 /* No argument: use current history. */
5800 if (len == 0)
5801 return hist_char2type(ccline.cmdfirstc);
5802
5803 for (i = 0; history_names[i] != NULL; ++i)
5804 if (STRNICMP(name, history_names[i], len) == 0)
5805 return i;
5806
5807 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL)
5808 return hist_char2type(name[0]);
5809
5810 return -1;
5811}
5812
5813static int last_maptick = -1; /* last seen maptick */
5814
5815/*
5816 * Add the given string to the given history. If the string is already in the
5817 * history then it is moved to the front. "histype" may be one of he HIST_
5818 * values.
5819 */
5820 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005821add_to_history(
5822 int histype,
5823 char_u *new_entry,
5824 int in_map, /* consider maptick when inside a mapping */
5825 int sep) /* separator character used (search hist) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005826{
5827 histentry_T *hisptr;
5828 int len;
5829
5830 if (hislen == 0) /* no history */
5831 return;
5832
Bram Moolenaara939e432013-11-09 05:30:26 +01005833 if (cmdmod.keeppatterns && histype == HIST_SEARCH)
5834 return;
5835
Bram Moolenaar071d4272004-06-13 20:20:40 +00005836 /*
5837 * Searches inside the same mapping overwrite each other, so that only
5838 * the last line is kept. Be careful not to remove a line that was moved
5839 * down, only lines that were added.
5840 */
5841 if (histype == HIST_SEARCH && in_map)
5842 {
Bram Moolenaar46643712016-09-09 21:42:36 +02005843 if (maptick == last_maptick && hisidx[HIST_SEARCH] >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005844 {
5845 /* Current line is from the same mapping, remove it */
5846 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];
5847 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005848 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005849 --hisnum[histype];
5850 if (--hisidx[HIST_SEARCH] < 0)
5851 hisidx[HIST_SEARCH] = hislen - 1;
5852 }
5853 last_maptick = -1;
5854 }
Bram Moolenaar07219f92013-04-14 23:19:36 +02005855 if (!in_history(histype, new_entry, TRUE, sep, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856 {
5857 if (++hisidx[histype] == hislen)
5858 hisidx[histype] = 0;
5859 hisptr = &history[histype][hisidx[histype]];
5860 vim_free(hisptr->hisstr);
5861
5862 /* Store the separator after the NUL of the string. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005863 len = (int)STRLEN(new_entry);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005864 hisptr->hisstr = vim_strnsave(new_entry, len + 2);
5865 if (hisptr->hisstr != NULL)
5866 hisptr->hisstr[len + 1] = sep;
5867
5868 hisptr->hisnum = ++hisnum[histype];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005869 hisptr->viminfo = FALSE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02005870 hisptr->time_set = vim_time();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005871 if (histype == HIST_SEARCH && in_map)
5872 last_maptick = maptick;
5873 }
5874}
5875
5876#if defined(FEAT_EVAL) || defined(PROTO)
5877
5878/*
5879 * Get identifier of newest history entry.
5880 * "histype" may be one of the HIST_ values.
5881 */
5882 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005883get_history_idx(int histype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005884{
5885 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5886 || hisidx[histype] < 0)
5887 return -1;
5888
5889 return history[histype][hisidx[histype]].hisnum;
5890}
5891
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005892/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005893 * Calculate history index from a number:
5894 * num > 0: seen as identifying number of a history entry
5895 * num < 0: relative position in history wrt newest entry
5896 * "histype" may be one of the HIST_ values.
5897 */
5898 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005899calc_hist_idx(int histype, int num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900{
5901 int i;
5902 histentry_T *hist;
5903 int wrapped = FALSE;
5904
5905 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5906 || (i = hisidx[histype]) < 0 || num == 0)
5907 return -1;
5908
5909 hist = history[histype];
5910 if (num > 0)
5911 {
5912 while (hist[i].hisnum > num)
5913 if (--i < 0)
5914 {
5915 if (wrapped)
5916 break;
5917 i += hislen;
5918 wrapped = TRUE;
5919 }
5920 if (hist[i].hisnum == num && hist[i].hisstr != NULL)
5921 return i;
5922 }
5923 else if (-num <= hislen)
5924 {
5925 i += num + 1;
5926 if (i < 0)
5927 i += hislen;
5928 if (hist[i].hisstr != NULL)
5929 return i;
5930 }
5931 return -1;
5932}
5933
5934/*
5935 * Get a history entry by its index.
5936 * "histype" may be one of the HIST_ values.
5937 */
5938 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005939get_history_entry(int histype, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005940{
5941 idx = calc_hist_idx(histype, idx);
5942 if (idx >= 0)
5943 return history[histype][idx].hisstr;
5944 else
5945 return (char_u *)"";
5946}
5947
5948/*
5949 * Clear all entries of a history.
5950 * "histype" may be one of the HIST_ values.
5951 */
5952 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005953clr_history(int histype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005954{
5955 int i;
5956 histentry_T *hisptr;
5957
5958 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT)
5959 {
5960 hisptr = history[histype];
5961 for (i = hislen; i--;)
5962 {
5963 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005964 clear_hist_entry(hisptr);
Bram Moolenaar119d4692016-03-05 21:21:24 +01005965 hisptr++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966 }
5967 hisidx[histype] = -1; /* mark history as cleared */
5968 hisnum[histype] = 0; /* reset identifier counter */
5969 return OK;
5970 }
5971 return FAIL;
5972}
5973
5974/*
5975 * Remove all entries matching {str} from a history.
5976 * "histype" may be one of the HIST_ values.
5977 */
5978 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005979del_history_entry(int histype, char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005980{
5981 regmatch_T regmatch;
5982 histentry_T *hisptr;
5983 int idx;
5984 int i;
5985 int last;
5986 int found = FALSE;
5987
5988 regmatch.regprog = NULL;
5989 regmatch.rm_ic = FALSE; /* always match case */
5990 if (hislen != 0
5991 && histype >= 0
5992 && histype < HIST_COUNT
5993 && *str != NUL
5994 && (idx = hisidx[histype]) >= 0
5995 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING))
5996 != NULL)
5997 {
5998 i = last = idx;
5999 do
6000 {
6001 hisptr = &history[histype][i];
6002 if (hisptr->hisstr == NULL)
6003 break;
6004 if (vim_regexec(&regmatch, hisptr->hisstr, (colnr_T)0))
6005 {
6006 found = TRUE;
6007 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006008 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006009 }
6010 else
6011 {
6012 if (i != last)
6013 {
6014 history[histype][last] = *hisptr;
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006015 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006016 }
6017 if (--last < 0)
6018 last += hislen;
6019 }
6020 if (--i < 0)
6021 i += hislen;
6022 } while (i != idx);
6023 if (history[histype][idx].hisstr == NULL)
6024 hisidx[histype] = -1;
6025 }
Bram Moolenaar473de612013-06-08 18:19:48 +02006026 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006027 return found;
6028}
6029
6030/*
6031 * Remove an indexed entry from a history.
6032 * "histype" may be one of the HIST_ values.
6033 */
6034 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006035del_history_idx(int histype, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006036{
6037 int i, j;
6038
6039 i = calc_hist_idx(histype, idx);
6040 if (i < 0)
6041 return FALSE;
6042 idx = hisidx[histype];
6043 vim_free(history[histype][i].hisstr);
6044
6045 /* When deleting the last added search string in a mapping, reset
6046 * last_maptick, so that the last added search string isn't deleted again.
6047 */
6048 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx)
6049 last_maptick = -1;
6050
6051 while (i != idx)
6052 {
6053 j = (i + 1) % hislen;
6054 history[histype][i] = history[histype][j];
6055 i = j;
6056 }
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006057 clear_hist_entry(&history[histype][i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006058 if (--i < 0)
6059 i += hislen;
6060 hisidx[histype] = i;
6061 return TRUE;
6062}
6063
6064#endif /* FEAT_EVAL */
6065
6066#if defined(FEAT_CRYPT) || defined(PROTO)
6067/*
6068 * Very specific function to remove the value in ":set key=val" from the
6069 * history.
6070 */
6071 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006072remove_key_from_history(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006073{
6074 char_u *p;
6075 int i;
6076
6077 i = hisidx[HIST_CMD];
6078 if (i < 0)
6079 return;
6080 p = history[HIST_CMD][i].hisstr;
6081 if (p != NULL)
6082 for ( ; *p; ++p)
6083 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3]))
6084 {
6085 p = vim_strchr(p + 3, '=');
6086 if (p == NULL)
6087 break;
6088 ++p;
Bram Moolenaar1c465442017-03-12 20:10:05 +01006089 for (i = 0; p[i] && !VIM_ISWHITE(p[i]); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090 if (p[i] == '\\' && p[i + 1])
6091 ++i;
Bram Moolenaar446cb832008-06-24 21:56:24 +00006092 STRMOVE(p, p + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006093 --p;
6094 }
6095}
6096#endif
6097
6098#endif /* FEAT_CMDHIST */
6099
Bram Moolenaar064154c2016-03-19 22:50:43 +01006100#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006101/*
6102 * Get pointer to the command line info to use. cmdline_paste() may clear
6103 * ccline and put the previous value in prev_ccline.
6104 */
6105 static struct cmdline_info *
6106get_ccline_ptr(void)
6107{
6108 if ((State & CMDLINE) == 0)
6109 return NULL;
6110 if (ccline.cmdbuff != NULL)
6111 return &ccline;
6112 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
6113 return &prev_ccline;
6114 return NULL;
6115}
Bram Moolenaar064154c2016-03-19 22:50:43 +01006116#endif
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006117
Bram Moolenaar064154c2016-03-19 22:50:43 +01006118#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006119/*
6120 * Get the current command line in allocated memory.
6121 * Only works when the command line is being edited.
6122 * Returns NULL when something is wrong.
6123 */
6124 char_u *
6125get_cmdline_str(void)
6126{
6127 struct cmdline_info *p = get_ccline_ptr();
6128
6129 if (p == NULL)
6130 return NULL;
6131 return vim_strnsave(p->cmdbuff, p->cmdlen);
6132}
6133
6134/*
6135 * Get the current command line position, counted in bytes.
6136 * Zero is the first position.
6137 * Only works when the command line is being edited.
6138 * Returns -1 when something is wrong.
6139 */
6140 int
6141get_cmdline_pos(void)
6142{
6143 struct cmdline_info *p = get_ccline_ptr();
6144
6145 if (p == NULL)
6146 return -1;
6147 return p->cmdpos;
6148}
6149
6150/*
6151 * Set the command line byte position to "pos". Zero is the first position.
6152 * Only works when the command line is being edited.
6153 * Returns 1 when failed, 0 when OK.
6154 */
6155 int
6156set_cmdline_pos(
6157 int pos)
6158{
6159 struct cmdline_info *p = get_ccline_ptr();
6160
6161 if (p == NULL)
6162 return 1;
6163
6164 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
6165 * changed the command line. */
6166 if (pos < 0)
6167 new_cmdpos = 0;
6168 else
6169 new_cmdpos = pos;
6170 return 0;
6171}
6172#endif
6173
6174#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
6175/*
6176 * Get the current command-line type.
6177 * Returns ':' or '/' or '?' or '@' or '>' or '-'
6178 * Only works when the command line is being edited.
6179 * Returns NUL when something is wrong.
6180 */
6181 int
6182get_cmdline_type(void)
6183{
6184 struct cmdline_info *p = get_ccline_ptr();
6185
6186 if (p == NULL)
6187 return NUL;
6188 if (p->cmdfirstc == NUL)
Bram Moolenaar064154c2016-03-19 22:50:43 +01006189 return
6190# ifdef FEAT_EVAL
6191 (p->input_fn) ? '@' :
6192# endif
6193 '-';
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006194 return p->cmdfirstc;
6195}
6196#endif
6197
Bram Moolenaar071d4272004-06-13 20:20:40 +00006198#if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO)
6199/*
6200 * Get indices "num1,num2" that specify a range within a list (not a range of
6201 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
6202 * Returns OK if parsed successfully, otherwise FAIL.
6203 */
6204 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006205get_list_range(char_u **str, int *num1, int *num2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006206{
6207 int len;
6208 int first = FALSE;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02006209 varnumber_T num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006210
6211 *str = skipwhite(*str);
6212 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
6213 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006214 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006215 *str += len;
6216 *num1 = (int)num;
6217 first = TRUE;
6218 }
6219 *str = skipwhite(*str);
6220 if (**str == ',') /* parse "to" part of range */
6221 {
6222 *str = skipwhite(*str + 1);
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006223 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006224 if (len > 0)
6225 {
6226 *num2 = (int)num;
6227 *str = skipwhite(*str + len);
6228 }
6229 else if (!first) /* no number given at all */
6230 return FAIL;
6231 }
6232 else if (first) /* only one number given */
6233 *num2 = *num1;
6234 return OK;
6235}
6236#endif
6237
6238#if defined(FEAT_CMDHIST) || defined(PROTO)
6239/*
6240 * :history command - print a history
6241 */
6242 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006243ex_history(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006244{
6245 histentry_T *hist;
6246 int histype1 = HIST_CMD;
6247 int histype2 = HIST_CMD;
6248 int hisidx1 = 1;
6249 int hisidx2 = -1;
6250 int idx;
6251 int i, j, k;
6252 char_u *end;
6253 char_u *arg = eap->arg;
6254
6255 if (hislen == 0)
6256 {
6257 MSG(_("'history' option is zero"));
6258 return;
6259 }
6260
6261 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ','))
6262 {
6263 end = arg;
6264 while (ASCII_ISALPHA(*end)
6265 || vim_strchr((char_u *)":=@>/?", *end) != NULL)
6266 end++;
6267 i = *end;
6268 *end = NUL;
6269 histype1 = get_histtype(arg);
6270 if (histype1 == -1)
6271 {
Bram Moolenaarb9c1e962009-04-22 11:52:33 +00006272 if (STRNICMP(arg, "all", STRLEN(arg)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006273 {
6274 histype1 = 0;
6275 histype2 = HIST_COUNT-1;
6276 }
6277 else
6278 {
6279 *end = i;
6280 EMSG(_(e_trailing));
6281 return;
6282 }
6283 }
6284 else
6285 histype2 = histype1;
6286 *end = i;
6287 }
6288 else
6289 end = arg;
6290 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL)
6291 {
6292 EMSG(_(e_trailing));
6293 return;
6294 }
6295
6296 for (; !got_int && histype1 <= histype2; ++histype1)
6297 {
6298 STRCPY(IObuff, "\n # ");
6299 STRCAT(STRCAT(IObuff, history_names[histype1]), " history");
6300 MSG_PUTS_TITLE(IObuff);
6301 idx = hisidx[histype1];
6302 hist = history[histype1];
6303 j = hisidx1;
6304 k = hisidx2;
6305 if (j < 0)
6306 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum;
6307 if (k < 0)
6308 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum;
6309 if (idx >= 0 && j <= k)
6310 for (i = idx + 1; !got_int; ++i)
6311 {
6312 if (i == hislen)
6313 i = 0;
6314 if (hist[i].hisstr != NULL
6315 && hist[i].hisnum >= j && hist[i].hisnum <= k)
6316 {
6317 msg_putchar('\n');
6318 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ',
6319 hist[i].hisnum);
6320 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10)
6321 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff),
Bram Moolenaar38f5f952012-01-26 13:01:59 +01006322 (int)Columns - 10, IOSIZE - (int)STRLEN(IObuff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006323 else
6324 STRCAT(IObuff, hist[i].hisstr);
6325 msg_outtrans(IObuff);
6326 out_flush();
6327 }
6328 if (i == idx)
6329 break;
6330 }
6331 }
6332}
6333#endif
6334
6335#if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006336/*
6337 * Buffers for history read from a viminfo file. Only valid while reading.
6338 */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006339static histentry_T *viminfo_history[HIST_COUNT] =
6340 {NULL, NULL, NULL, NULL, NULL};
6341static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0, 0};
6342static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006343static int viminfo_add_at_front = FALSE;
6344
Bram Moolenaard25c16e2016-01-29 22:13:30 +01006345static int hist_type2char(int type, int use_question);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006346
6347/*
6348 * Translate a history type number to the associated character.
6349 */
6350 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006351hist_type2char(
6352 int type,
6353 int use_question) /* use '?' instead of '/' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006354{
6355 if (type == HIST_CMD)
6356 return ':';
6357 if (type == HIST_SEARCH)
6358 {
6359 if (use_question)
6360 return '?';
6361 else
6362 return '/';
6363 }
6364 if (type == HIST_EXPR)
6365 return '=';
6366 return '@';
6367}
6368
6369/*
6370 * Prepare for reading the history from the viminfo file.
6371 * This allocates history arrays to store the read history lines.
6372 */
6373 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006374prepare_viminfo_history(int asklen, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006375{
6376 int i;
6377 int num;
6378 int type;
6379 int len;
6380
6381 init_history();
Bram Moolenaar07219f92013-04-14 23:19:36 +02006382 viminfo_add_at_front = (asklen != 0 && !writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006383 if (asklen > hislen)
6384 asklen = hislen;
6385
6386 for (type = 0; type < HIST_COUNT; ++type)
6387 {
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006388 /* Count the number of empty spaces in the history list. Entries read
6389 * from viminfo previously are also considered empty. If there are
6390 * more spaces available than we request, then fill them up. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006391 for (i = 0, num = 0; i < hislen; i++)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006392 if (history[type][i].hisstr == NULL || history[type][i].viminfo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006393 num++;
6394 len = asklen;
6395 if (num > len)
6396 len = num;
6397 if (len <= 0)
6398 viminfo_history[type] = NULL;
6399 else
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006400 viminfo_history[type] = (histentry_T *)lalloc(
6401 (long_u)(len * sizeof(histentry_T)), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006402 if (viminfo_history[type] == NULL)
6403 len = 0;
6404 viminfo_hislen[type] = len;
6405 viminfo_hisidx[type] = 0;
6406 }
6407}
6408
6409/*
6410 * Accept a line from the viminfo, store it in the history array when it's
6411 * new.
6412 */
6413 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006414read_viminfo_history(vir_T *virp, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006415{
6416 int type;
6417 long_u len;
6418 char_u *val;
6419 char_u *p;
6420
6421 type = hist_char2type(virp->vir_line[0]);
6422 if (viminfo_hisidx[type] < viminfo_hislen[type])
6423 {
6424 val = viminfo_readstring(virp, 1, TRUE);
6425 if (val != NULL && *val != NUL)
6426 {
Bram Moolenaard87fbc22012-02-04 22:44:32 +01006427 int sep = (*val == ' ' ? NUL : *val);
6428
Bram Moolenaar071d4272004-06-13 20:20:40 +00006429 if (!in_history(type, val + (type == HIST_SEARCH),
Bram Moolenaar07219f92013-04-14 23:19:36 +02006430 viminfo_add_at_front, sep, writing))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006431 {
6432 /* Need to re-allocate to append the separator byte. */
6433 len = STRLEN(val);
6434 p = lalloc(len + 2, TRUE);
6435 if (p != NULL)
6436 {
6437 if (type == HIST_SEARCH)
6438 {
6439 /* Search entry: Move the separator from the first
6440 * column to after the NUL. */
6441 mch_memmove(p, val + 1, (size_t)len);
Bram Moolenaard87fbc22012-02-04 22:44:32 +01006442 p[len] = sep;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006443 }
6444 else
6445 {
6446 /* Not a search entry: No separator in the viminfo
6447 * file, add a NUL separator. */
6448 mch_memmove(p, val, (size_t)len + 1);
6449 p[len + 1] = NUL;
6450 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006451 viminfo_history[type][viminfo_hisidx[type]].hisstr = p;
6452 viminfo_history[type][viminfo_hisidx[type]].time_set = 0;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006453 viminfo_history[type][viminfo_hisidx[type]].viminfo = TRUE;
6454 viminfo_history[type][viminfo_hisidx[type]].hisnum = 0;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006455 viminfo_hisidx[type]++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006456 }
6457 }
6458 }
6459 vim_free(val);
6460 }
6461 return viminfo_readline(virp);
6462}
6463
Bram Moolenaar07219f92013-04-14 23:19:36 +02006464/*
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006465 * Accept a new style history line from the viminfo, store it in the history
6466 * array when it's new.
6467 */
6468 void
6469handle_viminfo_history(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006470 garray_T *values,
6471 int writing)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006472{
6473 int type;
6474 long_u len;
6475 char_u *val;
6476 char_u *p;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006477 bval_T *vp = (bval_T *)values->ga_data;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006478
6479 /* Check the format:
6480 * |{bartype},{histtype},{timestamp},{separator},"text" */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006481 if (values->ga_len < 4
6482 || vp[0].bv_type != BVAL_NR
6483 || vp[1].bv_type != BVAL_NR
6484 || (vp[2].bv_type != BVAL_NR && vp[2].bv_type != BVAL_EMPTY)
6485 || vp[3].bv_type != BVAL_STRING)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006486 return;
6487
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006488 type = vp[0].bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006489 if (type >= HIST_COUNT)
6490 return;
6491 if (viminfo_hisidx[type] < viminfo_hislen[type])
6492 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006493 val = vp[3].bv_string;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006494 if (val != NULL && *val != NUL)
6495 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006496 int sep = type == HIST_SEARCH && vp[2].bv_type == BVAL_NR
6497 ? vp[2].bv_nr : NUL;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006498 int idx;
6499 int overwrite = FALSE;
6500
6501 if (!in_history(type, val, viminfo_add_at_front, sep, writing))
6502 {
6503 /* If lines were written by an older Vim we need to avoid
6504 * getting duplicates. See if the entry already exists. */
6505 for (idx = 0; idx < viminfo_hisidx[type]; ++idx)
6506 {
6507 p = viminfo_history[type][idx].hisstr;
6508 if (STRCMP(val, p) == 0
6509 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1]))
6510 {
6511 overwrite = TRUE;
6512 break;
6513 }
6514 }
6515
6516 if (!overwrite)
6517 {
6518 /* Need to re-allocate to append the separator byte. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006519 len = vp[3].bv_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006520 p = lalloc(len + 2, TRUE);
6521 }
Bram Moolenaar72e697d2016-06-13 22:48:01 +02006522 else
6523 len = 0; /* for picky compilers */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006524 if (p != NULL)
6525 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006526 viminfo_history[type][idx].time_set = vp[1].bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006527 if (!overwrite)
6528 {
6529 mch_memmove(p, val, (size_t)len + 1);
6530 /* Put the separator after the NUL. */
6531 p[len + 1] = sep;
6532 viminfo_history[type][idx].hisstr = p;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006533 viminfo_history[type][idx].hisnum = 0;
6534 viminfo_history[type][idx].viminfo = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006535 viminfo_hisidx[type]++;
6536 }
6537 }
6538 }
6539 }
6540 }
6541}
6542
6543/*
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006544 * Concatenate history lines from viminfo after the lines typed in this Vim.
Bram Moolenaar07219f92013-04-14 23:19:36 +02006545 */
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006546 static void
6547concat_history(int type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006548{
6549 int idx;
6550 int i;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006551
6552 idx = hisidx[type] + viminfo_hisidx[type];
6553 if (idx >= hislen)
6554 idx -= hislen;
6555 else if (idx < 0)
6556 idx = hislen - 1;
6557 if (viminfo_add_at_front)
6558 hisidx[type] = idx;
6559 else
6560 {
6561 if (hisidx[type] == -1)
6562 hisidx[type] = hislen - 1;
6563 do
6564 {
6565 if (history[type][idx].hisstr != NULL
6566 || history[type][idx].viminfo)
6567 break;
6568 if (++idx == hislen)
6569 idx = 0;
6570 } while (idx != hisidx[type]);
6571 if (idx != hisidx[type] && --idx < 0)
6572 idx = hislen - 1;
6573 }
6574 for (i = 0; i < viminfo_hisidx[type]; i++)
6575 {
6576 vim_free(history[type][idx].hisstr);
6577 history[type][idx].hisstr = viminfo_history[type][i].hisstr;
6578 history[type][idx].viminfo = TRUE;
6579 history[type][idx].time_set = viminfo_history[type][i].time_set;
6580 if (--idx < 0)
6581 idx = hislen - 1;
6582 }
6583 idx += 1;
6584 idx %= hislen;
6585 for (i = 0; i < viminfo_hisidx[type]; i++)
6586 {
6587 history[type][idx++].hisnum = ++hisnum[type];
6588 idx %= hislen;
6589 }
6590}
6591
6592#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6593 static int
6594#ifdef __BORLANDC__
6595_RTLENTRYF
6596#endif
6597sort_hist(const void *s1, const void *s2)
6598{
6599 histentry_T *p1 = *(histentry_T **)s1;
6600 histentry_T *p2 = *(histentry_T **)s2;
6601
6602 if (p1->time_set < p2->time_set) return -1;
6603 if (p1->time_set > p2->time_set) return 1;
6604 return 0;
6605}
6606#endif
6607
6608/*
6609 * Merge history lines from viminfo and lines typed in this Vim based on the
6610 * timestamp;
6611 */
6612 static void
6613merge_history(int type)
6614{
6615 int max_len;
6616 histentry_T **tot_hist;
6617 histentry_T *new_hist;
6618 int i;
6619 int len;
6620
6621 /* Make one long list with all entries. */
6622 max_len = hislen + viminfo_hisidx[type];
6623 tot_hist = (histentry_T **)alloc(max_len * (int)sizeof(histentry_T *));
6624 new_hist = (histentry_T *)alloc(hislen * (int)sizeof(histentry_T));
6625 if (tot_hist == NULL || new_hist == NULL)
6626 {
6627 vim_free(tot_hist);
6628 vim_free(new_hist);
6629 return;
6630 }
6631 for (i = 0; i < viminfo_hisidx[type]; i++)
6632 tot_hist[i] = &viminfo_history[type][i];
6633 len = i;
6634 for (i = 0; i < hislen; i++)
6635 if (history[type][i].hisstr != NULL)
6636 tot_hist[len++] = &history[type][i];
6637
6638 /* Sort the list on timestamp. */
6639 qsort((void *)tot_hist, (size_t)len, sizeof(histentry_T *), sort_hist);
6640
6641 /* Keep the newest ones. */
6642 for (i = 0; i < hislen; i++)
6643 {
6644 if (i < len)
6645 {
6646 new_hist[i] = *tot_hist[i];
6647 tot_hist[i]->hisstr = NULL;
6648 if (new_hist[i].hisnum == 0)
6649 new_hist[i].hisnum = ++hisnum[type];
6650 }
6651 else
6652 clear_hist_entry(&new_hist[i]);
6653 }
Bram Moolenaara890f5e2016-06-12 23:03:19 +02006654 hisidx[type] = (i < len ? i : len) - 1;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006655
6656 /* Free what is not kept. */
6657 for (i = 0; i < viminfo_hisidx[type]; i++)
6658 vim_free(viminfo_history[type][i].hisstr);
6659 for (i = 0; i < hislen; i++)
6660 vim_free(history[type][i].hisstr);
6661 vim_free(history[type]);
6662 history[type] = new_hist;
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02006663 vim_free(tot_hist);
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006664}
6665
6666/*
6667 * Finish reading history lines from viminfo. Not used when writing viminfo.
6668 */
6669 void
6670finish_viminfo_history(vir_T *virp)
6671{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006672 int type;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006673 int merge = virp->vir_version >= VIMINFO_VERSION_WITH_HISTORY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006674
6675 for (type = 0; type < HIST_COUNT; ++type)
6676 {
6677 if (history[type] == NULL)
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006678 continue;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006679
6680 if (merge)
6681 merge_history(type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006682 else
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006683 concat_history(type);
6684
Bram Moolenaar071d4272004-06-13 20:20:40 +00006685 vim_free(viminfo_history[type]);
6686 viminfo_history[type] = NULL;
Bram Moolenaarf687cf32013-04-24 15:39:11 +02006687 viminfo_hisidx[type] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006688 }
6689}
6690
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006691/*
6692 * Write history to viminfo file in "fp".
6693 * When "merge" is TRUE merge history lines with a previously read viminfo
6694 * file, data is in viminfo_history[].
6695 * When "merge" is FALSE just write all history lines. Used for ":wviminfo!".
6696 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006697 void
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006698write_viminfo_history(FILE *fp, int merge)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699{
6700 int i;
6701 int type;
6702 int num_saved;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006703 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006704
6705 init_history();
6706 if (hislen == 0)
6707 return;
6708 for (type = 0; type < HIST_COUNT; ++type)
6709 {
6710 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE));
6711 if (num_saved == 0)
6712 continue;
6713 if (num_saved < 0) /* Use default */
6714 num_saved = hislen;
6715 fprintf(fp, _("\n# %s History (newest to oldest):\n"),
6716 type == HIST_CMD ? _("Command Line") :
6717 type == HIST_SEARCH ? _("Search String") :
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006718 type == HIST_EXPR ? _("Expression") :
6719 type == HIST_INPUT ? _("Input Line") :
6720 _("Debug Line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006721 if (num_saved > hislen)
6722 num_saved = hislen;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006723
6724 /*
6725 * Merge typed and viminfo history:
6726 * round 1: history of typed commands.
6727 * round 2: history from recently read viminfo.
6728 */
6729 for (round = 1; round <= 2; ++round)
6730 {
Bram Moolenaara8565fe2013-04-15 16:14:22 +02006731 if (round == 1)
6732 /* start at newest entry, somewhere in the list */
6733 i = hisidx[type];
6734 else if (viminfo_hisidx[type] > 0)
6735 /* start at newest entry, first in the list */
6736 i = 0;
6737 else
6738 /* empty list */
6739 i = -1;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006740 if (i >= 0)
6741 while (num_saved > 0
6742 && !(round == 2 && i >= viminfo_hisidx[type]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006743 {
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006744 char_u *p;
6745 time_t timestamp;
6746 int c = NUL;
6747
6748 if (round == 1)
6749 {
6750 p = history[type][i].hisstr;
6751 timestamp = history[type][i].time_set;
6752 }
6753 else
6754 {
6755 p = viminfo_history[type] == NULL ? NULL
6756 : viminfo_history[type][i].hisstr;
6757 timestamp = viminfo_history[type] == NULL ? 0
6758 : viminfo_history[type][i].time_set;
6759 }
6760
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006761 if (p != NULL && (round == 2
6762 || !merge
6763 || !history[type][i].viminfo))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006764 {
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006765 --num_saved;
6766 fputc(hist_type2char(type, TRUE), fp);
6767 /* For the search history: put the separator in the
6768 * second column; use a space if there isn't one. */
6769 if (type == HIST_SEARCH)
6770 {
6771 c = p[STRLEN(p) + 1];
6772 putc(c == NUL ? ' ' : c, fp);
6773 }
6774 viminfo_writestring(fp, p);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006775
6776 {
6777 char cbuf[NUMBUFLEN];
6778
6779 /* New style history with a bar line. Format:
6780 * |{bartype},{histtype},{timestamp},{separator},"text" */
6781 if (c == NUL)
6782 cbuf[0] = NUL;
6783 else
6784 sprintf(cbuf, "%d", c);
6785 fprintf(fp, "|%d,%d,%ld,%s,", BARTYPE_HISTORY,
6786 type, (long)timestamp, cbuf);
6787 barline_writestring(fp, p, LSIZE - 20);
6788 putc('\n', fp);
6789 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006790 }
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006791 if (round == 1)
6792 {
6793 /* Decrement index, loop around and stop when back at
6794 * the start. */
6795 if (--i < 0)
6796 i = hislen - 1;
6797 if (i == hisidx[type])
6798 break;
6799 }
6800 else
6801 {
6802 /* Increment index. Stop at the end in the while. */
6803 ++i;
6804 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006805 }
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006806 }
Bram Moolenaar07219f92013-04-14 23:19:36 +02006807 for (i = 0; i < viminfo_hisidx[type]; ++i)
Bram Moolenaarf687cf32013-04-24 15:39:11 +02006808 if (viminfo_history[type] != NULL)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006809 vim_free(viminfo_history[type][i].hisstr);
Bram Moolenaar07219f92013-04-14 23:19:36 +02006810 vim_free(viminfo_history[type]);
6811 viminfo_history[type] = NULL;
Bram Moolenaarb70a4732013-04-15 22:22:57 +02006812 viminfo_hisidx[type] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006813 }
6814}
6815#endif /* FEAT_VIMINFO */
6816
6817#if defined(FEAT_FKMAP) || defined(PROTO)
6818/*
6819 * Write a character at the current cursor+offset position.
6820 * It is directly written into the command buffer block.
6821 */
6822 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006823cmd_pchar(int c, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006824{
6825 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6826 {
6827 EMSG(_("E198: cmd_pchar beyond the command length"));
6828 return;
6829 }
6830 ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c;
6831 ccline.cmdbuff[ccline.cmdlen] = NUL;
6832}
6833
6834 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006835cmd_gchar(int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006836{
6837 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6838 {
6839 /* EMSG(_("cmd_gchar beyond the command length")); */
6840 return NUL;
6841 }
6842 return (int)ccline.cmdbuff[ccline.cmdpos + offset];
6843}
6844#endif
6845
6846#if defined(FEAT_CMDWIN) || defined(PROTO)
6847/*
6848 * Open a window on the current command line and history. Allow editing in
6849 * the window. Returns when the window is closed.
6850 * Returns:
6851 * CR if the command is to be executed
6852 * Ctrl_C if it is to be abandoned
6853 * K_IGNORE if editing continues
6854 */
6855 static int
Bram Moolenaar3bab9392017-04-07 15:42:25 +02006856open_cmdwin(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006857{
6858 struct cmdline_info save_ccline;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006859 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006860 win_T *old_curwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006861 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006862 win_T *wp;
6863 int i;
6864 linenr_T lnum;
6865 int histtype;
6866 garray_T winsizes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006867 int save_restart_edit = restart_edit;
6868 int save_State = State;
6869 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00006870#ifdef FEAT_RIGHTLEFT
6871 int save_cmdmsg_rl = cmdmsg_rl;
6872#endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006873#ifdef FEAT_FOLDING
6874 int save_KeyTyped;
6875#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006876
6877 /* Can't do this recursively. Can't do it when typing a password. */
6878 if (cmdwin_type != 0
6879# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
6880 || cmdline_star > 0
6881# endif
6882 )
6883 {
6884 beep_flush();
6885 return K_IGNORE;
6886 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006887 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006888
6889 /* Save current window sizes. */
6890 win_size_save(&winsizes);
6891
6892# ifdef FEAT_AUTOCMD
6893 /* Don't execute autocommands while creating the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006894 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006895# endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00006896 /* don't use a new tab page */
6897 cmdmod.tab = 0;
Bram Moolenaar3bab9392017-04-07 15:42:25 +02006898 cmdmod.noswapfile = 1;
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00006899
Bram Moolenaar071d4272004-06-13 20:20:40 +00006900 /* Create a window for the command-line buffer. */
6901 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
6902 {
6903 beep_flush();
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006904# ifdef FEAT_AUTOCMD
6905 unblock_autocmds();
6906# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006907 return K_IGNORE;
6908 }
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006909 cmdwin_type = get_cmdline_type();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006910
6911 /* Create the command-line buffer empty. */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006912 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL);
Bram Moolenaar446cb832008-06-24 21:56:24 +00006913 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006914 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006915 curbuf->b_p_ma = TRUE;
Bram Moolenaar876f6d72009-04-29 10:05:51 +00006916#ifdef FEAT_FOLDING
6917 curwin->w_p_fen = FALSE;
6918#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006919# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00006920 curwin->w_p_rl = cmdmsg_rl;
6921 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006922# endif
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006923 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006924
6925# ifdef FEAT_AUTOCMD
6926 /* Do execute autocommands for setting the filetype (load syntax). */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006927 unblock_autocmds();
Bram Moolenaar18141832017-06-25 21:17:25 +02006928 /* But don't allow switching to another buffer. */
6929 ++curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930# endif
6931
Bram Moolenaar46152342005-09-07 21:18:43 +00006932 /* Showing the prompt may have set need_wait_return, reset it. */
6933 need_wait_return = FALSE;
6934
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006935 histtype = hist_char2type(cmdwin_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006936 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
6937 {
6938 if (p_wc == TAB)
6939 {
6940 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
6941 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
6942 }
6943 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
6944 }
Bram Moolenaar18141832017-06-25 21:17:25 +02006945# ifdef FEAT_AUTOCMD
6946 --curbuf_lock;
6947# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006948
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006949 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
6950 * sets 'textwidth' to 78). */
6951 curbuf->b_p_tw = 0;
6952
Bram Moolenaar071d4272004-06-13 20:20:40 +00006953 /* Fill the buffer with the history. */
6954 init_history();
6955 if (hislen > 0)
6956 {
6957 i = hisidx[histtype];
6958 if (i >= 0)
6959 {
6960 lnum = 0;
6961 do
6962 {
6963 if (++i == hislen)
6964 i = 0;
6965 if (history[histtype][i].hisstr != NULL)
6966 ml_append(lnum++, history[histtype][i].hisstr,
6967 (colnr_T)0, FALSE);
6968 }
6969 while (i != hisidx[histtype]);
6970 }
6971 }
6972
6973 /* Replace the empty last line with the current command-line and put the
6974 * cursor there. */
6975 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
6976 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6977 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00006978 changed_line_abv_curs();
6979 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00006980 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006981
6982 /* Save the command line info, can be used recursively. */
Bram Moolenaar1d669c22017-01-11 22:40:19 +01006983 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006984
6985 /* No Ex mode here! */
6986 exmode_active = 0;
6987
6988 State = NORMAL;
6989# ifdef FEAT_MOUSE
6990 setmouse();
6991# endif
6992
6993# ifdef FEAT_AUTOCMD
6994 /* Trigger CmdwinEnter autocommands. */
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02006995 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINENTER);
Bram Moolenaar5495cc92006-08-16 14:23:04 +00006996 if (restart_edit != 0) /* autocmd with ":startinsert" */
6997 stuffcharReadbuff(K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006998# endif
6999
7000 i = RedrawingDisabled;
7001 RedrawingDisabled = 0;
7002
7003 /*
7004 * Call the main loop until <CR> or CTRL-C is typed.
7005 */
7006 cmdwin_result = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00007007 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007008
7009 RedrawingDisabled = i;
7010
7011# ifdef FEAT_AUTOCMD
Bram Moolenaar42f06f92014-08-17 17:24:07 +02007012
7013# ifdef FEAT_FOLDING
7014 save_KeyTyped = KeyTyped;
7015# endif
7016
Bram Moolenaar071d4272004-06-13 20:20:40 +00007017 /* Trigger CmdwinLeave autocommands. */
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02007018 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINLEAVE);
Bram Moolenaar42f06f92014-08-17 17:24:07 +02007019
7020# ifdef FEAT_FOLDING
7021 /* Restore KeyTyped in case it is modified by autocommands */
7022 KeyTyped = save_KeyTyped;
7023# endif
7024
Bram Moolenaar071d4272004-06-13 20:20:40 +00007025# endif
7026
Bram Moolenaarccc18222007-05-10 18:25:20 +00007027 /* Restore the command line info. */
Bram Moolenaar1d669c22017-01-11 22:40:19 +01007028 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007029 cmdwin_type = 0;
7030
7031 exmode_active = save_exmode;
7032
Bram Moolenaarf9821062008-06-20 16:31:07 +00007033 /* Safety check: The old window or buffer was deleted: It's a bug when
Bram Moolenaar071d4272004-06-13 20:20:40 +00007034 * this happens! */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007035 if (!win_valid(old_curwin) || !bufref_valid(&old_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007036 {
7037 cmdwin_result = Ctrl_C;
7038 EMSG(_("E199: Active window or buffer deleted"));
7039 }
7040 else
7041 {
7042# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7043 /* autocmds may abort script processing */
7044 if (aborting() && cmdwin_result != K_IGNORE)
7045 cmdwin_result = Ctrl_C;
7046# endif
7047 /* Set the new command line from the cmdline buffer. */
7048 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00007049 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007050 {
Bram Moolenaar46152342005-09-07 21:18:43 +00007051 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
7052
7053 if (histtype == HIST_CMD)
7054 {
7055 /* Execute the command directly. */
7056 ccline.cmdbuff = vim_strsave((char_u *)p);
7057 cmdwin_result = CAR;
7058 }
7059 else
7060 {
7061 /* First need to cancel what we were doing. */
7062 ccline.cmdbuff = NULL;
7063 stuffcharReadbuff(':');
7064 stuffReadbuff((char_u *)p);
7065 stuffcharReadbuff(CAR);
7066 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007067 }
7068 else if (cmdwin_result == K_XF2) /* :qa typed */
7069 {
7070 ccline.cmdbuff = vim_strsave((char_u *)"qa");
7071 cmdwin_result = CAR;
7072 }
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02007073 else if (cmdwin_result == Ctrl_C)
7074 {
7075 /* :q or :close, don't execute any command
7076 * and don't modify the cmd window. */
7077 ccline.cmdbuff = NULL;
7078 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007079 else
7080 ccline.cmdbuff = vim_strsave(ml_get_curline());
7081 if (ccline.cmdbuff == NULL)
Bram Moolenaar5a15b6a2017-07-11 15:11:57 +02007082 {
7083 ccline.cmdbuff = vim_strsave((char_u *)"");
7084 ccline.cmdlen = 0;
7085 ccline.cmdbufflen = 1;
7086 ccline.cmdpos = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007087 cmdwin_result = Ctrl_C;
Bram Moolenaar5a15b6a2017-07-11 15:11:57 +02007088 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007089 else
7090 {
7091 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
7092 ccline.cmdbufflen = ccline.cmdlen + 1;
7093 ccline.cmdpos = curwin->w_cursor.col;
7094 if (ccline.cmdpos > ccline.cmdlen)
7095 ccline.cmdpos = ccline.cmdlen;
7096 if (cmdwin_result == K_IGNORE)
7097 {
7098 set_cmdspos_cursor();
7099 redrawcmd();
7100 }
7101 }
7102
7103# ifdef FEAT_AUTOCMD
7104 /* Don't execute autocommands while deleting the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007105 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007106# endif
Bram Moolenaarfa67fbe2015-06-25 18:20:36 +02007107# ifdef FEAT_CONCEAL
7108 /* Avoid command-line window first character being concealed. */
7109 curwin->w_p_cole = 0;
7110# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007111 wp = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007112 set_bufref(&bufref, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007113 win_goto(old_curwin);
7114 win_close(wp, TRUE);
Bram Moolenaar8006d692010-03-02 17:23:21 +01007115
7116 /* win_close() may have already wiped the buffer when 'bh' is
7117 * set to 'wipe' */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007118 if (bufref_valid(&bufref))
7119 close_buffer(NULL, bufref.br_buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007120
7121 /* Restore window sizes. */
7122 win_size_restore(&winsizes);
7123
7124# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007125 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007126# endif
7127 }
7128
7129 ga_clear(&winsizes);
7130 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00007131# ifdef FEAT_RIGHTLEFT
7132 cmdmsg_rl = save_cmdmsg_rl;
7133# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007134
7135 State = save_State;
7136# ifdef FEAT_MOUSE
7137 setmouse();
7138# endif
7139
7140 return cmdwin_result;
7141}
7142#endif /* FEAT_CMDWIN */
7143
7144/*
7145 * Used for commands that either take a simple command string argument, or:
7146 * cmd << endmarker
7147 * {script}
7148 * endmarker
7149 * Returns a pointer to allocated memory with {script} or NULL.
7150 */
7151 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007152script_get(exarg_T *eap, char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007153{
7154 char_u *theline;
7155 char *end_pattern = NULL;
7156 char dot[] = ".";
7157 garray_T ga;
7158
7159 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
7160 return NULL;
7161
7162 ga_init2(&ga, 1, 0x400);
7163
7164 if (cmd[2] != NUL)
7165 end_pattern = (char *)skipwhite(cmd + 2);
7166 else
7167 end_pattern = dot;
7168
7169 for (;;)
7170 {
7171 theline = eap->getline(
7172#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00007173 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00007174#endif
7175 NUL, eap->cookie, 0);
7176
7177 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
Bram Moolenaarbe555e72008-08-06 12:19:26 +00007178 {
7179 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007180 break;
Bram Moolenaarbe555e72008-08-06 12:19:26 +00007181 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007182
7183 ga_concat(&ga, theline);
7184 ga_append(&ga, '\n');
7185 vim_free(theline);
7186 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00007187 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007188
7189 return (char_u *)ga.ga_data;
7190}
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02007191
7192#ifdef FEAT_SEARCH_EXTRA
7193 static void
7194set_search_match(pos_T *t)
7195{
7196 /*
7197 * First move cursor to end of match, then to the start. This
7198 * moves the whole match onto the screen when 'nowrap' is set.
7199 */
7200 t->lnum += search_match_lines;
7201 t->col = search_match_endcol;
7202 if (t->lnum > curbuf->b_ml.ml_line_count)
7203 {
7204 t->lnum = curbuf->b_ml.ml_line_count;
7205 coladvance((colnr_T)MAXCOL);
7206 }
7207}
7208#endif