blob: 4ff9ae17a2c50e1a349cfba80f370f8ad18f877e [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
55#ifdef FEAT_CMDHIST
56typedef struct hist_entry
57{
58 int hisnum; /* identifying number */
Bram Moolenaarb3049f42013-04-05 18:58:47 +020059 int viminfo; /* when TRUE hisstr comes from viminfo */
Bram Moolenaar071d4272004-06-13 20:20:40 +000060 char_u *hisstr; /* actual entry, separator char after the NUL */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +020061 time_t time_set; /* when it was typed, zero if unknown */
Bram Moolenaar071d4272004-06-13 20:20:40 +000062} histentry_T;
63
64static histentry_T *(history[HIST_COUNT]) = {NULL, NULL, NULL, NULL, NULL};
65static int hisidx[HIST_COUNT] = {-1, -1, -1, -1, -1}; /* lastused entry */
66static int hisnum[HIST_COUNT] = {0, 0, 0, 0, 0};
67 /* identifying (unique) number of newest history entry */
68static int hislen = 0; /* actual length of history tables */
69
Bram Moolenaard25c16e2016-01-29 22:13:30 +010070static int hist_char2type(int c);
Bram Moolenaar071d4272004-06-13 20:20:40 +000071
Bram Moolenaard25c16e2016-01-29 22:13:30 +010072static int in_history(int, char_u *, int, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000073# ifdef FEAT_EVAL
Bram Moolenaard25c16e2016-01-29 22:13:30 +010074static int calc_hist_idx(int histype, int num);
Bram Moolenaar071d4272004-06-13 20:20:40 +000075# endif
76#endif
77
78#ifdef FEAT_RIGHTLEFT
79static int cmd_hkmap = 0; /* Hebrew mapping during command line */
80#endif
81
82#ifdef FEAT_FKMAP
83static int cmd_fkmap = 0; /* Farsi mapping during command line */
84#endif
85
Bram Moolenaard25c16e2016-01-29 22:13:30 +010086static int cmdline_charsize(int idx);
87static void set_cmdspos(void);
88static void set_cmdspos_cursor(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000089#ifdef FEAT_MBYTE
Bram Moolenaard25c16e2016-01-29 22:13:30 +010090static void correct_cmdspos(int idx, int cells);
Bram Moolenaar071d4272004-06-13 20:20:40 +000091#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010092static void alloc_cmdbuff(int len);
93static int realloc_cmdbuff(int len);
94static void draw_cmdline(int start, int len);
95static void save_cmdline(struct cmdline_info *ccp);
96static void restore_cmdline(struct cmdline_info *ccp);
97static int cmdline_paste(int regname, int literally, int remcr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000098#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaard25c16e2016-01-29 22:13:30 +010099static void redrawcmd_preedit(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100#endif
101#ifdef FEAT_WILDMENU
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100102static void cmdline_del(int from);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100104static void redrawcmdprompt(void);
105static void cursorcmd(void);
106static int ccheck_abbr(int);
107static int nextwild(expand_T *xp, int type, int options, int escape);
108static void escape_fname(char_u **pp);
109static int showmatches(expand_T *xp, int wildmenu);
110static void set_expand_context(expand_T *xp);
111static int ExpandFromContext(expand_T *xp, char_u *, int *, char_u ***, int);
112static int expand_showtail(expand_T *xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113#ifdef FEAT_CMDL_COMPL
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100114static int expand_shellcmd(char_u *filepat, int *num_file, char_u ***file, int flagsarg);
Bram Moolenaar52f9c192016-03-13 13:24:45 +0100115static int ExpandRTDir(char_u *pat, int flags, int *num_file, char_u ***file, char *dirname[]);
Bram Moolenaar35ca0e72016-03-05 17:41:49 +0100116static int ExpandPackAddDir(char_u *pat, int *num_file, char_u ***file);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +0200117# ifdef FEAT_CMDHIST
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100118static char_u *get_history_arg(expand_T *xp, int idx);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +0200119# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100121static int ExpandUserDefined(expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file);
122static int ExpandUserList(expand_T *xp, int *num_file, char_u ***file);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123# endif
124#endif
Bram Moolenaar25a6df92013-04-06 14:29:00 +0200125#ifdef FEAT_CMDHIST
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100126static void clear_hist_entry(histentry_T *hisptr);
Bram Moolenaar25a6df92013-04-06 14:29:00 +0200127#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128
129#ifdef FEAT_CMDWIN
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100130static int ex_window(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131#endif
132
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200133#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
134static int
135#ifdef __BORLANDC__
136_RTLENTRYF
137#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100138sort_func_compare(const void *s1, const void *s2);
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200139#endif
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +0200140#ifdef FEAT_SEARCH_EXTRA
141static void set_search_match(pos_T *t);
142#endif
Bram Moolenaardb710ed2011-10-26 22:02:15 +0200143
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144/*
145 * getcmdline() - accept a command line starting with firstc.
146 *
147 * firstc == ':' get ":" command line.
148 * firstc == '/' or '?' get search pattern
149 * firstc == '=' get expression
150 * firstc == '@' get text for input() function
151 * firstc == '>' get text for debug mode
152 * firstc == NUL get text for :insert command
153 * firstc == -1 like NUL, and break on CTRL-C
154 *
155 * The line is collected in ccline.cmdbuff, which is reallocated to fit the
156 * command line.
157 *
158 * Careful: getcmdline() can be called recursively!
159 *
160 * Return pointer to allocated string if there is a commandline, NULL
161 * otherwise.
162 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100164getcmdline(
165 int firstc,
166 long count UNUSED, /* only used for incremental search */
167 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168{
169 int c;
170 int i;
171 int j;
172 int gotesc = FALSE; /* TRUE when <ESC> just typed */
173 int do_abbr; /* when TRUE check for abbr. */
174#ifdef FEAT_CMDHIST
175 char_u *lookfor = NULL; /* string to match */
176 int hiscnt; /* current history line in use */
177 int histype; /* history type to be used */
178#endif
179#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaardda933d2016-09-03 21:04:58 +0200180 pos_T search_start; /* where 'incsearch' starts searching */
181 pos_T save_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182 colnr_T old_curswant;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200183 colnr_T init_curswant = curwin->w_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184 colnr_T old_leftcol;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200185 colnr_T init_leftcol = curwin->w_leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186 linenr_T old_topline;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200187 linenr_T init_topline = curwin->w_topline;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +0200188 pos_T match_start = curwin->w_cursor;
189 pos_T match_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190# ifdef FEAT_DIFF
191 int old_topfill;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200192 int init_topfill = curwin->w_topfill;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193# endif
194 linenr_T old_botline;
Bram Moolenaardda933d2016-09-03 21:04:58 +0200195 linenr_T init_botline = curwin->w_botline;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 int did_incsearch = FALSE;
197 int incsearch_postponed = FALSE;
198#endif
199 int did_wild_list = FALSE; /* did wild_list() recently */
200 int wim_index = 0; /* index in wim_flags[] */
201 int res;
202 int save_msg_scroll = msg_scroll;
203 int save_State = State; /* remember State when called */
204 int some_key_typed = FALSE; /* one of the keys was typed */
205#ifdef FEAT_MOUSE
206 /* mouse drag and release events are ignored, unless they are
207 * preceded with a mouse down event */
208 int ignore_drag_release = TRUE;
209#endif
210#ifdef FEAT_EVAL
211 int break_ctrl_c = FALSE;
212#endif
213 expand_T xpc;
214 long *b_im_ptr = NULL;
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000215#if defined(FEAT_WILDMENU) || defined(FEAT_EVAL) || defined(FEAT_SEARCH_EXTRA)
216 /* Everything that may work recursively should save and restore the
217 * current command line in save_ccline. That includes update_screen(), a
218 * custom status line may invoke ":normal". */
219 struct cmdline_info save_ccline;
220#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222#ifdef FEAT_EVAL
223 if (firstc == -1)
224 {
225 firstc = NUL;
226 break_ctrl_c = TRUE;
227 }
228#endif
229#ifdef FEAT_RIGHTLEFT
230 /* start without Hebrew mapping for a command line */
231 if (firstc == ':' || firstc == '=' || firstc == '>')
232 cmd_hkmap = 0;
233#endif
234
235 ccline.overstrike = FALSE; /* always start in insert mode */
236#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +0200237 clearpos(&match_end);
Bram Moolenaardda933d2016-09-03 21:04:58 +0200238 save_cursor = curwin->w_cursor; /* may be restored later */
239 search_start = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240 old_curswant = curwin->w_curswant;
241 old_leftcol = curwin->w_leftcol;
242 old_topline = curwin->w_topline;
243# ifdef FEAT_DIFF
244 old_topfill = curwin->w_topfill;
245# endif
246 old_botline = curwin->w_botline;
247#endif
248
249 /*
250 * set some variables for redrawcmd()
251 */
252 ccline.cmdfirstc = (firstc == '@' ? 0 : firstc);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000253 ccline.cmdindent = (firstc > 0 ? indent : 0);
254
255 /* alloc initial ccline.cmdbuff */
256 alloc_cmdbuff(exmode_active ? 250 : indent + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 if (ccline.cmdbuff == NULL)
258 return NULL; /* out of memory */
259 ccline.cmdlen = ccline.cmdpos = 0;
260 ccline.cmdbuff[0] = NUL;
261
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000262 /* autoindent for :insert and :append */
263 if (firstc <= 0)
264 {
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200265 vim_memset(ccline.cmdbuff, ' ', indent);
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000266 ccline.cmdbuff[indent] = NUL;
267 ccline.cmdpos = indent;
268 ccline.cmdspos = indent;
269 ccline.cmdlen = indent;
270 }
271
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272 ExpandInit(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000273 ccline.xpc = &xpc;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274
275#ifdef FEAT_RIGHTLEFT
276 if (curwin->w_p_rl && *curwin->w_p_rlc == 's'
277 && (firstc == '/' || firstc == '?'))
278 cmdmsg_rl = TRUE;
279 else
280 cmdmsg_rl = FALSE;
281#endif
282
283 redir_off = TRUE; /* don't redirect the typed command */
284 if (!cmd_silent)
285 {
286 i = msg_scrolled;
287 msg_scrolled = 0; /* avoid wait_return message */
288 gotocmdline(TRUE);
289 msg_scrolled += i;
290 redrawcmdprompt(); /* draw prompt or indent */
291 set_cmdspos();
292 }
293 xpc.xp_context = EXPAND_NOTHING;
294 xpc.xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000295#ifndef BACKSLASH_IN_FILENAME
296 xpc.xp_shell = FALSE;
297#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000299#if defined(FEAT_EVAL)
300 if (ccline.input_fn)
301 {
302 xpc.xp_context = ccline.xp_context;
303 xpc.xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +0000304# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000305 xpc.xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +0000306# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000307 }
308#endif
309
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 /*
311 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when
312 * doing ":@0" when register 0 doesn't contain a CR.
313 */
314 msg_scroll = FALSE;
315
316 State = CMDLINE;
317
318 if (firstc == '/' || firstc == '?' || firstc == '@')
319 {
320 /* Use ":lmap" mappings for search pattern and input(). */
321 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT)
322 b_im_ptr = &curbuf->b_p_iminsert;
323 else
324 b_im_ptr = &curbuf->b_p_imsearch;
325 if (*b_im_ptr == B_IMODE_LMAP)
326 State |= LANGMAP;
327#ifdef USE_IM_CONTROL
328 im_set_active(*b_im_ptr == B_IMODE_IM);
329#endif
330 }
331#ifdef USE_IM_CONTROL
332 else if (p_imcmdline)
333 im_set_active(TRUE);
334#endif
335
336#ifdef FEAT_MOUSE
337 setmouse();
338#endif
339#ifdef CURSOR_SHAPE
340 ui_cursor_shape(); /* may show different cursor shape */
341#endif
342
Bram Moolenaarf4d11452005-12-02 00:46:37 +0000343 /* When inside an autocommand for writing "exiting" may be set and
344 * terminal mode set to cooked. Need to set raw mode here then. */
345 settmode(TMODE_RAW);
346
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347#ifdef FEAT_CMDHIST
348 init_history();
349 hiscnt = hislen; /* set hiscnt to impossible history value */
350 histype = hist_char2type(firstc);
351#endif
352
353#ifdef FEAT_DIGRAPHS
Bram Moolenaar3c65e312009-04-29 16:47:23 +0000354 do_digraph(-1); /* init digraph typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355#endif
356
Bram Moolenaar15a35c42014-06-25 12:26:46 +0200357 /* If something above caused an error, reset the flags, we do want to type
358 * and execute commands. Display may be messed up a bit. */
359 if (did_emsg)
360 redrawcmd();
361 did_emsg = FALSE;
362 got_int = FALSE;
363
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364 /*
365 * Collect the command string, handling editing keys.
366 */
367 for (;;)
368 {
Bram Moolenaar29b2d262006-09-10 19:07:28 +0000369 redir_off = TRUE; /* Don't redirect the typed command.
370 Repeated, because a ":redir" inside
371 completion may switch it on. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372#ifdef USE_ON_FLY_SCROLL
373 dont_scroll = FALSE; /* allow scrolling here */
374#endif
375 quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */
376
377 cursorcmd(); /* set the cursor on the right spot */
Bram Moolenaar30405d32008-01-02 20:55:27 +0000378
379 /* Get a character. Ignore K_IGNORE, it should not do anything, such
380 * as stop completion. */
381 do
382 {
383 c = safe_vgetc();
384 } while (c == K_IGNORE);
385
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 if (KeyTyped)
387 {
388 some_key_typed = TRUE;
389#ifdef FEAT_RIGHTLEFT
390 if (cmd_hkmap)
391 c = hkmap(c);
392# ifdef FEAT_FKMAP
393 if (cmd_fkmap)
394 c = cmdl_fkmap(c);
395# endif
396 if (cmdmsg_rl && !KeyStuffed)
397 {
398 /* Invert horizontal movements and operations. Only when
399 * typed by the user directly, not when the result of a
400 * mapping. */
401 switch (c)
402 {
403 case K_RIGHT: c = K_LEFT; break;
404 case K_S_RIGHT: c = K_S_LEFT; break;
405 case K_C_RIGHT: c = K_C_LEFT; break;
406 case K_LEFT: c = K_RIGHT; break;
407 case K_S_LEFT: c = K_S_RIGHT; break;
408 case K_C_LEFT: c = K_C_RIGHT; break;
409 }
410 }
411#endif
412 }
413
414 /*
415 * Ignore got_int when CTRL-C was typed here.
416 * Don't ignore it in :global, we really need to break then, e.g., for
417 * ":g/pat/normal /pat" (without the <CR>).
418 * Don't ignore it for the input() function.
419 */
420 if ((c == Ctrl_C
421#ifdef UNIX
422 || c == intr_char
423#endif
424 )
425#if defined(FEAT_EVAL) || defined(FEAT_CRYPT)
426 && firstc != '@'
427#endif
428#ifdef FEAT_EVAL
429 && !break_ctrl_c
430#endif
431 && !global_busy)
432 got_int = FALSE;
433
434#ifdef FEAT_CMDHIST
435 /* free old command line when finished moving around in the history
436 * list */
437 if (lookfor != NULL
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000438 && c != K_S_DOWN && c != K_S_UP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000439 && c != K_DOWN && c != K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440 && c != K_PAGEDOWN && c != K_PAGEUP
441 && c != K_KPAGEDOWN && c != K_KPAGEUP
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000442 && c != K_LEFT && c != K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N)))
444 {
445 vim_free(lookfor);
446 lookfor = NULL;
447 }
448#endif
449
450 /*
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000451 * When there are matching completions to select <S-Tab> works like
452 * CTRL-P (unless 'wc' is <S-Tab>).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453 */
Bram Moolenaard6e7cc62008-09-14 12:42:29 +0000454 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000455 c = Ctrl_P;
456
457#ifdef FEAT_WILDMENU
458 /* Special translations for 'wildmenu' */
459 if (did_wild_list && p_wmnu)
460 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000461 if (c == K_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462 c = Ctrl_P;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000463 else if (c == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464 c = Ctrl_N;
465 }
466 /* Hitting CR after "emenu Name.": complete submenu */
467 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu
468 && ccline.cmdpos > 1
469 && ccline.cmdbuff[ccline.cmdpos - 1] == '.'
470 && ccline.cmdbuff[ccline.cmdpos - 2] != '\\'
471 && (c == '\n' || c == '\r' || c == K_KENTER))
472 c = K_DOWN;
473#endif
474
475 /* free expanded names when finished walking through matches */
476 if (xpc.xp_numfiles != -1
477 && !(c == p_wc && KeyTyped) && c != p_wcm
478 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A
479 && c != Ctrl_L)
480 {
481 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
482 did_wild_list = FALSE;
483#ifdef FEAT_WILDMENU
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000484 if (!p_wmnu || (c != K_UP && c != K_DOWN))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485#endif
486 xpc.xp_context = EXPAND_NOTHING;
487 wim_index = 0;
488#ifdef FEAT_WILDMENU
489 if (p_wmnu && wild_menu_showing != 0)
490 {
491 int skt = KeyTyped;
Bram Moolenaar1e015462005-09-25 22:16:38 +0000492 int old_RedrawingDisabled = RedrawingDisabled;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000493
494 if (ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000495 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496
497 if (wild_menu_showing == WM_SCROLLED)
498 {
499 /* Entered command line, move it up */
500 cmdline_row--;
501 redrawcmd();
502 }
503 else if (save_p_ls != -1)
504 {
505 /* restore 'laststatus' and 'winminheight' */
506 p_ls = save_p_ls;
507 p_wmh = save_p_wmh;
508 last_status(FALSE);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000509 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510 update_screen(VALID); /* redraw the screen NOW */
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000511 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 redrawcmd();
513 save_p_ls = -1;
514 }
515 else
516 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517 win_redraw_last_status(topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 redraw_statuslines();
519 }
520 KeyTyped = skt;
521 wild_menu_showing = 0;
Bram Moolenaar1e015462005-09-25 22:16:38 +0000522 if (ccline.input_fn)
523 RedrawingDisabled = old_RedrawingDisabled;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524 }
525#endif
526 }
527
528#ifdef FEAT_WILDMENU
529 /* Special translations for 'wildmenu' */
530 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu)
531 {
532 /* Hitting <Down> after "emenu Name.": complete submenu */
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000533 if (c == K_DOWN && ccline.cmdpos > 0
534 && ccline.cmdbuff[ccline.cmdpos - 1] == '.')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 c = p_wc;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000536 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537 {
538 /* Hitting <Up>: Remove one submenu name in front of the
539 * cursor */
540 int found = FALSE;
541
542 j = (int)(xpc.xp_pattern - ccline.cmdbuff);
543 i = 0;
544 while (--j > 0)
545 {
546 /* check for start of menu name */
547 if (ccline.cmdbuff[j] == ' '
548 && ccline.cmdbuff[j - 1] != '\\')
549 {
550 i = j + 1;
551 break;
552 }
553 /* check for start of submenu name */
554 if (ccline.cmdbuff[j] == '.'
555 && ccline.cmdbuff[j - 1] != '\\')
556 {
557 if (found)
558 {
559 i = j + 1;
560 break;
561 }
562 else
563 found = TRUE;
564 }
565 }
566 if (i > 0)
567 cmdline_del(i);
568 c = p_wc;
569 xpc.xp_context = EXPAND_NOTHING;
570 }
571 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000572 if ((xpc.xp_context == EXPAND_FILES
Bram Moolenaar446cb832008-06-24 21:56:24 +0000573 || xpc.xp_context == EXPAND_DIRECTORIES
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000574 || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 {
576 char_u upseg[5];
577
578 upseg[0] = PATHSEP;
579 upseg[1] = '.';
580 upseg[2] = '.';
581 upseg[3] = PATHSEP;
582 upseg[4] = NUL;
583
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000584 if (c == K_DOWN
585 && ccline.cmdpos > 0
586 && ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP
587 && (ccline.cmdpos < 3
588 || ccline.cmdbuff[ccline.cmdpos - 2] != '.'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 || ccline.cmdbuff[ccline.cmdpos - 3] != '.'))
590 {
591 /* go down a directory */
592 c = p_wc;
593 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000594 else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595 {
596 /* If in a direct ancestor, strip off one ../ to go down */
597 int found = FALSE;
598
599 j = ccline.cmdpos;
600 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
601 while (--j > i)
602 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000603#ifdef FEAT_MBYTE
604 if (has_mbyte)
605 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
606#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607 if (vim_ispathsep(ccline.cmdbuff[j]))
608 {
609 found = TRUE;
610 break;
611 }
612 }
613 if (found
614 && ccline.cmdbuff[j - 1] == '.'
615 && ccline.cmdbuff[j - 2] == '.'
616 && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2))
617 {
618 cmdline_del(j - 2);
619 c = p_wc;
620 }
621 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000622 else if (c == K_UP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623 {
624 /* go up a directory */
625 int found = FALSE;
626
627 j = ccline.cmdpos - 1;
628 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
629 while (--j > i)
630 {
631#ifdef FEAT_MBYTE
632 if (has_mbyte)
633 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
634#endif
635 if (vim_ispathsep(ccline.cmdbuff[j])
636#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100637 && vim_strchr((char_u *)" *?[{`$%#",
638 ccline.cmdbuff[j + 1]) == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639#endif
640 )
641 {
642 if (found)
643 {
644 i = j + 1;
645 break;
646 }
647 else
648 found = TRUE;
649 }
650 }
651
652 if (!found)
653 j = i;
654 else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0)
655 j += 4;
656 else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0
657 && j == i)
658 j += 3;
659 else
660 j = 0;
661 if (j > 0)
662 {
663 /* TODO this is only for DOS/UNIX systems - need to put in
664 * machine-specific stuff here and in upseg init */
665 cmdline_del(j);
666 put_on_cmdline(upseg + 1, 3, FALSE);
667 }
668 else if (ccline.cmdpos > i)
669 cmdline_del(i);
Bram Moolenaar96a89642011-12-08 18:44:51 +0100670
671 /* Now complete in the new directory. Set KeyTyped in case the
672 * Up key came from a mapping. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 c = p_wc;
Bram Moolenaar96a89642011-12-08 18:44:51 +0100674 KeyTyped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 }
676 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677
678#endif /* FEAT_WILDMENU */
679
680 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert
681 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */
682 if (c == Ctrl_BSL)
683 {
684 ++no_mapping;
685 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000686 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 --no_mapping;
688 --allow_keys;
Bram Moolenaarb7356812012-10-11 04:04:37 +0200689 /* CTRL-\ e doesn't work when obtaining an expression, unless it
690 * is in a mapping. */
691 if (c != Ctrl_N && c != Ctrl_G && (c != 'e'
692 || (ccline.cmdfirstc == '=' && KeyTyped)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 {
694 vungetc(c);
695 c = Ctrl_BSL;
696 }
697#ifdef FEAT_EVAL
698 else if (c == 'e')
699 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +0200700 char_u *p = NULL;
701 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702
703 /*
704 * Replace the command line with the result of an expression.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000705 * Need to save and restore the current command line, to be
706 * able to enter a new one...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 */
708 if (ccline.cmdpos == ccline.cmdlen)
709 new_cmdpos = 99999; /* keep it at the end */
710 else
711 new_cmdpos = ccline.cmdpos;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000712
713 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000715 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716 if (c == '=')
717 {
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000718 /* Need to save and restore ccline. And set "textlock"
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000719 * to avoid nasty things like going to another buffer when
720 * evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000721 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000722 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723 p = get_expr_line();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000724 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000725 restore_cmdline(&save_ccline);
726
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200727 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728 {
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200729 len = (int)STRLEN(p);
730 if (realloc_cmdbuff(len + 1) == OK)
731 {
732 ccline.cmdlen = len;
733 STRCPY(ccline.cmdbuff, p);
734 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200736 /* Restore the cursor or use the position set with
737 * set_cmdline_pos(). */
738 if (new_cmdpos > ccline.cmdlen)
739 ccline.cmdpos = ccline.cmdlen;
740 else
741 ccline.cmdpos = new_cmdpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742
Bram Moolenaarfc3c83e2010-10-27 12:58:23 +0200743 KeyTyped = FALSE; /* Don't do p_wc completion. */
744 redrawcmd();
745 goto cmdline_changed;
746 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 }
748 }
749 beep_flush();
Bram Moolenaar66b4bf82010-11-16 14:06:08 +0100750 got_int = FALSE; /* don't abandon the command line */
751 did_emsg = FALSE;
752 emsg_on_display = FALSE;
753 redrawcmd();
754 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 }
756#endif
757 else
758 {
759 if (c == Ctrl_G && p_im && restart_edit == 0)
760 restart_edit = 'a';
761 gotesc = TRUE; /* will free ccline.cmdbuff after putting it
762 in history */
763 goto returncmd; /* back to Normal mode */
764 }
765 }
766
767#ifdef FEAT_CMDWIN
768 if (c == cedit_key || c == K_CMDWIN)
769 {
Bram Moolenaar58da7072014-09-09 18:45:49 +0200770 if (ex_normal_busy == 0 && got_int == FALSE)
771 {
772 /*
773 * Open a window to edit the command line (and history).
774 */
775 c = ex_window();
776 some_key_typed = TRUE;
777 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 }
779# ifdef FEAT_DIGRAPHS
780 else
781# endif
782#endif
783#ifdef FEAT_DIGRAPHS
784 c = do_digraph(c);
785#endif
786
787 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC
788 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL)))
789 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000790 /* In Ex mode a backslash escapes a newline. */
791 if (exmode_active
792 && c != ESC
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000793 && ccline.cmdpos == ccline.cmdlen
Bram Moolenaar5f2c5db2007-07-17 16:15:36 +0000794 && ccline.cmdpos > 0
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000795 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000797 if (c == K_KENTER)
798 c = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000800 else
801 {
802 gotesc = FALSE; /* Might have typed ESC previously, don't
803 truncate the cmdline now. */
804 if (ccheck_abbr(c + ABBR_OFF))
805 goto cmdline_changed;
806 if (!cmd_silent)
807 {
808 windgoto(msg_row, 0);
809 out_flush();
810 }
811 break;
812 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813 }
814
815 /*
816 * Completion for 'wildchar' or 'wildcharm' key.
817 * - hitting <ESC> twice means: abandon command line.
818 * - wildcard expansion is only done when the 'wildchar' key is really
819 * typed, not when it comes from a macro
820 */
821 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm)
822 {
823 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */
824 {
825 /* if 'wildmode' contains "list" may still need to list */
826 if (xpc.xp_numfiles > 1
827 && !did_wild_list
828 && (wim_flags[wim_index] & WIM_LIST))
829 {
830 (void)showmatches(&xpc, FALSE);
831 redrawcmd();
832 did_wild_list = TRUE;
833 }
834 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100835 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
836 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100838 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
839 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 else
841 res = OK; /* don't insert 'wildchar' now */
842 }
843 else /* typed p_wc first time */
844 {
845 wim_index = 0;
846 j = ccline.cmdpos;
847 /* if 'wildmode' first contains "longest", get longest
848 * common part */
849 if (wim_flags[0] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100850 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
851 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 else
Bram Moolenaarb3479632012-11-28 16:49:58 +0100853 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP,
854 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855
856 /* if interrupted while completing, behave like it failed */
857 if (got_int)
858 {
859 (void)vpeekc(); /* remove <C-C> from input stream */
860 got_int = FALSE; /* don't abandon the command line */
861 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
862#ifdef FEAT_WILDMENU
863 xpc.xp_context = EXPAND_NOTHING;
864#endif
865 goto cmdline_changed;
866 }
867
868 /* when more than one match, and 'wildmode' first contains
869 * "list", or no change and 'wildmode' contains "longest,list",
870 * list all matches */
871 if (res == OK && xpc.xp_numfiles > 1)
872 {
873 /* a "longest" that didn't do anything is skipped (but not
874 * "list:longest") */
875 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j)
876 wim_index = 1;
877 if ((wim_flags[wim_index] & WIM_LIST)
878#ifdef FEAT_WILDMENU
879 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0)
880#endif
881 )
882 {
883 if (!(wim_flags[0] & WIM_LONGEST))
884 {
885#ifdef FEAT_WILDMENU
886 int p_wmnu_save = p_wmnu;
887 p_wmnu = 0;
888#endif
Bram Moolenaarb3479632012-11-28 16:49:58 +0100889 /* remove match */
890 nextwild(&xpc, WILD_PREV, 0, firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891#ifdef FEAT_WILDMENU
892 p_wmnu = p_wmnu_save;
893#endif
894 }
895#ifdef FEAT_WILDMENU
896 (void)showmatches(&xpc, p_wmnu
897 && ((wim_flags[wim_index] & WIM_LIST) == 0));
898#else
899 (void)showmatches(&xpc, FALSE);
900#endif
901 redrawcmd();
902 did_wild_list = TRUE;
903 if (wim_flags[wim_index] & WIM_LONGEST)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100904 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP,
905 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 else if (wim_flags[wim_index] & WIM_FULL)
Bram Moolenaarb3479632012-11-28 16:49:58 +0100907 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP,
908 firstc != '@');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 }
910 else
Bram Moolenaar165bc692015-07-21 17:53:25 +0200911 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 }
913#ifdef FEAT_WILDMENU
914 else if (xpc.xp_numfiles == -1)
915 xpc.xp_context = EXPAND_NOTHING;
916#endif
917 }
918 if (wim_index < 3)
919 ++wim_index;
920 if (c == ESC)
921 gotesc = TRUE;
922 if (res == OK)
923 goto cmdline_changed;
924 }
925
926 gotesc = FALSE;
927
928 /* <S-Tab> goes to last match, in a clumsy way */
929 if (c == K_S_TAB && KeyTyped)
930 {
Bram Moolenaarb3479632012-11-28 16:49:58 +0100931 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0, firstc != '@') == OK
932 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK
933 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934 goto cmdline_changed;
935 }
936
937 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */
938 c = NL;
939
940 do_abbr = TRUE; /* default: check for abbreviation */
941
942 /*
943 * Big switch for a typed command line character.
944 */
945 switch (c)
946 {
947 case K_BS:
948 case Ctrl_H:
949 case K_DEL:
950 case K_KDEL:
951 case Ctrl_W:
952#ifdef FEAT_FKMAP
953 if (cmd_fkmap && c == K_BS)
954 c = K_DEL;
955#endif
956 if (c == K_KDEL)
957 c = K_DEL;
958
959 /*
960 * delete current character is the same as backspace on next
961 * character, except at end of line
962 */
963 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen)
964 ++ccline.cmdpos;
965#ifdef FEAT_MBYTE
966 if (has_mbyte && c == K_DEL)
967 ccline.cmdpos += mb_off_next(ccline.cmdbuff,
968 ccline.cmdbuff + ccline.cmdpos);
969#endif
970 if (ccline.cmdpos > 0)
971 {
972 char_u *p;
973
974 j = ccline.cmdpos;
975 p = ccline.cmdbuff + j;
976#ifdef FEAT_MBYTE
977 if (has_mbyte)
978 {
979 p = mb_prevptr(ccline.cmdbuff, p);
980 if (c == Ctrl_W)
981 {
982 while (p > ccline.cmdbuff && vim_isspace(*p))
983 p = mb_prevptr(ccline.cmdbuff, p);
984 i = mb_get_class(p);
985 while (p > ccline.cmdbuff && mb_get_class(p) == i)
986 p = mb_prevptr(ccline.cmdbuff, p);
987 if (mb_get_class(p) != i)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000988 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 }
990 }
991 else
992#endif
993 if (c == Ctrl_W)
994 {
995 while (p > ccline.cmdbuff && vim_isspace(p[-1]))
996 --p;
997 i = vim_iswordc(p[-1]);
998 while (p > ccline.cmdbuff && !vim_isspace(p[-1])
999 && vim_iswordc(p[-1]) == i)
1000 --p;
1001 }
1002 else
1003 --p;
1004 ccline.cmdpos = (int)(p - ccline.cmdbuff);
1005 ccline.cmdlen -= j - ccline.cmdpos;
1006 i = ccline.cmdpos;
1007 while (i < ccline.cmdlen)
1008 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1009
1010 /* Truncate at the end, required for multi-byte chars. */
1011 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001012#ifdef FEAT_SEARCH_EXTRA
1013 if (ccline.cmdlen == 0)
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001014 {
Bram Moolenaardda933d2016-09-03 21:04:58 +02001015 search_start = save_cursor;
1016 /* save view settings, so that the screen
1017 * won't be restored at the wrong position */
1018 old_curswant = init_curswant;
1019 old_leftcol = init_leftcol;
1020 old_topline = init_topline;
1021# ifdef FEAT_DIFF
1022 old_topfill = init_topfill;
1023# endif
1024 old_botline = init_botline;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001025 }
1026#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027 redrawcmd();
1028 }
1029 else if (ccline.cmdlen == 0 && c != Ctrl_W
1030 && ccline.cmdprompt == NULL && indent == 0)
1031 {
1032 /* In ex and debug mode it doesn't make sense to return. */
1033 if (exmode_active
1034#ifdef FEAT_EVAL
1035 || ccline.cmdfirstc == '>'
1036#endif
1037 )
1038 goto cmdline_not_changed;
1039
1040 vim_free(ccline.cmdbuff); /* no commandline to return */
1041 ccline.cmdbuff = NULL;
1042 if (!cmd_silent)
1043 {
1044#ifdef FEAT_RIGHTLEFT
1045 if (cmdmsg_rl)
1046 msg_col = Columns;
1047 else
1048#endif
1049 msg_col = 0;
1050 msg_putchar(' '); /* delete ':' */
1051 }
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001052#ifdef FEAT_SEARCH_EXTRA
1053 if (ccline.cmdlen == 0)
Bram Moolenaardda933d2016-09-03 21:04:58 +02001054 search_start = save_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001055#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 redraw_cmdline = TRUE;
1057 goto returncmd; /* back to cmd mode */
1058 }
1059 goto cmdline_changed;
1060
1061 case K_INS:
1062 case K_KINS:
1063#ifdef FEAT_FKMAP
1064 /* if Farsi mode set, we are in reverse insert mode -
1065 Do not change the mode */
1066 if (cmd_fkmap)
1067 beep_flush();
1068 else
1069#endif
1070 ccline.overstrike = !ccline.overstrike;
1071#ifdef CURSOR_SHAPE
1072 ui_cursor_shape(); /* may show different cursor shape */
1073#endif
1074 goto cmdline_not_changed;
1075
1076 case Ctrl_HAT:
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00001077 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 {
1079 /* ":lmap" mappings exists, toggle use of mappings. */
1080 State ^= LANGMAP;
1081#ifdef USE_IM_CONTROL
1082 im_set_active(FALSE); /* Disable input method */
1083#endif
1084 if (b_im_ptr != NULL)
1085 {
1086 if (State & LANGMAP)
1087 *b_im_ptr = B_IMODE_LMAP;
1088 else
1089 *b_im_ptr = B_IMODE_NONE;
1090 }
1091 }
1092#ifdef USE_IM_CONTROL
1093 else
1094 {
1095 /* There are no ":lmap" mappings, toggle IM. When
1096 * 'imdisable' is set don't try getting the status, it's
1097 * always off. */
1098 if ((p_imdisable && b_im_ptr != NULL)
1099 ? *b_im_ptr == B_IMODE_IM : im_get_status())
1100 {
1101 im_set_active(FALSE); /* Disable input method */
1102 if (b_im_ptr != NULL)
1103 *b_im_ptr = B_IMODE_NONE;
1104 }
1105 else
1106 {
1107 im_set_active(TRUE); /* Enable input method */
1108 if (b_im_ptr != NULL)
1109 *b_im_ptr = B_IMODE_IM;
1110 }
1111 }
1112#endif
1113 if (b_im_ptr != NULL)
1114 {
1115 if (b_im_ptr == &curbuf->b_p_iminsert)
1116 set_iminsert_global();
1117 else
1118 set_imsearch_global();
1119 }
1120#ifdef CURSOR_SHAPE
1121 ui_cursor_shape(); /* may show different cursor shape */
1122#endif
1123#if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
1124 /* Show/unshow value of 'keymap' in status lines later. */
1125 status_redraw_curbuf();
1126#endif
1127 goto cmdline_not_changed;
1128
1129/* case '@': only in very old vi */
1130 case Ctrl_U:
1131 /* delete all characters left of the cursor */
1132 j = ccline.cmdpos;
1133 ccline.cmdlen -= j;
1134 i = ccline.cmdpos = 0;
1135 while (i < ccline.cmdlen)
1136 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
1137 /* Truncate at the end, required for multi-byte chars. */
1138 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001139#ifdef FEAT_SEARCH_EXTRA
1140 if (ccline.cmdlen == 0)
Bram Moolenaardda933d2016-09-03 21:04:58 +02001141 search_start = save_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001142#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143 redrawcmd();
1144 goto cmdline_changed;
1145
1146#ifdef FEAT_CLIPBOARD
1147 case Ctrl_Y:
1148 /* Copy the modeless selection, if there is one. */
1149 if (clip_star.state != SELECT_CLEARED)
1150 {
1151 if (clip_star.state == SELECT_DONE)
1152 clip_copy_modeless_selection(TRUE);
1153 goto cmdline_not_changed;
1154 }
1155 break;
1156#endif
1157
1158 case ESC: /* get here if p_wc != ESC or when ESC typed twice */
1159 case Ctrl_C:
Bram Moolenaarf4d11452005-12-02 00:46:37 +00001160 /* In exmode it doesn't make sense to return. Except when
Bram Moolenaar7c626922005-02-07 22:01:03 +00001161 * ":normal" runs out of characters. */
1162 if (exmode_active
Bram Moolenaare2c38102016-01-31 14:55:40 +01001163 && (ex_normal_busy == 0 || typebuf.tb_len > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 goto cmdline_not_changed;
1165
1166 gotesc = TRUE; /* will free ccline.cmdbuff after
1167 putting it in history */
1168 goto returncmd; /* back to cmd mode */
1169
1170 case Ctrl_R: /* insert register */
1171#ifdef USE_ON_FLY_SCROLL
1172 dont_scroll = TRUE; /* disallow scrolling here */
1173#endif
1174 putcmdline('"', TRUE);
1175 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001176 i = c = plain_vgetc(); /* CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177 if (i == Ctrl_O)
1178 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */
1179 if (i == Ctrl_R)
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001180 c = plain_vgetc(); /* CTRL-R CTRL-R <char> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 --no_mapping;
1182#ifdef FEAT_EVAL
1183 /*
1184 * Insert the result of an expression.
1185 * Need to save the current command line, to be able to enter
1186 * a new one...
1187 */
1188 new_cmdpos = -1;
1189 if (c == '=')
1190 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 if (ccline.cmdfirstc == '=')/* can't do this recursively */
1192 {
1193 beep_flush();
1194 c = ESC;
1195 }
1196 else
1197 {
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001198 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 c = get_expr_register();
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00001200 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 }
1202 }
1203#endif
1204 if (c != ESC) /* use ESC to cancel inserting register */
1205 {
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001206 cmdline_paste(c, i == Ctrl_R, FALSE);
Bram Moolenaaracf53452005-12-17 22:06:52 +00001207
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001208#ifdef FEAT_EVAL
Bram Moolenaaracf53452005-12-17 22:06:52 +00001209 /* When there was a serious error abort getting the
1210 * command line. */
1211 if (aborting())
1212 {
1213 gotesc = TRUE; /* will free ccline.cmdbuff after
1214 putting it in history */
1215 goto returncmd; /* back to cmd mode */
1216 }
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001217#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218 KeyTyped = FALSE; /* Don't do p_wc completion. */
1219#ifdef FEAT_EVAL
1220 if (new_cmdpos >= 0)
1221 {
1222 /* set_cmdline_pos() was used */
1223 if (new_cmdpos > ccline.cmdlen)
1224 ccline.cmdpos = ccline.cmdlen;
1225 else
1226 ccline.cmdpos = new_cmdpos;
1227 }
1228#endif
1229 }
1230 redrawcmd();
1231 goto cmdline_changed;
1232
1233 case Ctrl_D:
1234 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING)
1235 break; /* Use ^D as normal char instead */
1236
1237 redrawcmd();
1238 continue; /* don't do incremental search now */
1239
1240 case K_RIGHT:
1241 case K_S_RIGHT:
1242 case K_C_RIGHT:
1243 do
1244 {
1245 if (ccline.cmdpos >= ccline.cmdlen)
1246 break;
1247 i = cmdline_charsize(ccline.cmdpos);
1248 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows)
1249 break;
1250 ccline.cmdspos += i;
1251#ifdef FEAT_MBYTE
1252 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001253 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 + ccline.cmdpos);
1255 else
1256#endif
1257 ++ccline.cmdpos;
1258 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001259 while ((c == K_S_RIGHT || c == K_C_RIGHT
1260 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 && ccline.cmdbuff[ccline.cmdpos] != ' ');
1262#ifdef FEAT_MBYTE
1263 if (has_mbyte)
1264 set_cmdspos_cursor();
1265#endif
1266 goto cmdline_not_changed;
1267
1268 case K_LEFT:
1269 case K_S_LEFT:
1270 case K_C_LEFT:
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001271 if (ccline.cmdpos == 0)
1272 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 do
1274 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 --ccline.cmdpos;
1276#ifdef FEAT_MBYTE
1277 if (has_mbyte) /* move to first byte of char */
1278 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff,
1279 ccline.cmdbuff + ccline.cmdpos);
1280#endif
1281 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos);
1282 }
Bram Moolenaar49feabd2007-12-07 19:28:58 +00001283 while (ccline.cmdpos > 0
1284 && (c == K_S_LEFT || c == K_C_LEFT
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001285 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 && ccline.cmdbuff[ccline.cmdpos - 1] != ' ');
1287#ifdef FEAT_MBYTE
1288 if (has_mbyte)
1289 set_cmdspos_cursor();
1290#endif
1291 goto cmdline_not_changed;
1292
1293 case K_IGNORE:
Bram Moolenaar30405d32008-01-02 20:55:27 +00001294 /* Ignore mouse event or ex_window() result. */
1295 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296
Bram Moolenaar4770d092006-01-12 23:22:24 +00001297#ifdef FEAT_GUI_W32
1298 /* On Win32 ignore <M-F4>, we get it when closing the window was
1299 * cancelled. */
1300 case K_F4:
1301 if (mod_mask == MOD_MASK_ALT)
1302 {
1303 redrawcmd(); /* somehow the cmdline is cleared */
1304 goto cmdline_not_changed;
1305 }
1306 break;
1307#endif
1308
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309#ifdef FEAT_MOUSE
1310 case K_MIDDLEDRAG:
1311 case K_MIDDLERELEASE:
1312 goto cmdline_not_changed; /* Ignore mouse */
1313
1314 case K_MIDDLEMOUSE:
1315# ifdef FEAT_GUI
1316 /* When GUI is active, also paste when 'mouse' is empty */
1317 if (!gui.in_use)
1318# endif
1319 if (!mouse_has(MOUSE_COMMAND))
1320 goto cmdline_not_changed; /* Ignore mouse */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001321# ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 if (clip_star.available)
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001323 cmdline_paste('*', TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 else
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001325# endif
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001326 cmdline_paste(0, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327 redrawcmd();
1328 goto cmdline_changed;
1329
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001330# ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 case K_DROP:
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001332 cmdline_paste('~', TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 redrawcmd();
1334 goto cmdline_changed;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001335# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336
1337 case K_LEFTDRAG:
1338 case K_LEFTRELEASE:
1339 case K_RIGHTDRAG:
1340 case K_RIGHTRELEASE:
1341 /* Ignore drag and release events when the button-down wasn't
1342 * seen before. */
1343 if (ignore_drag_release)
1344 goto cmdline_not_changed;
1345 /* FALLTHROUGH */
1346 case K_LEFTMOUSE:
1347 case K_RIGHTMOUSE:
1348 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE)
1349 ignore_drag_release = TRUE;
1350 else
1351 ignore_drag_release = FALSE;
1352# ifdef FEAT_GUI
1353 /* When GUI is active, also move when 'mouse' is empty */
1354 if (!gui.in_use)
1355# endif
1356 if (!mouse_has(MOUSE_COMMAND))
1357 goto cmdline_not_changed; /* Ignore mouse */
1358# ifdef FEAT_CLIPBOARD
1359 if (mouse_row < cmdline_row && clip_star.available)
1360 {
1361 int button, is_click, is_drag;
1362
1363 /*
1364 * Handle modeless selection.
1365 */
1366 button = get_mouse_button(KEY2TERMCAP1(c),
1367 &is_click, &is_drag);
1368 if (mouse_model_popup() && button == MOUSE_LEFT
1369 && (mod_mask & MOD_MASK_SHIFT))
1370 {
1371 /* Translate shift-left to right button. */
1372 button = MOUSE_RIGHT;
1373 mod_mask &= ~MOD_MASK_SHIFT;
1374 }
1375 clip_modeless(button, is_click, is_drag);
1376 goto cmdline_not_changed;
1377 }
1378# endif
1379
1380 set_cmdspos();
1381 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen;
1382 ++ccline.cmdpos)
1383 {
1384 i = cmdline_charsize(ccline.cmdpos);
1385 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns
1386 && mouse_col < ccline.cmdspos % Columns + i)
1387 break;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001388# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 if (has_mbyte)
1390 {
1391 /* Count ">" for double-wide char that doesn't fit. */
1392 correct_cmdspos(ccline.cmdpos, i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001393 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 + ccline.cmdpos) - 1;
1395 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001396# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 ccline.cmdspos += i;
1398 }
1399 goto cmdline_not_changed;
1400
1401 /* Mouse scroll wheel: ignored here */
1402 case K_MOUSEDOWN:
1403 case K_MOUSEUP:
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001404 case K_MOUSELEFT:
1405 case K_MOUSERIGHT:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406 /* Alternate buttons ignored here */
1407 case K_X1MOUSE:
1408 case K_X1DRAG:
1409 case K_X1RELEASE:
1410 case K_X2MOUSE:
1411 case K_X2DRAG:
1412 case K_X2RELEASE:
1413 goto cmdline_not_changed;
1414
1415#endif /* FEAT_MOUSE */
1416
1417#ifdef FEAT_GUI
1418 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */
1419 case K_LEFTRELEASE_NM:
1420 goto cmdline_not_changed;
1421
1422 case K_VER_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001423 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424 {
1425 gui_do_scroll();
1426 redrawcmd();
1427 }
1428 goto cmdline_not_changed;
1429
1430 case K_HOR_SCROLLBAR:
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00001431 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001433 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001434 redrawcmd();
1435 }
1436 goto cmdline_not_changed;
1437#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001438#ifdef FEAT_GUI_TABLINE
1439 case K_TABLINE:
1440 case K_TABMENU:
1441 /* Don't want to change any tabs here. Make sure the same tab
1442 * is still selected. */
1443 if (gui_use_tabline())
1444 gui_mch_set_curtab(tabpage_index(curtab));
1445 goto cmdline_not_changed;
1446#endif
1447
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 case K_SELECT: /* end of Select mode mapping - ignore */
1449 goto cmdline_not_changed;
1450
1451 case Ctrl_B: /* begin of command line */
1452 case K_HOME:
1453 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 case K_S_HOME:
1455 case K_C_HOME:
1456 ccline.cmdpos = 0;
1457 set_cmdspos();
1458 goto cmdline_not_changed;
1459
1460 case Ctrl_E: /* end of command line */
1461 case K_END:
1462 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463 case K_S_END:
1464 case K_C_END:
1465 ccline.cmdpos = ccline.cmdlen;
1466 set_cmdspos_cursor();
1467 goto cmdline_not_changed;
1468
1469 case Ctrl_A: /* all matches */
Bram Moolenaarb3479632012-11-28 16:49:58 +01001470 if (nextwild(&xpc, WILD_ALL, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471 break;
1472 goto cmdline_changed;
1473
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001474 case Ctrl_L:
1475#ifdef FEAT_SEARCH_EXTRA
1476 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1477 {
1478 /* Add a character from under the cursor for 'incsearch' */
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001479 if (did_incsearch)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001480 {
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001481 curwin->w_cursor = match_end;
Bram Moolenaardda933d2016-09-03 21:04:58 +02001482 if (!equalpos(curwin->w_cursor, search_start))
Bram Moolenaar93db9752006-11-21 10:29:45 +00001483 {
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001484 c = gchar_cursor();
1485 /* If 'ignorecase' and 'smartcase' are set and the
1486 * command line has no uppercase characters, convert
1487 * the character to lowercase */
1488 if (p_ic && p_scs
1489 && !pat_has_uppercase(ccline.cmdbuff))
1490 c = MB_TOLOWER(c);
1491 if (c != NUL)
Bram Moolenaar93db9752006-11-21 10:29:45 +00001492 {
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001493 if (c == firstc || vim_strchr((char_u *)(
1494 p_magic ? "\\^$.*[" : "\\^$"), c)
1495 != NULL)
1496 {
1497 /* put a backslash before special
1498 * characters */
1499 stuffcharReadbuff(c);
1500 c = '\\';
1501 }
1502 break;
Bram Moolenaar93db9752006-11-21 10:29:45 +00001503 }
Bram Moolenaar93db9752006-11-21 10:29:45 +00001504 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001505 }
1506 goto cmdline_not_changed;
1507 }
1508#endif
1509
1510 /* completion: longest common part */
Bram Moolenaarb3479632012-11-28 16:49:58 +01001511 if (nextwild(&xpc, WILD_LONGEST, 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512 break;
1513 goto cmdline_changed;
1514
1515 case Ctrl_N: /* next match */
1516 case Ctrl_P: /* previous match */
Bram Moolenaar7df0f632016-08-26 19:56:00 +02001517 if (xpc.xp_numfiles > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518 {
Bram Moolenaarb3479632012-11-28 16:49:58 +01001519 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT,
1520 0, firstc != '@') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 break;
Bram Moolenaar11956692016-08-27 16:26:56 +02001522 goto cmdline_not_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 }
Bram Moolenaar11956692016-08-27 16:26:56 +02001524 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525
1526#ifdef FEAT_CMDHIST
1527 case K_UP:
1528 case K_DOWN:
1529 case K_S_UP:
1530 case K_S_DOWN:
1531 case K_PAGEUP:
1532 case K_KPAGEUP:
1533 case K_PAGEDOWN:
1534 case K_KPAGEDOWN:
1535 if (hislen == 0 || firstc == NUL) /* no history */
1536 goto cmdline_not_changed;
1537
1538 i = hiscnt;
1539
1540 /* save current command string so it can be restored later */
1541 if (lookfor == NULL)
1542 {
1543 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL)
1544 goto cmdline_not_changed;
1545 lookfor[ccline.cmdpos] = NUL;
1546 }
1547
1548 j = (int)STRLEN(lookfor);
1549 for (;;)
1550 {
1551 /* one step backwards */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001552 if (c == K_UP|| c == K_S_UP || c == Ctrl_P
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001553 || c == K_PAGEUP || c == K_KPAGEUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 {
1555 if (hiscnt == hislen) /* first time */
1556 hiscnt = hisidx[histype];
1557 else if (hiscnt == 0 && hisidx[histype] != hislen - 1)
1558 hiscnt = hislen - 1;
1559 else if (hiscnt != hisidx[histype] + 1)
1560 --hiscnt;
1561 else /* at top of list */
1562 {
1563 hiscnt = i;
1564 break;
1565 }
1566 }
1567 else /* one step forwards */
1568 {
1569 /* on last entry, clear the line */
1570 if (hiscnt == hisidx[histype])
1571 {
1572 hiscnt = hislen;
1573 break;
1574 }
1575
1576 /* not on a history line, nothing to do */
1577 if (hiscnt == hislen)
1578 break;
1579 if (hiscnt == hislen - 1) /* wrap around */
1580 hiscnt = 0;
1581 else
1582 ++hiscnt;
1583 }
1584 if (hiscnt < 0 || history[histype][hiscnt].hisstr == NULL)
1585 {
1586 hiscnt = i;
1587 break;
1588 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001589 if ((c != K_UP && c != K_DOWN)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001590 || hiscnt == i
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591 || STRNCMP(history[histype][hiscnt].hisstr,
1592 lookfor, (size_t)j) == 0)
1593 break;
1594 }
1595
1596 if (hiscnt != i) /* jumped to other entry */
1597 {
1598 char_u *p;
1599 int len;
1600 int old_firstc;
1601
1602 vim_free(ccline.cmdbuff);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001603 xpc.xp_context = EXPAND_NOTHING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 if (hiscnt == hislen)
1605 p = lookfor; /* back to the old one */
1606 else
1607 p = history[histype][hiscnt].hisstr;
1608
1609 if (histype == HIST_SEARCH
1610 && p != lookfor
1611 && (old_firstc = p[STRLEN(p) + 1]) != firstc)
1612 {
1613 /* Correct for the separator character used when
1614 * adding the history entry vs the one used now.
1615 * First loop: count length.
1616 * Second loop: copy the characters. */
1617 for (i = 0; i <= 1; ++i)
1618 {
1619 len = 0;
1620 for (j = 0; p[j] != NUL; ++j)
1621 {
1622 /* Replace old sep with new sep, unless it is
1623 * escaped. */
1624 if (p[j] == old_firstc
1625 && (j == 0 || p[j - 1] != '\\'))
1626 {
1627 if (i > 0)
1628 ccline.cmdbuff[len] = firstc;
1629 }
1630 else
1631 {
1632 /* Escape new sep, unless it is already
1633 * escaped. */
1634 if (p[j] == firstc
1635 && (j == 0 || p[j - 1] != '\\'))
1636 {
1637 if (i > 0)
1638 ccline.cmdbuff[len] = '\\';
1639 ++len;
1640 }
1641 if (i > 0)
1642 ccline.cmdbuff[len] = p[j];
1643 }
1644 ++len;
1645 }
1646 if (i == 0)
1647 {
1648 alloc_cmdbuff(len);
1649 if (ccline.cmdbuff == NULL)
1650 goto returncmd;
1651 }
1652 }
1653 ccline.cmdbuff[len] = NUL;
1654 }
1655 else
1656 {
1657 alloc_cmdbuff((int)STRLEN(p));
1658 if (ccline.cmdbuff == NULL)
1659 goto returncmd;
1660 STRCPY(ccline.cmdbuff, p);
1661 }
1662
1663 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
1664 redrawcmd();
1665 goto cmdline_changed;
1666 }
1667 beep_flush();
Bram Moolenaar11956692016-08-27 16:26:56 +02001668#endif
1669 goto cmdline_not_changed;
1670
Bram Moolenaar349e7d92016-09-03 20:04:34 +02001671#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar11956692016-08-27 16:26:56 +02001672 case Ctrl_G: /* next match */
1673 case Ctrl_T: /* previous match */
Bram Moolenaar11956692016-08-27 16:26:56 +02001674 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1675 {
1676 pos_T t;
1677 int search_flags = SEARCH_KEEP + SEARCH_NOOF
1678 + SEARCH_PEEK;
1679
1680 if (char_avail())
1681 continue;
1682 cursor_off();
1683 out_flush();
1684 if (c == Ctrl_G)
1685 {
1686 t = match_end;
1687 search_flags += SEARCH_COL;
1688 }
1689 else
1690 t = match_start;
1691 ++emsg_off;
1692 i = searchit(curwin, curbuf, &t,
1693 c == Ctrl_G ? FORWARD : BACKWARD,
1694 ccline.cmdbuff, count, search_flags,
1695 RE_SEARCH, 0, NULL);
1696 --emsg_off;
1697 if (i)
1698 {
Bram Moolenaardda933d2016-09-03 21:04:58 +02001699 search_start = match_start;
Bram Moolenaar11956692016-08-27 16:26:56 +02001700 match_end = t;
1701 match_start = t;
1702 if (c == Ctrl_T && firstc == '/')
1703 {
1704 /* move just before the current match, so that
1705 * when nv_search finishes the cursor will be
1706 * put back on the match */
Bram Moolenaardda933d2016-09-03 21:04:58 +02001707 search_start = t;
1708 (void)decl(&search_start);
Bram Moolenaar11956692016-08-27 16:26:56 +02001709 }
Bram Moolenaardda933d2016-09-03 21:04:58 +02001710 if (lt(t, search_start) && c == Ctrl_G)
Bram Moolenaar11956692016-08-27 16:26:56 +02001711 {
1712 /* wrap around */
Bram Moolenaardda933d2016-09-03 21:04:58 +02001713 search_start = t;
Bram Moolenaar11956692016-08-27 16:26:56 +02001714 if (firstc == '?')
Bram Moolenaardda933d2016-09-03 21:04:58 +02001715 (void)incl(&search_start);
Bram Moolenaar11956692016-08-27 16:26:56 +02001716 else
Bram Moolenaardda933d2016-09-03 21:04:58 +02001717 (void)decl(&search_start);
Bram Moolenaar11956692016-08-27 16:26:56 +02001718 }
1719
1720 set_search_match(&match_end);
1721 curwin->w_cursor = match_start;
1722 changed_cline_bef_curs();
1723 update_topline();
1724 validate_cursor();
1725 highlight_match = TRUE;
1726 old_curswant = curwin->w_curswant;
1727 old_leftcol = curwin->w_leftcol;
1728 old_topline = curwin->w_topline;
1729# ifdef FEAT_DIFF
1730 old_topfill = curwin->w_topfill;
1731# endif
1732 old_botline = curwin->w_botline;
1733 update_screen(NOT_VALID);
1734 redrawcmdline();
1735 }
1736 else
1737 vim_beep(BO_ERROR);
Bram Moolenaar349e7d92016-09-03 20:04:34 +02001738 goto cmdline_not_changed;
Bram Moolenaar11956692016-08-27 16:26:56 +02001739 }
Bram Moolenaar349e7d92016-09-03 20:04:34 +02001740 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741#endif
1742
1743 case Ctrl_V:
1744 case Ctrl_Q:
1745#ifdef FEAT_MOUSE
1746 ignore_drag_release = TRUE;
1747#endif
1748 putcmdline('^', TRUE);
1749 c = get_literal(); /* get next (two) character(s) */
1750 do_abbr = FALSE; /* don't do abbreviation now */
1751#ifdef FEAT_MBYTE
1752 /* may need to remove ^ when composing char was typed */
1753 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent)
1754 {
1755 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
1756 msg_putchar(' ');
1757 cursorcmd();
1758 }
1759#endif
1760 break;
1761
1762#ifdef FEAT_DIGRAPHS
1763 case Ctrl_K:
1764#ifdef FEAT_MOUSE
1765 ignore_drag_release = TRUE;
1766#endif
1767 putcmdline('?', TRUE);
1768#ifdef USE_ON_FLY_SCROLL
1769 dont_scroll = TRUE; /* disallow scrolling here */
1770#endif
1771 c = get_digraph(TRUE);
1772 if (c != NUL)
1773 break;
1774
1775 redrawcmd();
1776 goto cmdline_not_changed;
1777#endif /* FEAT_DIGRAPHS */
1778
1779#ifdef FEAT_RIGHTLEFT
1780 case Ctrl__: /* CTRL-_: switch language mode */
1781 if (!p_ari)
1782 break;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001783# ifdef FEAT_FKMAP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 if (p_altkeymap)
1785 {
1786 cmd_fkmap = !cmd_fkmap;
1787 if (cmd_fkmap) /* in Farsi always in Insert mode */
1788 ccline.overstrike = FALSE;
1789 }
1790 else /* Hebrew is default */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001791# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 cmd_hkmap = !cmd_hkmap;
1793 goto cmdline_not_changed;
1794#endif
1795
1796 default:
1797#ifdef UNIX
1798 if (c == intr_char)
1799 {
1800 gotesc = TRUE; /* will free ccline.cmdbuff after
1801 putting it in history */
1802 goto returncmd; /* back to Normal mode */
1803 }
1804#endif
1805 /*
1806 * Normal character with no special meaning. Just set mod_mask
1807 * to 0x0 so that typing Shift-Space in the GUI doesn't enter
1808 * the string <S-Space>. This should only happen after ^V.
1809 */
1810 if (!IS_SPECIAL(c))
1811 mod_mask = 0x0;
1812 break;
1813 }
1814 /*
1815 * End of switch on command line character.
1816 * We come here if we have a normal character.
1817 */
1818
Bram Moolenaarede3e632013-06-23 16:16:19 +02001819 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && (ccheck_abbr(
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820#ifdef FEAT_MBYTE
1821 /* Add ABBR_OFF for characters above 0x100, this is
1822 * what check_abbr() expects. */
1823 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
1824#endif
Bram Moolenaarede3e632013-06-23 16:16:19 +02001825 c) || c == Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 goto cmdline_changed;
1827
1828 /*
1829 * put the character in the command line
1830 */
1831 if (IS_SPECIAL(c) || mod_mask != 0)
1832 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE);
1833 else
1834 {
1835#ifdef FEAT_MBYTE
1836 if (has_mbyte)
1837 {
1838 j = (*mb_char2bytes)(c, IObuff);
1839 IObuff[j] = NUL; /* exclude composing chars */
1840 put_on_cmdline(IObuff, j, TRUE);
1841 }
1842 else
1843#endif
1844 {
1845 IObuff[0] = c;
1846 put_on_cmdline(IObuff, 1, TRUE);
1847 }
1848 }
1849 goto cmdline_changed;
1850
1851/*
1852 * This part implements incremental searches for "/" and "?"
1853 * Jump to cmdline_not_changed when a character has been read but the command
1854 * line did not change. Then we only search and redraw if something changed in
1855 * the past.
1856 * Jump to cmdline_changed when the command line did change.
1857 * (Sorry for the goto's, I know it is ugly).
1858 */
1859cmdline_not_changed:
1860#ifdef FEAT_SEARCH_EXTRA
1861 if (!incsearch_postponed)
1862 continue;
1863#endif
1864
1865cmdline_changed:
1866#ifdef FEAT_SEARCH_EXTRA
1867 /*
1868 * 'incsearch' highlighting.
1869 */
1870 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1871 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001872 pos_T end_pos;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001873#ifdef FEAT_RELTIME
1874 proftime_T tm;
1875#endif
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001876
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 /* if there is a character waiting, search and redraw later */
1878 if (char_avail())
1879 {
1880 incsearch_postponed = TRUE;
1881 continue;
1882 }
1883 incsearch_postponed = FALSE;
Bram Moolenaardda933d2016-09-03 21:04:58 +02001884 curwin->w_cursor = search_start; /* start at old position */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885
1886 /* If there is no command line, don't do anything */
1887 if (ccline.cmdlen == 0)
1888 i = 0;
1889 else
1890 {
1891 cursor_off(); /* so the user knows we're busy */
1892 out_flush();
1893 ++emsg_off; /* So it doesn't beep if bad expr */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001894#ifdef FEAT_RELTIME
1895 /* Set the time limit to half a second. */
1896 profile_setlimit(500L, &tm);
1897#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898 i = do_search(NULL, firstc, ccline.cmdbuff, count,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001899 SEARCH_KEEP + SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK,
1900#ifdef FEAT_RELTIME
1901 &tm
1902#else
1903 NULL
1904#endif
1905 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 --emsg_off;
1907 /* if interrupted while searching, behave like it failed */
1908 if (got_int)
1909 {
1910 (void)vpeekc(); /* remove <C-C> from input stream */
1911 got_int = FALSE; /* don't abandon the command line */
1912 i = 0;
1913 }
1914 else if (char_avail())
1915 /* cancelled searching because a char was typed */
1916 incsearch_postponed = TRUE;
1917 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001918 if (i != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919 highlight_match = TRUE; /* highlight position */
1920 else
1921 highlight_match = FALSE; /* remove highlight */
1922
1923 /* first restore the old curwin values, so the screen is
1924 * positioned in the same way as the actual search command */
1925 curwin->w_leftcol = old_leftcol;
1926 curwin->w_topline = old_topline;
1927# ifdef FEAT_DIFF
1928 curwin->w_topfill = old_topfill;
1929# endif
1930 curwin->w_botline = old_botline;
1931 changed_cline_bef_curs();
1932 update_topline();
1933
1934 if (i != 0)
1935 {
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001936 pos_T save_pos = curwin->w_cursor;
1937
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001938 match_start = curwin->w_cursor;
1939 set_search_match(&curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 validate_cursor();
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001941 end_pos = curwin->w_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001942 match_end = end_pos;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001943 curwin->w_cursor = save_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 }
Bram Moolenaardb552d602006-03-23 22:59:57 +00001945 else
1946 end_pos = curwin->w_cursor; /* shutup gcc 4 */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001947
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948 validate_cursor();
Bram Moolenaar27a23192006-09-14 09:27:26 +00001949# ifdef FEAT_WINDOWS
1950 /* May redraw the status line to show the cursor position. */
1951 if (p_ru && curwin->w_status_height > 0)
1952 curwin->w_redr_status = TRUE;
1953# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00001955 save_cmdline(&save_ccline);
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001956 update_screen(SOME_VALID);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00001957 restore_cmdline(&save_ccline);
1958
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001959 /* Leave it at the end to make CTRL-R CTRL-W work. */
1960 if (i != 0)
1961 curwin->w_cursor = end_pos;
1962
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963 msg_starthere();
1964 redrawcmdline();
1965 did_incsearch = TRUE;
1966 }
1967#else /* FEAT_SEARCH_EXTRA */
1968 ;
1969#endif
1970
1971#ifdef FEAT_RIGHTLEFT
1972 if (cmdmsg_rl
1973# ifdef FEAT_ARABIC
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001974 || (p_arshape && !p_tbidi && enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975# endif
1976 )
1977 /* Always redraw the whole command line to fix shaping and
Bram Moolenaar58437e02012-02-22 17:58:04 +01001978 * right-left typing. Not efficient, but it works.
1979 * Do it only when there are no characters left to read
1980 * to avoid useless intermediate redraws. */
1981 if (vpeekc() == NUL)
1982 redrawcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983#endif
1984 }
1985
1986returncmd:
1987
1988#ifdef FEAT_RIGHTLEFT
1989 cmdmsg_rl = FALSE;
1990#endif
1991
1992#ifdef FEAT_FKMAP
1993 cmd_fkmap = 0;
1994#endif
1995
1996 ExpandCleanup(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00001997 ccline.xpc = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998
1999#ifdef FEAT_SEARCH_EXTRA
2000 if (did_incsearch)
2001 {
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02002002 if (gotesc)
Bram Moolenaardda933d2016-09-03 21:04:58 +02002003 curwin->w_cursor = save_cursor;
2004 else
2005 {
2006 if (!equalpos(save_cursor, search_start))
2007 {
2008 /* put the '" mark at the original position */
2009 curwin->w_cursor = save_cursor;
2010 setpcmark();
2011 }
2012 curwin->w_cursor = search_start;
2013 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014 curwin->w_curswant = old_curswant;
2015 curwin->w_leftcol = old_leftcol;
2016 curwin->w_topline = old_topline;
2017# ifdef FEAT_DIFF
2018 curwin->w_topfill = old_topfill;
2019# endif
2020 curwin->w_botline = old_botline;
2021 highlight_match = FALSE;
2022 validate_cursor(); /* needed for TAB */
Bram Moolenaar600dddc2006-03-12 22:05:10 +00002023 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 }
2025#endif
2026
2027 if (ccline.cmdbuff != NULL)
2028 {
2029 /*
2030 * Put line in history buffer (":" and "=" only when it was typed).
2031 */
2032#ifdef FEAT_CMDHIST
2033 if (ccline.cmdlen && firstc != NUL
2034 && (some_key_typed || histype == HIST_SEARCH))
2035 {
2036 add_to_history(histype, ccline.cmdbuff, TRUE,
2037 histype == HIST_SEARCH ? firstc : NUL);
2038 if (firstc == ':')
2039 {
2040 vim_free(new_last_cmdline);
2041 new_last_cmdline = vim_strsave(ccline.cmdbuff);
2042 }
2043 }
2044#endif
2045
2046 if (gotesc) /* abandon command line */
2047 {
2048 vim_free(ccline.cmdbuff);
2049 ccline.cmdbuff = NULL;
2050 if (msg_scrolled == 0)
2051 compute_cmdrow();
2052 MSG("");
2053 redraw_cmdline = TRUE;
2054 }
2055 }
2056
2057 /*
2058 * If the screen was shifted up, redraw the whole screen (later).
2059 * If the line is too long, clear it, so ruler and shown command do
2060 * not get printed in the middle of it.
2061 */
2062 msg_check();
2063 msg_scroll = save_msg_scroll;
2064 redir_off = FALSE;
2065
2066 /* When the command line was typed, no need for a wait-return prompt. */
2067 if (some_key_typed)
2068 need_wait_return = FALSE;
2069
2070 State = save_State;
2071#ifdef USE_IM_CONTROL
2072 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP)
2073 im_save_status(b_im_ptr);
2074 im_set_active(FALSE);
2075#endif
2076#ifdef FEAT_MOUSE
2077 setmouse();
2078#endif
2079#ifdef CURSOR_SHAPE
2080 ui_cursor_shape(); /* may show different cursor shape */
2081#endif
2082
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002083 {
2084 char_u *p = ccline.cmdbuff;
2085
2086 /* Make ccline empty, getcmdline() may try to use it. */
2087 ccline.cmdbuff = NULL;
2088 return p;
2089 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090}
2091
2092#if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO)
2093/*
2094 * Get a command line with a prompt.
2095 * This is prepared to be called recursively from getcmdline() (e.g. by
2096 * f_input() when evaluating an expression from CTRL-R =).
2097 * Returns the command line in allocated memory, or NULL.
2098 */
2099 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002100getcmdline_prompt(
2101 int firstc,
2102 char_u *prompt, /* command line prompt */
2103 int attr, /* attributes for prompt */
2104 int xp_context, /* type of expansion */
2105 char_u *xp_arg) /* user-defined expansion argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106{
2107 char_u *s;
2108 struct cmdline_info save_ccline;
2109 int msg_col_save = msg_col;
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002110 int msg_silent_save = msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002112 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 ccline.cmdprompt = prompt;
2114 ccline.cmdattr = attr;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002115# ifdef FEAT_EVAL
2116 ccline.xp_context = xp_context;
2117 ccline.xp_arg = xp_arg;
2118 ccline.input_fn = (firstc == '@');
2119# endif
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002120 msg_silent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121 s = getcmdline(firstc, 1L, 0);
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002122 restore_cmdline(&save_ccline);
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002123 msg_silent = msg_silent_save;
Bram Moolenaar1db1f772011-08-17 16:25:48 +02002124 /* Restore msg_col, the prompt from input() may have changed it.
2125 * But only if called recursively and the commandline is therefore being
2126 * restored to an old one; if not, the input() prompt stays on the screen,
2127 * so we need its modified msg_col left intact. */
2128 if (ccline.cmdbuff != NULL)
2129 msg_col = msg_col_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130
2131 return s;
2132}
2133#endif
2134
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002135/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002136 * Return TRUE when the text must not be changed and we can't switch to
2137 * another window or buffer. Used when editing the command line, evaluating
2138 * 'balloonexpr', etc.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002139 */
2140 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002141text_locked(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002142{
2143#ifdef FEAT_CMDWIN
2144 if (cmdwin_type != 0)
2145 return TRUE;
2146#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002147 return textlock != 0;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002148}
2149
2150/*
2151 * Give an error message for a command that isn't allowed while the cmdline
2152 * window is open or editing the cmdline in another way.
2153 */
2154 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002155text_locked_msg(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002156{
Bram Moolenaar5a497892016-09-03 16:29:04 +02002157 EMSG(_(get_text_locked_msg()));
2158}
2159
2160 char_u *
2161get_text_locked_msg(void)
2162{
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002163#ifdef FEAT_CMDWIN
2164 if (cmdwin_type != 0)
Bram Moolenaar5a497892016-09-03 16:29:04 +02002165 return e_cmdwin;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002166#endif
Bram Moolenaar5a497892016-09-03 16:29:04 +02002167 return e_secure;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002168}
2169
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002170#if defined(FEAT_AUTOCMD) || defined(PROTO)
2171/*
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002172 * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is
2173 * and give an error message.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002174 */
2175 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002176curbuf_locked(void)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002177{
2178 if (curbuf_lock > 0)
2179 {
2180 EMSG(_("E788: Not allowed to edit another buffer now"));
2181 return TRUE;
2182 }
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002183 return allbuf_locked();
2184}
2185
2186/*
2187 * Check if "allbuf_lock" is set and return TRUE when it is and give an error
2188 * message.
2189 */
2190 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002191allbuf_locked(void)
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002192{
2193 if (allbuf_lock > 0)
2194 {
2195 EMSG(_("E811: Not allowed to change buffer information now"));
2196 return TRUE;
2197 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002198 return FALSE;
2199}
2200#endif
2201
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002203cmdline_charsize(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204{
2205#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2206 if (cmdline_star > 0) /* showing '*', always 1 position */
2207 return 1;
2208#endif
2209 return ptr2cells(ccline.cmdbuff + idx);
2210}
2211
2212/*
2213 * Compute the offset of the cursor on the command line for the prompt and
2214 * indent.
2215 */
2216 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002217set_cmdspos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002219 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 ccline.cmdspos = 1 + ccline.cmdindent;
2221 else
2222 ccline.cmdspos = 0 + ccline.cmdindent;
2223}
2224
2225/*
2226 * Compute the screen position for the cursor on the command line.
2227 */
2228 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002229set_cmdspos_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230{
2231 int i, m, c;
2232
2233 set_cmdspos();
2234 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002235 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002237 if (m < 0) /* overflow, Columns or Rows at weird value */
2238 m = MAXCOL;
2239 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 else
2241 m = MAXCOL;
2242 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
2243 {
2244 c = cmdline_charsize(i);
2245#ifdef FEAT_MBYTE
2246 /* Count ">" for double-wide multi-byte char that doesn't fit. */
2247 if (has_mbyte)
2248 correct_cmdspos(i, c);
2249#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00002250 /* If the cmdline doesn't fit, show cursor on last visible char.
2251 * Don't move the cursor itself, so we can still append. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 if ((ccline.cmdspos += c) >= m)
2253 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 ccline.cmdspos -= c;
2255 break;
2256 }
2257#ifdef FEAT_MBYTE
2258 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002259 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260#endif
2261 }
2262}
2263
2264#ifdef FEAT_MBYTE
2265/*
2266 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2267 * character that doesn't fit, so that a ">" must be displayed.
2268 */
2269 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002270correct_cmdspos(int idx, int cells)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002272 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2274 && ccline.cmdspos % Columns + cells > Columns)
2275 ccline.cmdspos++;
2276}
2277#endif
2278
2279/*
2280 * Get an Ex command line for the ":" command.
2281 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002283getexline(
2284 int c, /* normally ':', NUL for ":append" */
2285 void *cookie UNUSED,
2286 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287{
2288 /* When executing a register, remove ':' that's in front of each line. */
2289 if (exec_from_reg && vpeekc() == ':')
2290 (void)vgetc();
2291 return getcmdline(c, 1L, indent);
2292}
2293
2294/*
2295 * Get an Ex command line for Ex mode.
2296 * In Ex mode we only use the OS supplied line editing features and no
2297 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002298 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002301getexmodeline(
2302 int promptc, /* normally ':', NUL for ":append" and '?' for
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002303 :s prompt */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002304 void *cookie UNUSED,
2305 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002307 garray_T line_ga;
2308 char_u *pend;
2309 int startcol = 0;
Bram Moolenaar76624232007-07-28 12:21:47 +00002310 int c1 = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002311 int escaped = FALSE; /* CTRL-V typed */
2312 int vcol = 0;
2313 char_u *p;
Bram Moolenaar76624232007-07-28 12:21:47 +00002314 int prev_char;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002315 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316
2317 /* Switch cursor on now. This avoids that it happens after the "\n", which
2318 * confuses the system function that computes tabstops. */
2319 cursor_on();
2320
2321 /* always start in column 0; write a newline if necessary */
2322 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002323 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002325 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002327 /* indent that is only displayed, not in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002328 if (p_prompt)
2329 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330 while (indent-- > 0)
2331 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333 }
2334
2335 ga_init2(&line_ga, 1, 30);
2336
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002337 /* autoindent for :insert and :append is in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002338 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002339 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002340 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002341 while (indent >= 8)
2342 {
2343 ga_append(&line_ga, TAB);
2344 msg_puts((char_u *)" ");
2345 indent -= 8;
2346 }
2347 while (indent-- > 0)
2348 {
2349 ga_append(&line_ga, ' ');
2350 msg_putchar(' ');
2351 }
2352 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002353 ++no_mapping;
2354 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002355
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 /*
2357 * Get the line, one character at a time.
2358 */
2359 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002360 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002362 long sw;
2363 char_u *s;
2364
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 if (ga_grow(&line_ga, 40) == FAIL)
2366 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002368 /* Get one character at a time. Don't use inchar(), it can't handle
2369 * special characters. */
Bram Moolenaar76624232007-07-28 12:21:47 +00002370 prev_char = c1;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002371 c1 = vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372
2373 /*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002374 * Handle line editing.
2375 * Previously this was left to the system, putting the terminal in
2376 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002378 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002380 msg_putchar('\n');
2381 break;
2382 }
2383
2384 if (!escaped)
2385 {
2386 /* CR typed means "enter", which is NL */
2387 if (c1 == '\r')
2388 c1 = '\n';
2389
2390 if (c1 == BS || c1 == K_BS
2391 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002393 if (line_ga.ga_len > 0)
2394 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002395#ifdef FEAT_MBYTE
2396 if (has_mbyte)
2397 {
2398 p = (char_u *)line_ga.ga_data;
2399 p[line_ga.ga_len] = NUL;
2400 len = (*mb_head_off)(p, p + line_ga.ga_len - 1) + 1;
2401 line_ga.ga_len -= len;
2402 }
2403 else
2404#endif
2405 --line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002406 goto redraw;
2407 }
2408 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409 }
2410
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002411 if (c1 == Ctrl_U)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002413 msg_col = startcol;
2414 msg_clr_eos();
2415 line_ga.ga_len = 0;
Bram Moolenaarda636572015-04-03 17:11:45 +02002416 goto redraw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002417 }
2418
2419 if (c1 == Ctrl_T)
2420 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002421 sw = get_sw_value(curbuf);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002422 p = (char_u *)line_ga.ga_data;
2423 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002424 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaar14f24742012-08-08 18:01:05 +02002425 indent += sw - indent % sw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002426add_indent:
Bram Moolenaar597a4222014-06-25 14:39:50 +02002427 while (get_indent_str(p, 8, FALSE) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002429 (void)ga_grow(&line_ga, 2); /* one more for the NUL */
Bram Moolenaarda636572015-04-03 17:11:45 +02002430 p = (char_u *)line_ga.ga_data;
2431 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002432 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2433 *s = ' ';
2434 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002436redraw:
2437 /* redraw the line */
2438 msg_col = startcol;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002439 vcol = 0;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002440 p = (char_u *)line_ga.ga_data;
2441 p[line_ga.ga_len] = NUL;
2442 while (p < (char_u *)line_ga.ga_data + line_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002444 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002446 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002448 msg_putchar(' ');
2449 } while (++vcol % 8);
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002450 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002452 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002454 len = MB_PTR2LEN(p);
2455 msg_outtrans_len(p, len);
2456 vcol += ptr2cells(p);
2457 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 }
2459 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002460 msg_clr_eos();
Bram Moolenaar76624232007-07-28 12:21:47 +00002461 windgoto(msg_row, msg_col);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002462 continue;
2463 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002465 if (c1 == Ctrl_D)
2466 {
2467 /* Delete one shiftwidth. */
2468 p = (char_u *)line_ga.ga_data;
2469 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002471 if (prev_char == '^')
2472 ex_keep_indent = TRUE;
2473 indent = 0;
2474 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475 }
2476 else
2477 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002478 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002479 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaarda636572015-04-03 17:11:45 +02002480 if (indent > 0)
2481 {
2482 --indent;
2483 indent -= indent % get_sw_value(curbuf);
2484 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002485 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02002486 while (get_indent_str(p, 8, FALSE) > indent)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002487 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002488 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002489 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2490 --line_ga.ga_len;
2491 }
2492 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002493 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002494
2495 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2496 {
2497 escaped = TRUE;
2498 continue;
2499 }
2500
2501 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
2502 if (IS_SPECIAL(c1))
2503 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002505
2506 if (IS_SPECIAL(c1))
2507 c1 = '?';
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002508#ifdef FEAT_MBYTE
2509 if (has_mbyte)
2510 len = (*mb_char2bytes)(c1,
2511 (char_u *)line_ga.ga_data + line_ga.ga_len);
2512 else
2513#endif
2514 {
2515 len = 1;
2516 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
2517 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002518 if (c1 == '\n')
2519 msg_putchar('\n');
2520 else if (c1 == TAB)
2521 {
2522 /* Don't use chartabsize(), 'ts' can be different */
2523 do
2524 {
2525 msg_putchar(' ');
2526 } while (++vcol % 8);
2527 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002529 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002530 msg_outtrans_len(
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002531 ((char_u *)line_ga.ga_data) + line_ga.ga_len, len);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002532 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533 }
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002534 line_ga.ga_len += len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002535 escaped = FALSE;
2536
2537 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002538 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002539
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002540 /* We are done when a NL is entered, but not when it comes after an
2541 * odd number of backslashes, that results in a NUL. */
2542 if (line_ga.ga_len > 0 && pend[-1] == '\n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543 {
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002544 int bcount = 0;
2545
2546 while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\')
2547 ++bcount;
2548
2549 if (bcount > 0)
2550 {
2551 /* Halve the number of backslashes: "\NL" -> "NUL", "\\NL" ->
2552 * "\NL", etc. */
2553 line_ga.ga_len -= (bcount + 1) / 2;
2554 pend -= (bcount + 1) / 2;
2555 pend[-1] = '\n';
2556 }
2557
2558 if ((bcount & 1) == 0)
2559 {
2560 --line_ga.ga_len;
2561 --pend;
2562 *pend = NUL;
2563 break;
2564 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565 }
2566 }
2567
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002568 --no_mapping;
2569 --allow_keys;
2570
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 /* make following messages go to the next line */
2572 msg_didout = FALSE;
2573 msg_col = 0;
2574 if (msg_row < Rows - 1)
2575 ++msg_row;
2576 emsg_on_display = FALSE; /* don't want ui_delay() */
2577
2578 if (got_int)
2579 ga_clear(&line_ga);
2580
2581 return (char_u *)line_ga.ga_data;
2582}
2583
Bram Moolenaare344bea2005-09-01 20:46:49 +00002584# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
2585 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586/*
2587 * Return TRUE if ccline.overstrike is on.
2588 */
2589 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002590cmdline_overstrike(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591{
2592 return ccline.overstrike;
2593}
2594
2595/*
2596 * Return TRUE if the cursor is at the end of the cmdline.
2597 */
2598 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002599cmdline_at_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600{
2601 return (ccline.cmdpos >= ccline.cmdlen);
2602}
2603#endif
2604
Bram Moolenaar9372a112005-12-06 19:59:18 +00002605#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606/*
2607 * Return the virtual column number at the current cursor position.
2608 * This is used by the IM code to obtain the start of the preedit string.
2609 */
2610 colnr_T
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002611cmdline_getvcol_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612{
2613 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
2614 return MAXCOL;
2615
2616# ifdef FEAT_MBYTE
2617 if (has_mbyte)
2618 {
2619 colnr_T col;
2620 int i = 0;
2621
2622 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002623 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624
2625 return col;
2626 }
2627 else
2628# endif
2629 return ccline.cmdpos;
2630}
2631#endif
2632
2633#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2634/*
2635 * If part of the command line is an IM preedit string, redraw it with
2636 * IM feedback attributes. The cursor position is restored after drawing.
2637 */
2638 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002639redrawcmd_preedit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640{
2641 if ((State & CMDLINE)
2642 && xic != NULL
Bram Moolenaar494c82a2006-09-14 08:25:49 +00002643 /* && im_get_status() doesn't work when using SCIM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644 && !p_imdisable
2645 && im_is_preediting())
2646 {
2647 int cmdpos = 0;
2648 int cmdspos;
2649 int old_row;
2650 int old_col;
2651 colnr_T col;
2652
2653 old_row = msg_row;
2654 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002655 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656
2657# ifdef FEAT_MBYTE
2658 if (has_mbyte)
2659 {
2660 for (col = 0; col < preedit_start_col
2661 && cmdpos < ccline.cmdlen; ++col)
2662 {
2663 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002664 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 }
2666 }
2667 else
2668# endif
2669 {
2670 cmdspos += preedit_start_col;
2671 cmdpos += preedit_start_col;
2672 }
2673
2674 msg_row = cmdline_row + (cmdspos / (int)Columns);
2675 msg_col = cmdspos % (int)Columns;
2676 if (msg_row >= Rows)
2677 msg_row = Rows - 1;
2678
2679 for (col = 0; cmdpos < ccline.cmdlen; ++col)
2680 {
2681 int char_len;
2682 int char_attr;
2683
2684 char_attr = im_get_feedback_attr(col);
2685 if (char_attr < 0)
2686 break; /* end of preedit string */
2687
2688# ifdef FEAT_MBYTE
2689 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002690 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 else
2692# endif
2693 char_len = 1;
2694
2695 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
2696 cmdpos += char_len;
2697 }
2698
2699 msg_row = old_row;
2700 msg_col = old_col;
2701 }
2702}
2703#endif /* FEAT_XIM && FEAT_GUI_GTK */
2704
2705/*
2706 * Allocate a new command line buffer.
2707 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
2708 * Returns the new value of ccline.cmdbuff and ccline.cmdbufflen.
2709 */
2710 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002711alloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712{
2713 /*
2714 * give some extra space to avoid having to allocate all the time
2715 */
2716 if (len < 80)
2717 len = 100;
2718 else
2719 len += 20;
2720
2721 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */
2722 ccline.cmdbufflen = len;
2723}
2724
2725/*
2726 * Re-allocate the command line to length len + something extra.
2727 * return FAIL for failure, OK otherwise
2728 */
2729 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002730realloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731{
2732 char_u *p;
2733
Bram Moolenaar673b87b2010-08-13 19:12:07 +02002734 if (len < ccline.cmdbufflen)
2735 return OK; /* no need to resize */
2736
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737 p = ccline.cmdbuff;
2738 alloc_cmdbuff(len); /* will get some more */
2739 if (ccline.cmdbuff == NULL) /* out of memory */
2740 {
2741 ccline.cmdbuff = p; /* keep the old one */
2742 return FAIL;
2743 }
Bram Moolenaar35a34232010-08-13 16:51:26 +02002744 /* There isn't always a NUL after the command, but it may need to be
2745 * there, thus copy up to the NUL and add a NUL. */
2746 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen);
2747 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 vim_free(p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002749
2750 if (ccline.xpc != NULL
2751 && ccline.xpc->xp_pattern != NULL
2752 && ccline.xpc->xp_context != EXPAND_NOTHING
2753 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL)
2754 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00002755 int i = (int)(ccline.xpc->xp_pattern - p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002756
2757 /* If xp_pattern points inside the old cmdbuff it needs to be adjusted
2758 * to point into the newly allocated memory. */
2759 if (i >= 0 && i <= ccline.cmdlen)
2760 ccline.xpc->xp_pattern = ccline.cmdbuff + i;
2761 }
2762
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763 return OK;
2764}
2765
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002766#if defined(FEAT_ARABIC) || defined(PROTO)
2767static char_u *arshape_buf = NULL;
2768
2769# if defined(EXITFREE) || defined(PROTO)
2770 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002771free_cmdline_buf(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002772{
2773 vim_free(arshape_buf);
2774}
2775# endif
2776#endif
2777
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778/*
2779 * Draw part of the cmdline at the current cursor position. But draw stars
2780 * when cmdline_star is TRUE.
2781 */
2782 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002783draw_cmdline(int start, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784{
2785#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2786 int i;
2787
2788 if (cmdline_star > 0)
2789 for (i = 0; i < len; ++i)
2790 {
2791 msg_putchar('*');
2792# ifdef FEAT_MBYTE
2793 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002794 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795# endif
2796 }
2797 else
2798#endif
2799#ifdef FEAT_ARABIC
2800 if (p_arshape && !p_tbidi && enc_utf8 && len > 0)
2801 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802 static int buflen = 0;
2803 char_u *p;
2804 int j;
2805 int newlen = 0;
2806 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00002807 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 int prev_c = 0;
2809 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002810 int u8c;
2811 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813
2814 /*
2815 * Do arabic shaping into a temporary buffer. This is very
2816 * inefficient!
2817 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002818 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819 {
2820 /* Re-allocate the buffer. We keep it around to avoid a lot of
2821 * alloc()/free() calls. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002822 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002823 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002824 arshape_buf = alloc(buflen);
2825 if (arshape_buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826 return; /* out of memory */
2827 }
2828
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002829 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
2830 {
2831 /* Prepend a space to draw the leading composing char on. */
2832 arshape_buf[0] = ' ';
2833 newlen = 1;
2834 }
2835
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 for (j = start; j < start + len; j += mb_l)
2837 {
2838 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002839 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002840 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 if (ARABIC_CHAR(u8c))
2842 {
2843 /* Do Arabic shaping. */
2844 if (cmdmsg_rl)
2845 {
2846 /* displaying from right to left */
2847 pc = prev_c;
2848 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002849 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 if (j + mb_l >= start + len)
2851 nc = NUL;
2852 else
2853 nc = utf_ptr2char(p + mb_l);
2854 }
2855 else
2856 {
2857 /* displaying from left to right */
2858 if (j + mb_l >= start + len)
2859 pc = NUL;
2860 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002861 {
2862 int pcc[MAX_MCO];
2863
2864 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002866 pc1 = pcc[0];
2867 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 nc = prev_c;
2869 }
2870 prev_c = u8c;
2871
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002872 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002874 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002875 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002876 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002877 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
2878 if (u8cc[1] != 0)
2879 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002880 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002881 }
2882 }
2883 else
2884 {
2885 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002886 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887 newlen += mb_l;
2888 }
2889 }
2890
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002891 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 }
2893 else
2894#endif
2895 msg_outtrans_len(ccline.cmdbuff + start, len);
2896}
2897
2898/*
2899 * Put a character on the command line. Shifts the following text to the
2900 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
2901 * "c" must be printable (fit in one display cell)!
2902 */
2903 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002904putcmdline(int c, int shift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905{
2906 if (cmd_silent)
2907 return;
2908 msg_no_more = TRUE;
2909 msg_putchar(c);
2910 if (shift)
2911 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2912 msg_no_more = FALSE;
2913 cursorcmd();
2914}
2915
2916/*
2917 * Undo a putcmdline(c, FALSE).
2918 */
2919 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002920unputcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921{
2922 if (cmd_silent)
2923 return;
2924 msg_no_more = TRUE;
2925 if (ccline.cmdlen == ccline.cmdpos)
2926 msg_putchar(' ');
Bram Moolenaar64fdf5c2012-06-06 12:03:06 +02002927#ifdef FEAT_MBYTE
2928 else if (has_mbyte)
2929 draw_cmdline(ccline.cmdpos,
2930 (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos));
2931#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932 else
2933 draw_cmdline(ccline.cmdpos, 1);
2934 msg_no_more = FALSE;
2935 cursorcmd();
2936}
2937
2938/*
2939 * Put the given string, of the given length, onto the command line.
2940 * If len is -1, then STRLEN() is used to calculate the length.
2941 * If 'redraw' is TRUE then the new part of the command line, and the remaining
2942 * part will be redrawn, otherwise it will not. If this function is called
2943 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
2944 * called afterwards.
2945 */
2946 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002947put_on_cmdline(char_u *str, int len, int redraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948{
2949 int retval;
2950 int i;
2951 int m;
2952 int c;
2953
2954 if (len < 0)
2955 len = (int)STRLEN(str);
2956
2957 /* Check if ccline.cmdbuff needs to be longer */
2958 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
Bram Moolenaar673b87b2010-08-13 19:12:07 +02002959 retval = realloc_cmdbuff(ccline.cmdlen + len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960 else
2961 retval = OK;
2962 if (retval == OK)
2963 {
2964 if (!ccline.overstrike)
2965 {
2966 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2967 ccline.cmdbuff + ccline.cmdpos,
2968 (size_t)(ccline.cmdlen - ccline.cmdpos));
2969 ccline.cmdlen += len;
2970 }
2971 else
2972 {
2973#ifdef FEAT_MBYTE
2974 if (has_mbyte)
2975 {
2976 /* Count nr of characters in the new string. */
2977 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002978 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979 ++m;
2980 /* Count nr of bytes in cmdline that are overwritten by these
2981 * characters. */
2982 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002983 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984 --m;
2985 if (i < ccline.cmdlen)
2986 {
2987 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2988 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
2989 ccline.cmdlen += ccline.cmdpos + len - i;
2990 }
2991 else
2992 ccline.cmdlen = ccline.cmdpos + len;
2993 }
2994 else
2995#endif
2996 if (ccline.cmdpos + len > ccline.cmdlen)
2997 ccline.cmdlen = ccline.cmdpos + len;
2998 }
2999 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
3000 ccline.cmdbuff[ccline.cmdlen] = NUL;
3001
3002#ifdef FEAT_MBYTE
3003 if (enc_utf8)
3004 {
3005 /* When the inserted text starts with a composing character,
3006 * backup to the character before it. There could be two of them.
3007 */
3008 i = 0;
3009 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3010 while (ccline.cmdpos > 0 && utf_iscomposing(c))
3011 {
3012 i = (*mb_head_off)(ccline.cmdbuff,
3013 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3014 ccline.cmdpos -= i;
3015 len += i;
3016 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3017 }
3018# ifdef FEAT_ARABIC
3019 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
3020 {
3021 /* Check the previous character for Arabic combining pair. */
3022 i = (*mb_head_off)(ccline.cmdbuff,
3023 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3024 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
3025 + ccline.cmdpos - i), c))
3026 {
3027 ccline.cmdpos -= i;
3028 len += i;
3029 }
3030 else
3031 i = 0;
3032 }
3033# endif
3034 if (i != 0)
3035 {
3036 /* Also backup the cursor position. */
3037 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
3038 ccline.cmdspos -= i;
3039 msg_col -= i;
3040 if (msg_col < 0)
3041 {
3042 msg_col += Columns;
3043 --msg_row;
3044 }
3045 }
3046 }
3047#endif
3048
3049 if (redraw && !cmd_silent)
3050 {
3051 msg_no_more = TRUE;
3052 i = cmdline_row;
Bram Moolenaar73dc59a2011-09-30 17:46:21 +02003053 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
3055 /* Avoid clearing the rest of the line too often. */
3056 if (cmdline_row != i || ccline.overstrike)
3057 msg_clr_eos();
3058 msg_no_more = FALSE;
3059 }
3060#ifdef FEAT_FKMAP
3061 /*
3062 * If we are in Farsi command mode, the character input must be in
3063 * Insert mode. So do not advance the cmdpos.
3064 */
3065 if (!cmd_fkmap)
3066#endif
3067 {
3068 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003069 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003071 if (m < 0) /* overflow, Columns or Rows at weird value */
3072 m = MAXCOL;
3073 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074 else
3075 m = MAXCOL;
3076 for (i = 0; i < len; ++i)
3077 {
3078 c = cmdline_charsize(ccline.cmdpos);
3079#ifdef FEAT_MBYTE
3080 /* count ">" for a double-wide char that doesn't fit. */
3081 if (has_mbyte)
3082 correct_cmdspos(ccline.cmdpos, c);
3083#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00003084 /* Stop cursor at the end of the screen, but do increment the
3085 * insert position, so that entering a very long command
3086 * works, even though you can't see it. */
3087 if (ccline.cmdspos + c < m)
3088 ccline.cmdspos += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089#ifdef FEAT_MBYTE
3090 if (has_mbyte)
3091 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003092 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093 if (c > len - i - 1)
3094 c = len - i - 1;
3095 ccline.cmdpos += c;
3096 i += c;
3097 }
3098#endif
3099 ++ccline.cmdpos;
3100 }
3101 }
3102 }
3103 if (redraw)
3104 msg_check();
3105 return retval;
3106}
3107
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003108static struct cmdline_info prev_ccline;
3109static int prev_ccline_used = FALSE;
3110
3111/*
3112 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
3113 * and overwrite it. But get_cmdline_str() may need it, thus make it
3114 * available globally in prev_ccline.
3115 */
3116 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003117save_cmdline(struct cmdline_info *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003118{
3119 if (!prev_ccline_used)
3120 {
3121 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info));
3122 prev_ccline_used = TRUE;
3123 }
3124 *ccp = prev_ccline;
3125 prev_ccline = ccline;
3126 ccline.cmdbuff = NULL;
3127 ccline.cmdprompt = NULL;
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003128 ccline.xpc = NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003129}
3130
3131/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003132 * Restore ccline after it has been saved with save_cmdline().
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003133 */
3134 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003135restore_cmdline(struct cmdline_info *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003136{
3137 ccline = prev_ccline;
3138 prev_ccline = *ccp;
3139}
3140
Bram Moolenaar5a305422006-04-28 22:38:25 +00003141#if defined(FEAT_EVAL) || defined(PROTO)
3142/*
3143 * Save the command line into allocated memory. Returns a pointer to be
3144 * passed to restore_cmdline_alloc() later.
3145 * Returns NULL when failed.
3146 */
3147 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003148save_cmdline_alloc(void)
Bram Moolenaar5a305422006-04-28 22:38:25 +00003149{
3150 struct cmdline_info *p;
3151
3152 p = (struct cmdline_info *)alloc((unsigned)sizeof(struct cmdline_info));
3153 if (p != NULL)
3154 save_cmdline(p);
3155 return (char_u *)p;
3156}
3157
3158/*
3159 * Restore the command line from the return value of save_cmdline_alloc().
3160 */
3161 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003162restore_cmdline_alloc(char_u *p)
Bram Moolenaar5a305422006-04-28 22:38:25 +00003163{
3164 if (p != NULL)
3165 {
3166 restore_cmdline((struct cmdline_info *)p);
3167 vim_free(p);
3168 }
3169}
3170#endif
3171
Bram Moolenaar8299df92004-07-10 09:47:34 +00003172/*
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003173 * Paste a yank register into the command line.
3174 * Used by CTRL-R command in command-line mode.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003175 * insert_reg() can't be used here, because special characters from the
3176 * register contents will be interpreted as commands.
3177 *
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003178 * Return FAIL for failure, OK otherwise.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003179 */
3180 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003181cmdline_paste(
3182 int regname,
3183 int literally, /* Insert text literally instead of "as typed" */
3184 int remcr) /* remove trailing CR */
Bram Moolenaar8299df92004-07-10 09:47:34 +00003185{
3186 long i;
3187 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003188 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003189 int allocated;
3190 struct cmdline_info save_ccline;
3191
3192 /* check for valid regname; also accept special characters for CTRL-R in
3193 * the command line */
3194 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
3195 && regname != Ctrl_A && !valid_yank_reg(regname, FALSE))
3196 return FAIL;
3197
3198 /* A register containing CTRL-R can cause an endless loop. Allow using
3199 * CTRL-C to break the loop. */
3200 line_breakcheck();
3201 if (got_int)
3202 return FAIL;
3203
3204#ifdef FEAT_CLIPBOARD
3205 regname = may_get_selection(regname);
3206#endif
3207
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003208 /* Need to save and restore ccline. And set "textlock" to avoid nasty
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003209 * things like going to another buffer when evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003210 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003211 ++textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003212 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003213 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003214 restore_cmdline(&save_ccline);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003215
3216 if (i)
3217 {
3218 /* Got the value of a special register in "arg". */
3219 if (arg == NULL)
3220 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003221
3222 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
3223 * part of the word. */
3224 p = arg;
3225 if (p_is && regname == Ctrl_W)
3226 {
3227 char_u *w;
3228 int len;
3229
3230 /* Locate start of last word in the cmd buffer. */
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003231 for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; )
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003232 {
3233#ifdef FEAT_MBYTE
3234 if (has_mbyte)
3235 {
3236 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
3237 if (!vim_iswordc(mb_ptr2char(w - len)))
3238 break;
3239 w -= len;
3240 }
3241 else
3242#endif
3243 {
3244 if (!vim_iswordc(w[-1]))
3245 break;
3246 --w;
3247 }
3248 }
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003249 len = (int)((ccline.cmdbuff + ccline.cmdpos) - w);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003250 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
3251 p += len;
3252 }
3253
3254 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003255 if (allocated)
3256 vim_free(arg);
3257 return OK;
3258 }
3259
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003260 return cmdline_paste_reg(regname, literally, remcr);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003261}
3262
3263/*
3264 * Put a string on the command line.
3265 * When "literally" is TRUE, insert literally.
3266 * When "literally" is FALSE, insert as typed, but don't leave the command
3267 * line.
3268 */
3269 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003270cmdline_paste_str(char_u *s, int literally)
Bram Moolenaar8299df92004-07-10 09:47:34 +00003271{
3272 int c, cv;
3273
3274 if (literally)
3275 put_on_cmdline(s, -1, TRUE);
3276 else
3277 while (*s != NUL)
3278 {
3279 cv = *s;
3280 if (cv == Ctrl_V && s[1])
3281 ++s;
3282#ifdef FEAT_MBYTE
3283 if (has_mbyte)
Bram Moolenaar48be32b2008-06-20 10:56:16 +00003284 c = mb_cptr2char_adv(&s);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003285 else
3286#endif
3287 c = *s++;
Bram Moolenaare79abdd2012-06-29 13:44:41 +02003288 if (cv == Ctrl_V || c == ESC || c == Ctrl_C
3289 || c == CAR || c == NL || c == Ctrl_L
Bram Moolenaar8299df92004-07-10 09:47:34 +00003290#ifdef UNIX
3291 || c == intr_char
3292#endif
3293 || (c == Ctrl_BSL && *s == Ctrl_N))
3294 stuffcharReadbuff(Ctrl_V);
3295 stuffcharReadbuff(c);
3296 }
3297}
3298
Bram Moolenaar071d4272004-06-13 20:20:40 +00003299#ifdef FEAT_WILDMENU
3300/*
3301 * Delete characters on the command line, from "from" to the current
3302 * position.
3303 */
3304 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003305cmdline_del(int from)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306{
3307 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
3308 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3309 ccline.cmdlen -= ccline.cmdpos - from;
3310 ccline.cmdpos = from;
3311}
3312#endif
3313
3314/*
Bram Moolenaar89c79b92016-05-05 17:18:41 +02003315 * This function is called when the screen size changes and with incremental
3316 * search and in other situations where the command line may have been
3317 * overwritten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318 */
3319 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003320redrawcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321{
3322 if (cmd_silent)
3323 return;
3324 need_wait_return = FALSE;
3325 compute_cmdrow();
3326 redrawcmd();
3327 cursorcmd();
3328}
3329
3330 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003331redrawcmdprompt(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332{
3333 int i;
3334
3335 if (cmd_silent)
3336 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003337 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003338 msg_putchar(ccline.cmdfirstc);
3339 if (ccline.cmdprompt != NULL)
3340 {
3341 msg_puts_attr(ccline.cmdprompt, ccline.cmdattr);
3342 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
3343 /* do the reverse of set_cmdspos() */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003344 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345 --ccline.cmdindent;
3346 }
3347 else
3348 for (i = ccline.cmdindent; i > 0; --i)
3349 msg_putchar(' ');
3350}
3351
3352/*
3353 * Redraw what is currently on the command line.
3354 */
3355 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003356redrawcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003357{
3358 if (cmd_silent)
3359 return;
3360
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003361 /* when 'incsearch' is set there may be no command line while redrawing */
3362 if (ccline.cmdbuff == NULL)
3363 {
3364 windgoto(cmdline_row, 0);
3365 msg_clr_eos();
3366 return;
3367 }
3368
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369 msg_start();
3370 redrawcmdprompt();
3371
3372 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
3373 msg_no_more = TRUE;
3374 draw_cmdline(0, ccline.cmdlen);
3375 msg_clr_eos();
3376 msg_no_more = FALSE;
3377
3378 set_cmdspos_cursor();
3379
3380 /*
3381 * An emsg() before may have set msg_scroll. This is used in normal mode,
3382 * in cmdline mode we can reset them now.
3383 */
3384 msg_scroll = FALSE; /* next message overwrites cmdline */
3385
3386 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
3387 * in cmdline mode */
3388 skip_redraw = FALSE;
3389}
3390
3391 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003392compute_cmdrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003393{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003394 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395 cmdline_row = Rows - 1;
3396 else
3397 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
3398 + W_STATUS_HEIGHT(lastwin);
3399}
3400
3401 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003402cursorcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403{
3404 if (cmd_silent)
3405 return;
3406
3407#ifdef FEAT_RIGHTLEFT
3408 if (cmdmsg_rl)
3409 {
3410 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3411 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3412 if (msg_row <= 0)
3413 msg_row = Rows - 1;
3414 }
3415 else
3416#endif
3417 {
3418 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3419 msg_col = ccline.cmdspos % (int)Columns;
3420 if (msg_row >= Rows)
3421 msg_row = Rows - 1;
3422 }
3423
3424 windgoto(msg_row, msg_col);
3425#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
3426 redrawcmd_preedit();
3427#endif
3428#ifdef MCH_CURSOR_SHAPE
3429 mch_update_cursor();
3430#endif
3431}
3432
3433 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003434gotocmdline(int clr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435{
3436 msg_start();
3437#ifdef FEAT_RIGHTLEFT
3438 if (cmdmsg_rl)
3439 msg_col = Columns - 1;
3440 else
3441#endif
3442 msg_col = 0; /* always start in column 0 */
3443 if (clr) /* clear the bottom line(s) */
3444 msg_clr_eos(); /* will reset clear_cmdline */
3445 windgoto(cmdline_row, 0);
3446}
3447
3448/*
3449 * Check the word in front of the cursor for an abbreviation.
3450 * Called when the non-id character "c" has been entered.
3451 * When an abbreviation is recognized it is removed from the text with
3452 * backspaces and the replacement string is inserted, followed by "c".
3453 */
3454 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003455ccheck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456{
3457 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
3458 return FALSE;
3459
3460 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, 0);
3461}
3462
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003463#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3464 static int
3465#ifdef __BORLANDC__
3466_RTLENTRYF
3467#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003468sort_func_compare(const void *s1, const void *s2)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003469{
3470 char_u *p1 = *(char_u **)s1;
3471 char_u *p2 = *(char_u **)s2;
3472
3473 if (*p1 != '<' && *p2 == '<') return -1;
3474 if (*p1 == '<' && *p2 != '<') return 1;
3475 return STRCMP(p1, p2);
3476}
3477#endif
3478
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479/*
3480 * Return FAIL if this is not an appropriate context in which to do
3481 * completion of anything, return OK if it is (even if there are no matches).
3482 * For the caller, this means that the character is just passed through like a
3483 * normal character (instead of being expanded). This allows :s/^I^D etc.
3484 */
3485 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003486nextwild(
3487 expand_T *xp,
3488 int type,
3489 int options, /* extra options for ExpandOne() */
3490 int escape) /* if TRUE, escape the returned matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003491{
3492 int i, j;
3493 char_u *p1;
3494 char_u *p2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 int difflen;
3496 int v;
3497
3498 if (xp->xp_numfiles == -1)
3499 {
3500 set_expand_context(xp);
3501 cmd_showtail = expand_showtail(xp);
3502 }
3503
3504 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
3505 {
3506 beep_flush();
3507 return OK; /* Something illegal on command line */
3508 }
3509 if (xp->xp_context == EXPAND_NOTHING)
3510 {
3511 /* Caller can use the character as a normal char instead */
3512 return FAIL;
3513 }
3514
3515 MSG_PUTS("..."); /* show that we are busy */
3516 out_flush();
3517
3518 i = (int)(xp->xp_pattern - ccline.cmdbuff);
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003519 xp->xp_pattern_len = ccline.cmdpos - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520
3521 if (type == WILD_NEXT || type == WILD_PREV)
3522 {
3523 /*
3524 * Get next/previous match for a previous expanded pattern.
3525 */
3526 p2 = ExpandOne(xp, NULL, NULL, 0, type);
3527 }
3528 else
3529 {
3530 /*
3531 * Translate string into pattern and expand it.
3532 */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003533 if ((p1 = addstar(xp->xp_pattern, xp->xp_pattern_len,
3534 xp->xp_context)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535 p2 = NULL;
3536 else
3537 {
Bram Moolenaar94950a92010-12-02 16:01:29 +01003538 int use_options = options |
Bram Moolenaarb3479632012-11-28 16:49:58 +01003539 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT;
3540 if (escape)
3541 use_options |= WILD_ESCAPE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01003542
3543 if (p_wic)
3544 use_options += WILD_ICASE;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003545 p2 = ExpandOne(xp, p1,
3546 vim_strnsave(&ccline.cmdbuff[i], xp->xp_pattern_len),
Bram Moolenaar94950a92010-12-02 16:01:29 +01003547 use_options, type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548 vim_free(p1);
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003549 /* longest match: make sure it is not shorter, happens with :help */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550 if (p2 != NULL && type == WILD_LONGEST)
3551 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003552 for (j = 0; j < xp->xp_pattern_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553 if (ccline.cmdbuff[i + j] == '*'
3554 || ccline.cmdbuff[i + j] == '?')
3555 break;
3556 if ((int)STRLEN(p2) < j)
3557 {
3558 vim_free(p2);
3559 p2 = NULL;
3560 }
3561 }
3562 }
3563 }
3564
3565 if (p2 != NULL && !got_int)
3566 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003567 difflen = (int)STRLEN(p2) - xp->xp_pattern_len;
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003568 if (ccline.cmdlen + difflen + 4 > ccline.cmdbufflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003570 v = realloc_cmdbuff(ccline.cmdlen + difflen + 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571 xp->xp_pattern = ccline.cmdbuff + i;
3572 }
3573 else
3574 v = OK;
3575 if (v == OK)
3576 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003577 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen],
3578 &ccline.cmdbuff[ccline.cmdpos],
3579 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3580 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581 ccline.cmdlen += difflen;
3582 ccline.cmdpos += difflen;
3583 }
3584 }
3585 vim_free(p2);
3586
3587 redrawcmd();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003588 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589
3590 /* When expanding a ":map" command and no matches are found, assume that
3591 * the key is supposed to be inserted literally */
3592 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL)
3593 return FAIL;
3594
3595 if (xp->xp_numfiles <= 0 && p2 == NULL)
3596 beep_flush();
3597 else if (xp->xp_numfiles == 1)
3598 /* free expanded pattern */
3599 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
3600
3601 return OK;
3602}
3603
3604/*
3605 * Do wildcard expansion on the string 'str'.
3606 * Chars that should not be expanded must be preceded with a backslash.
Bram Moolenaarf9821062008-06-20 16:31:07 +00003607 * Return a pointer to allocated memory containing the new string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608 * Return NULL for failure.
3609 *
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003610 * "orig" is the originally expanded string, copied to allocated memory. It
3611 * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or
3612 * WILD_PREV "orig" should be NULL.
3613 *
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003614 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode"
3615 * is WILD_EXPAND_FREE or WILD_ALL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616 *
3617 * mode = WILD_FREE: just free previously expanded matches
3618 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches
3619 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches
3620 * mode = WILD_NEXT: use next match in multiple match, wrap to first
3621 * mode = WILD_PREV: use previous match in multiple match, wrap to first
3622 * mode = WILD_ALL: return all matches concatenated
3623 * mode = WILD_LONGEST: return longest matched part
Bram Moolenaar146e9c32012-03-07 19:18:23 +01003624 * mode = WILD_ALL_KEEP: get all matches, keep matches
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625 *
3626 * options = WILD_LIST_NOTFOUND: list entries without a match
3627 * options = WILD_HOME_REPLACE: do home_replace() for buffer names
3628 * options = WILD_USE_NL: Use '\n' for WILD_ALL
3629 * options = WILD_NO_BEEP: Don't beep for multiple matches
3630 * options = WILD_ADD_SLASH: add a slash after directory names
3631 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries
3632 * options = WILD_SILENT: don't print warning messages
3633 * options = WILD_ESCAPE: put backslash before special chars
Bram Moolenaar94950a92010-12-02 16:01:29 +01003634 * options = WILD_ICASE: ignore case for files
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 *
3636 * The variables xp->xp_context and xp->xp_backslash must have been set!
3637 */
3638 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003639ExpandOne(
3640 expand_T *xp,
3641 char_u *str,
3642 char_u *orig, /* allocated copy of original of expanded string */
3643 int options,
3644 int mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003645{
3646 char_u *ss = NULL;
3647 static int findex;
3648 static char_u *orig_save = NULL; /* kept value of orig */
Bram Moolenaar96426642007-10-30 16:37:15 +00003649 int orig_saved = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650 int i;
3651 long_u len;
3652 int non_suf_match; /* number without matching suffix */
3653
3654 /*
3655 * first handle the case of using an old match
3656 */
3657 if (mode == WILD_NEXT || mode == WILD_PREV)
3658 {
3659 if (xp->xp_numfiles > 0)
3660 {
3661 if (mode == WILD_PREV)
3662 {
3663 if (findex == -1)
3664 findex = xp->xp_numfiles;
3665 --findex;
3666 }
3667 else /* mode == WILD_NEXT */
3668 ++findex;
3669
3670 /*
3671 * When wrapping around, return the original string, set findex to
3672 * -1.
3673 */
3674 if (findex < 0)
3675 {
3676 if (orig_save == NULL)
3677 findex = xp->xp_numfiles - 1;
3678 else
3679 findex = -1;
3680 }
3681 if (findex >= xp->xp_numfiles)
3682 {
3683 if (orig_save == NULL)
3684 findex = 0;
3685 else
3686 findex = -1;
3687 }
3688#ifdef FEAT_WILDMENU
3689 if (p_wmnu)
3690 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files,
3691 findex, cmd_showtail);
3692#endif
3693 if (findex == -1)
3694 return vim_strsave(orig_save);
3695 return vim_strsave(xp->xp_files[findex]);
3696 }
3697 else
3698 return NULL;
3699 }
3700
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003701 /* free old names */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST)
3703 {
3704 FreeWild(xp->xp_numfiles, xp->xp_files);
3705 xp->xp_numfiles = -1;
3706 vim_free(orig_save);
3707 orig_save = NULL;
3708 }
3709 findex = 0;
3710
3711 if (mode == WILD_FREE) /* only release file name */
3712 return NULL;
3713
3714 if (xp->xp_numfiles == -1)
3715 {
3716 vim_free(orig_save);
3717 orig_save = orig;
Bram Moolenaar96426642007-10-30 16:37:15 +00003718 orig_saved = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719
3720 /*
3721 * Do the expansion.
3722 */
3723 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files,
3724 options) == FAIL)
3725 {
3726#ifdef FNAME_ILLEGAL
3727 /* Illegal file name has been silently skipped. But when there
3728 * are wildcards, the real problem is that there was no match,
3729 * causing the pattern to be added, which has illegal characters.
3730 */
3731 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND))
3732 EMSG2(_(e_nomatch2), str);
3733#endif
3734 }
3735 else if (xp->xp_numfiles == 0)
3736 {
3737 if (!(options & WILD_SILENT))
3738 EMSG2(_(e_nomatch2), str);
3739 }
3740 else
3741 {
3742 /* Escape the matches for use on the command line. */
3743 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options);
3744
3745 /*
3746 * Check for matching suffixes in file names.
3747 */
Bram Moolenaar146e9c32012-03-07 19:18:23 +01003748 if (mode != WILD_ALL && mode != WILD_ALL_KEEP
3749 && mode != WILD_LONGEST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 {
3751 if (xp->xp_numfiles)
3752 non_suf_match = xp->xp_numfiles;
3753 else
3754 non_suf_match = 1;
3755 if ((xp->xp_context == EXPAND_FILES
3756 || xp->xp_context == EXPAND_DIRECTORIES)
3757 && xp->xp_numfiles > 1)
3758 {
3759 /*
3760 * More than one match; check suffix.
3761 * The files will have been sorted on matching suffix in
3762 * expand_wildcards, only need to check the first two.
3763 */
3764 non_suf_match = 0;
3765 for (i = 0; i < 2; ++i)
3766 if (match_suffix(xp->xp_files[i]))
3767 ++non_suf_match;
3768 }
3769 if (non_suf_match != 1)
3770 {
3771 /* Can we ever get here unless it's while expanding
3772 * interactively? If not, we can get rid of this all
3773 * together. Don't really want to wait for this message
3774 * (and possibly have to hit return to continue!).
3775 */
3776 if (!(options & WILD_SILENT))
3777 EMSG(_(e_toomany));
3778 else if (!(options & WILD_NO_BEEP))
3779 beep_flush();
3780 }
3781 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE))
3782 ss = vim_strsave(xp->xp_files[0]);
3783 }
3784 }
3785 }
3786
3787 /* Find longest common part */
3788 if (mode == WILD_LONGEST && xp->xp_numfiles > 0)
3789 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003790 int mb_len = 1;
3791 int c0, ci;
3792
3793 for (len = 0; xp->xp_files[0][len]; len += mb_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003795#ifdef FEAT_MBYTE
3796 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003798 mb_len = (*mb_ptr2len)(&xp->xp_files[0][len]);
3799 c0 =(* mb_ptr2char)(&xp->xp_files[0][len]);
3800 }
3801 else
3802#endif
Bram Moolenaare4eda3b2015-11-21 16:28:50 +01003803 c0 = xp->xp_files[0][len];
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003804 for (i = 1; i < xp->xp_numfiles; ++i)
3805 {
3806#ifdef FEAT_MBYTE
3807 if (has_mbyte)
3808 ci =(* mb_ptr2char)(&xp->xp_files[i][len]);
3809 else
3810#endif
3811 ci = xp->xp_files[i][len];
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01003812 if (p_fic && (xp->xp_context == EXPAND_DIRECTORIES
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813 || xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003814 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01003815 || xp->xp_context == EXPAND_BUFFERS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003817 if (MB_TOLOWER(c0) != MB_TOLOWER(ci))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003818 break;
3819 }
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003820 else if (c0 != ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821 break;
3822 }
3823 if (i < xp->xp_numfiles)
3824 {
3825 if (!(options & WILD_NO_BEEP))
Bram Moolenaar165bc692015-07-21 17:53:25 +02003826 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827 break;
3828 }
3829 }
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003830
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831 ss = alloc((unsigned)len + 1);
3832 if (ss)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003833 vim_strncpy(ss, xp->xp_files[0], (size_t)len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 findex = -1; /* next p_wc gets first one */
3835 }
3836
3837 /* Concatenate all matching names */
3838 if (mode == WILD_ALL && xp->xp_numfiles > 0)
3839 {
3840 len = 0;
3841 for (i = 0; i < xp->xp_numfiles; ++i)
3842 len += (long_u)STRLEN(xp->xp_files[i]) + 1;
3843 ss = lalloc(len, TRUE);
3844 if (ss != NULL)
3845 {
3846 *ss = NUL;
3847 for (i = 0; i < xp->xp_numfiles; ++i)
3848 {
3849 STRCAT(ss, xp->xp_files[i]);
3850 if (i != xp->xp_numfiles - 1)
3851 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " ");
3852 }
3853 }
3854 }
3855
3856 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL)
3857 ExpandCleanup(xp);
3858
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003859 /* Free "orig" if it wasn't stored in "orig_save". */
Bram Moolenaar96426642007-10-30 16:37:15 +00003860 if (!orig_saved)
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003861 vim_free(orig);
3862
Bram Moolenaar071d4272004-06-13 20:20:40 +00003863 return ss;
3864}
3865
3866/*
3867 * Prepare an expand structure for use.
3868 */
3869 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003870ExpandInit(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871{
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003872 xp->xp_pattern = NULL;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003873 xp->xp_pattern_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003875#ifndef BACKSLASH_IN_FILENAME
3876 xp->xp_shell = FALSE;
3877#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 xp->xp_numfiles = -1;
3879 xp->xp_files = NULL;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003880#if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
3881 xp->xp_arg = NULL;
3882#endif
Bram Moolenaarb7515462013-06-29 12:58:33 +02003883 xp->xp_line = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884}
3885
3886/*
3887 * Cleanup an expand structure after use.
3888 */
3889 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003890ExpandCleanup(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891{
3892 if (xp->xp_numfiles >= 0)
3893 {
3894 FreeWild(xp->xp_numfiles, xp->xp_files);
3895 xp->xp_numfiles = -1;
3896 }
3897}
3898
3899 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003900ExpandEscape(
3901 expand_T *xp,
3902 char_u *str,
3903 int numfiles,
3904 char_u **files,
3905 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906{
3907 int i;
3908 char_u *p;
3909
3910 /*
3911 * May change home directory back to "~"
3912 */
3913 if (options & WILD_HOME_REPLACE)
3914 tilde_replace(str, numfiles, files);
3915
3916 if (options & WILD_ESCAPE)
3917 {
3918 if (xp->xp_context == EXPAND_FILES
Bram Moolenaarcca92ec2011-04-28 17:21:53 +02003919 || xp->xp_context == EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003920 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921 || xp->xp_context == EXPAND_BUFFERS
3922 || xp->xp_context == EXPAND_DIRECTORIES)
3923 {
3924 /*
3925 * Insert a backslash into a file name before a space, \, %, #
3926 * and wildmatch characters, except '~'.
3927 */
3928 for (i = 0; i < numfiles; ++i)
3929 {
3930 /* for ":set path=" we need to escape spaces twice */
3931 if (xp->xp_backslash == XP_BS_THREE)
3932 {
3933 p = vim_strsave_escaped(files[i], (char_u *)" ");
3934 if (p != NULL)
3935 {
3936 vim_free(files[i]);
3937 files[i] = p;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003938#if defined(BACKSLASH_IN_FILENAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939 p = vim_strsave_escaped(files[i], (char_u *)" ");
3940 if (p != NULL)
3941 {
3942 vim_free(files[i]);
3943 files[i] = p;
3944 }
3945#endif
3946 }
3947 }
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00003948#ifdef BACKSLASH_IN_FILENAME
3949 p = vim_strsave_fnameescape(files[i], FALSE);
3950#else
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003951 p = vim_strsave_fnameescape(files[i], xp->xp_shell);
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00003952#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 if (p != NULL)
3954 {
3955 vim_free(files[i]);
3956 files[i] = p;
3957 }
3958
3959 /* If 'str' starts with "\~", replace "~" at start of
3960 * files[i] with "\~". */
3961 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~')
Bram Moolenaar45360022005-07-21 21:08:21 +00003962 escape_fname(&files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003963 }
3964 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar45360022005-07-21 21:08:21 +00003965
3966 /* If the first file starts with a '+' escape it. Otherwise it
3967 * could be seen as "+cmd". */
3968 if (*files[0] == '+')
3969 escape_fname(&files[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970 }
3971 else if (xp->xp_context == EXPAND_TAGS)
3972 {
3973 /*
3974 * Insert a backslash before characters in a tag name that
3975 * would terminate the ":tag" command.
3976 */
3977 for (i = 0; i < numfiles; ++i)
3978 {
3979 p = vim_strsave_escaped(files[i], (char_u *)"\\|\"");
3980 if (p != NULL)
3981 {
3982 vim_free(files[i]);
3983 files[i] = p;
3984 }
3985 }
3986 }
3987 }
3988}
3989
3990/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003991 * Escape special characters in "fname" for when used as a file name argument
3992 * after a Vim command, or, when "shell" is non-zero, a shell command.
3993 * Returns the result in allocated memory.
3994 */
3995 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003996vim_strsave_fnameescape(char_u *fname, int shell)
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003997{
Bram Moolenaar7693ec62008-07-24 18:29:37 +00003998 char_u *p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003999#ifdef BACKSLASH_IN_FILENAME
4000 char_u buf[20];
4001 int j = 0;
4002
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01004003 /* Don't escape '[', '{' and '!' if they are in 'isfname'. */
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004004 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01004005 if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p))
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004006 buf[j++] = *p;
4007 buf[j] = NUL;
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004008 p = vim_strsave_escaped(fname, buf);
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004009#else
Bram Moolenaar7693ec62008-07-24 18:29:37 +00004010 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
4011 if (shell && csh_like_shell() && p != NULL)
4012 {
4013 char_u *s;
4014
4015 /* For csh and similar shells need to put two backslashes before '!'.
4016 * One is taken by Vim, one by the shell. */
4017 s = vim_strsave_escaped(p, (char_u *)"!");
4018 vim_free(p);
4019 p = s;
4020 }
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004021#endif
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004022
4023 /* '>' and '+' are special at the start of some commands, e.g. ":edit" and
4024 * ":write". "cd -" has a special meaning. */
Bram Moolenaara9d52e32010-07-31 16:44:19 +02004025 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL)))
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004026 escape_fname(&p);
4027
4028 return p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004029}
4030
4031/*
Bram Moolenaar45360022005-07-21 21:08:21 +00004032 * Put a backslash before the file name in "pp", which is in allocated memory.
4033 */
4034 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004035escape_fname(char_u **pp)
Bram Moolenaar45360022005-07-21 21:08:21 +00004036{
4037 char_u *p;
4038
4039 p = alloc((unsigned)(STRLEN(*pp) + 2));
4040 if (p != NULL)
4041 {
4042 p[0] = '\\';
4043 STRCPY(p + 1, *pp);
4044 vim_free(*pp);
4045 *pp = p;
4046 }
4047}
4048
4049/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 * For each file name in files[num_files]:
4051 * If 'orig_pat' starts with "~/", replace the home directory with "~".
4052 */
4053 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004054tilde_replace(
4055 char_u *orig_pat,
4056 int num_files,
4057 char_u **files)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004058{
4059 int i;
4060 char_u *p;
4061
4062 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
4063 {
4064 for (i = 0; i < num_files; ++i)
4065 {
4066 p = home_replace_save(NULL, files[i]);
4067 if (p != NULL)
4068 {
4069 vim_free(files[i]);
4070 files[i] = p;
4071 }
4072 }
4073 }
4074}
4075
4076/*
4077 * Show all matches for completion on the command line.
4078 * Returns EXPAND_NOTHING when the character that triggered expansion should
4079 * be inserted like a normal character.
4080 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004081 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004082showmatches(expand_T *xp, int wildmenu UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083{
4084#define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m])
4085 int num_files;
4086 char_u **files_found;
4087 int i, j, k;
4088 int maxlen;
4089 int lines;
4090 int columns;
4091 char_u *p;
4092 int lastlen;
4093 int attr;
4094 int showtail;
4095
4096 if (xp->xp_numfiles == -1)
4097 {
4098 set_expand_context(xp);
4099 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos,
4100 &num_files, &files_found);
4101 showtail = expand_showtail(xp);
4102 if (i != EXPAND_OK)
4103 return i;
4104
4105 }
4106 else
4107 {
4108 num_files = xp->xp_numfiles;
4109 files_found = xp->xp_files;
4110 showtail = cmd_showtail;
4111 }
4112
4113#ifdef FEAT_WILDMENU
4114 if (!wildmenu)
4115 {
4116#endif
4117 msg_didany = FALSE; /* lines_left will be set */
4118 msg_start(); /* prepare for paging */
4119 msg_putchar('\n');
4120 out_flush();
4121 cmdline_row = msg_row;
4122 msg_didany = FALSE; /* lines_left will be set again */
4123 msg_start(); /* prepare for paging */
4124#ifdef FEAT_WILDMENU
4125 }
4126#endif
4127
4128 if (got_int)
4129 got_int = FALSE; /* only int. the completion, not the cmd line */
4130#ifdef FEAT_WILDMENU
4131 else if (wildmenu)
4132 win_redr_status_matches(xp, num_files, files_found, 0, showtail);
4133#endif
4134 else
4135 {
4136 /* find the length of the longest file name */
4137 maxlen = 0;
4138 for (i = 0; i < num_files; ++i)
4139 {
4140 if (!showtail && (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004141 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004142 || xp->xp_context == EXPAND_BUFFERS))
4143 {
4144 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE);
4145 j = vim_strsize(NameBuff);
4146 }
4147 else
4148 j = vim_strsize(L_SHOWFILE(i));
4149 if (j > maxlen)
4150 maxlen = j;
4151 }
4152
4153 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4154 lines = num_files;
4155 else
4156 {
4157 /* compute the number of columns and lines for the listing */
4158 maxlen += 2; /* two spaces between file names */
4159 columns = ((int)Columns + 2) / maxlen;
4160 if (columns < 1)
4161 columns = 1;
4162 lines = (num_files + columns - 1) / columns;
4163 }
4164
4165 attr = hl_attr(HLF_D); /* find out highlighting for directories */
4166
4167 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4168 {
4169 MSG_PUTS_ATTR(_("tagname"), hl_attr(HLF_T));
4170 msg_clr_eos();
4171 msg_advance(maxlen - 3);
4172 MSG_PUTS_ATTR(_(" kind file\n"), hl_attr(HLF_T));
4173 }
4174
4175 /* list the files line by line */
4176 for (i = 0; i < lines; ++i)
4177 {
4178 lastlen = 999;
4179 for (k = i; k < num_files; k += lines)
4180 {
4181 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4182 {
4183 msg_outtrans_attr(files_found[k], hl_attr(HLF_D));
4184 p = files_found[k] + STRLEN(files_found[k]) + 1;
4185 msg_advance(maxlen + 1);
4186 msg_puts(p);
4187 msg_advance(maxlen + 3);
4188 msg_puts_long_attr(p + 2, hl_attr(HLF_D));
4189 break;
4190 }
4191 for (j = maxlen - lastlen; --j >= 0; )
4192 msg_putchar(' ');
4193 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004194 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195 || xp->xp_context == EXPAND_BUFFERS)
4196 {
Bram Moolenaarb91e59b2010-03-17 19:13:27 +01004197 /* highlight directories */
Bram Moolenaar63fa5262010-03-23 18:06:52 +01004198 if (xp->xp_numfiles != -1)
4199 {
4200 char_u *halved_slash;
4201 char_u *exp_path;
4202
4203 /* Expansion was done before and special characters
4204 * were escaped, need to halve backslashes. Also
4205 * $HOME has been replaced with ~/. */
4206 exp_path = expand_env_save_opt(files_found[k], TRUE);
4207 halved_slash = backslash_halve_save(
4208 exp_path != NULL ? exp_path : files_found[k]);
4209 j = mch_isdir(halved_slash != NULL ? halved_slash
4210 : files_found[k]);
4211 vim_free(exp_path);
4212 vim_free(halved_slash);
4213 }
4214 else
4215 /* Expansion was done here, file names are literal. */
4216 j = mch_isdir(files_found[k]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217 if (showtail)
4218 p = L_SHOWFILE(k);
4219 else
4220 {
4221 home_replace(NULL, files_found[k], NameBuff, MAXPATHL,
4222 TRUE);
4223 p = NameBuff;
4224 }
4225 }
4226 else
4227 {
4228 j = FALSE;
4229 p = L_SHOWFILE(k);
4230 }
4231 lastlen = msg_outtrans_attr(p, j ? attr : 0);
4232 }
4233 if (msg_col > 0) /* when not wrapped around */
4234 {
4235 msg_clr_eos();
4236 msg_putchar('\n');
4237 }
4238 out_flush(); /* show one line at a time */
4239 if (got_int)
4240 {
4241 got_int = FALSE;
4242 break;
4243 }
4244 }
4245
4246 /*
4247 * we redraw the command below the lines that we have just listed
4248 * This is a bit tricky, but it saves a lot of screen updating.
4249 */
4250 cmdline_row = msg_row; /* will put it back later */
4251 }
4252
4253 if (xp->xp_numfiles == -1)
4254 FreeWild(num_files, files_found);
4255
4256 return EXPAND_OK;
4257}
4258
4259/*
4260 * Private gettail for showmatches() (and win_redr_status_matches()):
4261 * Find tail of file name path, but ignore trailing "/".
4262 */
4263 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004264sm_gettail(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265{
4266 char_u *p;
4267 char_u *t = s;
4268 int had_sep = FALSE;
4269
4270 for (p = s; *p != NUL; )
4271 {
4272 if (vim_ispathsep(*p)
4273#ifdef BACKSLASH_IN_FILENAME
4274 && !rem_backslash(p)
4275#endif
4276 )
4277 had_sep = TRUE;
4278 else if (had_sep)
4279 {
4280 t = p;
4281 had_sep = FALSE;
4282 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004283 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 }
4285 return t;
4286}
4287
4288/*
4289 * Return TRUE if we only need to show the tail of completion matches.
4290 * When not completing file names or there is a wildcard in the path FALSE is
4291 * returned.
4292 */
4293 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004294expand_showtail(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295{
4296 char_u *s;
4297 char_u *end;
4298
4299 /* When not completing file names a "/" may mean something different. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004300 if (xp->xp_context != EXPAND_FILES
4301 && xp->xp_context != EXPAND_SHELLCMD
4302 && xp->xp_context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 return FALSE;
4304
4305 end = gettail(xp->xp_pattern);
4306 if (end == xp->xp_pattern) /* there is no path separator */
4307 return FALSE;
4308
4309 for (s = xp->xp_pattern; s < end; s++)
4310 {
4311 /* Skip escaped wildcards. Only when the backslash is not a path
4312 * separator, on DOS the '*' "path\*\file" must not be skipped. */
4313 if (rem_backslash(s))
4314 ++s;
4315 else if (vim_strchr((char_u *)"*?[", *s) != NULL)
4316 return FALSE;
4317 }
4318 return TRUE;
4319}
4320
4321/*
4322 * Prepare a string for expansion.
4323 * When expanding file names: The string will be used with expand_wildcards().
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004324 * Copy "fname[len]" into allocated memory and add a '*' at the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 * When expanding other names: The string will be used with regcomp(). Copy
4326 * the name into allocated memory and prepend "^".
4327 */
4328 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004329addstar(
4330 char_u *fname,
4331 int len,
4332 int context) /* EXPAND_FILES etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333{
4334 char_u *retval;
4335 int i, j;
4336 int new_len;
4337 char_u *tail;
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004338 int ends_in_star;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004340 if (context != EXPAND_FILES
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004341 && context != EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004342 && context != EXPAND_SHELLCMD
4343 && context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344 {
4345 /*
4346 * Matching will be done internally (on something other than files).
4347 * So we convert the file-matching-type wildcards into our kind for
4348 * use with vim_regcomp(). First work out how long it will be:
4349 */
4350
4351 /* For help tags the translation is done in find_help_tags().
4352 * For a tag pattern starting with "/" no translation is needed. */
4353 if (context == EXPAND_HELP
4354 || context == EXPAND_COLORS
4355 || context == EXPAND_COMPILER
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004356 || context == EXPAND_OWNSYNTAX
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004357 || context == EXPAND_FILETYPE
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01004358 || context == EXPAND_PACKADD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 || (context == EXPAND_TAGS && fname[0] == '/'))
4360 retval = vim_strnsave(fname, len);
4361 else
4362 {
4363 new_len = len + 2; /* +2 for '^' at start, NUL at end */
4364 for (i = 0; i < len; i++)
4365 {
4366 if (fname[i] == '*' || fname[i] == '~')
4367 new_len++; /* '*' needs to be replaced by ".*"
4368 '~' needs to be replaced by "\~" */
4369
4370 /* Buffer names are like file names. "." should be literal */
4371 if (context == EXPAND_BUFFERS && fname[i] == '.')
4372 new_len++; /* "." becomes "\." */
4373
4374 /* Custom expansion takes care of special things, match
4375 * backslashes literally (perhaps also for other types?) */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004376 if ((context == EXPAND_USER_DEFINED
4377 || context == EXPAND_USER_LIST) && fname[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378 new_len++; /* '\' becomes "\\" */
4379 }
4380 retval = alloc(new_len);
4381 if (retval != NULL)
4382 {
4383 retval[0] = '^';
4384 j = 1;
4385 for (i = 0; i < len; i++, j++)
4386 {
4387 /* Skip backslash. But why? At least keep it for custom
4388 * expansion. */
4389 if (context != EXPAND_USER_DEFINED
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004390 && context != EXPAND_USER_LIST
4391 && fname[i] == '\\'
4392 && ++i == len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 break;
4394
4395 switch (fname[i])
4396 {
4397 case '*': retval[j++] = '.';
4398 break;
4399 case '~': retval[j++] = '\\';
4400 break;
4401 case '?': retval[j] = '.';
4402 continue;
4403 case '.': if (context == EXPAND_BUFFERS)
4404 retval[j++] = '\\';
4405 break;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004406 case '\\': if (context == EXPAND_USER_DEFINED
4407 || context == EXPAND_USER_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408 retval[j++] = '\\';
4409 break;
4410 }
4411 retval[j] = fname[i];
4412 }
4413 retval[j] = NUL;
4414 }
4415 }
4416 }
4417 else
4418 {
4419 retval = alloc(len + 4);
4420 if (retval != NULL)
4421 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004422 vim_strncpy(retval, fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423
4424 /*
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004425 * Don't add a star to *, ~, ~user, $var or `cmd`.
4426 * * would become **, which walks the whole tree.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427 * ~ would be at the start of the file name, but not the tail.
4428 * $ could be anywhere in the tail.
4429 * ` could be anywhere in the file name.
Bram Moolenaar066b6222008-01-04 14:17:47 +00004430 * When the name ends in '$' don't add a star, remove the '$'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431 */
4432 tail = gettail(retval);
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004433 ends_in_star = (len > 0 && retval[len - 1] == '*');
4434#ifndef BACKSLASH_IN_FILENAME
4435 for (i = len - 2; i >= 0; --i)
4436 {
4437 if (retval[i] != '\\')
4438 break;
4439 ends_in_star = !ends_in_star;
4440 }
4441#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442 if ((*retval != '~' || tail != retval)
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004443 && !ends_in_star
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444 && vim_strchr(tail, '$') == NULL
4445 && vim_strchr(retval, '`') == NULL)
4446 retval[len++] = '*';
Bram Moolenaar066b6222008-01-04 14:17:47 +00004447 else if (len > 0 && retval[len - 1] == '$')
4448 --len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004449 retval[len] = NUL;
4450 }
4451 }
4452 return retval;
4453}
4454
4455/*
4456 * Must parse the command line so far to work out what context we are in.
4457 * Completion can then be done based on that context.
4458 * This routine sets the variables:
4459 * xp->xp_pattern The start of the pattern to be expanded within
4460 * the command line (ends at the cursor).
4461 * xp->xp_context The type of thing to expand. Will be one of:
4462 *
4463 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on
4464 * the command line, like an unknown command. Caller
4465 * should beep.
4466 * EXPAND_NOTHING Unrecognised context for completion, use char like
4467 * a normal char, rather than for completion. eg
4468 * :s/^I/
4469 * EXPAND_COMMANDS Cursor is still touching the command, so complete
4470 * it.
4471 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands.
4472 * EXPAND_FILES After command with XFILE set, or after setting
4473 * with P_EXPAND set. eg :e ^I, :w>>^I
4474 * EXPAND_DIRECTORIES In some cases this is used instead of the latter
4475 * when we know only directories are of interest. eg
4476 * :set dir=^I
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004477 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478 * EXPAND_SETTINGS Complete variable names. eg :set d^I
4479 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I
4480 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I
4481 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect
4482 * EXPAND_HELP Complete tags from the file 'helpfile'/tags
4483 * EXPAND_EVENTS Complete event names
4484 * EXPAND_SYNTAX Complete :syntax command arguments
4485 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names
4486 * EXPAND_AUGROUP Complete autocommand group names
4487 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I
4488 * EXPAND_MAPPINGS Complete mapping and abbreviation names,
4489 * eg :unmap a^I , :cunab x^I
4490 * EXPAND_FUNCTIONS Complete internal or user defined function names,
4491 * eg :call sub^I
4492 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I
4493 * EXPAND_EXPRESSION Complete internal or user defined function/variable
4494 * names in expressions, eg :while s^I
4495 * EXPAND_ENV_VARS Complete environment variable names
Bram Moolenaar24305862012-08-15 14:05:05 +02004496 * EXPAND_USER Complete user names
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 */
4498 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004499set_expand_context(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004501 /* only expansion for ':', '>' and '=' command-lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 if (ccline.cmdfirstc != ':'
4503#ifdef FEAT_EVAL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004504 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '='
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004505 && !ccline.input_fn
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506#endif
4507 )
4508 {
4509 xp->xp_context = EXPAND_NOTHING;
4510 return;
4511 }
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004512 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513}
4514
4515 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004516set_cmd_context(
4517 expand_T *xp,
4518 char_u *str, /* start of command line */
4519 int len, /* length of command line (excl. NUL) */
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004520 int col, /* position of cursor */
4521 int use_ccline UNUSED) /* use ccline for info */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522{
4523 int old_char = NUL;
4524 char_u *nextcomm;
4525
4526 /*
4527 * Avoid a UMR warning from Purify, only save the character if it has been
4528 * written before.
4529 */
4530 if (col < len)
4531 old_char = str[col];
4532 str[col] = NUL;
4533 nextcomm = str;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004534
4535#ifdef FEAT_EVAL
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004536 if (use_ccline && ccline.cmdfirstc == '=')
Bram Moolenaar4f688582007-07-24 12:34:30 +00004537 {
4538# ifdef FEAT_CMDL_COMPL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004539 /* pass CMD_SIZE because there is no real command */
4540 set_context_for_expression(xp, str, CMD_SIZE);
Bram Moolenaar4f688582007-07-24 12:34:30 +00004541# endif
4542 }
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004543 else if (use_ccline && ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004544 {
4545 xp->xp_context = ccline.xp_context;
4546 xp->xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004547# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004548 xp->xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004549# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004550 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004551 else
4552#endif
4553 while (nextcomm != NULL)
4554 nextcomm = set_one_cmd_context(xp, nextcomm);
4555
Bram Moolenaara4c8dcb2013-06-30 12:21:24 +02004556 /* Store the string here so that call_user_expand_func() can get to them
4557 * easily. */
4558 xp->xp_line = str;
4559 xp->xp_col = col;
4560
Bram Moolenaar071d4272004-06-13 20:20:40 +00004561 str[col] = old_char;
4562}
4563
4564/*
4565 * Expand the command line "str" from context "xp".
4566 * "xp" must have been set by set_cmd_context().
4567 * xp->xp_pattern points into "str", to where the text that is to be expanded
4568 * starts.
4569 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the
4570 * cursor.
4571 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the
4572 * key that triggered expansion literally.
4573 * Returns EXPAND_OK otherwise.
4574 */
4575 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004576expand_cmdline(
4577 expand_T *xp,
4578 char_u *str, /* start of command line */
4579 int col, /* position of cursor */
4580 int *matchcount, /* return: nr of matches */
4581 char_u ***matches) /* return: array of pointers to matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582{
4583 char_u *file_str = NULL;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004584 int options = WILD_ADD_SLASH|WILD_SILENT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585
4586 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
4587 {
4588 beep_flush();
4589 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */
4590 }
4591 if (xp->xp_context == EXPAND_NOTHING)
4592 {
4593 /* Caller can use the character as a normal char instead */
4594 return EXPAND_NOTHING;
4595 }
4596
4597 /* add star to file name, or convert to regexp if not exp. files. */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004598 xp->xp_pattern_len = (int)(str + col - xp->xp_pattern);
4599 file_str = addstar(xp->xp_pattern, xp->xp_pattern_len, xp->xp_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600 if (file_str == NULL)
4601 return EXPAND_UNSUCCESSFUL;
4602
Bram Moolenaar94950a92010-12-02 16:01:29 +01004603 if (p_wic)
4604 options += WILD_ICASE;
4605
Bram Moolenaar071d4272004-06-13 20:20:40 +00004606 /* find all files that match the description */
Bram Moolenaar94950a92010-12-02 16:01:29 +01004607 if (ExpandFromContext(xp, file_str, matchcount, matches, options) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608 {
4609 *matchcount = 0;
4610 *matches = NULL;
4611 }
4612 vim_free(file_str);
4613
4614 return EXPAND_OK;
4615}
4616
4617#ifdef FEAT_MULTI_LANG
4618/*
Bram Moolenaar61264d92016-03-28 19:59:02 +02004619 * Cleanup matches for help tags:
4620 * Remove "@ab" if the top of 'helplang' is "ab" and the language of the first
4621 * tag matches it. Otherwise remove "@en" if "en" is the only language.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004622 */
Bram Moolenaard25c16e2016-01-29 22:13:30 +01004623static void cleanup_help_tags(int num_file, char_u **file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624
4625 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004626cleanup_help_tags(int num_file, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627{
4628 int i, j;
4629 int len;
Bram Moolenaar61264d92016-03-28 19:59:02 +02004630 char_u buf[4];
4631 char_u *p = buf;
4632
Bram Moolenaar89c79b92016-05-05 17:18:41 +02004633 if (p_hlg[0] != NUL && (p_hlg[0] != 'e' || p_hlg[1] != 'n'))
Bram Moolenaar61264d92016-03-28 19:59:02 +02004634 {
4635 *p++ = '@';
4636 *p++ = p_hlg[0];
4637 *p++ = p_hlg[1];
4638 }
4639 *p = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004640
4641 for (i = 0; i < num_file; ++i)
4642 {
4643 len = (int)STRLEN(file[i]) - 3;
Bram Moolenaar61264d92016-03-28 19:59:02 +02004644 if (len <= 0)
4645 continue;
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02004646 if (STRCMP(file[i] + len, "@en") == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 {
4648 /* Sorting on priority means the same item in another language may
4649 * be anywhere. Search all items for a match up to the "@en". */
4650 for (j = 0; j < num_file; ++j)
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02004651 if (j != i && (int)STRLEN(file[j]) == len + 3
4652 && STRNCMP(file[i], file[j], len + 1) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 break;
4654 if (j == num_file)
Bram Moolenaar89c79b92016-05-05 17:18:41 +02004655 /* item only exists with @en, remove it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 file[i][len] = NUL;
4657 }
4658 }
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02004659
4660 if (*buf != NUL)
4661 for (i = 0; i < num_file; ++i)
4662 {
4663 len = (int)STRLEN(file[i]) - 3;
4664 if (len <= 0)
4665 continue;
4666 if (STRCMP(file[i] + len, buf) == 0)
4667 {
4668 /* remove the default language */
4669 file[i][len] = NUL;
4670 }
4671 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672}
4673#endif
4674
4675/*
4676 * Do the expansion based on xp->xp_context and "pat".
4677 */
4678 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004679ExpandFromContext(
4680 expand_T *xp,
4681 char_u *pat,
4682 int *num_file,
4683 char_u ***file,
4684 int options) /* EW_ flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004685{
4686#ifdef FEAT_CMDL_COMPL
4687 regmatch_T regmatch;
4688#endif
4689 int ret;
4690 int flags;
4691
4692 flags = EW_DIR; /* include directories */
4693 if (options & WILD_LIST_NOTFOUND)
4694 flags |= EW_NOTFOUND;
4695 if (options & WILD_ADD_SLASH)
4696 flags |= EW_ADDSLASH;
4697 if (options & WILD_KEEP_ALL)
4698 flags |= EW_KEEPALL;
4699 if (options & WILD_SILENT)
4700 flags |= EW_SILENT;
Bram Moolenaara245bc72015-03-05 19:35:25 +01004701 if (options & WILD_ALLLINKS)
4702 flags |= EW_ALLLINKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004704 if (xp->xp_context == EXPAND_FILES
4705 || xp->xp_context == EXPAND_DIRECTORIES
4706 || xp->xp_context == EXPAND_FILES_IN_PATH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 {
4708 /*
4709 * Expand file or directory names.
4710 */
4711 int free_pat = FALSE;
4712 int i;
4713
4714 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4715 * space */
4716 if (xp->xp_backslash != XP_BS_NONE)
4717 {
4718 free_pat = TRUE;
4719 pat = vim_strsave(pat);
4720 for (i = 0; pat[i]; ++i)
4721 if (pat[i] == '\\')
4722 {
4723 if (xp->xp_backslash == XP_BS_THREE
4724 && pat[i + 1] == '\\'
4725 && pat[i + 2] == '\\'
4726 && pat[i + 3] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004727 STRMOVE(pat + i, pat + i + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728 if (xp->xp_backslash == XP_BS_ONE
4729 && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004730 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731 }
4732 }
4733
4734 if (xp->xp_context == EXPAND_FILES)
4735 flags |= EW_FILE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004736 else if (xp->xp_context == EXPAND_FILES_IN_PATH)
4737 flags |= (EW_FILE | EW_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004738 else
4739 flags = (flags | EW_DIR) & ~EW_FILE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004740 if (options & WILD_ICASE)
4741 flags |= EW_ICASE;
4742
Bram Moolenaard7834d32009-12-02 16:14:36 +00004743 /* Expand wildcards, supporting %:h and the like. */
4744 ret = expand_wildcards_eval(&pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745 if (free_pat)
4746 vim_free(pat);
4747 return ret;
4748 }
4749
4750 *file = (char_u **)"";
4751 *num_file = 0;
4752 if (xp->xp_context == EXPAND_HELP)
4753 {
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00004754 /* With an empty argument we would get all the help tags, which is
4755 * very slow. Get matches for "help" instead. */
4756 if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat,
4757 num_file, file, FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 {
4759#ifdef FEAT_MULTI_LANG
4760 cleanup_help_tags(*num_file, *file);
4761#endif
4762 return OK;
4763 }
4764 return FAIL;
4765 }
4766
4767#ifndef FEAT_CMDL_COMPL
4768 return FAIL;
4769#else
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004770 if (xp->xp_context == EXPAND_SHELLCMD)
4771 return expand_shellcmd(pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 if (xp->xp_context == EXPAND_OLD_SETTING)
4773 return ExpandOldSetting(num_file, file);
4774 if (xp->xp_context == EXPAND_BUFFERS)
4775 return ExpandBufnames(pat, num_file, file, options);
4776 if (xp->xp_context == EXPAND_TAGS
4777 || xp->xp_context == EXPAND_TAGS_LISTFILES)
4778 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file);
4779 if (xp->xp_context == EXPAND_COLORS)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004780 {
4781 char *directories[] = {"colors", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004782 return ExpandRTDir(pat, DIP_START + DIP_OPT, num_file, file,
4783 directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004784 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004785 if (xp->xp_context == EXPAND_COMPILER)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004786 {
Bram Moolenaara627c962011-09-30 16:23:32 +02004787 char *directories[] = {"compiler", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004788 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004789 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004790 if (xp->xp_context == EXPAND_OWNSYNTAX)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004791 {
4792 char *directories[] = {"syntax", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004793 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004794 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004795 if (xp->xp_context == EXPAND_FILETYPE)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004796 {
4797 char *directories[] = {"syntax", "indent", "ftplugin", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004798 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004799 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004800# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4801 if (xp->xp_context == EXPAND_USER_LIST)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004802 return ExpandUserList(xp, num_file, file);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004803# endif
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01004804 if (xp->xp_context == EXPAND_PACKADD)
4805 return ExpandPackAddDir(pat, num_file, file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806
4807 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4808 if (regmatch.regprog == NULL)
4809 return FAIL;
4810
4811 /* set ignore-case according to p_ic, p_scs and pat */
4812 regmatch.rm_ic = ignorecase(pat);
4813
4814 if (xp->xp_context == EXPAND_SETTINGS
4815 || xp->xp_context == EXPAND_BOOL_SETTINGS)
4816 ret = ExpandSettings(xp, &regmatch, num_file, file);
4817 else if (xp->xp_context == EXPAND_MAPPINGS)
4818 ret = ExpandMappings(&regmatch, num_file, file);
4819# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4820 else if (xp->xp_context == EXPAND_USER_DEFINED)
4821 ret = ExpandUserDefined(xp, &regmatch, num_file, file);
4822# endif
4823 else
4824 {
4825 static struct expgen
4826 {
4827 int context;
Bram Moolenaard99df422016-01-29 23:20:40 +01004828 char_u *((*func)(expand_T *, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004829 int ic;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004830 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831 } tab[] =
4832 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004833 {EXPAND_COMMANDS, get_command_name, FALSE, TRUE},
4834 {EXPAND_BEHAVE, get_behave_arg, TRUE, TRUE},
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004835#ifdef FEAT_CMDHIST
4836 {EXPAND_HISTORY, get_history_arg, TRUE, TRUE},
4837#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838#ifdef FEAT_USR_CMDS
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004839 {EXPAND_USER_COMMANDS, get_user_commands, FALSE, TRUE},
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004840 {EXPAND_USER_ADDR_TYPE, get_user_cmd_addr_type, FALSE, TRUE},
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004841 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE, TRUE},
4842 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE, TRUE},
4843 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844#endif
4845#ifdef FEAT_EVAL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004846 {EXPAND_USER_VARS, get_user_var_name, FALSE, TRUE},
4847 {EXPAND_FUNCTIONS, get_function_name, FALSE, TRUE},
4848 {EXPAND_USER_FUNC, get_user_func_name, FALSE, TRUE},
4849 {EXPAND_EXPRESSION, get_expr_name, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850#endif
4851#ifdef FEAT_MENU
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004852 {EXPAND_MENUS, get_menu_name, FALSE, TRUE},
4853 {EXPAND_MENUNAMES, get_menu_names, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854#endif
4855#ifdef FEAT_SYN_HL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004856 {EXPAND_SYNTAX, get_syntax_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004857#endif
Bram Moolenaarcd9c4622013-06-08 15:24:48 +02004858#ifdef FEAT_PROFILE
4859 {EXPAND_SYNTIME, get_syntime_arg, TRUE, TRUE},
4860#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004861 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862#ifdef FEAT_AUTOCMD
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004863 {EXPAND_EVENTS, get_event_name, TRUE, TRUE},
4864 {EXPAND_AUGROUP, get_augroup_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865#endif
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004866#ifdef FEAT_CSCOPE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004867 {EXPAND_CSCOPE, get_cscope_name, TRUE, TRUE},
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004868#endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004869#ifdef FEAT_SIGNS
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004870 {EXPAND_SIGN, get_sign_name, TRUE, TRUE},
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004871#endif
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004872#ifdef FEAT_PROFILE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004873 {EXPAND_PROFILE, get_profile_name, TRUE, TRUE},
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004874#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
4876 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004877 {EXPAND_LANGUAGE, get_lang_arg, TRUE, FALSE},
4878 {EXPAND_LOCALES, get_locales, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004880 {EXPAND_ENV_VARS, get_env_name, TRUE, TRUE},
Bram Moolenaar24305862012-08-15 14:05:05 +02004881 {EXPAND_USER, get_users, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004882 };
4883 int i;
4884
4885 /*
4886 * Find a context in the table and call the ExpandGeneric() with the
4887 * right function to do the expansion.
4888 */
4889 ret = FAIL;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00004890 for (i = 0; i < (int)(sizeof(tab) / sizeof(struct expgen)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004891 if (xp->xp_context == tab[i].context)
4892 {
4893 if (tab[i].ic)
4894 regmatch.rm_ic = TRUE;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004895 ret = ExpandGeneric(xp, &regmatch, num_file, file,
Bram Moolenaare79abdd2012-06-29 13:44:41 +02004896 tab[i].func, tab[i].escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897 break;
4898 }
4899 }
4900
Bram Moolenaar473de612013-06-08 18:19:48 +02004901 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902
4903 return ret;
4904#endif /* FEAT_CMDL_COMPL */
4905}
4906
4907#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4908/*
4909 * Expand a list of names.
4910 *
4911 * Generic function for command line completion. It calls a function to
4912 * obtain strings, one by one. The strings are matched against a regexp
4913 * program. Matching strings are copied into an array, which is returned.
4914 *
4915 * Returns OK when no problems encountered, FAIL for error (out of memory).
4916 */
4917 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004918ExpandGeneric(
4919 expand_T *xp,
4920 regmatch_T *regmatch,
4921 int *num_file,
4922 char_u ***file,
4923 char_u *((*func)(expand_T *, int)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924 /* returns a string from the list */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004925 int escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926{
4927 int i;
4928 int count = 0;
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004929 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930 char_u *str;
4931
4932 /* do this loop twice:
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004933 * round == 0: count the number of matching names
4934 * round == 1: copy the matching names into allocated memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004936 for (round = 0; round <= 1; ++round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 {
4938 for (i = 0; ; ++i)
4939 {
4940 str = (*func)(xp, i);
4941 if (str == NULL) /* end of list */
4942 break;
4943 if (*str == NUL) /* skip empty strings */
4944 continue;
4945
4946 if (vim_regexec(regmatch, str, (colnr_T)0))
4947 {
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004948 if (round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004950 if (escaped)
4951 str = vim_strsave_escaped(str, (char_u *)" \t\\.");
4952 else
4953 str = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 (*file)[count] = str;
4955#ifdef FEAT_MENU
4956 if (func == get_menu_names && str != NULL)
4957 {
4958 /* test for separator added by get_menu_names() */
4959 str += STRLEN(str) - 1;
4960 if (*str == '\001')
4961 *str = '.';
4962 }
4963#endif
4964 }
4965 ++count;
4966 }
4967 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004968 if (round == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 {
4970 if (count == 0)
4971 return OK;
4972 *num_file = count;
4973 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
4974 if (*file == NULL)
4975 {
4976 *file = (char_u **)"";
4977 return FAIL;
4978 }
4979 count = 0;
4980 }
4981 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004982
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004983 /* Sort the results. Keep menu's in the specified order. */
4984 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02004985 {
4986 if (xp->xp_context == EXPAND_EXPRESSION
4987 || xp->xp_context == EXPAND_FUNCTIONS
4988 || xp->xp_context == EXPAND_USER_FUNC)
4989 /* <SNR> functions should be sorted to the end. */
4990 qsort((void *)*file, (size_t)*num_file, sizeof(char_u *),
4991 sort_func_compare);
4992 else
4993 sort_strings(*file, *num_file);
4994 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004995
Bram Moolenaar4f688582007-07-24 12:34:30 +00004996#ifdef FEAT_CMDL_COMPL
4997 /* Reset the variables used for special highlight names expansion, so that
4998 * they don't show up when getting normal highlight names by ID. */
4999 reset_expand_highlight();
5000#endif
5001
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 return OK;
5003}
5004
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005005/*
5006 * Complete a shell command.
5007 * Returns FAIL or OK;
5008 */
5009 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005010expand_shellcmd(
5011 char_u *filepat, /* pattern to match with command names */
5012 int *num_file, /* return: number of matches */
5013 char_u ***file, /* return: array with matches */
5014 int flagsarg) /* EW_ flags */
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005015{
5016 char_u *pat;
5017 int i;
5018 char_u *path;
5019 int mustfree = FALSE;
5020 garray_T ga;
5021 char_u *buf = alloc(MAXPATHL);
5022 size_t l;
5023 char_u *s, *e;
5024 int flags = flagsarg;
5025 int ret;
Bram Moolenaarb5971142015-03-21 17:32:19 +01005026 int did_curdir = FALSE;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005027
5028 if (buf == NULL)
5029 return FAIL;
5030
5031 /* for ":set path=" and ":set tags=" halve backslashes for escaped
5032 * space */
5033 pat = vim_strsave(filepat);
5034 for (i = 0; pat[i]; ++i)
5035 if (pat[i] == '\\' && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00005036 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005037
Bram Moolenaarb5971142015-03-21 17:32:19 +01005038 flags |= EW_FILE | EW_EXEC | EW_SHELLCMD;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005039
5040 /* For an absolute name we don't use $PATH. */
Bram Moolenaar68c31742006-09-02 15:54:18 +00005041 if (mch_isFullName(pat))
5042 path = (char_u *)" ";
5043 else if ((pat[0] == '.' && (vim_ispathsep(pat[1])
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005044 || (pat[1] == '.' && vim_ispathsep(pat[2])))))
5045 path = (char_u *)".";
5046 else
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01005047 {
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005048 path = vim_getenv((char_u *)"PATH", &mustfree);
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01005049 if (path == NULL)
5050 path = (char_u *)"";
5051 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005052
5053 /*
5054 * Go over all directories in $PATH. Expand matches in that directory and
Bram Moolenaarb5971142015-03-21 17:32:19 +01005055 * collect them in "ga". When "." is not in $PATH also expand for the
5056 * current directory, to find "subdir/cmd".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005057 */
5058 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaarb5971142015-03-21 17:32:19 +01005059 for (s = path; ; s = e)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005060 {
Bram Moolenaarb5971142015-03-21 17:32:19 +01005061 if (*s == NUL)
5062 {
5063 if (did_curdir)
5064 break;
5065 /* Find directories in the current directory, path is empty. */
5066 did_curdir = TRUE;
5067 }
5068 else if (*s == '.')
5069 did_curdir = TRUE;
5070
Bram Moolenaar68c31742006-09-02 15:54:18 +00005071 if (*s == ' ')
5072 ++s; /* Skip space used for absolute path name. */
5073
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005074#if defined(MSWIN)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005075 e = vim_strchr(s, ';');
5076#else
5077 e = vim_strchr(s, ':');
5078#endif
5079 if (e == NULL)
5080 e = s + STRLEN(s);
5081
5082 l = e - s;
5083 if (l > MAXPATHL - 5)
5084 break;
5085 vim_strncpy(buf, s, l);
5086 add_pathsep(buf);
5087 l = STRLEN(buf);
5088 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l);
5089
5090 /* Expand matches in one directory of $PATH. */
5091 ret = expand_wildcards(1, &buf, num_file, file, flags);
5092 if (ret == OK)
5093 {
5094 if (ga_grow(&ga, *num_file) == FAIL)
5095 FreeWild(*num_file, *file);
5096 else
5097 {
5098 for (i = 0; i < *num_file; ++i)
5099 {
5100 s = (*file)[i];
5101 if (STRLEN(s) > l)
5102 {
5103 /* Remove the path again. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00005104 STRMOVE(s, s + l);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005105 ((char_u **)ga.ga_data)[ga.ga_len++] = s;
5106 }
5107 else
5108 vim_free(s);
5109 }
5110 vim_free(*file);
5111 }
5112 }
5113 if (*e != NUL)
5114 ++e;
5115 }
5116 *file = ga.ga_data;
5117 *num_file = ga.ga_len;
5118
5119 vim_free(buf);
5120 vim_free(pat);
5121 if (mustfree)
5122 vim_free(path);
5123 return OK;
5124}
5125
5126
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaard25c16e2016-01-29 22:13:30 +01005128static 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 +00005129
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130/*
Bram Moolenaar21669c02008-01-18 12:16:16 +00005131 * Call "user_expand_func()" to invoke a user defined VimL function and return
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005132 * the result (either a string or a List).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133 */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005134 static void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005135call_user_expand_func(
5136 void *(*user_expand_func)(char_u *, int, char_u **, int),
5137 expand_T *xp,
5138 int *num_file,
5139 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140{
Bram Moolenaar673b9a32013-06-30 22:43:27 +02005141 int keep = 0;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005142 char_u num[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143 char_u *args[3];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144 int save_current_SID = current_SID;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005145 void *ret;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005146 struct cmdline_info save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147
Bram Moolenaarb7515462013-06-29 12:58:33 +02005148 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0' || xp->xp_line == NULL)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005149 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 *num_file = 0;
5151 *file = NULL;
5152
Bram Moolenaarb7515462013-06-29 12:58:33 +02005153 if (ccline.cmdbuff != NULL)
Bram Moolenaar21669c02008-01-18 12:16:16 +00005154 {
Bram Moolenaar21669c02008-01-18 12:16:16 +00005155 keep = ccline.cmdbuff[ccline.cmdlen];
5156 ccline.cmdbuff[ccline.cmdlen] = 0;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005157 }
Bram Moolenaarb7515462013-06-29 12:58:33 +02005158
Bram Moolenaar67b891e2009-09-18 15:25:52 +00005159 args[0] = vim_strnsave(xp->xp_pattern, xp->xp_pattern_len);
Bram Moolenaarb7515462013-06-29 12:58:33 +02005160 args[1] = xp->xp_line;
5161 sprintf((char *)num, "%d", xp->xp_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005162 args[2] = num;
5163
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005164 /* Save the cmdline, we don't know what the function may do. */
5165 save_ccline = ccline;
5166 ccline.cmdbuff = NULL;
5167 ccline.cmdprompt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168 current_SID = xp->xp_scriptID;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005169
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005170 ret = user_expand_func(xp->xp_arg, 3, args, FALSE);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005171
5172 ccline = save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173 current_SID = save_current_SID;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005174 if (ccline.cmdbuff != NULL)
5175 ccline.cmdbuff[ccline.cmdlen] = keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005176
Bram Moolenaar67b891e2009-09-18 15:25:52 +00005177 vim_free(args[0]);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005178 return ret;
5179}
5180
5181/*
5182 * Expand names with a function defined by the user.
5183 */
5184 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005185ExpandUserDefined(
5186 expand_T *xp,
5187 regmatch_T *regmatch,
5188 int *num_file,
5189 char_u ***file)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005190{
5191 char_u *retstr;
5192 char_u *s;
5193 char_u *e;
5194 char_u keep;
5195 garray_T ga;
5196
5197 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file);
5198 if (retstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005199 return FAIL;
5200
5201 ga_init2(&ga, (int)sizeof(char *), 3);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005202 for (s = retstr; *s != NUL; s = e)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203 {
5204 e = vim_strchr(s, '\n');
5205 if (e == NULL)
5206 e = s + STRLEN(s);
5207 keep = *e;
5208 *e = 0;
5209
5210 if (xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0)
5211 {
5212 *e = keep;
5213 if (*e != NUL)
5214 ++e;
5215 continue;
5216 }
5217
5218 if (ga_grow(&ga, 1) == FAIL)
5219 break;
5220
5221 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s));
5222 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223
5224 *e = keep;
5225 if (*e != NUL)
5226 ++e;
5227 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005228 vim_free(retstr);
5229 *file = ga.ga_data;
5230 *num_file = ga.ga_len;
5231 return OK;
5232}
5233
5234/*
5235 * Expand names with a list returned by a function defined by the user.
5236 */
5237 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005238ExpandUserList(
5239 expand_T *xp,
5240 int *num_file,
5241 char_u ***file)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005242{
5243 list_T *retlist;
5244 listitem_T *li;
5245 garray_T ga;
5246
5247 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file);
5248 if (retlist == NULL)
5249 return FAIL;
5250
5251 ga_init2(&ga, (int)sizeof(char *), 3);
5252 /* Loop over the items in the list. */
5253 for (li = retlist->lv_first; li != NULL; li = li->li_next)
5254 {
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005255 if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL)
5256 continue; /* Skip non-string items and empty strings */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005257
5258 if (ga_grow(&ga, 1) == FAIL)
5259 break;
5260
5261 ((char_u **)ga.ga_data)[ga.ga_len] =
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005262 vim_strsave(li->li_tv.vval.v_string);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005263 ++ga.ga_len;
5264 }
5265 list_unref(retlist);
5266
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267 *file = ga.ga_data;
5268 *num_file = ga.ga_len;
5269 return OK;
5270}
5271#endif
5272
5273/*
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005274 * Expand color scheme, compiler or filetype names.
5275 * Search from 'runtimepath':
5276 * 'runtimepath'/{dirnames}/{pat}.vim
5277 * When "flags" has DIP_START: search also from 'start' of 'packpath':
5278 * 'packpath'/pack/ * /start/ * /{dirnames}/{pat}.vim
5279 * When "flags" has DIP_OPT: search also from 'opt' of 'packpath':
5280 * 'packpath'/pack/ * /opt/ * /{dirnames}/{pat}.vim
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005281 * "dirnames" is an array with one or more directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282 */
5283 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005284ExpandRTDir(
5285 char_u *pat,
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005286 int flags,
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005287 int *num_file,
5288 char_u ***file,
5289 char *dirnames[])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291 char_u *s;
5292 char_u *e;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005293 char_u *match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294 garray_T ga;
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005295 int i;
5296 int pat_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297
5298 *num_file = 0;
5299 *file = NULL;
Bram Moolenaar5cfe2d72011-07-07 15:04:52 +02005300 pat_len = (int)STRLEN(pat);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005301 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005302
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005303 for (i = 0; dirnames[i] != NULL; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304 {
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005305 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 7));
5306 if (s == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 {
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005308 ga_clear_strings(&ga);
5309 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310 }
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005311 sprintf((char *)s, "%s/%s*.vim", dirnames[i], pat);
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005312 globpath(p_rtp, s, &ga, 0);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005313 vim_free(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005315
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005316 if (flags & DIP_START) {
5317 for (i = 0; dirnames[i] != NULL; ++i)
5318 {
5319 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 22));
5320 if (s == NULL)
5321 {
5322 ga_clear_strings(&ga);
5323 return FAIL;
5324 }
5325 sprintf((char *)s, "pack/*/start/*/%s/%s*.vim", dirnames[i], pat);
5326 globpath(p_pp, s, &ga, 0);
5327 vim_free(s);
5328 }
5329 }
5330
5331 if (flags & DIP_OPT) {
5332 for (i = 0; dirnames[i] != NULL; ++i)
5333 {
5334 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 20));
5335 if (s == NULL)
5336 {
5337 ga_clear_strings(&ga);
5338 return FAIL;
5339 }
5340 sprintf((char *)s, "pack/*/opt/*/%s/%s*.vim", dirnames[i], pat);
5341 globpath(p_pp, s, &ga, 0);
5342 vim_free(s);
5343 }
5344 }
5345
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005346 for (i = 0; i < ga.ga_len; ++i)
5347 {
5348 match = ((char_u **)ga.ga_data)[i];
5349 s = match;
5350 e = s + STRLEN(s);
5351 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0)
5352 {
5353 e -= 4;
5354 for (s = e; s > match; mb_ptr_back(match, s))
5355 if (s < match || vim_ispathsep(*s))
5356 break;
5357 ++s;
5358 *e = NUL;
5359 mch_memmove(match, s, e - s + 1);
5360 }
5361 }
5362
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005363 if (ga.ga_len == 0)
Bram Moolenaare79abdd2012-06-29 13:44:41 +02005364 return FAIL;
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005365
5366 /* Sort and remove duplicates which can happen when specifying multiple
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005367 * directories in dirnames. */
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005368 remove_duplicates(&ga);
5369
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370 *file = ga.ga_data;
5371 *num_file = ga.ga_len;
5372 return OK;
5373}
5374
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01005375/*
5376 * Expand loadplugin names:
5377 * 'packpath'/pack/ * /opt/{pat}
5378 */
5379 static int
5380ExpandPackAddDir(
5381 char_u *pat,
5382 int *num_file,
5383 char_u ***file)
5384{
5385 char_u *s;
5386 char_u *e;
5387 char_u *match;
5388 garray_T ga;
5389 int i;
5390 int pat_len;
5391
5392 *num_file = 0;
5393 *file = NULL;
5394 pat_len = (int)STRLEN(pat);
5395 ga_init2(&ga, (int)sizeof(char *), 10);
5396
5397 s = alloc((unsigned)(pat_len + 26));
5398 if (s == NULL)
5399 {
5400 ga_clear_strings(&ga);
5401 return FAIL;
5402 }
5403 sprintf((char *)s, "pack/*/opt/%s*", pat);
5404 globpath(p_pp, s, &ga, 0);
5405 vim_free(s);
5406
5407 for (i = 0; i < ga.ga_len; ++i)
5408 {
5409 match = ((char_u **)ga.ga_data)[i];
5410 s = gettail(match);
5411 e = s + STRLEN(s);
5412 mch_memmove(match, s, e - s + 1);
5413 }
5414
5415 if (ga.ga_len == 0)
5416 return FAIL;
5417
5418 /* Sort and remove duplicates which can happen when specifying multiple
5419 * directories in dirnames. */
5420 remove_duplicates(&ga);
5421
5422 *file = ga.ga_data;
5423 *num_file = ga.ga_len;
5424 return OK;
5425}
5426
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427#endif
5428
5429#if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO)
5430/*
5431 * Expand "file" for all comma-separated directories in "path".
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005432 * Adds the matches to "ga". Caller must init "ga".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433 */
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005434 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005435globpath(
5436 char_u *path,
5437 char_u *file,
5438 garray_T *ga,
5439 int expand_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440{
5441 expand_T xpc;
5442 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444 int num_p;
5445 char_u **p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005446
5447 buf = alloc(MAXPATHL);
5448 if (buf == NULL)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005449 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005450
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005451 ExpandInit(&xpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005453
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454 /* Loop over all entries in {path}. */
5455 while (*path != NUL)
5456 {
5457 /* Copy one item of the path to buf[] and concatenate the file name. */
5458 copy_option_part(&path, buf, MAXPATHL, ",");
5459 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
5460 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005461# if defined(MSWIN)
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005462 /* Using the platform's path separator (\) makes vim incorrectly
5463 * treat it as an escape character, use '/' instead. */
5464 if (*buf != NUL && !after_pathsep(buf, buf + STRLEN(buf)))
5465 STRCAT(buf, "/");
5466# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467 add_pathsep(buf);
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005468# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469 STRCAT(buf, file);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005470 if (ExpandFromContext(&xpc, buf, &num_p, &p,
5471 WILD_SILENT|expand_options) != FAIL && num_p > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005472 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005473 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT|expand_options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005474
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005475 if (ga_grow(ga, num_p) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005477 for (i = 0; i < num_p; ++i)
5478 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005479 ((char_u **)ga->ga_data)[ga->ga_len] =
Bram Moolenaar7116aa02014-05-29 14:36:29 +02005480 vim_strnsave(p[i], (int)STRLEN(p[i]));
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005481 ++ga->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005484
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485 FreeWild(num_p, p);
5486 }
5487 }
5488 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489
5490 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491}
5492
5493#endif
5494
5495#if defined(FEAT_CMDHIST) || defined(PROTO)
5496
5497/*********************************
5498 * Command line history stuff *
5499 *********************************/
5500
5501/*
5502 * Translate a history character to the associated type number.
5503 */
5504 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005505hist_char2type(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506{
5507 if (c == ':')
5508 return HIST_CMD;
5509 if (c == '=')
5510 return HIST_EXPR;
5511 if (c == '@')
5512 return HIST_INPUT;
5513 if (c == '>')
5514 return HIST_DEBUG;
5515 return HIST_SEARCH; /* must be '?' or '/' */
5516}
5517
5518/*
5519 * Table of history names.
5520 * These names are used in :history and various hist...() functions.
5521 * It is sufficient to give the significant prefix of a history name.
5522 */
5523
5524static char *(history_names[]) =
5525{
5526 "cmd",
5527 "search",
5528 "expr",
5529 "input",
5530 "debug",
5531 NULL
5532};
5533
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005534#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5535/*
5536 * Function given to ExpandGeneric() to obtain the possible first
5537 * arguments of the ":history command.
5538 */
5539 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005540get_history_arg(expand_T *xp UNUSED, int idx)
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005541{
5542 static char_u compl[2] = { NUL, NUL };
5543 char *short_names = ":=@>?/";
Bram Moolenaar17bd9dc2012-05-25 11:02:41 +02005544 int short_names_count = (int)STRLEN(short_names);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005545 int history_name_count = sizeof(history_names) / sizeof(char *) - 1;
5546
5547 if (idx < short_names_count)
5548 {
5549 compl[0] = (char_u)short_names[idx];
5550 return compl;
5551 }
5552 if (idx < short_names_count + history_name_count)
5553 return (char_u *)history_names[idx - short_names_count];
5554 if (idx == short_names_count + history_name_count)
5555 return (char_u *)"all";
5556 return NULL;
5557}
5558#endif
5559
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560/*
5561 * init_history() - Initialize the command line history.
5562 * Also used to re-allocate the history when the size changes.
5563 */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00005564 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005565init_history(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566{
5567 int newlen; /* new length of history table */
5568 histentry_T *temp;
5569 int i;
5570 int j;
5571 int type;
5572
5573 /*
5574 * If size of history table changed, reallocate it
5575 */
5576 newlen = (int)p_hi;
5577 if (newlen != hislen) /* history length changed */
5578 {
5579 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */
5580 {
5581 if (newlen)
5582 {
5583 temp = (histentry_T *)lalloc(
5584 (long_u)(newlen * sizeof(histentry_T)), TRUE);
5585 if (temp == NULL) /* out of memory! */
5586 {
5587 if (type == 0) /* first one: just keep the old length */
5588 {
5589 newlen = hislen;
5590 break;
5591 }
5592 /* Already changed one table, now we can only have zero
5593 * length for all tables. */
5594 newlen = 0;
5595 type = -1;
5596 continue;
5597 }
5598 }
5599 else
5600 temp = NULL;
5601 if (newlen == 0 || temp != NULL)
5602 {
5603 if (hisidx[type] < 0) /* there are no entries yet */
5604 {
5605 for (i = 0; i < newlen; ++i)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005606 clear_hist_entry(&temp[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005607 }
5608 else if (newlen > hislen) /* array becomes bigger */
5609 {
5610 for (i = 0; i <= hisidx[type]; ++i)
5611 temp[i] = history[type][i];
5612 j = i;
5613 for ( ; i <= newlen - (hislen - hisidx[type]); ++i)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005614 clear_hist_entry(&temp[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005615 for ( ; j < hislen; ++i, ++j)
5616 temp[i] = history[type][j];
5617 }
5618 else /* array becomes smaller or 0 */
5619 {
5620 j = hisidx[type];
5621 for (i = newlen - 1; ; --i)
5622 {
5623 if (i >= 0) /* copy newest entries */
5624 temp[i] = history[type][j];
5625 else /* remove older entries */
5626 vim_free(history[type][j].hisstr);
5627 if (--j < 0)
5628 j = hislen - 1;
5629 if (j == hisidx[type])
5630 break;
5631 }
5632 hisidx[type] = newlen - 1;
5633 }
5634 vim_free(history[type]);
5635 history[type] = temp;
5636 }
5637 }
5638 hislen = newlen;
5639 }
5640}
5641
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005642 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005643clear_hist_entry(histentry_T *hisptr)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005644{
5645 hisptr->hisnum = 0;
5646 hisptr->viminfo = FALSE;
5647 hisptr->hisstr = NULL;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02005648 hisptr->time_set = 0;
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005649}
5650
Bram Moolenaar071d4272004-06-13 20:20:40 +00005651/*
5652 * Check if command line 'str' is already in history.
5653 * If 'move_to_front' is TRUE, matching entry is moved to end of history.
5654 */
5655 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005656in_history(
5657 int type,
5658 char_u *str,
5659 int move_to_front, /* Move the entry to the front if it exists */
5660 int sep,
5661 int writing) /* ignore entries read from viminfo */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005662{
5663 int i;
5664 int last_i = -1;
Bram Moolenaar4c402232011-07-27 17:58:46 +02005665 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005666
5667 if (hisidx[type] < 0)
5668 return FALSE;
5669 i = hisidx[type];
5670 do
5671 {
5672 if (history[type][i].hisstr == NULL)
5673 return FALSE;
Bram Moolenaar4c402232011-07-27 17:58:46 +02005674
5675 /* For search history, check that the separator character matches as
5676 * well. */
5677 p = history[type][i].hisstr;
5678 if (STRCMP(str, p) == 0
Bram Moolenaar07219f92013-04-14 23:19:36 +02005679 && !(writing && history[type][i].viminfo)
Bram Moolenaar4c402232011-07-27 17:58:46 +02005680 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005681 {
5682 if (!move_to_front)
5683 return TRUE;
5684 last_i = i;
5685 break;
5686 }
5687 if (--i < 0)
5688 i = hislen - 1;
5689 } while (i != hisidx[type]);
5690
5691 if (last_i >= 0)
5692 {
5693 str = history[type][i].hisstr;
5694 while (i != hisidx[type])
5695 {
5696 if (++i >= hislen)
5697 i = 0;
5698 history[type][last_i] = history[type][i];
5699 last_i = i;
5700 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005701 history[type][i].hisnum = ++hisnum[type];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005702 history[type][i].viminfo = FALSE;
5703 history[type][i].hisstr = str;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02005704 history[type][i].time_set = vim_time();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705 return TRUE;
5706 }
5707 return FALSE;
5708}
5709
5710/*
5711 * Convert history name (from table above) to its HIST_ equivalent.
5712 * When "name" is empty, return "cmd" history.
5713 * Returns -1 for unknown history name.
5714 */
5715 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005716get_histtype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005717{
5718 int i;
5719 int len = (int)STRLEN(name);
5720
5721 /* No argument: use current history. */
5722 if (len == 0)
5723 return hist_char2type(ccline.cmdfirstc);
5724
5725 for (i = 0; history_names[i] != NULL; ++i)
5726 if (STRNICMP(name, history_names[i], len) == 0)
5727 return i;
5728
5729 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL)
5730 return hist_char2type(name[0]);
5731
5732 return -1;
5733}
5734
5735static int last_maptick = -1; /* last seen maptick */
5736
5737/*
5738 * Add the given string to the given history. If the string is already in the
5739 * history then it is moved to the front. "histype" may be one of he HIST_
5740 * values.
5741 */
5742 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005743add_to_history(
5744 int histype,
5745 char_u *new_entry,
5746 int in_map, /* consider maptick when inside a mapping */
5747 int sep) /* separator character used (search hist) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005748{
5749 histentry_T *hisptr;
5750 int len;
5751
5752 if (hislen == 0) /* no history */
5753 return;
5754
Bram Moolenaara939e432013-11-09 05:30:26 +01005755 if (cmdmod.keeppatterns && histype == HIST_SEARCH)
5756 return;
5757
Bram Moolenaar071d4272004-06-13 20:20:40 +00005758 /*
5759 * Searches inside the same mapping overwrite each other, so that only
5760 * the last line is kept. Be careful not to remove a line that was moved
5761 * down, only lines that were added.
5762 */
5763 if (histype == HIST_SEARCH && in_map)
5764 {
5765 if (maptick == last_maptick)
5766 {
5767 /* Current line is from the same mapping, remove it */
5768 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];
5769 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005770 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005771 --hisnum[histype];
5772 if (--hisidx[HIST_SEARCH] < 0)
5773 hisidx[HIST_SEARCH] = hislen - 1;
5774 }
5775 last_maptick = -1;
5776 }
Bram Moolenaar07219f92013-04-14 23:19:36 +02005777 if (!in_history(histype, new_entry, TRUE, sep, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005778 {
5779 if (++hisidx[histype] == hislen)
5780 hisidx[histype] = 0;
5781 hisptr = &history[histype][hisidx[histype]];
5782 vim_free(hisptr->hisstr);
5783
5784 /* Store the separator after the NUL of the string. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005785 len = (int)STRLEN(new_entry);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786 hisptr->hisstr = vim_strnsave(new_entry, len + 2);
5787 if (hisptr->hisstr != NULL)
5788 hisptr->hisstr[len + 1] = sep;
5789
5790 hisptr->hisnum = ++hisnum[histype];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005791 hisptr->viminfo = FALSE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02005792 hisptr->time_set = vim_time();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005793 if (histype == HIST_SEARCH && in_map)
5794 last_maptick = maptick;
5795 }
5796}
5797
5798#if defined(FEAT_EVAL) || defined(PROTO)
5799
5800/*
5801 * Get identifier of newest history entry.
5802 * "histype" may be one of the HIST_ values.
5803 */
5804 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005805get_history_idx(int histype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806{
5807 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5808 || hisidx[histype] < 0)
5809 return -1;
5810
5811 return history[histype][hisidx[histype]].hisnum;
5812}
5813
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005814/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815 * Calculate history index from a number:
5816 * num > 0: seen as identifying number of a history entry
5817 * num < 0: relative position in history wrt newest entry
5818 * "histype" may be one of the HIST_ values.
5819 */
5820 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005821calc_hist_idx(int histype, int num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822{
5823 int i;
5824 histentry_T *hist;
5825 int wrapped = FALSE;
5826
5827 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5828 || (i = hisidx[histype]) < 0 || num == 0)
5829 return -1;
5830
5831 hist = history[histype];
5832 if (num > 0)
5833 {
5834 while (hist[i].hisnum > num)
5835 if (--i < 0)
5836 {
5837 if (wrapped)
5838 break;
5839 i += hislen;
5840 wrapped = TRUE;
5841 }
5842 if (hist[i].hisnum == num && hist[i].hisstr != NULL)
5843 return i;
5844 }
5845 else if (-num <= hislen)
5846 {
5847 i += num + 1;
5848 if (i < 0)
5849 i += hislen;
5850 if (hist[i].hisstr != NULL)
5851 return i;
5852 }
5853 return -1;
5854}
5855
5856/*
5857 * Get a history entry by its index.
5858 * "histype" may be one of the HIST_ values.
5859 */
5860 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005861get_history_entry(int histype, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005862{
5863 idx = calc_hist_idx(histype, idx);
5864 if (idx >= 0)
5865 return history[histype][idx].hisstr;
5866 else
5867 return (char_u *)"";
5868}
5869
5870/*
5871 * Clear all entries of a history.
5872 * "histype" may be one of the HIST_ values.
5873 */
5874 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005875clr_history(int histype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876{
5877 int i;
5878 histentry_T *hisptr;
5879
5880 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT)
5881 {
5882 hisptr = history[histype];
5883 for (i = hislen; i--;)
5884 {
5885 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005886 clear_hist_entry(hisptr);
Bram Moolenaar119d4692016-03-05 21:21:24 +01005887 hisptr++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888 }
5889 hisidx[histype] = -1; /* mark history as cleared */
5890 hisnum[histype] = 0; /* reset identifier counter */
5891 return OK;
5892 }
5893 return FAIL;
5894}
5895
5896/*
5897 * Remove all entries matching {str} from a history.
5898 * "histype" may be one of the HIST_ values.
5899 */
5900 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005901del_history_entry(int histype, char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902{
5903 regmatch_T regmatch;
5904 histentry_T *hisptr;
5905 int idx;
5906 int i;
5907 int last;
5908 int found = FALSE;
5909
5910 regmatch.regprog = NULL;
5911 regmatch.rm_ic = FALSE; /* always match case */
5912 if (hislen != 0
5913 && histype >= 0
5914 && histype < HIST_COUNT
5915 && *str != NUL
5916 && (idx = hisidx[histype]) >= 0
5917 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING))
5918 != NULL)
5919 {
5920 i = last = idx;
5921 do
5922 {
5923 hisptr = &history[histype][i];
5924 if (hisptr->hisstr == NULL)
5925 break;
5926 if (vim_regexec(&regmatch, hisptr->hisstr, (colnr_T)0))
5927 {
5928 found = TRUE;
5929 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005930 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005931 }
5932 else
5933 {
5934 if (i != last)
5935 {
5936 history[histype][last] = *hisptr;
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005937 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938 }
5939 if (--last < 0)
5940 last += hislen;
5941 }
5942 if (--i < 0)
5943 i += hislen;
5944 } while (i != idx);
5945 if (history[histype][idx].hisstr == NULL)
5946 hisidx[histype] = -1;
5947 }
Bram Moolenaar473de612013-06-08 18:19:48 +02005948 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005949 return found;
5950}
5951
5952/*
5953 * Remove an indexed entry from a history.
5954 * "histype" may be one of the HIST_ values.
5955 */
5956 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005957del_history_idx(int histype, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958{
5959 int i, j;
5960
5961 i = calc_hist_idx(histype, idx);
5962 if (i < 0)
5963 return FALSE;
5964 idx = hisidx[histype];
5965 vim_free(history[histype][i].hisstr);
5966
5967 /* When deleting the last added search string in a mapping, reset
5968 * last_maptick, so that the last added search string isn't deleted again.
5969 */
5970 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx)
5971 last_maptick = -1;
5972
5973 while (i != idx)
5974 {
5975 j = (i + 1) % hislen;
5976 history[histype][i] = history[histype][j];
5977 i = j;
5978 }
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005979 clear_hist_entry(&history[histype][i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005980 if (--i < 0)
5981 i += hislen;
5982 hisidx[histype] = i;
5983 return TRUE;
5984}
5985
5986#endif /* FEAT_EVAL */
5987
5988#if defined(FEAT_CRYPT) || defined(PROTO)
5989/*
5990 * Very specific function to remove the value in ":set key=val" from the
5991 * history.
5992 */
5993 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005994remove_key_from_history(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005995{
5996 char_u *p;
5997 int i;
5998
5999 i = hisidx[HIST_CMD];
6000 if (i < 0)
6001 return;
6002 p = history[HIST_CMD][i].hisstr;
6003 if (p != NULL)
6004 for ( ; *p; ++p)
6005 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3]))
6006 {
6007 p = vim_strchr(p + 3, '=');
6008 if (p == NULL)
6009 break;
6010 ++p;
6011 for (i = 0; p[i] && !vim_iswhite(p[i]); ++i)
6012 if (p[i] == '\\' && p[i + 1])
6013 ++i;
Bram Moolenaar446cb832008-06-24 21:56:24 +00006014 STRMOVE(p, p + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015 --p;
6016 }
6017}
6018#endif
6019
6020#endif /* FEAT_CMDHIST */
6021
Bram Moolenaar064154c2016-03-19 22:50:43 +01006022#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006023/*
6024 * Get pointer to the command line info to use. cmdline_paste() may clear
6025 * ccline and put the previous value in prev_ccline.
6026 */
6027 static struct cmdline_info *
6028get_ccline_ptr(void)
6029{
6030 if ((State & CMDLINE) == 0)
6031 return NULL;
6032 if (ccline.cmdbuff != NULL)
6033 return &ccline;
6034 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
6035 return &prev_ccline;
6036 return NULL;
6037}
Bram Moolenaar064154c2016-03-19 22:50:43 +01006038#endif
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006039
Bram Moolenaar064154c2016-03-19 22:50:43 +01006040#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006041/*
6042 * Get the current command line in allocated memory.
6043 * Only works when the command line is being edited.
6044 * Returns NULL when something is wrong.
6045 */
6046 char_u *
6047get_cmdline_str(void)
6048{
6049 struct cmdline_info *p = get_ccline_ptr();
6050
6051 if (p == NULL)
6052 return NULL;
6053 return vim_strnsave(p->cmdbuff, p->cmdlen);
6054}
6055
6056/*
6057 * Get the current command line position, counted in bytes.
6058 * Zero is the first position.
6059 * Only works when the command line is being edited.
6060 * Returns -1 when something is wrong.
6061 */
6062 int
6063get_cmdline_pos(void)
6064{
6065 struct cmdline_info *p = get_ccline_ptr();
6066
6067 if (p == NULL)
6068 return -1;
6069 return p->cmdpos;
6070}
6071
6072/*
6073 * Set the command line byte position to "pos". Zero is the first position.
6074 * Only works when the command line is being edited.
6075 * Returns 1 when failed, 0 when OK.
6076 */
6077 int
6078set_cmdline_pos(
6079 int pos)
6080{
6081 struct cmdline_info *p = get_ccline_ptr();
6082
6083 if (p == NULL)
6084 return 1;
6085
6086 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
6087 * changed the command line. */
6088 if (pos < 0)
6089 new_cmdpos = 0;
6090 else
6091 new_cmdpos = pos;
6092 return 0;
6093}
6094#endif
6095
6096#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
6097/*
6098 * Get the current command-line type.
6099 * Returns ':' or '/' or '?' or '@' or '>' or '-'
6100 * Only works when the command line is being edited.
6101 * Returns NUL when something is wrong.
6102 */
6103 int
6104get_cmdline_type(void)
6105{
6106 struct cmdline_info *p = get_ccline_ptr();
6107
6108 if (p == NULL)
6109 return NUL;
6110 if (p->cmdfirstc == NUL)
Bram Moolenaar064154c2016-03-19 22:50:43 +01006111 return
6112# ifdef FEAT_EVAL
6113 (p->input_fn) ? '@' :
6114# endif
6115 '-';
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006116 return p->cmdfirstc;
6117}
6118#endif
6119
Bram Moolenaar071d4272004-06-13 20:20:40 +00006120#if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO)
6121/*
6122 * Get indices "num1,num2" that specify a range within a list (not a range of
6123 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
6124 * Returns OK if parsed successfully, otherwise FAIL.
6125 */
6126 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006127get_list_range(char_u **str, int *num1, int *num2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006128{
6129 int len;
6130 int first = FALSE;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02006131 varnumber_T num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132
6133 *str = skipwhite(*str);
6134 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
6135 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006136 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006137 *str += len;
6138 *num1 = (int)num;
6139 first = TRUE;
6140 }
6141 *str = skipwhite(*str);
6142 if (**str == ',') /* parse "to" part of range */
6143 {
6144 *str = skipwhite(*str + 1);
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006145 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006146 if (len > 0)
6147 {
6148 *num2 = (int)num;
6149 *str = skipwhite(*str + len);
6150 }
6151 else if (!first) /* no number given at all */
6152 return FAIL;
6153 }
6154 else if (first) /* only one number given */
6155 *num2 = *num1;
6156 return OK;
6157}
6158#endif
6159
6160#if defined(FEAT_CMDHIST) || defined(PROTO)
6161/*
6162 * :history command - print a history
6163 */
6164 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006165ex_history(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006166{
6167 histentry_T *hist;
6168 int histype1 = HIST_CMD;
6169 int histype2 = HIST_CMD;
6170 int hisidx1 = 1;
6171 int hisidx2 = -1;
6172 int idx;
6173 int i, j, k;
6174 char_u *end;
6175 char_u *arg = eap->arg;
6176
6177 if (hislen == 0)
6178 {
6179 MSG(_("'history' option is zero"));
6180 return;
6181 }
6182
6183 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ','))
6184 {
6185 end = arg;
6186 while (ASCII_ISALPHA(*end)
6187 || vim_strchr((char_u *)":=@>/?", *end) != NULL)
6188 end++;
6189 i = *end;
6190 *end = NUL;
6191 histype1 = get_histtype(arg);
6192 if (histype1 == -1)
6193 {
Bram Moolenaarb9c1e962009-04-22 11:52:33 +00006194 if (STRNICMP(arg, "all", STRLEN(arg)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006195 {
6196 histype1 = 0;
6197 histype2 = HIST_COUNT-1;
6198 }
6199 else
6200 {
6201 *end = i;
6202 EMSG(_(e_trailing));
6203 return;
6204 }
6205 }
6206 else
6207 histype2 = histype1;
6208 *end = i;
6209 }
6210 else
6211 end = arg;
6212 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL)
6213 {
6214 EMSG(_(e_trailing));
6215 return;
6216 }
6217
6218 for (; !got_int && histype1 <= histype2; ++histype1)
6219 {
6220 STRCPY(IObuff, "\n # ");
6221 STRCAT(STRCAT(IObuff, history_names[histype1]), " history");
6222 MSG_PUTS_TITLE(IObuff);
6223 idx = hisidx[histype1];
6224 hist = history[histype1];
6225 j = hisidx1;
6226 k = hisidx2;
6227 if (j < 0)
6228 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum;
6229 if (k < 0)
6230 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum;
6231 if (idx >= 0 && j <= k)
6232 for (i = idx + 1; !got_int; ++i)
6233 {
6234 if (i == hislen)
6235 i = 0;
6236 if (hist[i].hisstr != NULL
6237 && hist[i].hisnum >= j && hist[i].hisnum <= k)
6238 {
6239 msg_putchar('\n');
6240 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ',
6241 hist[i].hisnum);
6242 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10)
6243 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff),
Bram Moolenaar38f5f952012-01-26 13:01:59 +01006244 (int)Columns - 10, IOSIZE - (int)STRLEN(IObuff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006245 else
6246 STRCAT(IObuff, hist[i].hisstr);
6247 msg_outtrans(IObuff);
6248 out_flush();
6249 }
6250 if (i == idx)
6251 break;
6252 }
6253 }
6254}
6255#endif
6256
6257#if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006258/*
6259 * Buffers for history read from a viminfo file. Only valid while reading.
6260 */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006261static histentry_T *viminfo_history[HIST_COUNT] =
6262 {NULL, NULL, NULL, NULL, NULL};
6263static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0, 0};
6264static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006265static int viminfo_add_at_front = FALSE;
6266
Bram Moolenaard25c16e2016-01-29 22:13:30 +01006267static int hist_type2char(int type, int use_question);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006268
6269/*
6270 * Translate a history type number to the associated character.
6271 */
6272 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006273hist_type2char(
6274 int type,
6275 int use_question) /* use '?' instead of '/' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006276{
6277 if (type == HIST_CMD)
6278 return ':';
6279 if (type == HIST_SEARCH)
6280 {
6281 if (use_question)
6282 return '?';
6283 else
6284 return '/';
6285 }
6286 if (type == HIST_EXPR)
6287 return '=';
6288 return '@';
6289}
6290
6291/*
6292 * Prepare for reading the history from the viminfo file.
6293 * This allocates history arrays to store the read history lines.
6294 */
6295 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006296prepare_viminfo_history(int asklen, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006297{
6298 int i;
6299 int num;
6300 int type;
6301 int len;
6302
6303 init_history();
Bram Moolenaar07219f92013-04-14 23:19:36 +02006304 viminfo_add_at_front = (asklen != 0 && !writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006305 if (asklen > hislen)
6306 asklen = hislen;
6307
6308 for (type = 0; type < HIST_COUNT; ++type)
6309 {
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006310 /* Count the number of empty spaces in the history list. Entries read
6311 * from viminfo previously are also considered empty. If there are
6312 * more spaces available than we request, then fill them up. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006313 for (i = 0, num = 0; i < hislen; i++)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006314 if (history[type][i].hisstr == NULL || history[type][i].viminfo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315 num++;
6316 len = asklen;
6317 if (num > len)
6318 len = num;
6319 if (len <= 0)
6320 viminfo_history[type] = NULL;
6321 else
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006322 viminfo_history[type] = (histentry_T *)lalloc(
6323 (long_u)(len * sizeof(histentry_T)), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006324 if (viminfo_history[type] == NULL)
6325 len = 0;
6326 viminfo_hislen[type] = len;
6327 viminfo_hisidx[type] = 0;
6328 }
6329}
6330
6331/*
6332 * Accept a line from the viminfo, store it in the history array when it's
6333 * new.
6334 */
6335 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006336read_viminfo_history(vir_T *virp, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006337{
6338 int type;
6339 long_u len;
6340 char_u *val;
6341 char_u *p;
6342
6343 type = hist_char2type(virp->vir_line[0]);
6344 if (viminfo_hisidx[type] < viminfo_hislen[type])
6345 {
6346 val = viminfo_readstring(virp, 1, TRUE);
6347 if (val != NULL && *val != NUL)
6348 {
Bram Moolenaard87fbc22012-02-04 22:44:32 +01006349 int sep = (*val == ' ' ? NUL : *val);
6350
Bram Moolenaar071d4272004-06-13 20:20:40 +00006351 if (!in_history(type, val + (type == HIST_SEARCH),
Bram Moolenaar07219f92013-04-14 23:19:36 +02006352 viminfo_add_at_front, sep, writing))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006353 {
6354 /* Need to re-allocate to append the separator byte. */
6355 len = STRLEN(val);
6356 p = lalloc(len + 2, TRUE);
6357 if (p != NULL)
6358 {
6359 if (type == HIST_SEARCH)
6360 {
6361 /* Search entry: Move the separator from the first
6362 * column to after the NUL. */
6363 mch_memmove(p, val + 1, (size_t)len);
Bram Moolenaard87fbc22012-02-04 22:44:32 +01006364 p[len] = sep;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006365 }
6366 else
6367 {
6368 /* Not a search entry: No separator in the viminfo
6369 * file, add a NUL separator. */
6370 mch_memmove(p, val, (size_t)len + 1);
6371 p[len + 1] = NUL;
6372 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006373 viminfo_history[type][viminfo_hisidx[type]].hisstr = p;
6374 viminfo_history[type][viminfo_hisidx[type]].time_set = 0;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006375 viminfo_history[type][viminfo_hisidx[type]].viminfo = TRUE;
6376 viminfo_history[type][viminfo_hisidx[type]].hisnum = 0;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006377 viminfo_hisidx[type]++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006378 }
6379 }
6380 }
6381 vim_free(val);
6382 }
6383 return viminfo_readline(virp);
6384}
6385
Bram Moolenaar07219f92013-04-14 23:19:36 +02006386/*
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006387 * Accept a new style history line from the viminfo, store it in the history
6388 * array when it's new.
6389 */
6390 void
6391handle_viminfo_history(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006392 garray_T *values,
6393 int writing)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006394{
6395 int type;
6396 long_u len;
6397 char_u *val;
6398 char_u *p;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006399 bval_T *vp = (bval_T *)values->ga_data;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006400
6401 /* Check the format:
6402 * |{bartype},{histtype},{timestamp},{separator},"text" */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006403 if (values->ga_len < 4
6404 || vp[0].bv_type != BVAL_NR
6405 || vp[1].bv_type != BVAL_NR
6406 || (vp[2].bv_type != BVAL_NR && vp[2].bv_type != BVAL_EMPTY)
6407 || vp[3].bv_type != BVAL_STRING)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006408 return;
6409
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006410 type = vp[0].bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006411 if (type >= HIST_COUNT)
6412 return;
6413 if (viminfo_hisidx[type] < viminfo_hislen[type])
6414 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006415 val = vp[3].bv_string;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006416 if (val != NULL && *val != NUL)
6417 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006418 int sep = type == HIST_SEARCH && vp[2].bv_type == BVAL_NR
6419 ? vp[2].bv_nr : NUL;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006420 int idx;
6421 int overwrite = FALSE;
6422
6423 if (!in_history(type, val, viminfo_add_at_front, sep, writing))
6424 {
6425 /* If lines were written by an older Vim we need to avoid
6426 * getting duplicates. See if the entry already exists. */
6427 for (idx = 0; idx < viminfo_hisidx[type]; ++idx)
6428 {
6429 p = viminfo_history[type][idx].hisstr;
6430 if (STRCMP(val, p) == 0
6431 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1]))
6432 {
6433 overwrite = TRUE;
6434 break;
6435 }
6436 }
6437
6438 if (!overwrite)
6439 {
6440 /* Need to re-allocate to append the separator byte. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006441 len = vp[3].bv_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006442 p = lalloc(len + 2, TRUE);
6443 }
Bram Moolenaar72e697d2016-06-13 22:48:01 +02006444 else
6445 len = 0; /* for picky compilers */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006446 if (p != NULL)
6447 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006448 viminfo_history[type][idx].time_set = vp[1].bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006449 if (!overwrite)
6450 {
6451 mch_memmove(p, val, (size_t)len + 1);
6452 /* Put the separator after the NUL. */
6453 p[len + 1] = sep;
6454 viminfo_history[type][idx].hisstr = p;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006455 viminfo_history[type][idx].hisnum = 0;
6456 viminfo_history[type][idx].viminfo = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006457 viminfo_hisidx[type]++;
6458 }
6459 }
6460 }
6461 }
6462 }
6463}
6464
6465/*
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006466 * Concatenate history lines from viminfo after the lines typed in this Vim.
Bram Moolenaar07219f92013-04-14 23:19:36 +02006467 */
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006468 static void
6469concat_history(int type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006470{
6471 int idx;
6472 int i;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006473
6474 idx = hisidx[type] + viminfo_hisidx[type];
6475 if (idx >= hislen)
6476 idx -= hislen;
6477 else if (idx < 0)
6478 idx = hislen - 1;
6479 if (viminfo_add_at_front)
6480 hisidx[type] = idx;
6481 else
6482 {
6483 if (hisidx[type] == -1)
6484 hisidx[type] = hislen - 1;
6485 do
6486 {
6487 if (history[type][idx].hisstr != NULL
6488 || history[type][idx].viminfo)
6489 break;
6490 if (++idx == hislen)
6491 idx = 0;
6492 } while (idx != hisidx[type]);
6493 if (idx != hisidx[type] && --idx < 0)
6494 idx = hislen - 1;
6495 }
6496 for (i = 0; i < viminfo_hisidx[type]; i++)
6497 {
6498 vim_free(history[type][idx].hisstr);
6499 history[type][idx].hisstr = viminfo_history[type][i].hisstr;
6500 history[type][idx].viminfo = TRUE;
6501 history[type][idx].time_set = viminfo_history[type][i].time_set;
6502 if (--idx < 0)
6503 idx = hislen - 1;
6504 }
6505 idx += 1;
6506 idx %= hislen;
6507 for (i = 0; i < viminfo_hisidx[type]; i++)
6508 {
6509 history[type][idx++].hisnum = ++hisnum[type];
6510 idx %= hislen;
6511 }
6512}
6513
6514#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6515 static int
6516#ifdef __BORLANDC__
6517_RTLENTRYF
6518#endif
6519sort_hist(const void *s1, const void *s2)
6520{
6521 histentry_T *p1 = *(histentry_T **)s1;
6522 histentry_T *p2 = *(histentry_T **)s2;
6523
6524 if (p1->time_set < p2->time_set) return -1;
6525 if (p1->time_set > p2->time_set) return 1;
6526 return 0;
6527}
6528#endif
6529
6530/*
6531 * Merge history lines from viminfo and lines typed in this Vim based on the
6532 * timestamp;
6533 */
6534 static void
6535merge_history(int type)
6536{
6537 int max_len;
6538 histentry_T **tot_hist;
6539 histentry_T *new_hist;
6540 int i;
6541 int len;
6542
6543 /* Make one long list with all entries. */
6544 max_len = hislen + viminfo_hisidx[type];
6545 tot_hist = (histentry_T **)alloc(max_len * (int)sizeof(histentry_T *));
6546 new_hist = (histentry_T *)alloc(hislen * (int)sizeof(histentry_T));
6547 if (tot_hist == NULL || new_hist == NULL)
6548 {
6549 vim_free(tot_hist);
6550 vim_free(new_hist);
6551 return;
6552 }
6553 for (i = 0; i < viminfo_hisidx[type]; i++)
6554 tot_hist[i] = &viminfo_history[type][i];
6555 len = i;
6556 for (i = 0; i < hislen; i++)
6557 if (history[type][i].hisstr != NULL)
6558 tot_hist[len++] = &history[type][i];
6559
6560 /* Sort the list on timestamp. */
6561 qsort((void *)tot_hist, (size_t)len, sizeof(histentry_T *), sort_hist);
6562
6563 /* Keep the newest ones. */
6564 for (i = 0; i < hislen; i++)
6565 {
6566 if (i < len)
6567 {
6568 new_hist[i] = *tot_hist[i];
6569 tot_hist[i]->hisstr = NULL;
6570 if (new_hist[i].hisnum == 0)
6571 new_hist[i].hisnum = ++hisnum[type];
6572 }
6573 else
6574 clear_hist_entry(&new_hist[i]);
6575 }
Bram Moolenaara890f5e2016-06-12 23:03:19 +02006576 hisidx[type] = (i < len ? i : len) - 1;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006577
6578 /* Free what is not kept. */
6579 for (i = 0; i < viminfo_hisidx[type]; i++)
6580 vim_free(viminfo_history[type][i].hisstr);
6581 for (i = 0; i < hislen; i++)
6582 vim_free(history[type][i].hisstr);
6583 vim_free(history[type]);
6584 history[type] = new_hist;
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02006585 vim_free(tot_hist);
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006586}
6587
6588/*
6589 * Finish reading history lines from viminfo. Not used when writing viminfo.
6590 */
6591 void
6592finish_viminfo_history(vir_T *virp)
6593{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006594 int type;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006595 int merge = virp->vir_version >= VIMINFO_VERSION_WITH_HISTORY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006596
6597 for (type = 0; type < HIST_COUNT; ++type)
6598 {
6599 if (history[type] == NULL)
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006600 continue;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006601
6602 if (merge)
6603 merge_history(type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006604 else
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006605 concat_history(type);
6606
Bram Moolenaar071d4272004-06-13 20:20:40 +00006607 vim_free(viminfo_history[type]);
6608 viminfo_history[type] = NULL;
Bram Moolenaarf687cf32013-04-24 15:39:11 +02006609 viminfo_hisidx[type] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006610 }
6611}
6612
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006613/*
6614 * Write history to viminfo file in "fp".
6615 * When "merge" is TRUE merge history lines with a previously read viminfo
6616 * file, data is in viminfo_history[].
6617 * When "merge" is FALSE just write all history lines. Used for ":wviminfo!".
6618 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619 void
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006620write_viminfo_history(FILE *fp, int merge)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006621{
6622 int i;
6623 int type;
6624 int num_saved;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006625 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006626
6627 init_history();
6628 if (hislen == 0)
6629 return;
6630 for (type = 0; type < HIST_COUNT; ++type)
6631 {
6632 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE));
6633 if (num_saved == 0)
6634 continue;
6635 if (num_saved < 0) /* Use default */
6636 num_saved = hislen;
6637 fprintf(fp, _("\n# %s History (newest to oldest):\n"),
6638 type == HIST_CMD ? _("Command Line") :
6639 type == HIST_SEARCH ? _("Search String") :
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006640 type == HIST_EXPR ? _("Expression") :
6641 type == HIST_INPUT ? _("Input Line") :
6642 _("Debug Line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006643 if (num_saved > hislen)
6644 num_saved = hislen;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006645
6646 /*
6647 * Merge typed and viminfo history:
6648 * round 1: history of typed commands.
6649 * round 2: history from recently read viminfo.
6650 */
6651 for (round = 1; round <= 2; ++round)
6652 {
Bram Moolenaara8565fe2013-04-15 16:14:22 +02006653 if (round == 1)
6654 /* start at newest entry, somewhere in the list */
6655 i = hisidx[type];
6656 else if (viminfo_hisidx[type] > 0)
6657 /* start at newest entry, first in the list */
6658 i = 0;
6659 else
6660 /* empty list */
6661 i = -1;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006662 if (i >= 0)
6663 while (num_saved > 0
6664 && !(round == 2 && i >= viminfo_hisidx[type]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006665 {
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006666 char_u *p;
6667 time_t timestamp;
6668 int c = NUL;
6669
6670 if (round == 1)
6671 {
6672 p = history[type][i].hisstr;
6673 timestamp = history[type][i].time_set;
6674 }
6675 else
6676 {
6677 p = viminfo_history[type] == NULL ? NULL
6678 : viminfo_history[type][i].hisstr;
6679 timestamp = viminfo_history[type] == NULL ? 0
6680 : viminfo_history[type][i].time_set;
6681 }
6682
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006683 if (p != NULL && (round == 2
6684 || !merge
6685 || !history[type][i].viminfo))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006686 {
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006687 --num_saved;
6688 fputc(hist_type2char(type, TRUE), fp);
6689 /* For the search history: put the separator in the
6690 * second column; use a space if there isn't one. */
6691 if (type == HIST_SEARCH)
6692 {
6693 c = p[STRLEN(p) + 1];
6694 putc(c == NUL ? ' ' : c, fp);
6695 }
6696 viminfo_writestring(fp, p);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006697
6698 {
6699 char cbuf[NUMBUFLEN];
6700
6701 /* New style history with a bar line. Format:
6702 * |{bartype},{histtype},{timestamp},{separator},"text" */
6703 if (c == NUL)
6704 cbuf[0] = NUL;
6705 else
6706 sprintf(cbuf, "%d", c);
6707 fprintf(fp, "|%d,%d,%ld,%s,", BARTYPE_HISTORY,
6708 type, (long)timestamp, cbuf);
6709 barline_writestring(fp, p, LSIZE - 20);
6710 putc('\n', fp);
6711 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006712 }
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006713 if (round == 1)
6714 {
6715 /* Decrement index, loop around and stop when back at
6716 * the start. */
6717 if (--i < 0)
6718 i = hislen - 1;
6719 if (i == hisidx[type])
6720 break;
6721 }
6722 else
6723 {
6724 /* Increment index. Stop at the end in the while. */
6725 ++i;
6726 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006727 }
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006728 }
Bram Moolenaar07219f92013-04-14 23:19:36 +02006729 for (i = 0; i < viminfo_hisidx[type]; ++i)
Bram Moolenaarf687cf32013-04-24 15:39:11 +02006730 if (viminfo_history[type] != NULL)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006731 vim_free(viminfo_history[type][i].hisstr);
Bram Moolenaar07219f92013-04-14 23:19:36 +02006732 vim_free(viminfo_history[type]);
6733 viminfo_history[type] = NULL;
Bram Moolenaarb70a4732013-04-15 22:22:57 +02006734 viminfo_hisidx[type] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006735 }
6736}
6737#endif /* FEAT_VIMINFO */
6738
6739#if defined(FEAT_FKMAP) || defined(PROTO)
6740/*
6741 * Write a character at the current cursor+offset position.
6742 * It is directly written into the command buffer block.
6743 */
6744 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006745cmd_pchar(int c, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746{
6747 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6748 {
6749 EMSG(_("E198: cmd_pchar beyond the command length"));
6750 return;
6751 }
6752 ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c;
6753 ccline.cmdbuff[ccline.cmdlen] = NUL;
6754}
6755
6756 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006757cmd_gchar(int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006758{
6759 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6760 {
6761 /* EMSG(_("cmd_gchar beyond the command length")); */
6762 return NUL;
6763 }
6764 return (int)ccline.cmdbuff[ccline.cmdpos + offset];
6765}
6766#endif
6767
6768#if defined(FEAT_CMDWIN) || defined(PROTO)
6769/*
6770 * Open a window on the current command line and history. Allow editing in
6771 * the window. Returns when the window is closed.
6772 * Returns:
6773 * CR if the command is to be executed
6774 * Ctrl_C if it is to be abandoned
6775 * K_IGNORE if editing continues
6776 */
6777 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006778ex_window(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006779{
6780 struct cmdline_info save_ccline;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006781 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006782 win_T *old_curwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006783 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006784 win_T *wp;
6785 int i;
6786 linenr_T lnum;
6787 int histtype;
6788 garray_T winsizes;
Bram Moolenaar7693ec62008-07-24 18:29:37 +00006789#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006790 char_u typestr[2];
Bram Moolenaar7693ec62008-07-24 18:29:37 +00006791#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006792 int save_restart_edit = restart_edit;
6793 int save_State = State;
6794 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00006795#ifdef FEAT_RIGHTLEFT
6796 int save_cmdmsg_rl = cmdmsg_rl;
6797#endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006798#ifdef FEAT_FOLDING
6799 int save_KeyTyped;
6800#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006801
6802 /* Can't do this recursively. Can't do it when typing a password. */
6803 if (cmdwin_type != 0
6804# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
6805 || cmdline_star > 0
6806# endif
6807 )
6808 {
6809 beep_flush();
6810 return K_IGNORE;
6811 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006812 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006813
6814 /* Save current window sizes. */
6815 win_size_save(&winsizes);
6816
6817# ifdef FEAT_AUTOCMD
6818 /* Don't execute autocommands while creating the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006819 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006820# endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00006821 /* don't use a new tab page */
6822 cmdmod.tab = 0;
6823
Bram Moolenaar071d4272004-06-13 20:20:40 +00006824 /* Create a window for the command-line buffer. */
6825 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
6826 {
6827 beep_flush();
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006828# ifdef FEAT_AUTOCMD
6829 unblock_autocmds();
6830# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006831 return K_IGNORE;
6832 }
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006833 cmdwin_type = get_cmdline_type();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006834
6835 /* Create the command-line buffer empty. */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006836 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL);
Bram Moolenaar446cb832008-06-24 21:56:24 +00006837 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006838 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
6839 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
6840 curbuf->b_p_ma = TRUE;
Bram Moolenaar876f6d72009-04-29 10:05:51 +00006841#ifdef FEAT_FOLDING
6842 curwin->w_p_fen = FALSE;
6843#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006844# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00006845 curwin->w_p_rl = cmdmsg_rl;
6846 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006847# endif
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006848 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006849
6850# ifdef FEAT_AUTOCMD
6851 /* Do execute autocommands for setting the filetype (load syntax). */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006852 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006853# endif
6854
Bram Moolenaar46152342005-09-07 21:18:43 +00006855 /* Showing the prompt may have set need_wait_return, reset it. */
6856 need_wait_return = FALSE;
6857
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006858 histtype = hist_char2type(cmdwin_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006859 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
6860 {
6861 if (p_wc == TAB)
6862 {
6863 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
6864 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
6865 }
6866 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
6867 }
6868
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006869 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
6870 * sets 'textwidth' to 78). */
6871 curbuf->b_p_tw = 0;
6872
Bram Moolenaar071d4272004-06-13 20:20:40 +00006873 /* Fill the buffer with the history. */
6874 init_history();
6875 if (hislen > 0)
6876 {
6877 i = hisidx[histtype];
6878 if (i >= 0)
6879 {
6880 lnum = 0;
6881 do
6882 {
6883 if (++i == hislen)
6884 i = 0;
6885 if (history[histtype][i].hisstr != NULL)
6886 ml_append(lnum++, history[histtype][i].hisstr,
6887 (colnr_T)0, FALSE);
6888 }
6889 while (i != hisidx[histtype]);
6890 }
6891 }
6892
6893 /* Replace the empty last line with the current command-line and put the
6894 * cursor there. */
6895 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
6896 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6897 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00006898 changed_line_abv_curs();
6899 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00006900 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006901
6902 /* Save the command line info, can be used recursively. */
6903 save_ccline = ccline;
6904 ccline.cmdbuff = NULL;
6905 ccline.cmdprompt = NULL;
6906
6907 /* No Ex mode here! */
6908 exmode_active = 0;
6909
6910 State = NORMAL;
6911# ifdef FEAT_MOUSE
6912 setmouse();
6913# endif
6914
6915# ifdef FEAT_AUTOCMD
6916 /* Trigger CmdwinEnter autocommands. */
6917 typestr[0] = cmdwin_type;
6918 typestr[1] = NUL;
6919 apply_autocmds(EVENT_CMDWINENTER, typestr, typestr, FALSE, curbuf);
Bram Moolenaar5495cc92006-08-16 14:23:04 +00006920 if (restart_edit != 0) /* autocmd with ":startinsert" */
6921 stuffcharReadbuff(K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006922# endif
6923
6924 i = RedrawingDisabled;
6925 RedrawingDisabled = 0;
6926
6927 /*
6928 * Call the main loop until <CR> or CTRL-C is typed.
6929 */
6930 cmdwin_result = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00006931 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006932
6933 RedrawingDisabled = i;
6934
6935# ifdef FEAT_AUTOCMD
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006936
6937# ifdef FEAT_FOLDING
6938 save_KeyTyped = KeyTyped;
6939# endif
6940
Bram Moolenaar071d4272004-06-13 20:20:40 +00006941 /* Trigger CmdwinLeave autocommands. */
6942 apply_autocmds(EVENT_CMDWINLEAVE, typestr, typestr, FALSE, curbuf);
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006943
6944# ifdef FEAT_FOLDING
6945 /* Restore KeyTyped in case it is modified by autocommands */
6946 KeyTyped = save_KeyTyped;
6947# endif
6948
Bram Moolenaar071d4272004-06-13 20:20:40 +00006949# endif
6950
Bram Moolenaarccc18222007-05-10 18:25:20 +00006951 /* Restore the command line info. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006952 ccline = save_ccline;
6953 cmdwin_type = 0;
6954
6955 exmode_active = save_exmode;
6956
Bram Moolenaarf9821062008-06-20 16:31:07 +00006957 /* Safety check: The old window or buffer was deleted: It's a bug when
Bram Moolenaar071d4272004-06-13 20:20:40 +00006958 * this happens! */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006959 if (!win_valid(old_curwin) || !bufref_valid(&old_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006960 {
6961 cmdwin_result = Ctrl_C;
6962 EMSG(_("E199: Active window or buffer deleted"));
6963 }
6964 else
6965 {
6966# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
6967 /* autocmds may abort script processing */
6968 if (aborting() && cmdwin_result != K_IGNORE)
6969 cmdwin_result = Ctrl_C;
6970# endif
6971 /* Set the new command line from the cmdline buffer. */
6972 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00006973 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006974 {
Bram Moolenaar46152342005-09-07 21:18:43 +00006975 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
6976
6977 if (histtype == HIST_CMD)
6978 {
6979 /* Execute the command directly. */
6980 ccline.cmdbuff = vim_strsave((char_u *)p);
6981 cmdwin_result = CAR;
6982 }
6983 else
6984 {
6985 /* First need to cancel what we were doing. */
6986 ccline.cmdbuff = NULL;
6987 stuffcharReadbuff(':');
6988 stuffReadbuff((char_u *)p);
6989 stuffcharReadbuff(CAR);
6990 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006991 }
6992 else if (cmdwin_result == K_XF2) /* :qa typed */
6993 {
6994 ccline.cmdbuff = vim_strsave((char_u *)"qa");
6995 cmdwin_result = CAR;
6996 }
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02006997 else if (cmdwin_result == Ctrl_C)
6998 {
6999 /* :q or :close, don't execute any command
7000 * and don't modify the cmd window. */
7001 ccline.cmdbuff = NULL;
7002 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007003 else
7004 ccline.cmdbuff = vim_strsave(ml_get_curline());
7005 if (ccline.cmdbuff == NULL)
7006 cmdwin_result = Ctrl_C;
7007 else
7008 {
7009 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
7010 ccline.cmdbufflen = ccline.cmdlen + 1;
7011 ccline.cmdpos = curwin->w_cursor.col;
7012 if (ccline.cmdpos > ccline.cmdlen)
7013 ccline.cmdpos = ccline.cmdlen;
7014 if (cmdwin_result == K_IGNORE)
7015 {
7016 set_cmdspos_cursor();
7017 redrawcmd();
7018 }
7019 }
7020
7021# ifdef FEAT_AUTOCMD
7022 /* Don't execute autocommands while deleting the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007023 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007024# endif
Bram Moolenaarfa67fbe2015-06-25 18:20:36 +02007025# ifdef FEAT_CONCEAL
7026 /* Avoid command-line window first character being concealed. */
7027 curwin->w_p_cole = 0;
7028# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007029 wp = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007030 set_bufref(&bufref, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007031 win_goto(old_curwin);
7032 win_close(wp, TRUE);
Bram Moolenaar8006d692010-03-02 17:23:21 +01007033
7034 /* win_close() may have already wiped the buffer when 'bh' is
7035 * set to 'wipe' */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007036 if (bufref_valid(&bufref))
7037 close_buffer(NULL, bufref.br_buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007038
7039 /* Restore window sizes. */
7040 win_size_restore(&winsizes);
7041
7042# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007043 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007044# endif
7045 }
7046
7047 ga_clear(&winsizes);
7048 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00007049# ifdef FEAT_RIGHTLEFT
7050 cmdmsg_rl = save_cmdmsg_rl;
7051# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007052
7053 State = save_State;
7054# ifdef FEAT_MOUSE
7055 setmouse();
7056# endif
7057
7058 return cmdwin_result;
7059}
7060#endif /* FEAT_CMDWIN */
7061
7062/*
7063 * Used for commands that either take a simple command string argument, or:
7064 * cmd << endmarker
7065 * {script}
7066 * endmarker
7067 * Returns a pointer to allocated memory with {script} or NULL.
7068 */
7069 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007070script_get(exarg_T *eap, char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007071{
7072 char_u *theline;
7073 char *end_pattern = NULL;
7074 char dot[] = ".";
7075 garray_T ga;
7076
7077 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
7078 return NULL;
7079
7080 ga_init2(&ga, 1, 0x400);
7081
7082 if (cmd[2] != NUL)
7083 end_pattern = (char *)skipwhite(cmd + 2);
7084 else
7085 end_pattern = dot;
7086
7087 for (;;)
7088 {
7089 theline = eap->getline(
7090#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00007091 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00007092#endif
7093 NUL, eap->cookie, 0);
7094
7095 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
Bram Moolenaarbe555e72008-08-06 12:19:26 +00007096 {
7097 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007098 break;
Bram Moolenaarbe555e72008-08-06 12:19:26 +00007099 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007100
7101 ga_concat(&ga, theline);
7102 ga_append(&ga, '\n');
7103 vim_free(theline);
7104 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00007105 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007106
7107 return (char_u *)ga.ga_data;
7108}
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02007109
7110#ifdef FEAT_SEARCH_EXTRA
7111 static void
7112set_search_match(pos_T *t)
7113{
7114 /*
7115 * First move cursor to end of match, then to the start. This
7116 * moves the whole match onto the screen when 'nowrap' is set.
7117 */
7118 t->lnum += search_match_lines;
7119 t->col = search_match_endcol;
7120 if (t->lnum > curbuf->b_ml.ml_line_count)
7121 {
7122 t->lnum = curbuf->b_ml.ml_line_count;
7123 coladvance((colnr_T)MAXCOL);
7124 }
7125}
7126#endif