Mercurial > vim
annotate src/getchar.c @ 5473:60a5b7b82016 v7.4.086
updated for version 7.4.086
Problem: Skipping over an expression when not evaluating it does not work
properly for dict members.
Solution: Skip over unrecognized expression. (ZyX)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Mon, 11 Nov 2013 04:25:53 +0100 |
parents | 1cf89d38aa76 |
children | beb037a6c270 |
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 * getchar.c | |
12 * | |
13 * functions related with getting a character from the user/mapping/redo/... | |
14 * | |
15 * manipulations with redo buffer and stuff buffer | |
16 * mappings and abbreviations | |
17 */ | |
18 | |
19 #include "vim.h" | |
20 | |
21 /* | |
22 * These buffers are used for storing: | |
23 * - stuffed characters: A command that is translated into another command. | |
24 * - redo characters: will redo the last change. | |
1992 | 25 * - recorded characters: for the "q" command. |
7 | 26 * |
27 * The bytes are stored like in the typeahead buffer: | |
28 * - K_SPECIAL introduces a special key (two more bytes follow). A literal | |
29 * K_SPECIAL is stored as K_SPECIAL KS_SPECIAL KE_FILLER. | |
30 * - CSI introduces a GUI termcap code (also when gui.in_use is FALSE, | |
31 * otherwise switching the GUI on would make mappings invalid). | |
32 * A literal CSI is stored as CSI KS_EXTRA KE_CSI. | |
33 * These translations are also done on multi-byte characters! | |
34 * | |
35 * Escaping CSI bytes is done by the system-specific input functions, called | |
36 * by ui_inchar(). | |
37 * Escaping K_SPECIAL is done by inchar(). | |
38 * Un-escaping is done by vgetc(). | |
39 */ | |
40 | |
41 #define MINIMAL_SIZE 20 /* minimal size for b_str */ | |
42 | |
43 static struct buffheader redobuff = {{NULL, {NUL}}, NULL, 0, 0}; | |
44 static struct buffheader old_redobuff = {{NULL, {NUL}}, NULL, 0, 0}; | |
45 #if defined(FEAT_AUTOCMD) || defined(FEAT_EVAL) || defined(PROTO) | |
46 static struct buffheader save_redobuff = {{NULL, {NUL}}, NULL, 0, 0}; | |
47 static struct buffheader save_old_redobuff = {{NULL, {NUL}}, NULL, 0, 0}; | |
48 #endif | |
49 static struct buffheader recordbuff = {{NULL, {NUL}}, NULL, 0, 0}; | |
50 | |
51 static int typeahead_char = 0; /* typeahead char that's not flushed */ | |
52 | |
53 /* | |
54 * when block_redo is TRUE redo buffer will not be changed | |
55 * used by edit() to repeat insertions and 'V' command for redoing | |
56 */ | |
57 static int block_redo = FALSE; | |
58 | |
59 /* | |
60 * Make a hash value for a mapping. | |
61 * "mode" is the lower 4 bits of the State for the mapping. | |
62 * "c1" is the first character of the "lhs". | |
63 * Returns a value between 0 and 255, index in maphash. | |
64 * Put Normal/Visual mode mappings mostly separately from Insert/Cmdline mode. | |
65 */ | |
788 | 66 #define MAP_HASH(mode, c1) (((mode) & (NORMAL + VISUAL + SELECTMODE + OP_PENDING)) ? (c1) : ((c1) ^ 0x80)) |
7 | 67 |
68 /* | |
69 * Each mapping is put in one of the 256 hash lists, to speed up finding it. | |
70 */ | |
71 static mapblock_T *(maphash[256]); | |
72 static int maphash_valid = FALSE; | |
73 | |
74 /* | |
75 * List used for abbreviations. | |
76 */ | |
77 static mapblock_T *first_abbr = NULL; /* first entry in abbrlist */ | |
78 | |
1051 | 79 static int KeyNoremap = 0; /* remapping flags */ |
7 | 80 |
81 /* | |
82 * variables used by vgetorpeek() and flush_buffers() | |
83 * | |
84 * typebuf.tb_buf[] contains all characters that are not consumed yet. | |
85 * typebuf.tb_buf[typebuf.tb_off] is the first valid character. | |
86 * typebuf.tb_buf[typebuf.tb_off + typebuf.tb_len - 1] is the last valid char. | |
87 * typebuf.tb_buf[typebuf.tb_off + typebuf.tb_len] must be NUL. | |
88 * The head of the buffer may contain the result of mappings, abbreviations | |
89 * and @a commands. The length of this part is typebuf.tb_maplen. | |
90 * typebuf.tb_silent is the part where <silent> applies. | |
91 * After the head are characters that come from the terminal. | |
92 * typebuf.tb_no_abbr_cnt is the number of characters in typebuf.tb_buf that | |
93 * should not be considered for abbreviations. | |
94 * Some parts of typebuf.tb_buf may not be mapped. These parts are remembered | |
95 * in typebuf.tb_noremap[], which is the same length as typebuf.tb_buf and | |
96 * contains RM_NONE for the characters that are not to be remapped. | |
97 * typebuf.tb_noremap[typebuf.tb_off] is the first valid flag. | |
98 * (typebuf has been put in globals.h, because check_termcode() needs it). | |
99 */ | |
100 #define RM_YES 0 /* tb_noremap: remap */ | |
101 #define RM_NONE 1 /* tb_noremap: don't remap */ | |
102 #define RM_SCRIPT 2 /* tb_noremap: remap local script mappings */ | |
10 | 103 #define RM_ABBR 4 /* tb_noremap: don't remap, do abbrev. */ |
7 | 104 |
105 /* typebuf.tb_buf has three parts: room in front (for result of mappings), the | |
106 * middle for typeahead and room for new characters (which needs to be 3 * | |
107 * MAXMAPLEN) for the Amiga). | |
108 */ | |
109 #define TYPELEN_INIT (5 * (MAXMAPLEN + 3)) | |
110 static char_u typebuf_init[TYPELEN_INIT]; /* initial typebuf.tb_buf */ | |
111 static char_u noremapbuf_init[TYPELEN_INIT]; /* initial typebuf.tb_noremap */ | |
112 | |
113 static int last_recorded_len = 0; /* number of last recorded chars */ | |
114 | |
115 static char_u *get_buffcont __ARGS((struct buffheader *, int)); | |
116 static void add_buff __ARGS((struct buffheader *, char_u *, long n)); | |
117 static void add_num_buff __ARGS((struct buffheader *, long)); | |
118 static void add_char_buff __ARGS((struct buffheader *, int)); | |
119 static int read_stuff __ARGS((int advance)); | |
120 static void start_stuff __ARGS((void)); | |
121 static int read_redo __ARGS((int, int)); | |
122 static void copy_redo __ARGS((int)); | |
123 static void init_typebuf __ARGS((void)); | |
124 static void gotchars __ARGS((char_u *, int)); | |
125 static void may_sync_undo __ARGS((void)); | |
126 static void closescript __ARGS((void)); | |
127 static int vgetorpeek __ARGS((int)); | |
128 static void map_free __ARGS((mapblock_T **)); | |
129 static void validate_maphash __ARGS((void)); | |
130 static void showmap __ARGS((mapblock_T *mp, int local)); | |
836 | 131 #ifdef FEAT_EVAL |
1969 | 132 static char_u *eval_map_expr __ARGS((char_u *str, int c)); |
836 | 133 #endif |
7 | 134 |
135 /* | |
136 * Free and clear a buffer. | |
137 */ | |
138 void | |
139 free_buff(buf) | |
140 struct buffheader *buf; | |
141 { | |
142 struct buffblock *p, *np; | |
143 | |
144 for (p = buf->bh_first.b_next; p != NULL; p = np) | |
145 { | |
146 np = p->b_next; | |
147 vim_free(p); | |
148 } | |
149 buf->bh_first.b_next = NULL; | |
150 } | |
151 | |
152 /* | |
153 * Return the contents of a buffer as a single string. | |
154 * K_SPECIAL and CSI in the returned string are escaped. | |
155 */ | |
156 static char_u * | |
157 get_buffcont(buffer, dozero) | |
158 struct buffheader *buffer; | |
159 int dozero; /* count == zero is not an error */ | |
160 { | |
161 long_u count = 0; | |
162 char_u *p = NULL; | |
163 char_u *p2; | |
164 char_u *str; | |
165 struct buffblock *bp; | |
166 | |
167 /* compute the total length of the string */ | |
168 for (bp = buffer->bh_first.b_next; bp != NULL; bp = bp->b_next) | |
169 count += (long_u)STRLEN(bp->b_str); | |
170 | |
171 if ((count || dozero) && (p = lalloc(count + 1, TRUE)) != NULL) | |
172 { | |
173 p2 = p; | |
174 for (bp = buffer->bh_first.b_next; bp != NULL; bp = bp->b_next) | |
175 for (str = bp->b_str; *str; ) | |
176 *p2++ = *str++; | |
177 *p2 = NUL; | |
178 } | |
179 return (p); | |
180 } | |
181 | |
182 /* | |
183 * Return the contents of the record buffer as a single string | |
184 * and clear the record buffer. | |
185 * K_SPECIAL and CSI in the returned string are escaped. | |
186 */ | |
187 char_u * | |
188 get_recorded() | |
189 { | |
190 char_u *p; | |
191 size_t len; | |
192 | |
193 p = get_buffcont(&recordbuff, TRUE); | |
194 free_buff(&recordbuff); | |
195 | |
196 /* | |
197 * Remove the characters that were added the last time, these must be the | |
198 * (possibly mapped) characters that stopped the recording. | |
199 */ | |
200 len = STRLEN(p); | |
201 if ((int)len >= last_recorded_len) | |
202 { | |
203 len -= last_recorded_len; | |
204 p[len] = NUL; | |
205 } | |
206 | |
207 /* | |
208 * When stopping recording from Insert mode with CTRL-O q, also remove the | |
209 * CTRL-O. | |
210 */ | |
211 if (len > 0 && restart_edit != 0 && p[len - 1] == Ctrl_O) | |
212 p[len - 1] = NUL; | |
213 | |
214 return (p); | |
215 } | |
216 | |
217 /* | |
218 * Return the contents of the redo buffer as a single string. | |
219 * K_SPECIAL and CSI in the returned string are escaped. | |
220 */ | |
221 char_u * | |
222 get_inserted() | |
223 { | |
1618 | 224 return get_buffcont(&redobuff, FALSE); |
7 | 225 } |
226 | |
227 /* | |
1130 | 228 * Add string "s" after the current block of buffer "buf". |
7 | 229 * K_SPECIAL and CSI should have been escaped already. |
230 */ | |
231 static void | |
232 add_buff(buf, s, slen) | |
233 struct buffheader *buf; | |
234 char_u *s; | |
235 long slen; /* length of "s" or -1 */ | |
236 { | |
237 struct buffblock *p; | |
238 long_u len; | |
239 | |
240 if (slen < 0) | |
241 slen = (long)STRLEN(s); | |
242 if (slen == 0) /* don't add empty strings */ | |
243 return; | |
244 | |
245 if (buf->bh_first.b_next == NULL) /* first add to list */ | |
246 { | |
247 buf->bh_space = 0; | |
248 buf->bh_curr = &(buf->bh_first); | |
249 } | |
250 else if (buf->bh_curr == NULL) /* buffer has already been read */ | |
251 { | |
252 EMSG(_("E222: Add to read buffer")); | |
253 return; | |
254 } | |
255 else if (buf->bh_index != 0) | |
1455 | 256 mch_memmove(buf->bh_first.b_next->b_str, |
257 buf->bh_first.b_next->b_str + buf->bh_index, | |
258 STRLEN(buf->bh_first.b_next->b_str + buf->bh_index) + 1); | |
7 | 259 buf->bh_index = 0; |
260 | |
261 if (buf->bh_space >= (int)slen) | |
262 { | |
263 len = (long_u)STRLEN(buf->bh_curr->b_str); | |
416 | 264 vim_strncpy(buf->bh_curr->b_str + len, s, (size_t)slen); |
7 | 265 buf->bh_space -= slen; |
266 } | |
267 else | |
268 { | |
269 if (slen < MINIMAL_SIZE) | |
270 len = MINIMAL_SIZE; | |
271 else | |
272 len = slen; | |
273 p = (struct buffblock *)lalloc((long_u)(sizeof(struct buffblock) + len), | |
274 TRUE); | |
275 if (p == NULL) | |
276 return; /* no space, just forget it */ | |
835 | 277 buf->bh_space = (int)(len - slen); |
416 | 278 vim_strncpy(p->b_str, s, (size_t)slen); |
7 | 279 |
280 p->b_next = buf->bh_curr->b_next; | |
281 buf->bh_curr->b_next = p; | |
282 buf->bh_curr = p; | |
283 } | |
284 return; | |
285 } | |
286 | |
287 /* | |
288 * Add number "n" to buffer "buf". | |
289 */ | |
290 static void | |
291 add_num_buff(buf, n) | |
292 struct buffheader *buf; | |
293 long n; | |
294 { | |
295 char_u number[32]; | |
296 | |
297 sprintf((char *)number, "%ld", n); | |
298 add_buff(buf, number, -1L); | |
299 } | |
300 | |
301 /* | |
302 * Add character 'c' to buffer "buf". | |
303 * Translates special keys, NUL, CSI, K_SPECIAL and multibyte characters. | |
304 */ | |
305 static void | |
306 add_char_buff(buf, c) | |
307 struct buffheader *buf; | |
308 int c; | |
309 { | |
310 #ifdef FEAT_MBYTE | |
311 char_u bytes[MB_MAXBYTES + 1]; | |
312 int len; | |
313 int i; | |
314 #endif | |
315 char_u temp[4]; | |
316 | |
317 #ifdef FEAT_MBYTE | |
318 if (IS_SPECIAL(c)) | |
319 len = 1; | |
320 else | |
321 len = (*mb_char2bytes)(c, bytes); | |
322 for (i = 0; i < len; ++i) | |
323 { | |
324 if (!IS_SPECIAL(c)) | |
325 c = bytes[i]; | |
326 #endif | |
327 | |
328 if (IS_SPECIAL(c) || c == K_SPECIAL || c == NUL) | |
329 { | |
330 /* translate special key code into three byte sequence */ | |
331 temp[0] = K_SPECIAL; | |
332 temp[1] = K_SECOND(c); | |
333 temp[2] = K_THIRD(c); | |
334 temp[3] = NUL; | |
335 } | |
336 #ifdef FEAT_GUI | |
337 else if (c == CSI) | |
338 { | |
339 /* Translate a CSI to a CSI - KS_EXTRA - KE_CSI sequence */ | |
340 temp[0] = CSI; | |
341 temp[1] = KS_EXTRA; | |
342 temp[2] = (int)KE_CSI; | |
343 temp[3] = NUL; | |
344 } | |
345 #endif | |
346 else | |
347 { | |
348 temp[0] = c; | |
349 temp[1] = NUL; | |
350 } | |
351 add_buff(buf, temp, -1L); | |
352 #ifdef FEAT_MBYTE | |
353 } | |
354 #endif | |
355 } | |
356 | |
357 /* | |
358 * Get one byte from the stuff buffer. | |
359 * If advance == TRUE go to the next char. | |
360 * No translation is done K_SPECIAL and CSI are escaped. | |
361 */ | |
362 static int | |
363 read_stuff(advance) | |
364 int advance; | |
365 { | |
366 char_u c; | |
367 struct buffblock *curr; | |
368 | |
369 if (stuffbuff.bh_first.b_next == NULL) /* buffer is empty */ | |
370 return NUL; | |
371 | |
372 curr = stuffbuff.bh_first.b_next; | |
373 c = curr->b_str[stuffbuff.bh_index]; | |
374 | |
375 if (advance) | |
376 { | |
377 if (curr->b_str[++stuffbuff.bh_index] == NUL) | |
378 { | |
379 stuffbuff.bh_first.b_next = curr->b_next; | |
380 vim_free(curr); | |
381 stuffbuff.bh_index = 0; | |
382 } | |
383 } | |
384 return c; | |
385 } | |
386 | |
387 /* | |
388 * Prepare the stuff buffer for reading (if it contains something). | |
389 */ | |
390 static void | |
391 start_stuff() | |
392 { | |
393 if (stuffbuff.bh_first.b_next != NULL) | |
394 { | |
395 stuffbuff.bh_curr = &(stuffbuff.bh_first); | |
396 stuffbuff.bh_space = 0; | |
397 } | |
398 } | |
399 | |
400 /* | |
401 * Return TRUE if the stuff buffer is empty. | |
402 */ | |
403 int | |
404 stuff_empty() | |
405 { | |
406 return (stuffbuff.bh_first.b_next == NULL); | |
407 } | |
408 | |
409 /* | |
410 * Set a typeahead character that won't be flushed. | |
411 */ | |
412 void | |
413 typeahead_noflush(c) | |
414 int c; | |
415 { | |
416 typeahead_char = c; | |
417 } | |
418 | |
419 /* | |
420 * Remove the contents of the stuff buffer and the mapped characters in the | |
3263 | 421 * typeahead buffer (used in case of an error). If "flush_typeahead" is true, |
7 | 422 * flush all typeahead characters (used when interrupted by a CTRL-C). |
423 */ | |
424 void | |
3263 | 425 flush_buffers(flush_typeahead) |
426 int flush_typeahead; | |
7 | 427 { |
428 init_typebuf(); | |
429 | |
430 start_stuff(); | |
431 while (read_stuff(TRUE) != NUL) | |
432 ; | |
433 | |
3263 | 434 if (flush_typeahead) /* remove all typeahead */ |
7 | 435 { |
436 /* | |
437 * We have to get all characters, because we may delete the first part | |
438 * of an escape sequence. | |
439 * In an xterm we get one char at a time and we have to get them all. | |
440 */ | |
441 while (inchar(typebuf.tb_buf, typebuf.tb_buflen - 1, 10L, | |
442 typebuf.tb_change_cnt) != 0) | |
443 ; | |
444 typebuf.tb_off = MAXMAPLEN; | |
445 typebuf.tb_len = 0; | |
446 } | |
4303 | 447 else /* remove mapped characters at the start only */ |
7 | 448 { |
449 typebuf.tb_off += typebuf.tb_maplen; | |
450 typebuf.tb_len -= typebuf.tb_maplen; | |
451 } | |
452 typebuf.tb_maplen = 0; | |
453 typebuf.tb_silent = 0; | |
454 cmd_silent = FALSE; | |
455 typebuf.tb_no_abbr_cnt = 0; | |
456 } | |
457 | |
458 /* | |
459 * The previous contents of the redo buffer is kept in old_redobuffer. | |
460 * This is used for the CTRL-O <.> command in insert mode. | |
461 */ | |
462 void | |
463 ResetRedobuff() | |
464 { | |
465 if (!block_redo) | |
466 { | |
467 free_buff(&old_redobuff); | |
468 old_redobuff = redobuff; | |
469 redobuff.bh_first.b_next = NULL; | |
470 } | |
471 } | |
472 | |
3324 | 473 /* |
474 * Discard the contents of the redo buffer and restore the previous redo | |
475 * buffer. | |
476 */ | |
477 void | |
478 CancelRedo() | |
479 { | |
480 if (!block_redo) | |
481 { | |
482 free_buff(&redobuff); | |
483 redobuff = old_redobuff; | |
484 old_redobuff.bh_first.b_next = NULL; | |
485 start_stuff(); | |
486 while (read_stuff(TRUE) != NUL) | |
487 ; | |
488 } | |
489 } | |
490 | |
7 | 491 #if defined(FEAT_AUTOCMD) || defined(FEAT_EVAL) || defined(PROTO) |
492 /* | |
493 * Save redobuff and old_redobuff to save_redobuff and save_old_redobuff. | |
494 * Used before executing autocommands and user functions. | |
495 */ | |
496 static int save_level = 0; | |
497 | |
498 void | |
499 saveRedobuff() | |
500 { | |
501 char_u *s; | |
502 | |
503 if (save_level++ == 0) | |
504 { | |
505 save_redobuff = redobuff; | |
506 redobuff.bh_first.b_next = NULL; | |
507 save_old_redobuff = old_redobuff; | |
508 old_redobuff.bh_first.b_next = NULL; | |
509 | |
510 /* Make a copy, so that ":normal ." in a function works. */ | |
511 s = get_buffcont(&save_redobuff, FALSE); | |
512 if (s != NULL) | |
513 { | |
514 add_buff(&redobuff, s, -1L); | |
515 vim_free(s); | |
516 } | |
517 } | |
518 } | |
519 | |
520 /* | |
521 * Restore redobuff and old_redobuff from save_redobuff and save_old_redobuff. | |
522 * Used after executing autocommands and user functions. | |
523 */ | |
524 void | |
525 restoreRedobuff() | |
526 { | |
527 if (--save_level == 0) | |
528 { | |
529 free_buff(&redobuff); | |
530 redobuff = save_redobuff; | |
531 free_buff(&old_redobuff); | |
532 old_redobuff = save_old_redobuff; | |
533 } | |
534 } | |
535 #endif | |
536 | |
537 /* | |
538 * Append "s" to the redo buffer. | |
539 * K_SPECIAL and CSI should already have been escaped. | |
540 */ | |
541 void | |
542 AppendToRedobuff(s) | |
543 char_u *s; | |
544 { | |
545 if (!block_redo) | |
546 add_buff(&redobuff, s, -1L); | |
547 } | |
548 | |
549 /* | |
550 * Append to Redo buffer literally, escaping special characters with CTRL-V. | |
551 * K_SPECIAL and CSI are escaped as well. | |
552 */ | |
553 void | |
620 | 554 AppendToRedobuffLit(str, len) |
555 char_u *str; | |
556 int len; /* length of "str" or -1 for up to the NUL */ | |
7 | 557 { |
620 | 558 char_u *s = str; |
7 | 559 int c; |
560 char_u *start; | |
561 | |
562 if (block_redo) | |
563 return; | |
564 | |
620 | 565 while (len < 0 ? *s != NUL : s - str < len) |
7 | 566 { |
567 /* Put a string of normal characters in the redo buffer (that's | |
568 * faster). */ | |
569 start = s; | |
570 while (*s >= ' ' | |
571 #ifndef EBCDIC | |
572 && *s < DEL /* EBCDIC: all chars above space are normal */ | |
573 #endif | |
620 | 574 && (len < 0 || s - str < len)) |
7 | 575 ++s; |
576 | |
577 /* Don't put '0' or '^' as last character, just in case a CTRL-D is | |
578 * typed next. */ | |
579 if (*s == NUL && (s[-1] == '0' || s[-1] == '^')) | |
580 --s; | |
581 if (s > start) | |
582 add_buff(&redobuff, start, (long)(s - start)); | |
583 | |
620 | 584 if (*s == NUL || (len >= 0 && s - str >= len)) |
585 break; | |
586 | |
587 /* Handle a special or multibyte character. */ | |
7 | 588 #ifdef FEAT_MBYTE |
620 | 589 if (has_mbyte) |
590 /* Handle composing chars separately. */ | |
591 c = mb_cptr2char_adv(&s); | |
592 else | |
7 | 593 #endif |
620 | 594 c = *s++; |
595 if (c < ' ' || c == DEL || (*s == NUL && (c == '0' || c == '^'))) | |
596 add_char_buff(&redobuff, Ctrl_V); | |
597 | |
598 /* CTRL-V '0' must be inserted as CTRL-V 048 (EBCDIC: xf0) */ | |
599 if (*s == NUL && c == '0') | |
7 | 600 #ifdef EBCDIC |
620 | 601 add_buff(&redobuff, (char_u *)"xf0", 3L); |
7 | 602 #else |
620 | 603 add_buff(&redobuff, (char_u *)"048", 3L); |
7 | 604 #endif |
620 | 605 else |
606 add_char_buff(&redobuff, c); | |
7 | 607 } |
608 } | |
609 | |
610 /* | |
611 * Append a character to the redo buffer. | |
612 * Translates special keys, NUL, CSI, K_SPECIAL and multibyte characters. | |
613 */ | |
614 void | |
615 AppendCharToRedobuff(c) | |
616 int c; | |
617 { | |
618 if (!block_redo) | |
619 add_char_buff(&redobuff, c); | |
620 } | |
621 | |
622 /* | |
623 * Append a number to the redo buffer. | |
624 */ | |
625 void | |
626 AppendNumberToRedobuff(n) | |
627 long n; | |
628 { | |
629 if (!block_redo) | |
630 add_num_buff(&redobuff, n); | |
631 } | |
632 | |
633 /* | |
634 * Append string "s" to the stuff buffer. | |
635 * CSI and K_SPECIAL must already have been escaped. | |
636 */ | |
637 void | |
638 stuffReadbuff(s) | |
639 char_u *s; | |
640 { | |
641 add_buff(&stuffbuff, s, -1L); | |
642 } | |
643 | |
644 void | |
645 stuffReadbuffLen(s, len) | |
646 char_u *s; | |
647 long len; | |
648 { | |
649 add_buff(&stuffbuff, s, len); | |
650 } | |
651 | |
652 #if defined(FEAT_EVAL) || defined(PROTO) | |
653 /* | |
654 * Stuff "s" into the stuff buffer, leaving special key codes unmodified and | |
655 * escaping other K_SPECIAL and CSI bytes. | |
2784 | 656 * Change CR, LF and ESC into a space. |
7 | 657 */ |
658 void | |
659 stuffReadbuffSpec(s) | |
660 char_u *s; | |
661 { | |
2784 | 662 int c; |
663 | |
7 | 664 while (*s != NUL) |
665 { | |
666 if (*s == K_SPECIAL && s[1] != NUL && s[2] != NUL) | |
667 { | |
668 /* Insert special key literally. */ | |
669 stuffReadbuffLen(s, 3L); | |
670 s += 3; | |
671 } | |
672 else | |
2784 | 673 { |
7 | 674 #ifdef FEAT_MBYTE |
2784 | 675 c = mb_ptr2char_adv(&s); |
7 | 676 #else |
2784 | 677 c = *s++; |
7 | 678 #endif |
2784 | 679 if (c == CAR || c == NL || c == ESC) |
680 c = ' '; | |
681 stuffcharReadbuff(c); | |
682 } | |
7 | 683 } |
684 } | |
685 #endif | |
686 | |
687 /* | |
688 * Append a character to the stuff buffer. | |
689 * Translates special keys, NUL, CSI, K_SPECIAL and multibyte characters. | |
690 */ | |
691 void | |
692 stuffcharReadbuff(c) | |
693 int c; | |
694 { | |
695 add_char_buff(&stuffbuff, c); | |
696 } | |
697 | |
698 /* | |
699 * Append a number to the stuff buffer. | |
700 */ | |
701 void | |
702 stuffnumReadbuff(n) | |
703 long n; | |
704 { | |
705 add_num_buff(&stuffbuff, n); | |
706 } | |
707 | |
708 /* | |
709 * Read a character from the redo buffer. Translates K_SPECIAL, CSI and | |
710 * multibyte characters. | |
711 * The redo buffer is left as it is. | |
3324 | 712 * If init is TRUE, prepare for redo, return FAIL if nothing to redo, OK |
713 * otherwise. | |
714 * If old is TRUE, use old_redobuff instead of redobuff. | |
7 | 715 */ |
716 static int | |
717 read_redo(init, old_redo) | |
718 int init; | |
719 int old_redo; | |
720 { | |
721 static struct buffblock *bp; | |
722 static char_u *p; | |
723 int c; | |
724 #ifdef FEAT_MBYTE | |
725 int n; | |
3549 | 726 char_u buf[MB_MAXBYTES + 1]; |
7 | 727 int i; |
728 #endif | |
729 | |
730 if (init) | |
731 { | |
732 if (old_redo) | |
733 bp = old_redobuff.bh_first.b_next; | |
734 else | |
735 bp = redobuff.bh_first.b_next; | |
736 if (bp == NULL) | |
737 return FAIL; | |
738 p = bp->b_str; | |
739 return OK; | |
740 } | |
741 if ((c = *p) != NUL) | |
742 { | |
743 /* Reverse the conversion done by add_char_buff() */ | |
744 #ifdef FEAT_MBYTE | |
745 /* For a multi-byte character get all the bytes and return the | |
746 * converted character. */ | |
747 if (has_mbyte && (c != K_SPECIAL || p[1] == KS_SPECIAL)) | |
748 n = MB_BYTE2LEN_CHECK(c); | |
749 else | |
750 n = 1; | |
751 for (i = 0; ; ++i) | |
752 #endif | |
753 { | |
754 if (c == K_SPECIAL) /* special key or escaped K_SPECIAL */ | |
755 { | |
756 c = TO_SPECIAL(p[1], p[2]); | |
757 p += 2; | |
758 } | |
759 #ifdef FEAT_GUI | |
760 if (c == CSI) /* escaped CSI */ | |
761 p += 2; | |
762 #endif | |
763 if (*++p == NUL && bp->b_next != NULL) | |
764 { | |
765 bp = bp->b_next; | |
766 p = bp->b_str; | |
767 } | |
768 #ifdef FEAT_MBYTE | |
769 buf[i] = c; | |
770 if (i == n - 1) /* last byte of a character */ | |
771 { | |
772 if (n != 1) | |
773 c = (*mb_ptr2char)(buf); | |
774 break; | |
775 } | |
776 c = *p; | |
777 if (c == NUL) /* cannot happen? */ | |
778 break; | |
779 #endif | |
780 } | |
781 } | |
782 | |
783 return c; | |
784 } | |
785 | |
786 /* | |
787 * Copy the rest of the redo buffer into the stuff buffer (in a slow way). | |
788 * If old_redo is TRUE, use old_redobuff instead of redobuff. | |
789 * The escaped K_SPECIAL and CSI are copied without translation. | |
790 */ | |
791 static void | |
792 copy_redo(old_redo) | |
793 int old_redo; | |
794 { | |
795 int c; | |
796 | |
797 while ((c = read_redo(FALSE, old_redo)) != NUL) | |
798 stuffcharReadbuff(c); | |
799 } | |
800 | |
801 /* | |
802 * Stuff the redo buffer into the stuffbuff. | |
803 * Insert the redo count into the command. | |
804 * If "old_redo" is TRUE, the last but one command is repeated | |
805 * instead of the last command (inserting text). This is used for | |
806 * CTRL-O <.> in insert mode | |
807 * | |
808 * return FAIL for failure, OK otherwise | |
809 */ | |
810 int | |
811 start_redo(count, old_redo) | |
812 long count; | |
813 int old_redo; | |
814 { | |
815 int c; | |
816 | |
817 /* init the pointers; return if nothing to redo */ | |
818 if (read_redo(TRUE, old_redo) == FAIL) | |
819 return FAIL; | |
820 | |
821 c = read_redo(FALSE, old_redo); | |
822 | |
823 /* copy the buffer name, if present */ | |
824 if (c == '"') | |
825 { | |
826 add_buff(&stuffbuff, (char_u *)"\"", 1L); | |
827 c = read_redo(FALSE, old_redo); | |
828 | |
829 /* if a numbered buffer is used, increment the number */ | |
830 if (c >= '1' && c < '9') | |
831 ++c; | |
832 add_char_buff(&stuffbuff, c); | |
833 c = read_redo(FALSE, old_redo); | |
834 } | |
835 | |
836 #ifdef FEAT_VISUAL | |
837 if (c == 'v') /* redo Visual */ | |
838 { | |
839 VIsual = curwin->w_cursor; | |
840 VIsual_active = TRUE; | |
841 VIsual_select = FALSE; | |
842 VIsual_reselect = TRUE; | |
843 redo_VIsual_busy = TRUE; | |
844 c = read_redo(FALSE, old_redo); | |
845 } | |
846 #endif | |
847 | |
848 /* try to enter the count (in place of a previous count) */ | |
849 if (count) | |
850 { | |
851 while (VIM_ISDIGIT(c)) /* skip "old" count */ | |
852 c = read_redo(FALSE, old_redo); | |
853 add_num_buff(&stuffbuff, count); | |
854 } | |
855 | |
856 /* copy from the redo buffer into the stuff buffer */ | |
857 add_char_buff(&stuffbuff, c); | |
858 copy_redo(old_redo); | |
859 return OK; | |
860 } | |
861 | |
862 /* | |
863 * Repeat the last insert (R, o, O, a, A, i or I command) by stuffing | |
864 * the redo buffer into the stuffbuff. | |
865 * return FAIL for failure, OK otherwise | |
866 */ | |
867 int | |
868 start_redo_ins() | |
869 { | |
870 int c; | |
871 | |
872 if (read_redo(TRUE, FALSE) == FAIL) | |
873 return FAIL; | |
874 start_stuff(); | |
875 | |
876 /* skip the count and the command character */ | |
877 while ((c = read_redo(FALSE, FALSE)) != NUL) | |
878 { | |
879 if (vim_strchr((char_u *)"AaIiRrOo", c) != NULL) | |
880 { | |
881 if (c == 'O' || c == 'o') | |
882 stuffReadbuff(NL_STR); | |
883 break; | |
884 } | |
885 } | |
886 | |
887 /* copy the typed text from the redo buffer into the stuff buffer */ | |
888 copy_redo(FALSE); | |
889 block_redo = TRUE; | |
890 return OK; | |
891 } | |
892 | |
893 void | |
894 stop_redo_ins() | |
895 { | |
896 block_redo = FALSE; | |
897 } | |
898 | |
899 /* | |
900 * Initialize typebuf.tb_buf to point to typebuf_init. | |
901 * alloc() cannot be used here: In out-of-memory situations it would | |
902 * be impossible to type anything. | |
903 */ | |
904 static void | |
905 init_typebuf() | |
906 { | |
907 if (typebuf.tb_buf == NULL) | |
908 { | |
909 typebuf.tb_buf = typebuf_init; | |
910 typebuf.tb_noremap = noremapbuf_init; | |
911 typebuf.tb_buflen = TYPELEN_INIT; | |
912 typebuf.tb_len = 0; | |
913 typebuf.tb_off = 0; | |
914 typebuf.tb_change_cnt = 1; | |
915 } | |
916 } | |
917 | |
918 /* | |
919 * insert a string in position 'offset' in the typeahead buffer (for "@r" | |
920 * and ":normal" command, vgetorpeek() and check_termcode()) | |
921 * | |
922 * If noremap is REMAP_YES, new string can be mapped again. | |
923 * If noremap is REMAP_NONE, new string cannot be mapped again. | |
10 | 924 * If noremap is REMAP_SKIP, fist char of new string cannot be mapped again, |
925 * but abbreviations are allowed. | |
7 | 926 * If noremap is REMAP_SCRIPT, new string cannot be mapped again, except for |
927 * script-local mappings. | |
928 * If noremap is > 0, that many characters of the new string cannot be mapped. | |
929 * | |
930 * If nottyped is TRUE, the string does not return KeyTyped (don't use when | |
931 * offset is non-zero!). | |
932 * | |
933 * If silent is TRUE, cmd_silent is set when the characters are obtained. | |
934 * | |
935 * return FAIL for failure, OK otherwise | |
936 */ | |
937 int | |
938 ins_typebuf(str, noremap, offset, nottyped, silent) | |
939 char_u *str; | |
940 int noremap; | |
941 int offset; | |
942 int nottyped; | |
943 int silent; | |
944 { | |
945 char_u *s1, *s2; | |
946 int newlen; | |
947 int addlen; | |
948 int i; | |
949 int newoff; | |
950 int val; | |
951 int nrm; | |
952 | |
953 init_typebuf(); | |
954 if (++typebuf.tb_change_cnt == 0) | |
955 typebuf.tb_change_cnt = 1; | |
956 | |
957 addlen = (int)STRLEN(str); | |
1130 | 958 |
7 | 959 /* |
960 * Easy case: there is room in front of typebuf.tb_buf[typebuf.tb_off] | |
961 */ | |
962 if (offset == 0 && addlen <= typebuf.tb_off) | |
963 { | |
964 typebuf.tb_off -= addlen; | |
965 mch_memmove(typebuf.tb_buf + typebuf.tb_off, str, (size_t)addlen); | |
966 } | |
1130 | 967 |
7 | 968 /* |
1130 | 969 * Need to allocate a new buffer. |
7 | 970 * In typebuf.tb_buf there must always be room for 3 * MAXMAPLEN + 4 |
971 * characters. We add some extra room to avoid having to allocate too | |
972 * often. | |
973 */ | |
974 else | |
975 { | |
976 newoff = MAXMAPLEN + 4; | |
977 newlen = typebuf.tb_len + addlen + newoff + 4 * (MAXMAPLEN + 4); | |
978 if (newlen < 0) /* string is getting too long */ | |
979 { | |
980 EMSG(_(e_toocompl)); /* also calls flush_buffers */ | |
981 setcursor(); | |
982 return FAIL; | |
983 } | |
984 s1 = alloc(newlen); | |
985 if (s1 == NULL) /* out of memory */ | |
986 return FAIL; | |
987 s2 = alloc(newlen); | |
988 if (s2 == NULL) /* out of memory */ | |
989 { | |
990 vim_free(s1); | |
991 return FAIL; | |
992 } | |
993 typebuf.tb_buflen = newlen; | |
994 | |
995 /* copy the old chars, before the insertion point */ | |
996 mch_memmove(s1 + newoff, typebuf.tb_buf + typebuf.tb_off, | |
997 (size_t)offset); | |
998 /* copy the new chars */ | |
999 mch_memmove(s1 + newoff + offset, str, (size_t)addlen); | |
1000 /* copy the old chars, after the insertion point, including the NUL at | |
1001 * the end */ | |
1002 mch_memmove(s1 + newoff + offset + addlen, | |
1003 typebuf.tb_buf + typebuf.tb_off + offset, | |
1004 (size_t)(typebuf.tb_len - offset + 1)); | |
1005 if (typebuf.tb_buf != typebuf_init) | |
1006 vim_free(typebuf.tb_buf); | |
1007 typebuf.tb_buf = s1; | |
1008 | |
1009 mch_memmove(s2 + newoff, typebuf.tb_noremap + typebuf.tb_off, | |
1010 (size_t)offset); | |
1011 mch_memmove(s2 + newoff + offset + addlen, | |
1012 typebuf.tb_noremap + typebuf.tb_off + offset, | |
1013 (size_t)(typebuf.tb_len - offset)); | |
1014 if (typebuf.tb_noremap != noremapbuf_init) | |
1015 vim_free(typebuf.tb_noremap); | |
1016 typebuf.tb_noremap = s2; | |
1017 | |
1018 typebuf.tb_off = newoff; | |
1019 } | |
1020 typebuf.tb_len += addlen; | |
1021 | |
1022 /* If noremap == REMAP_SCRIPT: do remap script-local mappings. */ | |
1023 if (noremap == REMAP_SCRIPT) | |
1024 val = RM_SCRIPT; | |
10 | 1025 else if (noremap == REMAP_SKIP) |
1026 val = RM_ABBR; | |
7 | 1027 else |
1028 val = RM_NONE; | |
1029 | |
1030 /* | |
1031 * Adjust typebuf.tb_noremap[] for the new characters: | |
1032 * If noremap == REMAP_NONE or REMAP_SCRIPT: new characters are | |
1033 * (sometimes) not remappable | |
1034 * If noremap == REMAP_YES: all the new characters are mappable | |
1035 * If noremap > 0: "noremap" characters are not remappable, the rest | |
1036 * mappable | |
1037 */ | |
10 | 1038 if (noremap == REMAP_SKIP) |
1039 nrm = 1; | |
1040 else if (noremap < 0) | |
7 | 1041 nrm = addlen; |
1042 else | |
1043 nrm = noremap; | |
1044 for (i = 0; i < addlen; ++i) | |
1045 typebuf.tb_noremap[typebuf.tb_off + i + offset] = | |
1046 (--nrm >= 0) ? val : RM_YES; | |
1047 | |
1048 /* tb_maplen and tb_silent only remember the length of mapped and/or | |
1049 * silent mappings at the start of the buffer, assuming that a mapped | |
1050 * sequence doesn't result in typed characters. */ | |
1051 if (nottyped || typebuf.tb_maplen > offset) | |
1052 typebuf.tb_maplen += addlen; | |
1053 if (silent || typebuf.tb_silent > offset) | |
1054 { | |
1055 typebuf.tb_silent += addlen; | |
1056 cmd_silent = TRUE; | |
1057 } | |
1058 if (typebuf.tb_no_abbr_cnt && offset == 0) /* and not used for abbrev.s */ | |
1059 typebuf.tb_no_abbr_cnt += addlen; | |
1060 | |
1061 return OK; | |
1062 } | |
1063 | |
1064 /* | |
852 | 1065 * Put character "c" back into the typeahead buffer. |
1066 * Can be used for a character obtained by vgetc() that needs to be put back. | |
1051 | 1067 * Uses cmd_silent, KeyTyped and KeyNoremap to restore the flags belonging to |
1068 * the char. | |
852 | 1069 */ |
1070 void | |
1071 ins_char_typebuf(c) | |
1072 int c; | |
1073 { | |
1074 #ifdef FEAT_MBYTE | |
3549 | 1075 char_u buf[MB_MAXBYTES + 1]; |
852 | 1076 #else |
1077 char_u buf[4]; | |
1078 #endif | |
1079 if (IS_SPECIAL(c)) | |
1080 { | |
1081 buf[0] = K_SPECIAL; | |
1082 buf[1] = K_SECOND(c); | |
1083 buf[2] = K_THIRD(c); | |
1084 buf[3] = NUL; | |
1085 } | |
1086 else | |
1087 { | |
1088 #ifdef FEAT_MBYTE | |
1089 buf[(*mb_char2bytes)(c, buf)] = NUL; | |
1090 #else | |
1091 buf[0] = c; | |
1092 buf[1] = NUL; | |
1093 #endif | |
1094 } | |
1051 | 1095 (void)ins_typebuf(buf, KeyNoremap, 0, !KeyTyped, cmd_silent); |
852 | 1096 } |
1097 | |
1098 /* | |
7 | 1099 * Return TRUE if the typeahead buffer was changed (while waiting for a |
841 | 1100 * character to arrive). Happens when a message was received from a client or |
842 | 1101 * from feedkeys(). |
7 | 1102 * But check in a more generic way to avoid trouble: When "typebuf.tb_buf" |
1103 * changed it was reallocated and the old pointer can no longer be used. | |
1104 * Or "typebuf.tb_off" may have been changed and we would overwrite characters | |
1105 * that was just added. | |
1106 */ | |
1107 int | |
1108 typebuf_changed(tb_change_cnt) | |
1109 int tb_change_cnt; /* old value of typebuf.tb_change_cnt */ | |
1110 { | |
1111 return (tb_change_cnt != 0 && (typebuf.tb_change_cnt != tb_change_cnt | |
841 | 1112 #if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL) |
1113 || typebuf_was_filled | |
7 | 1114 #endif |
1115 )); | |
1116 } | |
1117 | |
1118 /* | |
1119 * Return TRUE if there are no characters in the typeahead buffer that have | |
1120 * not been typed (result from a mapping or come from ":normal"). | |
1121 */ | |
1122 int | |
1123 typebuf_typed() | |
1124 { | |
1125 return typebuf.tb_maplen == 0; | |
1126 } | |
1127 | |
819 | 1128 #if defined(FEAT_VISUAL) || defined(PROTO) |
7 | 1129 /* |
1130 * Return the number of characters that are mapped (or not typed). | |
1131 */ | |
1132 int | |
1133 typebuf_maplen() | |
1134 { | |
1135 return typebuf.tb_maplen; | |
1136 } | |
819 | 1137 #endif |
7 | 1138 |
1139 /* | |
1140 * remove "len" characters from typebuf.tb_buf[typebuf.tb_off + offset] | |
1141 */ | |
1142 void | |
1143 del_typebuf(len, offset) | |
1144 int len; | |
1145 int offset; | |
1146 { | |
1147 int i; | |
1148 | |
1149 if (len == 0) | |
1150 return; /* nothing to do */ | |
1151 | |
1152 typebuf.tb_len -= len; | |
1153 | |
1154 /* | |
1155 * Easy case: Just increase typebuf.tb_off. | |
1156 */ | |
1157 if (offset == 0 && typebuf.tb_buflen - (typebuf.tb_off + len) | |
1158 >= 3 * MAXMAPLEN + 3) | |
1159 typebuf.tb_off += len; | |
1160 /* | |
1161 * Have to move the characters in typebuf.tb_buf[] and typebuf.tb_noremap[] | |
1162 */ | |
1163 else | |
1164 { | |
1165 i = typebuf.tb_off + offset; | |
1166 /* | |
1167 * Leave some extra room at the end to avoid reallocation. | |
1168 */ | |
1169 if (typebuf.tb_off > MAXMAPLEN) | |
1170 { | |
1171 mch_memmove(typebuf.tb_buf + MAXMAPLEN, | |
1172 typebuf.tb_buf + typebuf.tb_off, (size_t)offset); | |
1173 mch_memmove(typebuf.tb_noremap + MAXMAPLEN, | |
1174 typebuf.tb_noremap + typebuf.tb_off, (size_t)offset); | |
1175 typebuf.tb_off = MAXMAPLEN; | |
1176 } | |
1177 /* adjust typebuf.tb_buf (include the NUL at the end) */ | |
1178 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset, | |
1179 typebuf.tb_buf + i + len, | |
1180 (size_t)(typebuf.tb_len - offset + 1)); | |
1181 /* adjust typebuf.tb_noremap[] */ | |
1182 mch_memmove(typebuf.tb_noremap + typebuf.tb_off + offset, | |
1183 typebuf.tb_noremap + i + len, | |
1184 (size_t)(typebuf.tb_len - offset)); | |
1185 } | |
1186 | |
1187 if (typebuf.tb_maplen > offset) /* adjust tb_maplen */ | |
1188 { | |
1189 if (typebuf.tb_maplen < offset + len) | |
1190 typebuf.tb_maplen = offset; | |
1191 else | |
1192 typebuf.tb_maplen -= len; | |
1193 } | |
1194 if (typebuf.tb_silent > offset) /* adjust tb_silent */ | |
1195 { | |
1196 if (typebuf.tb_silent < offset + len) | |
1197 typebuf.tb_silent = offset; | |
1198 else | |
1199 typebuf.tb_silent -= len; | |
1200 } | |
1201 if (typebuf.tb_no_abbr_cnt > offset) /* adjust tb_no_abbr_cnt */ | |
1202 { | |
1203 if (typebuf.tb_no_abbr_cnt < offset + len) | |
1204 typebuf.tb_no_abbr_cnt = offset; | |
1205 else | |
1206 typebuf.tb_no_abbr_cnt -= len; | |
1207 } | |
1208 | |
841 | 1209 #if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL) |
842 | 1210 /* Reset the flag that text received from a client or from feedkeys() |
841 | 1211 * was inserted in the typeahead buffer. */ |
1212 typebuf_was_filled = FALSE; | |
7 | 1213 #endif |
1214 if (++typebuf.tb_change_cnt == 0) | |
1215 typebuf.tb_change_cnt = 1; | |
1216 } | |
1217 | |
1218 /* | |
1219 * Write typed characters to script file. | |
1220 * If recording is on put the character in the recordbuffer. | |
1221 */ | |
1222 static void | |
1130 | 1223 gotchars(chars, len) |
1224 char_u *chars; | |
7 | 1225 int len; |
1226 { | |
1130 | 1227 char_u *s = chars; |
7 | 1228 int c; |
1229 char_u buf[2]; | |
1130 | 1230 int todo = len; |
7 | 1231 |
1232 /* remember how many chars were last recorded */ | |
1233 if (Recording) | |
1234 last_recorded_len += len; | |
1235 | |
1236 buf[1] = NUL; | |
1130 | 1237 while (todo--) |
7 | 1238 { |
1239 /* Handle one byte at a time; no translation to be done. */ | |
1240 c = *s++; | |
1241 updatescript(c); | |
1242 | |
1243 if (Recording) | |
1244 { | |
1245 buf[0] = c; | |
1246 add_buff(&recordbuff, buf, 1L); | |
1247 } | |
1248 } | |
1249 may_sync_undo(); | |
1250 | |
1251 #ifdef FEAT_EVAL | |
1252 /* output "debug mode" message next time in debug mode */ | |
1253 debug_did_msg = FALSE; | |
1254 #endif | |
1255 | |
1256 /* Since characters have been typed, consider the following to be in | |
1257 * another mapping. Search string will be kept in history. */ | |
1258 ++maptick; | |
1259 } | |
1260 | |
1261 /* | |
1262 * Sync undo. Called when typed characters are obtained from the typeahead | |
1263 * buffer, or when a menu is used. | |
1264 * Do not sync: | |
1265 * - In Insert mode, unless cursor key has been used. | |
1266 * - While reading a script file. | |
1267 * - When no_u_sync is non-zero. | |
1268 */ | |
1269 static void | |
1270 may_sync_undo() | |
1271 { | |
1272 if ((!(State & (INSERT + CMDLINE)) || arrow_used) | |
825 | 1273 && scriptin[curscript] == NULL) |
1274 u_sync(FALSE); | |
7 | 1275 } |
1276 | |
1277 /* | |
1278 * Make "typebuf" empty and allocate new buffers. | |
1279 * Returns FAIL when out of memory. | |
1280 */ | |
1281 int | |
1282 alloc_typebuf() | |
1283 { | |
1284 typebuf.tb_buf = alloc(TYPELEN_INIT); | |
1285 typebuf.tb_noremap = alloc(TYPELEN_INIT); | |
1286 if (typebuf.tb_buf == NULL || typebuf.tb_noremap == NULL) | |
1287 { | |
1288 free_typebuf(); | |
1289 return FAIL; | |
1290 } | |
1291 typebuf.tb_buflen = TYPELEN_INIT; | |
1292 typebuf.tb_off = 0; | |
1293 typebuf.tb_len = 0; | |
1294 typebuf.tb_maplen = 0; | |
1295 typebuf.tb_silent = 0; | |
1296 typebuf.tb_no_abbr_cnt = 0; | |
1297 if (++typebuf.tb_change_cnt == 0) | |
1298 typebuf.tb_change_cnt = 1; | |
1299 return OK; | |
1300 } | |
1301 | |
1302 /* | |
1303 * Free the buffers of "typebuf". | |
1304 */ | |
1305 void | |
1306 free_typebuf() | |
1307 { | |
1462 | 1308 if (typebuf.tb_buf == typebuf_init) |
1309 EMSG2(_(e_intern2), "Free typebuf 1"); | |
1310 else | |
1311 vim_free(typebuf.tb_buf); | |
1992 | 1312 if (typebuf.tb_noremap == noremapbuf_init) |
1462 | 1313 EMSG2(_(e_intern2), "Free typebuf 2"); |
1314 else | |
1315 vim_free(typebuf.tb_noremap); | |
7 | 1316 } |
1317 | |
1318 /* | |
1319 * When doing ":so! file", the current typeahead needs to be saved, and | |
1320 * restored when "file" has been read completely. | |
1321 */ | |
1322 static typebuf_T saved_typebuf[NSCRIPT]; | |
1323 | |
1324 int | |
1325 save_typebuf() | |
1326 { | |
1327 init_typebuf(); | |
1328 saved_typebuf[curscript] = typebuf; | |
1329 /* If out of memory: restore typebuf and close file. */ | |
1330 if (alloc_typebuf() == FAIL) | |
1331 { | |
1332 closescript(); | |
1333 return FAIL; | |
1334 } | |
1335 return OK; | |
1336 } | |
1337 | |
1928 | 1338 static int old_char = -1; /* character put back by vungetc() */ |
1339 static int old_mod_mask; /* mod_mask for ungotten character */ | |
4227 | 1340 #ifdef FEAT_MOUSE |
1341 static int old_mouse_row; /* mouse_row related to old_char */ | |
1342 static int old_mouse_col; /* mouse_col related to old_char */ | |
1343 #endif | |
1928 | 1344 |
7 | 1345 #if defined(FEAT_EVAL) || defined(FEAT_EX_EXTRA) || defined(PROTO) |
1346 | |
1347 /* | |
1348 * Save all three kinds of typeahead, so that the user must type at a prompt. | |
1349 */ | |
1350 void | |
1351 save_typeahead(tp) | |
1352 tasave_T *tp; | |
1353 { | |
1354 tp->save_typebuf = typebuf; | |
1355 tp->typebuf_valid = (alloc_typebuf() == OK); | |
1356 if (!tp->typebuf_valid) | |
1357 typebuf = tp->save_typebuf; | |
1358 | |
1928 | 1359 tp->old_char = old_char; |
1360 tp->old_mod_mask = old_mod_mask; | |
1361 old_char = -1; | |
1362 | |
7 | 1363 tp->save_stuffbuff = stuffbuff; |
1364 stuffbuff.bh_first.b_next = NULL; | |
1365 # ifdef USE_INPUT_BUF | |
1366 tp->save_inputbuf = get_input_buf(); | |
1367 # endif | |
1368 } | |
1369 | |
1370 /* | |
1371 * Restore the typeahead to what it was before calling save_typeahead(). | |
1372 * The allocated memory is freed, can only be called once! | |
1373 */ | |
1374 void | |
1375 restore_typeahead(tp) | |
1376 tasave_T *tp; | |
1377 { | |
1378 if (tp->typebuf_valid) | |
1379 { | |
1380 free_typebuf(); | |
1381 typebuf = tp->save_typebuf; | |
1382 } | |
1383 | |
1928 | 1384 old_char = tp->old_char; |
1385 old_mod_mask = tp->old_mod_mask; | |
1386 | |
7 | 1387 free_buff(&stuffbuff); |
1388 stuffbuff = tp->save_stuffbuff; | |
1389 # ifdef USE_INPUT_BUF | |
1390 set_input_buf(tp->save_inputbuf); | |
1391 # endif | |
1392 } | |
1393 #endif | |
1394 | |
1395 /* | |
1396 * Open a new script file for the ":source!" command. | |
1397 */ | |
1398 void | |
1399 openscript(name, directly) | |
1400 char_u *name; | |
1401 int directly; /* when TRUE execute directly */ | |
1402 { | |
1403 if (curscript + 1 == NSCRIPT) | |
1404 { | |
1405 EMSG(_(e_nesting)); | |
1406 return; | |
1407 } | |
1462 | 1408 #ifdef FEAT_EVAL |
1409 if (ignore_script) | |
1410 /* Not reading from script, also don't open one. Warning message? */ | |
1411 return; | |
1412 #endif | |
7 | 1413 |
1414 if (scriptin[curscript] != NULL) /* already reading script */ | |
1415 ++curscript; | |
1416 /* use NameBuff for expanded name */ | |
1417 expand_env(name, NameBuff, MAXPATHL); | |
1418 if ((scriptin[curscript] = mch_fopen((char *)NameBuff, READBIN)) == NULL) | |
1419 { | |
1420 EMSG2(_(e_notopen), name); | |
1421 if (curscript) | |
1422 --curscript; | |
1423 return; | |
1424 } | |
1425 if (save_typebuf() == FAIL) | |
1426 return; | |
1427 | |
1428 /* | |
1429 * Execute the commands from the file right now when using ":source!" | |
1430 * after ":global" or ":argdo" or in a loop. Also when another command | |
1431 * follows. This means the display won't be updated. Don't do this | |
1432 * always, "make test" would fail. | |
1433 */ | |
1434 if (directly) | |
1435 { | |
1436 oparg_T oa; | |
1437 int oldcurscript; | |
1438 int save_State = State; | |
1439 int save_restart_edit = restart_edit; | |
1440 int save_insertmode = p_im; | |
1441 int save_finish_op = finish_op; | |
1442 int save_msg_scroll = msg_scroll; | |
1443 | |
1444 State = NORMAL; | |
1445 msg_scroll = FALSE; /* no msg scrolling in Normal mode */ | |
1446 restart_edit = 0; /* don't go to Insert mode */ | |
1447 p_im = FALSE; /* don't use 'insertmode' */ | |
1448 clear_oparg(&oa); | |
1449 finish_op = FALSE; | |
1450 | |
1451 oldcurscript = curscript; | |
1452 do | |
1453 { | |
1454 update_topline_cursor(); /* update cursor position and topline */ | |
1455 normal_cmd(&oa, FALSE); /* execute one command */ | |
1456 vpeekc(); /* check for end of file */ | |
1457 } | |
1458 while (scriptin[oldcurscript] != NULL); | |
1459 | |
1460 State = save_State; | |
1461 msg_scroll = save_msg_scroll; | |
1462 restart_edit = save_restart_edit; | |
1463 p_im = save_insertmode; | |
1464 finish_op = save_finish_op; | |
1465 } | |
1466 } | |
1467 | |
1468 /* | |
1469 * Close the currently active input script. | |
1470 */ | |
1471 static void | |
1472 closescript() | |
1473 { | |
1474 free_typebuf(); | |
1475 typebuf = saved_typebuf[curscript]; | |
1476 | |
1477 fclose(scriptin[curscript]); | |
1478 scriptin[curscript] = NULL; | |
1479 if (curscript > 0) | |
1480 --curscript; | |
1481 } | |
1482 | |
358 | 1483 #if defined(EXITFREE) || defined(PROTO) |
1484 void | |
1485 close_all_scripts() | |
1486 { | |
1487 while (scriptin[0] != NULL) | |
1488 closescript(); | |
1489 } | |
1490 #endif | |
1491 | |
7 | 1492 #if defined(FEAT_INS_EXPAND) || defined(PROTO) |
1493 /* | |
1494 * Return TRUE when reading keys from a script file. | |
1495 */ | |
1496 int | |
1497 using_script() | |
1498 { | |
1499 return scriptin[curscript] != NULL; | |
1500 } | |
1501 #endif | |
1502 | |
1503 /* | |
365 | 1504 * This function is called just before doing a blocking wait. Thus after |
1505 * waiting 'updatetime' for a character to arrive. | |
1506 */ | |
1507 void | |
1508 before_blocking() | |
1509 { | |
1510 updatescript(0); | |
1511 #ifdef FEAT_EVAL | |
958 | 1512 if (may_garbage_collect) |
1513 garbage_collect(); | |
365 | 1514 #endif |
1515 } | |
1516 | |
1517 /* | |
7 | 1518 * updatescipt() is called when a character can be written into the script file |
1519 * or when we have waited some time for a character (c == 0) | |
1520 * | |
1521 * All the changed memfiles are synced if c == 0 or when the number of typed | |
1522 * characters reaches 'updatecount' and 'updatecount' is non-zero. | |
1523 */ | |
1524 void | |
1525 updatescript(c) | |
1526 int c; | |
1527 { | |
1528 static int count = 0; | |
1529 | |
1530 if (c && scriptout) | |
1531 putc(c, scriptout); | |
1532 if (c == 0 || (p_uc > 0 && ++count >= p_uc)) | |
1533 { | |
1534 ml_sync_all(c == 0, TRUE); | |
1535 count = 0; | |
1536 } | |
1537 } | |
1538 | |
1539 /* | |
1540 * Get the next input character. | |
1541 * Can return a special key or a multi-byte character. | |
1542 * Can return NUL when called recursively, use safe_vgetc() if that's not | |
1543 * wanted. | |
1544 * This translates escaped K_SPECIAL and CSI bytes to a K_SPECIAL or CSI byte. | |
1545 * Collects the bytes of a multibyte character into the whole character. | |
1992 | 1546 * Returns the modifiers in the global "mod_mask". |
7 | 1547 */ |
1548 int | |
1549 vgetc() | |
1550 { | |
1551 int c, c2; | |
1552 #ifdef FEAT_MBYTE | |
1553 int n; | |
3549 | 1554 char_u buf[MB_MAXBYTES + 1]; |
7 | 1555 int i; |
1556 #endif | |
1557 | |
958 | 1558 #ifdef FEAT_EVAL |
1559 /* Do garbage collection when garbagecollect() was called previously and | |
1560 * we are now at the toplevel. */ | |
1561 if (may_garbage_collect && want_garbage_collect) | |
1562 garbage_collect(); | |
1563 #endif | |
1564 | |
7 | 1565 /* |
1566 * If a character was put back with vungetc, it was already processed. | |
1567 * Return it directly. | |
1568 */ | |
1569 if (old_char != -1) | |
1570 { | |
1571 c = old_char; | |
1572 old_char = -1; | |
1573 mod_mask = old_mod_mask; | |
4227 | 1574 #ifdef FEAT_MOUSE |
1575 mouse_row = old_mouse_row; | |
1576 mouse_col = old_mouse_col; | |
1577 #endif | |
7 | 1578 } |
958 | 1579 else |
7 | 1580 { |
958 | 1581 mod_mask = 0x0; |
1582 last_recorded_len = 0; | |
1583 for (;;) /* this is done twice if there are modifiers */ | |
1584 { | |
7 | 1585 if (mod_mask) /* no mapping after modifier has been read */ |
1586 { | |
1587 ++no_mapping; | |
1588 ++allow_keys; | |
1589 } | |
1590 c = vgetorpeek(TRUE); | |
1591 if (mod_mask) | |
1592 { | |
1593 --no_mapping; | |
1594 --allow_keys; | |
1595 } | |
1596 | |
1597 /* Get two extra bytes for special keys */ | |
1598 if (c == K_SPECIAL | |
1599 #ifdef FEAT_GUI | |
1600 || c == CSI | |
1601 #endif | |
1602 ) | |
1603 { | |
179 | 1604 int save_allow_keys = allow_keys; |
1605 | |
7 | 1606 ++no_mapping; |
179 | 1607 allow_keys = 0; /* make sure BS is not found */ |
7 | 1608 c2 = vgetorpeek(TRUE); /* no mapping for these chars */ |
1609 c = vgetorpeek(TRUE); | |
1610 --no_mapping; | |
179 | 1611 allow_keys = save_allow_keys; |
7 | 1612 if (c2 == KS_MODIFIER) |
1613 { | |
1614 mod_mask = c; | |
1615 continue; | |
1616 } | |
1617 c = TO_SPECIAL(c2, c); | |
1618 | |
1619 #if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF) | |
1620 /* Handle K_TEAROFF here, the caller of vgetc() doesn't need to | |
1621 * know that a menu was torn off */ | |
1622 if (c == K_TEAROFF) | |
1623 { | |
1624 char_u name[200]; | |
1625 int i; | |
1626 | |
1627 /* get menu path, it ends with a <CR> */ | |
1628 for (i = 0; (c = vgetorpeek(TRUE)) != '\r'; ) | |
1629 { | |
1630 name[i] = c; | |
1631 if (i < 199) | |
1632 ++i; | |
1633 } | |
1634 name[i] = NUL; | |
1635 gui_make_tearoff(name); | |
1636 continue; | |
1637 } | |
1638 #endif | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
1639 #if defined(FEAT_GUI) && defined(FEAT_GUI_GTK) && defined(FEAT_MENU) |
36 | 1640 /* GTK: <F10> normally selects the menu, but it's passed until |
1641 * here to allow mapping it. Intercept and invoke the GTK | |
1642 * behavior if it's not mapped. */ | |
1643 if (c == K_F10 && gui.menubar != NULL) | |
1644 { | |
1645 gtk_menu_shell_select_first(GTK_MENU_SHELL(gui.menubar), FALSE); | |
1646 continue; | |
1647 } | |
1648 #endif | |
7 | 1649 #ifdef FEAT_GUI |
1389 | 1650 /* Handle focus event here, so that the caller doesn't need to |
1651 * know about it. Return K_IGNORE so that we loop once (needed if | |
1652 * 'lazyredraw' is set). */ | |
1380 | 1653 if (c == K_FOCUSGAINED || c == K_FOCUSLOST) |
1654 { | |
1655 ui_focus_change(c == K_FOCUSGAINED); | |
1389 | 1656 c = K_IGNORE; |
1380 | 1657 } |
1658 | |
7 | 1659 /* Translate K_CSI to CSI. The special key is only used to avoid |
1660 * it being recognized as the start of a special key. */ | |
1661 if (c == K_CSI) | |
1662 c = CSI; | |
1663 #endif | |
1664 } | |
1665 #ifdef MSDOS | |
1666 /* | |
1667 * If K_NUL was typed, it is replaced by K_NUL, 3 in mch_inchar(). | |
1668 * Delete the 3 here. | |
1669 */ | |
1670 else if (c == K_NUL && vpeekc() == 3) | |
1671 (void)vgetorpeek(TRUE); | |
1672 #endif | |
1673 | |
229 | 1674 /* a keypad or special function key was not mapped, use it like |
1675 * its ASCII equivalent */ | |
1676 switch (c) | |
7 | 1677 { |
229 | 1678 case K_KPLUS: c = '+'; break; |
1679 case K_KMINUS: c = '-'; break; | |
1680 case K_KDIVIDE: c = '/'; break; | |
1681 case K_KMULTIPLY: c = '*'; break; | |
1682 case K_KENTER: c = CAR; break; | |
1683 case K_KPOINT: | |
36 | 1684 #ifdef WIN32 |
229 | 1685 /* Can be either '.' or a ',', * |
1686 * depending on the type of keypad. */ | |
1687 c = MapVirtualKey(VK_DECIMAL, 2); break; | |
36 | 1688 #else |
229 | 1689 c = '.'; break; |
36 | 1690 #endif |
229 | 1691 case K_K0: c = '0'; break; |
1692 case K_K1: c = '1'; break; | |
1693 case K_K2: c = '2'; break; | |
1694 case K_K3: c = '3'; break; | |
1695 case K_K4: c = '4'; break; | |
1696 case K_K5: c = '5'; break; | |
1697 case K_K6: c = '6'; break; | |
1698 case K_K7: c = '7'; break; | |
1699 case K_K8: c = '8'; break; | |
1700 case K_K9: c = '9'; break; | |
1701 | |
1702 case K_XHOME: | |
1703 case K_ZHOME: if (mod_mask == MOD_MASK_SHIFT) | |
1704 { | |
1705 c = K_S_HOME; | |
1706 mod_mask = 0; | |
1707 } | |
1708 else if (mod_mask == MOD_MASK_CTRL) | |
1709 { | |
1710 c = K_C_HOME; | |
1711 mod_mask = 0; | |
1712 } | |
1713 else | |
1714 c = K_HOME; | |
1715 break; | |
1716 case K_XEND: | |
1717 case K_ZEND: if (mod_mask == MOD_MASK_SHIFT) | |
1718 { | |
1719 c = K_S_END; | |
1720 mod_mask = 0; | |
1721 } | |
1722 else if (mod_mask == MOD_MASK_CTRL) | |
1723 { | |
1724 c = K_C_END; | |
1725 mod_mask = 0; | |
1726 } | |
1727 else | |
1728 c = K_END; | |
1729 break; | |
1730 | |
1731 case K_XUP: c = K_UP; break; | |
1732 case K_XDOWN: c = K_DOWN; break; | |
1733 case K_XLEFT: c = K_LEFT; break; | |
1734 case K_XRIGHT: c = K_RIGHT; break; | |
7 | 1735 } |
1736 | |
1737 #ifdef FEAT_MBYTE | |
1738 /* For a multi-byte character get all the bytes and return the | |
1739 * converted character. | |
1740 * Note: This will loop until enough bytes are received! | |
1741 */ | |
1742 if (has_mbyte && (n = MB_BYTE2LEN_CHECK(c)) > 1) | |
1743 { | |
1744 ++no_mapping; | |
1745 buf[0] = c; | |
1746 for (i = 1; i < n; ++i) | |
1747 { | |
1748 buf[i] = vgetorpeek(TRUE); | |
1749 if (buf[i] == K_SPECIAL | |
1750 #ifdef FEAT_GUI | |
1751 || buf[i] == CSI | |
1752 #endif | |
1753 ) | |
1754 { | |
1755 /* Must be a K_SPECIAL - KS_SPECIAL - KE_FILLER sequence, | |
1756 * which represents a K_SPECIAL (0x80), | |
1757 * or a CSI - KS_EXTRA - KE_CSI sequence, which represents | |
1758 * a CSI (0x9B), | |
1759 * of a K_SPECIAL - KS_EXTRA - KE_CSI, which is CSI too. */ | |
1760 c = vgetorpeek(TRUE); | |
1761 if (vgetorpeek(TRUE) == (int)KE_CSI && c == KS_EXTRA) | |
1762 buf[i] = CSI; | |
1763 } | |
1764 } | |
1765 --no_mapping; | |
1766 c = (*mb_ptr2char)(buf); | |
1767 } | |
1768 #endif | |
1769 | |
958 | 1770 break; |
1771 } | |
7 | 1772 } |
958 | 1773 |
1774 #ifdef FEAT_EVAL | |
1775 /* | |
1776 * In the main loop "may_garbage_collect" can be set to do garbage | |
1777 * collection in the first next vgetc(). It's disabled after that to | |
1778 * avoid internally used Lists and Dicts to be freed. | |
1779 */ | |
1780 may_garbage_collect = FALSE; | |
1781 #endif | |
1782 | |
1783 return c; | |
7 | 1784 } |
1785 | |
1786 /* | |
1787 * Like vgetc(), but never return a NUL when called recursively, get a key | |
1788 * directly from the user (ignoring typeahead). | |
1789 */ | |
1790 int | |
1791 safe_vgetc() | |
1792 { | |
1793 int c; | |
1794 | |
1795 c = vgetc(); | |
1796 if (c == NUL) | |
1797 c = get_keystroke(); | |
1798 return c; | |
1799 } | |
1800 | |
1801 /* | |
1389 | 1802 * Like safe_vgetc(), but loop to handle K_IGNORE. |
1803 * Also ignore scrollbar events. | |
1804 */ | |
1805 int | |
1806 plain_vgetc() | |
1807 { | |
1808 int c; | |
1809 | |
1810 do | |
1811 { | |
1812 c = safe_vgetc(); | |
1813 } while (c == K_IGNORE || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR); | |
1814 return c; | |
1815 } | |
1816 | |
1817 /* | |
7 | 1818 * Check if a character is available, such that vgetc() will not block. |
1819 * If the next character is a special character or multi-byte, the returned | |
1820 * character is not valid!. | |
1821 */ | |
1822 int | |
1823 vpeekc() | |
1824 { | |
1825 if (old_char != -1) | |
1826 return old_char; | |
1827 return vgetorpeek(FALSE); | |
1828 } | |
1829 | |
1830 #if defined(FEAT_TERMRESPONSE) || defined(PROTO) | |
1831 /* | |
1832 * Like vpeekc(), but don't allow mapping. Do allow checking for terminal | |
1833 * codes. | |
1834 */ | |
1835 int | |
1836 vpeekc_nomap() | |
1837 { | |
1838 int c; | |
1839 | |
1840 ++no_mapping; | |
1841 ++allow_keys; | |
1842 c = vpeekc(); | |
1843 --no_mapping; | |
1844 --allow_keys; | |
1845 return c; | |
1846 } | |
1847 #endif | |
1848 | |
1849 #if defined(FEAT_INS_EXPAND) || defined(PROTO) | |
1850 /* | |
1851 * Check if any character is available, also half an escape sequence. | |
1852 * Trick: when no typeahead found, but there is something in the typeahead | |
1853 * buffer, it must be an ESC that is recognized as the start of a key code. | |
1854 */ | |
1855 int | |
1856 vpeekc_any() | |
1857 { | |
1858 int c; | |
1859 | |
1860 c = vpeekc(); | |
1861 if (c == NUL && typebuf.tb_len > 0) | |
1862 c = ESC; | |
1863 return c; | |
1864 } | |
1865 #endif | |
1866 | |
1867 /* | |
1868 * Call vpeekc() without causing anything to be mapped. | |
1869 * Return TRUE if a character is available, FALSE otherwise. | |
1870 */ | |
1871 int | |
1872 char_avail() | |
1873 { | |
1874 int retval; | |
1875 | |
1876 ++no_mapping; | |
1877 retval = vpeekc(); | |
1878 --no_mapping; | |
1879 return (retval != NUL); | |
1880 } | |
1881 | |
1882 void | |
1883 vungetc(c) /* unget one character (can only be done once!) */ | |
1884 int c; | |
1885 { | |
1886 old_char = c; | |
1887 old_mod_mask = mod_mask; | |
4227 | 1888 #ifdef FEAT_MOUSE |
1889 old_mouse_row = mouse_row; | |
1890 old_mouse_col = mouse_col; | |
1891 #endif | |
7 | 1892 } |
1893 | |
1894 /* | |
1895 * get a character: | |
1896 * 1. from the stuffbuffer | |
1897 * This is used for abbreviated commands like "D" -> "d$". | |
1898 * Also used to redo a command for ".". | |
1899 * 2. from the typeahead buffer | |
1900 * Stores text obtained previously but not used yet. | |
1901 * Also stores the result of mappings. | |
1902 * Also used for the ":normal" command. | |
1903 * 3. from the user | |
1904 * This may do a blocking wait if "advance" is TRUE. | |
1905 * | |
1906 * if "advance" is TRUE (vgetc()): | |
1907 * really get the character. | |
1908 * KeyTyped is set to TRUE in the case the user typed the key. | |
1909 * KeyStuffed is TRUE if the character comes from the stuff buffer. | |
1910 * if "advance" is FALSE (vpeekc()): | |
1911 * just look whether there is a character available. | |
1912 * | |
1913 * When "no_mapping" is zero, checks for mappings in the current mode. | |
1914 * Only returns one byte (of a multi-byte character). | |
1915 * K_SPECIAL and CSI may be escaped, need to get two more bytes then. | |
1916 */ | |
1917 static int | |
1918 vgetorpeek(advance) | |
1919 int advance; | |
1920 { | |
1921 int c, c1; | |
1922 int keylen; | |
1923 char_u *s; | |
1924 mapblock_T *mp; | |
1925 #ifdef FEAT_LOCALMAP | |
1926 mapblock_T *mp2; | |
1927 #endif | |
1928 mapblock_T *mp_match; | |
1929 int mp_match_len = 0; | |
1930 int timedout = FALSE; /* waited for more than 1 second | |
1931 for mapping to complete */ | |
1932 int mapdepth = 0; /* check for recursive mapping */ | |
1933 int mode_deleted = FALSE; /* set when mode has been deleted */ | |
1934 int local_State; | |
1935 int mlen; | |
1936 int max_mlen; | |
721 | 1937 int i; |
7 | 1938 #ifdef FEAT_CMDL_INFO |
1939 int new_wcol, new_wrow; | |
1940 #endif | |
1941 #ifdef FEAT_GUI | |
1942 # ifdef FEAT_MENU | |
1943 int idx; | |
1944 # endif | |
1945 int shape_changed = FALSE; /* adjusted cursor shape */ | |
1946 #endif | |
1947 int n; | |
1948 #ifdef FEAT_LANGMAP | |
1949 int nolmaplen; | |
1950 #endif | |
1951 int old_wcol, old_wrow; | |
202 | 1952 int wait_tb_len; |
7 | 1953 |
1954 /* | |
1955 * This function doesn't work very well when called recursively. This may | |
1956 * happen though, because of: | |
1957 * 1. The call to add_to_showcmd(). char_avail() is then used to check if | |
1958 * there is a character available, which calls this function. In that | |
1959 * case we must return NUL, to indicate no character is available. | |
1960 * 2. A GUI callback function writes to the screen, causing a | |
1961 * wait_return(). | |
1962 * Using ":normal" can also do this, but it saves the typeahead buffer, | |
1963 * thus it should be OK. But don't get a key from the user then. | |
1964 */ | |
822 | 1965 if (vgetc_busy > 0 |
7 | 1966 #ifdef FEAT_EX_EXTRA |
1967 && ex_normal_busy == 0 | |
1968 #endif | |
1969 ) | |
1970 return NUL; | |
1971 | |
1972 local_State = get_real_state(); | |
1973 | |
822 | 1974 ++vgetc_busy; |
7 | 1975 |
1976 if (advance) | |
1977 KeyStuffed = FALSE; | |
1978 | |
1979 init_typebuf(); | |
1980 start_stuff(); | |
1981 if (advance && typebuf.tb_maplen == 0) | |
1982 Exec_reg = FALSE; | |
1983 do | |
1984 { | |
1985 /* | |
1986 * get a character: 1. from the stuffbuffer | |
1987 */ | |
1988 if (typeahead_char != 0) | |
1989 { | |
1990 c = typeahead_char; | |
1991 if (advance) | |
1992 typeahead_char = 0; | |
1993 } | |
1994 else | |
1995 c = read_stuff(advance); | |
1996 if (c != NUL && !got_int) | |
1997 { | |
1998 if (advance) | |
1999 { | |
2000 /* KeyTyped = FALSE; When the command that stuffed something | |
2001 * was typed, behave like the stuffed command was typed. | |
2002 * needed for CTRL-W CTRl-] to open a fold, for example. */ | |
2003 KeyStuffed = TRUE; | |
2004 } | |
2005 if (typebuf.tb_no_abbr_cnt == 0) | |
2006 typebuf.tb_no_abbr_cnt = 1; /* no abbreviations now */ | |
2007 } | |
2008 else | |
2009 { | |
2010 /* | |
2011 * Loop until we either find a matching mapped key, or we | |
2012 * are sure that it is not a mapped key. | |
2013 * If a mapped key sequence is found we go back to the start to | |
2014 * try re-mapping. | |
2015 */ | |
2016 for (;;) | |
2017 { | |
2018 /* | |
2019 * ui_breakcheck() is slow, don't use it too often when | |
2020 * inside a mapping. But call it each time for typed | |
2021 * characters. | |
2022 */ | |
2023 if (typebuf.tb_maplen) | |
2024 line_breakcheck(); | |
2025 else | |
2026 ui_breakcheck(); /* check for CTRL-C */ | |
2027 keylen = 0; | |
2028 if (got_int) | |
2029 { | |
2030 /* flush all input */ | |
2031 c = inchar(typebuf.tb_buf, typebuf.tb_buflen - 1, 0L, | |
2032 typebuf.tb_change_cnt); | |
2033 /* | |
2034 * If inchar() returns TRUE (script file was active) or we | |
2035 * are inside a mapping, get out of insert mode. | |
2036 * Otherwise we behave like having gotten a CTRL-C. | |
2037 * As a result typing CTRL-C in insert mode will | |
2038 * really insert a CTRL-C. | |
2039 */ | |
2040 if ((c || typebuf.tb_maplen) | |
2041 && (State & (INSERT + CMDLINE))) | |
2042 c = ESC; | |
2043 else | |
2044 c = Ctrl_C; | |
2045 flush_buffers(TRUE); /* flush all typeahead */ | |
2046 | |
988 | 2047 if (advance) |
2048 { | |
2049 /* Also record this character, it might be needed to | |
2050 * get out of Insert mode. */ | |
2051 *typebuf.tb_buf = c; | |
2052 gotchars(typebuf.tb_buf, 1); | |
2053 } | |
7 | 2054 cmd_silent = FALSE; |
2055 | |
2056 break; | |
2057 } | |
2058 else if (typebuf.tb_len > 0) | |
2059 { | |
2060 /* | |
2061 * Check for a mappable key sequence. | |
2062 * Walk through one maphash[] list until we find an | |
2063 * entry that matches. | |
2064 * | |
2065 * Don't look for mappings if: | |
2066 * - no_mapping set: mapping disabled (e.g. for CTRL-V) | |
2067 * - maphash_valid not set: no mappings present. | |
2068 * - typebuf.tb_buf[typebuf.tb_off] should not be remapped | |
2069 * - in insert or cmdline mode and 'paste' option set | |
2070 * - waiting for "hit return to continue" and CR or SPACE | |
2071 * typed | |
2072 * - waiting for a char with --more-- | |
2073 * - in Ctrl-X mode, and we get a valid char for that mode | |
2074 */ | |
2075 mp = NULL; | |
2076 max_mlen = 0; | |
2077 c1 = typebuf.tb_buf[typebuf.tb_off]; | |
2078 if (no_mapping == 0 && maphash_valid | |
2079 && (no_zero_mapping == 0 || c1 != '0') | |
2080 && (typebuf.tb_maplen == 0 | |
2081 || (p_remap | |
10 | 2082 && (typebuf.tb_noremap[typebuf.tb_off] |
2083 & (RM_NONE|RM_ABBR)) == 0)) | |
7 | 2084 && !(p_paste && (State & (INSERT + CMDLINE))) |
2085 && !(State == HITRETURN && (c1 == CAR || c1 == ' ')) | |
2086 && State != ASKMORE | |
2087 && State != CONFIRM | |
2088 #ifdef FEAT_INS_EXPAND | |
2089 && !((ctrl_x_mode != 0 && vim_is_ctrl_x_key(c1)) | |
449 | 2090 || ((compl_cont_status & CONT_LOCAL) |
7 | 2091 && (c1 == Ctrl_N || c1 == Ctrl_P))) |
2092 #endif | |
2093 ) | |
2094 { | |
2095 #ifdef FEAT_LANGMAP | |
2096 if (c1 == K_SPECIAL) | |
2097 nolmaplen = 2; | |
2098 else | |
2099 { | |
2100 LANGMAP_ADJUST(c1, TRUE); | |
2101 nolmaplen = 0; | |
2102 } | |
2103 #endif | |
2104 #ifdef FEAT_LOCALMAP | |
2105 /* First try buffer-local mappings. */ | |
2106 mp = curbuf->b_maphash[MAP_HASH(local_State, c1)]; | |
2107 mp2 = maphash[MAP_HASH(local_State, c1)]; | |
2108 if (mp == NULL) | |
2109 { | |
5035
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
2110 /* There are no buffer-local mappings. */ |
7 | 2111 mp = mp2; |
2112 mp2 = NULL; | |
2113 } | |
2114 #else | |
2115 mp = maphash[MAP_HASH(local_State, c1)]; | |
2116 #endif | |
2117 /* | |
2118 * Loop until a partly matching mapping is found or | |
2119 * all (local) mappings have been checked. | |
2120 * The longest full match is remembered in "mp_match". | |
2121 * A full match is only accepted if there is no partly | |
2122 * match, so "aa" and "aaa" can both be mapped. | |
2123 */ | |
2124 mp_match = NULL; | |
2125 mp_match_len = 0; | |
2126 for ( ; mp != NULL; | |
2127 #ifdef FEAT_LOCALMAP | |
2128 mp->m_next == NULL ? (mp = mp2, mp2 = NULL) : | |
2129 #endif | |
2130 (mp = mp->m_next)) | |
2131 { | |
2132 /* | |
2133 * Only consider an entry if the first character | |
2134 * matches and it is for the current state. | |
2135 * Skip ":lmap" mappings if keys were mapped. | |
2136 */ | |
2137 if (mp->m_keys[0] == c1 | |
2138 && (mp->m_mode & local_State) | |
2139 && ((mp->m_mode & LANGMAP) == 0 | |
2140 || typebuf.tb_maplen == 0)) | |
2141 { | |
2142 #ifdef FEAT_LANGMAP | |
2143 int nomap = nolmaplen; | |
2144 int c2; | |
2145 #endif | |
2146 /* find the match length of this mapping */ | |
2147 for (mlen = 1; mlen < typebuf.tb_len; ++mlen) | |
2148 { | |
2149 #ifdef FEAT_LANGMAP | |
2150 c2 = typebuf.tb_buf[typebuf.tb_off + mlen]; | |
2151 if (nomap > 0) | |
2152 --nomap; | |
2153 else if (c2 == K_SPECIAL) | |
2154 nomap = 2; | |
2155 else | |
2156 LANGMAP_ADJUST(c2, TRUE); | |
2157 if (mp->m_keys[mlen] != c2) | |
2158 #else | |
2159 if (mp->m_keys[mlen] != | |
2160 typebuf.tb_buf[typebuf.tb_off + mlen]) | |
2161 #endif | |
2162 break; | |
2163 } | |
2164 | |
2165 #ifdef FEAT_MBYTE | |
2166 /* Don't allow mapping the first byte(s) of a | |
2167 * multi-byte char. Happens when mapping | |
2168 * <M-a> and then changing 'encoding'. */ | |
2169 if (has_mbyte && MB_BYTE2LEN(c1) | |
474 | 2170 > (*mb_ptr2len)(mp->m_keys)) |
7 | 2171 mlen = 0; |
2172 #endif | |
2173 /* | |
2174 * Check an entry whether it matches. | |
2175 * - Full match: mlen == keylen | |
2176 * - Partly match: mlen == typebuf.tb_len | |
2177 */ | |
2178 keylen = mp->m_keylen; | |
2179 if (mlen == keylen | |
2180 || (mlen == typebuf.tb_len | |
2181 && typebuf.tb_len < keylen)) | |
2182 { | |
2183 /* | |
2184 * If only script-local mappings are | |
2185 * allowed, check if the mapping starts | |
2186 * with K_SNR. | |
2187 */ | |
2188 s = typebuf.tb_noremap + typebuf.tb_off; | |
2189 if (*s == RM_SCRIPT | |
2190 && (mp->m_keys[0] != K_SPECIAL | |
2191 || mp->m_keys[1] != KS_EXTRA | |
2192 || mp->m_keys[2] | |
2193 != (int)KE_SNR)) | |
2194 continue; | |
2195 /* | |
2196 * If one of the typed keys cannot be | |
2197 * remapped, skip the entry. | |
2198 */ | |
2199 for (n = mlen; --n >= 0; ) | |
10 | 2200 if (*s++ & (RM_NONE|RM_ABBR)) |
7 | 2201 break; |
2202 if (n >= 0) | |
2203 continue; | |
2204 | |
2205 if (keylen > typebuf.tb_len) | |
2206 { | |
5035
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
2207 if (!timedout && !(mp_match != NULL |
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
2208 && mp_match->m_nowait)) |
7 | 2209 { |
2210 /* break at a partly match */ | |
2672 | 2211 keylen = KEYLEN_PART_MAP; |
7 | 2212 break; |
2213 } | |
2214 } | |
2215 else if (keylen > mp_match_len) | |
2216 { | |
2217 /* found a longer match */ | |
2218 mp_match = mp; | |
2219 mp_match_len = keylen; | |
2220 } | |
2221 } | |
2222 else | |
2223 /* No match; may have to check for | |
2224 * termcode at next character. */ | |
2225 if (max_mlen < mlen) | |
2226 max_mlen = mlen; | |
2227 } | |
2228 } | |
2229 | |
2230 /* If no partly match found, use the longest full | |
2231 * match. */ | |
2672 | 2232 if (keylen != KEYLEN_PART_MAP) |
7 | 2233 { |
2234 mp = mp_match; | |
2235 keylen = mp_match_len; | |
2236 } | |
2237 } | |
2238 | |
2239 /* Check for match with 'pastetoggle' */ | |
2240 if (*p_pt != NUL && mp == NULL && (State & (INSERT|NORMAL))) | |
2241 { | |
2242 for (mlen = 0; mlen < typebuf.tb_len && p_pt[mlen]; | |
2243 ++mlen) | |
2244 if (p_pt[mlen] != typebuf.tb_buf[typebuf.tb_off | |
2245 + mlen]) | |
2246 break; | |
2247 if (p_pt[mlen] == NUL) /* match */ | |
2248 { | |
2249 /* write chars to script file(s) */ | |
2250 if (mlen > typebuf.tb_maplen) | |
2251 gotchars(typebuf.tb_buf + typebuf.tb_off | |
2252 + typebuf.tb_maplen, | |
2253 mlen - typebuf.tb_maplen); | |
2254 | |
2255 del_typebuf(mlen, 0); /* remove the chars */ | |
2256 set_option_value((char_u *)"paste", | |
2257 (long)!p_paste, NULL, 0); | |
2258 if (!(State & INSERT)) | |
2259 { | |
2260 msg_col = 0; | |
2261 msg_row = Rows - 1; | |
2262 msg_clr_eos(); /* clear ruler */ | |
2263 } | |
2264 showmode(); | |
2265 setcursor(); | |
2266 continue; | |
2267 } | |
2268 /* Need more chars for partly match. */ | |
2269 if (mlen == typebuf.tb_len) | |
2672 | 2270 keylen = KEYLEN_PART_KEY; |
7 | 2271 else if (max_mlen < mlen) |
2272 /* no match, may have to check for termcode at | |
2273 * next character */ | |
2274 max_mlen = mlen + 1; | |
2275 } | |
2276 | |
2277 if ((mp == NULL || max_mlen >= mp_match_len) | |
2672 | 2278 && keylen != KEYLEN_PART_MAP) |
7 | 2279 { |
1618 | 2280 int save_keylen = keylen; |
2281 | |
7 | 2282 /* |
2283 * When no matching mapping found or found a | |
2284 * non-matching mapping that matches at least what the | |
2285 * matching mapping matched: | |
2286 * Check if we have a terminal code, when: | |
2287 * mapping is allowed, | |
2288 * keys have not been mapped, | |
2289 * and not an ESC sequence, not in insert mode or | |
2290 * p_ek is on, | |
2291 * and when not timed out, | |
2292 */ | |
2293 if ((no_mapping == 0 || allow_keys != 0) | |
2294 && (typebuf.tb_maplen == 0 | |
2295 || (p_remap && typebuf.tb_noremap[ | |
2296 typebuf.tb_off] == RM_YES)) | |
2297 && !timedout) | |
2298 { | |
3328 | 2299 keylen = check_termcode(max_mlen + 1, |
2300 NULL, 0, NULL); | |
7 | 2301 |
1618 | 2302 /* If no termcode matched but 'pastetoggle' |
2303 * matched partially it's like an incomplete key | |
2304 * sequence. */ | |
2672 | 2305 if (keylen == 0 && save_keylen == KEYLEN_PART_KEY) |
2306 keylen = KEYLEN_PART_KEY; | |
1618 | 2307 |
7 | 2308 /* |
2309 * When getting a partial match, but the last | |
2310 * characters were not typed, don't wait for a | |
2311 * typed character to complete the termcode. | |
2312 * This helps a lot when a ":normal" command ends | |
2313 * in an ESC. | |
2314 */ | |
2315 if (keylen < 0 | |
2316 && typebuf.tb_len == typebuf.tb_maplen) | |
2317 keylen = 0; | |
2318 } | |
2319 else | |
2320 keylen = 0; | |
2321 if (keylen == 0) /* no matching terminal code */ | |
2322 { | |
2323 #ifdef AMIGA /* check for window bounds report */ | |
2324 if (typebuf.tb_maplen == 0 && (typebuf.tb_buf[ | |
2325 typebuf.tb_off] & 0xff) == CSI) | |
2326 { | |
2327 for (s = typebuf.tb_buf + typebuf.tb_off + 1; | |
2328 s < typebuf.tb_buf + typebuf.tb_off | |
2329 + typebuf.tb_len | |
2330 && (VIM_ISDIGIT(*s) || *s == ';' | |
2331 || *s == ' '); | |
2332 ++s) | |
2333 ; | |
2334 if (*s == 'r' || *s == '|') /* found one */ | |
2335 { | |
2336 del_typebuf((int)(s + 1 - | |
2337 (typebuf.tb_buf + typebuf.tb_off)), 0); | |
2338 /* get size and redraw screen */ | |
2339 shell_resized(); | |
2340 continue; | |
2341 } | |
2342 if (*s == NUL) /* need more characters */ | |
2672 | 2343 keylen = KEYLEN_PART_KEY; |
7 | 2344 } |
2345 if (keylen >= 0) | |
2346 #endif | |
2347 /* When there was a matching mapping and no | |
2348 * termcode could be replaced after another one, | |
1618 | 2349 * use that mapping (loop around). If there was |
2350 * no mapping use the character from the | |
2351 * typeahead buffer right here. */ | |
7 | 2352 if (mp == NULL) |
2353 { | |
2354 /* | |
2355 * get a character: 2. from the typeahead buffer | |
2356 */ | |
2357 c = typebuf.tb_buf[typebuf.tb_off] & 255; | |
2358 if (advance) /* remove chars from tb_buf */ | |
2359 { | |
2360 cmd_silent = (typebuf.tb_silent > 0); | |
2361 if (typebuf.tb_maplen > 0) | |
2362 KeyTyped = FALSE; | |
2363 else | |
2364 { | |
2365 KeyTyped = TRUE; | |
2366 /* write char to script file(s) */ | |
2367 gotchars(typebuf.tb_buf | |
2368 + typebuf.tb_off, 1); | |
2369 } | |
1051 | 2370 KeyNoremap = typebuf.tb_noremap[ |
2371 typebuf.tb_off]; | |
7 | 2372 del_typebuf(1, 0); |
2373 } | |
2374 break; /* got character, break for loop */ | |
2375 } | |
2376 } | |
2377 if (keylen > 0) /* full matching terminal code */ | |
2378 { | |
2379 #if defined(FEAT_GUI) && defined(FEAT_MENU) | |
2672 | 2380 if (typebuf.tb_len >= 2 |
2381 && typebuf.tb_buf[typebuf.tb_off] == K_SPECIAL | |
7 | 2382 && typebuf.tb_buf[typebuf.tb_off + 1] |
2383 == KS_MENU) | |
2384 { | |
2385 /* | |
2386 * Using a menu may cause a break in undo! | |
2387 * It's like using gotchars(), but without | |
2388 * recording or writing to a script file. | |
2389 */ | |
2390 may_sync_undo(); | |
2391 del_typebuf(3, 0); | |
2392 idx = get_menu_index(current_menu, local_State); | |
2393 if (idx != MENU_INDEX_INVALID) | |
2394 { | |
2395 # ifdef FEAT_VISUAL | |
2396 /* | |
788 | 2397 * In Select mode and a Visual mode menu |
2398 * is used: Switch to Visual mode | |
7 | 2399 * temporarily. Append K_SELECT to switch |
2400 * back to Select mode. | |
2401 */ | |
788 | 2402 if (VIsual_active && VIsual_select |
2403 && (current_menu->modes & VISUAL)) | |
7 | 2404 { |
2405 VIsual_select = FALSE; | |
2406 (void)ins_typebuf(K_SELECT_STRING, | |
2407 REMAP_NONE, 0, TRUE, FALSE); | |
2408 } | |
2409 # endif | |
2410 ins_typebuf(current_menu->strings[idx], | |
2411 current_menu->noremap[idx], | |
2412 0, TRUE, | |
2413 current_menu->silent[idx]); | |
2414 } | |
2415 } | |
1462 | 2416 #endif /* FEAT_GUI && FEAT_MENU */ |
7 | 2417 continue; /* try mapping again */ |
2418 } | |
2419 | |
2420 /* Partial match: get some more characters. When a | |
2421 * matching mapping was found use that one. */ | |
2422 if (mp == NULL || keylen < 0) | |
2672 | 2423 keylen = KEYLEN_PART_KEY; |
7 | 2424 else |
2425 keylen = mp_match_len; | |
2426 } | |
2427 | |
2428 /* complete match */ | |
2429 if (keylen >= 0 && keylen <= typebuf.tb_len) | |
2430 { | |
2062
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2431 #ifdef FEAT_EVAL |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2432 int save_m_expr; |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2433 int save_m_noremap; |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2434 int save_m_silent; |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2435 char_u *save_m_keys; |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2436 char_u *save_m_str; |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2437 #else |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2438 # define save_m_noremap mp->m_noremap |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2439 # define save_m_silent mp->m_silent |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2440 #endif |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2441 |
7 | 2442 /* write chars to script file(s) */ |
2443 if (keylen > typebuf.tb_maplen) | |
2444 gotchars(typebuf.tb_buf + typebuf.tb_off | |
2445 + typebuf.tb_maplen, | |
2446 keylen - typebuf.tb_maplen); | |
2447 | |
2448 cmd_silent = (typebuf.tb_silent > 0); | |
2449 del_typebuf(keylen, 0); /* remove the mapped keys */ | |
2450 | |
2451 /* | |
2452 * Put the replacement string in front of mapstr. | |
2453 * The depth check catches ":map x y" and ":map y x". | |
2454 */ | |
2455 if (++mapdepth >= p_mmd) | |
2456 { | |
2457 EMSG(_("E223: recursive mapping")); | |
2458 if (State & CMDLINE) | |
2459 redrawcmdline(); | |
2460 else | |
2461 setcursor(); | |
2462 flush_buffers(FALSE); | |
2463 mapdepth = 0; /* for next one */ | |
2464 c = -1; | |
2465 break; | |
2466 } | |
2467 | |
2468 #ifdef FEAT_VISUAL | |
2469 /* | |
788 | 2470 * In Select mode and a Visual mode mapping is used: |
7 | 2471 * Switch to Visual mode temporarily. Append K_SELECT |
2472 * to switch back to Select mode. | |
2473 */ | |
788 | 2474 if (VIsual_active && VIsual_select |
2475 && (mp->m_mode & VISUAL)) | |
7 | 2476 { |
2477 VIsual_select = FALSE; | |
2478 (void)ins_typebuf(K_SELECT_STRING, REMAP_NONE, | |
2479 0, TRUE, FALSE); | |
2480 } | |
2481 #endif | |
2482 | |
721 | 2483 #ifdef FEAT_EVAL |
2062
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2484 /* Copy the values from *mp that are used, because |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2485 * evaluating the expression may invoke a function |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2486 * that redefines the mapping, thereby making *mp |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2487 * invalid. */ |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2488 save_m_expr = mp->m_expr; |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2489 save_m_noremap = mp->m_noremap; |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2490 save_m_silent = mp->m_silent; |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2491 save_m_keys = NULL; /* only saved when needed */ |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2492 save_m_str = NULL; /* only saved when needed */ |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2493 |
721 | 2494 /* |
2495 * Handle ":map <expr>": evaluate the {rhs} as an | |
3135 | 2496 * expression. Also save and restore the command line |
2497 * for "normal :". | |
721 | 2498 */ |
2499 if (mp->m_expr) | |
822 | 2500 { |
2501 int save_vgetc_busy = vgetc_busy; | |
2502 | |
3135 | 2503 vgetc_busy = 0; |
2504 save_m_keys = vim_strsave(mp->m_keys); | |
2505 save_m_str = vim_strsave(mp->m_str); | |
2506 s = eval_map_expr(save_m_str, NUL); | |
2507 vgetc_busy = save_vgetc_busy; | |
822 | 2508 } |
721 | 2509 else |
2510 #endif | |
2511 s = mp->m_str; | |
2512 | |
7 | 2513 /* |
2514 * Insert the 'to' part in the typebuf.tb_buf. | |
2515 * If 'from' field is the same as the start of the | |
10 | 2516 * 'to' field, don't remap the first character (but do |
2517 * allow abbreviations). | |
7 | 2518 * If m_noremap is set, don't remap the whole 'to' |
2519 * part. | |
2520 */ | |
721 | 2521 if (s == NULL) |
2522 i = FAIL; | |
2523 else | |
2524 { | |
2066
2bd96108392e
updated for version 7.2.351
Bram Moolenaar <bram@zimbu.org>
parents:
2062
diff
changeset
|
2525 int noremap; |
2bd96108392e
updated for version 7.2.351
Bram Moolenaar <bram@zimbu.org>
parents:
2062
diff
changeset
|
2526 |
2bd96108392e
updated for version 7.2.351
Bram Moolenaar <bram@zimbu.org>
parents:
2062
diff
changeset
|
2527 if (save_m_noremap != REMAP_YES) |
2bd96108392e
updated for version 7.2.351
Bram Moolenaar <bram@zimbu.org>
parents:
2062
diff
changeset
|
2528 noremap = save_m_noremap; |
2bd96108392e
updated for version 7.2.351
Bram Moolenaar <bram@zimbu.org>
parents:
2062
diff
changeset
|
2529 else if ( |
2062
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2530 #ifdef FEAT_EVAL |
2066
2bd96108392e
updated for version 7.2.351
Bram Moolenaar <bram@zimbu.org>
parents:
2062
diff
changeset
|
2531 STRNCMP(s, save_m_keys != NULL |
2bd96108392e
updated for version 7.2.351
Bram Moolenaar <bram@zimbu.org>
parents:
2062
diff
changeset
|
2532 ? save_m_keys : mp->m_keys, |
2bd96108392e
updated for version 7.2.351
Bram Moolenaar <bram@zimbu.org>
parents:
2062
diff
changeset
|
2533 (size_t)keylen) |
2bd96108392e
updated for version 7.2.351
Bram Moolenaar <bram@zimbu.org>
parents:
2062
diff
changeset
|
2534 #else |
2bd96108392e
updated for version 7.2.351
Bram Moolenaar <bram@zimbu.org>
parents:
2062
diff
changeset
|
2535 STRNCMP(s, mp->m_keys, (size_t)keylen) |
2062
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2536 #endif |
2066
2bd96108392e
updated for version 7.2.351
Bram Moolenaar <bram@zimbu.org>
parents:
2062
diff
changeset
|
2537 != 0) |
2bd96108392e
updated for version 7.2.351
Bram Moolenaar <bram@zimbu.org>
parents:
2062
diff
changeset
|
2538 noremap = REMAP_YES; |
2bd96108392e
updated for version 7.2.351
Bram Moolenaar <bram@zimbu.org>
parents:
2062
diff
changeset
|
2539 else |
2bd96108392e
updated for version 7.2.351
Bram Moolenaar <bram@zimbu.org>
parents:
2062
diff
changeset
|
2540 noremap = REMAP_SKIP; |
2bd96108392e
updated for version 7.2.351
Bram Moolenaar <bram@zimbu.org>
parents:
2062
diff
changeset
|
2541 i = ins_typebuf(s, noremap, |
2bd96108392e
updated for version 7.2.351
Bram Moolenaar <bram@zimbu.org>
parents:
2062
diff
changeset
|
2542 0, TRUE, cmd_silent || save_m_silent); |
721 | 2543 #ifdef FEAT_EVAL |
2062
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2544 if (save_m_expr) |
721 | 2545 vim_free(s); |
2546 #endif | |
2547 } | |
2062
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2548 #ifdef FEAT_EVAL |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2549 vim_free(save_m_keys); |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2550 vim_free(save_m_str); |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
1992
diff
changeset
|
2551 #endif |
721 | 2552 if (i == FAIL) |
7 | 2553 { |
2554 c = -1; | |
2555 break; | |
2556 } | |
2557 continue; | |
2558 } | |
2559 } | |
2560 | |
2561 /* | |
2562 * get a character: 3. from the user - handle <Esc> in Insert mode | |
2563 */ | |
2564 /* | |
2565 * special case: if we get an <ESC> in insert mode and there | |
2566 * are no more characters at once, we pretend to go out of | |
2567 * insert mode. This prevents the one second delay after | |
2568 * typing an <ESC>. If we get something after all, we may | |
2569 * have to redisplay the mode. That the cursor is in the wrong | |
2570 * place does not matter. | |
2571 */ | |
2572 c = 0; | |
2573 #ifdef FEAT_CMDL_INFO | |
2574 new_wcol = curwin->w_wcol; | |
2575 new_wrow = curwin->w_wrow; | |
2576 #endif | |
2577 if ( advance | |
2578 && typebuf.tb_len == 1 | |
2579 && typebuf.tb_buf[typebuf.tb_off] == ESC | |
2580 && !no_mapping | |
2581 #ifdef FEAT_EX_EXTRA | |
2582 && ex_normal_busy == 0 | |
2583 #endif | |
2584 && typebuf.tb_maplen == 0 | |
2585 && (State & INSERT) | |
2672 | 2586 && (p_timeout |
2587 || (keylen == KEYLEN_PART_KEY && p_ttimeout)) | |
7 | 2588 && (c = inchar(typebuf.tb_buf + typebuf.tb_off |
2589 + typebuf.tb_len, 3, 25L, | |
2590 typebuf.tb_change_cnt)) == 0) | |
2591 { | |
2592 colnr_T col = 0, vcol; | |
2593 char_u *ptr; | |
2594 | |
643 | 2595 if (mode_displayed) |
7 | 2596 { |
2597 unshowmode(TRUE); | |
2598 mode_deleted = TRUE; | |
2599 } | |
2600 #ifdef FEAT_GUI | |
2601 /* may show different cursor shape */ | |
2602 if (gui.in_use) | |
2603 { | |
2604 int save_State; | |
2605 | |
2606 save_State = State; | |
2607 State = NORMAL; | |
2608 gui_update_cursor(TRUE, FALSE); | |
2609 State = save_State; | |
2610 shape_changed = TRUE; | |
2611 } | |
2612 #endif | |
2613 validate_cursor(); | |
2614 old_wcol = curwin->w_wcol; | |
2615 old_wrow = curwin->w_wrow; | |
2616 | |
2617 /* move cursor left, if possible */ | |
2618 if (curwin->w_cursor.col != 0) | |
2619 { | |
2620 if (curwin->w_wcol > 0) | |
2621 { | |
2622 if (did_ai) | |
2623 { | |
2624 /* | |
2625 * We are expecting to truncate the trailing | |
2626 * white-space, so find the last non-white | |
2627 * character -- webb | |
2628 */ | |
2629 col = vcol = curwin->w_wcol = 0; | |
2630 ptr = ml_get_curline(); | |
2631 while (col < curwin->w_cursor.col) | |
2632 { | |
2633 if (!vim_iswhite(ptr[col])) | |
2634 curwin->w_wcol = vcol; | |
2635 vcol += lbr_chartabsize(ptr + col, | |
2636 (colnr_T)vcol); | |
2637 #ifdef FEAT_MBYTE | |
2638 if (has_mbyte) | |
474 | 2639 col += (*mb_ptr2len)(ptr + col); |
7 | 2640 else |
2641 #endif | |
2642 ++col; | |
2643 } | |
2644 curwin->w_wrow = curwin->w_cline_row | |
2645 + curwin->w_wcol / W_WIDTH(curwin); | |
2646 curwin->w_wcol %= W_WIDTH(curwin); | |
2647 curwin->w_wcol += curwin_col_off(); | |
2648 #ifdef FEAT_MBYTE | |
2649 col = 0; /* no correction needed */ | |
2650 #endif | |
2651 } | |
2652 else | |
2653 { | |
2654 --curwin->w_wcol; | |
2655 #ifdef FEAT_MBYTE | |
2656 col = curwin->w_cursor.col - 1; | |
2657 #endif | |
2658 } | |
2659 } | |
2660 else if (curwin->w_p_wrap && curwin->w_wrow) | |
2661 { | |
2662 --curwin->w_wrow; | |
2663 curwin->w_wcol = W_WIDTH(curwin) - 1; | |
2664 #ifdef FEAT_MBYTE | |
2665 col = curwin->w_cursor.col - 1; | |
2666 #endif | |
2667 } | |
2668 #ifdef FEAT_MBYTE | |
2669 if (has_mbyte && col > 0 && curwin->w_wcol > 0) | |
2670 { | |
2671 /* Correct when the cursor is on the right halve | |
2672 * of a double-wide character. */ | |
2673 ptr = ml_get_curline(); | |
2674 col -= (*mb_head_off)(ptr, ptr + col); | |
2675 if ((*mb_ptr2cells)(ptr + col) > 1) | |
2676 --curwin->w_wcol; | |
2677 } | |
2678 #endif | |
2679 } | |
2680 setcursor(); | |
2681 out_flush(); | |
2682 #ifdef FEAT_CMDL_INFO | |
2683 new_wcol = curwin->w_wcol; | |
2684 new_wrow = curwin->w_wrow; | |
2685 #endif | |
2686 curwin->w_wcol = old_wcol; | |
2687 curwin->w_wrow = old_wrow; | |
2688 } | |
2689 if (c < 0) | |
2690 continue; /* end of input script reached */ | |
2691 typebuf.tb_len += c; | |
2692 | |
2693 /* buffer full, don't map */ | |
2694 if (typebuf.tb_len >= typebuf.tb_maplen + MAXMAPLEN) | |
2695 { | |
2696 timedout = TRUE; | |
2697 continue; | |
2698 } | |
2699 | |
2700 #ifdef FEAT_EX_EXTRA | |
2701 if (ex_normal_busy > 0) | |
2702 { | |
2703 # ifdef FEAT_CMDWIN | |
2704 static int tc = 0; | |
2705 # endif | |
2706 | |
2707 /* No typeahead left and inside ":normal". Must return | |
2708 * something to avoid getting stuck. When an incomplete | |
2709 * mapping is present, behave like it timed out. */ | |
2710 if (typebuf.tb_len > 0) | |
2711 { | |
2712 timedout = TRUE; | |
2713 continue; | |
2714 } | |
2715 /* When 'insertmode' is set, ESC just beeps in Insert | |
2716 * mode. Use CTRL-L to make edit() return. | |
2717 * For the command line only CTRL-C always breaks it. | |
2718 * For the cmdline window: Alternate between ESC and | |
2719 * CTRL-C: ESC for most situations and CTRL-C to close the | |
2720 * cmdline window. */ | |
2721 if (p_im && (State & INSERT)) | |
2722 c = Ctrl_L; | |
2723 else if ((State & CMDLINE) | |
2724 # ifdef FEAT_CMDWIN | |
2725 || (cmdwin_type > 0 && tc == ESC) | |
2726 # endif | |
2727 ) | |
2728 c = Ctrl_C; | |
2729 else | |
2730 c = ESC; | |
2731 # ifdef FEAT_CMDWIN | |
2732 tc = c; | |
2733 # endif | |
2734 break; | |
2735 } | |
2736 #endif | |
2737 | |
2738 /* | |
2739 * get a character: 3. from the user - update display | |
2740 */ | |
2741 /* In insert mode a screen update is skipped when characters | |
2742 * are still available. But when those available characters | |
2743 * are part of a mapping, and we are going to do a blocking | |
2744 * wait here. Need to update the screen to display the | |
2721 | 2745 * changed text so far. Also for when 'lazyredraw' is set and |
2746 * redrawing was postponed because there was something in the | |
2747 * input buffer (e.g., termresponse). */ | |
2723 | 2748 if (((State & INSERT) != 0 || p_lz) && (State & CMDLINE) == 0 |
2749 && advance && must_redraw != 0 && !need_wait_return) | |
7 | 2750 { |
2751 update_screen(0); | |
2752 setcursor(); /* put cursor back where it belongs */ | |
2753 } | |
2754 | |
2755 /* | |
2756 * If we have a partial match (and are going to wait for more | |
2757 * input from the user), show the partially matched characters | |
2758 * to the user with showcmd. | |
2759 */ | |
2760 #ifdef FEAT_CMDL_INFO | |
2761 i = 0; | |
2762 #endif | |
2763 c1 = 0; | |
2764 if (typebuf.tb_len > 0 && advance && !exmode_active) | |
2765 { | |
2766 if (((State & (NORMAL | INSERT)) || State == LANGMAP) | |
2767 && State != HITRETURN) | |
2768 { | |
2769 /* this looks nice when typing a dead character map */ | |
2770 if (State & INSERT | |
2771 && ptr2cells(typebuf.tb_buf + typebuf.tb_off | |
2772 + typebuf.tb_len - 1) == 1) | |
2773 { | |
2774 edit_putchar(typebuf.tb_buf[typebuf.tb_off | |
2775 + typebuf.tb_len - 1], FALSE); | |
2776 setcursor(); /* put cursor back where it belongs */ | |
2777 c1 = 1; | |
2778 } | |
2779 #ifdef FEAT_CMDL_INFO | |
2780 /* need to use the col and row from above here */ | |
2781 old_wcol = curwin->w_wcol; | |
2782 old_wrow = curwin->w_wrow; | |
2783 curwin->w_wcol = new_wcol; | |
2784 curwin->w_wrow = new_wrow; | |
2785 push_showcmd(); | |
2786 if (typebuf.tb_len > SHOWCMD_COLS) | |
2787 i = typebuf.tb_len - SHOWCMD_COLS; | |
2788 while (i < typebuf.tb_len) | |
2789 (void)add_to_showcmd(typebuf.tb_buf[typebuf.tb_off | |
2790 + i++]); | |
2791 curwin->w_wcol = old_wcol; | |
2792 curwin->w_wrow = old_wrow; | |
2793 #endif | |
2794 } | |
2795 | |
2796 /* this looks nice when typing a dead character map */ | |
2797 if ((State & CMDLINE) | |
2798 #if defined(FEAT_CRYPT) || defined(FEAT_EVAL) | |
2799 && cmdline_star == 0 | |
2800 #endif | |
2801 && ptr2cells(typebuf.tb_buf + typebuf.tb_off | |
2802 + typebuf.tb_len - 1) == 1) | |
2803 { | |
2804 putcmdline(typebuf.tb_buf[typebuf.tb_off | |
2805 + typebuf.tb_len - 1], FALSE); | |
2806 c1 = 1; | |
2807 } | |
2808 } | |
2809 | |
2810 /* | |
2811 * get a character: 3. from the user - get it | |
2812 */ | |
202 | 2813 wait_tb_len = typebuf.tb_len; |
7 | 2814 c = inchar(typebuf.tb_buf + typebuf.tb_off + typebuf.tb_len, |
2815 typebuf.tb_buflen - typebuf.tb_off - typebuf.tb_len - 1, | |
2816 !advance | |
2817 ? 0 | |
2818 : ((typebuf.tb_len == 0 | |
2819 || !(p_timeout || (p_ttimeout | |
2672 | 2820 && keylen == KEYLEN_PART_KEY))) |
7 | 2821 ? -1L |
2672 | 2822 : ((keylen == KEYLEN_PART_KEY && p_ttm >= 0) |
7 | 2823 ? p_ttm |
2824 : p_tm)), typebuf.tb_change_cnt); | |
2825 | |
2826 #ifdef FEAT_CMDL_INFO | |
2827 if (i != 0) | |
2828 pop_showcmd(); | |
2829 #endif | |
2830 if (c1 == 1) | |
2831 { | |
2832 if (State & INSERT) | |
2833 edit_unputchar(); | |
2834 if (State & CMDLINE) | |
2835 unputcmdline(); | |
3560 | 2836 else |
2837 setcursor(); /* put cursor back where it belongs */ | |
7 | 2838 } |
2839 | |
2840 if (c < 0) | |
2841 continue; /* end of input script reached */ | |
2842 if (c == NUL) /* no character available */ | |
2843 { | |
2844 if (!advance) | |
2845 break; | |
202 | 2846 if (wait_tb_len > 0) /* timed out */ |
7 | 2847 { |
2848 timedout = TRUE; | |
2849 continue; | |
2850 } | |
2851 } | |
2852 else | |
2853 { /* allow mapping for just typed characters */ | |
2854 while (typebuf.tb_buf[typebuf.tb_off | |
2855 + typebuf.tb_len] != NUL) | |
2856 typebuf.tb_noremap[typebuf.tb_off | |
2857 + typebuf.tb_len++] = RM_YES; | |
2858 #ifdef USE_IM_CONTROL | |
2859 /* Get IM status right after getting keys, not after the | |
2860 * timeout for a mapping (focus may be lost by then). */ | |
2861 vgetc_im_active = im_get_status(); | |
2862 #endif | |
2863 } | |
2864 } /* for (;;) */ | |
2865 } /* if (!character from stuffbuf) */ | |
2866 | |
2867 /* if advance is FALSE don't loop on NULs */ | |
2868 } while (c < 0 || (advance && c == NUL)); | |
2869 | |
2870 /* | |
2871 * The "INSERT" message is taken care of here: | |
2872 * if we return an ESC to exit insert mode, the message is deleted | |
2873 * if we don't return an ESC but deleted the message before, redisplay it | |
2874 */ | |
641 | 2875 if (advance && p_smd && msg_silent == 0 && (State & INSERT)) |
7 | 2876 { |
643 | 2877 if (c == ESC && !mode_deleted && !no_mapping && mode_displayed) |
7 | 2878 { |
2879 if (typebuf.tb_len && !KeyTyped) | |
2880 redraw_cmdline = TRUE; /* delete mode later */ | |
2881 else | |
2882 unshowmode(FALSE); | |
2883 } | |
2884 else if (c != ESC && mode_deleted) | |
2885 { | |
2886 if (typebuf.tb_len && !KeyTyped) | |
2887 redraw_cmdline = TRUE; /* show mode later */ | |
2888 else | |
2889 showmode(); | |
2890 } | |
2891 } | |
2892 #ifdef FEAT_GUI | |
2893 /* may unshow different cursor shape */ | |
2894 if (gui.in_use && shape_changed) | |
2895 gui_update_cursor(TRUE, FALSE); | |
2896 #endif | |
2897 | |
822 | 2898 --vgetc_busy; |
7 | 2899 |
2900 return c; | |
2901 } | |
2902 | |
2903 /* | |
2904 * inchar() - get one character from | |
2905 * 1. a scriptfile | |
2906 * 2. the keyboard | |
2907 * | |
2908 * As much characters as we can get (upto 'maxlen') are put in "buf" and | |
2909 * NUL terminated (buffer length must be 'maxlen' + 1). | |
2910 * Minimum for "maxlen" is 3!!!! | |
2911 * | |
2912 * "tb_change_cnt" is the value of typebuf.tb_change_cnt if "buf" points into | |
2913 * it. When typebuf.tb_change_cnt changes (e.g., when a message is received | |
2914 * from a remote client) "buf" can no longer be used. "tb_change_cnt" is 0 | |
2915 * otherwise. | |
2916 * | |
2917 * If we got an interrupt all input is read until none is available. | |
2918 * | |
2919 * If wait_time == 0 there is no waiting for the char. | |
2920 * If wait_time == n we wait for n msec for a character to arrive. | |
2921 * If wait_time == -1 we wait forever for a character to arrive. | |
2922 * | |
2923 * Return the number of obtained characters. | |
2924 * Return -1 when end of input script reached. | |
2925 */ | |
2926 int | |
2927 inchar(buf, maxlen, wait_time, tb_change_cnt) | |
2928 char_u *buf; | |
2929 int maxlen; | |
2930 long wait_time; /* milli seconds */ | |
2931 int tb_change_cnt; | |
2932 { | |
2933 int len = 0; /* init for GCC */ | |
2934 int retesc = FALSE; /* return ESC with gotint */ | |
2935 int script_char; | |
2936 | |
2937 if (wait_time == -1L || wait_time > 100L) /* flush output before waiting */ | |
2938 { | |
2939 cursor_on(); | |
2940 out_flush(); | |
2941 #ifdef FEAT_GUI | |
2942 if (gui.in_use) | |
2943 { | |
2944 gui_update_cursor(FALSE, FALSE); | |
2945 # ifdef FEAT_MOUSESHAPE | |
2946 if (postponed_mouseshape) | |
2947 update_mouseshape(-1); | |
2948 # endif | |
2949 } | |
2950 #endif | |
2951 } | |
2952 | |
2953 /* | |
2954 * Don't reset these when at the hit-return prompt, otherwise a endless | |
2955 * recursive loop may result (write error in swapfile, hit-return, timeout | |
2956 * on char wait, flush swapfile, write error....). | |
2957 */ | |
2958 if (State != HITRETURN) | |
2959 { | |
2960 did_outofmem_msg = FALSE; /* display out of memory message (again) */ | |
2961 did_swapwrite_msg = FALSE; /* display swap file write error again */ | |
2962 } | |
2963 undo_off = FALSE; /* restart undo now */ | |
2964 | |
2965 /* | |
1462 | 2966 * Get a character from a script file if there is one. |
2967 * If interrupted: Stop reading script files, close them all. | |
7 | 2968 */ |
2969 script_char = -1; | |
1462 | 2970 while (scriptin[curscript] != NULL && script_char < 0 |
2971 #ifdef FEAT_EVAL | |
2972 && !ignore_script | |
2973 #endif | |
2974 ) | |
7 | 2975 { |
1618 | 2976 |
2977 #if defined(FEAT_NETBEANS_INTG) | |
2978 /* Process the queued netbeans messages. */ | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
2979 netbeans_parse_messages(); |
1618 | 2980 #endif |
2981 | |
7 | 2982 if (got_int || (script_char = getc(scriptin[curscript])) < 0) |
2983 { | |
2984 /* Reached EOF. | |
2985 * Careful: closescript() frees typebuf.tb_buf[] and buf[] may | |
2986 * point inside typebuf.tb_buf[]. Don't use buf[] after this! */ | |
2987 closescript(); | |
2988 /* | |
2989 * When reading script file is interrupted, return an ESC to get | |
2990 * back to normal mode. | |
2991 * Otherwise return -1, because typebuf.tb_buf[] has changed. | |
2992 */ | |
2993 if (got_int) | |
2994 retesc = TRUE; | |
2995 else | |
2996 return -1; | |
2997 } | |
2998 else | |
2999 { | |
3000 buf[0] = script_char; | |
3001 len = 1; | |
3002 } | |
3003 } | |
3004 | |
3005 if (script_char < 0) /* did not get a character from script */ | |
3006 { | |
3007 /* | |
3008 * If we got an interrupt, skip all previously typed characters and | |
3009 * return TRUE if quit reading script file. | |
3010 * Stop reading typeahead when a single CTRL-C was read, | |
3011 * fill_input_buf() returns this when not able to read from stdin. | |
3012 * Don't use buf[] here, closescript() may have freed typebuf.tb_buf[] | |
3013 * and buf may be pointing inside typebuf.tb_buf[]. | |
3014 */ | |
3015 if (got_int) | |
3016 { | |
3017 #define DUM_LEN MAXMAPLEN * 3 + 3 | |
3018 char_u dum[DUM_LEN + 1]; | |
3019 | |
3020 for (;;) | |
3021 { | |
3022 len = ui_inchar(dum, DUM_LEN, 0L, 0); | |
3023 if (len == 0 || (len == 1 && dum[0] == 3)) | |
3024 break; | |
3025 } | |
3026 return retesc; | |
3027 } | |
3028 | |
3029 /* | |
3030 * Always flush the output characters when getting input characters | |
3031 * from the user. | |
3032 */ | |
3033 out_flush(); | |
3034 | |
3035 /* | |
3036 * Fill up to a third of the buffer, because each character may be | |
3037 * tripled below. | |
3038 */ | |
3039 len = ui_inchar(buf, maxlen / 3, wait_time, tb_change_cnt); | |
3040 } | |
3041 | |
3042 if (typebuf_changed(tb_change_cnt)) | |
3043 return 0; | |
3044 | |
3045 return fix_input_buffer(buf, len, script_char >= 0); | |
3046 } | |
3047 | |
3048 /* | |
3049 * Fix typed characters for use by vgetc() and check_termcode(). | |
3050 * buf[] must have room to triple the number of bytes! | |
3051 * Returns the new length. | |
3052 */ | |
3053 int | |
3054 fix_input_buffer(buf, len, script) | |
3055 char_u *buf; | |
3056 int len; | |
3057 int script; /* TRUE when reading from a script */ | |
3058 { | |
3059 int i; | |
3060 char_u *p = buf; | |
3061 | |
3062 /* | |
3063 * Two characters are special: NUL and K_SPECIAL. | |
3064 * When compiled With the GUI CSI is also special. | |
3065 * Replace NUL by K_SPECIAL KS_ZERO KE_FILLER | |
3066 * Replace K_SPECIAL by K_SPECIAL KS_SPECIAL KE_FILLER | |
3067 * Replace CSI by K_SPECIAL KS_EXTRA KE_CSI | |
3068 * Don't replace K_SPECIAL when reading a script file. | |
3069 */ | |
3070 for (i = len; --i >= 0; ++p) | |
3071 { | |
3072 #ifdef FEAT_GUI | |
3073 /* When the GUI is used any character can come after a CSI, don't | |
3074 * escape it. */ | |
3075 if (gui.in_use && p[0] == CSI && i >= 2) | |
3076 { | |
3077 p += 2; | |
3078 i -= 2; | |
3079 } | |
3080 /* When the GUI is not used CSI needs to be escaped. */ | |
3081 else if (!gui.in_use && p[0] == CSI) | |
3082 { | |
3083 mch_memmove(p + 3, p + 1, (size_t)i); | |
3084 *p++ = K_SPECIAL; | |
3085 *p++ = KS_EXTRA; | |
3086 *p = (int)KE_CSI; | |
3087 len += 2; | |
3088 } | |
3089 else | |
3090 #endif | |
3091 if (p[0] == NUL || (p[0] == K_SPECIAL && !script | |
202 | 3092 #ifdef FEAT_AUTOCMD |
3093 /* timeout may generate K_CURSORHOLD */ | |
3094 && (i < 2 || p[1] != KS_EXTRA || p[2] != (int)KE_CURSORHOLD) | |
3095 #endif | |
7 | 3096 #if defined(WIN3264) && !defined(FEAT_GUI) |
3097 /* Win32 console passes modifiers */ | |
3098 && (i < 2 || p[1] != KS_MODIFIER) | |
3099 #endif | |
3100 )) | |
3101 { | |
3102 mch_memmove(p + 3, p + 1, (size_t)i); | |
3103 p[2] = K_THIRD(p[0]); | |
3104 p[1] = K_SECOND(p[0]); | |
3105 p[0] = K_SPECIAL; | |
3106 p += 2; | |
3107 len += 2; | |
3108 } | |
3109 } | |
3110 *p = NUL; /* add trailing NUL */ | |
3111 return len; | |
3112 } | |
3113 | |
3114 #if defined(USE_INPUT_BUF) || defined(PROTO) | |
3115 /* | |
3116 * Return TRUE when bytes are in the input buffer or in the typeahead buffer. | |
3117 * Normally the input buffer would be sufficient, but the server_to_input_buf() | |
842 | 3118 * or feedkeys() may insert characters in the typeahead buffer while we are |
841 | 3119 * waiting for input to arrive. |
7 | 3120 */ |
3121 int | |
3122 input_available() | |
3123 { | |
3124 return (!vim_is_input_buf_empty() | |
841 | 3125 # if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL) |
3126 || typebuf_was_filled | |
7 | 3127 # endif |
3128 ); | |
3129 } | |
3130 #endif | |
3131 | |
3132 /* | |
3133 * map[!] : show all key mappings | |
3134 * map[!] {lhs} : show key mapping for {lhs} | |
3135 * map[!] {lhs} {rhs} : set key mapping for {lhs} to {rhs} | |
3136 * noremap[!] {lhs} {rhs} : same, but no remapping for {rhs} | |
3137 * unmap[!] {lhs} : remove key mapping for {lhs} | |
3138 * abbr : show all abbreviations | |
3139 * abbr {lhs} : show abbreviations for {lhs} | |
3140 * abbr {lhs} {rhs} : set abbreviation for {lhs} to {rhs} | |
3141 * noreabbr {lhs} {rhs} : same, but no remapping for {rhs} | |
3142 * unabbr {lhs} : remove abbreviation for {lhs} | |
3143 * | |
3144 * maptype: 0 for :map, 1 for :unmap, 2 for noremap. | |
3145 * | |
3146 * arg is pointer to any arguments. Note: arg cannot be a read-only string, | |
3147 * it will be modified. | |
3148 * | |
788 | 3149 * for :map mode is NORMAL + VISUAL + SELECTMODE + OP_PENDING |
7 | 3150 * for :map! mode is INSERT + CMDLINE |
3151 * for :cmap mode is CMDLINE | |
3152 * for :imap mode is INSERT | |
3153 * for :lmap mode is LANGMAP | |
3154 * for :nmap mode is NORMAL | |
788 | 3155 * for :vmap mode is VISUAL + SELECTMODE |
3156 * for :xmap mode is VISUAL | |
3157 * for :smap mode is SELECTMODE | |
7 | 3158 * for :omap mode is OP_PENDING |
3159 * | |
3160 * for :abbr mode is INSERT + CMDLINE | |
3161 * for :iabbr mode is INSERT | |
3162 * for :cabbr mode is CMDLINE | |
3163 * | |
3164 * Return 0 for success | |
3165 * 1 for invalid arguments | |
3166 * 2 for no match | |
3167 * 4 for out of mem | |
3168 * 5 for entry not unique | |
3169 */ | |
3170 int | |
3171 do_map(maptype, arg, mode, abbrev) | |
3172 int maptype; | |
3173 char_u *arg; | |
3174 int mode; | |
3175 int abbrev; /* not a mapping but an abbreviation */ | |
3176 { | |
3177 char_u *keys; | |
3178 mapblock_T *mp, **mpp; | |
3179 char_u *rhs; | |
3180 char_u *p; | |
3181 int n; | |
3182 int len = 0; /* init for GCC */ | |
3183 char_u *newstr; | |
3184 int hasarg; | |
3185 int haskey; | |
3186 int did_it = FALSE; | |
3187 #ifdef FEAT_LOCALMAP | |
3188 int did_local = FALSE; | |
3189 #endif | |
3190 int round; | |
3191 char_u *keys_buf = NULL; | |
3192 char_u *arg_buf = NULL; | |
3193 int retval = 0; | |
3194 int do_backslash; | |
3195 int hash; | |
3196 int new_hash; | |
3197 mapblock_T **abbr_table; | |
3198 mapblock_T **map_table; | |
3199 int unique = FALSE; | |
5035
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
3200 int nowait = FALSE; |
7 | 3201 int silent = FALSE; |
859 | 3202 int special = FALSE; |
721 | 3203 #ifdef FEAT_EVAL |
3204 int expr = FALSE; | |
3205 #endif | |
7 | 3206 int noremap; |
2610 | 3207 char_u *orig_rhs; |
7 | 3208 |
3209 keys = arg; | |
3210 map_table = maphash; | |
3211 abbr_table = &first_abbr; | |
3212 | |
3213 /* For ":noremap" don't remap, otherwise do remap. */ | |
3214 if (maptype == 2) | |
3215 noremap = REMAP_NONE; | |
3216 else | |
3217 noremap = REMAP_YES; | |
3218 | |
5035
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
3219 /* Accept <buffer>, <nowait>, <silent>, <expr> <script> and <unique> in |
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
3220 * any order. */ |
7 | 3221 for (;;) |
3222 { | |
3223 #ifdef FEAT_LOCALMAP | |
3224 /* | |
3225 * Check for "<buffer>": mapping local to buffer. | |
3226 */ | |
3227 if (STRNCMP(keys, "<buffer>", 8) == 0) | |
3228 { | |
3229 keys = skipwhite(keys + 8); | |
3230 map_table = curbuf->b_maphash; | |
3231 abbr_table = &curbuf->b_first_abbr; | |
3232 continue; | |
3233 } | |
3234 #endif | |
3235 | |
3236 /* | |
5035
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
3237 * Check for "<nowait>": don't wait for more characters. |
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
3238 */ |
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
3239 if (STRNCMP(keys, "<nowait>", 8) == 0) |
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
3240 { |
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
3241 keys = skipwhite(keys + 8); |
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
3242 nowait = TRUE; |
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
3243 continue; |
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
3244 } |
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
3245 |
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
3246 /* |
7 | 3247 * Check for "<silent>": don't echo commands. |
3248 */ | |
3249 if (STRNCMP(keys, "<silent>", 8) == 0) | |
3250 { | |
3251 keys = skipwhite(keys + 8); | |
3252 silent = TRUE; | |
3253 continue; | |
3254 } | |
3255 | |
859 | 3256 /* |
3257 * Check for "<special>": accept special keys in <> | |
3258 */ | |
3259 if (STRNCMP(keys, "<special>", 9) == 0) | |
3260 { | |
3261 keys = skipwhite(keys + 9); | |
3262 special = TRUE; | |
3263 continue; | |
3264 } | |
3265 | |
7 | 3266 #ifdef FEAT_EVAL |
3267 /* | |
3268 * Check for "<script>": remap script-local mappings only | |
3269 */ | |
3270 if (STRNCMP(keys, "<script>", 8) == 0) | |
3271 { | |
3272 keys = skipwhite(keys + 8); | |
3273 noremap = REMAP_SCRIPT; | |
3274 continue; | |
3275 } | |
721 | 3276 |
3277 /* | |
3278 * Check for "<expr>": {rhs} is an expression. | |
3279 */ | |
3280 if (STRNCMP(keys, "<expr>", 6) == 0) | |
3281 { | |
3282 keys = skipwhite(keys + 6); | |
3283 expr = TRUE; | |
3284 continue; | |
3285 } | |
7 | 3286 #endif |
3287 /* | |
3288 * Check for "<unique>": don't overwrite an existing mapping. | |
3289 */ | |
3290 if (STRNCMP(keys, "<unique>", 8) == 0) | |
3291 { | |
3292 keys = skipwhite(keys + 8); | |
3293 unique = TRUE; | |
3294 continue; | |
3295 } | |
3296 break; | |
3297 } | |
3298 | |
3299 validate_maphash(); | |
3300 | |
3301 /* | |
3022 | 3302 * Find end of keys and skip CTRL-Vs (and backslashes) in it. |
7 | 3303 * Accept backslash like CTRL-V when 'cpoptions' does not contain 'B'. |
3022 | 3304 * with :unmap white space is included in the keys, no argument possible. |
7 | 3305 */ |
3306 p = keys; | |
3307 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL); | |
3308 while (*p && (maptype == 1 || !vim_iswhite(*p))) | |
3309 { | |
3310 if ((p[0] == Ctrl_V || (do_backslash && p[0] == '\\')) && | |
3311 p[1] != NUL) | |
3312 ++p; /* skip CTRL-V or backslash */ | |
3313 ++p; | |
3314 } | |
3315 if (*p != NUL) | |
3316 *p++ = NUL; | |
2610 | 3317 |
7 | 3318 p = skipwhite(p); |
3319 rhs = p; | |
3320 hasarg = (*rhs != NUL); | |
3321 haskey = (*keys != NUL); | |
3322 | |
3323 /* check for :unmap without argument */ | |
3324 if (maptype == 1 && !haskey) | |
3325 { | |
3326 retval = 1; | |
3327 goto theend; | |
3328 } | |
3329 | |
3330 /* | |
3331 * If mapping has been given as ^V<C_UP> say, then replace the term codes | |
3332 * with the appropriate two bytes. If it is a shifted special key, unshift | |
3333 * it too, giving another two bytes. | |
3334 * replace_termcodes() may move the result to allocated memory, which | |
3335 * needs to be freed later (*keys_buf and *arg_buf). | |
3336 * replace_termcodes() also removes CTRL-Vs and sometimes backslashes. | |
3337 */ | |
3338 if (haskey) | |
859 | 3339 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE, special); |
2623 | 3340 orig_rhs = rhs; |
7 | 3341 if (hasarg) |
3342 { | |
3343 if (STRICMP(rhs, "<nop>") == 0) /* "<Nop>" means nothing */ | |
3344 rhs = (char_u *)""; | |
3345 else | |
859 | 3346 rhs = replace_termcodes(rhs, &arg_buf, FALSE, TRUE, special); |
7 | 3347 } |
3348 | |
3349 #ifdef FEAT_FKMAP | |
3350 /* | |
2610 | 3351 * When in right-to-left mode and alternate keymap option set, |
7 | 3352 * reverse the character flow in the rhs in Farsi. |
3353 */ | |
3354 if (p_altkeymap && curwin->w_p_rl) | |
3355 lrswap(rhs); | |
3356 #endif | |
3357 | |
3358 /* | |
3359 * check arguments and translate function keys | |
3360 */ | |
3361 if (haskey) | |
3362 { | |
3363 len = (int)STRLEN(keys); | |
3364 if (len > MAXMAPLEN) /* maximum length of MAXMAPLEN chars */ | |
3365 { | |
3366 retval = 1; | |
3367 goto theend; | |
3368 } | |
3369 | |
3370 if (abbrev && maptype != 1) | |
3371 { | |
3372 /* | |
3373 * If an abbreviation ends in a keyword character, the | |
3374 * rest must be all keyword-char or all non-keyword-char. | |
3375 * Otherwise we won't be able to find the start of it in a | |
3376 * vi-compatible way. | |
3377 */ | |
3378 #ifdef FEAT_MBYTE | |
3379 if (has_mbyte) | |
3380 { | |
3381 int first, last; | |
3382 int same = -1; | |
3383 | |
3384 first = vim_iswordp(keys); | |
3385 last = first; | |
474 | 3386 p = keys + (*mb_ptr2len)(keys); |
7 | 3387 n = 1; |
3388 while (p < keys + len) | |
3389 { | |
3390 ++n; /* nr of (multi-byte) chars */ | |
3391 last = vim_iswordp(p); /* type of last char */ | |
3392 if (same == -1 && last != first) | |
3393 same = n - 1; /* count of same char type */ | |
474 | 3394 p += (*mb_ptr2len)(p); |
7 | 3395 } |
3396 if (last && n > 2 && same >= 0 && same < n - 1) | |
3397 { | |
3398 retval = 1; | |
3399 goto theend; | |
3400 } | |
3401 } | |
3402 else | |
3403 #endif | |
3404 if (vim_iswordc(keys[len - 1])) /* ends in keyword char */ | |
3405 for (n = 0; n < len - 2; ++n) | |
3406 if (vim_iswordc(keys[n]) != vim_iswordc(keys[len - 2])) | |
3407 { | |
3408 retval = 1; | |
3409 goto theend; | |
3410 } | |
1992 | 3411 /* An abbreviation cannot contain white space. */ |
7 | 3412 for (n = 0; n < len; ++n) |
3413 if (vim_iswhite(keys[n])) | |
3414 { | |
3415 retval = 1; | |
3416 goto theend; | |
3417 } | |
3418 } | |
3419 } | |
3420 | |
3421 if (haskey && hasarg && abbrev) /* if we will add an abbreviation */ | |
3422 no_abbr = FALSE; /* reset flag that indicates there are | |
3423 no abbreviations */ | |
3424 | |
3425 if (!haskey || (maptype != 1 && !hasarg)) | |
3426 msg_start(); | |
3427 | |
3428 #ifdef FEAT_LOCALMAP | |
3429 /* | |
3430 * Check if a new local mapping wasn't already defined globally. | |
3431 */ | |
3432 if (map_table == curbuf->b_maphash && haskey && hasarg && maptype != 1) | |
3433 { | |
3434 /* need to loop over all global hash lists */ | |
3435 for (hash = 0; hash < 256 && !got_int; ++hash) | |
3436 { | |
3437 if (abbrev) | |
3438 { | |
3439 if (hash != 0) /* there is only one abbreviation list */ | |
3440 break; | |
3441 mp = first_abbr; | |
3442 } | |
3443 else | |
3444 mp = maphash[hash]; | |
3445 for ( ; mp != NULL && !got_int; mp = mp->m_next) | |
3446 { | |
3447 /* check entries with the same mode */ | |
3448 if ((mp->m_mode & mode) != 0 | |
3449 && mp->m_keylen == len | |
3450 && unique | |
3451 && STRNCMP(mp->m_keys, keys, (size_t)len) == 0) | |
3452 { | |
3453 if (abbrev) | |
3454 EMSG2(_("E224: global abbreviation already exists for %s"), | |
3455 mp->m_keys); | |
3456 else | |
3457 EMSG2(_("E225: global mapping already exists for %s"), | |
3458 mp->m_keys); | |
3459 retval = 5; | |
3460 goto theend; | |
3461 } | |
3462 } | |
3463 } | |
3464 } | |
3465 | |
3466 /* | |
3467 * When listing global mappings, also list buffer-local ones here. | |
3468 */ | |
3469 if (map_table != curbuf->b_maphash && !hasarg && maptype != 1) | |
3470 { | |
3471 /* need to loop over all global hash lists */ | |
3472 for (hash = 0; hash < 256 && !got_int; ++hash) | |
3473 { | |
3474 if (abbrev) | |
3475 { | |
3476 if (hash != 0) /* there is only one abbreviation list */ | |
3477 break; | |
3478 mp = curbuf->b_first_abbr; | |
3479 } | |
3480 else | |
3481 mp = curbuf->b_maphash[hash]; | |
3482 for ( ; mp != NULL && !got_int; mp = mp->m_next) | |
3483 { | |
3484 /* check entries with the same mode */ | |
3485 if ((mp->m_mode & mode) != 0) | |
3486 { | |
3487 if (!haskey) /* show all entries */ | |
3488 { | |
3489 showmap(mp, TRUE); | |
3490 did_local = TRUE; | |
3491 } | |
3492 else | |
3493 { | |
3494 n = mp->m_keylen; | |
3495 if (STRNCMP(mp->m_keys, keys, | |
3496 (size_t)(n < len ? n : len)) == 0) | |
3497 { | |
3498 showmap(mp, TRUE); | |
3499 did_local = TRUE; | |
3500 } | |
3501 } | |
3502 } | |
3503 } | |
3504 } | |
3505 } | |
3506 #endif | |
3507 | |
3508 /* | |
3509 * Find an entry in the maphash[] list that matches. | |
3510 * For :unmap we may loop two times: once to try to unmap an entry with a | |
3511 * matching 'from' part, a second time, if the first fails, to unmap an | |
3512 * entry with a matching 'to' part. This was done to allow ":ab foo bar" | |
3513 * to be unmapped by typing ":unab foo", where "foo" will be replaced by | |
3514 * "bar" because of the abbreviation. | |
3515 */ | |
3516 for (round = 0; (round == 0 || maptype == 1) && round <= 1 | |
3517 && !did_it && !got_int; ++round) | |
3518 { | |
3519 /* need to loop over all hash lists */ | |
3520 for (hash = 0; hash < 256 && !got_int; ++hash) | |
3521 { | |
3522 if (abbrev) | |
3523 { | |
779 | 3524 if (hash > 0) /* there is only one abbreviation list */ |
7 | 3525 break; |
3526 mpp = abbr_table; | |
3527 } | |
3528 else | |
3529 mpp = &(map_table[hash]); | |
3530 for (mp = *mpp; mp != NULL && !got_int; mp = *mpp) | |
3531 { | |
3532 | |
3533 if (!(mp->m_mode & mode)) /* skip entries with wrong mode */ | |
3534 { | |
3535 mpp = &(mp->m_next); | |
3536 continue; | |
3537 } | |
3538 if (!haskey) /* show all entries */ | |
3539 { | |
3540 showmap(mp, map_table != maphash); | |
3541 did_it = TRUE; | |
3542 } | |
3543 else /* do we have a match? */ | |
3544 { | |
3545 if (round) /* second round: Try unmap "rhs" string */ | |
3546 { | |
3547 n = (int)STRLEN(mp->m_str); | |
3548 p = mp->m_str; | |
3549 } | |
3550 else | |
3551 { | |
3552 n = mp->m_keylen; | |
3553 p = mp->m_keys; | |
3554 } | |
3555 if (STRNCMP(p, keys, (size_t)(n < len ? n : len)) == 0) | |
3556 { | |
3557 if (maptype == 1) /* delete entry */ | |
3558 { | |
3559 /* Only accept a full match. For abbreviations we | |
3560 * ignore trailing space when matching with the | |
3561 * "lhs", since an abbreviation can't have | |
3562 * trailing space. */ | |
3563 if (n != len && (!abbrev || round || n > len | |
3564 || *skipwhite(keys + n) != NUL)) | |
3565 { | |
3566 mpp = &(mp->m_next); | |
3567 continue; | |
3568 } | |
3569 /* | |
3570 * We reset the indicated mode bits. If nothing is | |
3571 * left the entry is deleted below. | |
3572 */ | |
3573 mp->m_mode &= ~mode; | |
3574 did_it = TRUE; /* remember we did something */ | |
3575 } | |
3576 else if (!hasarg) /* show matching entry */ | |
3577 { | |
3578 showmap(mp, map_table != maphash); | |
3579 did_it = TRUE; | |
3580 } | |
1187 | 3581 else if (n != len) /* new entry is ambiguous */ |
7 | 3582 { |
3583 mpp = &(mp->m_next); | |
3584 continue; | |
3585 } | |
3586 else if (unique) | |
3587 { | |
3588 if (abbrev) | |
3589 EMSG2(_("E226: abbreviation already exists for %s"), | |
3590 p); | |
3591 else | |
3592 EMSG2(_("E227: mapping already exists for %s"), p); | |
3593 retval = 5; | |
3594 goto theend; | |
3595 } | |
3596 else /* new rhs for existing entry */ | |
3597 { | |
3598 mp->m_mode &= ~mode; /* remove mode bits */ | |
3599 if (mp->m_mode == 0 && !did_it) /* reuse entry */ | |
3600 { | |
3601 newstr = vim_strsave(rhs); | |
3602 if (newstr == NULL) | |
3603 { | |
3604 retval = 4; /* no mem */ | |
3605 goto theend; | |
3606 } | |
3607 vim_free(mp->m_str); | |
3608 mp->m_str = newstr; | |
2610 | 3609 vim_free(mp->m_orig_str); |
3610 mp->m_orig_str = vim_strsave(orig_rhs); | |
7 | 3611 mp->m_noremap = noremap; |
5035
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
3612 mp->m_nowait = nowait; |
7 | 3613 mp->m_silent = silent; |
3614 mp->m_mode = mode; | |
481 | 3615 #ifdef FEAT_EVAL |
721 | 3616 mp->m_expr = expr; |
481 | 3617 mp->m_script_ID = current_SID; |
3618 #endif | |
7 | 3619 did_it = TRUE; |
3620 } | |
3621 } | |
3622 if (mp->m_mode == 0) /* entry can be deleted */ | |
3623 { | |
3624 map_free(mpp); | |
3625 continue; /* continue with *mpp */ | |
3626 } | |
3627 | |
3628 /* | |
3629 * May need to put this entry into another hash list. | |
3630 */ | |
3631 new_hash = MAP_HASH(mp->m_mode, mp->m_keys[0]); | |
3632 if (!abbrev && new_hash != hash) | |
3633 { | |
3634 *mpp = mp->m_next; | |
3635 mp->m_next = map_table[new_hash]; | |
3636 map_table[new_hash] = mp; | |
3637 | |
3638 continue; /* continue with *mpp */ | |
3639 } | |
3640 } | |
3641 } | |
3642 mpp = &(mp->m_next); | |
3643 } | |
3644 } | |
3645 } | |
3646 | |
3647 if (maptype == 1) /* delete entry */ | |
3648 { | |
3649 if (!did_it) | |
3650 retval = 2; /* no match */ | |
3651 goto theend; | |
3652 } | |
3653 | |
3654 if (!haskey || !hasarg) /* print entries */ | |
3655 { | |
3656 if (!did_it | |
3657 #ifdef FEAT_LOCALMAP | |
3658 && !did_local | |
3659 #endif | |
3660 ) | |
3661 { | |
3662 if (abbrev) | |
3663 MSG(_("No abbreviation found")); | |
3664 else | |
3665 MSG(_("No mapping found")); | |
3666 } | |
3667 goto theend; /* listing finished */ | |
3668 } | |
3669 | |
3670 if (did_it) /* have added the new entry already */ | |
3671 goto theend; | |
3672 | |
3673 /* | |
3674 * Get here when adding a new entry to the maphash[] list or abbrlist. | |
3675 */ | |
3676 mp = (mapblock_T *)alloc((unsigned)sizeof(mapblock_T)); | |
3677 if (mp == NULL) | |
3678 { | |
3679 retval = 4; /* no mem */ | |
3680 goto theend; | |
3681 } | |
3682 | |
3683 /* If CTRL-C has been mapped, don't always use it for Interrupting */ | |
3684 if (*keys == Ctrl_C) | |
3685 mapped_ctrl_c = TRUE; | |
3686 | |
3687 mp->m_keys = vim_strsave(keys); | |
3688 mp->m_str = vim_strsave(rhs); | |
2610 | 3689 mp->m_orig_str = vim_strsave(orig_rhs); |
7 | 3690 if (mp->m_keys == NULL || mp->m_str == NULL) |
3691 { | |
3692 vim_free(mp->m_keys); | |
3693 vim_free(mp->m_str); | |
2610 | 3694 vim_free(mp->m_orig_str); |
7 | 3695 vim_free(mp); |
3696 retval = 4; /* no mem */ | |
3697 goto theend; | |
3698 } | |
3699 mp->m_keylen = (int)STRLEN(mp->m_keys); | |
3700 mp->m_noremap = noremap; | |
5035
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
3701 mp->m_nowait = nowait; |
7 | 3702 mp->m_silent = silent; |
3703 mp->m_mode = mode; | |
481 | 3704 #ifdef FEAT_EVAL |
721 | 3705 mp->m_expr = expr; |
481 | 3706 mp->m_script_ID = current_SID; |
3707 #endif | |
7 | 3708 |
3709 /* add the new entry in front of the abbrlist or maphash[] list */ | |
3710 if (abbrev) | |
3711 { | |
3712 mp->m_next = *abbr_table; | |
3713 *abbr_table = mp; | |
3714 } | |
3715 else | |
3716 { | |
3717 n = MAP_HASH(mp->m_mode, mp->m_keys[0]); | |
3718 mp->m_next = map_table[n]; | |
3719 map_table[n] = mp; | |
3720 } | |
3721 | |
3722 theend: | |
3723 vim_free(keys_buf); | |
3724 vim_free(arg_buf); | |
3725 return retval; | |
3726 } | |
3727 | |
3728 /* | |
3729 * Delete one entry from the abbrlist or maphash[]. | |
3730 * "mpp" is a pointer to the m_next field of the PREVIOUS entry! | |
3731 */ | |
3732 static void | |
3733 map_free(mpp) | |
3734 mapblock_T **mpp; | |
3735 { | |
3736 mapblock_T *mp; | |
3737 | |
3738 mp = *mpp; | |
3739 vim_free(mp->m_keys); | |
3740 vim_free(mp->m_str); | |
2610 | 3741 vim_free(mp->m_orig_str); |
7 | 3742 *mpp = mp->m_next; |
3743 vim_free(mp); | |
3744 } | |
3745 | |
3746 /* | |
3747 * Initialize maphash[] for first use. | |
3748 */ | |
3749 static void | |
3750 validate_maphash() | |
3751 { | |
3752 if (!maphash_valid) | |
3753 { | |
3754 vim_memset(maphash, 0, sizeof(maphash)); | |
3755 maphash_valid = TRUE; | |
3756 } | |
3757 } | |
3758 | |
3759 /* | |
3760 * Get the mapping mode from the command name. | |
3761 */ | |
3762 int | |
3763 get_map_mode(cmdp, forceit) | |
3764 char_u **cmdp; | |
3765 int forceit; | |
3766 { | |
3767 char_u *p; | |
3768 int modec; | |
3769 int mode; | |
3770 | |
3771 p = *cmdp; | |
3772 modec = *p++; | |
3773 if (modec == 'i') | |
3774 mode = INSERT; /* :imap */ | |
3775 else if (modec == 'l') | |
3776 mode = LANGMAP; /* :lmap */ | |
3777 else if (modec == 'c') | |
3778 mode = CMDLINE; /* :cmap */ | |
3779 else if (modec == 'n' && *p != 'o') /* avoid :noremap */ | |
3780 mode = NORMAL; /* :nmap */ | |
3781 else if (modec == 'v') | |
788 | 3782 mode = VISUAL + SELECTMODE; /* :vmap */ |
3783 else if (modec == 'x') | |
3784 mode = VISUAL; /* :xmap */ | |
3785 else if (modec == 's') | |
3786 mode = SELECTMODE; /* :smap */ | |
7 | 3787 else if (modec == 'o') |
3788 mode = OP_PENDING; /* :omap */ | |
3789 else | |
3790 { | |
3791 --p; | |
3792 if (forceit) | |
3793 mode = INSERT + CMDLINE; /* :map ! */ | |
3794 else | |
788 | 3795 mode = VISUAL + SELECTMODE + NORMAL + OP_PENDING;/* :map */ |
7 | 3796 } |
3797 | |
3798 *cmdp = p; | |
3799 return mode; | |
3800 } | |
3801 | |
3802 /* | |
3803 * Clear all mappings or abbreviations. | |
3804 * 'abbr' should be FALSE for mappings, TRUE for abbreviations. | |
3805 */ | |
3806 void | |
3807 map_clear(cmdp, arg, forceit, abbr) | |
3808 char_u *cmdp; | |
1933 | 3809 char_u *arg UNUSED; |
7 | 3810 int forceit; |
3811 int abbr; | |
3812 { | |
3813 int mode; | |
3814 #ifdef FEAT_LOCALMAP | |
3815 int local; | |
3816 | |
3817 local = (STRCMP(arg, "<buffer>") == 0); | |
3818 if (!local && *arg != NUL) | |
3819 { | |
3820 EMSG(_(e_invarg)); | |
3821 return; | |
3822 } | |
3823 #endif | |
3824 | |
3825 mode = get_map_mode(&cmdp, forceit); | |
3826 map_clear_int(curbuf, mode, | |
3827 #ifdef FEAT_LOCALMAP | |
3828 local, | |
3829 #else | |
3830 FALSE, | |
3831 #endif | |
3832 abbr); | |
3833 } | |
3834 | |
3835 /* | |
3836 * Clear all mappings in "mode". | |
3837 */ | |
3838 void | |
3839 map_clear_int(buf, mode, local, abbr) | |
1933 | 3840 buf_T *buf UNUSED; /* buffer for local mappings */ |
3841 int mode; /* mode in which to delete */ | |
3842 int local UNUSED; /* TRUE for buffer-local mappings */ | |
3843 int abbr; /* TRUE for abbreviations */ | |
7 | 3844 { |
3845 mapblock_T *mp, **mpp; | |
3846 int hash; | |
3847 int new_hash; | |
3848 | |
3849 validate_maphash(); | |
3850 | |
3851 for (hash = 0; hash < 256; ++hash) | |
3852 { | |
3853 if (abbr) | |
3854 { | |
779 | 3855 if (hash > 0) /* there is only one abbrlist */ |
7 | 3856 break; |
3857 #ifdef FEAT_LOCALMAP | |
3858 if (local) | |
3859 mpp = &buf->b_first_abbr; | |
3860 else | |
3861 #endif | |
3862 mpp = &first_abbr; | |
3863 } | |
3864 else | |
3865 { | |
3866 #ifdef FEAT_LOCALMAP | |
3867 if (local) | |
3868 mpp = &buf->b_maphash[hash]; | |
3869 else | |
3870 #endif | |
3871 mpp = &maphash[hash]; | |
3872 } | |
3873 while (*mpp != NULL) | |
3874 { | |
3875 mp = *mpp; | |
3876 if (mp->m_mode & mode) | |
3877 { | |
3878 mp->m_mode &= ~mode; | |
3879 if (mp->m_mode == 0) /* entry can be deleted */ | |
3880 { | |
3881 map_free(mpp); | |
3882 continue; | |
3883 } | |
3884 /* | |
3885 * May need to put this entry into another hash list. | |
3886 */ | |
3887 new_hash = MAP_HASH(mp->m_mode, mp->m_keys[0]); | |
3888 if (!abbr && new_hash != hash) | |
3889 { | |
3890 *mpp = mp->m_next; | |
3891 #ifdef FEAT_LOCALMAP | |
3892 if (local) | |
3893 { | |
3894 mp->m_next = buf->b_maphash[new_hash]; | |
3895 buf->b_maphash[new_hash] = mp; | |
3896 } | |
3897 else | |
3898 #endif | |
3899 { | |
3900 mp->m_next = maphash[new_hash]; | |
3901 maphash[new_hash] = mp; | |
3902 } | |
3903 continue; /* continue with *mpp */ | |
3904 } | |
3905 } | |
3906 mpp = &(mp->m_next); | |
3907 } | |
3908 } | |
3909 } | |
3910 | |
2610 | 3911 /* |
3912 * Return characters to represent the map mode in an allocated string. | |
3913 * Returns NULL when out of memory. | |
3914 */ | |
3915 char_u * | |
3916 map_mode_to_chars(mode) | |
3917 int mode; | |
3918 { | |
3919 garray_T mapmode; | |
3920 | |
3921 ga_init2(&mapmode, 1, 7); | |
3922 | |
3923 if ((mode & (INSERT + CMDLINE)) == INSERT + CMDLINE) | |
3924 ga_append(&mapmode, '!'); /* :map! */ | |
3925 else if (mode & INSERT) | |
3926 ga_append(&mapmode, 'i'); /* :imap */ | |
3927 else if (mode & LANGMAP) | |
3928 ga_append(&mapmode, 'l'); /* :lmap */ | |
3929 else if (mode & CMDLINE) | |
3930 ga_append(&mapmode, 'c'); /* :cmap */ | |
3931 else if ((mode & (NORMAL + VISUAL + SELECTMODE + OP_PENDING)) | |
3932 == NORMAL + VISUAL + SELECTMODE + OP_PENDING) | |
3933 ga_append(&mapmode, ' '); /* :map */ | |
3934 else | |
3935 { | |
3936 if (mode & NORMAL) | |
3937 ga_append(&mapmode, 'n'); /* :nmap */ | |
3938 if (mode & OP_PENDING) | |
3939 ga_append(&mapmode, 'o'); /* :omap */ | |
3940 if ((mode & (VISUAL + SELECTMODE)) == VISUAL + SELECTMODE) | |
3941 ga_append(&mapmode, 'v'); /* :vmap */ | |
3942 else | |
3943 { | |
3944 if (mode & VISUAL) | |
3945 ga_append(&mapmode, 'x'); /* :xmap */ | |
3946 if (mode & SELECTMODE) | |
3947 ga_append(&mapmode, 's'); /* :smap */ | |
3948 } | |
3949 } | |
3950 | |
3951 ga_append(&mapmode, NUL); | |
3952 return (char_u *)mapmode.ga_data; | |
3953 } | |
3954 | |
7 | 3955 static void |
3956 showmap(mp, local) | |
3957 mapblock_T *mp; | |
3958 int local; /* TRUE for buffer-local map */ | |
3959 { | |
2610 | 3960 int len = 1; |
3961 char_u *mapchars; | |
7 | 3962 |
3963 if (msg_didout || msg_silent != 0) | |
1825 | 3964 { |
7 | 3965 msg_putchar('\n'); |
1825 | 3966 if (got_int) /* 'q' typed at MORE prompt */ |
3967 return; | |
3968 } | |
2610 | 3969 |
3970 mapchars = map_mode_to_chars(mp->m_mode); | |
3971 if (mapchars != NULL) | |
7 | 3972 { |
2610 | 3973 msg_puts(mapchars); |
2615 | 3974 len = (int)STRLEN(mapchars); |
2610 | 3975 vim_free(mapchars); |
7 | 3976 } |
2610 | 3977 |
7 | 3978 while (++len <= 3) |
3979 msg_putchar(' '); | |
3980 | |
1618 | 3981 /* Display the LHS. Get length of what we write. */ |
7 | 3982 len = msg_outtrans_special(mp->m_keys, TRUE); |
3983 do | |
3984 { | |
3985 msg_putchar(' '); /* padd with blanks */ | |
3986 ++len; | |
3987 } while (len < 12); | |
3988 | |
3989 if (mp->m_noremap == REMAP_NONE) | |
3990 msg_puts_attr((char_u *)"*", hl_attr(HLF_8)); | |
3991 else if (mp->m_noremap == REMAP_SCRIPT) | |
3992 msg_puts_attr((char_u *)"&", hl_attr(HLF_8)); | |
3993 else | |
3994 msg_putchar(' '); | |
3995 | |
3996 if (local) | |
3997 msg_putchar('@'); | |
3998 else | |
3999 msg_putchar(' '); | |
4000 | |
4001 /* Use FALSE below if we only want things like <Up> to show up as such on | |
2610 | 4002 * the rhs, and not M-x etc, TRUE gets both -- webb */ |
7 | 4003 if (*mp->m_str == NUL) |
4004 msg_puts_attr((char_u *)"<Nop>", hl_attr(HLF_8)); | |
4005 else | |
3024 | 4006 { |
4007 /* Remove escaping of CSI, because "m_str" is in a format to be used | |
4008 * as typeahead. */ | |
4009 char_u *s = vim_strsave(mp->m_str); | |
4010 if (s != NULL) | |
4011 { | |
4012 vim_unescape_csi(s); | |
4013 msg_outtrans_special(s, FALSE); | |
4014 vim_free(s); | |
4015 } | |
4016 } | |
481 | 4017 #ifdef FEAT_EVAL |
4018 if (p_verbose > 0) | |
4019 last_set_msg(mp->m_script_ID); | |
4020 #endif | |
7 | 4021 out_flush(); /* show one line at a time */ |
4022 } | |
4023 | |
4024 #if defined(FEAT_EVAL) || defined(PROTO) | |
4025 /* | |
4026 * Return TRUE if a map exists that has "str" in the rhs for mode "modechars". | |
4027 * Recognize termcap codes in "str". | |
4028 * Also checks mappings local to the current buffer. | |
4029 */ | |
4030 int | |
779 | 4031 map_to_exists(str, modechars, abbr) |
7 | 4032 char_u *str; |
4033 char_u *modechars; | |
779 | 4034 int abbr; |
7 | 4035 { |
4036 int mode = 0; | |
4037 char_u *rhs; | |
4038 char_u *buf; | |
4039 int retval; | |
4040 | |
859 | 4041 rhs = replace_termcodes(str, &buf, FALSE, TRUE, FALSE); |
7 | 4042 |
4043 if (vim_strchr(modechars, 'n') != NULL) | |
4044 mode |= NORMAL; | |
4045 if (vim_strchr(modechars, 'v') != NULL) | |
788 | 4046 mode |= VISUAL + SELECTMODE; |
4047 if (vim_strchr(modechars, 'x') != NULL) | |
7 | 4048 mode |= VISUAL; |
788 | 4049 if (vim_strchr(modechars, 's') != NULL) |
4050 mode |= SELECTMODE; | |
7 | 4051 if (vim_strchr(modechars, 'o') != NULL) |
4052 mode |= OP_PENDING; | |
4053 if (vim_strchr(modechars, 'i') != NULL) | |
4054 mode |= INSERT; | |
4055 if (vim_strchr(modechars, 'l') != NULL) | |
4056 mode |= LANGMAP; | |
4057 if (vim_strchr(modechars, 'c') != NULL) | |
4058 mode |= CMDLINE; | |
4059 | |
779 | 4060 retval = map_to_exists_mode(rhs, mode, abbr); |
7 | 4061 vim_free(buf); |
4062 | |
4063 return retval; | |
4064 } | |
4065 #endif | |
4066 | |
4067 /* | |
4068 * Return TRUE if a map exists that has "str" in the rhs for mode "mode". | |
4069 * Also checks mappings local to the current buffer. | |
4070 */ | |
4071 int | |
779 | 4072 map_to_exists_mode(rhs, mode, abbr) |
7 | 4073 char_u *rhs; |
4074 int mode; | |
779 | 4075 int abbr; |
7 | 4076 { |
4077 mapblock_T *mp; | |
4078 int hash; | |
4079 # ifdef FEAT_LOCALMAP | |
4080 int expand_buffer = FALSE; | |
4081 | |
4082 validate_maphash(); | |
4083 | |
4084 /* Do it twice: once for global maps and once for local maps. */ | |
4085 for (;;) | |
4086 { | |
4087 # endif | |
4088 for (hash = 0; hash < 256; ++hash) | |
4089 { | |
779 | 4090 if (abbr) |
4091 { | |
4092 if (hash > 0) /* there is only one abbr list */ | |
4093 break; | |
4094 #ifdef FEAT_LOCALMAP | |
4095 if (expand_buffer) | |
4096 mp = curbuf->b_first_abbr; | |
4097 else | |
4098 #endif | |
4099 mp = first_abbr; | |
4100 } | |
7 | 4101 # ifdef FEAT_LOCALMAP |
779 | 4102 else if (expand_buffer) |
7 | 4103 mp = curbuf->b_maphash[hash]; |
779 | 4104 # endif |
7 | 4105 else |
4106 mp = maphash[hash]; | |
4107 for (; mp; mp = mp->m_next) | |
4108 { | |
4109 if ((mp->m_mode & mode) | |
4110 && strstr((char *)mp->m_str, (char *)rhs) != NULL) | |
4111 return TRUE; | |
4112 } | |
4113 } | |
4114 # ifdef FEAT_LOCALMAP | |
4115 if (expand_buffer) | |
4116 break; | |
4117 expand_buffer = TRUE; | |
4118 } | |
4119 # endif | |
4120 | |
4121 return FALSE; | |
4122 } | |
4123 | |
4124 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) | |
4125 /* | |
4126 * Used below when expanding mapping/abbreviation names. | |
4127 */ | |
4128 static int expand_mapmodes = 0; | |
4129 static int expand_isabbrev = 0; | |
4130 #ifdef FEAT_LOCALMAP | |
4131 static int expand_buffer = FALSE; | |
4132 #endif | |
4133 | |
4134 /* | |
4135 * Work out what to complete when doing command line completion of mapping | |
4136 * or abbreviation names. | |
4137 */ | |
4138 char_u * | |
4139 set_context_in_map_cmd(xp, cmd, arg, forceit, isabbrev, isunmap, cmdidx) | |
4140 expand_T *xp; | |
4141 char_u *cmd; | |
4142 char_u *arg; | |
4143 int forceit; /* TRUE if '!' given */ | |
4144 int isabbrev; /* TRUE if abbreviation */ | |
4145 int isunmap; /* TRUE if unmap/unabbrev command */ | |
4146 cmdidx_T cmdidx; | |
4147 { | |
4148 if (forceit && cmdidx != CMD_map && cmdidx != CMD_unmap) | |
4149 xp->xp_context = EXPAND_NOTHING; | |
4150 else | |
4151 { | |
4152 if (isunmap) | |
4153 expand_mapmodes = get_map_mode(&cmd, forceit || isabbrev); | |
4154 else | |
4155 { | |
4156 expand_mapmodes = INSERT + CMDLINE; | |
4157 if (!isabbrev) | |
788 | 4158 expand_mapmodes += VISUAL + SELECTMODE + NORMAL + OP_PENDING; |
7 | 4159 } |
4160 expand_isabbrev = isabbrev; | |
4161 xp->xp_context = EXPAND_MAPPINGS; | |
4162 #ifdef FEAT_LOCALMAP | |
4163 expand_buffer = FALSE; | |
4164 #endif | |
4165 for (;;) | |
4166 { | |
4167 #ifdef FEAT_LOCALMAP | |
4168 if (STRNCMP(arg, "<buffer>", 8) == 0) | |
4169 { | |
4170 expand_buffer = TRUE; | |
4171 arg = skipwhite(arg + 8); | |
4172 continue; | |
4173 } | |
4174 #endif | |
4175 if (STRNCMP(arg, "<unique>", 8) == 0) | |
4176 { | |
4177 arg = skipwhite(arg + 8); | |
4178 continue; | |
4179 } | |
5035
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
4180 if (STRNCMP(arg, "<nowait>", 8) == 0) |
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
4181 { |
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
4182 arg = skipwhite(arg + 8); |
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
4183 continue; |
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
4184 } |
7 | 4185 if (STRNCMP(arg, "<silent>", 8) == 0) |
4186 { | |
4187 arg = skipwhite(arg + 8); | |
4188 continue; | |
4189 } | |
721 | 4190 #ifdef FEAT_EVAL |
7 | 4191 if (STRNCMP(arg, "<script>", 8) == 0) |
4192 { | |
4193 arg = skipwhite(arg + 8); | |
4194 continue; | |
4195 } | |
721 | 4196 if (STRNCMP(arg, "<expr>", 6) == 0) |
4197 { | |
4198 arg = skipwhite(arg + 6); | |
4199 continue; | |
4200 } | |
4201 #endif | |
7 | 4202 break; |
4203 } | |
4204 xp->xp_pattern = arg; | |
4205 } | |
4206 | |
4207 return NULL; | |
4208 } | |
4209 | |
4210 /* | |
4211 * Find all mapping/abbreviation names that match regexp 'prog'. | |
4212 * For command line expansion of ":[un]map" and ":[un]abbrev" in all modes. | |
4213 * Return OK if matches found, FAIL otherwise. | |
4214 */ | |
4215 int | |
4216 ExpandMappings(regmatch, num_file, file) | |
4217 regmatch_T *regmatch; | |
4218 int *num_file; | |
4219 char_u ***file; | |
4220 { | |
4221 mapblock_T *mp; | |
4222 int hash; | |
4223 int count; | |
4224 int round; | |
4225 char_u *p; | |
4226 int i; | |
4227 | |
4228 validate_maphash(); | |
4229 | |
4230 *num_file = 0; /* return values in case of FAIL */ | |
4231 *file = NULL; | |
4232 | |
4233 /* | |
4234 * round == 1: Count the matches. | |
4235 * round == 2: Build the array to keep the matches. | |
4236 */ | |
4237 for (round = 1; round <= 2; ++round) | |
4238 { | |
4239 count = 0; | |
4240 | |
5035
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
4241 for (i = 0; i < 6; ++i) |
7 | 4242 { |
4243 if (i == 0) | |
4244 p = (char_u *)"<silent>"; | |
4245 else if (i == 1) | |
4246 p = (char_u *)"<unique>"; | |
4247 #ifdef FEAT_EVAL | |
4248 else if (i == 2) | |
4249 p = (char_u *)"<script>"; | |
721 | 4250 else if (i == 3) |
4251 p = (char_u *)"<expr>"; | |
7 | 4252 #endif |
4253 #ifdef FEAT_LOCALMAP | |
721 | 4254 else if (i == 4 && !expand_buffer) |
7 | 4255 p = (char_u *)"<buffer>"; |
4256 #endif | |
5035
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
4257 else if (i == 5) |
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
4258 p = (char_u *)"<nowait>"; |
7 | 4259 else |
4260 continue; | |
4261 | |
4262 if (vim_regexec(regmatch, p, (colnr_T)0)) | |
4263 { | |
4264 if (round == 1) | |
4265 ++count; | |
4266 else | |
4267 (*file)[count++] = vim_strsave(p); | |
4268 } | |
4269 } | |
4270 | |
4271 for (hash = 0; hash < 256; ++hash) | |
4272 { | |
4273 if (expand_isabbrev) | |
4274 { | |
779 | 4275 if (hash > 0) /* only one abbrev list */ |
7 | 4276 break; /* for (hash) */ |
4277 mp = first_abbr; | |
4278 } | |
4279 #ifdef FEAT_LOCALMAP | |
4280 else if (expand_buffer) | |
4281 mp = curbuf->b_maphash[hash]; | |
4282 #endif | |
4283 else | |
4284 mp = maphash[hash]; | |
4285 for (; mp; mp = mp->m_next) | |
4286 { | |
4287 if (mp->m_mode & expand_mapmodes) | |
4288 { | |
4289 p = translate_mapping(mp->m_keys, TRUE); | |
4290 if (p != NULL && vim_regexec(regmatch, p, (colnr_T)0)) | |
4291 { | |
4292 if (round == 1) | |
4293 ++count; | |
4294 else | |
4295 { | |
4296 (*file)[count++] = p; | |
4297 p = NULL; | |
4298 } | |
4299 } | |
4300 vim_free(p); | |
4301 } | |
4302 } /* for (mp) */ | |
4303 } /* for (hash) */ | |
4304 | |
4305 if (count == 0) /* no match found */ | |
4306 break; /* for (round) */ | |
4307 | |
4308 if (round == 1) | |
4309 { | |
4310 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *))); | |
4311 if (*file == NULL) | |
4312 return FAIL; | |
4313 } | |
4314 } /* for (round) */ | |
4315 | |
840 | 4316 if (count > 1) |
7 | 4317 { |
840 | 4318 char_u **ptr1; |
4319 char_u **ptr2; | |
4320 char_u **ptr3; | |
4321 | |
4322 /* Sort the matches */ | |
4323 sort_strings(*file, count); | |
4324 | |
4325 /* Remove multiple entries */ | |
4326 ptr1 = *file; | |
4327 ptr2 = ptr1 + 1; | |
4328 ptr3 = ptr1 + count; | |
7 | 4329 |
4330 while (ptr2 < ptr3) | |
4331 { | |
4332 if (STRCMP(*ptr1, *ptr2)) | |
4333 *++ptr1 = *ptr2++; | |
4334 else | |
4335 { | |
4336 vim_free(*ptr2++); | |
4337 count--; | |
4338 } | |
4339 } | |
4340 } | |
4341 | |
4342 *num_file = count; | |
4343 return (count == 0 ? FAIL : OK); | |
4344 } | |
4345 #endif /* FEAT_CMDL_COMPL */ | |
4346 | |
4347 /* | |
4348 * Check for an abbreviation. | |
4349 * Cursor is at ptr[col]. When inserting, mincol is where insert started. | |
4350 * "c" is the character typed before check_abbr was called. It may have | |
4351 * ABBR_OFF added to avoid prepending a CTRL-V to it. | |
4352 * | |
4353 * Historic vi practice: The last character of an abbreviation must be an id | |
4354 * character ([a-zA-Z0-9_]). The characters in front of it must be all id | |
4355 * characters or all non-id characters. This allows for abbr. "#i" to | |
4356 * "#include". | |
4357 * | |
4358 * Vim addition: Allow for abbreviations that end in a non-keyword character. | |
4359 * Then there must be white space before the abbr. | |
4360 * | |
4361 * return TRUE if there is an abbreviation, FALSE if not | |
4362 */ | |
4363 int | |
4364 check_abbr(c, ptr, col, mincol) | |
4365 int c; | |
4366 char_u *ptr; | |
4367 int col; | |
4368 int mincol; | |
4369 { | |
4370 int len; | |
4371 int scol; /* starting column of the abbr. */ | |
4372 int j; | |
721 | 4373 char_u *s; |
7 | 4374 char_u tb[MB_MAXBYTES + 4]; |
4375 mapblock_T *mp; | |
4376 #ifdef FEAT_LOCALMAP | |
4377 mapblock_T *mp2; | |
4378 #endif | |
4379 #ifdef FEAT_MBYTE | |
4380 int clen = 0; /* length in characters */ | |
4381 #endif | |
4382 int is_id = TRUE; | |
4383 int vim_abbr; | |
4384 | |
4385 if (typebuf.tb_no_abbr_cnt) /* abbrev. are not recursive */ | |
4386 return FALSE; | |
3448 | 4387 |
4388 /* no remapping implies no abbreviation, except for CTRL-] */ | |
4389 if ((KeyNoremap & (RM_NONE|RM_SCRIPT)) != 0 && c != Ctrl_RSB) | |
7 | 4390 return FALSE; |
4391 | |
4392 /* | |
4393 * Check for word before the cursor: If it ends in a keyword char all | |
1992 | 4394 * chars before it must be keyword chars or non-keyword chars, but not |
7 | 4395 * white space. If it ends in a non-keyword char we accept any characters |
4396 * before it except white space. | |
4397 */ | |
4398 if (col == 0) /* cannot be an abbr. */ | |
4399 return FALSE; | |
4400 | |
4401 #ifdef FEAT_MBYTE | |
4402 if (has_mbyte) | |
4403 { | |
4404 char_u *p; | |
4405 | |
4406 p = mb_prevptr(ptr, ptr + col); | |
4407 if (!vim_iswordp(p)) | |
4408 vim_abbr = TRUE; /* Vim added abbr. */ | |
4409 else | |
4410 { | |
4411 vim_abbr = FALSE; /* vi compatible abbr. */ | |
4412 if (p > ptr) | |
4413 is_id = vim_iswordp(mb_prevptr(ptr, p)); | |
4414 } | |
4415 clen = 1; | |
4416 while (p > ptr + mincol) | |
4417 { | |
4418 p = mb_prevptr(ptr, p); | |
4419 if (vim_isspace(*p) || (!vim_abbr && is_id != vim_iswordp(p))) | |
4420 { | |
474 | 4421 p += (*mb_ptr2len)(p); |
7 | 4422 break; |
4423 } | |
4424 ++clen; | |
4425 } | |
4426 scol = (int)(p - ptr); | |
4427 } | |
4428 else | |
4429 #endif | |
4430 { | |
4431 if (!vim_iswordc(ptr[col - 1])) | |
4432 vim_abbr = TRUE; /* Vim added abbr. */ | |
4433 else | |
4434 { | |
4435 vim_abbr = FALSE; /* vi compatible abbr. */ | |
4436 if (col > 1) | |
4437 is_id = vim_iswordc(ptr[col - 2]); | |
4438 } | |
4439 for (scol = col - 1; scol > 0 && !vim_isspace(ptr[scol - 1]) | |
4440 && (vim_abbr || is_id == vim_iswordc(ptr[scol - 1])); --scol) | |
4441 ; | |
4442 } | |
4443 | |
4444 if (scol < mincol) | |
4445 scol = mincol; | |
4446 if (scol < col) /* there is a word in front of the cursor */ | |
4447 { | |
4448 ptr += scol; | |
4449 len = col - scol; | |
4450 #ifdef FEAT_LOCALMAP | |
4451 mp = curbuf->b_first_abbr; | |
4452 mp2 = first_abbr; | |
4453 if (mp == NULL) | |
4454 { | |
4455 mp = mp2; | |
4456 mp2 = NULL; | |
4457 } | |
4458 #else | |
4459 mp = first_abbr; | |
4460 #endif | |
4461 for ( ; mp; | |
4462 #ifdef FEAT_LOCALMAP | |
4463 mp->m_next == NULL ? (mp = mp2, mp2 = NULL) : | |
4464 #endif | |
4465 (mp = mp->m_next)) | |
4466 { | |
4467 /* find entries with right mode and keys */ | |
4468 if ( (mp->m_mode & State) | |
4469 && mp->m_keylen == len | |
4470 && !STRNCMP(mp->m_keys, ptr, (size_t)len)) | |
4471 break; | |
4472 } | |
4473 if (mp != NULL) | |
4474 { | |
4475 /* | |
4476 * Found a match: | |
4477 * Insert the rest of the abbreviation in typebuf.tb_buf[]. | |
4478 * This goes from end to start. | |
4479 * | |
4480 * Characters 0x000 - 0x100: normal chars, may need CTRL-V, | |
4481 * except K_SPECIAL: Becomes K_SPECIAL KS_SPECIAL KE_FILLER | |
4482 * Characters where IS_SPECIAL() == TRUE: key codes, need | |
4483 * K_SPECIAL. Other characters (with ABBR_OFF): don't use CTRL-V. | |
4484 * | |
4485 * Character CTRL-] is treated specially - it completes the | |
4486 * abbreviation, but is not inserted into the input stream. | |
4487 */ | |
4488 j = 0; | |
4489 if (c != Ctrl_RSB) | |
4490 { | |
1969 | 4491 /* special key code, split up */ |
7 | 4492 if (IS_SPECIAL(c) || c == K_SPECIAL) |
4493 { | |
4494 tb[j++] = K_SPECIAL; | |
4495 tb[j++] = K_SECOND(c); | |
4496 tb[j++] = K_THIRD(c); | |
4497 } | |
4498 else | |
4499 { | |
4500 if (c < ABBR_OFF && (c < ' ' || c > '~')) | |
4501 tb[j++] = Ctrl_V; /* special char needs CTRL-V */ | |
4502 #ifdef FEAT_MBYTE | |
4503 if (has_mbyte) | |
4504 { | |
4505 /* if ABBR_OFF has been added, remove it here */ | |
4506 if (c >= ABBR_OFF) | |
4507 c -= ABBR_OFF; | |
4508 j += (*mb_char2bytes)(c, tb + j); | |
4509 } | |
4510 else | |
4511 #endif | |
4512 tb[j++] = c; | |
4513 } | |
4514 tb[j] = NUL; | |
4515 /* insert the last typed char */ | |
4516 (void)ins_typebuf(tb, 1, 0, TRUE, mp->m_silent); | |
4517 } | |
721 | 4518 #ifdef FEAT_EVAL |
4519 if (mp->m_expr) | |
1969 | 4520 s = eval_map_expr(mp->m_str, c); |
721 | 4521 else |
4522 #endif | |
4523 s = mp->m_str; | |
4524 if (s != NULL) | |
4525 { | |
7 | 4526 /* insert the to string */ |
721 | 4527 (void)ins_typebuf(s, mp->m_noremap, 0, TRUE, mp->m_silent); |
7 | 4528 /* no abbrev. for these chars */ |
721 | 4529 typebuf.tb_no_abbr_cnt += (int)STRLEN(s) + j + 1; |
4530 #ifdef FEAT_EVAL | |
4531 if (mp->m_expr) | |
4532 vim_free(s); | |
4533 #endif | |
4534 } | |
7 | 4535 |
4536 tb[0] = Ctrl_H; | |
4537 tb[1] = NUL; | |
4538 #ifdef FEAT_MBYTE | |
4539 if (has_mbyte) | |
4540 len = clen; /* Delete characters instead of bytes */ | |
4541 #endif | |
4542 while (len-- > 0) /* delete the from string */ | |
4543 (void)ins_typebuf(tb, 1, 0, TRUE, mp->m_silent); | |
4544 return TRUE; | |
4545 } | |
4546 } | |
4547 return FALSE; | |
4548 } | |
4549 | |
836 | 4550 #ifdef FEAT_EVAL |
4551 /* | |
4552 * Evaluate the RHS of a mapping or abbreviations and take care of escaping | |
4553 * special characters. | |
4554 */ | |
4555 static char_u * | |
1969 | 4556 eval_map_expr(str, c) |
836 | 4557 char_u *str; |
1969 | 4558 int c; /* NUL or typed character for abbreviation */ |
836 | 4559 { |
4560 char_u *res; | |
837 | 4561 char_u *p; |
3022 | 4562 char_u *expr; |
847 | 4563 char_u *save_cmd; |
856 | 4564 pos_T save_cursor; |
3231 | 4565 int save_msg_col; |
4566 int save_msg_row; | |
847 | 4567 |
3022 | 4568 /* Remove escaping of CSI, because "str" is in a format to be used as |
4569 * typeahead. */ | |
4570 expr = vim_strsave(str); | |
4571 if (expr == NULL) | |
4572 return NULL; | |
4573 vim_unescape_csi(expr); | |
4574 | |
847 | 4575 save_cmd = save_cmdline_alloc(); |
4576 if (save_cmd == NULL) | |
3022 | 4577 { |
4578 vim_free(expr); | |
847 | 4579 return NULL; |
3022 | 4580 } |
856 | 4581 |
4582 /* Forbid changing text or using ":normal" to avoid most of the bad side | |
4583 * effects. Also restore the cursor position. */ | |
4584 ++textlock; | |
4585 #ifdef FEAT_EX_EXTRA | |
4586 ++ex_normal_lock; | |
4587 #endif | |
1969 | 4588 set_vim_var_char(c); /* set v:char to the typed character */ |
856 | 4589 save_cursor = curwin->w_cursor; |
3231 | 4590 save_msg_col = msg_col; |
4591 save_msg_row = msg_row; | |
3022 | 4592 p = eval_to_string(expr, NULL, FALSE); |
856 | 4593 --textlock; |
4594 #ifdef FEAT_EX_EXTRA | |
4595 --ex_normal_lock; | |
4596 #endif | |
4597 curwin->w_cursor = save_cursor; | |
3231 | 4598 msg_col = save_msg_col; |
4599 msg_row = save_msg_row; | |
856 | 4600 |
847 | 4601 restore_cmdline_alloc(save_cmd); |
3022 | 4602 vim_free(expr); |
4603 | |
837 | 4604 if (p == NULL) |
836 | 4605 return NULL; |
3022 | 4606 /* Escape CSI in the result to be able to use the string as typeahead. */ |
844 | 4607 res = vim_strsave_escape_csi(p); |
4608 vim_free(p); | |
4609 | |
4610 return res; | |
4611 } | |
4612 #endif | |
4613 | |
4614 /* | |
4615 * Copy "p" to allocated memory, escaping K_SPECIAL and CSI so that the result | |
4616 * can be put in the typeahead buffer. | |
4617 * Returns NULL when out of memory. | |
4618 */ | |
4619 char_u * | |
4620 vim_strsave_escape_csi(p) | |
4621 char_u *p; | |
4622 { | |
4623 char_u *res; | |
4624 char_u *s, *d; | |
836 | 4625 |
4626 /* Need a buffer to hold up to three times as much. */ | |
837 | 4627 res = alloc((unsigned)(STRLEN(p) * 3) + 1); |
836 | 4628 if (res != NULL) |
4629 { | |
837 | 4630 d = res; |
4631 for (s = p; *s != NUL; ) | |
4632 { | |
4633 if (s[0] == K_SPECIAL && s[1] != NUL && s[2] != NUL) | |
4634 { | |
4635 /* Copy special key unmodified. */ | |
4636 *d++ = *s++; | |
4637 *d++ = *s++; | |
4638 *d++ = *s++; | |
4639 } | |
4640 else | |
4641 { | |
4356 | 4642 #ifdef FEAT_MBYTE |
4643 int len = mb_char2len(PTR2CHAR(s)); | |
4644 int len2 = mb_ptr2len(s); | |
4645 #endif | |
837 | 4646 /* Add character, possibly multi-byte to destination, escaping |
4647 * CSI and K_SPECIAL. */ | |
4648 d = add_char2buf(PTR2CHAR(s), d); | |
4356 | 4649 #ifdef FEAT_MBYTE |
4650 while (len < len2) | |
4651 { | |
4652 /* add following combining char */ | |
4653 d = add_char2buf(PTR2CHAR(s + len), d); | |
4654 len += mb_char2len(PTR2CHAR(s + len)); | |
4655 } | |
4656 #endif | |
837 | 4657 mb_ptr_adv(s); |
4658 } | |
4659 } | |
4660 *d = NUL; | |
836 | 4661 } |
4662 return res; | |
4663 } | |
4664 | |
7 | 4665 /* |
1081 | 4666 * Remove escaping from CSI and K_SPECIAL characters. Reverse of |
4667 * vim_strsave_escape_csi(). Works in-place. | |
4668 */ | |
4669 void | |
4670 vim_unescape_csi(p) | |
4671 char_u *p; | |
4672 { | |
4673 char_u *s = p, *d = p; | |
4674 | |
4675 while (*s != NUL) | |
4676 { | |
4677 if (s[0] == K_SPECIAL && s[1] == KS_SPECIAL && s[2] == KE_FILLER) | |
4678 { | |
4679 *d++ = K_SPECIAL; | |
4680 s += 3; | |
4681 } | |
4682 else if ((s[0] == K_SPECIAL || s[0] == CSI) | |
4683 && s[1] == KS_EXTRA && s[2] == (int)KE_CSI) | |
4684 { | |
4685 *d++ = CSI; | |
4686 s += 3; | |
4687 } | |
4688 else | |
4689 *d++ = *s++; | |
4690 } | |
4691 *d = NUL; | |
4692 } | |
4693 | |
4694 /* | |
7 | 4695 * Write map commands for the current mappings to an .exrc file. |
4696 * Return FAIL on error, OK otherwise. | |
4697 */ | |
4698 int | |
4699 makemap(fd, buf) | |
4700 FILE *fd; | |
4701 buf_T *buf; /* buffer for local mappings or NULL */ | |
4702 { | |
4703 mapblock_T *mp; | |
1678 | 4704 char_u c1, c2, c3; |
7 | 4705 char_u *p; |
4706 char *cmd; | |
4707 int abbr; | |
4708 int hash; | |
4709 int did_cpo = FALSE; | |
4710 int i; | |
4711 | |
4712 validate_maphash(); | |
4713 | |
4714 /* | |
4715 * Do the loop twice: Once for mappings, once for abbreviations. | |
4716 * Then loop over all map hash lists. | |
4717 */ | |
4718 for (abbr = 0; abbr < 2; ++abbr) | |
4719 for (hash = 0; hash < 256; ++hash) | |
4720 { | |
4721 if (abbr) | |
4722 { | |
779 | 4723 if (hash > 0) /* there is only one abbr list */ |
7 | 4724 break; |
4725 #ifdef FEAT_LOCALMAP | |
4726 if (buf != NULL) | |
4727 mp = buf->b_first_abbr; | |
4728 else | |
4729 #endif | |
4730 mp = first_abbr; | |
4731 } | |
4732 else | |
4733 { | |
4734 #ifdef FEAT_LOCALMAP | |
4735 if (buf != NULL) | |
4736 mp = buf->b_maphash[hash]; | |
4737 else | |
4738 #endif | |
4739 mp = maphash[hash]; | |
4740 } | |
4741 | |
4742 for ( ; mp; mp = mp->m_next) | |
4743 { | |
4744 /* skip script-local mappings */ | |
4745 if (mp->m_noremap == REMAP_SCRIPT) | |
4746 continue; | |
4747 | |
4748 /* skip mappings that contain a <SNR> (script-local thing), | |
4749 * they probably don't work when loaded again */ | |
4750 for (p = mp->m_str; *p != NUL; ++p) | |
4751 if (p[0] == K_SPECIAL && p[1] == KS_EXTRA | |
4752 && p[2] == (int)KE_SNR) | |
4753 break; | |
4754 if (*p != NUL) | |
4755 continue; | |
4756 | |
1678 | 4757 /* It's possible to create a mapping and then ":unmap" certain |
4758 * modes. We recreate this here by mapping the individual | |
4759 * modes, which requires up to three of them. */ | |
7 | 4760 c1 = NUL; |
4761 c2 = NUL; | |
1678 | 4762 c3 = NUL; |
7 | 4763 if (abbr) |
4764 cmd = "abbr"; | |
4765 else | |
4766 cmd = "map"; | |
4767 switch (mp->m_mode) | |
4768 { | |
788 | 4769 case NORMAL + VISUAL + SELECTMODE + OP_PENDING: |
7 | 4770 break; |
4771 case NORMAL: | |
4772 c1 = 'n'; | |
4773 break; | |
4774 case VISUAL: | |
788 | 4775 c1 = 'x'; |
4776 break; | |
4777 case SELECTMODE: | |
4778 c1 = 's'; | |
7 | 4779 break; |
4780 case OP_PENDING: | |
4781 c1 = 'o'; | |
4782 break; | |
1678 | 4783 case NORMAL + VISUAL: |
4784 c1 = 'n'; | |
4785 c2 = 'x'; | |
4786 break; | |
4787 case NORMAL + SELECTMODE: | |
4788 c1 = 'n'; | |
4789 c2 = 's'; | |
4790 break; | |
4791 case NORMAL + OP_PENDING: | |
4792 c1 = 'n'; | |
4793 c2 = 'o'; | |
4794 break; | |
4795 case VISUAL + SELECTMODE: | |
4796 c1 = 'v'; | |
4797 break; | |
4798 case VISUAL + OP_PENDING: | |
4799 c1 = 'x'; | |
4800 c2 = 'o'; | |
4801 break; | |
4802 case SELECTMODE + OP_PENDING: | |
4803 c1 = 's'; | |
4804 c2 = 'o'; | |
4805 break; | |
788 | 4806 case NORMAL + VISUAL + SELECTMODE: |
7 | 4807 c1 = 'n'; |
4808 c2 = 'v'; | |
4809 break; | |
1678 | 4810 case NORMAL + VISUAL + OP_PENDING: |
4811 c1 = 'n'; | |
4812 c2 = 'x'; | |
4813 c3 = 'o'; | |
4814 break; | |
4815 case NORMAL + SELECTMODE + OP_PENDING: | |
4816 c1 = 'n'; | |
4817 c2 = 's'; | |
4818 c3 = 'o'; | |
4819 break; | |
788 | 4820 case VISUAL + SELECTMODE + OP_PENDING: |
7 | 4821 c1 = 'v'; |
4822 c2 = 'o'; | |
4823 break; | |
4824 case CMDLINE + INSERT: | |
4825 if (!abbr) | |
4826 cmd = "map!"; | |
4827 break; | |
4828 case CMDLINE: | |
4829 c1 = 'c'; | |
4830 break; | |
4831 case INSERT: | |
4832 c1 = 'i'; | |
4833 break; | |
4834 case LANGMAP: | |
4835 c1 = 'l'; | |
4836 break; | |
4837 default: | |
4838 EMSG(_("E228: makemap: Illegal mode")); | |
4839 return FAIL; | |
4840 } | |
1678 | 4841 do /* do this twice if c2 is set, 3 times with c3 */ |
7 | 4842 { |
4843 /* When outputting <> form, need to make sure that 'cpo' | |
4844 * is set to the Vim default. */ | |
4845 if (!did_cpo) | |
4846 { | |
4847 if (*mp->m_str == NUL) /* will use <Nop> */ | |
4848 did_cpo = TRUE; | |
4849 else | |
4850 for (i = 0; i < 2; ++i) | |
4851 for (p = (i ? mp->m_str : mp->m_keys); *p; ++p) | |
4852 if (*p == K_SPECIAL || *p == NL) | |
4853 did_cpo = TRUE; | |
4854 if (did_cpo) | |
4855 { | |
4856 if (fprintf(fd, "let s:cpo_save=&cpo") < 0 | |
4857 || put_eol(fd) < 0 | |
4858 || fprintf(fd, "set cpo&vim") < 0 | |
4859 || put_eol(fd) < 0) | |
4860 return FAIL; | |
4861 } | |
4862 } | |
4863 if (c1 && putc(c1, fd) < 0) | |
4864 return FAIL; | |
4865 if (mp->m_noremap != REMAP_YES && fprintf(fd, "nore") < 0) | |
4866 return FAIL; | |
1757 | 4867 if (fputs(cmd, fd) < 0) |
7 | 4868 return FAIL; |
4869 if (buf != NULL && fputs(" <buffer>", fd) < 0) | |
4870 return FAIL; | |
5035
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
4871 if (mp->m_nowait && fputs(" <nowait>", fd) < 0) |
1cf89d38aa76
updated for version 7.3.1261
Bram Moolenaar <bram@vim.org>
parents:
4865
diff
changeset
|
4872 return FAIL; |
7 | 4873 if (mp->m_silent && fputs(" <silent>", fd) < 0) |
4874 return FAIL; | |
721 | 4875 #ifdef FEAT_EVAL |
4876 if (mp->m_noremap == REMAP_SCRIPT | |
4877 && fputs("<script>", fd) < 0) | |
4878 return FAIL; | |
4879 if (mp->m_expr && fputs(" <expr>", fd) < 0) | |
4880 return FAIL; | |
4881 #endif | |
7 | 4882 |
4883 if ( putc(' ', fd) < 0 | |
4884 || put_escstr(fd, mp->m_keys, 0) == FAIL | |
4885 || putc(' ', fd) < 0 | |
4886 || put_escstr(fd, mp->m_str, 1) == FAIL | |
4887 || put_eol(fd) < 0) | |
4888 return FAIL; | |
4889 c1 = c2; | |
1678 | 4890 c2 = c3; |
4891 c3 = NUL; | |
4892 } while (c1 != NUL); | |
7 | 4893 } |
4894 } | |
4895 | |
4896 if (did_cpo) | |
4897 if (fprintf(fd, "let &cpo=s:cpo_save") < 0 | |
4898 || put_eol(fd) < 0 | |
4899 || fprintf(fd, "unlet s:cpo_save") < 0 | |
4900 || put_eol(fd) < 0) | |
4901 return FAIL; | |
4902 return OK; | |
4903 } | |
4904 | |
4905 /* | |
4906 * write escape string to file | |
4907 * "what": 0 for :map lhs, 1 for :map rhs, 2 for :set | |
4908 * | |
4909 * return FAIL for failure, OK otherwise | |
4910 */ | |
4911 int | |
4912 put_escstr(fd, strstart, what) | |
4913 FILE *fd; | |
4914 char_u *strstart; | |
4915 int what; | |
4916 { | |
4917 char_u *str = strstart; | |
4918 int c; | |
4919 int modifiers; | |
4920 | |
4921 /* :map xx <Nop> */ | |
4922 if (*str == NUL && what == 1) | |
4923 { | |
4924 if (fprintf(fd, "<Nop>") < 0) | |
4925 return FAIL; | |
4926 return OK; | |
4927 } | |
4928 | |
4929 for ( ; *str != NUL; ++str) | |
4930 { | |
4931 #ifdef FEAT_MBYTE | |
4932 char_u *p; | |
4933 | |
4934 /* Check for a multi-byte character, which may contain escaped | |
4935 * K_SPECIAL and CSI bytes */ | |
4936 p = mb_unescape(&str); | |
4937 if (p != NULL) | |
4938 { | |
4939 while (*p != NUL) | |
300 | 4940 if (fputc(*p++, fd) < 0) |
7 | 4941 return FAIL; |
4942 --str; | |
4943 continue; | |
4944 } | |
4945 #endif | |
4946 | |
4947 c = *str; | |
4948 /* | |
4949 * Special key codes have to be translated to be able to make sense | |
4950 * when they are read back. | |
4951 */ | |
4952 if (c == K_SPECIAL && what != 2) | |
4953 { | |
4954 modifiers = 0x0; | |
4955 if (str[1] == KS_MODIFIER) | |
4956 { | |
4957 modifiers = str[2]; | |
4958 str += 3; | |
4959 c = *str; | |
4960 } | |
4961 if (c == K_SPECIAL) | |
4962 { | |
4963 c = TO_SPECIAL(str[1], str[2]); | |
4964 str += 2; | |
4965 } | |
4966 if (IS_SPECIAL(c) || modifiers) /* special key */ | |
4967 { | |
1757 | 4968 if (fputs((char *)get_special_key_name(c, modifiers), fd) < 0) |
7 | 4969 return FAIL; |
4970 continue; | |
4971 } | |
4972 } | |
4973 | |
4974 /* | |
4975 * A '\n' in a map command should be written as <NL>. | |
4976 * A '\n' in a set command should be written as \^V^J. | |
4977 */ | |
4978 if (c == NL) | |
4979 { | |
4980 if (what == 2) | |
4981 { | |
4982 if (fprintf(fd, IF_EB("\\\026\n", "\\" CTRL_V_STR "\n")) < 0) | |
4983 return FAIL; | |
4984 } | |
4985 else | |
4986 { | |
4987 if (fprintf(fd, "<NL>") < 0) | |
4988 return FAIL; | |
4989 } | |
4990 continue; | |
4991 } | |
4992 | |
4993 /* | |
4994 * Some characters have to be escaped with CTRL-V to | |
4995 * prevent them from misinterpreted in DoOneCmd(). | |
4996 * A space, Tab and '"' has to be escaped with a backslash to | |
4997 * prevent it to be misinterpreted in do_set(). | |
4998 * A space has to be escaped with a CTRL-V when it's at the start of a | |
4999 * ":map" rhs. | |
5000 * A '<' has to be escaped with a CTRL-V to prevent it being | |
5001 * interpreted as the start of a special key name. | |
5002 * A space in the lhs of a :map needs a CTRL-V. | |
5003 */ | |
5004 if (what == 2 && (vim_iswhite(c) || c == '"' || c == '\\')) | |
5005 { | |
5006 if (putc('\\', fd) < 0) | |
5007 return FAIL; | |
5008 } | |
5009 else if (c < ' ' || c > '~' || c == '|' | |
5010 || (what == 0 && c == ' ') | |
5011 || (what == 1 && str == strstart && c == ' ') | |
5012 || (what != 2 && c == '<')) | |
5013 { | |
5014 if (putc(Ctrl_V, fd) < 0) | |
5015 return FAIL; | |
5016 } | |
5017 if (putc(c, fd) < 0) | |
5018 return FAIL; | |
5019 } | |
5020 return OK; | |
5021 } | |
5022 | |
5023 /* | |
5024 * Check all mappings for the presence of special key codes. | |
5025 * Used after ":set term=xxx". | |
5026 */ | |
5027 void | |
5028 check_map_keycodes() | |
5029 { | |
5030 mapblock_T *mp; | |
5031 char_u *p; | |
5032 int i; | |
5033 char_u buf[3]; | |
5034 char_u *save_name; | |
5035 int abbr; | |
5036 int hash; | |
5037 #ifdef FEAT_LOCALMAP | |
5038 buf_T *bp; | |
5039 #endif | |
5040 | |
5041 validate_maphash(); | |
5042 save_name = sourcing_name; | |
5043 sourcing_name = (char_u *)"mappings"; /* avoids giving error messages */ | |
5044 | |
5045 #ifdef FEAT_LOCALMAP | |
5046 /* This this once for each buffer, and then once for global | |
5047 * mappings/abbreviations with bp == NULL */ | |
5048 for (bp = firstbuf; ; bp = bp->b_next) | |
5049 { | |
5050 #endif | |
5051 /* | |
5052 * Do the loop twice: Once for mappings, once for abbreviations. | |
5053 * Then loop over all map hash lists. | |
5054 */ | |
5055 for (abbr = 0; abbr <= 1; ++abbr) | |
5056 for (hash = 0; hash < 256; ++hash) | |
5057 { | |
5058 if (abbr) | |
5059 { | |
5060 if (hash) /* there is only one abbr list */ | |
5061 break; | |
5062 #ifdef FEAT_LOCALMAP | |
5063 if (bp != NULL) | |
5064 mp = bp->b_first_abbr; | |
5065 else | |
5066 #endif | |
5067 mp = first_abbr; | |
5068 } | |
5069 else | |
5070 { | |
5071 #ifdef FEAT_LOCALMAP | |
5072 if (bp != NULL) | |
5073 mp = bp->b_maphash[hash]; | |
5074 else | |
5075 #endif | |
5076 mp = maphash[hash]; | |
5077 } | |
5078 for ( ; mp != NULL; mp = mp->m_next) | |
5079 { | |
5080 for (i = 0; i <= 1; ++i) /* do this twice */ | |
5081 { | |
5082 if (i == 0) | |
5083 p = mp->m_keys; /* once for the "from" part */ | |
5084 else | |
5085 p = mp->m_str; /* and once for the "to" part */ | |
5086 while (*p) | |
5087 { | |
5088 if (*p == K_SPECIAL) | |
5089 { | |
5090 ++p; | |
5091 if (*p < 128) /* for "normal" tcap entries */ | |
5092 { | |
5093 buf[0] = p[0]; | |
5094 buf[1] = p[1]; | |
5095 buf[2] = NUL; | |
5096 (void)add_termcap_entry(buf, FALSE); | |
5097 } | |
5098 ++p; | |
5099 } | |
5100 ++p; | |
5101 } | |
5102 } | |
5103 } | |
5104 } | |
5105 #ifdef FEAT_LOCALMAP | |
5106 if (bp == NULL) | |
5107 break; | |
5108 } | |
5109 #endif | |
5110 sourcing_name = save_name; | |
5111 } | |
5112 | |
2610 | 5113 #if defined(FEAT_EVAL) || defined(PROTO) |
7 | 5114 /* |
2610 | 5115 * Check the string "keys" against the lhs of all mappings. |
5116 * Return pointer to rhs of mapping (mapblock->m_str). | |
5117 * NULL when no mapping found. | |
7 | 5118 */ |
5119 char_u * | |
2610 | 5120 check_map(keys, mode, exact, ign_mod, abbr, mp_ptr, local_ptr) |
7 | 5121 char_u *keys; |
5122 int mode; | |
5123 int exact; /* require exact match */ | |
275 | 5124 int ign_mod; /* ignore preceding modifier */ |
779 | 5125 int abbr; /* do abbreviations */ |
2610 | 5126 mapblock_T **mp_ptr; /* return: pointer to mapblock or NULL */ |
5127 int *local_ptr; /* return: buffer-local mapping or NULL */ | |
7 | 5128 { |
5129 int hash; | |
5130 int len, minlen; | |
5131 mapblock_T *mp; | |
275 | 5132 char_u *s; |
7 | 5133 #ifdef FEAT_LOCALMAP |
5134 int local; | |
5135 #endif | |
5136 | |
5137 validate_maphash(); | |
5138 | |
5139 len = (int)STRLEN(keys); | |
5140 #ifdef FEAT_LOCALMAP | |
5141 for (local = 1; local >= 0; --local) | |
5142 #endif | |
5143 /* loop over all hash lists */ | |
5144 for (hash = 0; hash < 256; ++hash) | |
5145 { | |
779 | 5146 if (abbr) |
5147 { | |
5148 if (hash > 0) /* there is only one list. */ | |
5149 break; | |
7 | 5150 #ifdef FEAT_LOCALMAP |
779 | 5151 if (local) |
5152 mp = curbuf->b_first_abbr; | |
5153 else | |
5154 #endif | |
5155 mp = first_abbr; | |
5156 } | |
5157 #ifdef FEAT_LOCALMAP | |
5158 else if (local) | |
7 | 5159 mp = curbuf->b_maphash[hash]; |
779 | 5160 #endif |
7 | 5161 else |
5162 mp = maphash[hash]; | |
5163 for ( ; mp != NULL; mp = mp->m_next) | |
5164 { | |
5165 /* skip entries with wrong mode, wrong length and not matching | |
5166 * ones */ | |
275 | 5167 if ((mp->m_mode & mode) && (!exact || mp->m_keylen == len)) |
5168 { | |
5169 if (len > mp->m_keylen) | |
5170 minlen = mp->m_keylen; | |
5171 else | |
5172 minlen = len; | |
5173 s = mp->m_keys; | |
5174 if (ign_mod && s[0] == K_SPECIAL && s[1] == KS_MODIFIER | |
5175 && s[2] != NUL) | |
5176 { | |
5177 s += 3; | |
5178 if (len > mp->m_keylen - 3) | |
5179 minlen = mp->m_keylen - 3; | |
5180 } | |
5181 if (STRNCMP(s, keys, minlen) == 0) | |
2610 | 5182 { |
5183 if (mp_ptr != NULL) | |
5184 *mp_ptr = mp; | |
5185 if (local_ptr != NULL) | |
2611 | 5186 #ifdef FEAT_LOCALMAP |
2610 | 5187 *local_ptr = local; |
2611 | 5188 #else |
5189 *local_ptr = 0; | |
5190 #endif | |
275 | 5191 return mp->m_str; |
2610 | 5192 } |
275 | 5193 } |
7 | 5194 } |
5195 } | |
5196 | |
5197 return NULL; | |
5198 } | |
5199 #endif | |
5200 | |
180 | 5201 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) |
788 | 5202 |
5203 #define VIS_SEL (VISUAL+SELECTMODE) /* abbreviation */ | |
5204 | |
7 | 5205 /* |
5206 * Default mappings for some often used keys. | |
5207 */ | |
5208 static struct initmap | |
5209 { | |
5210 char_u *arg; | |
5211 int mode; | |
5212 } initmappings[] = | |
5213 { | |
5214 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) | |
5215 /* Use the Windows (CUA) keybindings. */ | |
5216 # ifdef FEAT_GUI | |
5217 /* paste, copy and cut */ | |
5218 {(char_u *)"<S-Insert> \"*P", NORMAL}, | |
788 | 5219 {(char_u *)"<S-Insert> \"-d\"*P", VIS_SEL}, |
7 | 5220 {(char_u *)"<S-Insert> <C-R><C-O>*", INSERT+CMDLINE}, |
788 | 5221 {(char_u *)"<C-Insert> \"*y", VIS_SEL}, |
5222 {(char_u *)"<S-Del> \"*d", VIS_SEL}, | |
5223 {(char_u *)"<C-Del> \"*d", VIS_SEL}, | |
5224 {(char_u *)"<C-X> \"*d", VIS_SEL}, | |
7 | 5225 /* Missing: CTRL-C (cancel) and CTRL-V (block selection) */ |
5226 # else | |
788 | 5227 {(char_u *)"\316w <C-Home>", NORMAL+VIS_SEL}, |
7 | 5228 {(char_u *)"\316w <C-Home>", INSERT+CMDLINE}, |
788 | 5229 {(char_u *)"\316u <C-End>", NORMAL+VIS_SEL}, |
7 | 5230 {(char_u *)"\316u <C-End>", INSERT+CMDLINE}, |
5231 | |
5232 /* paste, copy and cut */ | |
5233 # ifdef FEAT_CLIPBOARD | |
5234 # ifdef DJGPP | |
5235 {(char_u *)"\316\122 \"*P", NORMAL}, /* SHIFT-Insert is "*P */ | |
2520 | 5236 {(char_u *)"\316\122 \"-d\"*P", VIS_SEL}, /* SHIFT-Insert is "-d"*P */ |
7 | 5237 {(char_u *)"\316\122 \022\017*", INSERT}, /* SHIFT-Insert is ^R^O* */ |
788 | 5238 {(char_u *)"\316\222 \"*y", VIS_SEL}, /* CTRL-Insert is "*y */ |
7 | 5239 # if 0 /* Shift-Del produces the same code as Del */ |
788 | 5240 {(char_u *)"\316\123 \"*d", VIS_SEL}, /* SHIFT-Del is "*d */ |
7 | 5241 # endif |
788 | 5242 {(char_u *)"\316\223 \"*d", VIS_SEL}, /* CTRL-Del is "*d */ |
5243 {(char_u *)"\030 \"-d", VIS_SEL}, /* CTRL-X is "-d */ | |
7 | 5244 # else |
5245 {(char_u *)"\316\324 \"*P", NORMAL}, /* SHIFT-Insert is "*P */ | |
2520 | 5246 {(char_u *)"\316\324 \"-d\"*P", VIS_SEL}, /* SHIFT-Insert is "-d"*P */ |
7 | 5247 {(char_u *)"\316\324 \022\017*", INSERT}, /* SHIFT-Insert is ^R^O* */ |
788 | 5248 {(char_u *)"\316\325 \"*y", VIS_SEL}, /* CTRL-Insert is "*y */ |
5249 {(char_u *)"\316\327 \"*d", VIS_SEL}, /* SHIFT-Del is "*d */ | |
5250 {(char_u *)"\316\330 \"*d", VIS_SEL}, /* CTRL-Del is "*d */ | |
5251 {(char_u *)"\030 \"-d", VIS_SEL}, /* CTRL-X is "-d */ | |
7 | 5252 # endif |
5253 # else | |
5254 {(char_u *)"\316\324 P", NORMAL}, /* SHIFT-Insert is P */ | |
788 | 5255 {(char_u *)"\316\324 \"-dP", VIS_SEL}, /* SHIFT-Insert is "-dP */ |
7 | 5256 {(char_u *)"\316\324 \022\017\"", INSERT}, /* SHIFT-Insert is ^R^O" */ |
788 | 5257 {(char_u *)"\316\325 y", VIS_SEL}, /* CTRL-Insert is y */ |
5258 {(char_u *)"\316\327 d", VIS_SEL}, /* SHIFT-Del is d */ | |
5259 {(char_u *)"\316\330 d", VIS_SEL}, /* CTRL-Del is d */ | |
7 | 5260 # endif |
5261 # endif | |
5262 #endif | |
5263 | |
5264 #if defined(MACOS) | |
5265 /* Use the Standard MacOS binding. */ | |
5266 /* paste, copy and cut */ | |
5267 {(char_u *)"<D-v> \"*P", NORMAL}, | |
788 | 5268 {(char_u *)"<D-v> \"-d\"*P", VIS_SEL}, |
7 | 5269 {(char_u *)"<D-v> <C-R>*", INSERT+CMDLINE}, |
788 | 5270 {(char_u *)"<D-c> \"*y", VIS_SEL}, |
5271 {(char_u *)"<D-x> \"*d", VIS_SEL}, | |
5272 {(char_u *)"<Backspace> \"-d", VIS_SEL}, | |
7 | 5273 #endif |
5274 }; | |
788 | 5275 |
5276 # undef VIS_SEL | |
180 | 5277 #endif |
7 | 5278 |
5279 /* | |
5280 * Set up default mappings. | |
5281 */ | |
5282 void | |
5283 init_mappings() | |
5284 { | |
180 | 5285 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) |
7 | 5286 int i; |
5287 | |
5288 for (i = 0; i < sizeof(initmappings) / sizeof(struct initmap); ++i) | |
5289 add_map(initmappings[i].arg, initmappings[i].mode); | |
180 | 5290 #endif |
7 | 5291 } |
5292 | |
184 | 5293 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \ |
5294 || defined(FEAT_CMDWIN) || defined(MACOS) || defined(PROTO) | |
7 | 5295 /* |
5296 * Add a mapping "map" for mode "mode". | |
5297 * Need to put string in allocated memory, because do_map() will modify it. | |
5298 */ | |
5299 void | |
5300 add_map(map, mode) | |
5301 char_u *map; | |
5302 int mode; | |
5303 { | |
5304 char_u *s; | |
5305 char_u *cpo_save = p_cpo; | |
5306 | |
5307 p_cpo = (char_u *)""; /* Allow <> notation */ | |
5308 s = vim_strsave(map); | |
5309 if (s != NULL) | |
5310 { | |
5311 (void)do_map(0, s, mode, FALSE); | |
5312 vim_free(s); | |
5313 } | |
5314 p_cpo = cpo_save; | |
5315 } | |
184 | 5316 #endif |