blob: c498e00a123f985fc9b0563b36adee7338ada303 [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 Moolenaar4d850512017-02-09 18:25:14 +0100215#if defined(FEAT_WILDMENU) || defined(FEAT_EVAL) || defined(FEAT_SEARCH_EXTRA)
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000216 /* 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
Bram Moolenaarabbc4482017-01-24 15:57:55 +01001796 case K_PS:
1797 bracketed_paste(PASTE_CMDLINE, FALSE, NULL);
1798 goto cmdline_changed;
1799
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 default:
1801#ifdef UNIX
1802 if (c == intr_char)
1803 {
1804 gotesc = TRUE; /* will free ccline.cmdbuff after
1805 putting it in history */
1806 goto returncmd; /* back to Normal mode */
1807 }
1808#endif
1809 /*
1810 * Normal character with no special meaning. Just set mod_mask
1811 * to 0x0 so that typing Shift-Space in the GUI doesn't enter
1812 * the string <S-Space>. This should only happen after ^V.
1813 */
1814 if (!IS_SPECIAL(c))
1815 mod_mask = 0x0;
1816 break;
1817 }
1818 /*
1819 * End of switch on command line character.
1820 * We come here if we have a normal character.
1821 */
1822
Bram Moolenaarede3e632013-06-23 16:16:19 +02001823 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && (ccheck_abbr(
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824#ifdef FEAT_MBYTE
1825 /* Add ABBR_OFF for characters above 0x100, this is
1826 * what check_abbr() expects. */
1827 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
1828#endif
Bram Moolenaarede3e632013-06-23 16:16:19 +02001829 c) || c == Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 goto cmdline_changed;
1831
1832 /*
1833 * put the character in the command line
1834 */
1835 if (IS_SPECIAL(c) || mod_mask != 0)
1836 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE);
1837 else
1838 {
1839#ifdef FEAT_MBYTE
1840 if (has_mbyte)
1841 {
1842 j = (*mb_char2bytes)(c, IObuff);
1843 IObuff[j] = NUL; /* exclude composing chars */
1844 put_on_cmdline(IObuff, j, TRUE);
1845 }
1846 else
1847#endif
1848 {
1849 IObuff[0] = c;
1850 put_on_cmdline(IObuff, 1, TRUE);
1851 }
1852 }
1853 goto cmdline_changed;
1854
1855/*
1856 * This part implements incremental searches for "/" and "?"
1857 * Jump to cmdline_not_changed when a character has been read but the command
1858 * line did not change. Then we only search and redraw if something changed in
1859 * the past.
1860 * Jump to cmdline_changed when the command line did change.
1861 * (Sorry for the goto's, I know it is ugly).
1862 */
1863cmdline_not_changed:
1864#ifdef FEAT_SEARCH_EXTRA
1865 if (!incsearch_postponed)
1866 continue;
1867#endif
1868
1869cmdline_changed:
1870#ifdef FEAT_SEARCH_EXTRA
1871 /*
1872 * 'incsearch' highlighting.
1873 */
1874 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
1875 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001876 pos_T end_pos;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001877#ifdef FEAT_RELTIME
1878 proftime_T tm;
1879#endif
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001880
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881 /* if there is a character waiting, search and redraw later */
1882 if (char_avail())
1883 {
1884 incsearch_postponed = TRUE;
1885 continue;
1886 }
1887 incsearch_postponed = FALSE;
Bram Moolenaardda933d2016-09-03 21:04:58 +02001888 curwin->w_cursor = search_start; /* start at old position */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889
1890 /* If there is no command line, don't do anything */
1891 if (ccline.cmdlen == 0)
1892 i = 0;
1893 else
1894 {
1895 cursor_off(); /* so the user knows we're busy */
1896 out_flush();
1897 ++emsg_off; /* So it doesn't beep if bad expr */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001898#ifdef FEAT_RELTIME
1899 /* Set the time limit to half a second. */
1900 profile_setlimit(500L, &tm);
1901#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 i = do_search(NULL, firstc, ccline.cmdbuff, count,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001903 SEARCH_KEEP + SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK,
1904#ifdef FEAT_RELTIME
1905 &tm
1906#else
1907 NULL
1908#endif
1909 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 --emsg_off;
1911 /* if interrupted while searching, behave like it failed */
1912 if (got_int)
1913 {
1914 (void)vpeekc(); /* remove <C-C> from input stream */
1915 got_int = FALSE; /* don't abandon the command line */
1916 i = 0;
1917 }
1918 else if (char_avail())
1919 /* cancelled searching because a char was typed */
1920 incsearch_postponed = TRUE;
1921 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001922 if (i != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 highlight_match = TRUE; /* highlight position */
1924 else
1925 highlight_match = FALSE; /* remove highlight */
1926
1927 /* first restore the old curwin values, so the screen is
1928 * positioned in the same way as the actual search command */
1929 curwin->w_leftcol = old_leftcol;
1930 curwin->w_topline = old_topline;
1931# ifdef FEAT_DIFF
1932 curwin->w_topfill = old_topfill;
1933# endif
1934 curwin->w_botline = old_botline;
1935 changed_cline_bef_curs();
1936 update_topline();
1937
1938 if (i != 0)
1939 {
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001940 pos_T save_pos = curwin->w_cursor;
1941
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001942 match_start = curwin->w_cursor;
1943 set_search_match(&curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 validate_cursor();
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001945 end_pos = curwin->w_cursor;
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02001946 match_end = end_pos;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001947 curwin->w_cursor = save_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948 }
Bram Moolenaardb552d602006-03-23 22:59:57 +00001949 else
1950 end_pos = curwin->w_cursor; /* shutup gcc 4 */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001951
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 validate_cursor();
Bram Moolenaar27a23192006-09-14 09:27:26 +00001953# ifdef FEAT_WINDOWS
1954 /* May redraw the status line to show the cursor position. */
1955 if (p_ru && curwin->w_status_height > 0)
1956 curwin->w_redr_status = TRUE;
1957# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00001959 save_cmdline(&save_ccline);
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001960 update_screen(SOME_VALID);
Bram Moolenaar111ff9f2005-03-08 22:40:03 +00001961 restore_cmdline(&save_ccline);
1962
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00001963 /* Leave it at the end to make CTRL-R CTRL-W work. */
1964 if (i != 0)
1965 curwin->w_cursor = end_pos;
1966
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 msg_starthere();
1968 redrawcmdline();
1969 did_incsearch = TRUE;
1970 }
1971#else /* FEAT_SEARCH_EXTRA */
1972 ;
1973#endif
1974
1975#ifdef FEAT_RIGHTLEFT
1976 if (cmdmsg_rl
1977# ifdef FEAT_ARABIC
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001978 || (p_arshape && !p_tbidi && enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979# endif
1980 )
1981 /* Always redraw the whole command line to fix shaping and
Bram Moolenaar58437e02012-02-22 17:58:04 +01001982 * right-left typing. Not efficient, but it works.
1983 * Do it only when there are no characters left to read
1984 * to avoid useless intermediate redraws. */
1985 if (vpeekc() == NUL)
1986 redrawcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987#endif
1988 }
1989
1990returncmd:
1991
1992#ifdef FEAT_RIGHTLEFT
1993 cmdmsg_rl = FALSE;
1994#endif
1995
1996#ifdef FEAT_FKMAP
1997 cmd_fkmap = 0;
1998#endif
1999
2000 ExpandCleanup(&xpc);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002001 ccline.xpc = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002
2003#ifdef FEAT_SEARCH_EXTRA
2004 if (did_incsearch)
2005 {
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02002006 if (gotesc)
Bram Moolenaardda933d2016-09-03 21:04:58 +02002007 curwin->w_cursor = save_cursor;
2008 else
2009 {
2010 if (!equalpos(save_cursor, search_start))
2011 {
2012 /* put the '" mark at the original position */
2013 curwin->w_cursor = save_cursor;
2014 setpcmark();
2015 }
2016 curwin->w_cursor = search_start;
2017 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 curwin->w_curswant = old_curswant;
2019 curwin->w_leftcol = old_leftcol;
2020 curwin->w_topline = old_topline;
2021# ifdef FEAT_DIFF
2022 curwin->w_topfill = old_topfill;
2023# endif
2024 curwin->w_botline = old_botline;
2025 highlight_match = FALSE;
2026 validate_cursor(); /* needed for TAB */
Bram Moolenaar600dddc2006-03-12 22:05:10 +00002027 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 }
2029#endif
2030
2031 if (ccline.cmdbuff != NULL)
2032 {
2033 /*
2034 * Put line in history buffer (":" and "=" only when it was typed).
2035 */
2036#ifdef FEAT_CMDHIST
2037 if (ccline.cmdlen && firstc != NUL
2038 && (some_key_typed || histype == HIST_SEARCH))
2039 {
2040 add_to_history(histype, ccline.cmdbuff, TRUE,
2041 histype == HIST_SEARCH ? firstc : NUL);
2042 if (firstc == ':')
2043 {
2044 vim_free(new_last_cmdline);
2045 new_last_cmdline = vim_strsave(ccline.cmdbuff);
2046 }
2047 }
2048#endif
2049
2050 if (gotesc) /* abandon command line */
2051 {
2052 vim_free(ccline.cmdbuff);
2053 ccline.cmdbuff = NULL;
2054 if (msg_scrolled == 0)
2055 compute_cmdrow();
2056 MSG("");
2057 redraw_cmdline = TRUE;
2058 }
2059 }
2060
2061 /*
2062 * If the screen was shifted up, redraw the whole screen (later).
2063 * If the line is too long, clear it, so ruler and shown command do
2064 * not get printed in the middle of it.
2065 */
2066 msg_check();
2067 msg_scroll = save_msg_scroll;
2068 redir_off = FALSE;
2069
2070 /* When the command line was typed, no need for a wait-return prompt. */
2071 if (some_key_typed)
2072 need_wait_return = FALSE;
2073
2074 State = save_State;
2075#ifdef USE_IM_CONTROL
2076 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP)
2077 im_save_status(b_im_ptr);
2078 im_set_active(FALSE);
2079#endif
2080#ifdef FEAT_MOUSE
2081 setmouse();
2082#endif
2083#ifdef CURSOR_SHAPE
2084 ui_cursor_shape(); /* may show different cursor shape */
2085#endif
2086
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002087 {
2088 char_u *p = ccline.cmdbuff;
2089
2090 /* Make ccline empty, getcmdline() may try to use it. */
2091 ccline.cmdbuff = NULL;
2092 return p;
2093 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094}
2095
2096#if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO)
2097/*
2098 * Get a command line with a prompt.
2099 * This is prepared to be called recursively from getcmdline() (e.g. by
2100 * f_input() when evaluating an expression from CTRL-R =).
2101 * Returns the command line in allocated memory, or NULL.
2102 */
2103 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002104getcmdline_prompt(
2105 int firstc,
2106 char_u *prompt, /* command line prompt */
2107 int attr, /* attributes for prompt */
2108 int xp_context, /* type of expansion */
2109 char_u *xp_arg) /* user-defined expansion argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110{
2111 char_u *s;
2112 struct cmdline_info save_ccline;
2113 int msg_col_save = msg_col;
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002114 int msg_silent_save = msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002116 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117 ccline.cmdprompt = prompt;
2118 ccline.cmdattr = attr;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002119# ifdef FEAT_EVAL
2120 ccline.xp_context = xp_context;
2121 ccline.xp_arg = xp_arg;
2122 ccline.input_fn = (firstc == '@');
2123# endif
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002124 msg_silent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 s = getcmdline(firstc, 1L, 0);
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00002126 restore_cmdline(&save_ccline);
Bram Moolenaar6135d0d2016-03-22 20:31:13 +01002127 msg_silent = msg_silent_save;
Bram Moolenaar1db1f772011-08-17 16:25:48 +02002128 /* Restore msg_col, the prompt from input() may have changed it.
2129 * But only if called recursively and the commandline is therefore being
2130 * restored to an old one; if not, the input() prompt stays on the screen,
2131 * so we need its modified msg_col left intact. */
2132 if (ccline.cmdbuff != NULL)
2133 msg_col = msg_col_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134
2135 return s;
2136}
2137#endif
2138
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002139/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002140 * Return TRUE when the text must not be changed and we can't switch to
2141 * another window or buffer. Used when editing the command line, evaluating
2142 * 'balloonexpr', etc.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002143 */
2144 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002145text_locked(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002146{
2147#ifdef FEAT_CMDWIN
2148 if (cmdwin_type != 0)
2149 return TRUE;
2150#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002151 return textlock != 0;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002152}
2153
2154/*
2155 * Give an error message for a command that isn't allowed while the cmdline
2156 * window is open or editing the cmdline in another way.
2157 */
2158 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002159text_locked_msg(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002160{
Bram Moolenaar5a497892016-09-03 16:29:04 +02002161 EMSG(_(get_text_locked_msg()));
2162}
2163
2164 char_u *
2165get_text_locked_msg(void)
2166{
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002167#ifdef FEAT_CMDWIN
2168 if (cmdwin_type != 0)
Bram Moolenaar5a497892016-09-03 16:29:04 +02002169 return e_cmdwin;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002170#endif
Bram Moolenaar5a497892016-09-03 16:29:04 +02002171 return e_secure;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002172}
2173
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002174#if defined(FEAT_AUTOCMD) || defined(PROTO)
2175/*
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002176 * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is
2177 * and give an error message.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002178 */
2179 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002180curbuf_locked(void)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002181{
2182 if (curbuf_lock > 0)
2183 {
2184 EMSG(_("E788: Not allowed to edit another buffer now"));
2185 return TRUE;
2186 }
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002187 return allbuf_locked();
2188}
2189
2190/*
2191 * Check if "allbuf_lock" is set and return TRUE when it is and give an error
2192 * message.
2193 */
2194 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002195allbuf_locked(void)
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00002196{
2197 if (allbuf_lock > 0)
2198 {
2199 EMSG(_("E811: Not allowed to change buffer information now"));
2200 return TRUE;
2201 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002202 return FALSE;
2203}
2204#endif
2205
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002207cmdline_charsize(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208{
2209#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2210 if (cmdline_star > 0) /* showing '*', always 1 position */
2211 return 1;
2212#endif
2213 return ptr2cells(ccline.cmdbuff + idx);
2214}
2215
2216/*
2217 * Compute the offset of the cursor on the command line for the prompt and
2218 * indent.
2219 */
2220 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002221set_cmdspos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222{
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002223 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 ccline.cmdspos = 1 + ccline.cmdindent;
2225 else
2226 ccline.cmdspos = 0 + ccline.cmdindent;
2227}
2228
2229/*
2230 * Compute the screen position for the cursor on the command line.
2231 */
2232 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002233set_cmdspos_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234{
2235 int i, m, c;
2236
2237 set_cmdspos();
2238 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002239 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002241 if (m < 0) /* overflow, Columns or Rows at weird value */
2242 m = MAXCOL;
2243 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244 else
2245 m = MAXCOL;
2246 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
2247 {
2248 c = cmdline_charsize(i);
2249#ifdef FEAT_MBYTE
2250 /* Count ">" for double-wide multi-byte char that doesn't fit. */
2251 if (has_mbyte)
2252 correct_cmdspos(i, c);
2253#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00002254 /* If the cmdline doesn't fit, show cursor on last visible char.
2255 * Don't move the cursor itself, so we can still append. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 if ((ccline.cmdspos += c) >= m)
2257 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 ccline.cmdspos -= c;
2259 break;
2260 }
2261#ifdef FEAT_MBYTE
2262 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002263 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264#endif
2265 }
2266}
2267
2268#ifdef FEAT_MBYTE
2269/*
2270 * Check if the character at "idx", which is "cells" wide, is a multi-byte
2271 * character that doesn't fit, so that a ">" must be displayed.
2272 */
2273 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002274correct_cmdspos(int idx, int cells)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002276 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
2278 && ccline.cmdspos % Columns + cells > Columns)
2279 ccline.cmdspos++;
2280}
2281#endif
2282
2283/*
2284 * Get an Ex command line for the ":" command.
2285 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002287getexline(
2288 int c, /* normally ':', NUL for ":append" */
2289 void *cookie UNUSED,
2290 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291{
2292 /* When executing a register, remove ':' that's in front of each line. */
2293 if (exec_from_reg && vpeekc() == ':')
2294 (void)vgetc();
2295 return getcmdline(c, 1L, indent);
2296}
2297
2298/*
2299 * Get an Ex command line for Ex mode.
2300 * In Ex mode we only use the OS supplied line editing features and no
2301 * mappings or abbreviations.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002302 * Returns a string in allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002305getexmodeline(
2306 int promptc, /* normally ':', NUL for ":append" and '?' for
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002307 :s prompt */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002308 void *cookie UNUSED,
2309 int indent) /* indent for inside conditionals */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002311 garray_T line_ga;
2312 char_u *pend;
2313 int startcol = 0;
Bram Moolenaar76624232007-07-28 12:21:47 +00002314 int c1 = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002315 int escaped = FALSE; /* CTRL-V typed */
2316 int vcol = 0;
2317 char_u *p;
Bram Moolenaar76624232007-07-28 12:21:47 +00002318 int prev_char;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002319 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320
2321 /* Switch cursor on now. This avoids that it happens after the "\n", which
2322 * confuses the system function that computes tabstops. */
2323 cursor_on();
2324
2325 /* always start in column 0; write a newline if necessary */
2326 compute_cmdrow();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002327 if ((msg_col || msg_didout) && promptc != '?')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328 msg_putchar('\n');
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002329 if (promptc == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002331 /* indent that is only displayed, not in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002332 if (p_prompt)
2333 msg_putchar(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 while (indent-- > 0)
2335 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 startcol = msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 }
2338
2339 ga_init2(&line_ga, 1, 30);
2340
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002341 /* autoindent for :insert and :append is in the line itself */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002342 if (promptc <= 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002343 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002344 vcol = indent;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002345 while (indent >= 8)
2346 {
2347 ga_append(&line_ga, TAB);
2348 msg_puts((char_u *)" ");
2349 indent -= 8;
2350 }
2351 while (indent-- > 0)
2352 {
2353 ga_append(&line_ga, ' ');
2354 msg_putchar(' ');
2355 }
2356 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002357 ++no_mapping;
2358 ++allow_keys;
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002359
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360 /*
2361 * Get the line, one character at a time.
2362 */
2363 got_int = FALSE;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002364 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002366 long sw;
2367 char_u *s;
2368
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369 if (ga_grow(&line_ga, 40) == FAIL)
2370 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371
Bram Moolenaarabbc4482017-01-24 15:57:55 +01002372 /* Get one character at a time. */
Bram Moolenaar76624232007-07-28 12:21:47 +00002373 prev_char = c1;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002374 c1 = vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375
2376 /*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002377 * Handle line editing.
2378 * Previously this was left to the system, putting the terminal in
2379 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002381 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002383 msg_putchar('\n');
2384 break;
2385 }
2386
Bram Moolenaarabbc4482017-01-24 15:57:55 +01002387 if (c1 == K_PS)
2388 {
2389 bracketed_paste(PASTE_EX, FALSE, &line_ga);
2390 goto redraw;
2391 }
2392
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002393 if (!escaped)
2394 {
2395 /* CR typed means "enter", which is NL */
2396 if (c1 == '\r')
2397 c1 = '\n';
2398
2399 if (c1 == BS || c1 == K_BS
2400 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002402 if (line_ga.ga_len > 0)
2403 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002404#ifdef FEAT_MBYTE
2405 if (has_mbyte)
2406 {
2407 p = (char_u *)line_ga.ga_data;
2408 p[line_ga.ga_len] = NUL;
2409 len = (*mb_head_off)(p, p + line_ga.ga_len - 1) + 1;
2410 line_ga.ga_len -= len;
2411 }
2412 else
2413#endif
2414 --line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002415 goto redraw;
2416 }
2417 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 }
2419
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002420 if (c1 == Ctrl_U)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002422 msg_col = startcol;
2423 msg_clr_eos();
2424 line_ga.ga_len = 0;
Bram Moolenaarda636572015-04-03 17:11:45 +02002425 goto redraw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002426 }
2427
2428 if (c1 == Ctrl_T)
2429 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002430 sw = get_sw_value(curbuf);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002431 p = (char_u *)line_ga.ga_data;
2432 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002433 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaar14f24742012-08-08 18:01:05 +02002434 indent += sw - indent % sw;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002435add_indent:
Bram Moolenaar597a4222014-06-25 14:39:50 +02002436 while (get_indent_str(p, 8, FALSE) < indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002438 (void)ga_grow(&line_ga, 2); /* one more for the NUL */
Bram Moolenaarda636572015-04-03 17:11:45 +02002439 p = (char_u *)line_ga.ga_data;
2440 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002441 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
2442 *s = ' ';
2443 ++line_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002445redraw:
2446 /* redraw the line */
2447 msg_col = startcol;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002448 vcol = 0;
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002449 p = (char_u *)line_ga.ga_data;
2450 p[line_ga.ga_len] = NUL;
2451 while (p < (char_u *)line_ga.ga_data + line_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002453 if (*p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002455 do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002457 msg_putchar(' ');
2458 } while (++vcol % 8);
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002459 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002461 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462 {
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002463 len = MB_PTR2LEN(p);
2464 msg_outtrans_len(p, len);
2465 vcol += ptr2cells(p);
2466 p += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467 }
2468 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002469 msg_clr_eos();
Bram Moolenaar76624232007-07-28 12:21:47 +00002470 windgoto(msg_row, msg_col);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002471 continue;
2472 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002474 if (c1 == Ctrl_D)
2475 {
2476 /* Delete one shiftwidth. */
2477 p = (char_u *)line_ga.ga_data;
2478 if (prev_char == '0' || prev_char == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002480 if (prev_char == '^')
2481 ex_keep_indent = TRUE;
2482 indent = 0;
2483 p[--line_ga.ga_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 }
2485 else
2486 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002487 p[line_ga.ga_len] = NUL;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002488 indent = get_indent_str(p, 8, FALSE);
Bram Moolenaarda636572015-04-03 17:11:45 +02002489 if (indent > 0)
2490 {
2491 --indent;
2492 indent -= indent % get_sw_value(curbuf);
2493 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02002495 while (get_indent_str(p, 8, FALSE) > indent)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002496 {
Bram Moolenaarda636572015-04-03 17:11:45 +02002497 s = skipwhite(p);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002498 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
2499 --line_ga.ga_len;
2500 }
2501 goto add_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002503
2504 if (c1 == Ctrl_V || c1 == Ctrl_Q)
2505 {
2506 escaped = TRUE;
2507 continue;
2508 }
2509
2510 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
2511 if (IS_SPECIAL(c1))
2512 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002514
2515 if (IS_SPECIAL(c1))
2516 c1 = '?';
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002517#ifdef FEAT_MBYTE
2518 if (has_mbyte)
2519 len = (*mb_char2bytes)(c1,
2520 (char_u *)line_ga.ga_data + line_ga.ga_len);
2521 else
2522#endif
2523 {
2524 len = 1;
2525 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
2526 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002527 if (c1 == '\n')
2528 msg_putchar('\n');
2529 else if (c1 == TAB)
2530 {
2531 /* Don't use chartabsize(), 'ts' can be different */
2532 do
2533 {
2534 msg_putchar(' ');
2535 } while (++vcol % 8);
2536 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002539 msg_outtrans_len(
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002540 ((char_u *)line_ga.ga_data) + line_ga.ga_len, len);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002541 vcol += char2cells(c1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 }
Bram Moolenaar2d54ec92014-06-12 19:44:48 +02002543 line_ga.ga_len += len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002544 escaped = FALSE;
2545
2546 windgoto(msg_row, msg_col);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002547 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002548
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002549 /* We are done when a NL is entered, but not when it comes after an
2550 * odd number of backslashes, that results in a NUL. */
2551 if (line_ga.ga_len > 0 && pend[-1] == '\n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552 {
Bram Moolenaar417f5e72010-09-29 15:50:30 +02002553 int bcount = 0;
2554
2555 while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\')
2556 ++bcount;
2557
2558 if (bcount > 0)
2559 {
2560 /* Halve the number of backslashes: "\NL" -> "NUL", "\\NL" ->
2561 * "\NL", etc. */
2562 line_ga.ga_len -= (bcount + 1) / 2;
2563 pend -= (bcount + 1) / 2;
2564 pend[-1] = '\n';
2565 }
2566
2567 if ((bcount & 1) == 0)
2568 {
2569 --line_ga.ga_len;
2570 --pend;
2571 *pend = NUL;
2572 break;
2573 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 }
2575 }
2576
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002577 --no_mapping;
2578 --allow_keys;
2579
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 /* make following messages go to the next line */
2581 msg_didout = FALSE;
2582 msg_col = 0;
2583 if (msg_row < Rows - 1)
2584 ++msg_row;
2585 emsg_on_display = FALSE; /* don't want ui_delay() */
2586
2587 if (got_int)
2588 ga_clear(&line_ga);
2589
2590 return (char_u *)line_ga.ga_data;
2591}
2592
Bram Moolenaare344bea2005-09-01 20:46:49 +00002593# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
2594 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595/*
2596 * Return TRUE if ccline.overstrike is on.
2597 */
2598 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002599cmdline_overstrike(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600{
2601 return ccline.overstrike;
2602}
2603
2604/*
2605 * Return TRUE if the cursor is at the end of the cmdline.
2606 */
2607 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002608cmdline_at_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609{
2610 return (ccline.cmdpos >= ccline.cmdlen);
2611}
2612#endif
2613
Bram Moolenaar9372a112005-12-06 19:59:18 +00002614#if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615/*
2616 * Return the virtual column number at the current cursor position.
2617 * This is used by the IM code to obtain the start of the preedit string.
2618 */
2619 colnr_T
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002620cmdline_getvcol_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621{
2622 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
2623 return MAXCOL;
2624
2625# ifdef FEAT_MBYTE
2626 if (has_mbyte)
2627 {
2628 colnr_T col;
2629 int i = 0;
2630
2631 for (col = 0; i < ccline.cmdpos; ++col)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002632 i += (*mb_ptr2len)(ccline.cmdbuff + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633
2634 return col;
2635 }
2636 else
2637# endif
2638 return ccline.cmdpos;
2639}
2640#endif
2641
2642#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2643/*
2644 * If part of the command line is an IM preedit string, redraw it with
2645 * IM feedback attributes. The cursor position is restored after drawing.
2646 */
2647 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002648redrawcmd_preedit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649{
2650 if ((State & CMDLINE)
2651 && xic != NULL
Bram Moolenaar494c82a2006-09-14 08:25:49 +00002652 /* && im_get_status() doesn't work when using SCIM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 && !p_imdisable
2654 && im_is_preediting())
2655 {
2656 int cmdpos = 0;
2657 int cmdspos;
2658 int old_row;
2659 int old_col;
2660 colnr_T col;
2661
2662 old_row = msg_row;
2663 old_col = msg_col;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00002664 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665
2666# ifdef FEAT_MBYTE
2667 if (has_mbyte)
2668 {
2669 for (col = 0; col < preedit_start_col
2670 && cmdpos < ccline.cmdlen; ++col)
2671 {
2672 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002673 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674 }
2675 }
2676 else
2677# endif
2678 {
2679 cmdspos += preedit_start_col;
2680 cmdpos += preedit_start_col;
2681 }
2682
2683 msg_row = cmdline_row + (cmdspos / (int)Columns);
2684 msg_col = cmdspos % (int)Columns;
2685 if (msg_row >= Rows)
2686 msg_row = Rows - 1;
2687
2688 for (col = 0; cmdpos < ccline.cmdlen; ++col)
2689 {
2690 int char_len;
2691 int char_attr;
2692
2693 char_attr = im_get_feedback_attr(col);
2694 if (char_attr < 0)
2695 break; /* end of preedit string */
2696
2697# ifdef FEAT_MBYTE
2698 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002699 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700 else
2701# endif
2702 char_len = 1;
2703
2704 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
2705 cmdpos += char_len;
2706 }
2707
2708 msg_row = old_row;
2709 msg_col = old_col;
2710 }
2711}
2712#endif /* FEAT_XIM && FEAT_GUI_GTK */
2713
2714/*
2715 * Allocate a new command line buffer.
2716 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
2717 * Returns the new value of ccline.cmdbuff and ccline.cmdbufflen.
2718 */
2719 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002720alloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721{
2722 /*
2723 * give some extra space to avoid having to allocate all the time
2724 */
2725 if (len < 80)
2726 len = 100;
2727 else
2728 len += 20;
2729
2730 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */
2731 ccline.cmdbufflen = len;
2732}
2733
2734/*
2735 * Re-allocate the command line to length len + something extra.
2736 * return FAIL for failure, OK otherwise
2737 */
2738 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002739realloc_cmdbuff(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740{
2741 char_u *p;
2742
Bram Moolenaar673b87b2010-08-13 19:12:07 +02002743 if (len < ccline.cmdbufflen)
2744 return OK; /* no need to resize */
2745
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 p = ccline.cmdbuff;
2747 alloc_cmdbuff(len); /* will get some more */
2748 if (ccline.cmdbuff == NULL) /* out of memory */
2749 {
2750 ccline.cmdbuff = p; /* keep the old one */
2751 return FAIL;
2752 }
Bram Moolenaar35a34232010-08-13 16:51:26 +02002753 /* There isn't always a NUL after the command, but it may need to be
2754 * there, thus copy up to the NUL and add a NUL. */
2755 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen);
2756 ccline.cmdbuff[ccline.cmdlen] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 vim_free(p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002758
2759 if (ccline.xpc != NULL
2760 && ccline.xpc->xp_pattern != NULL
2761 && ccline.xpc->xp_context != EXPAND_NOTHING
2762 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL)
2763 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00002764 int i = (int)(ccline.xpc->xp_pattern - p);
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00002765
2766 /* If xp_pattern points inside the old cmdbuff it needs to be adjusted
2767 * to point into the newly allocated memory. */
2768 if (i >= 0 && i <= ccline.cmdlen)
2769 ccline.xpc->xp_pattern = ccline.cmdbuff + i;
2770 }
2771
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772 return OK;
2773}
2774
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002775#if defined(FEAT_ARABIC) || defined(PROTO)
2776static char_u *arshape_buf = NULL;
2777
2778# if defined(EXITFREE) || defined(PROTO)
2779 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002780free_cmdline_buf(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002781{
2782 vim_free(arshape_buf);
2783}
2784# endif
2785#endif
2786
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787/*
2788 * Draw part of the cmdline at the current cursor position. But draw stars
2789 * when cmdline_star is TRUE.
2790 */
2791 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002792draw_cmdline(int start, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793{
2794#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2795 int i;
2796
2797 if (cmdline_star > 0)
2798 for (i = 0; i < len; ++i)
2799 {
2800 msg_putchar('*');
2801# ifdef FEAT_MBYTE
2802 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002803 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804# endif
2805 }
2806 else
2807#endif
2808#ifdef FEAT_ARABIC
2809 if (p_arshape && !p_tbidi && enc_utf8 && len > 0)
2810 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811 static int buflen = 0;
2812 char_u *p;
2813 int j;
2814 int newlen = 0;
2815 int mb_l;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00002816 int pc, pc1 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817 int prev_c = 0;
2818 int prev_c1 = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002819 int u8c;
2820 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821 int nc = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822
2823 /*
2824 * Do arabic shaping into a temporary buffer. This is very
2825 * inefficient!
2826 */
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002827 if (len * 2 + 2 > buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828 {
2829 /* Re-allocate the buffer. We keep it around to avoid a lot of
2830 * alloc()/free() calls. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002831 vim_free(arshape_buf);
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002832 buflen = len * 2 + 2;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002833 arshape_buf = alloc(buflen);
2834 if (arshape_buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835 return; /* out of memory */
2836 }
2837
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00002838 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
2839 {
2840 /* Prepend a space to draw the leading composing char on. */
2841 arshape_buf[0] = ' ';
2842 newlen = 1;
2843 }
2844
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845 for (j = start; j < start + len; j += mb_l)
2846 {
2847 p = ccline.cmdbuff + j;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002848 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002849 mb_l = utfc_ptr2len_len(p, start + len - j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 if (ARABIC_CHAR(u8c))
2851 {
2852 /* Do Arabic shaping. */
2853 if (cmdmsg_rl)
2854 {
2855 /* displaying from right to left */
2856 pc = prev_c;
2857 pc1 = prev_c1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002858 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859 if (j + mb_l >= start + len)
2860 nc = NUL;
2861 else
2862 nc = utf_ptr2char(p + mb_l);
2863 }
2864 else
2865 {
2866 /* displaying from left to right */
2867 if (j + mb_l >= start + len)
2868 pc = NUL;
2869 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002870 {
2871 int pcc[MAX_MCO];
2872
2873 pc = utfc_ptr2char_len(p + mb_l, pcc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 start + len - j - mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002875 pc1 = pcc[0];
2876 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 nc = prev_c;
2878 }
2879 prev_c = u8c;
2880
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002881 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002883 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002884 if (u8cc[0] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002886 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
2887 if (u8cc[1] != 0)
2888 newlen += (*mb_char2bytes)(u8cc[1],
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002889 arshape_buf + newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890 }
2891 }
2892 else
2893 {
2894 prev_c = u8c;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002895 mch_memmove(arshape_buf + newlen, p, mb_l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002896 newlen += mb_l;
2897 }
2898 }
2899
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002900 msg_outtrans_len(arshape_buf, newlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901 }
2902 else
2903#endif
2904 msg_outtrans_len(ccline.cmdbuff + start, len);
2905}
2906
2907/*
2908 * Put a character on the command line. Shifts the following text to the
2909 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
2910 * "c" must be printable (fit in one display cell)!
2911 */
2912 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002913putcmdline(int c, int shift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914{
2915 if (cmd_silent)
2916 return;
2917 msg_no_more = TRUE;
2918 msg_putchar(c);
2919 if (shift)
2920 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
2921 msg_no_more = FALSE;
2922 cursorcmd();
2923}
2924
2925/*
2926 * Undo a putcmdline(c, FALSE).
2927 */
2928 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002929unputcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930{
2931 if (cmd_silent)
2932 return;
2933 msg_no_more = TRUE;
2934 if (ccline.cmdlen == ccline.cmdpos)
2935 msg_putchar(' ');
Bram Moolenaar64fdf5c2012-06-06 12:03:06 +02002936#ifdef FEAT_MBYTE
2937 else if (has_mbyte)
2938 draw_cmdline(ccline.cmdpos,
2939 (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos));
2940#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 else
2942 draw_cmdline(ccline.cmdpos, 1);
2943 msg_no_more = FALSE;
2944 cursorcmd();
2945}
2946
2947/*
2948 * Put the given string, of the given length, onto the command line.
2949 * If len is -1, then STRLEN() is used to calculate the length.
2950 * If 'redraw' is TRUE then the new part of the command line, and the remaining
2951 * part will be redrawn, otherwise it will not. If this function is called
2952 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
2953 * called afterwards.
2954 */
2955 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002956put_on_cmdline(char_u *str, int len, int redraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957{
2958 int retval;
2959 int i;
2960 int m;
2961 int c;
2962
2963 if (len < 0)
2964 len = (int)STRLEN(str);
2965
2966 /* Check if ccline.cmdbuff needs to be longer */
2967 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
Bram Moolenaar673b87b2010-08-13 19:12:07 +02002968 retval = realloc_cmdbuff(ccline.cmdlen + len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969 else
2970 retval = OK;
2971 if (retval == OK)
2972 {
2973 if (!ccline.overstrike)
2974 {
2975 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2976 ccline.cmdbuff + ccline.cmdpos,
2977 (size_t)(ccline.cmdlen - ccline.cmdpos));
2978 ccline.cmdlen += len;
2979 }
2980 else
2981 {
2982#ifdef FEAT_MBYTE
2983 if (has_mbyte)
2984 {
2985 /* Count nr of characters in the new string. */
2986 m = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002987 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988 ++m;
2989 /* Count nr of bytes in cmdline that are overwritten by these
2990 * characters. */
2991 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002992 i += (*mb_ptr2len)(ccline.cmdbuff + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993 --m;
2994 if (i < ccline.cmdlen)
2995 {
2996 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
2997 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
2998 ccline.cmdlen += ccline.cmdpos + len - i;
2999 }
3000 else
3001 ccline.cmdlen = ccline.cmdpos + len;
3002 }
3003 else
3004#endif
3005 if (ccline.cmdpos + len > ccline.cmdlen)
3006 ccline.cmdlen = ccline.cmdpos + len;
3007 }
3008 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
3009 ccline.cmdbuff[ccline.cmdlen] = NUL;
3010
3011#ifdef FEAT_MBYTE
3012 if (enc_utf8)
3013 {
3014 /* When the inserted text starts with a composing character,
3015 * backup to the character before it. There could be two of them.
3016 */
3017 i = 0;
3018 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3019 while (ccline.cmdpos > 0 && utf_iscomposing(c))
3020 {
3021 i = (*mb_head_off)(ccline.cmdbuff,
3022 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3023 ccline.cmdpos -= i;
3024 len += i;
3025 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
3026 }
3027# ifdef FEAT_ARABIC
3028 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
3029 {
3030 /* Check the previous character for Arabic combining pair. */
3031 i = (*mb_head_off)(ccline.cmdbuff,
3032 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
3033 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
3034 + ccline.cmdpos - i), c))
3035 {
3036 ccline.cmdpos -= i;
3037 len += i;
3038 }
3039 else
3040 i = 0;
3041 }
3042# endif
3043 if (i != 0)
3044 {
3045 /* Also backup the cursor position. */
3046 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
3047 ccline.cmdspos -= i;
3048 msg_col -= i;
3049 if (msg_col < 0)
3050 {
3051 msg_col += Columns;
3052 --msg_row;
3053 }
3054 }
3055 }
3056#endif
3057
3058 if (redraw && !cmd_silent)
3059 {
3060 msg_no_more = TRUE;
3061 i = cmdline_row;
Bram Moolenaar73dc59a2011-09-30 17:46:21 +02003062 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
3064 /* Avoid clearing the rest of the line too often. */
3065 if (cmdline_row != i || ccline.overstrike)
3066 msg_clr_eos();
3067 msg_no_more = FALSE;
3068 }
3069#ifdef FEAT_FKMAP
3070 /*
3071 * If we are in Farsi command mode, the character input must be in
3072 * Insert mode. So do not advance the cmdpos.
3073 */
3074 if (!cmd_fkmap)
3075#endif
3076 {
3077 if (KeyTyped)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003078 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079 m = Columns * Rows;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003080 if (m < 0) /* overflow, Columns or Rows at weird value */
3081 m = MAXCOL;
3082 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083 else
3084 m = MAXCOL;
3085 for (i = 0; i < len; ++i)
3086 {
3087 c = cmdline_charsize(ccline.cmdpos);
3088#ifdef FEAT_MBYTE
3089 /* count ">" for a double-wide char that doesn't fit. */
3090 if (has_mbyte)
3091 correct_cmdspos(ccline.cmdpos, c);
3092#endif
Bram Moolenaarf9821062008-06-20 16:31:07 +00003093 /* Stop cursor at the end of the screen, but do increment the
3094 * insert position, so that entering a very long command
3095 * works, even though you can't see it. */
3096 if (ccline.cmdspos + c < m)
3097 ccline.cmdspos += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098#ifdef FEAT_MBYTE
3099 if (has_mbyte)
3100 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003101 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003102 if (c > len - i - 1)
3103 c = len - i - 1;
3104 ccline.cmdpos += c;
3105 i += c;
3106 }
3107#endif
3108 ++ccline.cmdpos;
3109 }
3110 }
3111 }
3112 if (redraw)
3113 msg_check();
3114 return retval;
3115}
3116
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003117static struct cmdline_info prev_ccline;
3118static int prev_ccline_used = FALSE;
3119
3120/*
3121 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
3122 * and overwrite it. But get_cmdline_str() may need it, thus make it
3123 * available globally in prev_ccline.
3124 */
3125 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003126save_cmdline(struct cmdline_info *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003127{
3128 if (!prev_ccline_used)
3129 {
3130 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info));
3131 prev_ccline_used = TRUE;
3132 }
3133 *ccp = prev_ccline;
3134 prev_ccline = ccline;
3135 ccline.cmdbuff = NULL;
3136 ccline.cmdprompt = NULL;
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003137 ccline.xpc = NULL;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003138}
3139
3140/*
Bram Moolenaarccc18222007-05-10 18:25:20 +00003141 * Restore ccline after it has been saved with save_cmdline().
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003142 */
3143 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003144restore_cmdline(struct cmdline_info *ccp)
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003145{
3146 ccline = prev_ccline;
3147 prev_ccline = *ccp;
3148}
3149
Bram Moolenaar5a305422006-04-28 22:38:25 +00003150#if defined(FEAT_EVAL) || defined(PROTO)
3151/*
3152 * Save the command line into allocated memory. Returns a pointer to be
3153 * passed to restore_cmdline_alloc() later.
3154 * Returns NULL when failed.
3155 */
3156 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003157save_cmdline_alloc(void)
Bram Moolenaar5a305422006-04-28 22:38:25 +00003158{
3159 struct cmdline_info *p;
3160
3161 p = (struct cmdline_info *)alloc((unsigned)sizeof(struct cmdline_info));
3162 if (p != NULL)
3163 save_cmdline(p);
3164 return (char_u *)p;
3165}
3166
3167/*
3168 * Restore the command line from the return value of save_cmdline_alloc().
3169 */
3170 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003171restore_cmdline_alloc(char_u *p)
Bram Moolenaar5a305422006-04-28 22:38:25 +00003172{
3173 if (p != NULL)
3174 {
3175 restore_cmdline((struct cmdline_info *)p);
3176 vim_free(p);
3177 }
3178}
3179#endif
3180
Bram Moolenaar8299df92004-07-10 09:47:34 +00003181/*
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003182 * Paste a yank register into the command line.
3183 * Used by CTRL-R command in command-line mode.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003184 * insert_reg() can't be used here, because special characters from the
3185 * register contents will be interpreted as commands.
3186 *
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01003187 * Return FAIL for failure, OK otherwise.
Bram Moolenaar8299df92004-07-10 09:47:34 +00003188 */
3189 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003190cmdline_paste(
3191 int regname,
3192 int literally, /* Insert text literally instead of "as typed" */
3193 int remcr) /* remove trailing CR */
Bram Moolenaar8299df92004-07-10 09:47:34 +00003194{
3195 long i;
3196 char_u *arg;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003197 char_u *p;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003198 int allocated;
3199 struct cmdline_info save_ccline;
3200
3201 /* check for valid regname; also accept special characters for CTRL-R in
3202 * the command line */
3203 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
3204 && regname != Ctrl_A && !valid_yank_reg(regname, FALSE))
3205 return FAIL;
3206
3207 /* A register containing CTRL-R can cause an endless loop. Allow using
3208 * CTRL-C to break the loop. */
3209 line_breakcheck();
3210 if (got_int)
3211 return FAIL;
3212
3213#ifdef FEAT_CLIPBOARD
3214 regname = may_get_selection(regname);
3215#endif
3216
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003217 /* Need to save and restore ccline. And set "textlock" to avoid nasty
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003218 * things like going to another buffer when evaluating an expression. */
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003219 save_cmdline(&save_ccline);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003220 ++textlock;
Bram Moolenaar8299df92004-07-10 09:47:34 +00003221 i = get_spec_reg(regname, &arg, &allocated, TRUE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003222 --textlock;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003223 restore_cmdline(&save_ccline);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003224
3225 if (i)
3226 {
3227 /* Got the value of a special register in "arg". */
3228 if (arg == NULL)
3229 return FAIL;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003230
3231 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
3232 * part of the word. */
3233 p = arg;
3234 if (p_is && regname == Ctrl_W)
3235 {
3236 char_u *w;
3237 int len;
3238
3239 /* Locate start of last word in the cmd buffer. */
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003240 for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; )
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003241 {
3242#ifdef FEAT_MBYTE
3243 if (has_mbyte)
3244 {
3245 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
3246 if (!vim_iswordc(mb_ptr2char(w - len)))
3247 break;
3248 w -= len;
3249 }
3250 else
3251#endif
3252 {
3253 if (!vim_iswordc(w[-1]))
3254 break;
3255 --w;
3256 }
3257 }
Bram Moolenaar80ae7b22011-07-07 16:44:37 +02003258 len = (int)((ccline.cmdbuff + ccline.cmdpos) - w);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003259 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
3260 p += len;
3261 }
3262
3263 cmdline_paste_str(p, literally);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003264 if (allocated)
3265 vim_free(arg);
3266 return OK;
3267 }
3268
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00003269 return cmdline_paste_reg(regname, literally, remcr);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003270}
3271
3272/*
3273 * Put a string on the command line.
3274 * When "literally" is TRUE, insert literally.
3275 * When "literally" is FALSE, insert as typed, but don't leave the command
3276 * line.
3277 */
3278 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003279cmdline_paste_str(char_u *s, int literally)
Bram Moolenaar8299df92004-07-10 09:47:34 +00003280{
3281 int c, cv;
3282
3283 if (literally)
3284 put_on_cmdline(s, -1, TRUE);
3285 else
3286 while (*s != NUL)
3287 {
3288 cv = *s;
3289 if (cv == Ctrl_V && s[1])
3290 ++s;
3291#ifdef FEAT_MBYTE
3292 if (has_mbyte)
Bram Moolenaar48be32b2008-06-20 10:56:16 +00003293 c = mb_cptr2char_adv(&s);
Bram Moolenaar8299df92004-07-10 09:47:34 +00003294 else
3295#endif
3296 c = *s++;
Bram Moolenaare79abdd2012-06-29 13:44:41 +02003297 if (cv == Ctrl_V || c == ESC || c == Ctrl_C
3298 || c == CAR || c == NL || c == Ctrl_L
Bram Moolenaar8299df92004-07-10 09:47:34 +00003299#ifdef UNIX
3300 || c == intr_char
3301#endif
3302 || (c == Ctrl_BSL && *s == Ctrl_N))
3303 stuffcharReadbuff(Ctrl_V);
3304 stuffcharReadbuff(c);
3305 }
3306}
3307
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308#ifdef FEAT_WILDMENU
3309/*
3310 * Delete characters on the command line, from "from" to the current
3311 * position.
3312 */
3313 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003314cmdline_del(int from)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315{
3316 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
3317 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3318 ccline.cmdlen -= ccline.cmdpos - from;
3319 ccline.cmdpos = from;
3320}
3321#endif
3322
3323/*
Bram Moolenaar89c79b92016-05-05 17:18:41 +02003324 * This function is called when the screen size changes and with incremental
3325 * search and in other situations where the command line may have been
3326 * overwritten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327 */
3328 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003329redrawcmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330{
3331 if (cmd_silent)
3332 return;
3333 need_wait_return = FALSE;
3334 compute_cmdrow();
3335 redrawcmd();
3336 cursorcmd();
3337}
3338
3339 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003340redrawcmdprompt(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341{
3342 int i;
3343
3344 if (cmd_silent)
3345 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003346 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347 msg_putchar(ccline.cmdfirstc);
3348 if (ccline.cmdprompt != NULL)
3349 {
3350 msg_puts_attr(ccline.cmdprompt, ccline.cmdattr);
3351 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
3352 /* do the reverse of set_cmdspos() */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003353 if (ccline.cmdfirstc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003354 --ccline.cmdindent;
3355 }
3356 else
3357 for (i = ccline.cmdindent; i > 0; --i)
3358 msg_putchar(' ');
3359}
3360
3361/*
3362 * Redraw what is currently on the command line.
3363 */
3364 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003365redrawcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366{
3367 if (cmd_silent)
3368 return;
3369
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00003370 /* when 'incsearch' is set there may be no command line while redrawing */
3371 if (ccline.cmdbuff == NULL)
3372 {
3373 windgoto(cmdline_row, 0);
3374 msg_clr_eos();
3375 return;
3376 }
3377
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378 msg_start();
3379 redrawcmdprompt();
3380
3381 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
3382 msg_no_more = TRUE;
3383 draw_cmdline(0, ccline.cmdlen);
3384 msg_clr_eos();
3385 msg_no_more = FALSE;
3386
3387 set_cmdspos_cursor();
3388
3389 /*
3390 * An emsg() before may have set msg_scroll. This is used in normal mode,
3391 * in cmdline mode we can reset them now.
3392 */
3393 msg_scroll = FALSE; /* next message overwrites cmdline */
3394
3395 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
3396 * in cmdline mode */
3397 skip_redraw = FALSE;
3398}
3399
3400 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003401compute_cmdrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402{
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003403 if (exmode_active || msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404 cmdline_row = Rows - 1;
3405 else
3406 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
3407 + W_STATUS_HEIGHT(lastwin);
3408}
3409
3410 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003411cursorcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412{
3413 if (cmd_silent)
3414 return;
3415
3416#ifdef FEAT_RIGHTLEFT
3417 if (cmdmsg_rl)
3418 {
3419 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
3420 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
3421 if (msg_row <= 0)
3422 msg_row = Rows - 1;
3423 }
3424 else
3425#endif
3426 {
3427 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
3428 msg_col = ccline.cmdspos % (int)Columns;
3429 if (msg_row >= Rows)
3430 msg_row = Rows - 1;
3431 }
3432
3433 windgoto(msg_row, msg_col);
3434#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
3435 redrawcmd_preedit();
3436#endif
3437#ifdef MCH_CURSOR_SHAPE
3438 mch_update_cursor();
3439#endif
3440}
3441
3442 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003443gotocmdline(int clr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444{
3445 msg_start();
3446#ifdef FEAT_RIGHTLEFT
3447 if (cmdmsg_rl)
3448 msg_col = Columns - 1;
3449 else
3450#endif
3451 msg_col = 0; /* always start in column 0 */
3452 if (clr) /* clear the bottom line(s) */
3453 msg_clr_eos(); /* will reset clear_cmdline */
3454 windgoto(cmdline_row, 0);
3455}
3456
3457/*
3458 * Check the word in front of the cursor for an abbreviation.
3459 * Called when the non-id character "c" has been entered.
3460 * When an abbreviation is recognized it is removed from the text with
3461 * backspaces and the replacement string is inserted, followed by "c".
3462 */
3463 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003464ccheck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465{
3466 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
3467 return FALSE;
3468
3469 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, 0);
3470}
3471
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003472#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3473 static int
3474#ifdef __BORLANDC__
3475_RTLENTRYF
3476#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003477sort_func_compare(const void *s1, const void *s2)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02003478{
3479 char_u *p1 = *(char_u **)s1;
3480 char_u *p2 = *(char_u **)s2;
3481
3482 if (*p1 != '<' && *p2 == '<') return -1;
3483 if (*p1 == '<' && *p2 != '<') return 1;
3484 return STRCMP(p1, p2);
3485}
3486#endif
3487
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488/*
3489 * Return FAIL if this is not an appropriate context in which to do
3490 * completion of anything, return OK if it is (even if there are no matches).
3491 * For the caller, this means that the character is just passed through like a
3492 * normal character (instead of being expanded). This allows :s/^I^D etc.
3493 */
3494 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003495nextwild(
3496 expand_T *xp,
3497 int type,
3498 int options, /* extra options for ExpandOne() */
3499 int escape) /* if TRUE, escape the returned matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500{
3501 int i, j;
3502 char_u *p1;
3503 char_u *p2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 int difflen;
3505 int v;
3506
3507 if (xp->xp_numfiles == -1)
3508 {
3509 set_expand_context(xp);
3510 cmd_showtail = expand_showtail(xp);
3511 }
3512
3513 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
3514 {
3515 beep_flush();
3516 return OK; /* Something illegal on command line */
3517 }
3518 if (xp->xp_context == EXPAND_NOTHING)
3519 {
3520 /* Caller can use the character as a normal char instead */
3521 return FAIL;
3522 }
3523
3524 MSG_PUTS("..."); /* show that we are busy */
3525 out_flush();
3526
3527 i = (int)(xp->xp_pattern - ccline.cmdbuff);
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003528 xp->xp_pattern_len = ccline.cmdpos - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529
3530 if (type == WILD_NEXT || type == WILD_PREV)
3531 {
3532 /*
3533 * Get next/previous match for a previous expanded pattern.
3534 */
3535 p2 = ExpandOne(xp, NULL, NULL, 0, type);
3536 }
3537 else
3538 {
3539 /*
3540 * Translate string into pattern and expand it.
3541 */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003542 if ((p1 = addstar(xp->xp_pattern, xp->xp_pattern_len,
3543 xp->xp_context)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003544 p2 = NULL;
3545 else
3546 {
Bram Moolenaar94950a92010-12-02 16:01:29 +01003547 int use_options = options |
Bram Moolenaarb3479632012-11-28 16:49:58 +01003548 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT;
3549 if (escape)
3550 use_options |= WILD_ESCAPE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01003551
3552 if (p_wic)
3553 use_options += WILD_ICASE;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003554 p2 = ExpandOne(xp, p1,
3555 vim_strnsave(&ccline.cmdbuff[i], xp->xp_pattern_len),
Bram Moolenaar94950a92010-12-02 16:01:29 +01003556 use_options, type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557 vim_free(p1);
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01003558 /* longest match: make sure it is not shorter, happens with :help */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 if (p2 != NULL && type == WILD_LONGEST)
3560 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003561 for (j = 0; j < xp->xp_pattern_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 if (ccline.cmdbuff[i + j] == '*'
3563 || ccline.cmdbuff[i + j] == '?')
3564 break;
3565 if ((int)STRLEN(p2) < j)
3566 {
3567 vim_free(p2);
3568 p2 = NULL;
3569 }
3570 }
3571 }
3572 }
3573
3574 if (p2 != NULL && !got_int)
3575 {
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003576 difflen = (int)STRLEN(p2) - xp->xp_pattern_len;
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003577 if (ccline.cmdlen + difflen + 4 > ccline.cmdbufflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578 {
Bram Moolenaar673b87b2010-08-13 19:12:07 +02003579 v = realloc_cmdbuff(ccline.cmdlen + difflen + 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 xp->xp_pattern = ccline.cmdbuff + i;
3581 }
3582 else
3583 v = OK;
3584 if (v == OK)
3585 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003586 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen],
3587 &ccline.cmdbuff[ccline.cmdpos],
3588 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
3589 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590 ccline.cmdlen += difflen;
3591 ccline.cmdpos += difflen;
3592 }
3593 }
3594 vim_free(p2);
3595
3596 redrawcmd();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003597 cursorcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598
3599 /* When expanding a ":map" command and no matches are found, assume that
3600 * the key is supposed to be inserted literally */
3601 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL)
3602 return FAIL;
3603
3604 if (xp->xp_numfiles <= 0 && p2 == NULL)
3605 beep_flush();
3606 else if (xp->xp_numfiles == 1)
3607 /* free expanded pattern */
3608 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
3609
3610 return OK;
3611}
3612
3613/*
3614 * Do wildcard expansion on the string 'str'.
3615 * Chars that should not be expanded must be preceded with a backslash.
Bram Moolenaarf9821062008-06-20 16:31:07 +00003616 * Return a pointer to allocated memory containing the new string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 * Return NULL for failure.
3618 *
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003619 * "orig" is the originally expanded string, copied to allocated memory. It
3620 * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or
3621 * WILD_PREV "orig" should be NULL.
3622 *
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003623 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode"
3624 * is WILD_EXPAND_FREE or WILD_ALL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625 *
3626 * mode = WILD_FREE: just free previously expanded matches
3627 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches
3628 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches
3629 * mode = WILD_NEXT: use next match in multiple match, wrap to first
3630 * mode = WILD_PREV: use previous match in multiple match, wrap to first
3631 * mode = WILD_ALL: return all matches concatenated
3632 * mode = WILD_LONGEST: return longest matched part
Bram Moolenaar146e9c32012-03-07 19:18:23 +01003633 * mode = WILD_ALL_KEEP: get all matches, keep matches
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 *
3635 * options = WILD_LIST_NOTFOUND: list entries without a match
3636 * options = WILD_HOME_REPLACE: do home_replace() for buffer names
3637 * options = WILD_USE_NL: Use '\n' for WILD_ALL
3638 * options = WILD_NO_BEEP: Don't beep for multiple matches
3639 * options = WILD_ADD_SLASH: add a slash after directory names
3640 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries
3641 * options = WILD_SILENT: don't print warning messages
3642 * options = WILD_ESCAPE: put backslash before special chars
Bram Moolenaar94950a92010-12-02 16:01:29 +01003643 * options = WILD_ICASE: ignore case for files
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 *
3645 * The variables xp->xp_context and xp->xp_backslash must have been set!
3646 */
3647 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003648ExpandOne(
3649 expand_T *xp,
3650 char_u *str,
3651 char_u *orig, /* allocated copy of original of expanded string */
3652 int options,
3653 int mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654{
3655 char_u *ss = NULL;
3656 static int findex;
3657 static char_u *orig_save = NULL; /* kept value of orig */
Bram Moolenaar96426642007-10-30 16:37:15 +00003658 int orig_saved = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 int i;
3660 long_u len;
3661 int non_suf_match; /* number without matching suffix */
3662
3663 /*
3664 * first handle the case of using an old match
3665 */
3666 if (mode == WILD_NEXT || mode == WILD_PREV)
3667 {
3668 if (xp->xp_numfiles > 0)
3669 {
3670 if (mode == WILD_PREV)
3671 {
3672 if (findex == -1)
3673 findex = xp->xp_numfiles;
3674 --findex;
3675 }
3676 else /* mode == WILD_NEXT */
3677 ++findex;
3678
3679 /*
3680 * When wrapping around, return the original string, set findex to
3681 * -1.
3682 */
3683 if (findex < 0)
3684 {
3685 if (orig_save == NULL)
3686 findex = xp->xp_numfiles - 1;
3687 else
3688 findex = -1;
3689 }
3690 if (findex >= xp->xp_numfiles)
3691 {
3692 if (orig_save == NULL)
3693 findex = 0;
3694 else
3695 findex = -1;
3696 }
3697#ifdef FEAT_WILDMENU
3698 if (p_wmnu)
3699 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files,
3700 findex, cmd_showtail);
3701#endif
3702 if (findex == -1)
3703 return vim_strsave(orig_save);
3704 return vim_strsave(xp->xp_files[findex]);
3705 }
3706 else
3707 return NULL;
3708 }
3709
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003710 /* free old names */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST)
3712 {
3713 FreeWild(xp->xp_numfiles, xp->xp_files);
3714 xp->xp_numfiles = -1;
3715 vim_free(orig_save);
3716 orig_save = NULL;
3717 }
3718 findex = 0;
3719
3720 if (mode == WILD_FREE) /* only release file name */
3721 return NULL;
3722
3723 if (xp->xp_numfiles == -1)
3724 {
3725 vim_free(orig_save);
3726 orig_save = orig;
Bram Moolenaar96426642007-10-30 16:37:15 +00003727 orig_saved = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728
3729 /*
3730 * Do the expansion.
3731 */
3732 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files,
3733 options) == FAIL)
3734 {
3735#ifdef FNAME_ILLEGAL
3736 /* Illegal file name has been silently skipped. But when there
3737 * are wildcards, the real problem is that there was no match,
3738 * causing the pattern to be added, which has illegal characters.
3739 */
3740 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND))
3741 EMSG2(_(e_nomatch2), str);
3742#endif
3743 }
3744 else if (xp->xp_numfiles == 0)
3745 {
3746 if (!(options & WILD_SILENT))
3747 EMSG2(_(e_nomatch2), str);
3748 }
3749 else
3750 {
3751 /* Escape the matches for use on the command line. */
3752 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options);
3753
3754 /*
3755 * Check for matching suffixes in file names.
3756 */
Bram Moolenaar146e9c32012-03-07 19:18:23 +01003757 if (mode != WILD_ALL && mode != WILD_ALL_KEEP
3758 && mode != WILD_LONGEST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 {
3760 if (xp->xp_numfiles)
3761 non_suf_match = xp->xp_numfiles;
3762 else
3763 non_suf_match = 1;
3764 if ((xp->xp_context == EXPAND_FILES
3765 || xp->xp_context == EXPAND_DIRECTORIES)
3766 && xp->xp_numfiles > 1)
3767 {
3768 /*
3769 * More than one match; check suffix.
3770 * The files will have been sorted on matching suffix in
3771 * expand_wildcards, only need to check the first two.
3772 */
3773 non_suf_match = 0;
3774 for (i = 0; i < 2; ++i)
3775 if (match_suffix(xp->xp_files[i]))
3776 ++non_suf_match;
3777 }
3778 if (non_suf_match != 1)
3779 {
3780 /* Can we ever get here unless it's while expanding
3781 * interactively? If not, we can get rid of this all
3782 * together. Don't really want to wait for this message
3783 * (and possibly have to hit return to continue!).
3784 */
3785 if (!(options & WILD_SILENT))
3786 EMSG(_(e_toomany));
3787 else if (!(options & WILD_NO_BEEP))
3788 beep_flush();
3789 }
3790 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE))
3791 ss = vim_strsave(xp->xp_files[0]);
3792 }
3793 }
3794 }
3795
3796 /* Find longest common part */
3797 if (mode == WILD_LONGEST && xp->xp_numfiles > 0)
3798 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003799 int mb_len = 1;
3800 int c0, ci;
3801
3802 for (len = 0; xp->xp_files[0][len]; len += mb_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003804#ifdef FEAT_MBYTE
3805 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003807 mb_len = (*mb_ptr2len)(&xp->xp_files[0][len]);
3808 c0 =(* mb_ptr2char)(&xp->xp_files[0][len]);
3809 }
3810 else
3811#endif
Bram Moolenaare4eda3b2015-11-21 16:28:50 +01003812 c0 = xp->xp_files[0][len];
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003813 for (i = 1; i < xp->xp_numfiles; ++i)
3814 {
3815#ifdef FEAT_MBYTE
3816 if (has_mbyte)
3817 ci =(* mb_ptr2char)(&xp->xp_files[i][len]);
3818 else
3819#endif
3820 ci = xp->xp_files[i][len];
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01003821 if (p_fic && (xp->xp_context == EXPAND_DIRECTORIES
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822 || xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003823 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01003824 || xp->xp_context == EXPAND_BUFFERS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825 {
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003826 if (MB_TOLOWER(c0) != MB_TOLOWER(ci))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827 break;
3828 }
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003829 else if (c0 != ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830 break;
3831 }
3832 if (i < xp->xp_numfiles)
3833 {
3834 if (!(options & WILD_NO_BEEP))
Bram Moolenaar165bc692015-07-21 17:53:25 +02003835 vim_beep(BO_WILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003836 break;
3837 }
3838 }
Bram Moolenaar4f8fa162015-11-19 19:00:05 +01003839
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840 ss = alloc((unsigned)len + 1);
3841 if (ss)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003842 vim_strncpy(ss, xp->xp_files[0], (size_t)len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003843 findex = -1; /* next p_wc gets first one */
3844 }
3845
3846 /* Concatenate all matching names */
3847 if (mode == WILD_ALL && xp->xp_numfiles > 0)
3848 {
3849 len = 0;
3850 for (i = 0; i < xp->xp_numfiles; ++i)
3851 len += (long_u)STRLEN(xp->xp_files[i]) + 1;
3852 ss = lalloc(len, TRUE);
3853 if (ss != NULL)
3854 {
3855 *ss = NUL;
3856 for (i = 0; i < xp->xp_numfiles; ++i)
3857 {
3858 STRCAT(ss, xp->xp_files[i]);
3859 if (i != xp->xp_numfiles - 1)
3860 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " ");
3861 }
3862 }
3863 }
3864
3865 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL)
3866 ExpandCleanup(xp);
3867
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003868 /* Free "orig" if it wasn't stored in "orig_save". */
Bram Moolenaar96426642007-10-30 16:37:15 +00003869 if (!orig_saved)
Bram Moolenaarecf4de52007-09-30 20:11:26 +00003870 vim_free(orig);
3871
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872 return ss;
3873}
3874
3875/*
3876 * Prepare an expand structure for use.
3877 */
3878 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003879ExpandInit(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880{
Bram Moolenaard6e7cc62008-09-14 12:42:29 +00003881 xp->xp_pattern = NULL;
Bram Moolenaar67b891e2009-09-18 15:25:52 +00003882 xp->xp_pattern_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003884#ifndef BACKSLASH_IN_FILENAME
3885 xp->xp_shell = FALSE;
3886#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887 xp->xp_numfiles = -1;
3888 xp->xp_files = NULL;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003889#if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
3890 xp->xp_arg = NULL;
3891#endif
Bram Moolenaarb7515462013-06-29 12:58:33 +02003892 xp->xp_line = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893}
3894
3895/*
3896 * Cleanup an expand structure after use.
3897 */
3898 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003899ExpandCleanup(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900{
3901 if (xp->xp_numfiles >= 0)
3902 {
3903 FreeWild(xp->xp_numfiles, xp->xp_files);
3904 xp->xp_numfiles = -1;
3905 }
3906}
3907
3908 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003909ExpandEscape(
3910 expand_T *xp,
3911 char_u *str,
3912 int numfiles,
3913 char_u **files,
3914 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915{
3916 int i;
3917 char_u *p;
3918
3919 /*
3920 * May change home directory back to "~"
3921 */
3922 if (options & WILD_HOME_REPLACE)
3923 tilde_replace(str, numfiles, files);
3924
3925 if (options & WILD_ESCAPE)
3926 {
3927 if (xp->xp_context == EXPAND_FILES
Bram Moolenaarcca92ec2011-04-28 17:21:53 +02003928 || xp->xp_context == EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003929 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930 || xp->xp_context == EXPAND_BUFFERS
3931 || xp->xp_context == EXPAND_DIRECTORIES)
3932 {
3933 /*
3934 * Insert a backslash into a file name before a space, \, %, #
3935 * and wildmatch characters, except '~'.
3936 */
3937 for (i = 0; i < numfiles; ++i)
3938 {
3939 /* for ":set path=" we need to escape spaces twice */
3940 if (xp->xp_backslash == XP_BS_THREE)
3941 {
3942 p = vim_strsave_escaped(files[i], (char_u *)" ");
3943 if (p != NULL)
3944 {
3945 vim_free(files[i]);
3946 files[i] = p;
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003947#if defined(BACKSLASH_IN_FILENAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 p = vim_strsave_escaped(files[i], (char_u *)" ");
3949 if (p != NULL)
3950 {
3951 vim_free(files[i]);
3952 files[i] = p;
3953 }
3954#endif
3955 }
3956 }
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00003957#ifdef BACKSLASH_IN_FILENAME
3958 p = vim_strsave_fnameescape(files[i], FALSE);
3959#else
Bram Moolenaaraebaf892008-05-28 14:49:58 +00003960 p = vim_strsave_fnameescape(files[i], xp->xp_shell);
Bram Moolenaar0356c8c2008-05-28 20:02:48 +00003961#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962 if (p != NULL)
3963 {
3964 vim_free(files[i]);
3965 files[i] = p;
3966 }
3967
3968 /* If 'str' starts with "\~", replace "~" at start of
3969 * files[i] with "\~". */
3970 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~')
Bram Moolenaar45360022005-07-21 21:08:21 +00003971 escape_fname(&files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 }
3973 xp->xp_backslash = XP_BS_NONE;
Bram Moolenaar45360022005-07-21 21:08:21 +00003974
3975 /* If the first file starts with a '+' escape it. Otherwise it
3976 * could be seen as "+cmd". */
3977 if (*files[0] == '+')
3978 escape_fname(&files[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979 }
3980 else if (xp->xp_context == EXPAND_TAGS)
3981 {
3982 /*
3983 * Insert a backslash before characters in a tag name that
3984 * would terminate the ":tag" command.
3985 */
3986 for (i = 0; i < numfiles; ++i)
3987 {
3988 p = vim_strsave_escaped(files[i], (char_u *)"\\|\"");
3989 if (p != NULL)
3990 {
3991 vim_free(files[i]);
3992 files[i] = p;
3993 }
3994 }
3995 }
3996 }
3997}
3998
3999/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004000 * Escape special characters in "fname" for when used as a file name argument
4001 * after a Vim command, or, when "shell" is non-zero, a shell command.
4002 * Returns the result in allocated memory.
4003 */
4004 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004005vim_strsave_fnameescape(char_u *fname, int shell)
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004006{
Bram Moolenaar7693ec62008-07-24 18:29:37 +00004007 char_u *p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004008#ifdef BACKSLASH_IN_FILENAME
4009 char_u buf[20];
4010 int j = 0;
4011
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01004012 /* Don't escape '[', '{' and '!' if they are in 'isfname'. */
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004013 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
Bram Moolenaar8f5610d2013-11-12 05:28:26 +01004014 if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p))
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004015 buf[j++] = *p;
4016 buf[j] = NUL;
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004017 p = vim_strsave_escaped(fname, buf);
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004018#else
Bram Moolenaar7693ec62008-07-24 18:29:37 +00004019 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
4020 if (shell && csh_like_shell() && p != NULL)
4021 {
4022 char_u *s;
4023
4024 /* For csh and similar shells need to put two backslashes before '!'.
4025 * One is taken by Vim, one by the shell. */
4026 s = vim_strsave_escaped(p, (char_u *)"!");
4027 vim_free(p);
4028 p = s;
4029 }
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004030#endif
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004031
4032 /* '>' and '+' are special at the start of some commands, e.g. ":edit" and
4033 * ":write". "cd -" has a special meaning. */
Bram Moolenaara9d52e32010-07-31 16:44:19 +02004034 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL)))
Bram Moolenaar1b24e4b2008-08-08 10:59:17 +00004035 escape_fname(&p);
4036
4037 return p;
Bram Moolenaaraebaf892008-05-28 14:49:58 +00004038}
4039
4040/*
Bram Moolenaar45360022005-07-21 21:08:21 +00004041 * Put a backslash before the file name in "pp", which is in allocated memory.
4042 */
4043 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004044escape_fname(char_u **pp)
Bram Moolenaar45360022005-07-21 21:08:21 +00004045{
4046 char_u *p;
4047
4048 p = alloc((unsigned)(STRLEN(*pp) + 2));
4049 if (p != NULL)
4050 {
4051 p[0] = '\\';
4052 STRCPY(p + 1, *pp);
4053 vim_free(*pp);
4054 *pp = p;
4055 }
4056}
4057
4058/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059 * For each file name in files[num_files]:
4060 * If 'orig_pat' starts with "~/", replace the home directory with "~".
4061 */
4062 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004063tilde_replace(
4064 char_u *orig_pat,
4065 int num_files,
4066 char_u **files)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067{
4068 int i;
4069 char_u *p;
4070
4071 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
4072 {
4073 for (i = 0; i < num_files; ++i)
4074 {
4075 p = home_replace_save(NULL, files[i]);
4076 if (p != NULL)
4077 {
4078 vim_free(files[i]);
4079 files[i] = p;
4080 }
4081 }
4082 }
4083}
4084
4085/*
4086 * Show all matches for completion on the command line.
4087 * Returns EXPAND_NOTHING when the character that triggered expansion should
4088 * be inserted like a normal character.
4089 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004091showmatches(expand_T *xp, int wildmenu UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092{
4093#define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m])
4094 int num_files;
4095 char_u **files_found;
4096 int i, j, k;
4097 int maxlen;
4098 int lines;
4099 int columns;
4100 char_u *p;
4101 int lastlen;
4102 int attr;
4103 int showtail;
4104
4105 if (xp->xp_numfiles == -1)
4106 {
4107 set_expand_context(xp);
4108 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos,
4109 &num_files, &files_found);
4110 showtail = expand_showtail(xp);
4111 if (i != EXPAND_OK)
4112 return i;
4113
4114 }
4115 else
4116 {
4117 num_files = xp->xp_numfiles;
4118 files_found = xp->xp_files;
4119 showtail = cmd_showtail;
4120 }
4121
4122#ifdef FEAT_WILDMENU
4123 if (!wildmenu)
4124 {
4125#endif
4126 msg_didany = FALSE; /* lines_left will be set */
4127 msg_start(); /* prepare for paging */
4128 msg_putchar('\n');
4129 out_flush();
4130 cmdline_row = msg_row;
4131 msg_didany = FALSE; /* lines_left will be set again */
4132 msg_start(); /* prepare for paging */
4133#ifdef FEAT_WILDMENU
4134 }
4135#endif
4136
4137 if (got_int)
4138 got_int = FALSE; /* only int. the completion, not the cmd line */
4139#ifdef FEAT_WILDMENU
4140 else if (wildmenu)
4141 win_redr_status_matches(xp, num_files, files_found, 0, showtail);
4142#endif
4143 else
4144 {
4145 /* find the length of the longest file name */
4146 maxlen = 0;
4147 for (i = 0; i < num_files; ++i)
4148 {
4149 if (!showtail && (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004150 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 || xp->xp_context == EXPAND_BUFFERS))
4152 {
4153 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE);
4154 j = vim_strsize(NameBuff);
4155 }
4156 else
4157 j = vim_strsize(L_SHOWFILE(i));
4158 if (j > maxlen)
4159 maxlen = j;
4160 }
4161
4162 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4163 lines = num_files;
4164 else
4165 {
4166 /* compute the number of columns and lines for the listing */
4167 maxlen += 2; /* two spaces between file names */
4168 columns = ((int)Columns + 2) / maxlen;
4169 if (columns < 1)
4170 columns = 1;
4171 lines = (num_files + columns - 1) / columns;
4172 }
4173
4174 attr = hl_attr(HLF_D); /* find out highlighting for directories */
4175
4176 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4177 {
4178 MSG_PUTS_ATTR(_("tagname"), hl_attr(HLF_T));
4179 msg_clr_eos();
4180 msg_advance(maxlen - 3);
4181 MSG_PUTS_ATTR(_(" kind file\n"), hl_attr(HLF_T));
4182 }
4183
4184 /* list the files line by line */
4185 for (i = 0; i < lines; ++i)
4186 {
4187 lastlen = 999;
4188 for (k = i; k < num_files; k += lines)
4189 {
4190 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
4191 {
4192 msg_outtrans_attr(files_found[k], hl_attr(HLF_D));
4193 p = files_found[k] + STRLEN(files_found[k]) + 1;
4194 msg_advance(maxlen + 1);
4195 msg_puts(p);
4196 msg_advance(maxlen + 3);
4197 msg_puts_long_attr(p + 2, hl_attr(HLF_D));
4198 break;
4199 }
4200 for (j = maxlen - lastlen; --j >= 0; )
4201 msg_putchar(' ');
4202 if (xp->xp_context == EXPAND_FILES
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004203 || xp->xp_context == EXPAND_SHELLCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204 || xp->xp_context == EXPAND_BUFFERS)
4205 {
Bram Moolenaarb91e59b2010-03-17 19:13:27 +01004206 /* highlight directories */
Bram Moolenaar63fa5262010-03-23 18:06:52 +01004207 if (xp->xp_numfiles != -1)
4208 {
4209 char_u *halved_slash;
4210 char_u *exp_path;
4211
4212 /* Expansion was done before and special characters
4213 * were escaped, need to halve backslashes. Also
4214 * $HOME has been replaced with ~/. */
4215 exp_path = expand_env_save_opt(files_found[k], TRUE);
4216 halved_slash = backslash_halve_save(
4217 exp_path != NULL ? exp_path : files_found[k]);
4218 j = mch_isdir(halved_slash != NULL ? halved_slash
4219 : files_found[k]);
4220 vim_free(exp_path);
4221 vim_free(halved_slash);
4222 }
4223 else
4224 /* Expansion was done here, file names are literal. */
4225 j = mch_isdir(files_found[k]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 if (showtail)
4227 p = L_SHOWFILE(k);
4228 else
4229 {
4230 home_replace(NULL, files_found[k], NameBuff, MAXPATHL,
4231 TRUE);
4232 p = NameBuff;
4233 }
4234 }
4235 else
4236 {
4237 j = FALSE;
4238 p = L_SHOWFILE(k);
4239 }
4240 lastlen = msg_outtrans_attr(p, j ? attr : 0);
4241 }
4242 if (msg_col > 0) /* when not wrapped around */
4243 {
4244 msg_clr_eos();
4245 msg_putchar('\n');
4246 }
4247 out_flush(); /* show one line at a time */
4248 if (got_int)
4249 {
4250 got_int = FALSE;
4251 break;
4252 }
4253 }
4254
4255 /*
4256 * we redraw the command below the lines that we have just listed
4257 * This is a bit tricky, but it saves a lot of screen updating.
4258 */
4259 cmdline_row = msg_row; /* will put it back later */
4260 }
4261
4262 if (xp->xp_numfiles == -1)
4263 FreeWild(num_files, files_found);
4264
4265 return EXPAND_OK;
4266}
4267
4268/*
4269 * Private gettail for showmatches() (and win_redr_status_matches()):
4270 * Find tail of file name path, but ignore trailing "/".
4271 */
4272 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004273sm_gettail(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274{
4275 char_u *p;
4276 char_u *t = s;
4277 int had_sep = FALSE;
4278
4279 for (p = s; *p != NUL; )
4280 {
4281 if (vim_ispathsep(*p)
4282#ifdef BACKSLASH_IN_FILENAME
4283 && !rem_backslash(p)
4284#endif
4285 )
4286 had_sep = TRUE;
4287 else if (had_sep)
4288 {
4289 t = p;
4290 had_sep = FALSE;
4291 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004292 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293 }
4294 return t;
4295}
4296
4297/*
4298 * Return TRUE if we only need to show the tail of completion matches.
4299 * When not completing file names or there is a wildcard in the path FALSE is
4300 * returned.
4301 */
4302 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004303expand_showtail(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304{
4305 char_u *s;
4306 char_u *end;
4307
4308 /* When not completing file names a "/" may mean something different. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004309 if (xp->xp_context != EXPAND_FILES
4310 && xp->xp_context != EXPAND_SHELLCMD
4311 && xp->xp_context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004312 return FALSE;
4313
4314 end = gettail(xp->xp_pattern);
4315 if (end == xp->xp_pattern) /* there is no path separator */
4316 return FALSE;
4317
4318 for (s = xp->xp_pattern; s < end; s++)
4319 {
4320 /* Skip escaped wildcards. Only when the backslash is not a path
4321 * separator, on DOS the '*' "path\*\file" must not be skipped. */
4322 if (rem_backslash(s))
4323 ++s;
4324 else if (vim_strchr((char_u *)"*?[", *s) != NULL)
4325 return FALSE;
4326 }
4327 return TRUE;
4328}
4329
4330/*
4331 * Prepare a string for expansion.
4332 * When expanding file names: The string will be used with expand_wildcards().
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004333 * Copy "fname[len]" into allocated memory and add a '*' at the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 * When expanding other names: The string will be used with regcomp(). Copy
4335 * the name into allocated memory and prepend "^".
4336 */
4337 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004338addstar(
4339 char_u *fname,
4340 int len,
4341 int context) /* EXPAND_FILES etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004342{
4343 char_u *retval;
4344 int i, j;
4345 int new_len;
4346 char_u *tail;
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004347 int ends_in_star;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004349 if (context != EXPAND_FILES
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004350 && context != EXPAND_FILES_IN_PATH
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004351 && context != EXPAND_SHELLCMD
4352 && context != EXPAND_DIRECTORIES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353 {
4354 /*
4355 * Matching will be done internally (on something other than files).
4356 * So we convert the file-matching-type wildcards into our kind for
4357 * use with vim_regcomp(). First work out how long it will be:
4358 */
4359
4360 /* For help tags the translation is done in find_help_tags().
4361 * For a tag pattern starting with "/" no translation is needed. */
4362 if (context == EXPAND_HELP
4363 || context == EXPAND_COLORS
4364 || context == EXPAND_COMPILER
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004365 || context == EXPAND_OWNSYNTAX
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004366 || context == EXPAND_FILETYPE
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01004367 || context == EXPAND_PACKADD
Bram Moolenaarba47b512017-01-24 21:18:19 +01004368 || ((context == EXPAND_TAGS_LISTFILES
4369 || context == EXPAND_TAGS)
4370 && fname[0] == '/'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371 retval = vim_strnsave(fname, len);
4372 else
4373 {
4374 new_len = len + 2; /* +2 for '^' at start, NUL at end */
4375 for (i = 0; i < len; i++)
4376 {
4377 if (fname[i] == '*' || fname[i] == '~')
4378 new_len++; /* '*' needs to be replaced by ".*"
4379 '~' needs to be replaced by "\~" */
4380
4381 /* Buffer names are like file names. "." should be literal */
4382 if (context == EXPAND_BUFFERS && fname[i] == '.')
4383 new_len++; /* "." becomes "\." */
4384
4385 /* Custom expansion takes care of special things, match
4386 * backslashes literally (perhaps also for other types?) */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004387 if ((context == EXPAND_USER_DEFINED
4388 || context == EXPAND_USER_LIST) && fname[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004389 new_len++; /* '\' becomes "\\" */
4390 }
4391 retval = alloc(new_len);
4392 if (retval != NULL)
4393 {
4394 retval[0] = '^';
4395 j = 1;
4396 for (i = 0; i < len; i++, j++)
4397 {
4398 /* Skip backslash. But why? At least keep it for custom
4399 * expansion. */
4400 if (context != EXPAND_USER_DEFINED
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004401 && context != EXPAND_USER_LIST
4402 && fname[i] == '\\'
4403 && ++i == len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004404 break;
4405
4406 switch (fname[i])
4407 {
4408 case '*': retval[j++] = '.';
4409 break;
4410 case '~': retval[j++] = '\\';
4411 break;
4412 case '?': retval[j] = '.';
4413 continue;
4414 case '.': if (context == EXPAND_BUFFERS)
4415 retval[j++] = '\\';
4416 break;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004417 case '\\': if (context == EXPAND_USER_DEFINED
4418 || context == EXPAND_USER_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004419 retval[j++] = '\\';
4420 break;
4421 }
4422 retval[j] = fname[i];
4423 }
4424 retval[j] = NUL;
4425 }
4426 }
4427 }
4428 else
4429 {
4430 retval = alloc(len + 4);
4431 if (retval != NULL)
4432 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004433 vim_strncpy(retval, fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434
4435 /*
Bram Moolenaarc6249bb2006-04-15 20:25:09 +00004436 * Don't add a star to *, ~, ~user, $var or `cmd`.
4437 * * would become **, which walks the whole tree.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438 * ~ would be at the start of the file name, but not the tail.
4439 * $ could be anywhere in the tail.
4440 * ` could be anywhere in the file name.
Bram Moolenaar066b6222008-01-04 14:17:47 +00004441 * When the name ends in '$' don't add a star, remove the '$'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442 */
4443 tail = gettail(retval);
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004444 ends_in_star = (len > 0 && retval[len - 1] == '*');
4445#ifndef BACKSLASH_IN_FILENAME
4446 for (i = len - 2; i >= 0; --i)
4447 {
4448 if (retval[i] != '\\')
4449 break;
4450 ends_in_star = !ends_in_star;
4451 }
4452#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 if ((*retval != '~' || tail != retval)
Bram Moolenaar8cd213c2010-06-01 21:57:09 +02004454 && !ends_in_star
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 && vim_strchr(tail, '$') == NULL
4456 && vim_strchr(retval, '`') == NULL)
4457 retval[len++] = '*';
Bram Moolenaar066b6222008-01-04 14:17:47 +00004458 else if (len > 0 && retval[len - 1] == '$')
4459 --len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460 retval[len] = NUL;
4461 }
4462 }
4463 return retval;
4464}
4465
4466/*
4467 * Must parse the command line so far to work out what context we are in.
4468 * Completion can then be done based on that context.
4469 * This routine sets the variables:
4470 * xp->xp_pattern The start of the pattern to be expanded within
4471 * the command line (ends at the cursor).
4472 * xp->xp_context The type of thing to expand. Will be one of:
4473 *
4474 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on
4475 * the command line, like an unknown command. Caller
4476 * should beep.
4477 * EXPAND_NOTHING Unrecognised context for completion, use char like
4478 * a normal char, rather than for completion. eg
4479 * :s/^I/
4480 * EXPAND_COMMANDS Cursor is still touching the command, so complete
4481 * it.
4482 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands.
4483 * EXPAND_FILES After command with XFILE set, or after setting
4484 * with P_EXPAND set. eg :e ^I, :w>>^I
4485 * EXPAND_DIRECTORIES In some cases this is used instead of the latter
4486 * when we know only directories are of interest. eg
4487 * :set dir=^I
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004488 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489 * EXPAND_SETTINGS Complete variable names. eg :set d^I
4490 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I
4491 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I
4492 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect
4493 * EXPAND_HELP Complete tags from the file 'helpfile'/tags
4494 * EXPAND_EVENTS Complete event names
4495 * EXPAND_SYNTAX Complete :syntax command arguments
4496 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names
4497 * EXPAND_AUGROUP Complete autocommand group names
4498 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I
4499 * EXPAND_MAPPINGS Complete mapping and abbreviation names,
4500 * eg :unmap a^I , :cunab x^I
4501 * EXPAND_FUNCTIONS Complete internal or user defined function names,
4502 * eg :call sub^I
4503 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I
4504 * EXPAND_EXPRESSION Complete internal or user defined function/variable
4505 * names in expressions, eg :while s^I
4506 * EXPAND_ENV_VARS Complete environment variable names
Bram Moolenaar24305862012-08-15 14:05:05 +02004507 * EXPAND_USER Complete user names
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 */
4509 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004510set_expand_context(expand_T *xp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004511{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004512 /* only expansion for ':', '>' and '=' command-lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513 if (ccline.cmdfirstc != ':'
4514#ifdef FEAT_EVAL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004515 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '='
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004516 && !ccline.input_fn
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517#endif
4518 )
4519 {
4520 xp->xp_context = EXPAND_NOTHING;
4521 return;
4522 }
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004523 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524}
4525
4526 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004527set_cmd_context(
4528 expand_T *xp,
4529 char_u *str, /* start of command line */
4530 int len, /* length of command line (excl. NUL) */
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004531 int col, /* position of cursor */
4532 int use_ccline UNUSED) /* use ccline for info */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533{
4534 int old_char = NUL;
4535 char_u *nextcomm;
4536
4537 /*
4538 * Avoid a UMR warning from Purify, only save the character if it has been
4539 * written before.
4540 */
4541 if (col < len)
4542 old_char = str[col];
4543 str[col] = NUL;
4544 nextcomm = str;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004545
4546#ifdef FEAT_EVAL
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004547 if (use_ccline && ccline.cmdfirstc == '=')
Bram Moolenaar4f688582007-07-24 12:34:30 +00004548 {
4549# ifdef FEAT_CMDL_COMPL
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004550 /* pass CMD_SIZE because there is no real command */
4551 set_context_for_expression(xp, str, CMD_SIZE);
Bram Moolenaar4f688582007-07-24 12:34:30 +00004552# endif
4553 }
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02004554 else if (use_ccline && ccline.input_fn)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004555 {
4556 xp->xp_context = ccline.xp_context;
4557 xp->xp_pattern = ccline.cmdbuff;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004558# if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004559 xp->xp_arg = ccline.xp_arg;
Bram Moolenaar4f688582007-07-24 12:34:30 +00004560# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004561 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004562 else
4563#endif
4564 while (nextcomm != NULL)
4565 nextcomm = set_one_cmd_context(xp, nextcomm);
4566
Bram Moolenaara4c8dcb2013-06-30 12:21:24 +02004567 /* Store the string here so that call_user_expand_func() can get to them
4568 * easily. */
4569 xp->xp_line = str;
4570 xp->xp_col = col;
4571
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572 str[col] = old_char;
4573}
4574
4575/*
4576 * Expand the command line "str" from context "xp".
4577 * "xp" must have been set by set_cmd_context().
4578 * xp->xp_pattern points into "str", to where the text that is to be expanded
4579 * starts.
4580 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the
4581 * cursor.
4582 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the
4583 * key that triggered expansion literally.
4584 * Returns EXPAND_OK otherwise.
4585 */
4586 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004587expand_cmdline(
4588 expand_T *xp,
4589 char_u *str, /* start of command line */
4590 int col, /* position of cursor */
4591 int *matchcount, /* return: nr of matches */
4592 char_u ***matches) /* return: array of pointers to matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593{
4594 char_u *file_str = NULL;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004595 int options = WILD_ADD_SLASH|WILD_SILENT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596
4597 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
4598 {
4599 beep_flush();
4600 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */
4601 }
4602 if (xp->xp_context == EXPAND_NOTHING)
4603 {
4604 /* Caller can use the character as a normal char instead */
4605 return EXPAND_NOTHING;
4606 }
4607
4608 /* add star to file name, or convert to regexp if not exp. files. */
Bram Moolenaar67b891e2009-09-18 15:25:52 +00004609 xp->xp_pattern_len = (int)(str + col - xp->xp_pattern);
4610 file_str = addstar(xp->xp_pattern, xp->xp_pattern_len, xp->xp_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611 if (file_str == NULL)
4612 return EXPAND_UNSUCCESSFUL;
4613
Bram Moolenaar94950a92010-12-02 16:01:29 +01004614 if (p_wic)
4615 options += WILD_ICASE;
4616
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 /* find all files that match the description */
Bram Moolenaar94950a92010-12-02 16:01:29 +01004618 if (ExpandFromContext(xp, file_str, matchcount, matches, options) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619 {
4620 *matchcount = 0;
4621 *matches = NULL;
4622 }
4623 vim_free(file_str);
4624
4625 return EXPAND_OK;
4626}
4627
4628#ifdef FEAT_MULTI_LANG
4629/*
Bram Moolenaar61264d92016-03-28 19:59:02 +02004630 * Cleanup matches for help tags:
4631 * Remove "@ab" if the top of 'helplang' is "ab" and the language of the first
4632 * tag matches it. Otherwise remove "@en" if "en" is the only language.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633 */
Bram Moolenaard25c16e2016-01-29 22:13:30 +01004634static void cleanup_help_tags(int num_file, char_u **file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635
4636 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004637cleanup_help_tags(int num_file, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638{
4639 int i, j;
4640 int len;
Bram Moolenaar61264d92016-03-28 19:59:02 +02004641 char_u buf[4];
4642 char_u *p = buf;
4643
Bram Moolenaar89c79b92016-05-05 17:18:41 +02004644 if (p_hlg[0] != NUL && (p_hlg[0] != 'e' || p_hlg[1] != 'n'))
Bram Moolenaar61264d92016-03-28 19:59:02 +02004645 {
4646 *p++ = '@';
4647 *p++ = p_hlg[0];
4648 *p++ = p_hlg[1];
4649 }
4650 *p = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651
4652 for (i = 0; i < num_file; ++i)
4653 {
4654 len = (int)STRLEN(file[i]) - 3;
Bram Moolenaar61264d92016-03-28 19:59:02 +02004655 if (len <= 0)
4656 continue;
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02004657 if (STRCMP(file[i] + len, "@en") == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658 {
4659 /* Sorting on priority means the same item in another language may
4660 * be anywhere. Search all items for a match up to the "@en". */
4661 for (j = 0; j < num_file; ++j)
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02004662 if (j != i && (int)STRLEN(file[j]) == len + 3
4663 && STRNCMP(file[i], file[j], len + 1) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004664 break;
4665 if (j == num_file)
Bram Moolenaar89c79b92016-05-05 17:18:41 +02004666 /* item only exists with @en, remove it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667 file[i][len] = NUL;
4668 }
4669 }
Bram Moolenaar9ccaae02016-05-07 18:36:48 +02004670
4671 if (*buf != NUL)
4672 for (i = 0; i < num_file; ++i)
4673 {
4674 len = (int)STRLEN(file[i]) - 3;
4675 if (len <= 0)
4676 continue;
4677 if (STRCMP(file[i] + len, buf) == 0)
4678 {
4679 /* remove the default language */
4680 file[i][len] = NUL;
4681 }
4682 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683}
4684#endif
4685
4686/*
4687 * Do the expansion based on xp->xp_context and "pat".
4688 */
4689 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004690ExpandFromContext(
4691 expand_T *xp,
4692 char_u *pat,
4693 int *num_file,
4694 char_u ***file,
4695 int options) /* EW_ flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696{
4697#ifdef FEAT_CMDL_COMPL
4698 regmatch_T regmatch;
4699#endif
4700 int ret;
4701 int flags;
4702
4703 flags = EW_DIR; /* include directories */
4704 if (options & WILD_LIST_NOTFOUND)
4705 flags |= EW_NOTFOUND;
4706 if (options & WILD_ADD_SLASH)
4707 flags |= EW_ADDSLASH;
4708 if (options & WILD_KEEP_ALL)
4709 flags |= EW_KEEPALL;
4710 if (options & WILD_SILENT)
4711 flags |= EW_SILENT;
Bram Moolenaara245bc72015-03-05 19:35:25 +01004712 if (options & WILD_ALLLINKS)
4713 flags |= EW_ALLLINKS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004715 if (xp->xp_context == EXPAND_FILES
4716 || xp->xp_context == EXPAND_DIRECTORIES
4717 || xp->xp_context == EXPAND_FILES_IN_PATH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004718 {
4719 /*
4720 * Expand file or directory names.
4721 */
4722 int free_pat = FALSE;
4723 int i;
4724
4725 /* for ":set path=" and ":set tags=" halve backslashes for escaped
4726 * space */
4727 if (xp->xp_backslash != XP_BS_NONE)
4728 {
4729 free_pat = TRUE;
4730 pat = vim_strsave(pat);
4731 for (i = 0; pat[i]; ++i)
4732 if (pat[i] == '\\')
4733 {
4734 if (xp->xp_backslash == XP_BS_THREE
4735 && pat[i + 1] == '\\'
4736 && pat[i + 2] == '\\'
4737 && pat[i + 3] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004738 STRMOVE(pat + i, pat + i + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739 if (xp->xp_backslash == XP_BS_ONE
4740 && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00004741 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 }
4743 }
4744
4745 if (xp->xp_context == EXPAND_FILES)
4746 flags |= EW_FILE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004747 else if (xp->xp_context == EXPAND_FILES_IN_PATH)
4748 flags |= (EW_FILE | EW_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004749 else
4750 flags = (flags | EW_DIR) & ~EW_FILE;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004751 if (options & WILD_ICASE)
4752 flags |= EW_ICASE;
4753
Bram Moolenaard7834d32009-12-02 16:14:36 +00004754 /* Expand wildcards, supporting %:h and the like. */
4755 ret = expand_wildcards_eval(&pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756 if (free_pat)
4757 vim_free(pat);
4758 return ret;
4759 }
4760
4761 *file = (char_u **)"";
4762 *num_file = 0;
4763 if (xp->xp_context == EXPAND_HELP)
4764 {
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00004765 /* With an empty argument we would get all the help tags, which is
4766 * very slow. Get matches for "help" instead. */
4767 if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat,
4768 num_file, file, FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769 {
4770#ifdef FEAT_MULTI_LANG
4771 cleanup_help_tags(*num_file, *file);
4772#endif
4773 return OK;
4774 }
4775 return FAIL;
4776 }
4777
4778#ifndef FEAT_CMDL_COMPL
4779 return FAIL;
4780#else
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004781 if (xp->xp_context == EXPAND_SHELLCMD)
4782 return expand_shellcmd(pat, num_file, file, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004783 if (xp->xp_context == EXPAND_OLD_SETTING)
4784 return ExpandOldSetting(num_file, file);
4785 if (xp->xp_context == EXPAND_BUFFERS)
4786 return ExpandBufnames(pat, num_file, file, options);
4787 if (xp->xp_context == EXPAND_TAGS
4788 || xp->xp_context == EXPAND_TAGS_LISTFILES)
4789 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file);
4790 if (xp->xp_context == EXPAND_COLORS)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004791 {
4792 char *directories[] = {"colors", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004793 return ExpandRTDir(pat, DIP_START + DIP_OPT, num_file, file,
4794 directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004795 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796 if (xp->xp_context == EXPAND_COMPILER)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004797 {
Bram Moolenaara627c962011-09-30 16:23:32 +02004798 char *directories[] = {"compiler", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004799 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004800 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004801 if (xp->xp_context == EXPAND_OWNSYNTAX)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004802 {
4803 char *directories[] = {"syntax", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004804 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004805 }
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004806 if (xp->xp_context == EXPAND_FILETYPE)
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004807 {
4808 char *directories[] = {"syntax", "indent", "ftplugin", NULL};
Bram Moolenaar52f9c192016-03-13 13:24:45 +01004809 return ExpandRTDir(pat, 0, num_file, file, directories);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02004810 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004811# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4812 if (xp->xp_context == EXPAND_USER_LIST)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004813 return ExpandUserList(xp, num_file, file);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004814# endif
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01004815 if (xp->xp_context == EXPAND_PACKADD)
4816 return ExpandPackAddDir(pat, num_file, file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817
4818 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4819 if (regmatch.regprog == NULL)
4820 return FAIL;
4821
4822 /* set ignore-case according to p_ic, p_scs and pat */
4823 regmatch.rm_ic = ignorecase(pat);
4824
4825 if (xp->xp_context == EXPAND_SETTINGS
4826 || xp->xp_context == EXPAND_BOOL_SETTINGS)
4827 ret = ExpandSettings(xp, &regmatch, num_file, file);
4828 else if (xp->xp_context == EXPAND_MAPPINGS)
4829 ret = ExpandMappings(&regmatch, num_file, file);
4830# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
4831 else if (xp->xp_context == EXPAND_USER_DEFINED)
4832 ret = ExpandUserDefined(xp, &regmatch, num_file, file);
4833# endif
4834 else
4835 {
4836 static struct expgen
4837 {
4838 int context;
Bram Moolenaard99df422016-01-29 23:20:40 +01004839 char_u *((*func)(expand_T *, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 int ic;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004841 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842 } tab[] =
4843 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004844 {EXPAND_COMMANDS, get_command_name, FALSE, TRUE},
4845 {EXPAND_BEHAVE, get_behave_arg, TRUE, TRUE},
Bram Moolenaar9e507ca2016-10-15 15:39:39 +02004846 {EXPAND_MESSAGES, get_messages_arg, TRUE, TRUE},
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004847#ifdef FEAT_CMDHIST
4848 {EXPAND_HISTORY, get_history_arg, TRUE, TRUE},
4849#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850#ifdef FEAT_USR_CMDS
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004851 {EXPAND_USER_COMMANDS, get_user_commands, FALSE, TRUE},
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004852 {EXPAND_USER_ADDR_TYPE, get_user_cmd_addr_type, FALSE, TRUE},
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004853 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE, TRUE},
4854 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE, TRUE},
4855 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856#endif
4857#ifdef FEAT_EVAL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004858 {EXPAND_USER_VARS, get_user_var_name, FALSE, TRUE},
4859 {EXPAND_FUNCTIONS, get_function_name, FALSE, TRUE},
4860 {EXPAND_USER_FUNC, get_user_func_name, FALSE, TRUE},
4861 {EXPAND_EXPRESSION, get_expr_name, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862#endif
4863#ifdef FEAT_MENU
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004864 {EXPAND_MENUS, get_menu_name, FALSE, TRUE},
4865 {EXPAND_MENUNAMES, get_menu_names, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866#endif
4867#ifdef FEAT_SYN_HL
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004868 {EXPAND_SYNTAX, get_syntax_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869#endif
Bram Moolenaarcd9c4622013-06-08 15:24:48 +02004870#ifdef FEAT_PROFILE
4871 {EXPAND_SYNTIME, get_syntime_arg, TRUE, TRUE},
4872#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004873 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874#ifdef FEAT_AUTOCMD
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004875 {EXPAND_EVENTS, get_event_name, TRUE, TRUE},
4876 {EXPAND_AUGROUP, get_augroup_name, TRUE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877#endif
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004878#ifdef FEAT_CSCOPE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004879 {EXPAND_CSCOPE, get_cscope_name, TRUE, TRUE},
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004880#endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004881#ifdef FEAT_SIGNS
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004882 {EXPAND_SIGN, get_sign_name, TRUE, TRUE},
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004883#endif
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004884#ifdef FEAT_PROFILE
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004885 {EXPAND_PROFILE, get_profile_name, TRUE, TRUE},
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004886#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
4888 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004889 {EXPAND_LANGUAGE, get_lang_arg, TRUE, FALSE},
4890 {EXPAND_LOCALES, get_locales, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004891#endif
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004892 {EXPAND_ENV_VARS, get_env_name, TRUE, TRUE},
Bram Moolenaar24305862012-08-15 14:05:05 +02004893 {EXPAND_USER, get_users, TRUE, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00004894 };
4895 int i;
4896
4897 /*
4898 * Find a context in the table and call the ExpandGeneric() with the
4899 * right function to do the expansion.
4900 */
4901 ret = FAIL;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00004902 for (i = 0; i < (int)(sizeof(tab) / sizeof(struct expgen)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903 if (xp->xp_context == tab[i].context)
4904 {
4905 if (tab[i].ic)
4906 regmatch.rm_ic = TRUE;
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004907 ret = ExpandGeneric(xp, &regmatch, num_file, file,
Bram Moolenaare79abdd2012-06-29 13:44:41 +02004908 tab[i].func, tab[i].escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 break;
4910 }
4911 }
4912
Bram Moolenaar473de612013-06-08 18:19:48 +02004913 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914
4915 return ret;
4916#endif /* FEAT_CMDL_COMPL */
4917}
4918
4919#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4920/*
4921 * Expand a list of names.
4922 *
4923 * Generic function for command line completion. It calls a function to
4924 * obtain strings, one by one. The strings are matched against a regexp
4925 * program. Matching strings are copied into an array, which is returned.
4926 *
4927 * Returns OK when no problems encountered, FAIL for error (out of memory).
4928 */
4929 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004930ExpandGeneric(
4931 expand_T *xp,
4932 regmatch_T *regmatch,
4933 int *num_file,
4934 char_u ***file,
4935 char_u *((*func)(expand_T *, int)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 /* returns a string from the list */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004937 int escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938{
4939 int i;
4940 int count = 0;
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004941 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 char_u *str;
4943
4944 /* do this loop twice:
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004945 * round == 0: count the number of matching names
4946 * round == 1: copy the matching names into allocated memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004948 for (round = 0; round <= 1; ++round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 {
4950 for (i = 0; ; ++i)
4951 {
4952 str = (*func)(xp, i);
4953 if (str == NULL) /* end of list */
4954 break;
4955 if (*str == NUL) /* skip empty strings */
4956 continue;
4957
4958 if (vim_regexec(regmatch, str, (colnr_T)0))
4959 {
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004960 if (round)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961 {
Bram Moolenaar9b486ca2011-05-19 18:26:40 +02004962 if (escaped)
4963 str = vim_strsave_escaped(str, (char_u *)" \t\\.");
4964 else
4965 str = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966 (*file)[count] = str;
4967#ifdef FEAT_MENU
4968 if (func == get_menu_names && str != NULL)
4969 {
4970 /* test for separator added by get_menu_names() */
4971 str += STRLEN(str) - 1;
4972 if (*str == '\001')
4973 *str = '.';
4974 }
4975#endif
4976 }
4977 ++count;
4978 }
4979 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004980 if (round == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 {
4982 if (count == 0)
4983 return OK;
4984 *num_file = count;
4985 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
4986 if (*file == NULL)
4987 {
4988 *file = (char_u **)"";
4989 return FAIL;
4990 }
4991 count = 0;
4992 }
4993 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00004994
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004995 /* Sort the results. Keep menu's in the specified order. */
4996 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS)
Bram Moolenaardb710ed2011-10-26 22:02:15 +02004997 {
4998 if (xp->xp_context == EXPAND_EXPRESSION
4999 || xp->xp_context == EXPAND_FUNCTIONS
5000 || xp->xp_context == EXPAND_USER_FUNC)
5001 /* <SNR> functions should be sorted to the end. */
5002 qsort((void *)*file, (size_t)*num_file, sizeof(char_u *),
5003 sort_func_compare);
5004 else
5005 sort_strings(*file, *num_file);
5006 }
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00005007
Bram Moolenaar4f688582007-07-24 12:34:30 +00005008#ifdef FEAT_CMDL_COMPL
5009 /* Reset the variables used for special highlight names expansion, so that
5010 * they don't show up when getting normal highlight names by ID. */
5011 reset_expand_highlight();
5012#endif
5013
Bram Moolenaar071d4272004-06-13 20:20:40 +00005014 return OK;
5015}
5016
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005017/*
5018 * Complete a shell command.
5019 * Returns FAIL or OK;
5020 */
5021 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005022expand_shellcmd(
5023 char_u *filepat, /* pattern to match with command names */
5024 int *num_file, /* return: number of matches */
5025 char_u ***file, /* return: array with matches */
5026 int flagsarg) /* EW_ flags */
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005027{
5028 char_u *pat;
5029 int i;
5030 char_u *path;
5031 int mustfree = FALSE;
5032 garray_T ga;
5033 char_u *buf = alloc(MAXPATHL);
5034 size_t l;
5035 char_u *s, *e;
5036 int flags = flagsarg;
5037 int ret;
Bram Moolenaarb5971142015-03-21 17:32:19 +01005038 int did_curdir = FALSE;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005039
5040 if (buf == NULL)
5041 return FAIL;
5042
5043 /* for ":set path=" and ":set tags=" halve backslashes for escaped
5044 * space */
5045 pat = vim_strsave(filepat);
5046 for (i = 0; pat[i]; ++i)
5047 if (pat[i] == '\\' && pat[i + 1] == ' ')
Bram Moolenaar446cb832008-06-24 21:56:24 +00005048 STRMOVE(pat + i, pat + i + 1);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005049
Bram Moolenaarb5971142015-03-21 17:32:19 +01005050 flags |= EW_FILE | EW_EXEC | EW_SHELLCMD;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005051
5052 /* For an absolute name we don't use $PATH. */
Bram Moolenaar68c31742006-09-02 15:54:18 +00005053 if (mch_isFullName(pat))
5054 path = (char_u *)" ";
5055 else if ((pat[0] == '.' && (vim_ispathsep(pat[1])
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005056 || (pat[1] == '.' && vim_ispathsep(pat[2])))))
5057 path = (char_u *)".";
5058 else
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01005059 {
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005060 path = vim_getenv((char_u *)"PATH", &mustfree);
Bram Moolenaar27d9ece2010-11-10 15:37:05 +01005061 if (path == NULL)
5062 path = (char_u *)"";
5063 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005064
5065 /*
5066 * Go over all directories in $PATH. Expand matches in that directory and
Bram Moolenaarb5971142015-03-21 17:32:19 +01005067 * collect them in "ga". When "." is not in $PATH also expand for the
5068 * current directory, to find "subdir/cmd".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005069 */
5070 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaarb5971142015-03-21 17:32:19 +01005071 for (s = path; ; s = e)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005072 {
Bram Moolenaarb5971142015-03-21 17:32:19 +01005073 if (*s == NUL)
5074 {
5075 if (did_curdir)
5076 break;
5077 /* Find directories in the current directory, path is empty. */
5078 did_curdir = TRUE;
5079 }
5080 else if (*s == '.')
5081 did_curdir = TRUE;
5082
Bram Moolenaar68c31742006-09-02 15:54:18 +00005083 if (*s == ' ')
5084 ++s; /* Skip space used for absolute path name. */
5085
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005086#if defined(MSWIN)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005087 e = vim_strchr(s, ';');
5088#else
5089 e = vim_strchr(s, ':');
5090#endif
5091 if (e == NULL)
5092 e = s + STRLEN(s);
5093
5094 l = e - s;
5095 if (l > MAXPATHL - 5)
5096 break;
5097 vim_strncpy(buf, s, l);
5098 add_pathsep(buf);
5099 l = STRLEN(buf);
5100 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l);
5101
5102 /* Expand matches in one directory of $PATH. */
5103 ret = expand_wildcards(1, &buf, num_file, file, flags);
5104 if (ret == OK)
5105 {
5106 if (ga_grow(&ga, *num_file) == FAIL)
5107 FreeWild(*num_file, *file);
5108 else
5109 {
5110 for (i = 0; i < *num_file; ++i)
5111 {
5112 s = (*file)[i];
5113 if (STRLEN(s) > l)
5114 {
5115 /* Remove the path again. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00005116 STRMOVE(s, s + l);
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005117 ((char_u **)ga.ga_data)[ga.ga_len++] = s;
5118 }
5119 else
5120 vim_free(s);
5121 }
5122 vim_free(*file);
5123 }
5124 }
5125 if (*e != NUL)
5126 ++e;
5127 }
5128 *file = ga.ga_data;
5129 *num_file = ga.ga_len;
5130
5131 vim_free(buf);
5132 vim_free(pat);
5133 if (mustfree)
5134 vim_free(path);
5135 return OK;
5136}
5137
5138
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139# if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
Bram Moolenaard25c16e2016-01-29 22:13:30 +01005140static 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 +00005141
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142/*
Bram Moolenaar21669c02008-01-18 12:16:16 +00005143 * Call "user_expand_func()" to invoke a user defined VimL function and return
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005144 * the result (either a string or a List).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145 */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005146 static void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005147call_user_expand_func(
5148 void *(*user_expand_func)(char_u *, int, char_u **, int),
5149 expand_T *xp,
5150 int *num_file,
5151 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152{
Bram Moolenaar673b9a32013-06-30 22:43:27 +02005153 int keep = 0;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005154 char_u num[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155 char_u *args[3];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 int save_current_SID = current_SID;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005157 void *ret;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005158 struct cmdline_info save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159
Bram Moolenaarb7515462013-06-29 12:58:33 +02005160 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0' || xp->xp_line == NULL)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005161 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005162 *num_file = 0;
5163 *file = NULL;
5164
Bram Moolenaarb7515462013-06-29 12:58:33 +02005165 if (ccline.cmdbuff != NULL)
Bram Moolenaar21669c02008-01-18 12:16:16 +00005166 {
Bram Moolenaar21669c02008-01-18 12:16:16 +00005167 keep = ccline.cmdbuff[ccline.cmdlen];
5168 ccline.cmdbuff[ccline.cmdlen] = 0;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005169 }
Bram Moolenaarb7515462013-06-29 12:58:33 +02005170
Bram Moolenaar67b891e2009-09-18 15:25:52 +00005171 args[0] = vim_strnsave(xp->xp_pattern, xp->xp_pattern_len);
Bram Moolenaarb7515462013-06-29 12:58:33 +02005172 args[1] = xp->xp_line;
5173 sprintf((char *)num, "%d", xp->xp_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174 args[2] = num;
5175
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005176 /* Save the cmdline, we don't know what the function may do. */
5177 save_ccline = ccline;
5178 ccline.cmdbuff = NULL;
5179 ccline.cmdprompt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180 current_SID = xp->xp_scriptID;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005181
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005182 ret = user_expand_func(xp->xp_arg, 3, args, FALSE);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005183
5184 ccline = save_ccline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185 current_SID = save_current_SID;
Bram Moolenaar21669c02008-01-18 12:16:16 +00005186 if (ccline.cmdbuff != NULL)
5187 ccline.cmdbuff[ccline.cmdlen] = keep;
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005188
Bram Moolenaar67b891e2009-09-18 15:25:52 +00005189 vim_free(args[0]);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005190 return ret;
5191}
5192
5193/*
5194 * Expand names with a function defined by the user.
5195 */
5196 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005197ExpandUserDefined(
5198 expand_T *xp,
5199 regmatch_T *regmatch,
5200 int *num_file,
5201 char_u ***file)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005202{
5203 char_u *retstr;
5204 char_u *s;
5205 char_u *e;
5206 char_u keep;
5207 garray_T ga;
5208
5209 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file);
5210 if (retstr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211 return FAIL;
5212
5213 ga_init2(&ga, (int)sizeof(char *), 3);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005214 for (s = retstr; *s != NUL; s = e)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005215 {
5216 e = vim_strchr(s, '\n');
5217 if (e == NULL)
5218 e = s + STRLEN(s);
5219 keep = *e;
5220 *e = 0;
5221
5222 if (xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0)
5223 {
5224 *e = keep;
5225 if (*e != NUL)
5226 ++e;
5227 continue;
5228 }
5229
5230 if (ga_grow(&ga, 1) == FAIL)
5231 break;
5232
5233 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s));
5234 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235
5236 *e = keep;
5237 if (*e != NUL)
5238 ++e;
5239 }
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005240 vim_free(retstr);
5241 *file = ga.ga_data;
5242 *num_file = ga.ga_len;
5243 return OK;
5244}
5245
5246/*
5247 * Expand names with a list returned by a function defined by the user.
5248 */
5249 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005250ExpandUserList(
5251 expand_T *xp,
5252 int *num_file,
5253 char_u ***file)
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005254{
5255 list_T *retlist;
5256 listitem_T *li;
5257 garray_T ga;
5258
5259 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file);
5260 if (retlist == NULL)
5261 return FAIL;
5262
5263 ga_init2(&ga, (int)sizeof(char *), 3);
5264 /* Loop over the items in the list. */
5265 for (li = retlist->lv_first; li != NULL; li = li->li_next)
5266 {
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005267 if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL)
5268 continue; /* Skip non-string items and empty strings */
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005269
5270 if (ga_grow(&ga, 1) == FAIL)
5271 break;
5272
5273 ((char_u **)ga.ga_data)[ga.ga_len] =
Bram Moolenaar8d3b8c42009-06-24 15:05:00 +00005274 vim_strsave(li->li_tv.vval.v_string);
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005275 ++ga.ga_len;
5276 }
5277 list_unref(retlist);
5278
Bram Moolenaar071d4272004-06-13 20:20:40 +00005279 *file = ga.ga_data;
5280 *num_file = ga.ga_len;
5281 return OK;
5282}
5283#endif
5284
5285/*
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005286 * Expand color scheme, compiler or filetype names.
5287 * Search from 'runtimepath':
5288 * 'runtimepath'/{dirnames}/{pat}.vim
5289 * When "flags" has DIP_START: search also from 'start' of 'packpath':
5290 * 'packpath'/pack/ * /start/ * /{dirnames}/{pat}.vim
5291 * When "flags" has DIP_OPT: search also from 'opt' of 'packpath':
5292 * 'packpath'/pack/ * /opt/ * /{dirnames}/{pat}.vim
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005293 * "dirnames" is an array with one or more directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294 */
5295 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005296ExpandRTDir(
5297 char_u *pat,
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005298 int flags,
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005299 int *num_file,
5300 char_u ***file,
5301 char *dirnames[])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005302{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303 char_u *s;
5304 char_u *e;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005305 char_u *match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 garray_T ga;
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005307 int i;
5308 int pat_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309
5310 *num_file = 0;
5311 *file = NULL;
Bram Moolenaar5cfe2d72011-07-07 15:04:52 +02005312 pat_len = (int)STRLEN(pat);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005313 ga_init2(&ga, (int)sizeof(char *), 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005315 for (i = 0; dirnames[i] != NULL; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316 {
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005317 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 7));
5318 if (s == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005319 {
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005320 ga_clear_strings(&ga);
5321 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 }
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005323 sprintf((char *)s, "%s/%s*.vim", dirnames[i], pat);
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005324 globpath(p_rtp, s, &ga, 0);
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005325 vim_free(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005326 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005327
Bram Moolenaar52f9c192016-03-13 13:24:45 +01005328 if (flags & DIP_START) {
5329 for (i = 0; dirnames[i] != NULL; ++i)
5330 {
5331 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 22));
5332 if (s == NULL)
5333 {
5334 ga_clear_strings(&ga);
5335 return FAIL;
5336 }
5337 sprintf((char *)s, "pack/*/start/*/%s/%s*.vim", dirnames[i], pat);
5338 globpath(p_pp, s, &ga, 0);
5339 vim_free(s);
5340 }
5341 }
5342
5343 if (flags & DIP_OPT) {
5344 for (i = 0; dirnames[i] != NULL; ++i)
5345 {
5346 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 20));
5347 if (s == NULL)
5348 {
5349 ga_clear_strings(&ga);
5350 return FAIL;
5351 }
5352 sprintf((char *)s, "pack/*/opt/*/%s/%s*.vim", dirnames[i], pat);
5353 globpath(p_pp, s, &ga, 0);
5354 vim_free(s);
5355 }
5356 }
5357
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005358 for (i = 0; i < ga.ga_len; ++i)
5359 {
5360 match = ((char_u **)ga.ga_data)[i];
5361 s = match;
5362 e = s + STRLEN(s);
5363 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0)
5364 {
5365 e -= 4;
5366 for (s = e; s > match; mb_ptr_back(match, s))
5367 if (s < match || vim_ispathsep(*s))
5368 break;
5369 ++s;
5370 *e = NUL;
5371 mch_memmove(match, s, e - s + 1);
5372 }
5373 }
5374
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005375 if (ga.ga_len == 0)
Bram Moolenaare79abdd2012-06-29 13:44:41 +02005376 return FAIL;
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005377
5378 /* Sort and remove duplicates which can happen when specifying multiple
Bram Moolenaar0c7437a2011-06-26 19:40:23 +02005379 * directories in dirnames. */
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02005380 remove_duplicates(&ga);
5381
Bram Moolenaar071d4272004-06-13 20:20:40 +00005382 *file = ga.ga_data;
5383 *num_file = ga.ga_len;
5384 return OK;
5385}
5386
Bram Moolenaar35ca0e72016-03-05 17:41:49 +01005387/*
5388 * Expand loadplugin names:
5389 * 'packpath'/pack/ * /opt/{pat}
5390 */
5391 static int
5392ExpandPackAddDir(
5393 char_u *pat,
5394 int *num_file,
5395 char_u ***file)
5396{
5397 char_u *s;
5398 char_u *e;
5399 char_u *match;
5400 garray_T ga;
5401 int i;
5402 int pat_len;
5403
5404 *num_file = 0;
5405 *file = NULL;
5406 pat_len = (int)STRLEN(pat);
5407 ga_init2(&ga, (int)sizeof(char *), 10);
5408
5409 s = alloc((unsigned)(pat_len + 26));
5410 if (s == NULL)
5411 {
5412 ga_clear_strings(&ga);
5413 return FAIL;
5414 }
5415 sprintf((char *)s, "pack/*/opt/%s*", pat);
5416 globpath(p_pp, s, &ga, 0);
5417 vim_free(s);
5418
5419 for (i = 0; i < ga.ga_len; ++i)
5420 {
5421 match = ((char_u **)ga.ga_data)[i];
5422 s = gettail(match);
5423 e = s + STRLEN(s);
5424 mch_memmove(match, s, e - s + 1);
5425 }
5426
5427 if (ga.ga_len == 0)
5428 return FAIL;
5429
5430 /* Sort and remove duplicates which can happen when specifying multiple
5431 * directories in dirnames. */
5432 remove_duplicates(&ga);
5433
5434 *file = ga.ga_data;
5435 *num_file = ga.ga_len;
5436 return OK;
5437}
5438
Bram Moolenaar071d4272004-06-13 20:20:40 +00005439#endif
5440
5441#if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO)
5442/*
5443 * Expand "file" for all comma-separated directories in "path".
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005444 * Adds the matches to "ga". Caller must init "ga".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005445 */
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005446 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005447globpath(
5448 char_u *path,
5449 char_u *file,
5450 garray_T *ga,
5451 int expand_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452{
5453 expand_T xpc;
5454 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005455 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456 int num_p;
5457 char_u **p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005458
5459 buf = alloc(MAXPATHL);
5460 if (buf == NULL)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005461 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005463 ExpandInit(&xpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00005465
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466 /* Loop over all entries in {path}. */
5467 while (*path != NUL)
5468 {
5469 /* Copy one item of the path to buf[] and concatenate the file name. */
5470 copy_option_part(&path, buf, MAXPATHL, ",");
5471 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
5472 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005473# if defined(MSWIN)
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005474 /* Using the platform's path separator (\) makes vim incorrectly
5475 * treat it as an escape character, use '/' instead. */
5476 if (*buf != NUL && !after_pathsep(buf, buf + STRLEN(buf)))
5477 STRCAT(buf, "/");
5478# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479 add_pathsep(buf);
Bram Moolenaar84f888a2010-08-05 21:40:16 +02005480# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005481 STRCAT(buf, file);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005482 if (ExpandFromContext(&xpc, buf, &num_p, &p,
5483 WILD_SILENT|expand_options) != FAIL && num_p > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484 {
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00005485 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT|expand_options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005487 if (ga_grow(ga, num_p) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005488 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489 for (i = 0; i < num_p; ++i)
5490 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005491 ((char_u **)ga->ga_data)[ga->ga_len] =
Bram Moolenaar7116aa02014-05-29 14:36:29 +02005492 vim_strnsave(p[i], (int)STRLEN(p[i]));
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005493 ++ga->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495 }
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02005496
Bram Moolenaar071d4272004-06-13 20:20:40 +00005497 FreeWild(num_p, p);
5498 }
5499 }
5500 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005501
5502 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503}
5504
5505#endif
5506
5507#if defined(FEAT_CMDHIST) || defined(PROTO)
5508
5509/*********************************
5510 * Command line history stuff *
5511 *********************************/
5512
5513/*
5514 * Translate a history character to the associated type number.
5515 */
5516 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005517hist_char2type(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518{
5519 if (c == ':')
5520 return HIST_CMD;
5521 if (c == '=')
5522 return HIST_EXPR;
5523 if (c == '@')
5524 return HIST_INPUT;
5525 if (c == '>')
5526 return HIST_DEBUG;
5527 return HIST_SEARCH; /* must be '?' or '/' */
5528}
5529
5530/*
5531 * Table of history names.
5532 * These names are used in :history and various hist...() functions.
5533 * It is sufficient to give the significant prefix of a history name.
5534 */
5535
5536static char *(history_names[]) =
5537{
5538 "cmd",
5539 "search",
5540 "expr",
5541 "input",
5542 "debug",
5543 NULL
5544};
5545
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005546#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5547/*
5548 * Function given to ExpandGeneric() to obtain the possible first
5549 * arguments of the ":history command.
5550 */
5551 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005552get_history_arg(expand_T *xp UNUSED, int idx)
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005553{
5554 static char_u compl[2] = { NUL, NUL };
5555 char *short_names = ":=@>?/";
Bram Moolenaar17bd9dc2012-05-25 11:02:41 +02005556 int short_names_count = (int)STRLEN(short_names);
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005557 int history_name_count = sizeof(history_names) / sizeof(char *) - 1;
5558
5559 if (idx < short_names_count)
5560 {
5561 compl[0] = (char_u)short_names[idx];
5562 return compl;
5563 }
5564 if (idx < short_names_count + history_name_count)
5565 return (char_u *)history_names[idx - short_names_count];
5566 if (idx == short_names_count + history_name_count)
5567 return (char_u *)"all";
5568 return NULL;
5569}
5570#endif
5571
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572/*
5573 * init_history() - Initialize the command line history.
5574 * Also used to re-allocate the history when the size changes.
5575 */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00005576 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005577init_history(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005578{
5579 int newlen; /* new length of history table */
5580 histentry_T *temp;
5581 int i;
5582 int j;
5583 int type;
5584
5585 /*
5586 * If size of history table changed, reallocate it
5587 */
5588 newlen = (int)p_hi;
5589 if (newlen != hislen) /* history length changed */
5590 {
5591 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */
5592 {
5593 if (newlen)
5594 {
5595 temp = (histentry_T *)lalloc(
5596 (long_u)(newlen * sizeof(histentry_T)), TRUE);
5597 if (temp == NULL) /* out of memory! */
5598 {
5599 if (type == 0) /* first one: just keep the old length */
5600 {
5601 newlen = hislen;
5602 break;
5603 }
5604 /* Already changed one table, now we can only have zero
5605 * length for all tables. */
5606 newlen = 0;
5607 type = -1;
5608 continue;
5609 }
5610 }
5611 else
5612 temp = NULL;
5613 if (newlen == 0 || temp != NULL)
5614 {
5615 if (hisidx[type] < 0) /* there are no entries yet */
5616 {
5617 for (i = 0; i < newlen; ++i)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005618 clear_hist_entry(&temp[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005619 }
5620 else if (newlen > hislen) /* array becomes bigger */
5621 {
5622 for (i = 0; i <= hisidx[type]; ++i)
5623 temp[i] = history[type][i];
5624 j = i;
5625 for ( ; i <= newlen - (hislen - hisidx[type]); ++i)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005626 clear_hist_entry(&temp[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627 for ( ; j < hislen; ++i, ++j)
5628 temp[i] = history[type][j];
5629 }
5630 else /* array becomes smaller or 0 */
5631 {
5632 j = hisidx[type];
5633 for (i = newlen - 1; ; --i)
5634 {
5635 if (i >= 0) /* copy newest entries */
5636 temp[i] = history[type][j];
5637 else /* remove older entries */
5638 vim_free(history[type][j].hisstr);
5639 if (--j < 0)
5640 j = hislen - 1;
5641 if (j == hisidx[type])
5642 break;
5643 }
5644 hisidx[type] = newlen - 1;
5645 }
5646 vim_free(history[type]);
5647 history[type] = temp;
5648 }
5649 }
5650 hislen = newlen;
5651 }
5652}
5653
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005654 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005655clear_hist_entry(histentry_T *hisptr)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005656{
5657 hisptr->hisnum = 0;
5658 hisptr->viminfo = FALSE;
5659 hisptr->hisstr = NULL;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02005660 hisptr->time_set = 0;
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005661}
5662
Bram Moolenaar071d4272004-06-13 20:20:40 +00005663/*
5664 * Check if command line 'str' is already in history.
5665 * If 'move_to_front' is TRUE, matching entry is moved to end of history.
5666 */
5667 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005668in_history(
5669 int type,
5670 char_u *str,
5671 int move_to_front, /* Move the entry to the front if it exists */
5672 int sep,
5673 int writing) /* ignore entries read from viminfo */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005674{
5675 int i;
5676 int last_i = -1;
Bram Moolenaar4c402232011-07-27 17:58:46 +02005677 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005678
5679 if (hisidx[type] < 0)
5680 return FALSE;
5681 i = hisidx[type];
5682 do
5683 {
5684 if (history[type][i].hisstr == NULL)
5685 return FALSE;
Bram Moolenaar4c402232011-07-27 17:58:46 +02005686
5687 /* For search history, check that the separator character matches as
5688 * well. */
5689 p = history[type][i].hisstr;
5690 if (STRCMP(str, p) == 0
Bram Moolenaar07219f92013-04-14 23:19:36 +02005691 && !(writing && history[type][i].viminfo)
Bram Moolenaar4c402232011-07-27 17:58:46 +02005692 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005693 {
5694 if (!move_to_front)
5695 return TRUE;
5696 last_i = i;
5697 break;
5698 }
5699 if (--i < 0)
5700 i = hislen - 1;
5701 } while (i != hisidx[type]);
5702
5703 if (last_i >= 0)
5704 {
5705 str = history[type][i].hisstr;
5706 while (i != hisidx[type])
5707 {
5708 if (++i >= hislen)
5709 i = 0;
5710 history[type][last_i] = history[type][i];
5711 last_i = i;
5712 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005713 history[type][i].hisnum = ++hisnum[type];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005714 history[type][i].viminfo = FALSE;
5715 history[type][i].hisstr = str;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02005716 history[type][i].time_set = vim_time();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005717 return TRUE;
5718 }
5719 return FALSE;
5720}
5721
5722/*
5723 * Convert history name (from table above) to its HIST_ equivalent.
5724 * When "name" is empty, return "cmd" history.
5725 * Returns -1 for unknown history name.
5726 */
5727 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005728get_histtype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729{
5730 int i;
5731 int len = (int)STRLEN(name);
5732
5733 /* No argument: use current history. */
5734 if (len == 0)
5735 return hist_char2type(ccline.cmdfirstc);
5736
5737 for (i = 0; history_names[i] != NULL; ++i)
5738 if (STRNICMP(name, history_names[i], len) == 0)
5739 return i;
5740
5741 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL)
5742 return hist_char2type(name[0]);
5743
5744 return -1;
5745}
5746
5747static int last_maptick = -1; /* last seen maptick */
5748
5749/*
5750 * Add the given string to the given history. If the string is already in the
5751 * history then it is moved to the front. "histype" may be one of he HIST_
5752 * values.
5753 */
5754 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005755add_to_history(
5756 int histype,
5757 char_u *new_entry,
5758 int in_map, /* consider maptick when inside a mapping */
5759 int sep) /* separator character used (search hist) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760{
5761 histentry_T *hisptr;
5762 int len;
5763
5764 if (hislen == 0) /* no history */
5765 return;
5766
Bram Moolenaara939e432013-11-09 05:30:26 +01005767 if (cmdmod.keeppatterns && histype == HIST_SEARCH)
5768 return;
5769
Bram Moolenaar071d4272004-06-13 20:20:40 +00005770 /*
5771 * Searches inside the same mapping overwrite each other, so that only
5772 * the last line is kept. Be careful not to remove a line that was moved
5773 * down, only lines that were added.
5774 */
5775 if (histype == HIST_SEARCH && in_map)
5776 {
Bram Moolenaar46643712016-09-09 21:42:36 +02005777 if (maptick == last_maptick && hisidx[HIST_SEARCH] >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005778 {
5779 /* Current line is from the same mapping, remove it */
5780 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];
5781 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005782 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005783 --hisnum[histype];
5784 if (--hisidx[HIST_SEARCH] < 0)
5785 hisidx[HIST_SEARCH] = hislen - 1;
5786 }
5787 last_maptick = -1;
5788 }
Bram Moolenaar07219f92013-04-14 23:19:36 +02005789 if (!in_history(histype, new_entry, TRUE, sep, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790 {
5791 if (++hisidx[histype] == hislen)
5792 hisidx[histype] = 0;
5793 hisptr = &history[histype][hisidx[histype]];
5794 vim_free(hisptr->hisstr);
5795
5796 /* Store the separator after the NUL of the string. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005797 len = (int)STRLEN(new_entry);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798 hisptr->hisstr = vim_strnsave(new_entry, len + 2);
5799 if (hisptr->hisstr != NULL)
5800 hisptr->hisstr[len + 1] = sep;
5801
5802 hisptr->hisnum = ++hisnum[histype];
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005803 hisptr->viminfo = FALSE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02005804 hisptr->time_set = vim_time();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805 if (histype == HIST_SEARCH && in_map)
5806 last_maptick = maptick;
5807 }
5808}
5809
5810#if defined(FEAT_EVAL) || defined(PROTO)
5811
5812/*
5813 * Get identifier of newest history entry.
5814 * "histype" may be one of the HIST_ values.
5815 */
5816 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005817get_history_idx(int histype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818{
5819 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5820 || hisidx[histype] < 0)
5821 return -1;
5822
5823 return history[histype][hisidx[histype]].hisnum;
5824}
5825
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005826/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005827 * Calculate history index from a number:
5828 * num > 0: seen as identifying number of a history entry
5829 * num < 0: relative position in history wrt newest entry
5830 * "histype" may be one of the HIST_ values.
5831 */
5832 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005833calc_hist_idx(int histype, int num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005834{
5835 int i;
5836 histentry_T *hist;
5837 int wrapped = FALSE;
5838
5839 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
5840 || (i = hisidx[histype]) < 0 || num == 0)
5841 return -1;
5842
5843 hist = history[histype];
5844 if (num > 0)
5845 {
5846 while (hist[i].hisnum > num)
5847 if (--i < 0)
5848 {
5849 if (wrapped)
5850 break;
5851 i += hislen;
5852 wrapped = TRUE;
5853 }
5854 if (hist[i].hisnum == num && hist[i].hisstr != NULL)
5855 return i;
5856 }
5857 else if (-num <= hislen)
5858 {
5859 i += num + 1;
5860 if (i < 0)
5861 i += hislen;
5862 if (hist[i].hisstr != NULL)
5863 return i;
5864 }
5865 return -1;
5866}
5867
5868/*
5869 * Get a history entry by its index.
5870 * "histype" may be one of the HIST_ values.
5871 */
5872 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005873get_history_entry(int histype, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874{
5875 idx = calc_hist_idx(histype, idx);
5876 if (idx >= 0)
5877 return history[histype][idx].hisstr;
5878 else
5879 return (char_u *)"";
5880}
5881
5882/*
5883 * Clear all entries of a history.
5884 * "histype" may be one of the HIST_ values.
5885 */
5886 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005887clr_history(int histype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888{
5889 int i;
5890 histentry_T *hisptr;
5891
5892 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT)
5893 {
5894 hisptr = history[histype];
5895 for (i = hislen; i--;)
5896 {
5897 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005898 clear_hist_entry(hisptr);
Bram Moolenaar119d4692016-03-05 21:21:24 +01005899 hisptr++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900 }
5901 hisidx[histype] = -1; /* mark history as cleared */
5902 hisnum[histype] = 0; /* reset identifier counter */
5903 return OK;
5904 }
5905 return FAIL;
5906}
5907
5908/*
5909 * Remove all entries matching {str} from a history.
5910 * "histype" may be one of the HIST_ values.
5911 */
5912 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005913del_history_entry(int histype, char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005914{
5915 regmatch_T regmatch;
5916 histentry_T *hisptr;
5917 int idx;
5918 int i;
5919 int last;
5920 int found = FALSE;
5921
5922 regmatch.regprog = NULL;
5923 regmatch.rm_ic = FALSE; /* always match case */
5924 if (hislen != 0
5925 && histype >= 0
5926 && histype < HIST_COUNT
5927 && *str != NUL
5928 && (idx = hisidx[histype]) >= 0
5929 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING))
5930 != NULL)
5931 {
5932 i = last = idx;
5933 do
5934 {
5935 hisptr = &history[histype][i];
5936 if (hisptr->hisstr == NULL)
5937 break;
5938 if (vim_regexec(&regmatch, hisptr->hisstr, (colnr_T)0))
5939 {
5940 found = TRUE;
5941 vim_free(hisptr->hisstr);
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005942 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005943 }
5944 else
5945 {
5946 if (i != last)
5947 {
5948 history[histype][last] = *hisptr;
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005949 clear_hist_entry(hisptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005950 }
5951 if (--last < 0)
5952 last += hislen;
5953 }
5954 if (--i < 0)
5955 i += hislen;
5956 } while (i != idx);
5957 if (history[histype][idx].hisstr == NULL)
5958 hisidx[histype] = -1;
5959 }
Bram Moolenaar473de612013-06-08 18:19:48 +02005960 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961 return found;
5962}
5963
5964/*
5965 * Remove an indexed entry from a history.
5966 * "histype" may be one of the HIST_ values.
5967 */
5968 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005969del_history_idx(int histype, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005970{
5971 int i, j;
5972
5973 i = calc_hist_idx(histype, idx);
5974 if (i < 0)
5975 return FALSE;
5976 idx = hisidx[histype];
5977 vim_free(history[histype][i].hisstr);
5978
5979 /* When deleting the last added search string in a mapping, reset
5980 * last_maptick, so that the last added search string isn't deleted again.
5981 */
5982 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx)
5983 last_maptick = -1;
5984
5985 while (i != idx)
5986 {
5987 j = (i + 1) % hislen;
5988 history[histype][i] = history[histype][j];
5989 i = j;
5990 }
Bram Moolenaarb3049f42013-04-05 18:58:47 +02005991 clear_hist_entry(&history[histype][i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005992 if (--i < 0)
5993 i += hislen;
5994 hisidx[histype] = i;
5995 return TRUE;
5996}
5997
5998#endif /* FEAT_EVAL */
5999
6000#if defined(FEAT_CRYPT) || defined(PROTO)
6001/*
6002 * Very specific function to remove the value in ":set key=val" from the
6003 * history.
6004 */
6005 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006006remove_key_from_history(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006007{
6008 char_u *p;
6009 int i;
6010
6011 i = hisidx[HIST_CMD];
6012 if (i < 0)
6013 return;
6014 p = history[HIST_CMD][i].hisstr;
6015 if (p != NULL)
6016 for ( ; *p; ++p)
6017 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3]))
6018 {
6019 p = vim_strchr(p + 3, '=');
6020 if (p == NULL)
6021 break;
6022 ++p;
6023 for (i = 0; p[i] && !vim_iswhite(p[i]); ++i)
6024 if (p[i] == '\\' && p[i + 1])
6025 ++i;
Bram Moolenaar446cb832008-06-24 21:56:24 +00006026 STRMOVE(p, p + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006027 --p;
6028 }
6029}
6030#endif
6031
6032#endif /* FEAT_CMDHIST */
6033
Bram Moolenaar064154c2016-03-19 22:50:43 +01006034#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006035/*
6036 * Get pointer to the command line info to use. cmdline_paste() may clear
6037 * ccline and put the previous value in prev_ccline.
6038 */
6039 static struct cmdline_info *
6040get_ccline_ptr(void)
6041{
6042 if ((State & CMDLINE) == 0)
6043 return NULL;
6044 if (ccline.cmdbuff != NULL)
6045 return &ccline;
6046 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
6047 return &prev_ccline;
6048 return NULL;
6049}
Bram Moolenaar064154c2016-03-19 22:50:43 +01006050#endif
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006051
Bram Moolenaar064154c2016-03-19 22:50:43 +01006052#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006053/*
6054 * Get the current command line in allocated memory.
6055 * Only works when the command line is being edited.
6056 * Returns NULL when something is wrong.
6057 */
6058 char_u *
6059get_cmdline_str(void)
6060{
6061 struct cmdline_info *p = get_ccline_ptr();
6062
6063 if (p == NULL)
6064 return NULL;
6065 return vim_strnsave(p->cmdbuff, p->cmdlen);
6066}
6067
6068/*
6069 * Get the current command line position, counted in bytes.
6070 * Zero is the first position.
6071 * Only works when the command line is being edited.
6072 * Returns -1 when something is wrong.
6073 */
6074 int
6075get_cmdline_pos(void)
6076{
6077 struct cmdline_info *p = get_ccline_ptr();
6078
6079 if (p == NULL)
6080 return -1;
6081 return p->cmdpos;
6082}
6083
6084/*
6085 * Set the command line byte position to "pos". Zero is the first position.
6086 * Only works when the command line is being edited.
6087 * Returns 1 when failed, 0 when OK.
6088 */
6089 int
6090set_cmdline_pos(
6091 int pos)
6092{
6093 struct cmdline_info *p = get_ccline_ptr();
6094
6095 if (p == NULL)
6096 return 1;
6097
6098 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
6099 * changed the command line. */
6100 if (pos < 0)
6101 new_cmdpos = 0;
6102 else
6103 new_cmdpos = pos;
6104 return 0;
6105}
6106#endif
6107
6108#if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO)
6109/*
6110 * Get the current command-line type.
6111 * Returns ':' or '/' or '?' or '@' or '>' or '-'
6112 * Only works when the command line is being edited.
6113 * Returns NUL when something is wrong.
6114 */
6115 int
6116get_cmdline_type(void)
6117{
6118 struct cmdline_info *p = get_ccline_ptr();
6119
6120 if (p == NULL)
6121 return NUL;
6122 if (p->cmdfirstc == NUL)
Bram Moolenaar064154c2016-03-19 22:50:43 +01006123 return
6124# ifdef FEAT_EVAL
6125 (p->input_fn) ? '@' :
6126# endif
6127 '-';
Bram Moolenaard293b2b2016-03-19 22:29:49 +01006128 return p->cmdfirstc;
6129}
6130#endif
6131
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132#if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO)
6133/*
6134 * Get indices "num1,num2" that specify a range within a list (not a range of
6135 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
6136 * Returns OK if parsed successfully, otherwise FAIL.
6137 */
6138 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006139get_list_range(char_u **str, int *num1, int *num2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006140{
6141 int len;
6142 int first = FALSE;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02006143 varnumber_T num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006144
6145 *str = skipwhite(*str);
6146 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
6147 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006148 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006149 *str += len;
6150 *num1 = (int)num;
6151 first = TRUE;
6152 }
6153 *str = skipwhite(*str);
6154 if (**str == ',') /* parse "to" part of range */
6155 {
6156 *str = skipwhite(*str + 1);
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006157 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006158 if (len > 0)
6159 {
6160 *num2 = (int)num;
6161 *str = skipwhite(*str + len);
6162 }
6163 else if (!first) /* no number given at all */
6164 return FAIL;
6165 }
6166 else if (first) /* only one number given */
6167 *num2 = *num1;
6168 return OK;
6169}
6170#endif
6171
6172#if defined(FEAT_CMDHIST) || defined(PROTO)
6173/*
6174 * :history command - print a history
6175 */
6176 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006177ex_history(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006178{
6179 histentry_T *hist;
6180 int histype1 = HIST_CMD;
6181 int histype2 = HIST_CMD;
6182 int hisidx1 = 1;
6183 int hisidx2 = -1;
6184 int idx;
6185 int i, j, k;
6186 char_u *end;
6187 char_u *arg = eap->arg;
6188
6189 if (hislen == 0)
6190 {
6191 MSG(_("'history' option is zero"));
6192 return;
6193 }
6194
6195 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ','))
6196 {
6197 end = arg;
6198 while (ASCII_ISALPHA(*end)
6199 || vim_strchr((char_u *)":=@>/?", *end) != NULL)
6200 end++;
6201 i = *end;
6202 *end = NUL;
6203 histype1 = get_histtype(arg);
6204 if (histype1 == -1)
6205 {
Bram Moolenaarb9c1e962009-04-22 11:52:33 +00006206 if (STRNICMP(arg, "all", STRLEN(arg)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006207 {
6208 histype1 = 0;
6209 histype2 = HIST_COUNT-1;
6210 }
6211 else
6212 {
6213 *end = i;
6214 EMSG(_(e_trailing));
6215 return;
6216 }
6217 }
6218 else
6219 histype2 = histype1;
6220 *end = i;
6221 }
6222 else
6223 end = arg;
6224 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL)
6225 {
6226 EMSG(_(e_trailing));
6227 return;
6228 }
6229
6230 for (; !got_int && histype1 <= histype2; ++histype1)
6231 {
6232 STRCPY(IObuff, "\n # ");
6233 STRCAT(STRCAT(IObuff, history_names[histype1]), " history");
6234 MSG_PUTS_TITLE(IObuff);
6235 idx = hisidx[histype1];
6236 hist = history[histype1];
6237 j = hisidx1;
6238 k = hisidx2;
6239 if (j < 0)
6240 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum;
6241 if (k < 0)
6242 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum;
6243 if (idx >= 0 && j <= k)
6244 for (i = idx + 1; !got_int; ++i)
6245 {
6246 if (i == hislen)
6247 i = 0;
6248 if (hist[i].hisstr != NULL
6249 && hist[i].hisnum >= j && hist[i].hisnum <= k)
6250 {
6251 msg_putchar('\n');
6252 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ',
6253 hist[i].hisnum);
6254 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10)
6255 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff),
Bram Moolenaar38f5f952012-01-26 13:01:59 +01006256 (int)Columns - 10, IOSIZE - (int)STRLEN(IObuff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257 else
6258 STRCAT(IObuff, hist[i].hisstr);
6259 msg_outtrans(IObuff);
6260 out_flush();
6261 }
6262 if (i == idx)
6263 break;
6264 }
6265 }
6266}
6267#endif
6268
6269#if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006270/*
6271 * Buffers for history read from a viminfo file. Only valid while reading.
6272 */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006273static histentry_T *viminfo_history[HIST_COUNT] =
6274 {NULL, NULL, NULL, NULL, NULL};
6275static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0, 0};
6276static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006277static int viminfo_add_at_front = FALSE;
6278
Bram Moolenaard25c16e2016-01-29 22:13:30 +01006279static int hist_type2char(int type, int use_question);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006280
6281/*
6282 * Translate a history type number to the associated character.
6283 */
6284 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006285hist_type2char(
6286 int type,
6287 int use_question) /* use '?' instead of '/' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006288{
6289 if (type == HIST_CMD)
6290 return ':';
6291 if (type == HIST_SEARCH)
6292 {
6293 if (use_question)
6294 return '?';
6295 else
6296 return '/';
6297 }
6298 if (type == HIST_EXPR)
6299 return '=';
6300 return '@';
6301}
6302
6303/*
6304 * Prepare for reading the history from the viminfo file.
6305 * This allocates history arrays to store the read history lines.
6306 */
6307 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006308prepare_viminfo_history(int asklen, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006309{
6310 int i;
6311 int num;
6312 int type;
6313 int len;
6314
6315 init_history();
Bram Moolenaar07219f92013-04-14 23:19:36 +02006316 viminfo_add_at_front = (asklen != 0 && !writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006317 if (asklen > hislen)
6318 asklen = hislen;
6319
6320 for (type = 0; type < HIST_COUNT; ++type)
6321 {
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006322 /* Count the number of empty spaces in the history list. Entries read
6323 * from viminfo previously are also considered empty. If there are
6324 * more spaces available than we request, then fill them up. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006325 for (i = 0, num = 0; i < hislen; i++)
Bram Moolenaarb3049f42013-04-05 18:58:47 +02006326 if (history[type][i].hisstr == NULL || history[type][i].viminfo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006327 num++;
6328 len = asklen;
6329 if (num > len)
6330 len = num;
6331 if (len <= 0)
6332 viminfo_history[type] = NULL;
6333 else
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006334 viminfo_history[type] = (histentry_T *)lalloc(
6335 (long_u)(len * sizeof(histentry_T)), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006336 if (viminfo_history[type] == NULL)
6337 len = 0;
6338 viminfo_hislen[type] = len;
6339 viminfo_hisidx[type] = 0;
6340 }
6341}
6342
6343/*
6344 * Accept a line from the viminfo, store it in the history array when it's
6345 * new.
6346 */
6347 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006348read_viminfo_history(vir_T *virp, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006349{
6350 int type;
6351 long_u len;
6352 char_u *val;
6353 char_u *p;
6354
6355 type = hist_char2type(virp->vir_line[0]);
6356 if (viminfo_hisidx[type] < viminfo_hislen[type])
6357 {
6358 val = viminfo_readstring(virp, 1, TRUE);
6359 if (val != NULL && *val != NUL)
6360 {
Bram Moolenaard87fbc22012-02-04 22:44:32 +01006361 int sep = (*val == ' ' ? NUL : *val);
6362
Bram Moolenaar071d4272004-06-13 20:20:40 +00006363 if (!in_history(type, val + (type == HIST_SEARCH),
Bram Moolenaar07219f92013-04-14 23:19:36 +02006364 viminfo_add_at_front, sep, writing))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006365 {
6366 /* Need to re-allocate to append the separator byte. */
6367 len = STRLEN(val);
6368 p = lalloc(len + 2, TRUE);
6369 if (p != NULL)
6370 {
6371 if (type == HIST_SEARCH)
6372 {
6373 /* Search entry: Move the separator from the first
6374 * column to after the NUL. */
6375 mch_memmove(p, val + 1, (size_t)len);
Bram Moolenaard87fbc22012-02-04 22:44:32 +01006376 p[len] = sep;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006377 }
6378 else
6379 {
6380 /* Not a search entry: No separator in the viminfo
6381 * file, add a NUL separator. */
6382 mch_memmove(p, val, (size_t)len + 1);
6383 p[len + 1] = NUL;
6384 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006385 viminfo_history[type][viminfo_hisidx[type]].hisstr = p;
6386 viminfo_history[type][viminfo_hisidx[type]].time_set = 0;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006387 viminfo_history[type][viminfo_hisidx[type]].viminfo = TRUE;
6388 viminfo_history[type][viminfo_hisidx[type]].hisnum = 0;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006389 viminfo_hisidx[type]++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006390 }
6391 }
6392 }
6393 vim_free(val);
6394 }
6395 return viminfo_readline(virp);
6396}
6397
Bram Moolenaar07219f92013-04-14 23:19:36 +02006398/*
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006399 * Accept a new style history line from the viminfo, store it in the history
6400 * array when it's new.
6401 */
6402 void
6403handle_viminfo_history(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006404 garray_T *values,
6405 int writing)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006406{
6407 int type;
6408 long_u len;
6409 char_u *val;
6410 char_u *p;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006411 bval_T *vp = (bval_T *)values->ga_data;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006412
6413 /* Check the format:
6414 * |{bartype},{histtype},{timestamp},{separator},"text" */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006415 if (values->ga_len < 4
6416 || vp[0].bv_type != BVAL_NR
6417 || vp[1].bv_type != BVAL_NR
6418 || (vp[2].bv_type != BVAL_NR && vp[2].bv_type != BVAL_EMPTY)
6419 || vp[3].bv_type != BVAL_STRING)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006420 return;
6421
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006422 type = vp[0].bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006423 if (type >= HIST_COUNT)
6424 return;
6425 if (viminfo_hisidx[type] < viminfo_hislen[type])
6426 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006427 val = vp[3].bv_string;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006428 if (val != NULL && *val != NUL)
6429 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006430 int sep = type == HIST_SEARCH && vp[2].bv_type == BVAL_NR
6431 ? vp[2].bv_nr : NUL;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006432 int idx;
6433 int overwrite = FALSE;
6434
6435 if (!in_history(type, val, viminfo_add_at_front, sep, writing))
6436 {
6437 /* If lines were written by an older Vim we need to avoid
6438 * getting duplicates. See if the entry already exists. */
6439 for (idx = 0; idx < viminfo_hisidx[type]; ++idx)
6440 {
6441 p = viminfo_history[type][idx].hisstr;
6442 if (STRCMP(val, p) == 0
6443 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1]))
6444 {
6445 overwrite = TRUE;
6446 break;
6447 }
6448 }
6449
6450 if (!overwrite)
6451 {
6452 /* Need to re-allocate to append the separator byte. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006453 len = vp[3].bv_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006454 p = lalloc(len + 2, TRUE);
6455 }
Bram Moolenaar72e697d2016-06-13 22:48:01 +02006456 else
6457 len = 0; /* for picky compilers */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006458 if (p != NULL)
6459 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006460 viminfo_history[type][idx].time_set = vp[1].bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006461 if (!overwrite)
6462 {
6463 mch_memmove(p, val, (size_t)len + 1);
6464 /* Put the separator after the NUL. */
6465 p[len + 1] = sep;
6466 viminfo_history[type][idx].hisstr = p;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006467 viminfo_history[type][idx].hisnum = 0;
6468 viminfo_history[type][idx].viminfo = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006469 viminfo_hisidx[type]++;
6470 }
6471 }
6472 }
6473 }
6474 }
6475}
6476
6477/*
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006478 * Concatenate history lines from viminfo after the lines typed in this Vim.
Bram Moolenaar07219f92013-04-14 23:19:36 +02006479 */
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006480 static void
6481concat_history(int type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006482{
6483 int idx;
6484 int i;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006485
6486 idx = hisidx[type] + viminfo_hisidx[type];
6487 if (idx >= hislen)
6488 idx -= hislen;
6489 else if (idx < 0)
6490 idx = hislen - 1;
6491 if (viminfo_add_at_front)
6492 hisidx[type] = idx;
6493 else
6494 {
6495 if (hisidx[type] == -1)
6496 hisidx[type] = hislen - 1;
6497 do
6498 {
6499 if (history[type][idx].hisstr != NULL
6500 || history[type][idx].viminfo)
6501 break;
6502 if (++idx == hislen)
6503 idx = 0;
6504 } while (idx != hisidx[type]);
6505 if (idx != hisidx[type] && --idx < 0)
6506 idx = hislen - 1;
6507 }
6508 for (i = 0; i < viminfo_hisidx[type]; i++)
6509 {
6510 vim_free(history[type][idx].hisstr);
6511 history[type][idx].hisstr = viminfo_history[type][i].hisstr;
6512 history[type][idx].viminfo = TRUE;
6513 history[type][idx].time_set = viminfo_history[type][i].time_set;
6514 if (--idx < 0)
6515 idx = hislen - 1;
6516 }
6517 idx += 1;
6518 idx %= hislen;
6519 for (i = 0; i < viminfo_hisidx[type]; i++)
6520 {
6521 history[type][idx++].hisnum = ++hisnum[type];
6522 idx %= hislen;
6523 }
6524}
6525
6526#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6527 static int
6528#ifdef __BORLANDC__
6529_RTLENTRYF
6530#endif
6531sort_hist(const void *s1, const void *s2)
6532{
6533 histentry_T *p1 = *(histentry_T **)s1;
6534 histentry_T *p2 = *(histentry_T **)s2;
6535
6536 if (p1->time_set < p2->time_set) return -1;
6537 if (p1->time_set > p2->time_set) return 1;
6538 return 0;
6539}
6540#endif
6541
6542/*
6543 * Merge history lines from viminfo and lines typed in this Vim based on the
6544 * timestamp;
6545 */
6546 static void
6547merge_history(int type)
6548{
6549 int max_len;
6550 histentry_T **tot_hist;
6551 histentry_T *new_hist;
6552 int i;
6553 int len;
6554
6555 /* Make one long list with all entries. */
6556 max_len = hislen + viminfo_hisidx[type];
6557 tot_hist = (histentry_T **)alloc(max_len * (int)sizeof(histentry_T *));
6558 new_hist = (histentry_T *)alloc(hislen * (int)sizeof(histentry_T));
6559 if (tot_hist == NULL || new_hist == NULL)
6560 {
6561 vim_free(tot_hist);
6562 vim_free(new_hist);
6563 return;
6564 }
6565 for (i = 0; i < viminfo_hisidx[type]; i++)
6566 tot_hist[i] = &viminfo_history[type][i];
6567 len = i;
6568 for (i = 0; i < hislen; i++)
6569 if (history[type][i].hisstr != NULL)
6570 tot_hist[len++] = &history[type][i];
6571
6572 /* Sort the list on timestamp. */
6573 qsort((void *)tot_hist, (size_t)len, sizeof(histentry_T *), sort_hist);
6574
6575 /* Keep the newest ones. */
6576 for (i = 0; i < hislen; i++)
6577 {
6578 if (i < len)
6579 {
6580 new_hist[i] = *tot_hist[i];
6581 tot_hist[i]->hisstr = NULL;
6582 if (new_hist[i].hisnum == 0)
6583 new_hist[i].hisnum = ++hisnum[type];
6584 }
6585 else
6586 clear_hist_entry(&new_hist[i]);
6587 }
Bram Moolenaara890f5e2016-06-12 23:03:19 +02006588 hisidx[type] = (i < len ? i : len) - 1;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006589
6590 /* Free what is not kept. */
6591 for (i = 0; i < viminfo_hisidx[type]; i++)
6592 vim_free(viminfo_history[type][i].hisstr);
6593 for (i = 0; i < hislen; i++)
6594 vim_free(history[type][i].hisstr);
6595 vim_free(history[type]);
6596 history[type] = new_hist;
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02006597 vim_free(tot_hist);
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006598}
6599
6600/*
6601 * Finish reading history lines from viminfo. Not used when writing viminfo.
6602 */
6603 void
6604finish_viminfo_history(vir_T *virp)
6605{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006606 int type;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006607 int merge = virp->vir_version >= VIMINFO_VERSION_WITH_HISTORY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006608
6609 for (type = 0; type < HIST_COUNT; ++type)
6610 {
6611 if (history[type] == NULL)
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006612 continue;
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006613
6614 if (merge)
6615 merge_history(type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006616 else
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02006617 concat_history(type);
6618
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619 vim_free(viminfo_history[type]);
6620 viminfo_history[type] = NULL;
Bram Moolenaarf687cf32013-04-24 15:39:11 +02006621 viminfo_hisidx[type] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006622 }
6623}
6624
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006625/*
6626 * Write history to viminfo file in "fp".
6627 * When "merge" is TRUE merge history lines with a previously read viminfo
6628 * file, data is in viminfo_history[].
6629 * When "merge" is FALSE just write all history lines. Used for ":wviminfo!".
6630 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006631 void
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006632write_viminfo_history(FILE *fp, int merge)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006633{
6634 int i;
6635 int type;
6636 int num_saved;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006637 int round;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006638
6639 init_history();
6640 if (hislen == 0)
6641 return;
6642 for (type = 0; type < HIST_COUNT; ++type)
6643 {
6644 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE));
6645 if (num_saved == 0)
6646 continue;
6647 if (num_saved < 0) /* Use default */
6648 num_saved = hislen;
6649 fprintf(fp, _("\n# %s History (newest to oldest):\n"),
6650 type == HIST_CMD ? _("Command Line") :
6651 type == HIST_SEARCH ? _("Search String") :
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006652 type == HIST_EXPR ? _("Expression") :
6653 type == HIST_INPUT ? _("Input Line") :
6654 _("Debug Line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006655 if (num_saved > hislen)
6656 num_saved = hislen;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006657
6658 /*
6659 * Merge typed and viminfo history:
6660 * round 1: history of typed commands.
6661 * round 2: history from recently read viminfo.
6662 */
6663 for (round = 1; round <= 2; ++round)
6664 {
Bram Moolenaara8565fe2013-04-15 16:14:22 +02006665 if (round == 1)
6666 /* start at newest entry, somewhere in the list */
6667 i = hisidx[type];
6668 else if (viminfo_hisidx[type] > 0)
6669 /* start at newest entry, first in the list */
6670 i = 0;
6671 else
6672 /* empty list */
6673 i = -1;
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006674 if (i >= 0)
6675 while (num_saved > 0
6676 && !(round == 2 && i >= viminfo_hisidx[type]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006677 {
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006678 char_u *p;
6679 time_t timestamp;
6680 int c = NUL;
6681
6682 if (round == 1)
6683 {
6684 p = history[type][i].hisstr;
6685 timestamp = history[type][i].time_set;
6686 }
6687 else
6688 {
6689 p = viminfo_history[type] == NULL ? NULL
6690 : viminfo_history[type][i].hisstr;
6691 timestamp = viminfo_history[type] == NULL ? 0
6692 : viminfo_history[type][i].time_set;
6693 }
6694
Bram Moolenaarff1806f2013-06-15 16:31:47 +02006695 if (p != NULL && (round == 2
6696 || !merge
6697 || !history[type][i].viminfo))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006698 {
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006699 --num_saved;
6700 fputc(hist_type2char(type, TRUE), fp);
6701 /* For the search history: put the separator in the
6702 * second column; use a space if there isn't one. */
6703 if (type == HIST_SEARCH)
6704 {
6705 c = p[STRLEN(p) + 1];
6706 putc(c == NUL ? ' ' : c, fp);
6707 }
6708 viminfo_writestring(fp, p);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006709
6710 {
6711 char cbuf[NUMBUFLEN];
6712
6713 /* New style history with a bar line. Format:
6714 * |{bartype},{histtype},{timestamp},{separator},"text" */
6715 if (c == NUL)
6716 cbuf[0] = NUL;
6717 else
6718 sprintf(cbuf, "%d", c);
6719 fprintf(fp, "|%d,%d,%ld,%s,", BARTYPE_HISTORY,
6720 type, (long)timestamp, cbuf);
6721 barline_writestring(fp, p, LSIZE - 20);
6722 putc('\n', fp);
6723 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006724 }
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006725 if (round == 1)
6726 {
6727 /* Decrement index, loop around and stop when back at
6728 * the start. */
6729 if (--i < 0)
6730 i = hislen - 1;
6731 if (i == hisidx[type])
6732 break;
6733 }
6734 else
6735 {
6736 /* Increment index. Stop at the end in the while. */
6737 ++i;
6738 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006739 }
Bram Moolenaar6f852a52013-04-14 16:26:15 +02006740 }
Bram Moolenaar07219f92013-04-14 23:19:36 +02006741 for (i = 0; i < viminfo_hisidx[type]; ++i)
Bram Moolenaarf687cf32013-04-24 15:39:11 +02006742 if (viminfo_history[type] != NULL)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02006743 vim_free(viminfo_history[type][i].hisstr);
Bram Moolenaar07219f92013-04-14 23:19:36 +02006744 vim_free(viminfo_history[type]);
6745 viminfo_history[type] = NULL;
Bram Moolenaarb70a4732013-04-15 22:22:57 +02006746 viminfo_hisidx[type] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006747 }
6748}
6749#endif /* FEAT_VIMINFO */
6750
6751#if defined(FEAT_FKMAP) || defined(PROTO)
6752/*
6753 * Write a character at the current cursor+offset position.
6754 * It is directly written into the command buffer block.
6755 */
6756 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006757cmd_pchar(int c, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006758{
6759 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6760 {
6761 EMSG(_("E198: cmd_pchar beyond the command length"));
6762 return;
6763 }
6764 ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c;
6765 ccline.cmdbuff[ccline.cmdlen] = NUL;
6766}
6767
6768 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006769cmd_gchar(int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006770{
6771 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
6772 {
6773 /* EMSG(_("cmd_gchar beyond the command length")); */
6774 return NUL;
6775 }
6776 return (int)ccline.cmdbuff[ccline.cmdpos + offset];
6777}
6778#endif
6779
6780#if defined(FEAT_CMDWIN) || defined(PROTO)
6781/*
6782 * Open a window on the current command line and history. Allow editing in
6783 * the window. Returns when the window is closed.
6784 * Returns:
6785 * CR if the command is to be executed
6786 * Ctrl_C if it is to be abandoned
6787 * K_IGNORE if editing continues
6788 */
6789 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006790ex_window(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006791{
6792 struct cmdline_info save_ccline;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006793 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006794 win_T *old_curwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006795 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006796 win_T *wp;
6797 int i;
6798 linenr_T lnum;
6799 int histtype;
6800 garray_T winsizes;
Bram Moolenaar7693ec62008-07-24 18:29:37 +00006801#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006802 char_u typestr[2];
Bram Moolenaar7693ec62008-07-24 18:29:37 +00006803#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006804 int save_restart_edit = restart_edit;
6805 int save_State = State;
6806 int save_exmode = exmode_active;
Bram Moolenaar46152342005-09-07 21:18:43 +00006807#ifdef FEAT_RIGHTLEFT
6808 int save_cmdmsg_rl = cmdmsg_rl;
6809#endif
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006810#ifdef FEAT_FOLDING
6811 int save_KeyTyped;
6812#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006813
6814 /* Can't do this recursively. Can't do it when typing a password. */
6815 if (cmdwin_type != 0
6816# if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
6817 || cmdline_star > 0
6818# endif
6819 )
6820 {
6821 beep_flush();
6822 return K_IGNORE;
6823 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006824 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006825
6826 /* Save current window sizes. */
6827 win_size_save(&winsizes);
6828
6829# ifdef FEAT_AUTOCMD
6830 /* Don't execute autocommands while creating the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006831 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006832# endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00006833 /* don't use a new tab page */
6834 cmdmod.tab = 0;
6835
Bram Moolenaar071d4272004-06-13 20:20:40 +00006836 /* Create a window for the command-line buffer. */
6837 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
6838 {
6839 beep_flush();
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006840# ifdef FEAT_AUTOCMD
6841 unblock_autocmds();
6842# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006843 return K_IGNORE;
6844 }
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006845 cmdwin_type = get_cmdline_type();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006846
6847 /* Create the command-line buffer empty. */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006848 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL);
Bram Moolenaar446cb832008-06-24 21:56:24 +00006849 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006850 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
6851 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
6852 curbuf->b_p_ma = TRUE;
Bram Moolenaar876f6d72009-04-29 10:05:51 +00006853#ifdef FEAT_FOLDING
6854 curwin->w_p_fen = FALSE;
6855#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006856# ifdef FEAT_RIGHTLEFT
Bram Moolenaar46152342005-09-07 21:18:43 +00006857 curwin->w_p_rl = cmdmsg_rl;
6858 cmdmsg_rl = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006859# endif
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006860 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006861
6862# ifdef FEAT_AUTOCMD
6863 /* Do execute autocommands for setting the filetype (load syntax). */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006864 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006865# endif
6866
Bram Moolenaar46152342005-09-07 21:18:43 +00006867 /* Showing the prompt may have set need_wait_return, reset it. */
6868 need_wait_return = FALSE;
6869
Bram Moolenaare8bd5ce2009-03-02 01:12:48 +00006870 histtype = hist_char2type(cmdwin_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006871 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
6872 {
6873 if (p_wc == TAB)
6874 {
6875 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
6876 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
6877 }
6878 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
6879 }
6880
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006881 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
6882 * sets 'textwidth' to 78). */
6883 curbuf->b_p_tw = 0;
6884
Bram Moolenaar071d4272004-06-13 20:20:40 +00006885 /* Fill the buffer with the history. */
6886 init_history();
6887 if (hislen > 0)
6888 {
6889 i = hisidx[histtype];
6890 if (i >= 0)
6891 {
6892 lnum = 0;
6893 do
6894 {
6895 if (++i == hislen)
6896 i = 0;
6897 if (history[histtype][i].hisstr != NULL)
6898 ml_append(lnum++, history[histtype][i].hisstr,
6899 (colnr_T)0, FALSE);
6900 }
6901 while (i != hisidx[histtype]);
6902 }
6903 }
6904
6905 /* Replace the empty last line with the current command-line and put the
6906 * cursor there. */
6907 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
6908 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6909 curwin->w_cursor.col = ccline.cmdpos;
Bram Moolenaar46152342005-09-07 21:18:43 +00006910 changed_line_abv_curs();
6911 invalidate_botline();
Bram Moolenaar600dddc2006-03-12 22:05:10 +00006912 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006913
6914 /* Save the command line info, can be used recursively. */
Bram Moolenaar1d669c22017-01-11 22:40:19 +01006915 save_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006916
6917 /* No Ex mode here! */
6918 exmode_active = 0;
6919
6920 State = NORMAL;
6921# ifdef FEAT_MOUSE
6922 setmouse();
6923# endif
6924
6925# ifdef FEAT_AUTOCMD
6926 /* Trigger CmdwinEnter autocommands. */
6927 typestr[0] = cmdwin_type;
6928 typestr[1] = NUL;
6929 apply_autocmds(EVENT_CMDWINENTER, typestr, typestr, FALSE, curbuf);
Bram Moolenaar5495cc92006-08-16 14:23:04 +00006930 if (restart_edit != 0) /* autocmd with ":startinsert" */
6931 stuffcharReadbuff(K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006932# endif
6933
6934 i = RedrawingDisabled;
6935 RedrawingDisabled = 0;
6936
6937 /*
6938 * Call the main loop until <CR> or CTRL-C is typed.
6939 */
6940 cmdwin_result = 0;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00006941 main_loop(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006942
6943 RedrawingDisabled = i;
6944
6945# ifdef FEAT_AUTOCMD
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006946
6947# ifdef FEAT_FOLDING
6948 save_KeyTyped = KeyTyped;
6949# endif
6950
Bram Moolenaar071d4272004-06-13 20:20:40 +00006951 /* Trigger CmdwinLeave autocommands. */
6952 apply_autocmds(EVENT_CMDWINLEAVE, typestr, typestr, FALSE, curbuf);
Bram Moolenaar42f06f92014-08-17 17:24:07 +02006953
6954# ifdef FEAT_FOLDING
6955 /* Restore KeyTyped in case it is modified by autocommands */
6956 KeyTyped = save_KeyTyped;
6957# endif
6958
Bram Moolenaar071d4272004-06-13 20:20:40 +00006959# endif
6960
Bram Moolenaarccc18222007-05-10 18:25:20 +00006961 /* Restore the command line info. */
Bram Moolenaar1d669c22017-01-11 22:40:19 +01006962 restore_cmdline(&save_ccline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006963 cmdwin_type = 0;
6964
6965 exmode_active = save_exmode;
6966
Bram Moolenaarf9821062008-06-20 16:31:07 +00006967 /* Safety check: The old window or buffer was deleted: It's a bug when
Bram Moolenaar071d4272004-06-13 20:20:40 +00006968 * this happens! */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006969 if (!win_valid(old_curwin) || !bufref_valid(&old_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006970 {
6971 cmdwin_result = Ctrl_C;
6972 EMSG(_("E199: Active window or buffer deleted"));
6973 }
6974 else
6975 {
6976# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
6977 /* autocmds may abort script processing */
6978 if (aborting() && cmdwin_result != K_IGNORE)
6979 cmdwin_result = Ctrl_C;
6980# endif
6981 /* Set the new command line from the cmdline buffer. */
6982 vim_free(ccline.cmdbuff);
Bram Moolenaar46152342005-09-07 21:18:43 +00006983 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006984 {
Bram Moolenaar46152342005-09-07 21:18:43 +00006985 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
6986
6987 if (histtype == HIST_CMD)
6988 {
6989 /* Execute the command directly. */
6990 ccline.cmdbuff = vim_strsave((char_u *)p);
6991 cmdwin_result = CAR;
6992 }
6993 else
6994 {
6995 /* First need to cancel what we were doing. */
6996 ccline.cmdbuff = NULL;
6997 stuffcharReadbuff(':');
6998 stuffReadbuff((char_u *)p);
6999 stuffcharReadbuff(CAR);
7000 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007001 }
7002 else if (cmdwin_result == K_XF2) /* :qa typed */
7003 {
7004 ccline.cmdbuff = vim_strsave((char_u *)"qa");
7005 cmdwin_result = CAR;
7006 }
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02007007 else if (cmdwin_result == Ctrl_C)
7008 {
7009 /* :q or :close, don't execute any command
7010 * and don't modify the cmd window. */
7011 ccline.cmdbuff = NULL;
7012 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007013 else
7014 ccline.cmdbuff = vim_strsave(ml_get_curline());
7015 if (ccline.cmdbuff == NULL)
7016 cmdwin_result = Ctrl_C;
7017 else
7018 {
7019 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
7020 ccline.cmdbufflen = ccline.cmdlen + 1;
7021 ccline.cmdpos = curwin->w_cursor.col;
7022 if (ccline.cmdpos > ccline.cmdlen)
7023 ccline.cmdpos = ccline.cmdlen;
7024 if (cmdwin_result == K_IGNORE)
7025 {
7026 set_cmdspos_cursor();
7027 redrawcmd();
7028 }
7029 }
7030
7031# ifdef FEAT_AUTOCMD
7032 /* Don't execute autocommands while deleting the window. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007033 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007034# endif
Bram Moolenaarfa67fbe2015-06-25 18:20:36 +02007035# ifdef FEAT_CONCEAL
7036 /* Avoid command-line window first character being concealed. */
7037 curwin->w_p_cole = 0;
7038# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007039 wp = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007040 set_bufref(&bufref, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007041 win_goto(old_curwin);
7042 win_close(wp, TRUE);
Bram Moolenaar8006d692010-03-02 17:23:21 +01007043
7044 /* win_close() may have already wiped the buffer when 'bh' is
7045 * set to 'wipe' */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007046 if (bufref_valid(&bufref))
7047 close_buffer(NULL, bufref.br_buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007048
7049 /* Restore window sizes. */
7050 win_size_restore(&winsizes);
7051
7052# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007053 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007054# endif
7055 }
7056
7057 ga_clear(&winsizes);
7058 restart_edit = save_restart_edit;
Bram Moolenaar46152342005-09-07 21:18:43 +00007059# ifdef FEAT_RIGHTLEFT
7060 cmdmsg_rl = save_cmdmsg_rl;
7061# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007062
7063 State = save_State;
7064# ifdef FEAT_MOUSE
7065 setmouse();
7066# endif
7067
7068 return cmdwin_result;
7069}
7070#endif /* FEAT_CMDWIN */
7071
7072/*
7073 * Used for commands that either take a simple command string argument, or:
7074 * cmd << endmarker
7075 * {script}
7076 * endmarker
7077 * Returns a pointer to allocated memory with {script} or NULL.
7078 */
7079 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007080script_get(exarg_T *eap, char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007081{
7082 char_u *theline;
7083 char *end_pattern = NULL;
7084 char dot[] = ".";
7085 garray_T ga;
7086
7087 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
7088 return NULL;
7089
7090 ga_init2(&ga, 1, 0x400);
7091
7092 if (cmd[2] != NUL)
7093 end_pattern = (char *)skipwhite(cmd + 2);
7094 else
7095 end_pattern = dot;
7096
7097 for (;;)
7098 {
7099 theline = eap->getline(
7100#ifdef FEAT_EVAL
Bram Moolenaar12805862005-01-05 22:16:17 +00007101 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00007102#endif
7103 NUL, eap->cookie, 0);
7104
7105 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
Bram Moolenaarbe555e72008-08-06 12:19:26 +00007106 {
7107 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007108 break;
Bram Moolenaarbe555e72008-08-06 12:19:26 +00007109 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007110
7111 ga_concat(&ga, theline);
7112 ga_append(&ga, '\n');
7113 vim_free(theline);
7114 }
Bram Moolenaar269ec652004-07-29 08:43:53 +00007115 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007116
7117 return (char_u *)ga.ga_data;
7118}
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +02007119
7120#ifdef FEAT_SEARCH_EXTRA
7121 static void
7122set_search_match(pos_T *t)
7123{
7124 /*
7125 * First move cursor to end of match, then to the start. This
7126 * moves the whole match onto the screen when 'nowrap' is set.
7127 */
7128 t->lnum += search_match_lines;
7129 t->col = search_match_endcol;
7130 if (t->lnum > curbuf->b_ml.ml_line_count)
7131 {
7132 t->lnum = curbuf->b_ml.ml_line_count;
7133 coladvance((colnr_T)MAXCOL);
7134 }
7135}
7136#endif