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