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