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