7
|
1 /* vi:set ts=8 sts=4 sw=4:
|
|
2 *
|
|
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 */
|
|
21 struct 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 */
|
|
28 int cmdfirstc; /* ':', '/', '?', '=' or NUL */
|
|
29 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(). */
|
531
|
34 int xp_context; /* type of expansion */
|
|
35 # ifdef FEAT_EVAL
|
|
36 char_u *xp_arg; /* user-defined expansion arg */
|
|
37 int input_fn; /* Invoked for input() function */
|
|
38 # endif
|
7
|
39 };
|
|
40
|
|
41 static struct cmdline_info ccline; /* current cmdline_info */
|
|
42
|
|
43 static int cmd_showtail; /* Only show path tail in lists ? */
|
|
44
|
|
45 #ifdef FEAT_EVAL
|
|
46 static int new_cmdpos; /* position set by set_cmdline_pos() */
|
|
47 #endif
|
|
48
|
|
49 #ifdef FEAT_CMDHIST
|
|
50 typedef struct hist_entry
|
|
51 {
|
|
52 int hisnum; /* identifying number */
|
|
53 char_u *hisstr; /* actual entry, separator char after the NUL */
|
|
54 } histentry_T;
|
|
55
|
|
56 static histentry_T *(history[HIST_COUNT]) = {NULL, NULL, NULL, NULL, NULL};
|
|
57 static int hisidx[HIST_COUNT] = {-1, -1, -1, -1, -1}; /* lastused entry */
|
|
58 static int hisnum[HIST_COUNT] = {0, 0, 0, 0, 0};
|
|
59 /* identifying (unique) number of newest history entry */
|
|
60 static int hislen = 0; /* actual length of history tables */
|
|
61
|
|
62 static int hist_char2type __ARGS((int c));
|
|
63
|
|
64 static int in_history __ARGS((int, char_u *, int));
|
|
65 # ifdef FEAT_EVAL
|
|
66 static int calc_hist_idx __ARGS((int histype, int num));
|
|
67 # endif
|
|
68 #endif
|
|
69
|
|
70 #ifdef FEAT_RIGHTLEFT
|
|
71 static int cmd_hkmap = 0; /* Hebrew mapping during command line */
|
|
72 #endif
|
|
73
|
|
74 #ifdef FEAT_FKMAP
|
|
75 static int cmd_fkmap = 0; /* Farsi mapping during command line */
|
|
76 #endif
|
|
77
|
|
78 static int cmdline_charsize __ARGS((int idx));
|
|
79 static void set_cmdspos __ARGS((void));
|
|
80 static void set_cmdspos_cursor __ARGS((void));
|
|
81 #ifdef FEAT_MBYTE
|
|
82 static void correct_cmdspos __ARGS((int idx, int cells));
|
|
83 #endif
|
|
84 static void alloc_cmdbuff __ARGS((int len));
|
|
85 static int realloc_cmdbuff __ARGS((int len));
|
|
86 static void draw_cmdline __ARGS((int start, int len));
|
95
|
87 static void save_cmdline __ARGS((struct cmdline_info *ccp));
|
|
88 static void restore_cmdline __ARGS((struct cmdline_info *ccp));
|
15
|
89 static int cmdline_paste __ARGS((int regname, int literally));
|
7
|
90 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
|
|
91 static void redrawcmd_preedit __ARGS((void));
|
|
92 #endif
|
|
93 #ifdef FEAT_WILDMENU
|
|
94 static void cmdline_del __ARGS((int from));
|
|
95 #endif
|
|
96 static void redrawcmdprompt __ARGS((void));
|
|
97 static void cursorcmd __ARGS((void));
|
|
98 static int ccheck_abbr __ARGS((int));
|
|
99 static int nextwild __ARGS((expand_T *xp, int type, int options));
|
435
|
100 static void escape_fname __ARGS((char_u **pp));
|
7
|
101 static int showmatches __ARGS((expand_T *xp, int wildmenu));
|
|
102 static void set_expand_context __ARGS((expand_T *xp));
|
|
103 static int ExpandFromContext __ARGS((expand_T *xp, char_u *, int *, char_u ***, int));
|
|
104 static int expand_showtail __ARGS((expand_T *xp));
|
|
105 #ifdef FEAT_CMDL_COMPL
|
716
|
106 static int expand_shellcmd __ARGS((char_u *filepat, int *num_file, char_u ***file, int flagsarg));
|
7
|
107 static int ExpandRTDir __ARGS((char_u *pat, int *num_file, char_u ***file, char *dirname));
|
|
108 # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
|
|
109 static int ExpandUserDefined __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file));
|
407
|
110 static int ExpandUserList __ARGS((expand_T *xp, int *num_file, char_u ***file));
|
7
|
111 # endif
|
|
112 #endif
|
|
113
|
|
114 #ifdef FEAT_CMDWIN
|
|
115 static int ex_window __ARGS((void));
|
|
116 #endif
|
|
117
|
|
118 /*
|
|
119 * getcmdline() - accept a command line starting with firstc.
|
|
120 *
|
|
121 * firstc == ':' get ":" command line.
|
|
122 * firstc == '/' or '?' get search pattern
|
|
123 * firstc == '=' get expression
|
|
124 * firstc == '@' get text for input() function
|
|
125 * firstc == '>' get text for debug mode
|
|
126 * firstc == NUL get text for :insert command
|
|
127 * firstc == -1 like NUL, and break on CTRL-C
|
|
128 *
|
|
129 * The line is collected in ccline.cmdbuff, which is reallocated to fit the
|
|
130 * command line.
|
|
131 *
|
|
132 * Careful: getcmdline() can be called recursively!
|
|
133 *
|
|
134 * Return pointer to allocated string if there is a commandline, NULL
|
|
135 * otherwise.
|
|
136 */
|
|
137 /*ARGSUSED*/
|
|
138 char_u *
|
|
139 getcmdline(firstc, count, indent)
|
|
140 int firstc;
|
|
141 long count; /* only used for incremental search */
|
|
142 int indent; /* indent for inside conditionals */
|
|
143 {
|
|
144 int c;
|
|
145 int i;
|
|
146 int j;
|
|
147 int gotesc = FALSE; /* TRUE when <ESC> just typed */
|
|
148 int do_abbr; /* when TRUE check for abbr. */
|
|
149 #ifdef FEAT_CMDHIST
|
|
150 char_u *lookfor = NULL; /* string to match */
|
|
151 int hiscnt; /* current history line in use */
|
|
152 int histype; /* history type to be used */
|
|
153 #endif
|
|
154 #ifdef FEAT_SEARCH_EXTRA
|
|
155 pos_T old_cursor;
|
|
156 colnr_T old_curswant;
|
|
157 colnr_T old_leftcol;
|
|
158 linenr_T old_topline;
|
|
159 # ifdef FEAT_DIFF
|
|
160 int old_topfill;
|
|
161 # endif
|
|
162 linenr_T old_botline;
|
|
163 int did_incsearch = FALSE;
|
|
164 int incsearch_postponed = FALSE;
|
|
165 #endif
|
|
166 int did_wild_list = FALSE; /* did wild_list() recently */
|
|
167 int wim_index = 0; /* index in wim_flags[] */
|
|
168 int res;
|
|
169 int save_msg_scroll = msg_scroll;
|
|
170 int save_State = State; /* remember State when called */
|
|
171 int some_key_typed = FALSE; /* one of the keys was typed */
|
|
172 #ifdef FEAT_MOUSE
|
|
173 /* mouse drag and release events are ignored, unless they are
|
|
174 * preceded with a mouse down event */
|
|
175 int ignore_drag_release = TRUE;
|
|
176 #endif
|
|
177 #ifdef FEAT_EVAL
|
|
178 int break_ctrl_c = FALSE;
|
|
179 #endif
|
|
180 expand_T xpc;
|
|
181 long *b_im_ptr = NULL;
|
195
|
182 #if defined(FEAT_WILDMENU) || defined(FEAT_EVAL) || defined(FEAT_SEARCH_EXTRA)
|
|
183 /* Everything that may work recursively should save and restore the
|
|
184 * current command line in save_ccline. That includes update_screen(), a
|
|
185 * custom status line may invoke ":normal". */
|
|
186 struct cmdline_info save_ccline;
|
|
187 #endif
|
7
|
188
|
|
189 #ifdef FEAT_SNIFF
|
|
190 want_sniff_request = 0;
|
|
191 #endif
|
|
192 #ifdef FEAT_EVAL
|
|
193 if (firstc == -1)
|
|
194 {
|
|
195 firstc = NUL;
|
|
196 break_ctrl_c = TRUE;
|
|
197 }
|
|
198 #endif
|
|
199 #ifdef FEAT_RIGHTLEFT
|
|
200 /* start without Hebrew mapping for a command line */
|
|
201 if (firstc == ':' || firstc == '=' || firstc == '>')
|
|
202 cmd_hkmap = 0;
|
|
203 #endif
|
|
204
|
|
205 ccline.overstrike = FALSE; /* always start in insert mode */
|
|
206 #ifdef FEAT_SEARCH_EXTRA
|
|
207 old_cursor = curwin->w_cursor; /* needs to be restored later */
|
|
208 old_curswant = curwin->w_curswant;
|
|
209 old_leftcol = curwin->w_leftcol;
|
|
210 old_topline = curwin->w_topline;
|
|
211 # ifdef FEAT_DIFF
|
|
212 old_topfill = curwin->w_topfill;
|
|
213 # endif
|
|
214 old_botline = curwin->w_botline;
|
|
215 #endif
|
|
216
|
|
217 /*
|
|
218 * set some variables for redrawcmd()
|
|
219 */
|
|
220 ccline.cmdfirstc = (firstc == '@' ? 0 : firstc);
|
164
|
221 ccline.cmdindent = (firstc > 0 ? indent : 0);
|
|
222
|
|
223 /* alloc initial ccline.cmdbuff */
|
|
224 alloc_cmdbuff(exmode_active ? 250 : indent + 1);
|
7
|
225 if (ccline.cmdbuff == NULL)
|
|
226 return NULL; /* out of memory */
|
|
227 ccline.cmdlen = ccline.cmdpos = 0;
|
|
228 ccline.cmdbuff[0] = NUL;
|
|
229
|
164
|
230 /* autoindent for :insert and :append */
|
|
231 if (firstc <= 0)
|
|
232 {
|
|
233 copy_spaces(ccline.cmdbuff, indent);
|
|
234 ccline.cmdbuff[indent] = NUL;
|
|
235 ccline.cmdpos = indent;
|
|
236 ccline.cmdspos = indent;
|
|
237 ccline.cmdlen = indent;
|
|
238 }
|
|
239
|
7
|
240 ExpandInit(&xpc);
|
|
241
|
|
242 #ifdef FEAT_RIGHTLEFT
|
|
243 if (curwin->w_p_rl && *curwin->w_p_rlc == 's'
|
|
244 && (firstc == '/' || firstc == '?'))
|
|
245 cmdmsg_rl = TRUE;
|
|
246 else
|
|
247 cmdmsg_rl = FALSE;
|
|
248 #endif
|
|
249
|
|
250 redir_off = TRUE; /* don't redirect the typed command */
|
|
251 if (!cmd_silent)
|
|
252 {
|
|
253 i = msg_scrolled;
|
|
254 msg_scrolled = 0; /* avoid wait_return message */
|
|
255 gotocmdline(TRUE);
|
|
256 msg_scrolled += i;
|
|
257 redrawcmdprompt(); /* draw prompt or indent */
|
|
258 set_cmdspos();
|
|
259 }
|
|
260 xpc.xp_context = EXPAND_NOTHING;
|
|
261 xpc.xp_backslash = XP_BS_NONE;
|
632
|
262 #ifndef BACKSLASH_IN_FILENAME
|
|
263 xpc.xp_shell = FALSE;
|
|
264 #endif
|
7
|
265
|
531
|
266 #if defined(FEAT_EVAL)
|
|
267 if (ccline.input_fn)
|
|
268 {
|
|
269 xpc.xp_context = ccline.xp_context;
|
|
270 xpc.xp_pattern = ccline.cmdbuff;
|
|
271 xpc.xp_arg = ccline.xp_arg;
|
|
272 }
|
|
273 #endif
|
|
274
|
7
|
275 /*
|
|
276 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when
|
|
277 * doing ":@0" when register 0 doesn't contain a CR.
|
|
278 */
|
|
279 msg_scroll = FALSE;
|
|
280
|
|
281 State = CMDLINE;
|
|
282
|
|
283 if (firstc == '/' || firstc == '?' || firstc == '@')
|
|
284 {
|
|
285 /* Use ":lmap" mappings for search pattern and input(). */
|
|
286 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT)
|
|
287 b_im_ptr = &curbuf->b_p_iminsert;
|
|
288 else
|
|
289 b_im_ptr = &curbuf->b_p_imsearch;
|
|
290 if (*b_im_ptr == B_IMODE_LMAP)
|
|
291 State |= LANGMAP;
|
|
292 #ifdef USE_IM_CONTROL
|
|
293 im_set_active(*b_im_ptr == B_IMODE_IM);
|
|
294 #endif
|
|
295 }
|
|
296 #ifdef USE_IM_CONTROL
|
|
297 else if (p_imcmdline)
|
|
298 im_set_active(TRUE);
|
|
299 #endif
|
|
300
|
|
301 #ifdef FEAT_MOUSE
|
|
302 setmouse();
|
|
303 #endif
|
|
304 #ifdef CURSOR_SHAPE
|
|
305 ui_cursor_shape(); /* may show different cursor shape */
|
|
306 #endif
|
|
307
|
571
|
308 /* When inside an autocommand for writing "exiting" may be set and
|
|
309 * terminal mode set to cooked. Need to set raw mode here then. */
|
|
310 settmode(TMODE_RAW);
|
|
311
|
7
|
312 #ifdef FEAT_CMDHIST
|
|
313 init_history();
|
|
314 hiscnt = hislen; /* set hiscnt to impossible history value */
|
|
315 histype = hist_char2type(firstc);
|
|
316 #endif
|
|
317
|
|
318 #ifdef FEAT_DIGRAPHS
|
|
319 do_digraph(-1); /* init digraph typahead */
|
|
320 #endif
|
|
321
|
|
322 /*
|
|
323 * Collect the command string, handling editing keys.
|
|
324 */
|
|
325 for (;;)
|
|
326 {
|
|
327 #ifdef USE_ON_FLY_SCROLL
|
|
328 dont_scroll = FALSE; /* allow scrolling here */
|
|
329 #endif
|
|
330 quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */
|
|
331
|
|
332 cursorcmd(); /* set the cursor on the right spot */
|
|
333 c = safe_vgetc();
|
|
334 if (KeyTyped)
|
|
335 {
|
|
336 some_key_typed = TRUE;
|
|
337 #ifdef FEAT_RIGHTLEFT
|
|
338 if (cmd_hkmap)
|
|
339 c = hkmap(c);
|
|
340 # ifdef FEAT_FKMAP
|
|
341 if (cmd_fkmap)
|
|
342 c = cmdl_fkmap(c);
|
|
343 # endif
|
|
344 if (cmdmsg_rl && !KeyStuffed)
|
|
345 {
|
|
346 /* Invert horizontal movements and operations. Only when
|
|
347 * typed by the user directly, not when the result of a
|
|
348 * mapping. */
|
|
349 switch (c)
|
|
350 {
|
|
351 case K_RIGHT: c = K_LEFT; break;
|
|
352 case K_S_RIGHT: c = K_S_LEFT; break;
|
|
353 case K_C_RIGHT: c = K_C_LEFT; break;
|
|
354 case K_LEFT: c = K_RIGHT; break;
|
|
355 case K_S_LEFT: c = K_S_RIGHT; break;
|
|
356 case K_C_LEFT: c = K_C_RIGHT; break;
|
|
357 }
|
|
358 }
|
|
359 #endif
|
|
360 }
|
|
361
|
|
362 /*
|
|
363 * Ignore got_int when CTRL-C was typed here.
|
|
364 * Don't ignore it in :global, we really need to break then, e.g., for
|
|
365 * ":g/pat/normal /pat" (without the <CR>).
|
|
366 * Don't ignore it for the input() function.
|
|
367 */
|
|
368 if ((c == Ctrl_C
|
|
369 #ifdef UNIX
|
|
370 || c == intr_char
|
|
371 #endif
|
|
372 )
|
|
373 #if defined(FEAT_EVAL) || defined(FEAT_CRYPT)
|
|
374 && firstc != '@'
|
|
375 #endif
|
|
376 #ifdef FEAT_EVAL
|
|
377 && !break_ctrl_c
|
|
378 #endif
|
|
379 && !global_busy)
|
|
380 got_int = FALSE;
|
|
381
|
|
382 #ifdef FEAT_CMDHIST
|
|
383 /* free old command line when finished moving around in the history
|
|
384 * list */
|
|
385 if (lookfor != NULL
|
180
|
386 && c != K_S_DOWN && c != K_S_UP
|
230
|
387 && c != K_DOWN && c != K_UP
|
7
|
388 && c != K_PAGEDOWN && c != K_PAGEUP
|
|
389 && c != K_KPAGEDOWN && c != K_KPAGEUP
|
230
|
390 && c != K_LEFT && c != K_RIGHT
|
7
|
391 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N)))
|
|
392 {
|
|
393 vim_free(lookfor);
|
|
394 lookfor = NULL;
|
|
395 }
|
|
396 #endif
|
|
397
|
|
398 /*
|
|
399 * <S-Tab> works like CTRL-P (unless 'wc' is <S-Tab>).
|
|
400 */
|
|
401 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles != -1)
|
|
402 c = Ctrl_P;
|
|
403
|
|
404 #ifdef FEAT_WILDMENU
|
|
405 /* Special translations for 'wildmenu' */
|
|
406 if (did_wild_list && p_wmnu)
|
|
407 {
|
230
|
408 if (c == K_LEFT)
|
7
|
409 c = Ctrl_P;
|
230
|
410 else if (c == K_RIGHT)
|
7
|
411 c = Ctrl_N;
|
|
412 }
|
|
413 /* Hitting CR after "emenu Name.": complete submenu */
|
|
414 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu
|
|
415 && ccline.cmdpos > 1
|
|
416 && ccline.cmdbuff[ccline.cmdpos - 1] == '.'
|
|
417 && ccline.cmdbuff[ccline.cmdpos - 2] != '\\'
|
|
418 && (c == '\n' || c == '\r' || c == K_KENTER))
|
|
419 c = K_DOWN;
|
|
420 #endif
|
|
421
|
|
422 /* free expanded names when finished walking through matches */
|
|
423 if (xpc.xp_numfiles != -1
|
|
424 && !(c == p_wc && KeyTyped) && c != p_wcm
|
|
425 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A
|
|
426 && c != Ctrl_L)
|
|
427 {
|
|
428 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
|
|
429 did_wild_list = FALSE;
|
|
430 #ifdef FEAT_WILDMENU
|
230
|
431 if (!p_wmnu || (c != K_UP && c != K_DOWN))
|
7
|
432 #endif
|
|
433 xpc.xp_context = EXPAND_NOTHING;
|
|
434 wim_index = 0;
|
|
435 #ifdef FEAT_WILDMENU
|
|
436 if (p_wmnu && wild_menu_showing != 0)
|
|
437 {
|
|
438 int skt = KeyTyped;
|
532
|
439 int old_RedrawingDisabled = RedrawingDisabled;
|
531
|
440
|
|
441 if (ccline.input_fn)
|
|
442 RedrawingDisabled = 0;
|
7
|
443
|
|
444 if (wild_menu_showing == WM_SCROLLED)
|
|
445 {
|
|
446 /* Entered command line, move it up */
|
|
447 cmdline_row--;
|
|
448 redrawcmd();
|
|
449 }
|
|
450 else if (save_p_ls != -1)
|
|
451 {
|
|
452 /* restore 'laststatus' and 'winminheight' */
|
|
453 p_ls = save_p_ls;
|
|
454 p_wmh = save_p_wmh;
|
|
455 last_status(FALSE);
|
195
|
456 save_cmdline(&save_ccline);
|
7
|
457 update_screen(VALID); /* redraw the screen NOW */
|
195
|
458 restore_cmdline(&save_ccline);
|
7
|
459 redrawcmd();
|
|
460 save_p_ls = -1;
|
|
461 }
|
|
462 else
|
|
463 {
|
|
464 # ifdef FEAT_VERTSPLIT
|
|
465 win_redraw_last_status(topframe);
|
|
466 # else
|
|
467 lastwin->w_redr_status = TRUE;
|
|
468 # endif
|
|
469 redraw_statuslines();
|
|
470 }
|
532
|
471 KeyTyped = skt;
|
|
472 wild_menu_showing = 0;
|
531
|
473 if (ccline.input_fn)
|
|
474 RedrawingDisabled = old_RedrawingDisabled;
|
7
|
475 }
|
|
476 #endif
|
|
477 }
|
|
478
|
|
479 #ifdef FEAT_WILDMENU
|
|
480 /* Special translations for 'wildmenu' */
|
|
481 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu)
|
|
482 {
|
|
483 /* Hitting <Down> after "emenu Name.": complete submenu */
|
230
|
484 if (ccline.cmdbuff[ccline.cmdpos - 1] == '.' && c == K_DOWN)
|
7
|
485 c = p_wc;
|
230
|
486 else if (c == K_UP)
|
7
|
487 {
|
|
488 /* Hitting <Up>: Remove one submenu name in front of the
|
|
489 * cursor */
|
|
490 int found = FALSE;
|
|
491
|
|
492 j = (int)(xpc.xp_pattern - ccline.cmdbuff);
|
|
493 i = 0;
|
|
494 while (--j > 0)
|
|
495 {
|
|
496 /* check for start of menu name */
|
|
497 if (ccline.cmdbuff[j] == ' '
|
|
498 && ccline.cmdbuff[j - 1] != '\\')
|
|
499 {
|
|
500 i = j + 1;
|
|
501 break;
|
|
502 }
|
|
503 /* check for start of submenu name */
|
|
504 if (ccline.cmdbuff[j] == '.'
|
|
505 && ccline.cmdbuff[j - 1] != '\\')
|
|
506 {
|
|
507 if (found)
|
|
508 {
|
|
509 i = j + 1;
|
|
510 break;
|
|
511 }
|
|
512 else
|
|
513 found = TRUE;
|
|
514 }
|
|
515 }
|
|
516 if (i > 0)
|
|
517 cmdline_del(i);
|
|
518 c = p_wc;
|
|
519 xpc.xp_context = EXPAND_NOTHING;
|
|
520 }
|
|
521 }
|
714
|
522 if ((xpc.xp_context == EXPAND_FILES
|
|
523 || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu)
|
7
|
524 {
|
|
525 char_u upseg[5];
|
|
526
|
|
527 upseg[0] = PATHSEP;
|
|
528 upseg[1] = '.';
|
|
529 upseg[2] = '.';
|
|
530 upseg[3] = PATHSEP;
|
|
531 upseg[4] = NUL;
|
|
532
|
|
533 if (ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP
|
230
|
534 && c == K_DOWN
|
7
|
535 && (ccline.cmdbuff[ccline.cmdpos - 2] != '.'
|
|
536 || ccline.cmdbuff[ccline.cmdpos - 3] != '.'))
|
|
537 {
|
|
538 /* go down a directory */
|
|
539 c = p_wc;
|
|
540 }
|
230
|
541 else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN)
|
7
|
542 {
|
|
543 /* If in a direct ancestor, strip off one ../ to go down */
|
|
544 int found = FALSE;
|
|
545
|
|
546 j = ccline.cmdpos;
|
|
547 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
|
|
548 while (--j > i)
|
|
549 {
|
39
|
550 #ifdef FEAT_MBYTE
|
|
551 if (has_mbyte)
|
|
552 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
|
|
553 #endif
|
7
|
554 if (vim_ispathsep(ccline.cmdbuff[j]))
|
|
555 {
|
|
556 found = TRUE;
|
|
557 break;
|
|
558 }
|
|
559 }
|
|
560 if (found
|
|
561 && ccline.cmdbuff[j - 1] == '.'
|
|
562 && ccline.cmdbuff[j - 2] == '.'
|
|
563 && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2))
|
|
564 {
|
|
565 cmdline_del(j - 2);
|
|
566 c = p_wc;
|
|
567 }
|
|
568 }
|
230
|
569 else if (c == K_UP)
|
7
|
570 {
|
|
571 /* go up a directory */
|
|
572 int found = FALSE;
|
|
573
|
|
574 j = ccline.cmdpos - 1;
|
|
575 i = (int)(xpc.xp_pattern - ccline.cmdbuff);
|
|
576 while (--j > i)
|
|
577 {
|
|
578 #ifdef FEAT_MBYTE
|
|
579 if (has_mbyte)
|
|
580 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j);
|
|
581 #endif
|
|
582 if (vim_ispathsep(ccline.cmdbuff[j])
|
|
583 #ifdef BACKSLASH_IN_FILENAME
|
|
584 && vim_strchr(" *?[{`$%#", ccline.cmdbuff[j + 1])
|
|
585 == NULL
|
|
586 #endif
|
|
587 )
|
|
588 {
|
|
589 if (found)
|
|
590 {
|
|
591 i = j + 1;
|
|
592 break;
|
|
593 }
|
|
594 else
|
|
595 found = TRUE;
|
|
596 }
|
|
597 }
|
|
598
|
|
599 if (!found)
|
|
600 j = i;
|
|
601 else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0)
|
|
602 j += 4;
|
|
603 else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0
|
|
604 && j == i)
|
|
605 j += 3;
|
|
606 else
|
|
607 j = 0;
|
|
608 if (j > 0)
|
|
609 {
|
|
610 /* TODO this is only for DOS/UNIX systems - need to put in
|
|
611 * machine-specific stuff here and in upseg init */
|
|
612 cmdline_del(j);
|
|
613 put_on_cmdline(upseg + 1, 3, FALSE);
|
|
614 }
|
|
615 else if (ccline.cmdpos > i)
|
|
616 cmdline_del(i);
|
|
617 c = p_wc;
|
|
618 }
|
|
619 }
|
|
620 #if 0 /* If enabled <Down> on a file takes you _completely_ out of wildmenu */
|
|
621 if (p_wmnu
|
|
622 && (xpc.xp_context == EXPAND_FILES
|
|
623 || xpc.xp_context == EXPAND_MENUNAMES)
|
|
624 && (c == K_UP || c == K_DOWN))
|
|
625 xpc.xp_context = EXPAND_NOTHING;
|
|
626 #endif
|
|
627
|
|
628 #endif /* FEAT_WILDMENU */
|
|
629
|
|
630 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert
|
|
631 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */
|
|
632 if (c == Ctrl_BSL)
|
|
633 {
|
|
634 ++no_mapping;
|
|
635 ++allow_keys;
|
|
636 c = safe_vgetc();
|
|
637 --no_mapping;
|
|
638 --allow_keys;
|
|
639 /* CTRL-\ e doesn't work when obtaining an expression. */
|
|
640 if (c != Ctrl_N && c != Ctrl_G
|
|
641 && (c != 'e' || ccline.cmdfirstc == '='))
|
|
642 {
|
|
643 vungetc(c);
|
|
644 c = Ctrl_BSL;
|
|
645 }
|
|
646 #ifdef FEAT_EVAL
|
|
647 else if (c == 'e')
|
|
648 {
|
95
|
649 char_u *p = NULL;
|
7
|
650
|
|
651 /*
|
|
652 * Replace the command line with the result of an expression.
|
625
|
653 * Need to save and restore the current command line, to be
|
|
654 * able to enter a new one...
|
7
|
655 */
|
|
656 if (ccline.cmdpos == ccline.cmdlen)
|
|
657 new_cmdpos = 99999; /* keep it at the end */
|
|
658 else
|
|
659 new_cmdpos = ccline.cmdpos;
|
95
|
660
|
|
661 save_cmdline(&save_ccline);
|
7
|
662 c = get_expr_register();
|
95
|
663 restore_cmdline(&save_ccline);
|
7
|
664 if (c == '=')
|
|
665 {
|
634
|
666 /* Need to save and restore ccline. And set "textlock"
|
632
|
667 * to avoid nasty things like going to another buffer when
|
|
668 * evaluating an expression. */
|
95
|
669 save_cmdline(&save_ccline);
|
634
|
670 ++textlock;
|
7
|
671 p = get_expr_line();
|
634
|
672 --textlock;
|
95
|
673 restore_cmdline(&save_ccline);
|
|
674
|
|
675 if (p != NULL && realloc_cmdbuff((int)STRLEN(p) + 1) == OK)
|
7
|
676 {
|
835
|
677 ccline.cmdlen = (int)STRLEN(p);
|
7
|
678 STRCPY(ccline.cmdbuff, p);
|
|
679 vim_free(p);
|
|
680
|
|
681 /* Restore the cursor or use the position set with
|
|
682 * set_cmdline_pos(). */
|
|
683 if (new_cmdpos > ccline.cmdlen)
|
|
684 ccline.cmdpos = ccline.cmdlen;
|
|
685 else
|
|
686 ccline.cmdpos = new_cmdpos;
|
|
687
|
|
688 KeyTyped = FALSE; /* Don't do p_wc completion. */
|
|
689 redrawcmd();
|
|
690 goto cmdline_changed;
|
|
691 }
|
|
692 }
|
|
693 beep_flush();
|
|
694 c = ESC;
|
|
695 }
|
|
696 #endif
|
|
697 else
|
|
698 {
|
|
699 if (c == Ctrl_G && p_im && restart_edit == 0)
|
|
700 restart_edit = 'a';
|
|
701 gotesc = TRUE; /* will free ccline.cmdbuff after putting it
|
|
702 in history */
|
|
703 goto returncmd; /* back to Normal mode */
|
|
704 }
|
|
705 }
|
|
706
|
|
707 #ifdef FEAT_CMDWIN
|
|
708 if (c == cedit_key || c == K_CMDWIN)
|
|
709 {
|
|
710 /*
|
|
711 * Open a window to edit the command line (and history).
|
|
712 */
|
|
713 c = ex_window();
|
|
714 some_key_typed = TRUE;
|
|
715 }
|
|
716 # ifdef FEAT_DIGRAPHS
|
|
717 else
|
|
718 # endif
|
|
719 #endif
|
|
720 #ifdef FEAT_DIGRAPHS
|
|
721 c = do_digraph(c);
|
|
722 #endif
|
|
723
|
|
724 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC
|
|
725 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL)))
|
|
726 {
|
168
|
727 /* In Ex mode a backslash escapes a newline. */
|
|
728 if (exmode_active
|
|
729 && c != ESC
|
|
730 && ccline.cmdpos > 0
|
|
731 && ccline.cmdpos == ccline.cmdlen
|
|
732 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\')
|
|
733 {
|
|
734 if (c == K_KENTER)
|
|
735 c = '\n';
|
|
736 }
|
|
737 else
|
7
|
738 {
|
168
|
739 gotesc = FALSE; /* Might have typed ESC previously, don't
|
|
740 truncate the cmdline now. */
|
|
741 if (ccheck_abbr(c + ABBR_OFF))
|
|
742 goto cmdline_changed;
|
|
743 if (!cmd_silent)
|
|
744 {
|
|
745 windgoto(msg_row, 0);
|
|
746 out_flush();
|
|
747 }
|
|
748 break;
|
7
|
749 }
|
|
750 }
|
|
751
|
|
752 /*
|
|
753 * Completion for 'wildchar' or 'wildcharm' key.
|
|
754 * - hitting <ESC> twice means: abandon command line.
|
|
755 * - wildcard expansion is only done when the 'wildchar' key is really
|
|
756 * typed, not when it comes from a macro
|
|
757 */
|
|
758 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm)
|
|
759 {
|
|
760 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */
|
|
761 {
|
|
762 /* if 'wildmode' contains "list" may still need to list */
|
|
763 if (xpc.xp_numfiles > 1
|
|
764 && !did_wild_list
|
|
765 && (wim_flags[wim_index] & WIM_LIST))
|
|
766 {
|
|
767 (void)showmatches(&xpc, FALSE);
|
|
768 redrawcmd();
|
|
769 did_wild_list = TRUE;
|
|
770 }
|
|
771 if (wim_flags[wim_index] & WIM_LONGEST)
|
|
772 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP);
|
|
773 else if (wim_flags[wim_index] & WIM_FULL)
|
|
774 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP);
|
|
775 else
|
|
776 res = OK; /* don't insert 'wildchar' now */
|
|
777 }
|
|
778 else /* typed p_wc first time */
|
|
779 {
|
|
780 wim_index = 0;
|
|
781 j = ccline.cmdpos;
|
|
782 /* if 'wildmode' first contains "longest", get longest
|
|
783 * common part */
|
|
784 if (wim_flags[0] & WIM_LONGEST)
|
|
785 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP);
|
|
786 else
|
|
787 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP);
|
|
788
|
|
789 /* if interrupted while completing, behave like it failed */
|
|
790 if (got_int)
|
|
791 {
|
|
792 (void)vpeekc(); /* remove <C-C> from input stream */
|
|
793 got_int = FALSE; /* don't abandon the command line */
|
|
794 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE);
|
|
795 #ifdef FEAT_WILDMENU
|
|
796 xpc.xp_context = EXPAND_NOTHING;
|
|
797 #endif
|
|
798 goto cmdline_changed;
|
|
799 }
|
|
800
|
|
801 /* when more than one match, and 'wildmode' first contains
|
|
802 * "list", or no change and 'wildmode' contains "longest,list",
|
|
803 * list all matches */
|
|
804 if (res == OK && xpc.xp_numfiles > 1)
|
|
805 {
|
|
806 /* a "longest" that didn't do anything is skipped (but not
|
|
807 * "list:longest") */
|
|
808 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j)
|
|
809 wim_index = 1;
|
|
810 if ((wim_flags[wim_index] & WIM_LIST)
|
|
811 #ifdef FEAT_WILDMENU
|
|
812 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0)
|
|
813 #endif
|
|
814 )
|
|
815 {
|
|
816 if (!(wim_flags[0] & WIM_LONGEST))
|
|
817 {
|
|
818 #ifdef FEAT_WILDMENU
|
|
819 int p_wmnu_save = p_wmnu;
|
|
820 p_wmnu = 0;
|
|
821 #endif
|
|
822 nextwild(&xpc, WILD_PREV, 0); /* remove match */
|
|
823 #ifdef FEAT_WILDMENU
|
|
824 p_wmnu = p_wmnu_save;
|
|
825 #endif
|
|
826 }
|
|
827 #ifdef FEAT_WILDMENU
|
|
828 (void)showmatches(&xpc, p_wmnu
|
|
829 && ((wim_flags[wim_index] & WIM_LIST) == 0));
|
|
830 #else
|
|
831 (void)showmatches(&xpc, FALSE);
|
|
832 #endif
|
|
833 redrawcmd();
|
|
834 did_wild_list = TRUE;
|
|
835 if (wim_flags[wim_index] & WIM_LONGEST)
|
|
836 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP);
|
|
837 else if (wim_flags[wim_index] & WIM_FULL)
|
|
838 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP);
|
|
839 }
|
|
840 else
|
|
841 vim_beep();
|
|
842 }
|
|
843 #ifdef FEAT_WILDMENU
|
|
844 else if (xpc.xp_numfiles == -1)
|
|
845 xpc.xp_context = EXPAND_NOTHING;
|
|
846 #endif
|
|
847 }
|
|
848 if (wim_index < 3)
|
|
849 ++wim_index;
|
|
850 if (c == ESC)
|
|
851 gotesc = TRUE;
|
|
852 if (res == OK)
|
|
853 goto cmdline_changed;
|
|
854 }
|
|
855
|
|
856 gotesc = FALSE;
|
|
857
|
|
858 /* <S-Tab> goes to last match, in a clumsy way */
|
|
859 if (c == K_S_TAB && KeyTyped)
|
|
860 {
|
|
861 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0) == OK
|
|
862 && nextwild(&xpc, WILD_PREV, 0) == OK
|
|
863 && nextwild(&xpc, WILD_PREV, 0) == OK)
|
|
864 goto cmdline_changed;
|
|
865 }
|
|
866
|
|
867 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */
|
|
868 c = NL;
|
|
869
|
|
870 do_abbr = TRUE; /* default: check for abbreviation */
|
|
871
|
|
872 /*
|
|
873 * Big switch for a typed command line character.
|
|
874 */
|
|
875 switch (c)
|
|
876 {
|
|
877 case K_BS:
|
|
878 case Ctrl_H:
|
|
879 case K_DEL:
|
|
880 case K_KDEL:
|
|
881 case Ctrl_W:
|
|
882 #ifdef FEAT_FKMAP
|
|
883 if (cmd_fkmap && c == K_BS)
|
|
884 c = K_DEL;
|
|
885 #endif
|
|
886 if (c == K_KDEL)
|
|
887 c = K_DEL;
|
|
888
|
|
889 /*
|
|
890 * delete current character is the same as backspace on next
|
|
891 * character, except at end of line
|
|
892 */
|
|
893 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen)
|
|
894 ++ccline.cmdpos;
|
|
895 #ifdef FEAT_MBYTE
|
|
896 if (has_mbyte && c == K_DEL)
|
|
897 ccline.cmdpos += mb_off_next(ccline.cmdbuff,
|
|
898 ccline.cmdbuff + ccline.cmdpos);
|
|
899 #endif
|
|
900 if (ccline.cmdpos > 0)
|
|
901 {
|
|
902 char_u *p;
|
|
903
|
|
904 j = ccline.cmdpos;
|
|
905 p = ccline.cmdbuff + j;
|
|
906 #ifdef FEAT_MBYTE
|
|
907 if (has_mbyte)
|
|
908 {
|
|
909 p = mb_prevptr(ccline.cmdbuff, p);
|
|
910 if (c == Ctrl_W)
|
|
911 {
|
|
912 while (p > ccline.cmdbuff && vim_isspace(*p))
|
|
913 p = mb_prevptr(ccline.cmdbuff, p);
|
|
914 i = mb_get_class(p);
|
|
915 while (p > ccline.cmdbuff && mb_get_class(p) == i)
|
|
916 p = mb_prevptr(ccline.cmdbuff, p);
|
|
917 if (mb_get_class(p) != i)
|
474
|
918 p += (*mb_ptr2len)(p);
|
7
|
919 }
|
|
920 }
|
|
921 else
|
|
922 #endif
|
|
923 if (c == Ctrl_W)
|
|
924 {
|
|
925 while (p > ccline.cmdbuff && vim_isspace(p[-1]))
|
|
926 --p;
|
|
927 i = vim_iswordc(p[-1]);
|
|
928 while (p > ccline.cmdbuff && !vim_isspace(p[-1])
|
|
929 && vim_iswordc(p[-1]) == i)
|
|
930 --p;
|
|
931 }
|
|
932 else
|
|
933 --p;
|
|
934 ccline.cmdpos = (int)(p - ccline.cmdbuff);
|
|
935 ccline.cmdlen -= j - ccline.cmdpos;
|
|
936 i = ccline.cmdpos;
|
|
937 while (i < ccline.cmdlen)
|
|
938 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
|
|
939
|
|
940 /* Truncate at the end, required for multi-byte chars. */
|
|
941 ccline.cmdbuff[ccline.cmdlen] = NUL;
|
|
942 redrawcmd();
|
|
943 }
|
|
944 else if (ccline.cmdlen == 0 && c != Ctrl_W
|
|
945 && ccline.cmdprompt == NULL && indent == 0)
|
|
946 {
|
|
947 /* In ex and debug mode it doesn't make sense to return. */
|
|
948 if (exmode_active
|
|
949 #ifdef FEAT_EVAL
|
|
950 || ccline.cmdfirstc == '>'
|
|
951 #endif
|
|
952 )
|
|
953 goto cmdline_not_changed;
|
|
954
|
|
955 vim_free(ccline.cmdbuff); /* no commandline to return */
|
|
956 ccline.cmdbuff = NULL;
|
|
957 if (!cmd_silent)
|
|
958 {
|
|
959 #ifdef FEAT_RIGHTLEFT
|
|
960 if (cmdmsg_rl)
|
|
961 msg_col = Columns;
|
|
962 else
|
|
963 #endif
|
|
964 msg_col = 0;
|
|
965 msg_putchar(' '); /* delete ':' */
|
|
966 }
|
|
967 redraw_cmdline = TRUE;
|
|
968 goto returncmd; /* back to cmd mode */
|
|
969 }
|
|
970 goto cmdline_changed;
|
|
971
|
|
972 case K_INS:
|
|
973 case K_KINS:
|
|
974 #ifdef FEAT_FKMAP
|
|
975 /* if Farsi mode set, we are in reverse insert mode -
|
|
976 Do not change the mode */
|
|
977 if (cmd_fkmap)
|
|
978 beep_flush();
|
|
979 else
|
|
980 #endif
|
|
981 ccline.overstrike = !ccline.overstrike;
|
|
982 #ifdef CURSOR_SHAPE
|
|
983 ui_cursor_shape(); /* may show different cursor shape */
|
|
984 #endif
|
|
985 goto cmdline_not_changed;
|
|
986
|
|
987 case Ctrl_HAT:
|
782
|
988 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
|
7
|
989 {
|
|
990 /* ":lmap" mappings exists, toggle use of mappings. */
|
|
991 State ^= LANGMAP;
|
|
992 #ifdef USE_IM_CONTROL
|
|
993 im_set_active(FALSE); /* Disable input method */
|
|
994 #endif
|
|
995 if (b_im_ptr != NULL)
|
|
996 {
|
|
997 if (State & LANGMAP)
|
|
998 *b_im_ptr = B_IMODE_LMAP;
|
|
999 else
|
|
1000 *b_im_ptr = B_IMODE_NONE;
|
|
1001 }
|
|
1002 }
|
|
1003 #ifdef USE_IM_CONTROL
|
|
1004 else
|
|
1005 {
|
|
1006 /* There are no ":lmap" mappings, toggle IM. When
|
|
1007 * 'imdisable' is set don't try getting the status, it's
|
|
1008 * always off. */
|
|
1009 if ((p_imdisable && b_im_ptr != NULL)
|
|
1010 ? *b_im_ptr == B_IMODE_IM : im_get_status())
|
|
1011 {
|
|
1012 im_set_active(FALSE); /* Disable input method */
|
|
1013 if (b_im_ptr != NULL)
|
|
1014 *b_im_ptr = B_IMODE_NONE;
|
|
1015 }
|
|
1016 else
|
|
1017 {
|
|
1018 im_set_active(TRUE); /* Enable input method */
|
|
1019 if (b_im_ptr != NULL)
|
|
1020 *b_im_ptr = B_IMODE_IM;
|
|
1021 }
|
|
1022 }
|
|
1023 #endif
|
|
1024 if (b_im_ptr != NULL)
|
|
1025 {
|
|
1026 if (b_im_ptr == &curbuf->b_p_iminsert)
|
|
1027 set_iminsert_global();
|
|
1028 else
|
|
1029 set_imsearch_global();
|
|
1030 }
|
|
1031 #ifdef CURSOR_SHAPE
|
|
1032 ui_cursor_shape(); /* may show different cursor shape */
|
|
1033 #endif
|
|
1034 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
|
|
1035 /* Show/unshow value of 'keymap' in status lines later. */
|
|
1036 status_redraw_curbuf();
|
|
1037 #endif
|
|
1038 goto cmdline_not_changed;
|
|
1039
|
|
1040 /* case '@': only in very old vi */
|
|
1041 case Ctrl_U:
|
|
1042 /* delete all characters left of the cursor */
|
|
1043 j = ccline.cmdpos;
|
|
1044 ccline.cmdlen -= j;
|
|
1045 i = ccline.cmdpos = 0;
|
|
1046 while (i < ccline.cmdlen)
|
|
1047 ccline.cmdbuff[i++] = ccline.cmdbuff[j++];
|
|
1048 /* Truncate at the end, required for multi-byte chars. */
|
|
1049 ccline.cmdbuff[ccline.cmdlen] = NUL;
|
|
1050 redrawcmd();
|
|
1051 goto cmdline_changed;
|
|
1052
|
|
1053 #ifdef FEAT_CLIPBOARD
|
|
1054 case Ctrl_Y:
|
|
1055 /* Copy the modeless selection, if there is one. */
|
|
1056 if (clip_star.state != SELECT_CLEARED)
|
|
1057 {
|
|
1058 if (clip_star.state == SELECT_DONE)
|
|
1059 clip_copy_modeless_selection(TRUE);
|
|
1060 goto cmdline_not_changed;
|
|
1061 }
|
|
1062 break;
|
|
1063 #endif
|
|
1064
|
|
1065 case ESC: /* get here if p_wc != ESC or when ESC typed twice */
|
|
1066 case Ctrl_C:
|
571
|
1067 /* In exmode it doesn't make sense to return. Except when
|
161
|
1068 * ":normal" runs out of characters. */
|
|
1069 if (exmode_active
|
|
1070 #ifdef FEAT_EX_EXTRA
|
|
1071 && (ex_normal_busy == 0 || typebuf.tb_len > 0)
|
|
1072 #endif
|
|
1073 )
|
7
|
1074 goto cmdline_not_changed;
|
|
1075
|
|
1076 gotesc = TRUE; /* will free ccline.cmdbuff after
|
|
1077 putting it in history */
|
|
1078 goto returncmd; /* back to cmd mode */
|
|
1079
|
|
1080 case Ctrl_R: /* insert register */
|
|
1081 #ifdef USE_ON_FLY_SCROLL
|
|
1082 dont_scroll = TRUE; /* disallow scrolling here */
|
|
1083 #endif
|
|
1084 putcmdline('"', TRUE);
|
|
1085 ++no_mapping;
|
|
1086 i = c = safe_vgetc(); /* CTRL-R <char> */
|
|
1087 if (i == Ctrl_O)
|
|
1088 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */
|
|
1089 if (i == Ctrl_R)
|
|
1090 c = safe_vgetc(); /* CTRL-R CTRL-R <char> */
|
|
1091 --no_mapping;
|
|
1092 #ifdef FEAT_EVAL
|
|
1093 /*
|
|
1094 * Insert the result of an expression.
|
|
1095 * Need to save the current command line, to be able to enter
|
|
1096 * a new one...
|
|
1097 */
|
|
1098 new_cmdpos = -1;
|
|
1099 if (c == '=')
|
|
1100 {
|
|
1101 if (ccline.cmdfirstc == '=')/* can't do this recursively */
|
|
1102 {
|
|
1103 beep_flush();
|
|
1104 c = ESC;
|
|
1105 }
|
|
1106 else
|
|
1107 {
|
95
|
1108 save_cmdline(&save_ccline);
|
7
|
1109 c = get_expr_register();
|
95
|
1110 restore_cmdline(&save_ccline);
|
7
|
1111 }
|
|
1112 }
|
|
1113 #endif
|
|
1114 if (c != ESC) /* use ESC to cancel inserting register */
|
|
1115 {
|
|
1116 cmdline_paste(c, i == Ctrl_R);
|
606
|
1117
|
613
|
1118 #ifdef FEAT_EVAL
|
606
|
1119 /* When there was a serious error abort getting the
|
|
1120 * command line. */
|
|
1121 if (aborting())
|
|
1122 {
|
|
1123 gotesc = TRUE; /* will free ccline.cmdbuff after
|
|
1124 putting it in history */
|
|
1125 goto returncmd; /* back to cmd mode */
|
|
1126 }
|
613
|
1127 #endif
|
7
|
1128 KeyTyped = FALSE; /* Don't do p_wc completion. */
|
|
1129 #ifdef FEAT_EVAL
|
|
1130 if (new_cmdpos >= 0)
|
|
1131 {
|
|
1132 /* set_cmdline_pos() was used */
|
|
1133 if (new_cmdpos > ccline.cmdlen)
|
|
1134 ccline.cmdpos = ccline.cmdlen;
|
|
1135 else
|
|
1136 ccline.cmdpos = new_cmdpos;
|
|
1137 }
|
|
1138 #endif
|
|
1139 }
|
|
1140 redrawcmd();
|
|
1141 goto cmdline_changed;
|
|
1142
|
|
1143 case Ctrl_D:
|
|
1144 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING)
|
|
1145 break; /* Use ^D as normal char instead */
|
|
1146
|
|
1147 redrawcmd();
|
|
1148 continue; /* don't do incremental search now */
|
|
1149
|
|
1150 case K_RIGHT:
|
|
1151 case K_S_RIGHT:
|
|
1152 case K_C_RIGHT:
|
|
1153 do
|
|
1154 {
|
|
1155 if (ccline.cmdpos >= ccline.cmdlen)
|
|
1156 break;
|
|
1157 i = cmdline_charsize(ccline.cmdpos);
|
|
1158 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows)
|
|
1159 break;
|
|
1160 ccline.cmdspos += i;
|
|
1161 #ifdef FEAT_MBYTE
|
|
1162 if (has_mbyte)
|
474
|
1163 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
|
7
|
1164 + ccline.cmdpos);
|
|
1165 else
|
|
1166 #endif
|
|
1167 ++ccline.cmdpos;
|
|
1168 }
|
180
|
1169 while ((c == K_S_RIGHT || c == K_C_RIGHT
|
|
1170 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
|
7
|
1171 && ccline.cmdbuff[ccline.cmdpos] != ' ');
|
|
1172 #ifdef FEAT_MBYTE
|
|
1173 if (has_mbyte)
|
|
1174 set_cmdspos_cursor();
|
|
1175 #endif
|
|
1176 goto cmdline_not_changed;
|
|
1177
|
|
1178 case K_LEFT:
|
|
1179 case K_S_LEFT:
|
|
1180 case K_C_LEFT:
|
|
1181 do
|
|
1182 {
|
|
1183 if (ccline.cmdpos == 0)
|
|
1184 break;
|
|
1185 --ccline.cmdpos;
|
|
1186 #ifdef FEAT_MBYTE
|
|
1187 if (has_mbyte) /* move to first byte of char */
|
|
1188 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff,
|
|
1189 ccline.cmdbuff + ccline.cmdpos);
|
|
1190 #endif
|
|
1191 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos);
|
|
1192 }
|
180
|
1193 while ((c == K_S_LEFT || c == K_C_LEFT
|
|
1194 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)))
|
7
|
1195 && ccline.cmdbuff[ccline.cmdpos - 1] != ' ');
|
|
1196 #ifdef FEAT_MBYTE
|
|
1197 if (has_mbyte)
|
|
1198 set_cmdspos_cursor();
|
|
1199 #endif
|
|
1200 goto cmdline_not_changed;
|
|
1201
|
|
1202 case K_IGNORE:
|
|
1203 goto cmdline_not_changed; /* Ignore mouse */
|
|
1204
|
625
|
1205 #ifdef FEAT_GUI_W32
|
|
1206 /* On Win32 ignore <M-F4>, we get it when closing the window was
|
|
1207 * cancelled. */
|
|
1208 case K_F4:
|
|
1209 if (mod_mask == MOD_MASK_ALT)
|
|
1210 {
|
|
1211 redrawcmd(); /* somehow the cmdline is cleared */
|
|
1212 goto cmdline_not_changed;
|
|
1213 }
|
|
1214 break;
|
|
1215 #endif
|
|
1216
|
7
|
1217 #ifdef FEAT_MOUSE
|
|
1218 case K_MIDDLEDRAG:
|
|
1219 case K_MIDDLERELEASE:
|
|
1220 goto cmdline_not_changed; /* Ignore mouse */
|
|
1221
|
|
1222 case K_MIDDLEMOUSE:
|
|
1223 # ifdef FEAT_GUI
|
|
1224 /* When GUI is active, also paste when 'mouse' is empty */
|
|
1225 if (!gui.in_use)
|
|
1226 # endif
|
|
1227 if (!mouse_has(MOUSE_COMMAND))
|
|
1228 goto cmdline_not_changed; /* Ignore mouse */
|
692
|
1229 # ifdef FEAT_CLIPBOARD
|
7
|
1230 if (clip_star.available)
|
|
1231 cmdline_paste('*', TRUE);
|
|
1232 else
|
692
|
1233 # endif
|
7
|
1234 cmdline_paste(0, TRUE);
|
|
1235 redrawcmd();
|
|
1236 goto cmdline_changed;
|
|
1237
|
692
|
1238 # ifdef FEAT_DND
|
7
|
1239 case K_DROP:
|
|
1240 cmdline_paste('~', TRUE);
|
|
1241 redrawcmd();
|
|
1242 goto cmdline_changed;
|
692
|
1243 # endif
|
7
|
1244
|
|
1245 case K_LEFTDRAG:
|
|
1246 case K_LEFTRELEASE:
|
|
1247 case K_RIGHTDRAG:
|
|
1248 case K_RIGHTRELEASE:
|
|
1249 /* Ignore drag and release events when the button-down wasn't
|
|
1250 * seen before. */
|
|
1251 if (ignore_drag_release)
|
|
1252 goto cmdline_not_changed;
|
|
1253 /* FALLTHROUGH */
|
|
1254 case K_LEFTMOUSE:
|
|
1255 case K_RIGHTMOUSE:
|
|
1256 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE)
|
|
1257 ignore_drag_release = TRUE;
|
|
1258 else
|
|
1259 ignore_drag_release = FALSE;
|
|
1260 # ifdef FEAT_GUI
|
|
1261 /* When GUI is active, also move when 'mouse' is empty */
|
|
1262 if (!gui.in_use)
|
|
1263 # endif
|
|
1264 if (!mouse_has(MOUSE_COMMAND))
|
|
1265 goto cmdline_not_changed; /* Ignore mouse */
|
|
1266 # ifdef FEAT_CLIPBOARD
|
|
1267 if (mouse_row < cmdline_row && clip_star.available)
|
|
1268 {
|
|
1269 int button, is_click, is_drag;
|
|
1270
|
|
1271 /*
|
|
1272 * Handle modeless selection.
|
|
1273 */
|
|
1274 button = get_mouse_button(KEY2TERMCAP1(c),
|
|
1275 &is_click, &is_drag);
|
|
1276 if (mouse_model_popup() && button == MOUSE_LEFT
|
|
1277 && (mod_mask & MOD_MASK_SHIFT))
|
|
1278 {
|
|
1279 /* Translate shift-left to right button. */
|
|
1280 button = MOUSE_RIGHT;
|
|
1281 mod_mask &= ~MOD_MASK_SHIFT;
|
|
1282 }
|
|
1283 clip_modeless(button, is_click, is_drag);
|
|
1284 goto cmdline_not_changed;
|
|
1285 }
|
|
1286 # endif
|
|
1287
|
|
1288 set_cmdspos();
|
|
1289 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen;
|
|
1290 ++ccline.cmdpos)
|
|
1291 {
|
|
1292 i = cmdline_charsize(ccline.cmdpos);
|
|
1293 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns
|
|
1294 && mouse_col < ccline.cmdspos % Columns + i)
|
|
1295 break;
|
692
|
1296 # ifdef FEAT_MBYTE
|
7
|
1297 if (has_mbyte)
|
|
1298 {
|
|
1299 /* Count ">" for double-wide char that doesn't fit. */
|
|
1300 correct_cmdspos(ccline.cmdpos, i);
|
474
|
1301 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff
|
7
|
1302 + ccline.cmdpos) - 1;
|
|
1303 }
|
692
|
1304 # endif
|
7
|
1305 ccline.cmdspos += i;
|
|
1306 }
|
|
1307 goto cmdline_not_changed;
|
|
1308
|
|
1309 /* Mouse scroll wheel: ignored here */
|
|
1310 case K_MOUSEDOWN:
|
|
1311 case K_MOUSEUP:
|
|
1312 /* Alternate buttons ignored here */
|
|
1313 case K_X1MOUSE:
|
|
1314 case K_X1DRAG:
|
|
1315 case K_X1RELEASE:
|
|
1316 case K_X2MOUSE:
|
|
1317 case K_X2DRAG:
|
|
1318 case K_X2RELEASE:
|
|
1319 goto cmdline_not_changed;
|
|
1320
|
|
1321 #endif /* FEAT_MOUSE */
|
|
1322
|
|
1323 #ifdef FEAT_GUI
|
|
1324 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */
|
|
1325 case K_LEFTRELEASE_NM:
|
|
1326 goto cmdline_not_changed;
|
|
1327
|
|
1328 case K_VER_SCROLLBAR:
|
540
|
1329 if (msg_scrolled == 0)
|
7
|
1330 {
|
|
1331 gui_do_scroll();
|
|
1332 redrawcmd();
|
|
1333 }
|
|
1334 goto cmdline_not_changed;
|
|
1335
|
|
1336 case K_HOR_SCROLLBAR:
|
540
|
1337 if (msg_scrolled == 0)
|
7
|
1338 {
|
|
1339 gui_do_horiz_scroll();
|
|
1340 redrawcmd();
|
|
1341 }
|
|
1342 goto cmdline_not_changed;
|
|
1343 #endif
|
692
|
1344 #ifdef FEAT_GUI_TABLINE
|
|
1345 case K_TABLINE:
|
|
1346 case K_TABMENU:
|
|
1347 /* Don't want to change any tabs here. Make sure the same tab
|
|
1348 * is still selected. */
|
|
1349 if (gui_use_tabline())
|
|
1350 gui_mch_set_curtab(tabpage_index(curtab));
|
|
1351 goto cmdline_not_changed;
|
|
1352 #endif
|
|
1353
|
7
|
1354 case K_SELECT: /* end of Select mode mapping - ignore */
|
|
1355 goto cmdline_not_changed;
|
|
1356
|
|
1357 case Ctrl_B: /* begin of command line */
|
|
1358 case K_HOME:
|
|
1359 case K_KHOME:
|
|
1360 case K_S_HOME:
|
|
1361 case K_C_HOME:
|
|
1362 ccline.cmdpos = 0;
|
|
1363 set_cmdspos();
|
|
1364 goto cmdline_not_changed;
|
|
1365
|
|
1366 case Ctrl_E: /* end of command line */
|
|
1367 case K_END:
|
|
1368 case K_KEND:
|
|
1369 case K_S_END:
|
|
1370 case K_C_END:
|
|
1371 ccline.cmdpos = ccline.cmdlen;
|
|
1372 set_cmdspos_cursor();
|
|
1373 goto cmdline_not_changed;
|
|
1374
|
|
1375 case Ctrl_A: /* all matches */
|
|
1376 if (nextwild(&xpc, WILD_ALL, 0) == FAIL)
|
|
1377 break;
|
|
1378 goto cmdline_changed;
|
|
1379
|
772
|
1380 case Ctrl_L:
|
|
1381 #ifdef FEAT_SEARCH_EXTRA
|
|
1382 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
|
|
1383 {
|
|
1384 /* Add a character from under the cursor for 'incsearch' */
|
|
1385 if (did_incsearch
|
|
1386 && !equalpos(curwin->w_cursor, old_cursor))
|
|
1387 {
|
|
1388 c = gchar_cursor();
|
|
1389 if (c != NUL)
|
|
1390 break;
|
|
1391 }
|
|
1392 goto cmdline_not_changed;
|
|
1393 }
|
|
1394 #endif
|
|
1395
|
|
1396 /* completion: longest common part */
|
7
|
1397 if (nextwild(&xpc, WILD_LONGEST, 0) == FAIL)
|
|
1398 break;
|
|
1399 goto cmdline_changed;
|
|
1400
|
|
1401 case Ctrl_N: /* next match */
|
|
1402 case Ctrl_P: /* previous match */
|
|
1403 if (xpc.xp_numfiles > 0)
|
|
1404 {
|
|
1405 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT, 0)
|
|
1406 == FAIL)
|
|
1407 break;
|
|
1408 goto cmdline_changed;
|
|
1409 }
|
|
1410
|
|
1411 #ifdef FEAT_CMDHIST
|
|
1412 case K_UP:
|
|
1413 case K_DOWN:
|
|
1414 case K_S_UP:
|
|
1415 case K_S_DOWN:
|
|
1416 case K_PAGEUP:
|
|
1417 case K_KPAGEUP:
|
|
1418 case K_PAGEDOWN:
|
|
1419 case K_KPAGEDOWN:
|
|
1420 if (hislen == 0 || firstc == NUL) /* no history */
|
|
1421 goto cmdline_not_changed;
|
|
1422
|
|
1423 i = hiscnt;
|
|
1424
|
|
1425 /* save current command string so it can be restored later */
|
|
1426 if (lookfor == NULL)
|
|
1427 {
|
|
1428 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL)
|
|
1429 goto cmdline_not_changed;
|
|
1430 lookfor[ccline.cmdpos] = NUL;
|
|
1431 }
|
|
1432
|
|
1433 j = (int)STRLEN(lookfor);
|
|
1434 for (;;)
|
|
1435 {
|
|
1436 /* one step backwards */
|
230
|
1437 if (c == K_UP|| c == K_S_UP || c == Ctrl_P
|
180
|
1438 || c == K_PAGEUP || c == K_KPAGEUP)
|
7
|
1439 {
|
|
1440 if (hiscnt == hislen) /* first time */
|
|
1441 hiscnt = hisidx[histype];
|
|
1442 else if (hiscnt == 0 && hisidx[histype] != hislen - 1)
|
|
1443 hiscnt = hislen - 1;
|
|
1444 else if (hiscnt != hisidx[histype] + 1)
|
|
1445 --hiscnt;
|
|
1446 else /* at top of list */
|
|
1447 {
|
|
1448 hiscnt = i;
|
|
1449 break;
|
|
1450 }
|
|
1451 }
|
|
1452 else /* one step forwards */
|
|
1453 {
|
|
1454 /* on last entry, clear the line */
|
|
1455 if (hiscnt == hisidx[histype])
|
|
1456 {
|
|
1457 hiscnt = hislen;
|
|
1458 break;
|
|
1459 }
|
|
1460
|
|
1461 /* not on a history line, nothing to do */
|
|
1462 if (hiscnt == hislen)
|
|
1463 break;
|
|
1464 if (hiscnt == hislen - 1) /* wrap around */
|
|
1465 hiscnt = 0;
|
|
1466 else
|
|
1467 ++hiscnt;
|
|
1468 }
|
|
1469 if (hiscnt < 0 || history[histype][hiscnt].hisstr == NULL)
|
|
1470 {
|
|
1471 hiscnt = i;
|
|
1472 break;
|
|
1473 }
|
230
|
1474 if ((c != K_UP && c != K_DOWN)
|
180
|
1475 || hiscnt == i
|
7
|
1476 || STRNCMP(history[histype][hiscnt].hisstr,
|
|
1477 lookfor, (size_t)j) == 0)
|
|
1478 break;
|
|
1479 }
|
|
1480
|
|
1481 if (hiscnt != i) /* jumped to other entry */
|
|
1482 {
|
|
1483 char_u *p;
|
|
1484 int len;
|
|
1485 int old_firstc;
|
|
1486
|
|
1487 vim_free(ccline.cmdbuff);
|
|
1488 if (hiscnt == hislen)
|
|
1489 p = lookfor; /* back to the old one */
|
|
1490 else
|
|
1491 p = history[histype][hiscnt].hisstr;
|
|
1492
|
|
1493 if (histype == HIST_SEARCH
|
|
1494 && p != lookfor
|
|
1495 && (old_firstc = p[STRLEN(p) + 1]) != firstc)
|
|
1496 {
|
|
1497 /* Correct for the separator character used when
|
|
1498 * adding the history entry vs the one used now.
|
|
1499 * First loop: count length.
|
|
1500 * Second loop: copy the characters. */
|
|
1501 for (i = 0; i <= 1; ++i)
|
|
1502 {
|
|
1503 len = 0;
|
|
1504 for (j = 0; p[j] != NUL; ++j)
|
|
1505 {
|
|
1506 /* Replace old sep with new sep, unless it is
|
|
1507 * escaped. */
|
|
1508 if (p[j] == old_firstc
|
|
1509 && (j == 0 || p[j - 1] != '\\'))
|
|
1510 {
|
|
1511 if (i > 0)
|
|
1512 ccline.cmdbuff[len] = firstc;
|
|
1513 }
|
|
1514 else
|
|
1515 {
|
|
1516 /* Escape new sep, unless it is already
|
|
1517 * escaped. */
|
|
1518 if (p[j] == firstc
|
|
1519 && (j == 0 || p[j - 1] != '\\'))
|
|
1520 {
|
|
1521 if (i > 0)
|
|
1522 ccline.cmdbuff[len] = '\\';
|
|
1523 ++len;
|
|
1524 }
|
|
1525 if (i > 0)
|
|
1526 ccline.cmdbuff[len] = p[j];
|
|
1527 }
|
|
1528 ++len;
|
|
1529 }
|
|
1530 if (i == 0)
|
|
1531 {
|
|
1532 alloc_cmdbuff(len);
|
|
1533 if (ccline.cmdbuff == NULL)
|
|
1534 goto returncmd;
|
|
1535 }
|
|
1536 }
|
|
1537 ccline.cmdbuff[len] = NUL;
|
|
1538 }
|
|
1539 else
|
|
1540 {
|
|
1541 alloc_cmdbuff((int)STRLEN(p));
|
|
1542 if (ccline.cmdbuff == NULL)
|
|
1543 goto returncmd;
|
|
1544 STRCPY(ccline.cmdbuff, p);
|
|
1545 }
|
|
1546
|
|
1547 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
|
|
1548 redrawcmd();
|
|
1549 goto cmdline_changed;
|
|
1550 }
|
|
1551 beep_flush();
|
|
1552 goto cmdline_not_changed;
|
|
1553 #endif
|
|
1554
|
|
1555 case Ctrl_V:
|
|
1556 case Ctrl_Q:
|
|
1557 #ifdef FEAT_MOUSE
|
|
1558 ignore_drag_release = TRUE;
|
|
1559 #endif
|
|
1560 putcmdline('^', TRUE);
|
|
1561 c = get_literal(); /* get next (two) character(s) */
|
|
1562 do_abbr = FALSE; /* don't do abbreviation now */
|
|
1563 #ifdef FEAT_MBYTE
|
|
1564 /* may need to remove ^ when composing char was typed */
|
|
1565 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent)
|
|
1566 {
|
|
1567 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
|
|
1568 msg_putchar(' ');
|
|
1569 cursorcmd();
|
|
1570 }
|
|
1571 #endif
|
|
1572 break;
|
|
1573
|
|
1574 #ifdef FEAT_DIGRAPHS
|
|
1575 case Ctrl_K:
|
|
1576 #ifdef FEAT_MOUSE
|
|
1577 ignore_drag_release = TRUE;
|
|
1578 #endif
|
|
1579 putcmdline('?', TRUE);
|
|
1580 #ifdef USE_ON_FLY_SCROLL
|
|
1581 dont_scroll = TRUE; /* disallow scrolling here */
|
|
1582 #endif
|
|
1583 c = get_digraph(TRUE);
|
|
1584 if (c != NUL)
|
|
1585 break;
|
|
1586
|
|
1587 redrawcmd();
|
|
1588 goto cmdline_not_changed;
|
|
1589 #endif /* FEAT_DIGRAPHS */
|
|
1590
|
|
1591 #ifdef FEAT_RIGHTLEFT
|
|
1592 case Ctrl__: /* CTRL-_: switch language mode */
|
|
1593 if (!p_ari)
|
|
1594 break;
|
|
1595 #ifdef FEAT_FKMAP
|
|
1596 if (p_altkeymap)
|
|
1597 {
|
|
1598 cmd_fkmap = !cmd_fkmap;
|
|
1599 if (cmd_fkmap) /* in Farsi always in Insert mode */
|
|
1600 ccline.overstrike = FALSE;
|
|
1601 }
|
|
1602 else /* Hebrew is default */
|
|
1603 #endif
|
|
1604 cmd_hkmap = !cmd_hkmap;
|
|
1605 goto cmdline_not_changed;
|
|
1606 #endif
|
|
1607
|
|
1608 default:
|
|
1609 #ifdef UNIX
|
|
1610 if (c == intr_char)
|
|
1611 {
|
|
1612 gotesc = TRUE; /* will free ccline.cmdbuff after
|
|
1613 putting it in history */
|
|
1614 goto returncmd; /* back to Normal mode */
|
|
1615 }
|
|
1616 #endif
|
|
1617 /*
|
|
1618 * Normal character with no special meaning. Just set mod_mask
|
|
1619 * to 0x0 so that typing Shift-Space in the GUI doesn't enter
|
|
1620 * the string <S-Space>. This should only happen after ^V.
|
|
1621 */
|
|
1622 if (!IS_SPECIAL(c))
|
|
1623 mod_mask = 0x0;
|
|
1624 break;
|
|
1625 }
|
|
1626 /*
|
|
1627 * End of switch on command line character.
|
|
1628 * We come here if we have a normal character.
|
|
1629 */
|
|
1630
|
|
1631 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && ccheck_abbr(
|
|
1632 #ifdef FEAT_MBYTE
|
|
1633 /* Add ABBR_OFF for characters above 0x100, this is
|
|
1634 * what check_abbr() expects. */
|
|
1635 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
|
|
1636 #endif
|
|
1637 c))
|
|
1638 goto cmdline_changed;
|
|
1639
|
|
1640 /*
|
|
1641 * put the character in the command line
|
|
1642 */
|
|
1643 if (IS_SPECIAL(c) || mod_mask != 0)
|
|
1644 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE);
|
|
1645 else
|
|
1646 {
|
|
1647 #ifdef FEAT_MBYTE
|
|
1648 if (has_mbyte)
|
|
1649 {
|
|
1650 j = (*mb_char2bytes)(c, IObuff);
|
|
1651 IObuff[j] = NUL; /* exclude composing chars */
|
|
1652 put_on_cmdline(IObuff, j, TRUE);
|
|
1653 }
|
|
1654 else
|
|
1655 #endif
|
|
1656 {
|
|
1657 IObuff[0] = c;
|
|
1658 put_on_cmdline(IObuff, 1, TRUE);
|
|
1659 }
|
|
1660 }
|
|
1661 goto cmdline_changed;
|
|
1662
|
|
1663 /*
|
|
1664 * This part implements incremental searches for "/" and "?"
|
|
1665 * Jump to cmdline_not_changed when a character has been read but the command
|
|
1666 * line did not change. Then we only search and redraw if something changed in
|
|
1667 * the past.
|
|
1668 * Jump to cmdline_changed when the command line did change.
|
|
1669 * (Sorry for the goto's, I know it is ugly).
|
|
1670 */
|
|
1671 cmdline_not_changed:
|
|
1672 #ifdef FEAT_SEARCH_EXTRA
|
|
1673 if (!incsearch_postponed)
|
|
1674 continue;
|
|
1675 #endif
|
|
1676
|
|
1677 cmdline_changed:
|
|
1678 #ifdef FEAT_SEARCH_EXTRA
|
|
1679 /*
|
|
1680 * 'incsearch' highlighting.
|
|
1681 */
|
|
1682 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
|
|
1683 {
|
772
|
1684 pos_T end_pos;
|
|
1685
|
7
|
1686 /* if there is a character waiting, search and redraw later */
|
|
1687 if (char_avail())
|
|
1688 {
|
|
1689 incsearch_postponed = TRUE;
|
|
1690 continue;
|
|
1691 }
|
|
1692 incsearch_postponed = FALSE;
|
|
1693 curwin->w_cursor = old_cursor; /* start at old position */
|
|
1694
|
|
1695 /* If there is no command line, don't do anything */
|
|
1696 if (ccline.cmdlen == 0)
|
|
1697 i = 0;
|
|
1698 else
|
|
1699 {
|
|
1700 cursor_off(); /* so the user knows we're busy */
|
|
1701 out_flush();
|
|
1702 ++emsg_off; /* So it doesn't beep if bad expr */
|
|
1703 i = do_search(NULL, firstc, ccline.cmdbuff, count,
|
|
1704 SEARCH_KEEP + SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK);
|
|
1705 --emsg_off;
|
|
1706 /* if interrupted while searching, behave like it failed */
|
|
1707 if (got_int)
|
|
1708 {
|
|
1709 (void)vpeekc(); /* remove <C-C> from input stream */
|
|
1710 got_int = FALSE; /* don't abandon the command line */
|
|
1711 i = 0;
|
|
1712 }
|
|
1713 else if (char_avail())
|
|
1714 /* cancelled searching because a char was typed */
|
|
1715 incsearch_postponed = TRUE;
|
|
1716 }
|
772
|
1717 if (i != 0)
|
7
|
1718 highlight_match = TRUE; /* highlight position */
|
|
1719 else
|
|
1720 highlight_match = FALSE; /* remove highlight */
|
|
1721
|
|
1722 /* first restore the old curwin values, so the screen is
|
|
1723 * positioned in the same way as the actual search command */
|
|
1724 curwin->w_leftcol = old_leftcol;
|
|
1725 curwin->w_topline = old_topline;
|
|
1726 # ifdef FEAT_DIFF
|
|
1727 curwin->w_topfill = old_topfill;
|
|
1728 # endif
|
|
1729 curwin->w_botline = old_botline;
|
|
1730 changed_cline_bef_curs();
|
|
1731 update_topline();
|
|
1732
|
|
1733 if (i != 0)
|
|
1734 {
|
481
|
1735 pos_T save_pos = curwin->w_cursor;
|
|
1736
|
7
|
1737 /*
|
772
|
1738 * First move cursor to end of match, then to the start. This
|
7
|
1739 * moves the whole match onto the screen when 'nowrap' is set.
|
|
1740 */
|
|
1741 curwin->w_cursor.lnum += search_match_lines;
|
|
1742 curwin->w_cursor.col = search_match_endcol;
|
481
|
1743 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
|
|
1744 {
|
|
1745 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
|
|
1746 coladvance((colnr_T)MAXCOL);
|
|
1747 }
|
7
|
1748 validate_cursor();
|
772
|
1749 end_pos = curwin->w_cursor;
|
481
|
1750 curwin->w_cursor = save_pos;
|
7
|
1751 }
|
798
|
1752 else
|
|
1753 end_pos = curwin->w_cursor; /* shutup gcc 4 */
|
772
|
1754
|
7
|
1755 validate_cursor();
|
|
1756
|
195
|
1757 save_cmdline(&save_ccline);
|
743
|
1758 update_screen(SOME_VALID);
|
195
|
1759 restore_cmdline(&save_ccline);
|
|
1760
|
772
|
1761 /* Leave it at the end to make CTRL-R CTRL-W work. */
|
|
1762 if (i != 0)
|
|
1763 curwin->w_cursor = end_pos;
|
|
1764
|
7
|
1765 msg_starthere();
|
|
1766 redrawcmdline();
|
|
1767 did_incsearch = TRUE;
|
|
1768 }
|
|
1769 #else /* FEAT_SEARCH_EXTRA */
|
|
1770 ;
|
|
1771 #endif
|
|
1772
|
|
1773 #ifdef FEAT_RIGHTLEFT
|
|
1774 if (cmdmsg_rl
|
|
1775 # ifdef FEAT_ARABIC
|
534
|
1776 || (p_arshape && !p_tbidi && enc_utf8)
|
7
|
1777 # endif
|
|
1778 )
|
|
1779 /* Always redraw the whole command line to fix shaping and
|
|
1780 * right-left typing. Not efficient, but it works. */
|
|
1781 redrawcmd();
|
|
1782 #endif
|
|
1783 }
|
|
1784
|
|
1785 returncmd:
|
|
1786
|
|
1787 #ifdef FEAT_RIGHTLEFT
|
|
1788 cmdmsg_rl = FALSE;
|
|
1789 #endif
|
|
1790
|
|
1791 #ifdef FEAT_FKMAP
|
|
1792 cmd_fkmap = 0;
|
|
1793 #endif
|
|
1794
|
|
1795 ExpandCleanup(&xpc);
|
|
1796
|
|
1797 #ifdef FEAT_SEARCH_EXTRA
|
|
1798 if (did_incsearch)
|
|
1799 {
|
|
1800 curwin->w_cursor = old_cursor;
|
|
1801 curwin->w_curswant = old_curswant;
|
|
1802 curwin->w_leftcol = old_leftcol;
|
|
1803 curwin->w_topline = old_topline;
|
|
1804 # ifdef FEAT_DIFF
|
|
1805 curwin->w_topfill = old_topfill;
|
|
1806 # endif
|
|
1807 curwin->w_botline = old_botline;
|
|
1808 highlight_match = FALSE;
|
|
1809 validate_cursor(); /* needed for TAB */
|
743
|
1810 redraw_later(SOME_VALID);
|
7
|
1811 }
|
|
1812 #endif
|
|
1813
|
|
1814 if (ccline.cmdbuff != NULL)
|
|
1815 {
|
|
1816 /*
|
|
1817 * Put line in history buffer (":" and "=" only when it was typed).
|
|
1818 */
|
|
1819 #ifdef FEAT_CMDHIST
|
|
1820 if (ccline.cmdlen && firstc != NUL
|
|
1821 && (some_key_typed || histype == HIST_SEARCH))
|
|
1822 {
|
|
1823 add_to_history(histype, ccline.cmdbuff, TRUE,
|
|
1824 histype == HIST_SEARCH ? firstc : NUL);
|
|
1825 if (firstc == ':')
|
|
1826 {
|
|
1827 vim_free(new_last_cmdline);
|
|
1828 new_last_cmdline = vim_strsave(ccline.cmdbuff);
|
|
1829 }
|
|
1830 }
|
|
1831 #endif
|
|
1832
|
|
1833 if (gotesc) /* abandon command line */
|
|
1834 {
|
|
1835 vim_free(ccline.cmdbuff);
|
|
1836 ccline.cmdbuff = NULL;
|
|
1837 if (msg_scrolled == 0)
|
|
1838 compute_cmdrow();
|
|
1839 MSG("");
|
|
1840 redraw_cmdline = TRUE;
|
|
1841 }
|
|
1842 }
|
|
1843
|
|
1844 /*
|
|
1845 * If the screen was shifted up, redraw the whole screen (later).
|
|
1846 * If the line is too long, clear it, so ruler and shown command do
|
|
1847 * not get printed in the middle of it.
|
|
1848 */
|
|
1849 msg_check();
|
|
1850 msg_scroll = save_msg_scroll;
|
|
1851 redir_off = FALSE;
|
|
1852
|
|
1853 /* When the command line was typed, no need for a wait-return prompt. */
|
|
1854 if (some_key_typed)
|
|
1855 need_wait_return = FALSE;
|
|
1856
|
|
1857 State = save_State;
|
|
1858 #ifdef USE_IM_CONTROL
|
|
1859 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP)
|
|
1860 im_save_status(b_im_ptr);
|
|
1861 im_set_active(FALSE);
|
|
1862 #endif
|
|
1863 #ifdef FEAT_MOUSE
|
|
1864 setmouse();
|
|
1865 #endif
|
|
1866 #ifdef CURSOR_SHAPE
|
|
1867 ui_cursor_shape(); /* may show different cursor shape */
|
|
1868 #endif
|
|
1869
|
95
|
1870 {
|
|
1871 char_u *p = ccline.cmdbuff;
|
|
1872
|
|
1873 /* Make ccline empty, getcmdline() may try to use it. */
|
|
1874 ccline.cmdbuff = NULL;
|
|
1875 return p;
|
|
1876 }
|
7
|
1877 }
|
|
1878
|
|
1879 #if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO)
|
|
1880 /*
|
|
1881 * Get a command line with a prompt.
|
|
1882 * This is prepared to be called recursively from getcmdline() (e.g. by
|
|
1883 * f_input() when evaluating an expression from CTRL-R =).
|
|
1884 * Returns the command line in allocated memory, or NULL.
|
|
1885 */
|
|
1886 char_u *
|
531
|
1887 getcmdline_prompt(firstc, prompt, attr, xp_context, xp_arg)
|
7
|
1888 int firstc;
|
|
1889 char_u *prompt; /* command line prompt */
|
|
1890 int attr; /* attributes for prompt */
|
531
|
1891 int xp_context; /* type of expansion */
|
|
1892 char_u *xp_arg; /* user-defined expansion argument */
|
7
|
1893 {
|
|
1894 char_u *s;
|
|
1895 struct cmdline_info save_ccline;
|
|
1896 int msg_col_save = msg_col;
|
|
1897
|
95
|
1898 save_cmdline(&save_ccline);
|
7
|
1899 ccline.cmdprompt = prompt;
|
|
1900 ccline.cmdattr = attr;
|
531
|
1901 # ifdef FEAT_EVAL
|
|
1902 ccline.xp_context = xp_context;
|
|
1903 ccline.xp_arg = xp_arg;
|
|
1904 ccline.input_fn = (firstc == '@');
|
|
1905 # endif
|
7
|
1906 s = getcmdline(firstc, 1L, 0);
|
95
|
1907 restore_cmdline(&save_ccline);
|
7
|
1908 /* Restore msg_col, the prompt from input() may have changed it. */
|
|
1909 msg_col = msg_col_save;
|
|
1910
|
|
1911 return s;
|
|
1912 }
|
|
1913 #endif
|
|
1914
|
632
|
1915 /*
|
634
|
1916 * Return TRUE when the text must not be changed and we can't switch to
|
|
1917 * another window or buffer. Used when editing the command line, evaluating
|
|
1918 * 'balloonexpr', etc.
|
632
|
1919 */
|
|
1920 int
|
634
|
1921 text_locked()
|
632
|
1922 {
|
|
1923 #ifdef FEAT_CMDWIN
|
|
1924 if (cmdwin_type != 0)
|
|
1925 return TRUE;
|
|
1926 #endif
|
634
|
1927 return textlock != 0;
|
632
|
1928 }
|
|
1929
|
|
1930 /*
|
|
1931 * Give an error message for a command that isn't allowed while the cmdline
|
|
1932 * window is open or editing the cmdline in another way.
|
|
1933 */
|
|
1934 void
|
634
|
1935 text_locked_msg()
|
632
|
1936 {
|
|
1937 #ifdef FEAT_CMDWIN
|
|
1938 if (cmdwin_type != 0)
|
|
1939 EMSG(_(e_cmdwin));
|
|
1940 else
|
|
1941 #endif
|
|
1942 EMSG(_(e_secure));
|
|
1943 }
|
|
1944
|
819
|
1945 #if defined(FEAT_AUTOCMD) || defined(PROTO)
|
|
1946 /*
|
|
1947 * Check if "curbuf_lock" is set and return TRUE when it is and give an error
|
|
1948 * message.
|
|
1949 */
|
|
1950 int
|
|
1951 curbuf_locked()
|
|
1952 {
|
|
1953 if (curbuf_lock > 0)
|
|
1954 {
|
|
1955 EMSG(_("E788: Not allowed to edit another buffer now"));
|
|
1956 return TRUE;
|
|
1957 }
|
|
1958 return FALSE;
|
|
1959 }
|
|
1960 #endif
|
|
1961
|
7
|
1962 static int
|
|
1963 cmdline_charsize(idx)
|
|
1964 int idx;
|
|
1965 {
|
|
1966 #if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
|
|
1967 if (cmdline_star > 0) /* showing '*', always 1 position */
|
|
1968 return 1;
|
|
1969 #endif
|
|
1970 return ptr2cells(ccline.cmdbuff + idx);
|
|
1971 }
|
|
1972
|
|
1973 /*
|
|
1974 * Compute the offset of the cursor on the command line for the prompt and
|
|
1975 * indent.
|
|
1976 */
|
|
1977 static void
|
|
1978 set_cmdspos()
|
|
1979 {
|
531
|
1980 if (ccline.cmdfirstc != NUL)
|
7
|
1981 ccline.cmdspos = 1 + ccline.cmdindent;
|
|
1982 else
|
|
1983 ccline.cmdspos = 0 + ccline.cmdindent;
|
|
1984 }
|
|
1985
|
|
1986 /*
|
|
1987 * Compute the screen position for the cursor on the command line.
|
|
1988 */
|
|
1989 static void
|
|
1990 set_cmdspos_cursor()
|
|
1991 {
|
|
1992 int i, m, c;
|
|
1993
|
|
1994 set_cmdspos();
|
|
1995 if (KeyTyped)
|
534
|
1996 {
|
7
|
1997 m = Columns * Rows;
|
534
|
1998 if (m < 0) /* overflow, Columns or Rows at weird value */
|
|
1999 m = MAXCOL;
|
|
2000 }
|
7
|
2001 else
|
|
2002 m = MAXCOL;
|
|
2003 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i)
|
|
2004 {
|
|
2005 c = cmdline_charsize(i);
|
|
2006 #ifdef FEAT_MBYTE
|
|
2007 /* Count ">" for double-wide multi-byte char that doesn't fit. */
|
|
2008 if (has_mbyte)
|
|
2009 correct_cmdspos(i, c);
|
|
2010 #endif
|
|
2011 /* If the cmdline doesn't fit, put cursor on last visible char. */
|
|
2012 if ((ccline.cmdspos += c) >= m)
|
|
2013 {
|
|
2014 ccline.cmdpos = i - 1;
|
|
2015 ccline.cmdspos -= c;
|
|
2016 break;
|
|
2017 }
|
|
2018 #ifdef FEAT_MBYTE
|
|
2019 if (has_mbyte)
|
474
|
2020 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1;
|
7
|
2021 #endif
|
|
2022 }
|
|
2023 }
|
|
2024
|
|
2025 #ifdef FEAT_MBYTE
|
|
2026 /*
|
|
2027 * Check if the character at "idx", which is "cells" wide, is a multi-byte
|
|
2028 * character that doesn't fit, so that a ">" must be displayed.
|
|
2029 */
|
|
2030 static void
|
|
2031 correct_cmdspos(idx, cells)
|
|
2032 int idx;
|
|
2033 int cells;
|
|
2034 {
|
474
|
2035 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1
|
7
|
2036 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1
|
|
2037 && ccline.cmdspos % Columns + cells > Columns)
|
|
2038 ccline.cmdspos++;
|
|
2039 }
|
|
2040 #endif
|
|
2041
|
|
2042 /*
|
|
2043 * Get an Ex command line for the ":" command.
|
|
2044 */
|
|
2045 /* ARGSUSED */
|
|
2046 char_u *
|
|
2047 getexline(c, dummy, indent)
|
|
2048 int c; /* normally ':', NUL for ":append" */
|
|
2049 void *dummy; /* cookie not used */
|
|
2050 int indent; /* indent for inside conditionals */
|
|
2051 {
|
|
2052 /* When executing a register, remove ':' that's in front of each line. */
|
|
2053 if (exec_from_reg && vpeekc() == ':')
|
|
2054 (void)vgetc();
|
|
2055 return getcmdline(c, 1L, indent);
|
|
2056 }
|
|
2057
|
|
2058 /*
|
|
2059 * Get an Ex command line for Ex mode.
|
|
2060 * In Ex mode we only use the OS supplied line editing features and no
|
|
2061 * mappings or abbreviations.
|
168
|
2062 * Returns a string in allocated memory or NULL.
|
7
|
2063 */
|
|
2064 /* ARGSUSED */
|
|
2065 char_u *
|
168
|
2066 getexmodeline(promptc, dummy, indent)
|
|
2067 int promptc; /* normally ':', NUL for ":append" and '?' for
|
|
2068 :s prompt */
|
7
|
2069 void *dummy; /* cookie not used */
|
|
2070 int indent; /* indent for inside conditionals */
|
|
2071 {
|
168
|
2072 garray_T line_ga;
|
|
2073 char_u *pend;
|
|
2074 int startcol = 0;
|
|
2075 int c1;
|
|
2076 int escaped = FALSE; /* CTRL-V typed */
|
|
2077 int vcol = 0;
|
|
2078 char_u *p;
|
|
2079 int prev_char = 0;
|
7
|
2080
|
|
2081 /* Switch cursor on now. This avoids that it happens after the "\n", which
|
|
2082 * confuses the system function that computes tabstops. */
|
|
2083 cursor_on();
|
|
2084
|
|
2085 /* always start in column 0; write a newline if necessary */
|
|
2086 compute_cmdrow();
|
168
|
2087 if ((msg_col || msg_didout) && promptc != '?')
|
7
|
2088 msg_putchar('\n');
|
168
|
2089 if (promptc == ':')
|
7
|
2090 {
|
164
|
2091 /* indent that is only displayed, not in the line itself */
|
168
|
2092 if (p_prompt)
|
|
2093 msg_putchar(':');
|
7
|
2094 while (indent-- > 0)
|
|
2095 msg_putchar(' ');
|
|
2096 startcol = msg_col;
|
|
2097 }
|
|
2098
|
|
2099 ga_init2(&line_ga, 1, 30);
|
|
2100
|
164
|
2101 /* autoindent for :insert and :append is in the line itself */
|
168
|
2102 if (promptc <= 0)
|
164
|
2103 {
|
|
2104 vcol = indent;
|
|
2105 while (indent >= 8)
|
|
2106 {
|
|
2107 ga_append(&line_ga, TAB);
|
|
2108 msg_puts((char_u *)" ");
|
|
2109 indent -= 8;
|
|
2110 }
|
|
2111 while (indent-- > 0)
|
|
2112 {
|
|
2113 ga_append(&line_ga, ' ');
|
|
2114 msg_putchar(' ');
|
|
2115 }
|
|
2116 }
|
168
|
2117 ++no_mapping;
|
|
2118 ++allow_keys;
|
164
|
2119
|
7
|
2120 /*
|
|
2121 * Get the line, one character at a time.
|
|
2122 */
|
|
2123 got_int = FALSE;
|
168
|
2124 while (!got_int)
|
7
|
2125 {
|
|
2126 if (ga_grow(&line_ga, 40) == FAIL)
|
|
2127 break;
|
164
|
2128 pend = (char_u *)line_ga.ga_data + line_ga.ga_len;
|
7
|
2129
|
168
|
2130 /* Get one character at a time. Don't use inchar(), it can't handle
|
|
2131 * special characters. */
|
|
2132 c1 = vgetc();
|
7
|
2133
|
|
2134 /*
|
168
|
2135 * Handle line editing.
|
|
2136 * Previously this was left to the system, putting the terminal in
|
|
2137 * cooked mode, but then CTRL-D and CTRL-T can't be used properly.
|
7
|
2138 */
|
168
|
2139 if (got_int)
|
|
2140 {
|
|
2141 msg_putchar('\n');
|
|
2142 break;
|
|
2143 }
|
|
2144
|
|
2145 if (!escaped)
|
7
|
2146 {
|
168
|
2147 /* CR typed means "enter", which is NL */
|
|
2148 if (c1 == '\r')
|
|
2149 c1 = '\n';
|
|
2150
|
|
2151 if (c1 == BS || c1 == K_BS
|
|
2152 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL)
|
7
|
2153 {
|
168
|
2154 if (line_ga.ga_len > 0)
|
|
2155 {
|
|
2156 --line_ga.ga_len;
|
|
2157 goto redraw;
|
|
2158 }
|
|
2159 continue;
|
7
|
2160 }
|
|
2161
|
168
|
2162 if (c1 == Ctrl_U)
|
7
|
2163 {
|
168
|
2164 msg_col = startcol;
|
|
2165 msg_clr_eos();
|
|
2166 line_ga.ga_len = 0;
|
|
2167 continue;
|
|
2168 }
|
|
2169
|
|
2170 if (c1 == Ctrl_T)
|
|
2171 {
|
|
2172 p = (char_u *)line_ga.ga_data;
|
|
2173 p[line_ga.ga_len] = NUL;
|
|
2174 indent = get_indent_str(p, 8);
|
|
2175 indent += curbuf->b_p_sw - indent % curbuf->b_p_sw;
|
|
2176 add_indent:
|
|
2177 while (get_indent_str(p, 8) < indent)
|
7
|
2178 {
|
168
|
2179 char_u *s = skipwhite(p);
|
|
2180
|
|
2181 ga_grow(&line_ga, 1);
|
|
2182 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1);
|
|
2183 *s = ' ';
|
|
2184 ++line_ga.ga_len;
|
7
|
2185 }
|
168
|
2186 redraw:
|
|
2187 /* redraw the line */
|
|
2188 msg_col = startcol;
|
|
2189 windgoto(msg_row, msg_col);
|
|
2190 vcol = 0;
|
|
2191 for (p = (char_u *)line_ga.ga_data;
|
|
2192 p < (char_u *)line_ga.ga_data + line_ga.ga_len; ++p)
|
7
|
2193 {
|
168
|
2194 if (*p == TAB)
|
7
|
2195 {
|
168
|
2196 do
|
7
|
2197 {
|
168
|
2198 msg_putchar(' ');
|
|
2199 } while (++vcol % 8);
|
7
|
2200 }
|
168
|
2201 else
|
164
|
2202 {
|
168
|
2203 msg_outtrans_len(p, 1);
|
|
2204 vcol += char2cells(*p);
|
7
|
2205 }
|
|
2206 }
|
168
|
2207 msg_clr_eos();
|
|
2208 continue;
|
|
2209 }
|
|
2210
|
|
2211 if (c1 == Ctrl_D)
|
|
2212 {
|
|
2213 /* Delete one shiftwidth. */
|
|
2214 p = (char_u *)line_ga.ga_data;
|
|
2215 if (prev_char == '0' || prev_char == '^')
|
7
|
2216 {
|
168
|
2217 if (prev_char == '^')
|
|
2218 ex_keep_indent = TRUE;
|
|
2219 indent = 0;
|
|
2220 p[--line_ga.ga_len] = NUL;
|
7
|
2221 }
|
|
2222 else
|
|
2223 {
|
168
|
2224 p[line_ga.ga_len] = NUL;
|
|
2225 indent = get_indent_str(p, 8);
|
|
2226 --indent;
|
|
2227 indent -= indent % curbuf->b_p_sw;
|
|
2228 }
|
|
2229 while (get_indent_str(p, 8) > indent)
|
|
2230 {
|
|
2231 char_u *s = skipwhite(p);
|
|
2232
|
|
2233 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1);
|
|
2234 --line_ga.ga_len;
|
7
|
2235 }
|
168
|
2236 goto add_indent;
|
|
2237 }
|
|
2238
|
|
2239 if (c1 == Ctrl_V || c1 == Ctrl_Q)
|
|
2240 {
|
|
2241 escaped = TRUE;
|
|
2242 continue;
|
7
|
2243 }
|
168
|
2244
|
|
2245 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */
|
|
2246 if (IS_SPECIAL(c1))
|
|
2247 continue;
|
7
|
2248 }
|
168
|
2249
|
|
2250 if (IS_SPECIAL(c1))
|
|
2251 c1 = '?';
|
|
2252 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1;
|
|
2253 prev_char = c1;
|
|
2254 if (c1 == '\n')
|
|
2255 msg_putchar('\n');
|
|
2256 else if (c1 == TAB)
|
|
2257 {
|
|
2258 /* Don't use chartabsize(), 'ts' can be different */
|
|
2259 do
|
|
2260 {
|
|
2261 msg_putchar(' ');
|
|
2262 } while (++vcol % 8);
|
|
2263 }
|
7
|
2264 else
|
|
2265 {
|
168
|
2266 msg_outtrans_len(
|
|
2267 ((char_u *)line_ga.ga_data) + line_ga.ga_len, 1);
|
|
2268 vcol += char2cells(c1);
|
7
|
2269 }
|
168
|
2270 ++line_ga.ga_len;
|
|
2271 escaped = FALSE;
|
|
2272
|
|
2273 windgoto(msg_row, msg_col);
|
164
|
2274 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len;
|
168
|
2275
|
|
2276 /* we are done when a NL is entered, but not when it comes after a
|
|
2277 * backslash */
|
|
2278 if (line_ga.ga_len > 0 && pend[-1] == '\n'
|
|
2279 && (line_ga.ga_len <= 1 || pend[-2] != '\\'))
|
7
|
2280 {
|
|
2281 --line_ga.ga_len;
|
164
|
2282 --pend;
|
|
2283 *pend = NUL;
|
168
|
2284 break;
|
7
|
2285 }
|
|
2286 }
|
|
2287
|
168
|
2288 --no_mapping;
|
|
2289 --allow_keys;
|
|
2290
|
7
|
2291 /* make following messages go to the next line */
|
|
2292 msg_didout = FALSE;
|
|
2293 msg_col = 0;
|
|
2294 if (msg_row < Rows - 1)
|
|
2295 ++msg_row;
|
|
2296 emsg_on_display = FALSE; /* don't want ui_delay() */
|
|
2297
|
|
2298 if (got_int)
|
|
2299 ga_clear(&line_ga);
|
|
2300
|
|
2301 return (char_u *)line_ga.ga_data;
|
|
2302 }
|
|
2303
|
502
|
2304 # if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
|
|
2305 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
|
7
|
2306 /*
|
|
2307 * Return TRUE if ccline.overstrike is on.
|
|
2308 */
|
|
2309 int
|
|
2310 cmdline_overstrike()
|
|
2311 {
|
|
2312 return ccline.overstrike;
|
|
2313 }
|
|
2314
|
|
2315 /*
|
|
2316 * Return TRUE if the cursor is at the end of the cmdline.
|
|
2317 */
|
|
2318 int
|
|
2319 cmdline_at_end()
|
|
2320 {
|
|
2321 return (ccline.cmdpos >= ccline.cmdlen);
|
|
2322 }
|
|
2323 #endif
|
|
2324
|
574
|
2325 #if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO)
|
7
|
2326 /*
|
|
2327 * Return the virtual column number at the current cursor position.
|
|
2328 * This is used by the IM code to obtain the start of the preedit string.
|
|
2329 */
|
|
2330 colnr_T
|
|
2331 cmdline_getvcol_cursor()
|
|
2332 {
|
|
2333 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen)
|
|
2334 return MAXCOL;
|
|
2335
|
|
2336 # ifdef FEAT_MBYTE
|
|
2337 if (has_mbyte)
|
|
2338 {
|
|
2339 colnr_T col;
|
|
2340 int i = 0;
|
|
2341
|
|
2342 for (col = 0; i < ccline.cmdpos; ++col)
|
474
|
2343 i += (*mb_ptr2len)(ccline.cmdbuff + i);
|
7
|
2344
|
|
2345 return col;
|
|
2346 }
|
|
2347 else
|
|
2348 # endif
|
|
2349 return ccline.cmdpos;
|
|
2350 }
|
|
2351 #endif
|
|
2352
|
|
2353 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
|
|
2354 /*
|
|
2355 * If part of the command line is an IM preedit string, redraw it with
|
|
2356 * IM feedback attributes. The cursor position is restored after drawing.
|
|
2357 */
|
|
2358 static void
|
|
2359 redrawcmd_preedit()
|
|
2360 {
|
|
2361 if ((State & CMDLINE)
|
|
2362 && xic != NULL
|
|
2363 && im_get_status()
|
|
2364 && !p_imdisable
|
|
2365 && im_is_preediting())
|
|
2366 {
|
|
2367 int cmdpos = 0;
|
|
2368 int cmdspos;
|
|
2369 int old_row;
|
|
2370 int old_col;
|
|
2371 colnr_T col;
|
|
2372
|
|
2373 old_row = msg_row;
|
|
2374 old_col = msg_col;
|
531
|
2375 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent;
|
7
|
2376
|
|
2377 # ifdef FEAT_MBYTE
|
|
2378 if (has_mbyte)
|
|
2379 {
|
|
2380 for (col = 0; col < preedit_start_col
|
|
2381 && cmdpos < ccline.cmdlen; ++col)
|
|
2382 {
|
|
2383 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos);
|
474
|
2384 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
|
7
|
2385 }
|
|
2386 }
|
|
2387 else
|
|
2388 # endif
|
|
2389 {
|
|
2390 cmdspos += preedit_start_col;
|
|
2391 cmdpos += preedit_start_col;
|
|
2392 }
|
|
2393
|
|
2394 msg_row = cmdline_row + (cmdspos / (int)Columns);
|
|
2395 msg_col = cmdspos % (int)Columns;
|
|
2396 if (msg_row >= Rows)
|
|
2397 msg_row = Rows - 1;
|
|
2398
|
|
2399 for (col = 0; cmdpos < ccline.cmdlen; ++col)
|
|
2400 {
|
|
2401 int char_len;
|
|
2402 int char_attr;
|
|
2403
|
|
2404 char_attr = im_get_feedback_attr(col);
|
|
2405 if (char_attr < 0)
|
|
2406 break; /* end of preedit string */
|
|
2407
|
|
2408 # ifdef FEAT_MBYTE
|
|
2409 if (has_mbyte)
|
474
|
2410 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos);
|
7
|
2411 else
|
|
2412 # endif
|
|
2413 char_len = 1;
|
|
2414
|
|
2415 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr);
|
|
2416 cmdpos += char_len;
|
|
2417 }
|
|
2418
|
|
2419 msg_row = old_row;
|
|
2420 msg_col = old_col;
|
|
2421 }
|
|
2422 }
|
|
2423 #endif /* FEAT_XIM && FEAT_GUI_GTK */
|
|
2424
|
|
2425 /*
|
|
2426 * Allocate a new command line buffer.
|
|
2427 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.
|
|
2428 * Returns the new value of ccline.cmdbuff and ccline.cmdbufflen.
|
|
2429 */
|
|
2430 static void
|
|
2431 alloc_cmdbuff(len)
|
|
2432 int len;
|
|
2433 {
|
|
2434 /*
|
|
2435 * give some extra space to avoid having to allocate all the time
|
|
2436 */
|
|
2437 if (len < 80)
|
|
2438 len = 100;
|
|
2439 else
|
|
2440 len += 20;
|
|
2441
|
|
2442 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */
|
|
2443 ccline.cmdbufflen = len;
|
|
2444 }
|
|
2445
|
|
2446 /*
|
|
2447 * Re-allocate the command line to length len + something extra.
|
|
2448 * return FAIL for failure, OK otherwise
|
|
2449 */
|
|
2450 static int
|
|
2451 realloc_cmdbuff(len)
|
|
2452 int len;
|
|
2453 {
|
|
2454 char_u *p;
|
|
2455
|
|
2456 p = ccline.cmdbuff;
|
|
2457 alloc_cmdbuff(len); /* will get some more */
|
|
2458 if (ccline.cmdbuff == NULL) /* out of memory */
|
|
2459 {
|
|
2460 ccline.cmdbuff = p; /* keep the old one */
|
|
2461 return FAIL;
|
|
2462 }
|
|
2463 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen + 1);
|
|
2464 vim_free(p);
|
|
2465 return OK;
|
|
2466 }
|
|
2467
|
359
|
2468 #if defined(FEAT_ARABIC) || defined(PROTO)
|
|
2469 static char_u *arshape_buf = NULL;
|
|
2470
|
|
2471 # if defined(EXITFREE) || defined(PROTO)
|
|
2472 void
|
|
2473 free_cmdline_buf()
|
|
2474 {
|
|
2475 vim_free(arshape_buf);
|
|
2476 }
|
|
2477 # endif
|
|
2478 #endif
|
|
2479
|
7
|
2480 /*
|
|
2481 * Draw part of the cmdline at the current cursor position. But draw stars
|
|
2482 * when cmdline_star is TRUE.
|
|
2483 */
|
|
2484 static void
|
|
2485 draw_cmdline(start, len)
|
|
2486 int start;
|
|
2487 int len;
|
|
2488 {
|
|
2489 #if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
|
|
2490 int i;
|
|
2491
|
|
2492 if (cmdline_star > 0)
|
|
2493 for (i = 0; i < len; ++i)
|
|
2494 {
|
|
2495 msg_putchar('*');
|
|
2496 # ifdef FEAT_MBYTE
|
|
2497 if (has_mbyte)
|
474
|
2498 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1;
|
7
|
2499 # endif
|
|
2500 }
|
|
2501 else
|
|
2502 #endif
|
|
2503 #ifdef FEAT_ARABIC
|
|
2504 if (p_arshape && !p_tbidi && enc_utf8 && len > 0)
|
|
2505 {
|
|
2506 static int buflen = 0;
|
|
2507 char_u *p;
|
|
2508 int j;
|
|
2509 int newlen = 0;
|
|
2510 int mb_l;
|
719
|
2511 int pc, pc1 = 0;
|
7
|
2512 int prev_c = 0;
|
|
2513 int prev_c1 = 0;
|
714
|
2514 int u8c;
|
|
2515 int u8cc[MAX_MCO];
|
7
|
2516 int nc = 0;
|
|
2517
|
|
2518 /*
|
|
2519 * Do arabic shaping into a temporary buffer. This is very
|
|
2520 * inefficient!
|
|
2521 */
|
507
|
2522 if (len * 2 + 2 > buflen)
|
7
|
2523 {
|
|
2524 /* Re-allocate the buffer. We keep it around to avoid a lot of
|
|
2525 * alloc()/free() calls. */
|
359
|
2526 vim_free(arshape_buf);
|
507
|
2527 buflen = len * 2 + 2;
|
359
|
2528 arshape_buf = alloc(buflen);
|
|
2529 if (arshape_buf == NULL)
|
7
|
2530 return; /* out of memory */
|
|
2531 }
|
|
2532
|
507
|
2533 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start)))
|
|
2534 {
|
|
2535 /* Prepend a space to draw the leading composing char on. */
|
|
2536 arshape_buf[0] = ' ';
|
|
2537 newlen = 1;
|
|
2538 }
|
|
2539
|
7
|
2540 for (j = start; j < start + len; j += mb_l)
|
|
2541 {
|
|
2542 p = ccline.cmdbuff + j;
|
714
|
2543 u8c = utfc_ptr2char_len(p, u8cc, start + len - j);
|
474
|
2544 mb_l = utfc_ptr2len_len(p, start + len - j);
|
7
|
2545 if (ARABIC_CHAR(u8c))
|
|
2546 {
|
|
2547 /* Do Arabic shaping. */
|
|
2548 if (cmdmsg_rl)
|
|
2549 {
|
|
2550 /* displaying from right to left */
|
|
2551 pc = prev_c;
|
|
2552 pc1 = prev_c1;
|
714
|
2553 prev_c1 = u8cc[0];
|
7
|
2554 if (j + mb_l >= start + len)
|
|
2555 nc = NUL;
|
|
2556 else
|
|
2557 nc = utf_ptr2char(p + mb_l);
|
|
2558 }
|
|
2559 else
|
|
2560 {
|
|
2561 /* displaying from left to right */
|
|
2562 if (j + mb_l >= start + len)
|
|
2563 pc = NUL;
|
|
2564 else
|
714
|
2565 {
|
|
2566 int pcc[MAX_MCO];
|
|
2567
|
|
2568 pc = utfc_ptr2char_len(p + mb_l, pcc,
|
7
|
2569 start + len - j - mb_l);
|
714
|
2570 pc1 = pcc[0];
|
|
2571 }
|
7
|
2572 nc = prev_c;
|
|
2573 }
|
|
2574 prev_c = u8c;
|
|
2575
|
714
|
2576 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc);
|
7
|
2577
|
359
|
2578 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen);
|
714
|
2579 if (u8cc[0] != 0)
|
7
|
2580 {
|
714
|
2581 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen);
|
|
2582 if (u8cc[1] != 0)
|
|
2583 newlen += (*mb_char2bytes)(u8cc[1],
|
359
|
2584 arshape_buf + newlen);
|
7
|
2585 }
|
|
2586 }
|
|
2587 else
|
|
2588 {
|
|
2589 prev_c = u8c;
|
359
|
2590 mch_memmove(arshape_buf + newlen, p, mb_l);
|
7
|
2591 newlen += mb_l;
|
|
2592 }
|
|
2593 }
|
|
2594
|
359
|
2595 msg_outtrans_len(arshape_buf, newlen);
|
7
|
2596 }
|
|
2597 else
|
|
2598 #endif
|
|
2599 msg_outtrans_len(ccline.cmdbuff + start, len);
|
|
2600 }
|
|
2601
|
|
2602 /*
|
|
2603 * Put a character on the command line. Shifts the following text to the
|
|
2604 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc.
|
|
2605 * "c" must be printable (fit in one display cell)!
|
|
2606 */
|
|
2607 void
|
|
2608 putcmdline(c, shift)
|
|
2609 int c;
|
|
2610 int shift;
|
|
2611 {
|
|
2612 if (cmd_silent)
|
|
2613 return;
|
|
2614 msg_no_more = TRUE;
|
|
2615 msg_putchar(c);
|
|
2616 if (shift)
|
|
2617 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
|
|
2618 msg_no_more = FALSE;
|
|
2619 cursorcmd();
|
|
2620 }
|
|
2621
|
|
2622 /*
|
|
2623 * Undo a putcmdline(c, FALSE).
|
|
2624 */
|
|
2625 void
|
|
2626 unputcmdline()
|
|
2627 {
|
|
2628 if (cmd_silent)
|
|
2629 return;
|
|
2630 msg_no_more = TRUE;
|
|
2631 if (ccline.cmdlen == ccline.cmdpos)
|
|
2632 msg_putchar(' ');
|
|
2633 else
|
|
2634 draw_cmdline(ccline.cmdpos, 1);
|
|
2635 msg_no_more = FALSE;
|
|
2636 cursorcmd();
|
|
2637 }
|
|
2638
|
|
2639 /*
|
|
2640 * Put the given string, of the given length, onto the command line.
|
|
2641 * If len is -1, then STRLEN() is used to calculate the length.
|
|
2642 * If 'redraw' is TRUE then the new part of the command line, and the remaining
|
|
2643 * part will be redrawn, otherwise it will not. If this function is called
|
|
2644 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be
|
|
2645 * called afterwards.
|
|
2646 */
|
|
2647 int
|
|
2648 put_on_cmdline(str, len, redraw)
|
|
2649 char_u *str;
|
|
2650 int len;
|
|
2651 int redraw;
|
|
2652 {
|
|
2653 int retval;
|
|
2654 int i;
|
|
2655 int m;
|
|
2656 int c;
|
|
2657
|
|
2658 if (len < 0)
|
|
2659 len = (int)STRLEN(str);
|
|
2660
|
|
2661 /* Check if ccline.cmdbuff needs to be longer */
|
|
2662 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen)
|
|
2663 retval = realloc_cmdbuff(ccline.cmdlen + len);
|
|
2664 else
|
|
2665 retval = OK;
|
|
2666 if (retval == OK)
|
|
2667 {
|
|
2668 if (!ccline.overstrike)
|
|
2669 {
|
|
2670 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
|
|
2671 ccline.cmdbuff + ccline.cmdpos,
|
|
2672 (size_t)(ccline.cmdlen - ccline.cmdpos));
|
|
2673 ccline.cmdlen += len;
|
|
2674 }
|
|
2675 else
|
|
2676 {
|
|
2677 #ifdef FEAT_MBYTE
|
|
2678 if (has_mbyte)
|
|
2679 {
|
|
2680 /* Count nr of characters in the new string. */
|
|
2681 m = 0;
|
474
|
2682 for (i = 0; i < len; i += (*mb_ptr2len)(str + i))
|
7
|
2683 ++m;
|
|
2684 /* Count nr of bytes in cmdline that are overwritten by these
|
|
2685 * characters. */
|
|
2686 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0;
|
474
|
2687 i += (*mb_ptr2len)(ccline.cmdbuff + i))
|
7
|
2688 --m;
|
|
2689 if (i < ccline.cmdlen)
|
|
2690 {
|
|
2691 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len,
|
|
2692 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i));
|
|
2693 ccline.cmdlen += ccline.cmdpos + len - i;
|
|
2694 }
|
|
2695 else
|
|
2696 ccline.cmdlen = ccline.cmdpos + len;
|
|
2697 }
|
|
2698 else
|
|
2699 #endif
|
|
2700 if (ccline.cmdpos + len > ccline.cmdlen)
|
|
2701 ccline.cmdlen = ccline.cmdpos + len;
|
|
2702 }
|
|
2703 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len);
|
|
2704 ccline.cmdbuff[ccline.cmdlen] = NUL;
|
|
2705
|
|
2706 #ifdef FEAT_MBYTE
|
|
2707 if (enc_utf8)
|
|
2708 {
|
|
2709 /* When the inserted text starts with a composing character,
|
|
2710 * backup to the character before it. There could be two of them.
|
|
2711 */
|
|
2712 i = 0;
|
|
2713 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
|
|
2714 while (ccline.cmdpos > 0 && utf_iscomposing(c))
|
|
2715 {
|
|
2716 i = (*mb_head_off)(ccline.cmdbuff,
|
|
2717 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
|
|
2718 ccline.cmdpos -= i;
|
|
2719 len += i;
|
|
2720 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos);
|
|
2721 }
|
|
2722 # ifdef FEAT_ARABIC
|
|
2723 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c))
|
|
2724 {
|
|
2725 /* Check the previous character for Arabic combining pair. */
|
|
2726 i = (*mb_head_off)(ccline.cmdbuff,
|
|
2727 ccline.cmdbuff + ccline.cmdpos - 1) + 1;
|
|
2728 if (arabic_combine(utf_ptr2char(ccline.cmdbuff
|
|
2729 + ccline.cmdpos - i), c))
|
|
2730 {
|
|
2731 ccline.cmdpos -= i;
|
|
2732 len += i;
|
|
2733 }
|
|
2734 else
|
|
2735 i = 0;
|
|
2736 }
|
|
2737 # endif
|
|
2738 if (i != 0)
|
|
2739 {
|
|
2740 /* Also backup the cursor position. */
|
|
2741 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos);
|
|
2742 ccline.cmdspos -= i;
|
|
2743 msg_col -= i;
|
|
2744 if (msg_col < 0)
|
|
2745 {
|
|
2746 msg_col += Columns;
|
|
2747 --msg_row;
|
|
2748 }
|
|
2749 }
|
|
2750 }
|
|
2751 #endif
|
|
2752
|
|
2753 if (redraw && !cmd_silent)
|
|
2754 {
|
|
2755 msg_no_more = TRUE;
|
|
2756 i = cmdline_row;
|
|
2757 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos);
|
|
2758 /* Avoid clearing the rest of the line too often. */
|
|
2759 if (cmdline_row != i || ccline.overstrike)
|
|
2760 msg_clr_eos();
|
|
2761 msg_no_more = FALSE;
|
|
2762 }
|
|
2763 #ifdef FEAT_FKMAP
|
|
2764 /*
|
|
2765 * If we are in Farsi command mode, the character input must be in
|
|
2766 * Insert mode. So do not advance the cmdpos.
|
|
2767 */
|
|
2768 if (!cmd_fkmap)
|
|
2769 #endif
|
|
2770 {
|
|
2771 if (KeyTyped)
|
534
|
2772 {
|
7
|
2773 m = Columns * Rows;
|
534
|
2774 if (m < 0) /* overflow, Columns or Rows at weird value */
|
|
2775 m = MAXCOL;
|
|
2776 }
|
7
|
2777 else
|
|
2778 m = MAXCOL;
|
|
2779 for (i = 0; i < len; ++i)
|
|
2780 {
|
|
2781 c = cmdline_charsize(ccline.cmdpos);
|
|
2782 #ifdef FEAT_MBYTE
|
|
2783 /* count ">" for a double-wide char that doesn't fit. */
|
|
2784 if (has_mbyte)
|
|
2785 correct_cmdspos(ccline.cmdpos, c);
|
|
2786 #endif
|
|
2787 /* Stop cursor at the end of the screen */
|
|
2788 if (ccline.cmdspos + c >= m)
|
|
2789 break;
|
|
2790 ccline.cmdspos += c;
|
|
2791 #ifdef FEAT_MBYTE
|
|
2792 if (has_mbyte)
|
|
2793 {
|
474
|
2794 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1;
|
7
|
2795 if (c > len - i - 1)
|
|
2796 c = len - i - 1;
|
|
2797 ccline.cmdpos += c;
|
|
2798 i += c;
|
|
2799 }
|
|
2800 #endif
|
|
2801 ++ccline.cmdpos;
|
|
2802 }
|
|
2803 }
|
|
2804 }
|
|
2805 if (redraw)
|
|
2806 msg_check();
|
|
2807 return retval;
|
|
2808 }
|
|
2809
|
95
|
2810 static struct cmdline_info prev_ccline;
|
|
2811 static int prev_ccline_used = FALSE;
|
|
2812
|
|
2813 /*
|
|
2814 * Save ccline, because obtaining the "=" register may execute "normal :cmd"
|
|
2815 * and overwrite it. But get_cmdline_str() may need it, thus make it
|
|
2816 * available globally in prev_ccline.
|
|
2817 */
|
|
2818 static void
|
|
2819 save_cmdline(ccp)
|
|
2820 struct cmdline_info *ccp;
|
|
2821 {
|
|
2822 if (!prev_ccline_used)
|
|
2823 {
|
|
2824 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info));
|
|
2825 prev_ccline_used = TRUE;
|
|
2826 }
|
|
2827 *ccp = prev_ccline;
|
|
2828 prev_ccline = ccline;
|
|
2829 ccline.cmdbuff = NULL;
|
|
2830 ccline.cmdprompt = NULL;
|
|
2831 }
|
|
2832
|
|
2833 /*
|
|
2834 * Resture ccline after it has been saved with save_cmdline().
|
|
2835 */
|
|
2836 static void
|
|
2837 restore_cmdline(ccp)
|
|
2838 struct cmdline_info *ccp;
|
|
2839 {
|
|
2840 ccline = prev_ccline;
|
|
2841 prev_ccline = *ccp;
|
|
2842 }
|
|
2843
|
15
|
2844 /*
|
|
2845 * paste a yank register into the command line.
|
|
2846 * used by CTRL-R command in command-line mode
|
|
2847 * insert_reg() can't be used here, because special characters from the
|
|
2848 * register contents will be interpreted as commands.
|
|
2849 *
|
|
2850 * return FAIL for failure, OK otherwise
|
|
2851 */
|
|
2852 static int
|
|
2853 cmdline_paste(regname, literally)
|
|
2854 int regname;
|
|
2855 int literally; /* Insert text literally instead of "as typed" */
|
|
2856 {
|
|
2857 long i;
|
|
2858 char_u *arg;
|
772
|
2859 char_u *p;
|
15
|
2860 int allocated;
|
|
2861 struct cmdline_info save_ccline;
|
|
2862
|
|
2863 /* check for valid regname; also accept special characters for CTRL-R in
|
|
2864 * the command line */
|
|
2865 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W
|
|
2866 && regname != Ctrl_A && !valid_yank_reg(regname, FALSE))
|
|
2867 return FAIL;
|
|
2868
|
|
2869 /* A register containing CTRL-R can cause an endless loop. Allow using
|
|
2870 * CTRL-C to break the loop. */
|
|
2871 line_breakcheck();
|
|
2872 if (got_int)
|
|
2873 return FAIL;
|
|
2874
|
|
2875 #ifdef FEAT_CLIPBOARD
|
|
2876 regname = may_get_selection(regname);
|
|
2877 #endif
|
|
2878
|
634
|
2879 /* Need to save and restore ccline. And set "textlock" to avoid nasty
|
632
|
2880 * things like going to another buffer when evaluating an expression. */
|
95
|
2881 save_cmdline(&save_ccline);
|
634
|
2882 ++textlock;
|
15
|
2883 i = get_spec_reg(regname, &arg, &allocated, TRUE);
|
634
|
2884 --textlock;
|
95
|
2885 restore_cmdline(&save_ccline);
|
15
|
2886
|
|
2887 if (i)
|
|
2888 {
|
|
2889 /* Got the value of a special register in "arg". */
|
|
2890 if (arg == NULL)
|
|
2891 return FAIL;
|
772
|
2892
|
|
2893 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate
|
|
2894 * part of the word. */
|
|
2895 p = arg;
|
|
2896 if (p_is && regname == Ctrl_W)
|
|
2897 {
|
|
2898 char_u *w;
|
|
2899 int len;
|
|
2900
|
|
2901 /* Locate start of last word in the cmd buffer. */
|
|
2902 for (w = ccline.cmdbuff + ccline.cmdlen; w > ccline.cmdbuff; )
|
|
2903 {
|
|
2904 #ifdef FEAT_MBYTE
|
|
2905 if (has_mbyte)
|
|
2906 {
|
|
2907 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
|
|
2908 if (!vim_iswordc(mb_ptr2char(w - len)))
|
|
2909 break;
|
|
2910 w -= len;
|
|
2911 }
|
|
2912 else
|
|
2913 #endif
|
|
2914 {
|
|
2915 if (!vim_iswordc(w[-1]))
|
|
2916 break;
|
|
2917 --w;
|
|
2918 }
|
|
2919 }
|
835
|
2920 len = (int)((ccline.cmdbuff + ccline.cmdlen) - w);
|
772
|
2921 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
|
|
2922 p += len;
|
|
2923 }
|
|
2924
|
|
2925 cmdline_paste_str(p, literally);
|
15
|
2926 if (allocated)
|
|
2927 vim_free(arg);
|
|
2928 return OK;
|
|
2929 }
|
|
2930
|
|
2931 return cmdline_paste_reg(regname, literally);
|
|
2932 }
|
|
2933
|
|
2934 /*
|
|
2935 * Put a string on the command line.
|
|
2936 * When "literally" is TRUE, insert literally.
|
|
2937 * When "literally" is FALSE, insert as typed, but don't leave the command
|
|
2938 * line.
|
|
2939 */
|
|
2940 void
|
|
2941 cmdline_paste_str(s, literally)
|
|
2942 char_u *s;
|
|
2943 int literally;
|
|
2944 {
|
|
2945 int c, cv;
|
|
2946
|
|
2947 if (literally)
|
|
2948 put_on_cmdline(s, -1, TRUE);
|
|
2949 else
|
|
2950 while (*s != NUL)
|
|
2951 {
|
|
2952 cv = *s;
|
|
2953 if (cv == Ctrl_V && s[1])
|
|
2954 ++s;
|
|
2955 #ifdef FEAT_MBYTE
|
|
2956 if (has_mbyte)
|
|
2957 {
|
|
2958 c = mb_ptr2char(s);
|
|
2959 s += mb_char2len(c);
|
|
2960 }
|
|
2961 else
|
|
2962 #endif
|
|
2963 c = *s++;
|
|
2964 if (cv == Ctrl_V || c == ESC || c == Ctrl_C || c == CAR || c == NL
|
|
2965 #ifdef UNIX
|
|
2966 || c == intr_char
|
|
2967 #endif
|
|
2968 || (c == Ctrl_BSL && *s == Ctrl_N))
|
|
2969 stuffcharReadbuff(Ctrl_V);
|
|
2970 stuffcharReadbuff(c);
|
|
2971 }
|
|
2972 }
|
|
2973
|
7
|
2974 #ifdef FEAT_WILDMENU
|
|
2975 /*
|
|
2976 * Delete characters on the command line, from "from" to the current
|
|
2977 * position.
|
|
2978 */
|
|
2979 static void
|
|
2980 cmdline_del(from)
|
|
2981 int from;
|
|
2982 {
|
|
2983 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos,
|
|
2984 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
|
|
2985 ccline.cmdlen -= ccline.cmdpos - from;
|
|
2986 ccline.cmdpos = from;
|
|
2987 }
|
|
2988 #endif
|
|
2989
|
|
2990 /*
|
|
2991 * this fuction is called when the screen size changes and with incremental
|
|
2992 * search
|
|
2993 */
|
|
2994 void
|
|
2995 redrawcmdline()
|
|
2996 {
|
|
2997 if (cmd_silent)
|
|
2998 return;
|
|
2999 need_wait_return = FALSE;
|
|
3000 compute_cmdrow();
|
|
3001 redrawcmd();
|
|
3002 cursorcmd();
|
|
3003 }
|
|
3004
|
|
3005 static void
|
|
3006 redrawcmdprompt()
|
|
3007 {
|
|
3008 int i;
|
|
3009
|
|
3010 if (cmd_silent)
|
|
3011 return;
|
531
|
3012 if (ccline.cmdfirstc != NUL)
|
7
|
3013 msg_putchar(ccline.cmdfirstc);
|
|
3014 if (ccline.cmdprompt != NULL)
|
|
3015 {
|
|
3016 msg_puts_attr(ccline.cmdprompt, ccline.cmdattr);
|
|
3017 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns;
|
|
3018 /* do the reverse of set_cmdspos() */
|
531
|
3019 if (ccline.cmdfirstc != NUL)
|
7
|
3020 --ccline.cmdindent;
|
|
3021 }
|
|
3022 else
|
|
3023 for (i = ccline.cmdindent; i > 0; --i)
|
|
3024 msg_putchar(' ');
|
|
3025 }
|
|
3026
|
|
3027 /*
|
|
3028 * Redraw what is currently on the command line.
|
|
3029 */
|
|
3030 void
|
|
3031 redrawcmd()
|
|
3032 {
|
|
3033 if (cmd_silent)
|
|
3034 return;
|
|
3035
|
683
|
3036 /* when 'incsearch' is set there may be no command line while redrawing */
|
|
3037 if (ccline.cmdbuff == NULL)
|
|
3038 {
|
|
3039 windgoto(cmdline_row, 0);
|
|
3040 msg_clr_eos();
|
|
3041 return;
|
|
3042 }
|
|
3043
|
7
|
3044 msg_start();
|
|
3045 redrawcmdprompt();
|
|
3046
|
|
3047 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */
|
|
3048 msg_no_more = TRUE;
|
|
3049 draw_cmdline(0, ccline.cmdlen);
|
|
3050 msg_clr_eos();
|
|
3051 msg_no_more = FALSE;
|
|
3052
|
|
3053 set_cmdspos_cursor();
|
|
3054
|
|
3055 /*
|
|
3056 * An emsg() before may have set msg_scroll. This is used in normal mode,
|
|
3057 * in cmdline mode we can reset them now.
|
|
3058 */
|
|
3059 msg_scroll = FALSE; /* next message overwrites cmdline */
|
|
3060
|
|
3061 /* Typing ':' at the more prompt may set skip_redraw. We don't want this
|
|
3062 * in cmdline mode */
|
|
3063 skip_redraw = FALSE;
|
|
3064 }
|
|
3065
|
|
3066 void
|
|
3067 compute_cmdrow()
|
|
3068 {
|
540
|
3069 if (exmode_active || msg_scrolled != 0)
|
7
|
3070 cmdline_row = Rows - 1;
|
|
3071 else
|
|
3072 cmdline_row = W_WINROW(lastwin) + lastwin->w_height
|
|
3073 + W_STATUS_HEIGHT(lastwin);
|
|
3074 }
|
|
3075
|
|
3076 static void
|
|
3077 cursorcmd()
|
|
3078 {
|
|
3079 if (cmd_silent)
|
|
3080 return;
|
|
3081
|
|
3082 #ifdef FEAT_RIGHTLEFT
|
|
3083 if (cmdmsg_rl)
|
|
3084 {
|
|
3085 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1));
|
|
3086 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1;
|
|
3087 if (msg_row <= 0)
|
|
3088 msg_row = Rows - 1;
|
|
3089 }
|
|
3090 else
|
|
3091 #endif
|
|
3092 {
|
|
3093 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns);
|
|
3094 msg_col = ccline.cmdspos % (int)Columns;
|
|
3095 if (msg_row >= Rows)
|
|
3096 msg_row = Rows - 1;
|
|
3097 }
|
|
3098
|
|
3099 windgoto(msg_row, msg_col);
|
|
3100 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
|
|
3101 redrawcmd_preedit();
|
|
3102 #endif
|
|
3103 #ifdef MCH_CURSOR_SHAPE
|
|
3104 mch_update_cursor();
|
|
3105 #endif
|
|
3106 }
|
|
3107
|
|
3108 void
|
|
3109 gotocmdline(clr)
|
|
3110 int clr;
|
|
3111 {
|
|
3112 msg_start();
|
|
3113 #ifdef FEAT_RIGHTLEFT
|
|
3114 if (cmdmsg_rl)
|
|
3115 msg_col = Columns - 1;
|
|
3116 else
|
|
3117 #endif
|
|
3118 msg_col = 0; /* always start in column 0 */
|
|
3119 if (clr) /* clear the bottom line(s) */
|
|
3120 msg_clr_eos(); /* will reset clear_cmdline */
|
|
3121 windgoto(cmdline_row, 0);
|
|
3122 }
|
|
3123
|
|
3124 /*
|
|
3125 * Check the word in front of the cursor for an abbreviation.
|
|
3126 * Called when the non-id character "c" has been entered.
|
|
3127 * When an abbreviation is recognized it is removed from the text with
|
|
3128 * backspaces and the replacement string is inserted, followed by "c".
|
|
3129 */
|
|
3130 static int
|
|
3131 ccheck_abbr(c)
|
|
3132 int c;
|
|
3133 {
|
|
3134 if (p_paste || no_abbr) /* no abbreviations or in paste mode */
|
|
3135 return FALSE;
|
|
3136
|
|
3137 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, 0);
|
|
3138 }
|
|
3139
|
|
3140 /*
|
|
3141 * Return FAIL if this is not an appropriate context in which to do
|
|
3142 * completion of anything, return OK if it is (even if there are no matches).
|
|
3143 * For the caller, this means that the character is just passed through like a
|
|
3144 * normal character (instead of being expanded). This allows :s/^I^D etc.
|
|
3145 */
|
|
3146 static int
|
|
3147 nextwild(xp, type, options)
|
|
3148 expand_T *xp;
|
|
3149 int type;
|
|
3150 int options; /* extra options for ExpandOne() */
|
|
3151 {
|
|
3152 int i, j;
|
|
3153 char_u *p1;
|
|
3154 char_u *p2;
|
|
3155 int oldlen;
|
|
3156 int difflen;
|
|
3157 int v;
|
|
3158
|
|
3159 if (xp->xp_numfiles == -1)
|
|
3160 {
|
|
3161 set_expand_context(xp);
|
|
3162 cmd_showtail = expand_showtail(xp);
|
|
3163 }
|
|
3164
|
|
3165 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
|
|
3166 {
|
|
3167 beep_flush();
|
|
3168 return OK; /* Something illegal on command line */
|
|
3169 }
|
|
3170 if (xp->xp_context == EXPAND_NOTHING)
|
|
3171 {
|
|
3172 /* Caller can use the character as a normal char instead */
|
|
3173 return FAIL;
|
|
3174 }
|
|
3175
|
|
3176 MSG_PUTS("..."); /* show that we are busy */
|
|
3177 out_flush();
|
|
3178
|
|
3179 i = (int)(xp->xp_pattern - ccline.cmdbuff);
|
|
3180 oldlen = ccline.cmdpos - i;
|
|
3181
|
|
3182 if (type == WILD_NEXT || type == WILD_PREV)
|
|
3183 {
|
|
3184 /*
|
|
3185 * Get next/previous match for a previous expanded pattern.
|
|
3186 */
|
|
3187 p2 = ExpandOne(xp, NULL, NULL, 0, type);
|
|
3188 }
|
|
3189 else
|
|
3190 {
|
|
3191 /*
|
|
3192 * Translate string into pattern and expand it.
|
|
3193 */
|
|
3194 if ((p1 = addstar(&ccline.cmdbuff[i], oldlen, xp->xp_context)) == NULL)
|
|
3195 p2 = NULL;
|
|
3196 else
|
|
3197 {
|
|
3198 p2 = ExpandOne(xp, p1, vim_strnsave(&ccline.cmdbuff[i], oldlen),
|
|
3199 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT|WILD_ESCAPE
|
|
3200 |options, type);
|
|
3201 vim_free(p1);
|
|
3202 /* longest match: make sure it is not shorter (happens with :help */
|
|
3203 if (p2 != NULL && type == WILD_LONGEST)
|
|
3204 {
|
|
3205 for (j = 0; j < oldlen; ++j)
|
|
3206 if (ccline.cmdbuff[i + j] == '*'
|
|
3207 || ccline.cmdbuff[i + j] == '?')
|
|
3208 break;
|
|
3209 if ((int)STRLEN(p2) < j)
|
|
3210 {
|
|
3211 vim_free(p2);
|
|
3212 p2 = NULL;
|
|
3213 }
|
|
3214 }
|
|
3215 }
|
|
3216 }
|
|
3217
|
|
3218 if (p2 != NULL && !got_int)
|
|
3219 {
|
|
3220 difflen = (int)STRLEN(p2) - oldlen;
|
|
3221 if (ccline.cmdlen + difflen > ccline.cmdbufflen - 4)
|
|
3222 {
|
|
3223 v = realloc_cmdbuff(ccline.cmdlen + difflen);
|
|
3224 xp->xp_pattern = ccline.cmdbuff + i;
|
|
3225 }
|
|
3226 else
|
|
3227 v = OK;
|
|
3228 if (v == OK)
|
|
3229 {
|
323
|
3230 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen],
|
|
3231 &ccline.cmdbuff[ccline.cmdpos],
|
|
3232 (size_t)(ccline.cmdlen - ccline.cmdpos + 1));
|
|
3233 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2));
|
7
|
3234 ccline.cmdlen += difflen;
|
|
3235 ccline.cmdpos += difflen;
|
|
3236 }
|
|
3237 }
|
|
3238 vim_free(p2);
|
|
3239
|
|
3240 redrawcmd();
|
33
|
3241 cursorcmd();
|
7
|
3242
|
|
3243 /* When expanding a ":map" command and no matches are found, assume that
|
|
3244 * the key is supposed to be inserted literally */
|
|
3245 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL)
|
|
3246 return FAIL;
|
|
3247
|
|
3248 if (xp->xp_numfiles <= 0 && p2 == NULL)
|
|
3249 beep_flush();
|
|
3250 else if (xp->xp_numfiles == 1)
|
|
3251 /* free expanded pattern */
|
|
3252 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE);
|
|
3253
|
|
3254 return OK;
|
|
3255 }
|
|
3256
|
|
3257 /*
|
|
3258 * Do wildcard expansion on the string 'str'.
|
|
3259 * Chars that should not be expanded must be preceded with a backslash.
|
|
3260 * Return a pointer to alloced memory containing the new string.
|
|
3261 * Return NULL for failure.
|
|
3262 *
|
838
|
3263 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode"
|
|
3264 * is WILD_EXPAND_FREE or WILD_ALL.
|
7
|
3265 *
|
|
3266 * mode = WILD_FREE: just free previously expanded matches
|
|
3267 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches
|
|
3268 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches
|
|
3269 * mode = WILD_NEXT: use next match in multiple match, wrap to first
|
|
3270 * mode = WILD_PREV: use previous match in multiple match, wrap to first
|
|
3271 * mode = WILD_ALL: return all matches concatenated
|
|
3272 * mode = WILD_LONGEST: return longest matched part
|
|
3273 *
|
|
3274 * options = WILD_LIST_NOTFOUND: list entries without a match
|
|
3275 * options = WILD_HOME_REPLACE: do home_replace() for buffer names
|
|
3276 * options = WILD_USE_NL: Use '\n' for WILD_ALL
|
|
3277 * options = WILD_NO_BEEP: Don't beep for multiple matches
|
|
3278 * options = WILD_ADD_SLASH: add a slash after directory names
|
|
3279 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries
|
|
3280 * options = WILD_SILENT: don't print warning messages
|
|
3281 * options = WILD_ESCAPE: put backslash before special chars
|
|
3282 *
|
|
3283 * The variables xp->xp_context and xp->xp_backslash must have been set!
|
|
3284 */
|
|
3285 char_u *
|
|
3286 ExpandOne(xp, str, orig, options, mode)
|
|
3287 expand_T *xp;
|
|
3288 char_u *str;
|
|
3289 char_u *orig; /* allocated copy of original of expanded string */
|
|
3290 int options;
|
|
3291 int mode;
|
|
3292 {
|
|
3293 char_u *ss = NULL;
|
|
3294 static int findex;
|
|
3295 static char_u *orig_save = NULL; /* kept value of orig */
|
|
3296 int i;
|
|
3297 long_u len;
|
|
3298 int non_suf_match; /* number without matching suffix */
|
|
3299
|
|
3300 /*
|
|
3301 * first handle the case of using an old match
|
|
3302 */
|
|
3303 if (mode == WILD_NEXT || mode == WILD_PREV)
|
|
3304 {
|
|
3305 if (xp->xp_numfiles > 0)
|
|
3306 {
|
|
3307 if (mode == WILD_PREV)
|
|
3308 {
|
|
3309 if (findex == -1)
|
|
3310 findex = xp->xp_numfiles;
|
|
3311 --findex;
|
|
3312 }
|
|
3313 else /* mode == WILD_NEXT */
|
|
3314 ++findex;
|
|
3315
|
|
3316 /*
|
|
3317 * When wrapping around, return the original string, set findex to
|
|
3318 * -1.
|
|
3319 */
|
|
3320 if (findex < 0)
|
|
3321 {
|
|
3322 if (orig_save == NULL)
|
|
3323 findex = xp->xp_numfiles - 1;
|
|
3324 else
|
|
3325 findex = -1;
|
|
3326 }
|
|
3327 if (findex >= xp->xp_numfiles)
|
|
3328 {
|
|
3329 if (orig_save == NULL)
|
|
3330 findex = 0;
|
|
3331 else
|
|
3332 findex = -1;
|
|
3333 }
|
|
3334 #ifdef FEAT_WILDMENU
|
|
3335 if (p_wmnu)
|
|
3336 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files,
|
|
3337 findex, cmd_showtail);
|
|
3338 #endif
|
|
3339 if (findex == -1)
|
|
3340 return vim_strsave(orig_save);
|
|
3341 return vim_strsave(xp->xp_files[findex]);
|
|
3342 }
|
|
3343 else
|
|
3344 return NULL;
|
|
3345 }
|
|
3346
|
|
3347 /* free old names */
|
|
3348 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST)
|
|
3349 {
|
|
3350 FreeWild(xp->xp_numfiles, xp->xp_files);
|
|
3351 xp->xp_numfiles = -1;
|
|
3352 vim_free(orig_save);
|
|
3353 orig_save = NULL;
|
|
3354 }
|
|
3355 findex = 0;
|
|
3356
|
|
3357 if (mode == WILD_FREE) /* only release file name */
|
|
3358 return NULL;
|
|
3359
|
|
3360 if (xp->xp_numfiles == -1)
|
|
3361 {
|
|
3362 vim_free(orig_save);
|
|
3363 orig_save = orig;
|
|
3364
|
|
3365 /*
|
|
3366 * Do the expansion.
|
|
3367 */
|
|
3368 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files,
|
|
3369 options) == FAIL)
|
|
3370 {
|
|
3371 #ifdef FNAME_ILLEGAL
|
|
3372 /* Illegal file name has been silently skipped. But when there
|
|
3373 * are wildcards, the real problem is that there was no match,
|
|
3374 * causing the pattern to be added, which has illegal characters.
|
|
3375 */
|
|
3376 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND))
|
|
3377 EMSG2(_(e_nomatch2), str);
|
|
3378 #endif
|
|
3379 }
|
|
3380 else if (xp->xp_numfiles == 0)
|
|
3381 {
|
|
3382 if (!(options & WILD_SILENT))
|
|
3383 EMSG2(_(e_nomatch2), str);
|
|
3384 }
|
|
3385 else
|
|
3386 {
|
|
3387 /* Escape the matches for use on the command line. */
|
|
3388 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options);
|
|
3389
|
|
3390 /*
|
|
3391 * Check for matching suffixes in file names.
|
|
3392 */
|
|
3393 if (mode != WILD_ALL && mode != WILD_LONGEST)
|
|
3394 {
|
|
3395 if (xp->xp_numfiles)
|
|
3396 non_suf_match = xp->xp_numfiles;
|
|
3397 else
|
|
3398 non_suf_match = 1;
|
|
3399 if ((xp->xp_context == EXPAND_FILES
|
|
3400 || xp->xp_context == EXPAND_DIRECTORIES)
|
|
3401 && xp->xp_numfiles > 1)
|
|
3402 {
|
|
3403 /*
|
|
3404 * More than one match; check suffix.
|
|
3405 * The files will have been sorted on matching suffix in
|
|
3406 * expand_wildcards, only need to check the first two.
|
|
3407 */
|
|
3408 non_suf_match = 0;
|
|
3409 for (i = 0; i < 2; ++i)
|
|
3410 if (match_suffix(xp->xp_files[i]))
|
|
3411 ++non_suf_match;
|
|
3412 }
|
|
3413 if (non_suf_match != 1)
|
|
3414 {
|
|
3415 /* Can we ever get here unless it's while expanding
|
|
3416 * interactively? If not, we can get rid of this all
|
|
3417 * together. Don't really want to wait for this message
|
|
3418 * (and possibly have to hit return to continue!).
|
|
3419 */
|
|
3420 if (!(options & WILD_SILENT))
|
|
3421 EMSG(_(e_toomany));
|
|
3422 else if (!(options & WILD_NO_BEEP))
|
|
3423 beep_flush();
|
|
3424 }
|
|
3425 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE))
|
|
3426 ss = vim_strsave(xp->xp_files[0]);
|
|
3427 }
|
|
3428 }
|
|
3429 }
|
|
3430
|
|
3431 /* Find longest common part */
|
|
3432 if (mode == WILD_LONGEST && xp->xp_numfiles > 0)
|
|
3433 {
|
|
3434 for (len = 0; xp->xp_files[0][len]; ++len)
|
|
3435 {
|
|
3436 for (i = 0; i < xp->xp_numfiles; ++i)
|
|
3437 {
|
|
3438 #ifdef CASE_INSENSITIVE_FILENAME
|
|
3439 if (xp->xp_context == EXPAND_DIRECTORIES
|
|
3440 || xp->xp_context == EXPAND_FILES
|
714
|
3441 || xp->xp_context == EXPAND_SHELLCMD
|
7
|
3442 || xp->xp_context == EXPAND_BUFFERS)
|
|
3443 {
|
|
3444 if (TOLOWER_LOC(xp->xp_files[i][len]) !=
|
|
3445 TOLOWER_LOC(xp->xp_files[0][len]))
|
|
3446 break;
|
|
3447 }
|
|
3448 else
|
|
3449 #endif
|
|
3450 if (xp->xp_files[i][len] != xp->xp_files[0][len])
|
|
3451 break;
|
|
3452 }
|
|
3453 if (i < xp->xp_numfiles)
|
|
3454 {
|
|
3455 if (!(options & WILD_NO_BEEP))
|
|
3456 vim_beep();
|
|
3457 break;
|
|
3458 }
|
|
3459 }
|
|
3460 ss = alloc((unsigned)len + 1);
|
|
3461 if (ss)
|
419
|
3462 vim_strncpy(ss, xp->xp_files[0], (size_t)len);
|
7
|
3463 findex = -1; /* next p_wc gets first one */
|
|
3464 }
|
|
3465
|
|
3466 /* Concatenate all matching names */
|
|
3467 if (mode == WILD_ALL && xp->xp_numfiles > 0)
|
|
3468 {
|
|
3469 len = 0;
|
|
3470 for (i = 0; i < xp->xp_numfiles; ++i)
|
|
3471 len += (long_u)STRLEN(xp->xp_files[i]) + 1;
|
|
3472 ss = lalloc(len, TRUE);
|
|
3473 if (ss != NULL)
|
|
3474 {
|
|
3475 *ss = NUL;
|
|
3476 for (i = 0; i < xp->xp_numfiles; ++i)
|
|
3477 {
|
|
3478 STRCAT(ss, xp->xp_files[i]);
|
|
3479 if (i != xp->xp_numfiles - 1)
|
|
3480 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " ");
|
|
3481 }
|
|
3482 }
|
|
3483 }
|
|
3484
|
|
3485 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL)
|
|
3486 ExpandCleanup(xp);
|
|
3487
|
|
3488 return ss;
|
|
3489 }
|
|
3490
|
|
3491 /*
|
|
3492 * Prepare an expand structure for use.
|
|
3493 */
|
|
3494 void
|
|
3495 ExpandInit(xp)
|
|
3496 expand_T *xp;
|
|
3497 {
|
|
3498 xp->xp_backslash = XP_BS_NONE;
|
632
|
3499 #ifndef BACKSLASH_IN_FILENAME
|
|
3500 xp->xp_shell = FALSE;
|
|
3501 #endif
|
7
|
3502 xp->xp_numfiles = -1;
|
|
3503 xp->xp_files = NULL;
|
632
|
3504 #if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
|
|
3505 xp->xp_arg = NULL;
|
|
3506 #endif
|
7
|
3507 }
|
|
3508
|
|
3509 /*
|
|
3510 * Cleanup an expand structure after use.
|
|
3511 */
|
|
3512 void
|
|
3513 ExpandCleanup(xp)
|
|
3514 expand_T *xp;
|
|
3515 {
|
|
3516 if (xp->xp_numfiles >= 0)
|
|
3517 {
|
|
3518 FreeWild(xp->xp_numfiles, xp->xp_files);
|
|
3519 xp->xp_numfiles = -1;
|
|
3520 }
|
|
3521 }
|
|
3522
|
|
3523 void
|
|
3524 ExpandEscape(xp, str, numfiles, files, options)
|
|
3525 expand_T *xp;
|
|
3526 char_u *str;
|
|
3527 int numfiles;
|
|
3528 char_u **files;
|
|
3529 int options;
|
|
3530 {
|
|
3531 int i;
|
|
3532 char_u *p;
|
|
3533
|
|
3534 /*
|
|
3535 * May change home directory back to "~"
|
|
3536 */
|
|
3537 if (options & WILD_HOME_REPLACE)
|
|
3538 tilde_replace(str, numfiles, files);
|
|
3539
|
|
3540 if (options & WILD_ESCAPE)
|
|
3541 {
|
|
3542 if (xp->xp_context == EXPAND_FILES
|
714
|
3543 || xp->xp_context == EXPAND_SHELLCMD
|
7
|
3544 || xp->xp_context == EXPAND_BUFFERS
|
|
3545 || xp->xp_context == EXPAND_DIRECTORIES)
|
|
3546 {
|
|
3547 /*
|
|
3548 * Insert a backslash into a file name before a space, \, %, #
|
|
3549 * and wildmatch characters, except '~'.
|
|
3550 */
|
|
3551 for (i = 0; i < numfiles; ++i)
|
|
3552 {
|
|
3553 /* for ":set path=" we need to escape spaces twice */
|
|
3554 if (xp->xp_backslash == XP_BS_THREE)
|
|
3555 {
|
|
3556 p = vim_strsave_escaped(files[i], (char_u *)" ");
|
|
3557 if (p != NULL)
|
|
3558 {
|
|
3559 vim_free(files[i]);
|
|
3560 files[i] = p;
|
719
|
3561 #if defined(BACKSLASH_IN_FILENAME)
|
7
|
3562 p = vim_strsave_escaped(files[i], (char_u *)" ");
|
|
3563 if (p != NULL)
|
|
3564 {
|
|
3565 vim_free(files[i]);
|
|
3566 files[i] = p;
|
|
3567 }
|
|
3568 #endif
|
|
3569 }
|
|
3570 }
|
|
3571 #ifdef BACKSLASH_IN_FILENAME
|
|
3572 {
|
|
3573 char_u buf[20];
|
|
3574 int j = 0;
|
|
3575
|
|
3576 /* Don't escape '[' and '{' if they are in 'isfname'. */
|
|
3577 for (p = PATH_ESC_CHARS; *p != NUL; ++p)
|
|
3578 if ((*p != '[' && *p != '{') || !vim_isfilec(*p))
|
|
3579 buf[j++] = *p;
|
|
3580 buf[j] = NUL;
|
|
3581 p = vim_strsave_escaped(files[i], buf);
|
|
3582 }
|
|
3583 #else
|
632
|
3584 p = vim_strsave_escaped(files[i],
|
|
3585 xp->xp_shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
|
7
|
3586 #endif
|
|
3587 if (p != NULL)
|
|
3588 {
|
|
3589 vim_free(files[i]);
|
|
3590 files[i] = p;
|
|
3591 }
|
|
3592
|
|
3593 /* If 'str' starts with "\~", replace "~" at start of
|
|
3594 * files[i] with "\~". */
|
|
3595 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~')
|
435
|
3596 escape_fname(&files[i]);
|
7
|
3597 }
|
|
3598 xp->xp_backslash = XP_BS_NONE;
|
435
|
3599
|
|
3600 /* If the first file starts with a '+' escape it. Otherwise it
|
|
3601 * could be seen as "+cmd". */
|
|
3602 if (*files[0] == '+')
|
|
3603 escape_fname(&files[0]);
|
7
|
3604 }
|
|
3605 else if (xp->xp_context == EXPAND_TAGS)
|
|
3606 {
|
|
3607 /*
|
|
3608 * Insert a backslash before characters in a tag name that
|
|
3609 * would terminate the ":tag" command.
|
|
3610 */
|
|
3611 for (i = 0; i < numfiles; ++i)
|
|
3612 {
|
|
3613 p = vim_strsave_escaped(files[i], (char_u *)"\\|\"");
|
|
3614 if (p != NULL)
|
|
3615 {
|
|
3616 vim_free(files[i]);
|
|
3617 files[i] = p;
|
|
3618 }
|
|
3619 }
|
|
3620 }
|
|
3621 }
|
|
3622 }
|
|
3623
|
|
3624 /*
|
435
|
3625 * Put a backslash before the file name in "pp", which is in allocated memory.
|
|
3626 */
|
|
3627 static void
|
|
3628 escape_fname(pp)
|
|
3629 char_u **pp;
|
|
3630 {
|
|
3631 char_u *p;
|
|
3632
|
|
3633 p = alloc((unsigned)(STRLEN(*pp) + 2));
|
|
3634 if (p != NULL)
|
|
3635 {
|
|
3636 p[0] = '\\';
|
|
3637 STRCPY(p + 1, *pp);
|
|
3638 vim_free(*pp);
|
|
3639 *pp = p;
|
|
3640 }
|
|
3641 }
|
|
3642
|
|
3643 /*
|
7
|
3644 * For each file name in files[num_files]:
|
|
3645 * If 'orig_pat' starts with "~/", replace the home directory with "~".
|
|
3646 */
|
|
3647 void
|
|
3648 tilde_replace(orig_pat, num_files, files)
|
|
3649 char_u *orig_pat;
|
|
3650 int num_files;
|
|
3651 char_u **files;
|
|
3652 {
|
|
3653 int i;
|
|
3654 char_u *p;
|
|
3655
|
|
3656 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1]))
|
|
3657 {
|
|
3658 for (i = 0; i < num_files; ++i)
|
|
3659 {
|
|
3660 p = home_replace_save(NULL, files[i]);
|
|
3661 if (p != NULL)
|
|
3662 {
|
|
3663 vim_free(files[i]);
|
|
3664 files[i] = p;
|
|
3665 }
|
|
3666 }
|
|
3667 }
|
|
3668 }
|
|
3669
|
|
3670 /*
|
|
3671 * Show all matches for completion on the command line.
|
|
3672 * Returns EXPAND_NOTHING when the character that triggered expansion should
|
|
3673 * be inserted like a normal character.
|
|
3674 */
|
|
3675 /*ARGSUSED*/
|
|
3676 static int
|
|
3677 showmatches(xp, wildmenu)
|
|
3678 expand_T *xp;
|
|
3679 int wildmenu;
|
|
3680 {
|
|
3681 #define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m])
|
|
3682 int num_files;
|
|
3683 char_u **files_found;
|
|
3684 int i, j, k;
|
|
3685 int maxlen;
|
|
3686 int lines;
|
|
3687 int columns;
|
|
3688 char_u *p;
|
|
3689 int lastlen;
|
|
3690 int attr;
|
|
3691 int showtail;
|
|
3692
|
|
3693 if (xp->xp_numfiles == -1)
|
|
3694 {
|
|
3695 set_expand_context(xp);
|
|
3696 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos,
|
|
3697 &num_files, &files_found);
|
|
3698 showtail = expand_showtail(xp);
|
|
3699 if (i != EXPAND_OK)
|
|
3700 return i;
|
|
3701
|
|
3702 }
|
|
3703 else
|
|
3704 {
|
|
3705 num_files = xp->xp_numfiles;
|
|
3706 files_found = xp->xp_files;
|
|
3707 showtail = cmd_showtail;
|
|
3708 }
|
|
3709
|
|
3710 #ifdef FEAT_WILDMENU
|
|
3711 if (!wildmenu)
|
|
3712 {
|
|
3713 #endif
|
|
3714 msg_didany = FALSE; /* lines_left will be set */
|
|
3715 msg_start(); /* prepare for paging */
|
|
3716 msg_putchar('\n');
|
|
3717 out_flush();
|
|
3718 cmdline_row = msg_row;
|
|
3719 msg_didany = FALSE; /* lines_left will be set again */
|
|
3720 msg_start(); /* prepare for paging */
|
|
3721 #ifdef FEAT_WILDMENU
|
|
3722 }
|
|
3723 #endif
|
|
3724
|
|
3725 if (got_int)
|
|
3726 got_int = FALSE; /* only int. the completion, not the cmd line */
|
|
3727 #ifdef FEAT_WILDMENU
|
|
3728 else if (wildmenu)
|
|
3729 win_redr_status_matches(xp, num_files, files_found, 0, showtail);
|
|
3730 #endif
|
|
3731 else
|
|
3732 {
|
|
3733 /* find the length of the longest file name */
|
|
3734 maxlen = 0;
|
|
3735 for (i = 0; i < num_files; ++i)
|
|
3736 {
|
|
3737 if (!showtail && (xp->xp_context == EXPAND_FILES
|
714
|
3738 || xp->xp_context == EXPAND_SHELLCMD
|
7
|
3739 || xp->xp_context == EXPAND_BUFFERS))
|
|
3740 {
|
|
3741 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE);
|
|
3742 j = vim_strsize(NameBuff);
|
|
3743 }
|
|
3744 else
|
|
3745 j = vim_strsize(L_SHOWFILE(i));
|
|
3746 if (j > maxlen)
|
|
3747 maxlen = j;
|
|
3748 }
|
|
3749
|
|
3750 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
|
|
3751 lines = num_files;
|
|
3752 else
|
|
3753 {
|
|
3754 /* compute the number of columns and lines for the listing */
|
|
3755 maxlen += 2; /* two spaces between file names */
|
|
3756 columns = ((int)Columns + 2) / maxlen;
|
|
3757 if (columns < 1)
|
|
3758 columns = 1;
|
|
3759 lines = (num_files + columns - 1) / columns;
|
|
3760 }
|
|
3761
|
|
3762 attr = hl_attr(HLF_D); /* find out highlighting for directories */
|
|
3763
|
|
3764 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
|
|
3765 {
|
|
3766 MSG_PUTS_ATTR(_("tagname"), hl_attr(HLF_T));
|
|
3767 msg_clr_eos();
|
|
3768 msg_advance(maxlen - 3);
|
|
3769 MSG_PUTS_ATTR(_(" kind file\n"), hl_attr(HLF_T));
|
|
3770 }
|
|
3771
|
|
3772 /* list the files line by line */
|
|
3773 for (i = 0; i < lines; ++i)
|
|
3774 {
|
|
3775 lastlen = 999;
|
|
3776 for (k = i; k < num_files; k += lines)
|
|
3777 {
|
|
3778 if (xp->xp_context == EXPAND_TAGS_LISTFILES)
|
|
3779 {
|
|
3780 msg_outtrans_attr(files_found[k], hl_attr(HLF_D));
|
|
3781 p = files_found[k] + STRLEN(files_found[k]) + 1;
|
|
3782 msg_advance(maxlen + 1);
|
|
3783 msg_puts(p);
|
|
3784 msg_advance(maxlen + 3);
|
|
3785 msg_puts_long_attr(p + 2, hl_attr(HLF_D));
|
|
3786 break;
|
|
3787 }
|
|
3788 for (j = maxlen - lastlen; --j >= 0; )
|
|
3789 msg_putchar(' ');
|
|
3790 if (xp->xp_context == EXPAND_FILES
|
714
|
3791 || xp->xp_context == EXPAND_SHELLCMD
|
7
|
3792 || xp->xp_context == EXPAND_BUFFERS)
|
|
3793 {
|
|
3794 /* highlight directories */
|
|
3795 j = (mch_isdir(files_found[k]));
|
|
3796 if (showtail)
|
|
3797 p = L_SHOWFILE(k);
|
|
3798 else
|
|
3799 {
|
|
3800 home_replace(NULL, files_found[k], NameBuff, MAXPATHL,
|
|
3801 TRUE);
|
|
3802 p = NameBuff;
|
|
3803 }
|
|
3804 }
|
|
3805 else
|
|
3806 {
|
|
3807 j = FALSE;
|
|
3808 p = L_SHOWFILE(k);
|
|
3809 }
|
|
3810 lastlen = msg_outtrans_attr(p, j ? attr : 0);
|
|
3811 }
|
|
3812 if (msg_col > 0) /* when not wrapped around */
|
|
3813 {
|
|
3814 msg_clr_eos();
|
|
3815 msg_putchar('\n');
|
|
3816 }
|
|
3817 out_flush(); /* show one line at a time */
|
|
3818 if (got_int)
|
|
3819 {
|
|
3820 got_int = FALSE;
|
|
3821 break;
|
|
3822 }
|
|
3823 }
|
|
3824
|
|
3825 /*
|
|
3826 * we redraw the command below the lines that we have just listed
|
|
3827 * This is a bit tricky, but it saves a lot of screen updating.
|
|
3828 */
|
|
3829 cmdline_row = msg_row; /* will put it back later */
|
|
3830 }
|
|
3831
|
|
3832 if (xp->xp_numfiles == -1)
|
|
3833 FreeWild(num_files, files_found);
|
|
3834
|
|
3835 return EXPAND_OK;
|
|
3836 }
|
|
3837
|
|
3838 /*
|
|
3839 * Private gettail for showmatches() (and win_redr_status_matches()):
|
|
3840 * Find tail of file name path, but ignore trailing "/".
|
|
3841 */
|
|
3842 char_u *
|
|
3843 sm_gettail(s)
|
|
3844 char_u *s;
|
|
3845 {
|
|
3846 char_u *p;
|
|
3847 char_u *t = s;
|
|
3848 int had_sep = FALSE;
|
|
3849
|
|
3850 for (p = s; *p != NUL; )
|
|
3851 {
|
|
3852 if (vim_ispathsep(*p)
|
|
3853 #ifdef BACKSLASH_IN_FILENAME
|
|
3854 && !rem_backslash(p)
|
|
3855 #endif
|
|
3856 )
|
|
3857 had_sep = TRUE;
|
|
3858 else if (had_sep)
|
|
3859 {
|
|
3860 t = p;
|
|
3861 had_sep = FALSE;
|
|
3862 }
|
39
|
3863 mb_ptr_adv(p);
|
7
|
3864 }
|
|
3865 return t;
|
|
3866 }
|
|
3867
|
|
3868 /*
|
|
3869 * Return TRUE if we only need to show the tail of completion matches.
|
|
3870 * When not completing file names or there is a wildcard in the path FALSE is
|
|
3871 * returned.
|
|
3872 */
|
|
3873 static int
|
|
3874 expand_showtail(xp)
|
|
3875 expand_T *xp;
|
|
3876 {
|
|
3877 char_u *s;
|
|
3878 char_u *end;
|
|
3879
|
|
3880 /* When not completing file names a "/" may mean something different. */
|
714
|
3881 if (xp->xp_context != EXPAND_FILES
|
|
3882 && xp->xp_context != EXPAND_SHELLCMD
|
|
3883 && xp->xp_context != EXPAND_DIRECTORIES)
|
7
|
3884 return FALSE;
|
|
3885
|
|
3886 end = gettail(xp->xp_pattern);
|
|
3887 if (end == xp->xp_pattern) /* there is no path separator */
|
|
3888 return FALSE;
|
|
3889
|
|
3890 for (s = xp->xp_pattern; s < end; s++)
|
|
3891 {
|
|
3892 /* Skip escaped wildcards. Only when the backslash is not a path
|
|
3893 * separator, on DOS the '*' "path\*\file" must not be skipped. */
|
|
3894 if (rem_backslash(s))
|
|
3895 ++s;
|
|
3896 else if (vim_strchr((char_u *)"*?[", *s) != NULL)
|
|
3897 return FALSE;
|
|
3898 }
|
|
3899 return TRUE;
|
|
3900 }
|
|
3901
|
|
3902 /*
|
|
3903 * Prepare a string for expansion.
|
|
3904 * When expanding file names: The string will be used with expand_wildcards().
|
|
3905 * Copy the file name into allocated memory and add a '*' at the end.
|
|
3906 * When expanding other names: The string will be used with regcomp(). Copy
|
|
3907 * the name into allocated memory and prepend "^".
|
|
3908 */
|
|
3909 char_u *
|
|
3910 addstar(fname, len, context)
|
|
3911 char_u *fname;
|
|
3912 int len;
|
|
3913 int context; /* EXPAND_FILES etc. */
|
|
3914 {
|
|
3915 char_u *retval;
|
|
3916 int i, j;
|
|
3917 int new_len;
|
|
3918 char_u *tail;
|
|
3919
|
714
|
3920 if (context != EXPAND_FILES
|
|
3921 && context != EXPAND_SHELLCMD
|
|
3922 && context != EXPAND_DIRECTORIES)
|
7
|
3923 {
|
|
3924 /*
|
|
3925 * Matching will be done internally (on something other than files).
|
|
3926 * So we convert the file-matching-type wildcards into our kind for
|
|
3927 * use with vim_regcomp(). First work out how long it will be:
|
|
3928 */
|
|
3929
|
|
3930 /* For help tags the translation is done in find_help_tags().
|
|
3931 * For a tag pattern starting with "/" no translation is needed. */
|
|
3932 if (context == EXPAND_HELP
|
|
3933 || context == EXPAND_COLORS
|
|
3934 || context == EXPAND_COMPILER
|
|
3935 || (context == EXPAND_TAGS && fname[0] == '/'))
|
|
3936 retval = vim_strnsave(fname, len);
|
|
3937 else
|
|
3938 {
|
|
3939 new_len = len + 2; /* +2 for '^' at start, NUL at end */
|
|
3940 for (i = 0; i < len; i++)
|
|
3941 {
|
|
3942 if (fname[i] == '*' || fname[i] == '~')
|
|
3943 new_len++; /* '*' needs to be replaced by ".*"
|
|
3944 '~' needs to be replaced by "\~" */
|
|
3945
|
|
3946 /* Buffer names are like file names. "." should be literal */
|
|
3947 if (context == EXPAND_BUFFERS && fname[i] == '.')
|
|
3948 new_len++; /* "." becomes "\." */
|
|
3949
|
|
3950 /* Custom expansion takes care of special things, match
|
|
3951 * backslashes literally (perhaps also for other types?) */
|
634
|
3952 if ((context == EXPAND_USER_DEFINED
|
|
3953 || context == EXPAND_USER_LIST) && fname[i] == '\\')
|
7
|
3954 new_len++; /* '\' becomes "\\" */
|
|
3955 }
|
|
3956 retval = alloc(new_len);
|
|
3957 if (retval != NULL)
|
|
3958 {
|
|
3959 retval[0] = '^';
|
|
3960 j = 1;
|
|
3961 for (i = 0; i < len; i++, j++)
|
|
3962 {
|
|
3963 /* Skip backslash. But why? At least keep it for custom
|
|
3964 * expansion. */
|
|
3965 if (context != EXPAND_USER_DEFINED
|
407
|
3966 && context != EXPAND_USER_LIST
|
|
3967 && fname[i] == '\\'
|
|
3968 && ++i == len)
|
7
|
3969 break;
|
|
3970
|
|
3971 switch (fname[i])
|
|
3972 {
|
|
3973 case '*': retval[j++] = '.';
|
|
3974 break;
|
|
3975 case '~': retval[j++] = '\\';
|
|
3976 break;
|
|
3977 case '?': retval[j] = '.';
|
|
3978 continue;
|
|
3979 case '.': if (context == EXPAND_BUFFERS)
|
|
3980 retval[j++] = '\\';
|
|
3981 break;
|
407
|
3982 case '\\': if (context == EXPAND_USER_DEFINED
|
|
3983 || context == EXPAND_USER_LIST)
|
7
|
3984 retval[j++] = '\\';
|
|
3985 break;
|
|
3986 }
|
|
3987 retval[j] = fname[i];
|
|
3988 }
|
|
3989 retval[j] = NUL;
|
|
3990 }
|
|
3991 }
|
|
3992 }
|
|
3993 else
|
|
3994 {
|
|
3995 retval = alloc(len + 4);
|
|
3996 if (retval != NULL)
|
|
3997 {
|
419
|
3998 vim_strncpy(retval, fname, len);
|
7
|
3999
|
|
4000 /*
|
831
|
4001 * Don't add a star to *, ~, ~user, $var or `cmd`.
|
|
4002 * * would become **, which walks the whole tree.
|
7
|
4003 * ~ would be at the start of the file name, but not the tail.
|
|
4004 * $ could be anywhere in the tail.
|
|
4005 * ` could be anywhere in the file name.
|
|
4006 */
|
|
4007 tail = gettail(retval);
|
|
4008 if ((*retval != '~' || tail != retval)
|
831
|
4009 && (len == 0 || retval[len - 1] != '*')
|
7
|
4010 && vim_strchr(tail, '$') == NULL
|
|
4011 && vim_strchr(retval, '`') == NULL)
|
|
4012 retval[len++] = '*';
|
|
4013 retval[len] = NUL;
|
|
4014 }
|
|
4015 }
|
|
4016 return retval;
|
|
4017 }
|
|
4018
|
|
4019 /*
|
|
4020 * Must parse the command line so far to work out what context we are in.
|
|
4021 * Completion can then be done based on that context.
|
|
4022 * This routine sets the variables:
|
|
4023 * xp->xp_pattern The start of the pattern to be expanded within
|
|
4024 * the command line (ends at the cursor).
|
|
4025 * xp->xp_context The type of thing to expand. Will be one of:
|
|
4026 *
|
|
4027 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on
|
|
4028 * the command line, like an unknown command. Caller
|
|
4029 * should beep.
|
|
4030 * EXPAND_NOTHING Unrecognised context for completion, use char like
|
|
4031 * a normal char, rather than for completion. eg
|
|
4032 * :s/^I/
|
|
4033 * EXPAND_COMMANDS Cursor is still touching the command, so complete
|
|
4034 * it.
|
|
4035 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands.
|
|
4036 * EXPAND_FILES After command with XFILE set, or after setting
|
|
4037 * with P_EXPAND set. eg :e ^I, :w>>^I
|
|
4038 * EXPAND_DIRECTORIES In some cases this is used instead of the latter
|
|
4039 * when we know only directories are of interest. eg
|
|
4040 * :set dir=^I
|
714
|
4041 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd".
|
7
|
4042 * EXPAND_SETTINGS Complete variable names. eg :set d^I
|
|
4043 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I
|
|
4044 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I
|
|
4045 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect
|
|
4046 * EXPAND_HELP Complete tags from the file 'helpfile'/tags
|
|
4047 * EXPAND_EVENTS Complete event names
|
|
4048 * EXPAND_SYNTAX Complete :syntax command arguments
|
|
4049 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names
|
|
4050 * EXPAND_AUGROUP Complete autocommand group names
|
|
4051 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I
|
|
4052 * EXPAND_MAPPINGS Complete mapping and abbreviation names,
|
|
4053 * eg :unmap a^I , :cunab x^I
|
|
4054 * EXPAND_FUNCTIONS Complete internal or user defined function names,
|
|
4055 * eg :call sub^I
|
|
4056 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I
|
|
4057 * EXPAND_EXPRESSION Complete internal or user defined function/variable
|
|
4058 * names in expressions, eg :while s^I
|
|
4059 * EXPAND_ENV_VARS Complete environment variable names
|
|
4060 */
|
|
4061 static void
|
|
4062 set_expand_context(xp)
|
|
4063 expand_T *xp;
|
|
4064 {
|
168
|
4065 /* only expansion for ':', '>' and '=' command-lines */
|
7
|
4066 if (ccline.cmdfirstc != ':'
|
|
4067 #ifdef FEAT_EVAL
|
168
|
4068 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '='
|
531
|
4069 && !ccline.input_fn
|
7
|
4070 #endif
|
|
4071 )
|
|
4072 {
|
|
4073 xp->xp_context = EXPAND_NOTHING;
|
|
4074 return;
|
|
4075 }
|
|
4076 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos);
|
|
4077 }
|
|
4078
|
|
4079 void
|
|
4080 set_cmd_context(xp, str, len, col)
|
|
4081 expand_T *xp;
|
|
4082 char_u *str; /* start of command line */
|
|
4083 int len; /* length of command line (excl. NUL) */
|
|
4084 int col; /* position of cursor */
|
|
4085 {
|
|
4086 int old_char = NUL;
|
|
4087 char_u *nextcomm;
|
|
4088
|
|
4089 /*
|
|
4090 * Avoid a UMR warning from Purify, only save the character if it has been
|
|
4091 * written before.
|
|
4092 */
|
|
4093 if (col < len)
|
|
4094 old_char = str[col];
|
|
4095 str[col] = NUL;
|
|
4096 nextcomm = str;
|
168
|
4097
|
|
4098 #ifdef FEAT_EVAL
|
|
4099 if (ccline.cmdfirstc == '=')
|
|
4100 /* pass CMD_SIZE because there is no real command */
|
|
4101 set_context_for_expression(xp, str, CMD_SIZE);
|
531
|
4102 else if (ccline.input_fn)
|
|
4103 {
|
|
4104 xp->xp_context = ccline.xp_context;
|
|
4105 xp->xp_pattern = ccline.cmdbuff;
|
|
4106 xp->xp_arg = ccline.xp_arg;
|
|
4107 }
|
168
|
4108 else
|
|
4109 #endif
|
|
4110 while (nextcomm != NULL)
|
|
4111 nextcomm = set_one_cmd_context(xp, nextcomm);
|
|
4112
|
7
|
4113 str[col] = old_char;
|
|
4114 }
|
|
4115
|
|
4116 /*
|
|
4117 * Expand the command line "str" from context "xp".
|
|
4118 * "xp" must have been set by set_cmd_context().
|
|
4119 * xp->xp_pattern points into "str", to where the text that is to be expanded
|
|
4120 * starts.
|
|
4121 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the
|
|
4122 * cursor.
|
|
4123 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the
|
|
4124 * key that triggered expansion literally.
|
|
4125 * Returns EXPAND_OK otherwise.
|
|
4126 */
|
|
4127 int
|
|
4128 expand_cmdline(xp, str, col, matchcount, matches)
|
|
4129 expand_T *xp;
|
|
4130 char_u *str; /* start of command line */
|
|
4131 int col; /* position of cursor */
|
|
4132 int *matchcount; /* return: nr of matches */
|
|
4133 char_u ***matches; /* return: array of pointers to matches */
|
|
4134 {
|
|
4135 char_u *file_str = NULL;
|
|
4136
|
|
4137 if (xp->xp_context == EXPAND_UNSUCCESSFUL)
|
|
4138 {
|
|
4139 beep_flush();
|
|
4140 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */
|
|
4141 }
|
|
4142 if (xp->xp_context == EXPAND_NOTHING)
|
|
4143 {
|
|
4144 /* Caller can use the character as a normal char instead */
|
|
4145 return EXPAND_NOTHING;
|
|
4146 }
|
|
4147
|
|
4148 /* add star to file name, or convert to regexp if not exp. files. */
|
|
4149 file_str = addstar(xp->xp_pattern,
|
|
4150 (int)(str + col - xp->xp_pattern), xp->xp_context);
|
|
4151 if (file_str == NULL)
|
|
4152 return EXPAND_UNSUCCESSFUL;
|
|
4153
|
|
4154 /* find all files that match the description */
|
|
4155 if (ExpandFromContext(xp, file_str, matchcount, matches,
|
|
4156 WILD_ADD_SLASH|WILD_SILENT) == FAIL)
|
|
4157 {
|
|
4158 *matchcount = 0;
|
|
4159 *matches = NULL;
|
|
4160 }
|
|
4161 vim_free(file_str);
|
|
4162
|
|
4163 return EXPAND_OK;
|
|
4164 }
|
|
4165
|
|
4166 #ifdef FEAT_MULTI_LANG
|
|
4167 /*
|
|
4168 * Cleanup matches for help tags: remove "@en" if "en" is the only language.
|
|
4169 */
|
|
4170 static void cleanup_help_tags __ARGS((int num_file, char_u **file));
|
|
4171
|
|
4172 static void
|
|
4173 cleanup_help_tags(num_file, file)
|
|
4174 int num_file;
|
|
4175 char_u **file;
|
|
4176 {
|
|
4177 int i, j;
|
|
4178 int len;
|
|
4179
|
|
4180 for (i = 0; i < num_file; ++i)
|
|
4181 {
|
|
4182 len = (int)STRLEN(file[i]) - 3;
|
|
4183 if (len > 0 && STRCMP(file[i] + len, "@en") == 0)
|
|
4184 {
|
|
4185 /* Sorting on priority means the same item in another language may
|
|
4186 * be anywhere. Search all items for a match up to the "@en". */
|
|
4187 for (j = 0; j < num_file; ++j)
|
|
4188 if (j != i
|
|
4189 && (int)STRLEN(file[j]) == len + 3
|
|
4190 && STRNCMP(file[i], file[j], len + 1) == 0)
|
|
4191 break;
|
|
4192 if (j == num_file)
|
|
4193 file[i][len] = NUL;
|
|
4194 }
|
|
4195 }
|
|
4196 }
|
|
4197 #endif
|
|
4198
|
|
4199 /*
|
|
4200 * Do the expansion based on xp->xp_context and "pat".
|
|
4201 */
|
|
4202 static int
|
|
4203 ExpandFromContext(xp, pat, num_file, file, options)
|
|
4204 expand_T *xp;
|
|
4205 char_u *pat;
|
|
4206 int *num_file;
|
|
4207 char_u ***file;
|
|
4208 int options;
|
|
4209 {
|
|
4210 #ifdef FEAT_CMDL_COMPL
|
|
4211 regmatch_T regmatch;
|
|
4212 #endif
|
|
4213 int ret;
|
|
4214 int flags;
|
|
4215
|
|
4216 flags = EW_DIR; /* include directories */
|
|
4217 if (options & WILD_LIST_NOTFOUND)
|
|
4218 flags |= EW_NOTFOUND;
|
|
4219 if (options & WILD_ADD_SLASH)
|
|
4220 flags |= EW_ADDSLASH;
|
|
4221 if (options & WILD_KEEP_ALL)
|
|
4222 flags |= EW_KEEPALL;
|
|
4223 if (options & WILD_SILENT)
|
|
4224 flags |= EW_SILENT;
|
|
4225
|
|
4226 if (xp->xp_context == EXPAND_FILES || xp->xp_context == EXPAND_DIRECTORIES)
|
|
4227 {
|
|
4228 /*
|
|
4229 * Expand file or directory names.
|
|
4230 */
|
|
4231 int free_pat = FALSE;
|
|
4232 int i;
|
|
4233
|
|
4234 /* for ":set path=" and ":set tags=" halve backslashes for escaped
|
|
4235 * space */
|
|
4236 if (xp->xp_backslash != XP_BS_NONE)
|
|
4237 {
|
|
4238 free_pat = TRUE;
|
|
4239 pat = vim_strsave(pat);
|
|
4240 for (i = 0; pat[i]; ++i)
|
|
4241 if (pat[i] == '\\')
|
|
4242 {
|
|
4243 if (xp->xp_backslash == XP_BS_THREE
|
|
4244 && pat[i + 1] == '\\'
|
|
4245 && pat[i + 2] == '\\'
|
|
4246 && pat[i + 3] == ' ')
|
|
4247 STRCPY(pat + i, pat + i + 3);
|
|
4248 if (xp->xp_backslash == XP_BS_ONE
|
|
4249 && pat[i + 1] == ' ')
|
|
4250 STRCPY(pat + i, pat + i + 1);
|
|
4251 }
|
|
4252 }
|
|
4253
|
|
4254 if (xp->xp_context == EXPAND_FILES)
|
|
4255 flags |= EW_FILE;
|
|
4256 else
|
|
4257 flags = (flags | EW_DIR) & ~EW_FILE;
|
|
4258 ret = expand_wildcards(1, &pat, num_file, file, flags);
|
|
4259 if (free_pat)
|
|
4260 vim_free(pat);
|
|
4261 return ret;
|
|
4262 }
|
|
4263
|
|
4264 *file = (char_u **)"";
|
|
4265 *num_file = 0;
|
|
4266 if (xp->xp_context == EXPAND_HELP)
|
|
4267 {
|
|
4268 if (find_help_tags(pat, num_file, file, FALSE) == OK)
|
|
4269 {
|
|
4270 #ifdef FEAT_MULTI_LANG
|
|
4271 cleanup_help_tags(*num_file, *file);
|
|
4272 #endif
|
|
4273 return OK;
|
|
4274 }
|
|
4275 return FAIL;
|
|
4276 }
|
|
4277
|
|
4278 #ifndef FEAT_CMDL_COMPL
|
|
4279 return FAIL;
|
|
4280 #else
|
716
|
4281 if (xp->xp_context == EXPAND_SHELLCMD)
|
|
4282 return expand_shellcmd(pat, num_file, file, flags);
|
7
|
4283 if (xp->xp_context == EXPAND_OLD_SETTING)
|
|
4284 return ExpandOldSetting(num_file, file);
|
|
4285 if (xp->xp_context == EXPAND_BUFFERS)
|
|
4286 return ExpandBufnames(pat, num_file, file, options);
|
|
4287 if (xp->xp_context == EXPAND_TAGS
|
|
4288 || xp->xp_context == EXPAND_TAGS_LISTFILES)
|
|
4289 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file);
|
|
4290 if (xp->xp_context == EXPAND_COLORS)
|
|
4291 return ExpandRTDir(pat, num_file, file, "colors");
|
|
4292 if (xp->xp_context == EXPAND_COMPILER)
|
|
4293 return ExpandRTDir(pat, num_file, file, "compiler");
|
407
|
4294 # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
|
|
4295 if (xp->xp_context == EXPAND_USER_LIST)
|
|
4296 return ExpandUserList(xp, num_file, file);
|
|
4297 # endif
|
7
|
4298
|
|
4299 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
|
|
4300 if (regmatch.regprog == NULL)
|
|
4301 return FAIL;
|
|
4302
|
|
4303 /* set ignore-case according to p_ic, p_scs and pat */
|
|
4304 regmatch.rm_ic = ignorecase(pat);
|
|
4305
|
|
4306 if (xp->xp_context == EXPAND_SETTINGS
|
|
4307 || xp->xp_context == EXPAND_BOOL_SETTINGS)
|
|
4308 ret = ExpandSettings(xp, ®match, num_file, file);
|
|
4309 else if (xp->xp_context == EXPAND_MAPPINGS)
|
|
4310 ret = ExpandMappings(®match, num_file, file);
|
|
4311 # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
|
|
4312 else if (xp->xp_context == EXPAND_USER_DEFINED)
|
|
4313 ret = ExpandUserDefined(xp, ®match, num_file, file);
|
|
4314 # endif
|
|
4315 else
|
|
4316 {
|
|
4317 static struct expgen
|
|
4318 {
|
|
4319 int context;
|
|
4320 char_u *((*func)__ARGS((expand_T *, int)));
|
|
4321 int ic;
|
|
4322 } tab[] =
|
|
4323 {
|
|
4324 {EXPAND_COMMANDS, get_command_name, FALSE},
|
|
4325 #ifdef FEAT_USR_CMDS
|
|
4326 {EXPAND_USER_COMMANDS, get_user_commands, FALSE},
|
|
4327 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE},
|
|
4328 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE},
|
|
4329 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE},
|
|
4330 #endif
|
|
4331 #ifdef FEAT_EVAL
|
|
4332 {EXPAND_USER_VARS, get_user_var_name, FALSE},
|
|
4333 {EXPAND_FUNCTIONS, get_function_name, FALSE},
|
|
4334 {EXPAND_USER_FUNC, get_user_func_name, FALSE},
|
|
4335 {EXPAND_EXPRESSION, get_expr_name, FALSE},
|
|
4336 #endif
|
|
4337 #ifdef FEAT_MENU
|
|
4338 {EXPAND_MENUS, get_menu_name, FALSE},
|
|
4339 {EXPAND_MENUNAMES, get_menu_names, FALSE},
|
|
4340 #endif
|
|
4341 #ifdef FEAT_SYN_HL
|
|
4342 {EXPAND_SYNTAX, get_syntax_name, TRUE},
|
|
4343 #endif
|
|
4344 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE},
|
|
4345 #ifdef FEAT_AUTOCMD
|
|
4346 {EXPAND_EVENTS, get_event_name, TRUE},
|
|
4347 {EXPAND_AUGROUP, get_augroup_name, TRUE},
|
|
4348 #endif
|
|
4349 #if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
|
|
4350 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
|
|
4351 {EXPAND_LANGUAGE, get_lang_arg, TRUE},
|
|
4352 #endif
|
|
4353 {EXPAND_ENV_VARS, get_env_name, TRUE},
|
|
4354 };
|
|
4355 int i;
|
|
4356
|
|
4357 /*
|
|
4358 * Find a context in the table and call the ExpandGeneric() with the
|
|
4359 * right function to do the expansion.
|
|
4360 */
|
|
4361 ret = FAIL;
|
|
4362 for (i = 0; i < sizeof(tab) / sizeof(struct expgen); ++i)
|
|
4363 if (xp->xp_context == tab[i].context)
|
|
4364 {
|
|
4365 if (tab[i].ic)
|
|
4366 regmatch.rm_ic = TRUE;
|
|
4367 ret = ExpandGeneric(xp, ®match, num_file, file, tab[i].func);
|
|
4368 break;
|
|
4369 }
|
|
4370 }
|
|
4371
|
|
4372 vim_free(regmatch.regprog);
|
|
4373
|
|
4374 return ret;
|
|
4375 #endif /* FEAT_CMDL_COMPL */
|
|
4376 }
|
|
4377
|
|
4378 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
|
|
4379 /*
|
|
4380 * Expand a list of names.
|
|
4381 *
|
|
4382 * Generic function for command line completion. It calls a function to
|
|
4383 * obtain strings, one by one. The strings are matched against a regexp
|
|
4384 * program. Matching strings are copied into an array, which is returned.
|
|
4385 *
|
|
4386 * Returns OK when no problems encountered, FAIL for error (out of memory).
|
|
4387 */
|
|
4388 int
|
|
4389 ExpandGeneric(xp, regmatch, num_file, file, func)
|
|
4390 expand_T *xp;
|
|
4391 regmatch_T *regmatch;
|
|
4392 int *num_file;
|
|
4393 char_u ***file;
|
|
4394 char_u *((*func)__ARGS((expand_T *, int)));
|
|
4395 /* returns a string from the list */
|
|
4396 {
|
|
4397 int i;
|
|
4398 int count = 0;
|
480
|
4399 int round;
|
7
|
4400 char_u *str;
|
|
4401
|
|
4402 /* do this loop twice:
|
480
|
4403 * round == 0: count the number of matching names
|
|
4404 * round == 1: copy the matching names into allocated memory
|
7
|
4405 */
|
480
|
4406 for (round = 0; round <= 1; ++round)
|
7
|
4407 {
|
|
4408 for (i = 0; ; ++i)
|
|
4409 {
|
|
4410 str = (*func)(xp, i);
|
|
4411 if (str == NULL) /* end of list */
|
|
4412 break;
|
|
4413 if (*str == NUL) /* skip empty strings */
|
|
4414 continue;
|
|
4415
|
|
4416 if (vim_regexec(regmatch, str, (colnr_T)0))
|
|
4417 {
|
480
|
4418 if (round)
|
7
|
4419 {
|
|
4420 str = vim_strsave_escaped(str, (char_u *)" \t\\.");
|
|
4421 (*file)[count] = str;
|
|
4422 #ifdef FEAT_MENU
|
|
4423 if (func == get_menu_names && str != NULL)
|
|
4424 {
|
|
4425 /* test for separator added by get_menu_names() */
|
|
4426 str += STRLEN(str) - 1;
|
|
4427 if (*str == '\001')
|
|
4428 *str = '.';
|
|
4429 }
|
|
4430 #endif
|
|
4431 }
|
|
4432 ++count;
|
|
4433 }
|
|
4434 }
|
480
|
4435 if (round == 0)
|
7
|
4436 {
|
|
4437 if (count == 0)
|
|
4438 return OK;
|
|
4439 *num_file = count;
|
|
4440 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
|
|
4441 if (*file == NULL)
|
|
4442 {
|
|
4443 *file = (char_u **)"";
|
|
4444 return FAIL;
|
|
4445 }
|
|
4446 count = 0;
|
|
4447 }
|
|
4448 }
|
480
|
4449
|
828
|
4450 /* Sort the results. Keep menu's in the specified order. */
|
|
4451 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS)
|
|
4452 sort_strings(*file, *num_file);
|
480
|
4453
|
7
|
4454 return OK;
|
|
4455 }
|
|
4456
|
716
|
4457 /*
|
|
4458 * Complete a shell command.
|
|
4459 * Returns FAIL or OK;
|
|
4460 */
|
|
4461 static int
|
|
4462 expand_shellcmd(filepat, num_file, file, flagsarg)
|
|
4463 char_u *filepat; /* pattern to match with command names */
|
|
4464 int *num_file; /* return: number of matches */
|
|
4465 char_u ***file; /* return: array with matches */
|
|
4466 int flagsarg; /* EW_ flags */
|
|
4467 {
|
|
4468 char_u *pat;
|
|
4469 int i;
|
|
4470 char_u *path;
|
|
4471 int mustfree = FALSE;
|
|
4472 garray_T ga;
|
|
4473 char_u *buf = alloc(MAXPATHL);
|
|
4474 size_t l;
|
|
4475 char_u *s, *e;
|
|
4476 int flags = flagsarg;
|
|
4477 int ret;
|
|
4478
|
|
4479 if (buf == NULL)
|
|
4480 return FAIL;
|
|
4481
|
|
4482 /* for ":set path=" and ":set tags=" halve backslashes for escaped
|
|
4483 * space */
|
|
4484 pat = vim_strsave(filepat);
|
|
4485 for (i = 0; pat[i]; ++i)
|
|
4486 if (pat[i] == '\\' && pat[i + 1] == ' ')
|
|
4487 STRCPY(pat + i, pat + i + 1);
|
|
4488
|
|
4489 flags |= EW_FILE | EW_EXEC;
|
|
4490
|
|
4491 /* For an absolute name we don't use $PATH. */
|
|
4492 if ((pat[0] == '.' && (vim_ispathsep(pat[1])
|
|
4493 || (pat[1] == '.' && vim_ispathsep(pat[2])))))
|
|
4494 path = (char_u *)".";
|
|
4495 else
|
|
4496 path = vim_getenv((char_u *)"PATH", &mustfree);
|
|
4497
|
|
4498 /*
|
|
4499 * Go over all directories in $PATH. Expand matches in that directory and
|
|
4500 * collect them in "ga".
|
|
4501 */
|
|
4502 ga_init2(&ga, (int)sizeof(char *), 10);
|
|
4503 for (s = path; *s != NUL; s = e)
|
|
4504 {
|
|
4505 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
|
|
4506 e = vim_strchr(s, ';');
|
|
4507 #else
|
|
4508 e = vim_strchr(s, ':');
|
|
4509 #endif
|
|
4510 if (e == NULL)
|
|
4511 e = s + STRLEN(s);
|
|
4512
|
|
4513 l = e - s;
|
|
4514 if (l > MAXPATHL - 5)
|
|
4515 break;
|
|
4516 vim_strncpy(buf, s, l);
|
|
4517 add_pathsep(buf);
|
|
4518 l = STRLEN(buf);
|
|
4519 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l);
|
|
4520
|
|
4521 /* Expand matches in one directory of $PATH. */
|
|
4522 ret = expand_wildcards(1, &buf, num_file, file, flags);
|
|
4523 if (ret == OK)
|
|
4524 {
|
|
4525 if (ga_grow(&ga, *num_file) == FAIL)
|
|
4526 FreeWild(*num_file, *file);
|
|
4527 else
|
|
4528 {
|
|
4529 for (i = 0; i < *num_file; ++i)
|
|
4530 {
|
|
4531 s = (*file)[i];
|
|
4532 if (STRLEN(s) > l)
|
|
4533 {
|
|
4534 /* Remove the path again. */
|
|
4535 mch_memmove(s, s + l, STRLEN(s + l) + 1);
|
|
4536 ((char_u **)ga.ga_data)[ga.ga_len++] = s;
|
|
4537 }
|
|
4538 else
|
|
4539 vim_free(s);
|
|
4540 }
|
|
4541 vim_free(*file);
|
|
4542 }
|
|
4543 }
|
|
4544 if (*e != NUL)
|
|
4545 ++e;
|
|
4546 }
|
|
4547 *file = ga.ga_data;
|
|
4548 *num_file = ga.ga_len;
|
|
4549
|
|
4550 vim_free(buf);
|
|
4551 vim_free(pat);
|
|
4552 if (mustfree)
|
|
4553 vim_free(path);
|
|
4554 return OK;
|
|
4555 }
|
|
4556
|
|
4557
|
7
|
4558 # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
|
410
|
4559 static void * call_user_expand_func __ARGS((void *(*user_expand_func) __ARGS((char_u *, int, char_u **, int)), expand_T *xp, int *num_file, char_u ***file));
|
|
4560
|
7
|
4561 /*
|
407
|
4562 * call "user_expand_func()" to invoke a user defined VimL function and return
|
|
4563 * the result (either a string or a List).
|
7
|
4564 */
|
407
|
4565 static void *
|
|
4566 call_user_expand_func(user_expand_func, xp, num_file, file)
|
|
4567 void *(*user_expand_func) __ARGS((char_u *, int, char_u **, int));
|
7
|
4568 expand_T *xp;
|
|
4569 int *num_file;
|
|
4570 char_u ***file;
|
|
4571 {
|
407
|
4572 char_u keep;
|
|
4573 char_u num[50];
|
7
|
4574 char_u *args[3];
|
|
4575 int save_current_SID = current_SID;
|
407
|
4576 void *ret;
|
13
|
4577 struct cmdline_info save_ccline;
|
7
|
4578
|
|
4579 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0')
|
407
|
4580 return NULL;
|
7
|
4581 *num_file = 0;
|
|
4582 *file = NULL;
|
|
4583
|
|
4584 keep = ccline.cmdbuff[ccline.cmdlen];
|
|
4585 ccline.cmdbuff[ccline.cmdlen] = 0;
|
|
4586 sprintf((char *)num, "%d", ccline.cmdpos);
|
|
4587 args[0] = xp->xp_pattern;
|
|
4588 args[1] = ccline.cmdbuff;
|
|
4589 args[2] = num;
|
|
4590
|
13
|
4591 /* Save the cmdline, we don't know what the function may do. */
|
|
4592 save_ccline = ccline;
|
|
4593 ccline.cmdbuff = NULL;
|
|
4594 ccline.cmdprompt = NULL;
|
7
|
4595 current_SID = xp->xp_scriptID;
|
13
|
4596
|
407
|
4597 ret = user_expand_func(xp->xp_arg, 3, args, FALSE);
|
13
|
4598
|
|
4599 ccline = save_ccline;
|
7
|
4600 current_SID = save_current_SID;
|
13
|
4601
|
7
|
4602 ccline.cmdbuff[ccline.cmdlen] = keep;
|
407
|
4603
|
|
4604 return ret;
|
|
4605 }
|
|
4606
|
|
4607 /*
|
|
4608 * Expand names with a function defined by the user.
|
|
4609 */
|
|
4610 static int
|
|
4611 ExpandUserDefined(xp, regmatch, num_file, file)
|
|
4612 expand_T *xp;
|
|
4613 regmatch_T *regmatch;
|
|
4614 int *num_file;
|
|
4615 char_u ***file;
|
|
4616 {
|
|
4617 char_u *retstr;
|
|
4618 char_u *s;
|
|
4619 char_u *e;
|
|
4620 char_u keep;
|
|
4621 garray_T ga;
|
|
4622
|
|
4623 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file);
|
|
4624 if (retstr == NULL)
|
7
|
4625 return FAIL;
|
|
4626
|
|
4627 ga_init2(&ga, (int)sizeof(char *), 3);
|
407
|
4628 for (s = retstr; *s != NUL; s = e)
|
7
|
4629 {
|
|
4630 e = vim_strchr(s, '\n');
|
|
4631 if (e == NULL)
|
|
4632 e = s + STRLEN(s);
|
|
4633 keep = *e;
|
|
4634 *e = 0;
|
|
4635
|
|
4636 if (xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0)
|
|
4637 {
|
|
4638 *e = keep;
|
|
4639 if (*e != NUL)
|
|
4640 ++e;
|
|
4641 continue;
|
|
4642 }
|
|
4643
|
|
4644 if (ga_grow(&ga, 1) == FAIL)
|
|
4645 break;
|
|
4646
|
|
4647 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s));
|
|
4648 ++ga.ga_len;
|
|
4649
|
|
4650 *e = keep;
|
|
4651 if (*e != NUL)
|
|
4652 ++e;
|
|
4653 }
|
407
|
4654 vim_free(retstr);
|
|
4655 *file = ga.ga_data;
|
|
4656 *num_file = ga.ga_len;
|
|
4657 return OK;
|
|
4658 }
|
|
4659
|
|
4660 /*
|
|
4661 * Expand names with a list returned by a function defined by the user.
|
|
4662 */
|
|
4663 static int
|
|
4664 ExpandUserList(xp, num_file, file)
|
|
4665 expand_T *xp;
|
|
4666 int *num_file;
|
|
4667 char_u ***file;
|
|
4668 {
|
|
4669 list_T *retlist;
|
|
4670 listitem_T *li;
|
|
4671 garray_T ga;
|
|
4672
|
|
4673 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file);
|
|
4674 if (retlist == NULL)
|
|
4675 return FAIL;
|
|
4676
|
|
4677 ga_init2(&ga, (int)sizeof(char *), 3);
|
|
4678 /* Loop over the items in the list. */
|
|
4679 for (li = retlist->lv_first; li != NULL; li = li->li_next)
|
|
4680 {
|
|
4681 if (li->li_tv.v_type != VAR_STRING)
|
|
4682 continue; /* Skip non-string items */
|
|
4683
|
|
4684 if (ga_grow(&ga, 1) == FAIL)
|
|
4685 break;
|
|
4686
|
|
4687 ((char_u **)ga.ga_data)[ga.ga_len] =
|
|
4688 vim_strsave(li->li_tv.vval.v_string);
|
|
4689 ++ga.ga_len;
|
|
4690 }
|
|
4691 list_unref(retlist);
|
|
4692
|
7
|
4693 *file = ga.ga_data;
|
|
4694 *num_file = ga.ga_len;
|
|
4695 return OK;
|
|
4696 }
|
|
4697 #endif
|
|
4698
|
|
4699 /*
|
|
4700 * Expand color scheme names: 'runtimepath'/colors/{pat}.vim
|
|
4701 * or compiler names.
|
|
4702 */
|
|
4703 static int
|
|
4704 ExpandRTDir(pat, num_file, file, dirname)
|
|
4705 char_u *pat;
|
|
4706 int *num_file;
|
|
4707 char_u ***file;
|
|
4708 char *dirname; /* "colors" or "compiler" */
|
|
4709 {
|
|
4710 char_u *all;
|
|
4711 char_u *s;
|
|
4712 char_u *e;
|
|
4713 garray_T ga;
|
|
4714
|
|
4715 *num_file = 0;
|
|
4716 *file = NULL;
|
|
4717 s = alloc((unsigned)(STRLEN(pat) + STRLEN(dirname) + 7));
|
|
4718 if (s == NULL)
|
|
4719 return FAIL;
|
|
4720 sprintf((char *)s, "%s/%s*.vim", dirname, pat);
|
|
4721 all = globpath(p_rtp, s);
|
|
4722 vim_free(s);
|
|
4723 if (all == NULL)
|
|
4724 return FAIL;
|
|
4725
|
|
4726 ga_init2(&ga, (int)sizeof(char *), 3);
|
|
4727 for (s = all; *s != NUL; s = e)
|
|
4728 {
|
|
4729 e = vim_strchr(s, '\n');
|
|
4730 if (e == NULL)
|
|
4731 e = s + STRLEN(s);
|
|
4732 if (ga_grow(&ga, 1) == FAIL)
|
|
4733 break;
|
|
4734 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0)
|
|
4735 {
|
39
|
4736 for (s = e - 4; s > all; mb_ptr_back(all, s))
|
7
|
4737 if (*s == '\n' || vim_ispathsep(*s))
|
|
4738 break;
|
|
4739 ++s;
|
|
4740 ((char_u **)ga.ga_data)[ga.ga_len] =
|
|
4741 vim_strnsave(s, (int)(e - s - 4));
|
|
4742 ++ga.ga_len;
|
|
4743 }
|
|
4744 if (*e != NUL)
|
|
4745 ++e;
|
|
4746 }
|
|
4747 vim_free(all);
|
|
4748 *file = ga.ga_data;
|
|
4749 *num_file = ga.ga_len;
|
|
4750 return OK;
|
|
4751 }
|
|
4752
|
|
4753 #endif
|
|
4754
|
|
4755 #if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO)
|
|
4756 /*
|
|
4757 * Expand "file" for all comma-separated directories in "path".
|
|
4758 * Returns an allocated string with all matches concatenated, separated by
|
|
4759 * newlines. Returns NULL for an error or no matches.
|
|
4760 */
|
|
4761 char_u *
|
|
4762 globpath(path, file)
|
|
4763 char_u *path;
|
|
4764 char_u *file;
|
|
4765 {
|
|
4766 expand_T xpc;
|
|
4767 char_u *buf;
|
|
4768 garray_T ga;
|
|
4769 int i;
|
|
4770 int len;
|
|
4771 int num_p;
|
|
4772 char_u **p;
|
|
4773 char_u *cur = NULL;
|
|
4774
|
|
4775 buf = alloc(MAXPATHL);
|
|
4776 if (buf == NULL)
|
|
4777 return NULL;
|
|
4778
|
632
|
4779 ExpandInit(&xpc);
|
7
|
4780 xpc.xp_context = EXPAND_FILES;
|
632
|
4781
|
7
|
4782 ga_init2(&ga, 1, 100);
|
|
4783
|
|
4784 /* Loop over all entries in {path}. */
|
|
4785 while (*path != NUL)
|
|
4786 {
|
|
4787 /* Copy one item of the path to buf[] and concatenate the file name. */
|
|
4788 copy_option_part(&path, buf, MAXPATHL, ",");
|
|
4789 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
|
|
4790 {
|
|
4791 add_pathsep(buf);
|
|
4792 STRCAT(buf, file);
|
|
4793 if (ExpandFromContext(&xpc, buf, &num_p, &p, WILD_SILENT) != FAIL
|
|
4794 && num_p > 0)
|
|
4795 {
|
|
4796 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT);
|
|
4797 for (len = 0, i = 0; i < num_p; ++i)
|
835
|
4798 len += (int)STRLEN(p[i]) + 1;
|
7
|
4799
|
|
4800 /* Concatenate new results to previous ones. */
|
|
4801 if (ga_grow(&ga, len) == OK)
|
|
4802 {
|
|
4803 cur = (char_u *)ga.ga_data + ga.ga_len;
|
|
4804 for (i = 0; i < num_p; ++i)
|
|
4805 {
|
|
4806 STRCPY(cur, p[i]);
|
|
4807 cur += STRLEN(p[i]);
|
|
4808 *cur++ = '\n';
|
|
4809 }
|
|
4810 ga.ga_len += len;
|
|
4811 }
|
|
4812 FreeWild(num_p, p);
|
|
4813 }
|
|
4814 }
|
|
4815 }
|
|
4816 if (cur != NULL)
|
|
4817 *--cur = 0; /* Replace trailing newline with NUL */
|
|
4818
|
|
4819 vim_free(buf);
|
|
4820 return (char_u *)ga.ga_data;
|
|
4821 }
|
|
4822
|
|
4823 #endif
|
|
4824
|
|
4825 #if defined(FEAT_CMDHIST) || defined(PROTO)
|
|
4826
|
|
4827 /*********************************
|
|
4828 * Command line history stuff *
|
|
4829 *********************************/
|
|
4830
|
|
4831 /*
|
|
4832 * Translate a history character to the associated type number.
|
|
4833 */
|
|
4834 static int
|
|
4835 hist_char2type(c)
|
|
4836 int c;
|
|
4837 {
|
|
4838 if (c == ':')
|
|
4839 return HIST_CMD;
|
|
4840 if (c == '=')
|
|
4841 return HIST_EXPR;
|
|
4842 if (c == '@')
|
|
4843 return HIST_INPUT;
|
|
4844 if (c == '>')
|
|
4845 return HIST_DEBUG;
|
|
4846 return HIST_SEARCH; /* must be '?' or '/' */
|
|
4847 }
|
|
4848
|
|
4849 /*
|
|
4850 * Table of history names.
|
|
4851 * These names are used in :history and various hist...() functions.
|
|
4852 * It is sufficient to give the significant prefix of a history name.
|
|
4853 */
|
|
4854
|
|
4855 static char *(history_names[]) =
|
|
4856 {
|
|
4857 "cmd",
|
|
4858 "search",
|
|
4859 "expr",
|
|
4860 "input",
|
|
4861 "debug",
|
|
4862 NULL
|
|
4863 };
|
|
4864
|
|
4865 /*
|
|
4866 * init_history() - Initialize the command line history.
|
|
4867 * Also used to re-allocate the history when the size changes.
|
|
4868 */
|
356
|
4869 void
|
7
|
4870 init_history()
|
|
4871 {
|
|
4872 int newlen; /* new length of history table */
|
|
4873 histentry_T *temp;
|
|
4874 int i;
|
|
4875 int j;
|
|
4876 int type;
|
|
4877
|
|
4878 /*
|
|
4879 * If size of history table changed, reallocate it
|
|
4880 */
|
|
4881 newlen = (int)p_hi;
|
|
4882 if (newlen != hislen) /* history length changed */
|
|
4883 {
|
|
4884 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */
|
|
4885 {
|
|
4886 if (newlen)
|
|
4887 {
|
|
4888 temp = (histentry_T *)lalloc(
|
|
4889 (long_u)(newlen * sizeof(histentry_T)), TRUE);
|
|
4890 if (temp == NULL) /* out of memory! */
|
|
4891 {
|
|
4892 if (type == 0) /* first one: just keep the old length */
|
|
4893 {
|
|
4894 newlen = hislen;
|
|
4895 break;
|
|
4896 }
|
|
4897 /* Already changed one table, now we can only have zero
|
|
4898 * length for all tables. */
|
|
4899 newlen = 0;
|
|
4900 type = -1;
|
|
4901 continue;
|
|
4902 }
|
|
4903 }
|
|
4904 else
|
|
4905 temp = NULL;
|
|
4906 if (newlen == 0 || temp != NULL)
|
|
4907 {
|
|
4908 if (hisidx[type] < 0) /* there are no entries yet */
|
|
4909 {
|
|
4910 for (i = 0; i < newlen; ++i)
|
|
4911 {
|
|
4912 temp[i].hisnum = 0;
|
|
4913 temp[i].hisstr = NULL;
|
|
4914 }
|
|
4915 }
|
|
4916 else if (newlen > hislen) /* array becomes bigger */
|
|
4917 {
|
|
4918 for (i = 0; i <= hisidx[type]; ++i)
|
|
4919 temp[i] = history[type][i];
|
|
4920 j = i;
|
|
4921 for ( ; i <= newlen - (hislen - hisidx[type]); ++i)
|
|
4922 {
|
|
4923 temp[i].hisnum = 0;
|
|
4924 temp[i].hisstr = NULL;
|
|
4925 }
|
|
4926 for ( ; j < hislen; ++i, ++j)
|
|
4927 temp[i] = history[type][j];
|
|
4928 }
|
|
4929 else /* array becomes smaller or 0 */
|
|
4930 {
|
|
4931 j = hisidx[type];
|
|
4932 for (i = newlen - 1; ; --i)
|
|
4933 {
|
|
4934 if (i >= 0) /* copy newest entries */
|
|
4935 temp[i] = history[type][j];
|
|
4936 else /* remove older entries */
|
|
4937 vim_free(history[type][j].hisstr);
|
|
4938 if (--j < 0)
|
|
4939 j = hislen - 1;
|
|
4940 if (j == hisidx[type])
|
|
4941 break;
|
|
4942 }
|
|
4943 hisidx[type] = newlen - 1;
|
|
4944 }
|
|
4945 vim_free(history[type]);
|
|
4946 history[type] = temp;
|
|
4947 }
|
|
4948 }
|
|
4949 hislen = newlen;
|
|
4950 }
|
|
4951 }
|
|
4952
|
|
4953 /*
|
|
4954 * Check if command line 'str' is already in history.
|
|
4955 * If 'move_to_front' is TRUE, matching entry is moved to end of history.
|
|
4956 */
|
|
4957 static int
|
|
4958 in_history(type, str, move_to_front)
|
|
4959 int type;
|
|
4960 char_u *str;
|
|
4961 int move_to_front; /* Move the entry to the front if it exists */
|
|
4962 {
|
|
4963 int i;
|
|
4964 int last_i = -1;
|
|
4965
|
|
4966 if (hisidx[type] < 0)
|
|
4967 return FALSE;
|
|
4968 i = hisidx[type];
|
|
4969 do
|
|
4970 {
|
|
4971 if (history[type][i].hisstr == NULL)
|
|
4972 return FALSE;
|
|
4973 if (STRCMP(str, history[type][i].hisstr) == 0)
|
|
4974 {
|
|
4975 if (!move_to_front)
|
|
4976 return TRUE;
|
|
4977 last_i = i;
|
|
4978 break;
|
|
4979 }
|
|
4980 if (--i < 0)
|
|
4981 i = hislen - 1;
|
|
4982 } while (i != hisidx[type]);
|
|
4983
|
|
4984 if (last_i >= 0)
|
|
4985 {
|
|
4986 str = history[type][i].hisstr;
|
|
4987 while (i != hisidx[type])
|
|
4988 {
|
|
4989 if (++i >= hislen)
|
|
4990 i = 0;
|
|
4991 history[type][last_i] = history[type][i];
|
|
4992 last_i = i;
|
|
4993 }
|
|
4994 history[type][i].hisstr = str;
|
|
4995 history[type][i].hisnum = ++hisnum[type];
|
|
4996 return TRUE;
|
|
4997 }
|
|
4998 return FALSE;
|
|
4999 }
|
|
5000
|
|
5001 /*
|
|
5002 * Convert history name (from table above) to its HIST_ equivalent.
|
|
5003 * When "name" is empty, return "cmd" history.
|
|
5004 * Returns -1 for unknown history name.
|
|
5005 */
|
|
5006 int
|
|
5007 get_histtype(name)
|
|
5008 char_u *name;
|
|
5009 {
|
|
5010 int i;
|
|
5011 int len = (int)STRLEN(name);
|
|
5012
|
|
5013 /* No argument: use current history. */
|
|
5014 if (len == 0)
|
|
5015 return hist_char2type(ccline.cmdfirstc);
|
|
5016
|
|
5017 for (i = 0; history_names[i] != NULL; ++i)
|
|
5018 if (STRNICMP(name, history_names[i], len) == 0)
|
|
5019 return i;
|
|
5020
|
|
5021 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL)
|
|
5022 return hist_char2type(name[0]);
|
|
5023
|
|
5024 return -1;
|
|
5025 }
|
|
5026
|
|
5027 static int last_maptick = -1; /* last seen maptick */
|
|
5028
|
|
5029 /*
|
|
5030 * Add the given string to the given history. If the string is already in the
|
|
5031 * history then it is moved to the front. "histype" may be one of he HIST_
|
|
5032 * values.
|
|
5033 */
|
|
5034 void
|
|
5035 add_to_history(histype, new_entry, in_map, sep)
|
|
5036 int histype;
|
|
5037 char_u *new_entry;
|
|
5038 int in_map; /* consider maptick when inside a mapping */
|
|
5039 int sep; /* separator character used (search hist) */
|
|
5040 {
|
|
5041 histentry_T *hisptr;
|
|
5042 int len;
|
|
5043
|
|
5044 if (hislen == 0) /* no history */
|
|
5045 return;
|
|
5046
|
|
5047 /*
|
|
5048 * Searches inside the same mapping overwrite each other, so that only
|
|
5049 * the last line is kept. Be careful not to remove a line that was moved
|
|
5050 * down, only lines that were added.
|
|
5051 */
|
|
5052 if (histype == HIST_SEARCH && in_map)
|
|
5053 {
|
|
5054 if (maptick == last_maptick)
|
|
5055 {
|
|
5056 /* Current line is from the same mapping, remove it */
|
|
5057 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];
|
|
5058 vim_free(hisptr->hisstr);
|
|
5059 hisptr->hisstr = NULL;
|
|
5060 hisptr->hisnum = 0;
|
|
5061 --hisnum[histype];
|
|
5062 if (--hisidx[HIST_SEARCH] < 0)
|
|
5063 hisidx[HIST_SEARCH] = hislen - 1;
|
|
5064 }
|
|
5065 last_maptick = -1;
|
|
5066 }
|
|
5067 if (!in_history(histype, new_entry, TRUE))
|
|
5068 {
|
|
5069 if (++hisidx[histype] == hislen)
|
|
5070 hisidx[histype] = 0;
|
|
5071 hisptr = &history[histype][hisidx[histype]];
|
|
5072 vim_free(hisptr->hisstr);
|
|
5073
|
|
5074 /* Store the separator after the NUL of the string. */
|
835
|
5075 len = (int)STRLEN(new_entry);
|
7
|
5076 hisptr->hisstr = vim_strnsave(new_entry, len + 2);
|
|
5077 if (hisptr->hisstr != NULL)
|
|
5078 hisptr->hisstr[len + 1] = sep;
|
|
5079
|
|
5080 hisptr->hisnum = ++hisnum[histype];
|
|
5081 if (histype == HIST_SEARCH && in_map)
|
|
5082 last_maptick = maptick;
|
|
5083 }
|
|
5084 }
|
|
5085
|
|
5086 #if defined(FEAT_EVAL) || defined(PROTO)
|
|
5087
|
|
5088 /*
|
|
5089 * Get identifier of newest history entry.
|
|
5090 * "histype" may be one of the HIST_ values.
|
|
5091 */
|
|
5092 int
|
|
5093 get_history_idx(histype)
|
|
5094 int histype;
|
|
5095 {
|
|
5096 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
|
|
5097 || hisidx[histype] < 0)
|
|
5098 return -1;
|
|
5099
|
|
5100 return history[histype][hisidx[histype]].hisnum;
|
|
5101 }
|
|
5102
|
95
|
5103 static struct cmdline_info *get_ccline_ptr __ARGS((void));
|
|
5104
|
|
5105 /*
|
|
5106 * Get pointer to the command line info to use. cmdline_paste() may clear
|
|
5107 * ccline and put the previous value in prev_ccline.
|
|
5108 */
|
|
5109 static struct cmdline_info *
|
|
5110 get_ccline_ptr()
|
|
5111 {
|
|
5112 if ((State & CMDLINE) == 0)
|
|
5113 return NULL;
|
|
5114 if (ccline.cmdbuff != NULL)
|
|
5115 return &ccline;
|
|
5116 if (prev_ccline_used && prev_ccline.cmdbuff != NULL)
|
|
5117 return &prev_ccline;
|
|
5118 return NULL;
|
|
5119 }
|
|
5120
|
7
|
5121 /*
|
|
5122 * Get the current command line in allocated memory.
|
|
5123 * Only works when the command line is being edited.
|
|
5124 * Returns NULL when something is wrong.
|
|
5125 */
|
|
5126 char_u *
|
|
5127 get_cmdline_str()
|
|
5128 {
|
95
|
5129 struct cmdline_info *p = get_ccline_ptr();
|
|
5130
|
|
5131 if (p == NULL)
|
7
|
5132 return NULL;
|
95
|
5133 return vim_strnsave(p->cmdbuff, p->cmdlen);
|
7
|
5134 }
|
|
5135
|
|
5136 /*
|
|
5137 * Get the current command line position, counted in bytes.
|
|
5138 * Zero is the first position.
|
|
5139 * Only works when the command line is being edited.
|
|
5140 * Returns -1 when something is wrong.
|
|
5141 */
|
|
5142 int
|
|
5143 get_cmdline_pos()
|
|
5144 {
|
95
|
5145 struct cmdline_info *p = get_ccline_ptr();
|
|
5146
|
|
5147 if (p == NULL)
|
7
|
5148 return -1;
|
95
|
5149 return p->cmdpos;
|
7
|
5150 }
|
|
5151
|
|
5152 /*
|
|
5153 * Set the command line byte position to "pos". Zero is the first position.
|
|
5154 * Only works when the command line is being edited.
|
|
5155 * Returns 1 when failed, 0 when OK.
|
|
5156 */
|
|
5157 int
|
|
5158 set_cmdline_pos(pos)
|
|
5159 int pos;
|
|
5160 {
|
95
|
5161 struct cmdline_info *p = get_ccline_ptr();
|
|
5162
|
|
5163 if (p == NULL)
|
7
|
5164 return 1;
|
|
5165
|
|
5166 /* The position is not set directly but after CTRL-\ e or CTRL-R = has
|
|
5167 * changed the command line. */
|
|
5168 if (pos < 0)
|
|
5169 new_cmdpos = 0;
|
|
5170 else
|
|
5171 new_cmdpos = pos;
|
|
5172 return 0;
|
|
5173 }
|
|
5174
|
|
5175 /*
|
531
|
5176 * Get the current command-line type.
|
532
|
5177 * Returns ':' or '/' or '?' or '@' or '>' or '-'
|
531
|
5178 * Only works when the command line is being edited.
|
|
5179 * Returns NUL when something is wrong.
|
|
5180 */
|
|
5181 int
|
|
5182 get_cmdline_type()
|
|
5183 {
|
|
5184 struct cmdline_info *p = get_ccline_ptr();
|
|
5185
|
|
5186 if (p == NULL)
|
|
5187 return NUL;
|
532
|
5188 if (p->cmdfirstc == NUL)
|
|
5189 return (p->input_fn) ? '@' : '-';
|
531
|
5190 return p->cmdfirstc;
|
|
5191 }
|
|
5192
|
|
5193 /*
|
7
|
5194 * Calculate history index from a number:
|
|
5195 * num > 0: seen as identifying number of a history entry
|
|
5196 * num < 0: relative position in history wrt newest entry
|
|
5197 * "histype" may be one of the HIST_ values.
|
|
5198 */
|
|
5199 static int
|
|
5200 calc_hist_idx(histype, num)
|
|
5201 int histype;
|
|
5202 int num;
|
|
5203 {
|
|
5204 int i;
|
|
5205 histentry_T *hist;
|
|
5206 int wrapped = FALSE;
|
|
5207
|
|
5208 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
|
|
5209 || (i = hisidx[histype]) < 0 || num == 0)
|
|
5210 return -1;
|
|
5211
|
|
5212 hist = history[histype];
|
|
5213 if (num > 0)
|
|
5214 {
|
|
5215 while (hist[i].hisnum > num)
|
|
5216 if (--i < 0)
|
|
5217 {
|
|
5218 if (wrapped)
|
|
5219 break;
|
|
5220 i += hislen;
|
|
5221 wrapped = TRUE;
|
|
5222 }
|
|
5223 if (hist[i].hisnum == num && hist[i].hisstr != NULL)
|
|
5224 return i;
|
|
5225 }
|
|
5226 else if (-num <= hislen)
|
|
5227 {
|
|
5228 i += num + 1;
|
|
5229 if (i < 0)
|
|
5230 i += hislen;
|
|
5231 if (hist[i].hisstr != NULL)
|
|
5232 return i;
|
|
5233 }
|
|
5234 return -1;
|
|
5235 }
|
|
5236
|
|
5237 /*
|
|
5238 * Get a history entry by its index.
|
|
5239 * "histype" may be one of the HIST_ values.
|
|
5240 */
|
|
5241 char_u *
|
|
5242 get_history_entry(histype, idx)
|
|
5243 int histype;
|
|
5244 int idx;
|
|
5245 {
|
|
5246 idx = calc_hist_idx(histype, idx);
|
|
5247 if (idx >= 0)
|
|
5248 return history[histype][idx].hisstr;
|
|
5249 else
|
|
5250 return (char_u *)"";
|
|
5251 }
|
|
5252
|
|
5253 /*
|
|
5254 * Clear all entries of a history.
|
|
5255 * "histype" may be one of the HIST_ values.
|
|
5256 */
|
|
5257 int
|
|
5258 clr_history(histype)
|
|
5259 int histype;
|
|
5260 {
|
|
5261 int i;
|
|
5262 histentry_T *hisptr;
|
|
5263
|
|
5264 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT)
|
|
5265 {
|
|
5266 hisptr = history[histype];
|
|
5267 for (i = hislen; i--;)
|
|
5268 {
|
|
5269 vim_free(hisptr->hisstr);
|
|
5270 hisptr->hisnum = 0;
|
|
5271 hisptr++->hisstr = NULL;
|
|
5272 }
|
|
5273 hisidx[histype] = -1; /* mark history as cleared */
|
|
5274 hisnum[histype] = 0; /* reset identifier counter */
|
|
5275 return OK;
|
|
5276 }
|
|
5277 return FAIL;
|
|
5278 }
|
|
5279
|
|
5280 /*
|
|
5281 * Remove all entries matching {str} from a history.
|
|
5282 * "histype" may be one of the HIST_ values.
|
|
5283 */
|
|
5284 int
|
|
5285 del_history_entry(histype, str)
|
|
5286 int histype;
|
|
5287 char_u *str;
|
|
5288 {
|
|
5289 regmatch_T regmatch;
|
|
5290 histentry_T *hisptr;
|
|
5291 int idx;
|
|
5292 int i;
|
|
5293 int last;
|
|
5294 int found = FALSE;
|
|
5295
|
|
5296 regmatch.regprog = NULL;
|
|
5297 regmatch.rm_ic = FALSE; /* always match case */
|
|
5298 if (hislen != 0
|
|
5299 && histype >= 0
|
|
5300 && histype < HIST_COUNT
|
|
5301 && *str != NUL
|
|
5302 && (idx = hisidx[histype]) >= 0
|
|
5303 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING))
|
|
5304 != NULL)
|
|
5305 {
|
|
5306 i = last = idx;
|
|
5307 do
|
|
5308 {
|
|
5309 hisptr = &history[histype][i];
|
|
5310 if (hisptr->hisstr == NULL)
|
|
5311 break;
|
|
5312 if (vim_regexec(®match, hisptr->hisstr, (colnr_T)0))
|
|
5313 {
|
|
5314 found = TRUE;
|
|
5315 vim_free(hisptr->hisstr);
|
|
5316 hisptr->hisstr = NULL;
|
|
5317 hisptr->hisnum = 0;
|
|
5318 }
|
|
5319 else
|
|
5320 {
|
|
5321 if (i != last)
|
|
5322 {
|
|
5323 history[histype][last] = *hisptr;
|
|
5324 hisptr->hisstr = NULL;
|
|
5325 hisptr->hisnum = 0;
|
|
5326 }
|
|
5327 if (--last < 0)
|
|
5328 last += hislen;
|
|
5329 }
|
|
5330 if (--i < 0)
|
|
5331 i += hislen;
|
|
5332 } while (i != idx);
|
|
5333 if (history[histype][idx].hisstr == NULL)
|
|
5334 hisidx[histype] = -1;
|
|
5335 }
|
|
5336 vim_free(regmatch.regprog);
|
|
5337 return found;
|
|
5338 }
|
|
5339
|
|
5340 /*
|
|
5341 * Remove an indexed entry from a history.
|
|
5342 * "histype" may be one of the HIST_ values.
|
|
5343 */
|
|
5344 int
|
|
5345 del_history_idx(histype, idx)
|
|
5346 int histype;
|
|
5347 int idx;
|
|
5348 {
|
|
5349 int i, j;
|
|
5350
|
|
5351 i = calc_hist_idx(histype, idx);
|
|
5352 if (i < 0)
|
|
5353 return FALSE;
|
|
5354 idx = hisidx[histype];
|
|
5355 vim_free(history[histype][i].hisstr);
|
|
5356
|
|
5357 /* When deleting the last added search string in a mapping, reset
|
|
5358 * last_maptick, so that the last added search string isn't deleted again.
|
|
5359 */
|
|
5360 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx)
|
|
5361 last_maptick = -1;
|
|
5362
|
|
5363 while (i != idx)
|
|
5364 {
|
|
5365 j = (i + 1) % hislen;
|
|
5366 history[histype][i] = history[histype][j];
|
|
5367 i = j;
|
|
5368 }
|
|
5369 history[histype][i].hisstr = NULL;
|
|
5370 history[histype][i].hisnum = 0;
|
|
5371 if (--i < 0)
|
|
5372 i += hislen;
|
|
5373 hisidx[histype] = i;
|
|
5374 return TRUE;
|
|
5375 }
|
|
5376
|
|
5377 #endif /* FEAT_EVAL */
|
|
5378
|
|
5379 #if defined(FEAT_CRYPT) || defined(PROTO)
|
|
5380 /*
|
|
5381 * Very specific function to remove the value in ":set key=val" from the
|
|
5382 * history.
|
|
5383 */
|
|
5384 void
|
|
5385 remove_key_from_history()
|
|
5386 {
|
|
5387 char_u *p;
|
|
5388 int i;
|
|
5389
|
|
5390 i = hisidx[HIST_CMD];
|
|
5391 if (i < 0)
|
|
5392 return;
|
|
5393 p = history[HIST_CMD][i].hisstr;
|
|
5394 if (p != NULL)
|
|
5395 for ( ; *p; ++p)
|
|
5396 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3]))
|
|
5397 {
|
|
5398 p = vim_strchr(p + 3, '=');
|
|
5399 if (p == NULL)
|
|
5400 break;
|
|
5401 ++p;
|
|
5402 for (i = 0; p[i] && !vim_iswhite(p[i]); ++i)
|
|
5403 if (p[i] == '\\' && p[i + 1])
|
|
5404 ++i;
|
|
5405 mch_memmove(p, p + i, STRLEN(p + i) + 1);
|
|
5406 --p;
|
|
5407 }
|
|
5408 }
|
|
5409 #endif
|
|
5410
|
|
5411 #endif /* FEAT_CMDHIST */
|
|
5412
|
|
5413 #if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO)
|
|
5414 /*
|
|
5415 * Get indices "num1,num2" that specify a range within a list (not a range of
|
|
5416 * text lines in a buffer!) from a string. Used for ":history" and ":clist".
|
|
5417 * Returns OK if parsed successfully, otherwise FAIL.
|
|
5418 */
|
|
5419 int
|
|
5420 get_list_range(str, num1, num2)
|
|
5421 char_u **str;
|
|
5422 int *num1;
|
|
5423 int *num2;
|
|
5424 {
|
|
5425 int len;
|
|
5426 int first = FALSE;
|
|
5427 long num;
|
|
5428
|
|
5429 *str = skipwhite(*str);
|
|
5430 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */
|
|
5431 {
|
|
5432 vim_str2nr(*str, NULL, &len, FALSE, FALSE, &num, NULL);
|
|
5433 *str += len;
|
|
5434 *num1 = (int)num;
|
|
5435 first = TRUE;
|
|
5436 }
|
|
5437 *str = skipwhite(*str);
|
|
5438 if (**str == ',') /* parse "to" part of range */
|
|
5439 {
|
|
5440 *str = skipwhite(*str + 1);
|
|
5441 vim_str2nr(*str, NULL, &len, FALSE, FALSE, &num, NULL);
|
|
5442 if (len > 0)
|
|
5443 {
|
|
5444 *num2 = (int)num;
|
|
5445 *str = skipwhite(*str + len);
|
|
5446 }
|
|
5447 else if (!first) /* no number given at all */
|
|
5448 return FAIL;
|
|
5449 }
|
|
5450 else if (first) /* only one number given */
|
|
5451 *num2 = *num1;
|
|
5452 return OK;
|
|
5453 }
|
|
5454 #endif
|
|
5455
|
|
5456 #if defined(FEAT_CMDHIST) || defined(PROTO)
|
|
5457 /*
|
|
5458 * :history command - print a history
|
|
5459 */
|
|
5460 void
|
|
5461 ex_history(eap)
|
|
5462 exarg_T *eap;
|
|
5463 {
|
|
5464 histentry_T *hist;
|
|
5465 int histype1 = HIST_CMD;
|
|
5466 int histype2 = HIST_CMD;
|
|
5467 int hisidx1 = 1;
|
|
5468 int hisidx2 = -1;
|
|
5469 int idx;
|
|
5470 int i, j, k;
|
|
5471 char_u *end;
|
|
5472 char_u *arg = eap->arg;
|
|
5473
|
|
5474 if (hislen == 0)
|
|
5475 {
|
|
5476 MSG(_("'history' option is zero"));
|
|
5477 return;
|
|
5478 }
|
|
5479
|
|
5480 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ','))
|
|
5481 {
|
|
5482 end = arg;
|
|
5483 while (ASCII_ISALPHA(*end)
|
|
5484 || vim_strchr((char_u *)":=@>/?", *end) != NULL)
|
|
5485 end++;
|
|
5486 i = *end;
|
|
5487 *end = NUL;
|
|
5488 histype1 = get_histtype(arg);
|
|
5489 if (histype1 == -1)
|
|
5490 {
|
|
5491 if (STRICMP(arg, "all") == 0)
|
|
5492 {
|
|
5493 histype1 = 0;
|
|
5494 histype2 = HIST_COUNT-1;
|
|
5495 }
|
|
5496 else
|
|
5497 {
|
|
5498 *end = i;
|
|
5499 EMSG(_(e_trailing));
|
|
5500 return;
|
|
5501 }
|
|
5502 }
|
|
5503 else
|
|
5504 histype2 = histype1;
|
|
5505 *end = i;
|
|
5506 }
|
|
5507 else
|
|
5508 end = arg;
|
|
5509 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL)
|
|
5510 {
|
|
5511 EMSG(_(e_trailing));
|
|
5512 return;
|
|
5513 }
|
|
5514
|
|
5515 for (; !got_int && histype1 <= histype2; ++histype1)
|
|
5516 {
|
|
5517 STRCPY(IObuff, "\n # ");
|
|
5518 STRCAT(STRCAT(IObuff, history_names[histype1]), " history");
|
|
5519 MSG_PUTS_TITLE(IObuff);
|
|
5520 idx = hisidx[histype1];
|
|
5521 hist = history[histype1];
|
|
5522 j = hisidx1;
|
|
5523 k = hisidx2;
|
|
5524 if (j < 0)
|
|
5525 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum;
|
|
5526 if (k < 0)
|
|
5527 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum;
|
|
5528 if (idx >= 0 && j <= k)
|
|
5529 for (i = idx + 1; !got_int; ++i)
|
|
5530 {
|
|
5531 if (i == hislen)
|
|
5532 i = 0;
|
|
5533 if (hist[i].hisstr != NULL
|
|
5534 && hist[i].hisnum >= j && hist[i].hisnum <= k)
|
|
5535 {
|
|
5536 msg_putchar('\n');
|
|
5537 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ',
|
|
5538 hist[i].hisnum);
|
|
5539 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10)
|
|
5540 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff),
|
|
5541 (int)Columns - 10);
|
|
5542 else
|
|
5543 STRCAT(IObuff, hist[i].hisstr);
|
|
5544 msg_outtrans(IObuff);
|
|
5545 out_flush();
|
|
5546 }
|
|
5547 if (i == idx)
|
|
5548 break;
|
|
5549 }
|
|
5550 }
|
|
5551 }
|
|
5552 #endif
|
|
5553
|
|
5554 #if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO)
|
|
5555 static char_u **viminfo_history[HIST_COUNT] = {NULL, NULL, NULL, NULL};
|
|
5556 static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0};
|
|
5557 static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0};
|
|
5558 static int viminfo_add_at_front = FALSE;
|
|
5559
|
|
5560 static int hist_type2char __ARGS((int type, int use_question));
|
|
5561
|
|
5562 /*
|
|
5563 * Translate a history type number to the associated character.
|
|
5564 */
|
|
5565 static int
|
|
5566 hist_type2char(type, use_question)
|
|
5567 int type;
|
|
5568 int use_question; /* use '?' instead of '/' */
|
|
5569 {
|
|
5570 if (type == HIST_CMD)
|
|
5571 return ':';
|
|
5572 if (type == HIST_SEARCH)
|
|
5573 {
|
|
5574 if (use_question)
|
|
5575 return '?';
|
|
5576 else
|
|
5577 return '/';
|
|
5578 }
|
|
5579 if (type == HIST_EXPR)
|
|
5580 return '=';
|
|
5581 return '@';
|
|
5582 }
|
|
5583
|
|
5584 /*
|
|
5585 * Prepare for reading the history from the viminfo file.
|
|
5586 * This allocates history arrays to store the read history lines.
|
|
5587 */
|
|
5588 void
|
|
5589 prepare_viminfo_history(asklen)
|
|
5590 int asklen;
|
|
5591 {
|
|
5592 int i;
|
|
5593 int num;
|
|
5594 int type;
|
|
5595 int len;
|
|
5596
|
|
5597 init_history();
|
|
5598 viminfo_add_at_front = (asklen != 0);
|
|
5599 if (asklen > hislen)
|
|
5600 asklen = hislen;
|
|
5601
|
|
5602 for (type = 0; type < HIST_COUNT; ++type)
|
|
5603 {
|
|
5604 /*
|
|
5605 * Count the number of empty spaces in the history list. If there are
|
|
5606 * more spaces available than we request, then fill them up.
|
|
5607 */
|
|
5608 for (i = 0, num = 0; i < hislen; i++)
|
|
5609 if (history[type][i].hisstr == NULL)
|
|
5610 num++;
|
|
5611 len = asklen;
|
|
5612 if (num > len)
|
|
5613 len = num;
|
|
5614 if (len <= 0)
|
|
5615 viminfo_history[type] = NULL;
|
|
5616 else
|
|
5617 viminfo_history[type] =
|
|
5618 (char_u **)lalloc((long_u)(len * sizeof(char_u *)), FALSE);
|
|
5619 if (viminfo_history[type] == NULL)
|
|
5620 len = 0;
|
|
5621 viminfo_hislen[type] = len;
|
|
5622 viminfo_hisidx[type] = 0;
|
|
5623 }
|
|
5624 }
|
|
5625
|
|
5626 /*
|
|
5627 * Accept a line from the viminfo, store it in the history array when it's
|
|
5628 * new.
|
|
5629 */
|
|
5630 int
|
|
5631 read_viminfo_history(virp)
|
|
5632 vir_T *virp;
|
|
5633 {
|
|
5634 int type;
|
|
5635 long_u len;
|
|
5636 char_u *val;
|
|
5637 char_u *p;
|
|
5638
|
|
5639 type = hist_char2type(virp->vir_line[0]);
|
|
5640 if (viminfo_hisidx[type] < viminfo_hislen[type])
|
|
5641 {
|
|
5642 val = viminfo_readstring(virp, 1, TRUE);
|
|
5643 if (val != NULL && *val != NUL)
|
|
5644 {
|
|
5645 if (!in_history(type, val + (type == HIST_SEARCH),
|
|
5646 viminfo_add_at_front))
|
|
5647 {
|
|
5648 /* Need to re-allocate to append the separator byte. */
|
|
5649 len = STRLEN(val);
|
|
5650 p = lalloc(len + 2, TRUE);
|
|
5651 if (p != NULL)
|
|
5652 {
|
|
5653 if (type == HIST_SEARCH)
|
|
5654 {
|
|
5655 /* Search entry: Move the separator from the first
|
|
5656 * column to after the NUL. */
|
|
5657 mch_memmove(p, val + 1, (size_t)len);
|
|
5658 p[len] = (*val == ' ' ? NUL : *val);
|
|
5659 }
|
|
5660 else
|
|
5661 {
|
|
5662 /* Not a search entry: No separator in the viminfo
|
|
5663 * file, add a NUL separator. */
|
|
5664 mch_memmove(p, val, (size_t)len + 1);
|
|
5665 p[len + 1] = NUL;
|
|
5666 }
|
|
5667 viminfo_history[type][viminfo_hisidx[type]++] = p;
|
|
5668 }
|
|
5669 }
|
|
5670 }
|
|
5671 vim_free(val);
|
|
5672 }
|
|
5673 return viminfo_readline(virp);
|
|
5674 }
|
|
5675
|
|
5676 void
|
|
5677 finish_viminfo_history()
|
|
5678 {
|
|
5679 int idx;
|
|
5680 int i;
|
|
5681 int type;
|
|
5682
|
|
5683 for (type = 0; type < HIST_COUNT; ++type)
|
|
5684 {
|
|
5685 if (history[type] == NULL)
|
|
5686 return;
|
|
5687 idx = hisidx[type] + viminfo_hisidx[type];
|
|
5688 if (idx >= hislen)
|
|
5689 idx -= hislen;
|
|
5690 else if (idx < 0)
|
|
5691 idx = hislen - 1;
|
|
5692 if (viminfo_add_at_front)
|
|
5693 hisidx[type] = idx;
|
|
5694 else
|
|
5695 {
|
|
5696 if (hisidx[type] == -1)
|
|
5697 hisidx[type] = hislen - 1;
|
|
5698 do
|
|
5699 {
|
|
5700 if (history[type][idx].hisstr != NULL)
|
|
5701 break;
|
|
5702 if (++idx == hislen)
|
|
5703 idx = 0;
|
|
5704 } while (idx != hisidx[type]);
|
|
5705 if (idx != hisidx[type] && --idx < 0)
|
|
5706 idx = hislen - 1;
|
|
5707 }
|
|
5708 for (i = 0; i < viminfo_hisidx[type]; i++)
|
|
5709 {
|
|
5710 vim_free(history[type][idx].hisstr);
|
|
5711 history[type][idx].hisstr = viminfo_history[type][i];
|
|
5712 if (--idx < 0)
|
|
5713 idx = hislen - 1;
|
|
5714 }
|
|
5715 idx += 1;
|
|
5716 idx %= hislen;
|
|
5717 for (i = 0; i < viminfo_hisidx[type]; i++)
|
|
5718 {
|
|
5719 history[type][idx++].hisnum = ++hisnum[type];
|
|
5720 idx %= hislen;
|
|
5721 }
|
|
5722 vim_free(viminfo_history[type]);
|
|
5723 viminfo_history[type] = NULL;
|
|
5724 }
|
|
5725 }
|
|
5726
|
|
5727 void
|
|
5728 write_viminfo_history(fp)
|
|
5729 FILE *fp;
|
|
5730 {
|
|
5731 int i;
|
|
5732 int type;
|
|
5733 int num_saved;
|
|
5734 char_u *p;
|
|
5735 int c;
|
|
5736
|
|
5737 init_history();
|
|
5738 if (hislen == 0)
|
|
5739 return;
|
|
5740 for (type = 0; type < HIST_COUNT; ++type)
|
|
5741 {
|
|
5742 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE));
|
|
5743 if (num_saved == 0)
|
|
5744 continue;
|
|
5745 if (num_saved < 0) /* Use default */
|
|
5746 num_saved = hislen;
|
|
5747 fprintf(fp, _("\n# %s History (newest to oldest):\n"),
|
|
5748 type == HIST_CMD ? _("Command Line") :
|
|
5749 type == HIST_SEARCH ? _("Search String") :
|
|
5750 type == HIST_EXPR ? _("Expression") :
|
|
5751 _("Input Line"));
|
|
5752 if (num_saved > hislen)
|
|
5753 num_saved = hislen;
|
|
5754 i = hisidx[type];
|
|
5755 if (i >= 0)
|
|
5756 while (num_saved--)
|
|
5757 {
|
|
5758 p = history[type][i].hisstr;
|
|
5759 if (p != NULL)
|
|
5760 {
|
301
|
5761 fputc(hist_type2char(type, TRUE), fp);
|
7
|
5762 /* For the search history: put the separator in the second
|
|
5763 * column; use a space if there isn't one. */
|
|
5764 if (type == HIST_SEARCH)
|
|
5765 {
|
|
5766 c = p[STRLEN(p) + 1];
|
|
5767 putc(c == NUL ? ' ' : c, fp);
|
|
5768 }
|
|
5769 viminfo_writestring(fp, p);
|
|
5770 }
|
|
5771 if (--i < 0)
|
|
5772 i = hislen - 1;
|
|
5773 }
|
|
5774 }
|
|
5775 }
|
|
5776 #endif /* FEAT_VIMINFO */
|
|
5777
|
|
5778 #if defined(FEAT_FKMAP) || defined(PROTO)
|
|
5779 /*
|
|
5780 * Write a character at the current cursor+offset position.
|
|
5781 * It is directly written into the command buffer block.
|
|
5782 */
|
|
5783 void
|
|
5784 cmd_pchar(c, offset)
|
|
5785 int c, offset;
|
|
5786 {
|
|
5787 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
|
|
5788 {
|
|
5789 EMSG(_("E198: cmd_pchar beyond the command length"));
|
|
5790 return;
|
|
5791 }
|
|
5792 ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c;
|
|
5793 ccline.cmdbuff[ccline.cmdlen] = NUL;
|
|
5794 }
|
|
5795
|
|
5796 int
|
|
5797 cmd_gchar(offset)
|
|
5798 int offset;
|
|
5799 {
|
|
5800 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0)
|
|
5801 {
|
|
5802 /* EMSG(_("cmd_gchar beyond the command length")); */
|
|
5803 return NUL;
|
|
5804 }
|
|
5805 return (int)ccline.cmdbuff[ccline.cmdpos + offset];
|
|
5806 }
|
|
5807 #endif
|
|
5808
|
|
5809 #if defined(FEAT_CMDWIN) || defined(PROTO)
|
|
5810 /*
|
|
5811 * Open a window on the current command line and history. Allow editing in
|
|
5812 * the window. Returns when the window is closed.
|
|
5813 * Returns:
|
|
5814 * CR if the command is to be executed
|
|
5815 * Ctrl_C if it is to be abandoned
|
|
5816 * K_IGNORE if editing continues
|
|
5817 */
|
|
5818 static int
|
|
5819 ex_window()
|
|
5820 {
|
|
5821 struct cmdline_info save_ccline;
|
|
5822 buf_T *old_curbuf = curbuf;
|
|
5823 win_T *old_curwin = curwin;
|
|
5824 buf_T *bp;
|
|
5825 win_T *wp;
|
|
5826 int i;
|
|
5827 linenr_T lnum;
|
|
5828 int histtype;
|
|
5829 garray_T winsizes;
|
|
5830 char_u typestr[2];
|
|
5831 int save_restart_edit = restart_edit;
|
|
5832 int save_State = State;
|
|
5833 int save_exmode = exmode_active;
|
510
|
5834 #ifdef FEAT_RIGHTLEFT
|
|
5835 int save_cmdmsg_rl = cmdmsg_rl;
|
|
5836 #endif
|
7
|
5837
|
|
5838 /* Can't do this recursively. Can't do it when typing a password. */
|
|
5839 if (cmdwin_type != 0
|
|
5840 # if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
|
|
5841 || cmdline_star > 0
|
|
5842 # endif
|
|
5843 )
|
|
5844 {
|
|
5845 beep_flush();
|
|
5846 return K_IGNORE;
|
|
5847 }
|
|
5848
|
|
5849 /* Save current window sizes. */
|
|
5850 win_size_save(&winsizes);
|
|
5851
|
|
5852 # ifdef FEAT_AUTOCMD
|
|
5853 /* Don't execute autocommands while creating the window. */
|
|
5854 ++autocmd_block;
|
|
5855 # endif
|
683
|
5856 /* don't use a new tab page */
|
|
5857 cmdmod.tab = 0;
|
|
5858
|
7
|
5859 /* Create a window for the command-line buffer. */
|
|
5860 if (win_split((int)p_cwh, WSP_BOT) == FAIL)
|
|
5861 {
|
|
5862 beep_flush();
|
|
5863 return K_IGNORE;
|
|
5864 }
|
|
5865 cmdwin_type = ccline.cmdfirstc;
|
|
5866 if (cmdwin_type == NUL)
|
|
5867 cmdwin_type = '-';
|
|
5868
|
|
5869 /* Create the command-line buffer empty. */
|
|
5870 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE);
|
|
5871 (void)setfname(curbuf, (char_u *)"command-line", NULL, TRUE);
|
|
5872 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL);
|
|
5873 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
|
|
5874 curbuf->b_p_ma = TRUE;
|
|
5875 # ifdef FEAT_RIGHTLEFT
|
510
|
5876 curwin->w_p_rl = cmdmsg_rl;
|
|
5877 cmdmsg_rl = FALSE;
|
7
|
5878 # endif
|
|
5879 # ifdef FEAT_SCROLLBIND
|
|
5880 curwin->w_p_scb = FALSE;
|
|
5881 # endif
|
|
5882
|
|
5883 # ifdef FEAT_AUTOCMD
|
|
5884 /* Do execute autocommands for setting the filetype (load syntax). */
|
|
5885 --autocmd_block;
|
|
5886 # endif
|
|
5887
|
510
|
5888 /* Showing the prompt may have set need_wait_return, reset it. */
|
|
5889 need_wait_return = FALSE;
|
|
5890
|
7
|
5891 histtype = hist_char2type(ccline.cmdfirstc);
|
|
5892 if (histtype == HIST_CMD || histtype == HIST_DEBUG)
|
|
5893 {
|
|
5894 if (p_wc == TAB)
|
|
5895 {
|
|
5896 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT);
|
|
5897 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL);
|
|
5898 }
|
|
5899 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL);
|
|
5900 }
|
|
5901
|
10
|
5902 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin
|
|
5903 * sets 'textwidth' to 78). */
|
|
5904 curbuf->b_p_tw = 0;
|
|
5905
|
7
|
5906 /* Fill the buffer with the history. */
|
|
5907 init_history();
|
|
5908 if (hislen > 0)
|
|
5909 {
|
|
5910 i = hisidx[histtype];
|
|
5911 if (i >= 0)
|
|
5912 {
|
|
5913 lnum = 0;
|
|
5914 do
|
|
5915 {
|
|
5916 if (++i == hislen)
|
|
5917 i = 0;
|
|
5918 if (history[histtype][i].hisstr != NULL)
|
|
5919 ml_append(lnum++, history[histtype][i].hisstr,
|
|
5920 (colnr_T)0, FALSE);
|
|
5921 }
|
|
5922 while (i != hisidx[histtype]);
|
|
5923 }
|
|
5924 }
|
|
5925
|
|
5926 /* Replace the empty last line with the current command-line and put the
|
|
5927 * cursor there. */
|
|
5928 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE);
|
|
5929 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
|
|
5930 curwin->w_cursor.col = ccline.cmdpos;
|
510
|
5931 changed_line_abv_curs();
|
|
5932 invalidate_botline();
|
743
|
5933 redraw_later(SOME_VALID);
|
7
|
5934
|
|
5935 /* Save the command line info, can be used recursively. */
|
|
5936 save_ccline = ccline;
|
|
5937 ccline.cmdbuff = NULL;
|
|
5938 ccline.cmdprompt = NULL;
|
|
5939
|
|
5940 /* No Ex mode here! */
|
|
5941 exmode_active = 0;
|
|
5942
|
|
5943 State = NORMAL;
|
|
5944 # ifdef FEAT_MOUSE
|
|
5945 setmouse();
|
|
5946 # endif
|
|
5947
|
|
5948 # ifdef FEAT_AUTOCMD
|
|
5949 /* Trigger CmdwinEnter autocommands. */
|
|
5950 typestr[0] = cmdwin_type;
|
|
5951 typestr[1] = NUL;
|
|
5952 apply_autocmds(EVENT_CMDWINENTER, typestr, typestr, FALSE, curbuf);
|
|
5953 # endif
|
|
5954
|
|
5955 i = RedrawingDisabled;
|
|
5956 RedrawingDisabled = 0;
|
|
5957
|
|
5958 /*
|
|
5959 * Call the main loop until <CR> or CTRL-C is typed.
|
|
5960 */
|
|
5961 cmdwin_result = 0;
|
168
|
5962 main_loop(TRUE, FALSE);
|
7
|
5963
|
|
5964 RedrawingDisabled = i;
|
|
5965
|
|
5966 # ifdef FEAT_AUTOCMD
|
|
5967 /* Trigger CmdwinLeave autocommands. */
|
|
5968 apply_autocmds(EVENT_CMDWINLEAVE, typestr, typestr, FALSE, curbuf);
|
|
5969 # endif
|
|
5970
|
|
5971 /* Restore the comand line info. */
|
|
5972 ccline = save_ccline;
|
|
5973 cmdwin_type = 0;
|
|
5974
|
|
5975 exmode_active = save_exmode;
|
|
5976
|
|
5977 /* Safety check: The old window or buffer was deleted: It's a a bug when
|
|
5978 * this happens! */
|
|
5979 if (!win_valid(old_curwin) || !buf_valid(old_curbuf))
|
|
5980 {
|
|
5981 cmdwin_result = Ctrl_C;
|
|
5982 EMSG(_("E199: Active window or buffer deleted"));
|
|
5983 }
|
|
5984 else
|
|
5985 {
|
|
5986 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
|
|
5987 /* autocmds may abort script processing */
|
|
5988 if (aborting() && cmdwin_result != K_IGNORE)
|
|
5989 cmdwin_result = Ctrl_C;
|
|
5990 # endif
|
|
5991 /* Set the new command line from the cmdline buffer. */
|
|
5992 vim_free(ccline.cmdbuff);
|
510
|
5993 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */
|
7
|
5994 {
|
510
|
5995 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!";
|
|
5996
|
|
5997 if (histtype == HIST_CMD)
|
|
5998 {
|
|
5999 /* Execute the command directly. */
|
|
6000 ccline.cmdbuff = vim_strsave((char_u *)p);
|
|
6001 cmdwin_result = CAR;
|
|
6002 }
|
|
6003 else
|
|
6004 {
|
|
6005 /* First need to cancel what we were doing. */
|
|
6006 ccline.cmdbuff = NULL;
|
|
6007 stuffcharReadbuff(':');
|
|
6008 stuffReadbuff((char_u *)p);
|
|
6009 stuffcharReadbuff(CAR);
|
|
6010 }
|
7
|
6011 }
|
|
6012 else if (cmdwin_result == K_XF2) /* :qa typed */
|
|
6013 {
|
|
6014 ccline.cmdbuff = vim_strsave((char_u *)"qa");
|
|
6015 cmdwin_result = CAR;
|
|
6016 }
|
|
6017 else
|
|
6018 ccline.cmdbuff = vim_strsave(ml_get_curline());
|
|
6019 if (ccline.cmdbuff == NULL)
|
|
6020 cmdwin_result = Ctrl_C;
|
|
6021 else
|
|
6022 {
|
|
6023 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
|
|
6024 ccline.cmdbufflen = ccline.cmdlen + 1;
|
|
6025 ccline.cmdpos = curwin->w_cursor.col;
|
|
6026 if (ccline.cmdpos > ccline.cmdlen)
|
|
6027 ccline.cmdpos = ccline.cmdlen;
|
|
6028 if (cmdwin_result == K_IGNORE)
|
|
6029 {
|
|
6030 set_cmdspos_cursor();
|
|
6031 redrawcmd();
|
|
6032 }
|
|
6033 }
|
|
6034
|
|
6035 # ifdef FEAT_AUTOCMD
|
|
6036 /* Don't execute autocommands while deleting the window. */
|
|
6037 ++autocmd_block;
|
|
6038 # endif
|
|
6039 wp = curwin;
|
|
6040 bp = curbuf;
|
|
6041 win_goto(old_curwin);
|
|
6042 win_close(wp, TRUE);
|
|
6043 close_buffer(NULL, bp, DOBUF_WIPE);
|
|
6044
|
|
6045 /* Restore window sizes. */
|
|
6046 win_size_restore(&winsizes);
|
|
6047
|
|
6048 # ifdef FEAT_AUTOCMD
|
|
6049 --autocmd_block;
|
|
6050 # endif
|
|
6051 }
|
|
6052
|
|
6053 ga_clear(&winsizes);
|
|
6054 restart_edit = save_restart_edit;
|
510
|
6055 # ifdef FEAT_RIGHTLEFT
|
|
6056 cmdmsg_rl = save_cmdmsg_rl;
|
|
6057 # endif
|
7
|
6058
|
|
6059 State = save_State;
|
|
6060 # ifdef FEAT_MOUSE
|
|
6061 setmouse();
|
|
6062 # endif
|
|
6063
|
|
6064 return cmdwin_result;
|
|
6065 }
|
|
6066 #endif /* FEAT_CMDWIN */
|
|
6067
|
|
6068 /*
|
|
6069 * Used for commands that either take a simple command string argument, or:
|
|
6070 * cmd << endmarker
|
|
6071 * {script}
|
|
6072 * endmarker
|
|
6073 * Returns a pointer to allocated memory with {script} or NULL.
|
|
6074 */
|
|
6075 char_u *
|
|
6076 script_get(eap, cmd)
|
|
6077 exarg_T *eap;
|
|
6078 char_u *cmd;
|
|
6079 {
|
|
6080 char_u *theline;
|
|
6081 char *end_pattern = NULL;
|
|
6082 char dot[] = ".";
|
|
6083 garray_T ga;
|
|
6084
|
|
6085 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL)
|
|
6086 return NULL;
|
|
6087
|
|
6088 ga_init2(&ga, 1, 0x400);
|
|
6089
|
|
6090 if (cmd[2] != NUL)
|
|
6091 end_pattern = (char *)skipwhite(cmd + 2);
|
|
6092 else
|
|
6093 end_pattern = dot;
|
|
6094
|
|
6095 for (;;)
|
|
6096 {
|
|
6097 theline = eap->getline(
|
|
6098 #ifdef FEAT_EVAL
|
75
|
6099 eap->cstack->cs_looplevel > 0 ? -1 :
|
7
|
6100 #endif
|
|
6101 NUL, eap->cookie, 0);
|
|
6102
|
|
6103 if (theline == NULL || STRCMP(end_pattern, theline) == 0)
|
|
6104 break;
|
|
6105
|
|
6106 ga_concat(&ga, theline);
|
|
6107 ga_append(&ga, '\n');
|
|
6108 vim_free(theline);
|
|
6109 }
|
21
|
6110 ga_append(&ga, NUL);
|
7
|
6111
|
|
6112 return (char_u *)ga.ga_data;
|
|
6113 }
|