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