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