Merged from the latest developing branch.
[MacVim.git] / src / getchar.c
blobb39ff74a36839d0527b94ef03b3b26b11241e8ca
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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 */
11 * getchar.c
13 * functions related with getting a character from the user/mapping/redo/...
15 * manipulations with redo buffer and stuff buffer
16 * mappings and abbreviations
19 #include "vim.h"
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.
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!
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().
41 #define MINIMAL_SIZE 20 /* minimal size for b_str */
43 static struct buffheader redobuff = {{NULL, {NUL}}, NULL, 0, 0};
44 static struct buffheader old_redobuff = {{NULL, {NUL}}, NULL, 0, 0};
45 #if defined(FEAT_AUTOCMD) || defined(FEAT_EVAL) || defined(PROTO)
46 static struct buffheader save_redobuff = {{NULL, {NUL}}, NULL, 0, 0};
47 static struct buffheader save_old_redobuff = {{NULL, {NUL}}, NULL, 0, 0};
48 #endif
49 static struct buffheader recordbuff = {{NULL, {NUL}}, NULL, 0, 0};
51 static int typeahead_char = 0; /* typeahead char that's not flushed */
54 * when block_redo is TRUE redo buffer will not be changed
55 * used by edit() to repeat insertions and 'V' command for redoing
57 static int block_redo = FALSE;
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.
66 #define MAP_HASH(mode, c1) (((mode) & (NORMAL + VISUAL + SELECTMODE + OP_PENDING)) ? (c1) : ((c1) ^ 0x80))
69 * Each mapping is put in one of the 256 hash lists, to speed up finding it.
71 static mapblock_T *(maphash[256]);
72 static int maphash_valid = FALSE;
75 * List used for abbreviations.
77 static mapblock_T *first_abbr = NULL; /* first entry in abbrlist */
79 static int KeyNoremap = 0; /* remapping flags */
82 * variables used by vgetorpeek() and flush_buffers()
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).
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 */
103 #define RM_ABBR 4 /* tb_noremap: don't remap, do abbrev. */
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).
109 #define TYPELEN_INIT (5 * (MAXMAPLEN + 3))
110 static char_u typebuf_init[TYPELEN_INIT]; /* initial typebuf.tb_buf */
111 static char_u noremapbuf_init[TYPELEN_INIT]; /* initial typebuf.tb_noremap */
113 static int last_recorded_len = 0; /* number of last recorded chars */
115 static char_u *get_buffcont __ARGS((struct buffheader *, int));
116 static void add_buff __ARGS((struct buffheader *, char_u *, long n));
117 static void add_num_buff __ARGS((struct buffheader *, long));
118 static void add_char_buff __ARGS((struct buffheader *, int));
119 static int read_stuff __ARGS((int advance));
120 static void start_stuff __ARGS((void));
121 static int read_redo __ARGS((int, int));
122 static void copy_redo __ARGS((int));
123 static void init_typebuf __ARGS((void));
124 static void gotchars __ARGS((char_u *, int));
125 static void may_sync_undo __ARGS((void));
126 static void closescript __ARGS((void));
127 static int vgetorpeek __ARGS((int));
128 static void map_free __ARGS((mapblock_T **));
129 static void validate_maphash __ARGS((void));
130 static void showmap __ARGS((mapblock_T *mp, int local));
131 #ifdef FEAT_EVAL
132 static char_u *eval_map_expr __ARGS((char_u *str, int c));
133 #endif
136 * Free and clear a buffer.
138 void
139 free_buff(buf)
140 struct buffheader *buf;
142 struct buffblock *p, *np;
144 for (p = buf->bh_first.b_next; p != NULL; p = np)
146 np = p->b_next;
147 vim_free(p);
149 buf->bh_first.b_next = NULL;
153 * Return the contents of a buffer as a single string.
154 * K_SPECIAL and CSI in the returned string are escaped.
156 static char_u *
157 get_buffcont(buffer, dozero)
158 struct buffheader *buffer;
159 int dozero; /* count == zero is not an error */
161 long_u count = 0;
162 char_u *p = NULL;
163 char_u *p2;
164 char_u *str;
165 struct buffblock *bp;
167 /* compute the total length of the string */
168 for (bp = buffer->bh_first.b_next; bp != NULL; bp = bp->b_next)
169 count += (long_u)STRLEN(bp->b_str);
171 if ((count || dozero) && (p = lalloc(count + 1, TRUE)) != NULL)
173 p2 = p;
174 for (bp = buffer->bh_first.b_next; bp != NULL; bp = bp->b_next)
175 for (str = bp->b_str; *str; )
176 *p2++ = *str++;
177 *p2 = NUL;
179 return (p);
183 * Return the contents of the record buffer as a single string
184 * and clear the record buffer.
185 * K_SPECIAL and CSI in the returned string are escaped.
187 char_u *
188 get_recorded()
190 char_u *p;
191 size_t len;
193 p = get_buffcont(&recordbuff, TRUE);
194 free_buff(&recordbuff);
197 * Remove the characters that were added the last time, these must be the
198 * (possibly mapped) characters that stopped the recording.
200 len = STRLEN(p);
201 if ((int)len >= last_recorded_len)
203 len -= last_recorded_len;
204 p[len] = NUL;
208 * When stopping recording from Insert mode with CTRL-O q, also remove the
209 * CTRL-O.
211 if (len > 0 && restart_edit != 0 && p[len - 1] == Ctrl_O)
212 p[len - 1] = NUL;
214 return (p);
218 * Return the contents of the redo buffer as a single string.
219 * K_SPECIAL and CSI in the returned string are escaped.
221 char_u *
222 get_inserted()
224 return get_buffcont(&redobuff, FALSE);
228 * Add string "s" after the current block of buffer "buf".
229 * K_SPECIAL and CSI should have been escaped already.
231 static void
232 add_buff(buf, s, slen)
233 struct buffheader *buf;
234 char_u *s;
235 long slen; /* length of "s" or -1 */
237 struct buffblock *p;
238 long_u len;
240 if (slen < 0)
241 slen = (long)STRLEN(s);
242 if (slen == 0) /* don't add empty strings */
243 return;
245 if (buf->bh_first.b_next == NULL) /* first add to list */
247 buf->bh_space = 0;
248 buf->bh_curr = &(buf->bh_first);
250 else if (buf->bh_curr == NULL) /* buffer has already been read */
252 EMSG(_("E222: Add to read buffer"));
253 return;
255 else if (buf->bh_index != 0)
256 mch_memmove(buf->bh_first.b_next->b_str,
257 buf->bh_first.b_next->b_str + buf->bh_index,
258 STRLEN(buf->bh_first.b_next->b_str + buf->bh_index) + 1);
259 buf->bh_index = 0;
261 if (buf->bh_space >= (int)slen)
263 len = (long_u)STRLEN(buf->bh_curr->b_str);
264 vim_strncpy(buf->bh_curr->b_str + len, s, (size_t)slen);
265 buf->bh_space -= slen;
267 else
269 if (slen < MINIMAL_SIZE)
270 len = MINIMAL_SIZE;
271 else
272 len = slen;
273 p = (struct buffblock *)lalloc((long_u)(sizeof(struct buffblock) + len),
274 TRUE);
275 if (p == NULL)
276 return; /* no space, just forget it */
277 buf->bh_space = (int)(len - slen);
278 vim_strncpy(p->b_str, s, (size_t)slen);
280 p->b_next = buf->bh_curr->b_next;
281 buf->bh_curr->b_next = p;
282 buf->bh_curr = p;
284 return;
288 * Add number "n" to buffer "buf".
290 static void
291 add_num_buff(buf, n)
292 struct buffheader *buf;
293 long n;
295 char_u number[32];
297 sprintf((char *)number, "%ld", n);
298 add_buff(buf, number, -1L);
302 * Add character 'c' to buffer "buf".
303 * Translates special keys, NUL, CSI, K_SPECIAL and multibyte characters.
305 static void
306 add_char_buff(buf, c)
307 struct buffheader *buf;
308 int c;
310 #ifdef FEAT_MBYTE
311 char_u bytes[MB_MAXBYTES + 1];
312 int len;
313 int i;
314 #endif
315 char_u temp[4];
317 #ifdef FEAT_MBYTE
318 if (IS_SPECIAL(c))
319 len = 1;
320 else
321 len = (*mb_char2bytes)(c, bytes);
322 for (i = 0; i < len; ++i)
324 if (!IS_SPECIAL(c))
325 c = bytes[i];
326 #endif
328 if (IS_SPECIAL(c) || c == K_SPECIAL || c == NUL)
330 /* translate special key code into three byte sequence */
331 temp[0] = K_SPECIAL;
332 temp[1] = K_SECOND(c);
333 temp[2] = K_THIRD(c);
334 temp[3] = NUL;
336 #ifdef FEAT_GUI
337 else if (c == CSI)
339 /* Translate a CSI to a CSI - KS_EXTRA - KE_CSI sequence */
340 temp[0] = CSI;
341 temp[1] = KS_EXTRA;
342 temp[2] = (int)KE_CSI;
343 temp[3] = NUL;
345 #endif
346 else
348 temp[0] = c;
349 temp[1] = NUL;
351 add_buff(buf, temp, -1L);
352 #ifdef FEAT_MBYTE
354 #endif
358 * Get one byte from the stuff buffer.
359 * If advance == TRUE go to the next char.
360 * No translation is done K_SPECIAL and CSI are escaped.
362 static int
363 read_stuff(advance)
364 int advance;
366 char_u c;
367 struct buffblock *curr;
369 if (stuffbuff.bh_first.b_next == NULL) /* buffer is empty */
370 return NUL;
372 curr = stuffbuff.bh_first.b_next;
373 c = curr->b_str[stuffbuff.bh_index];
375 if (advance)
377 if (curr->b_str[++stuffbuff.bh_index] == NUL)
379 stuffbuff.bh_first.b_next = curr->b_next;
380 vim_free(curr);
381 stuffbuff.bh_index = 0;
384 return c;
388 * Prepare the stuff buffer for reading (if it contains something).
390 static void
391 start_stuff()
393 if (stuffbuff.bh_first.b_next != NULL)
395 stuffbuff.bh_curr = &(stuffbuff.bh_first);
396 stuffbuff.bh_space = 0;
401 * Return TRUE if the stuff buffer is empty.
404 stuff_empty()
406 return (stuffbuff.bh_first.b_next == NULL);
410 * Set a typeahead character that won't be flushed.
412 void
413 typeahead_noflush(c)
414 int c;
416 typeahead_char = c;
420 * Remove the contents of the stuff buffer and the mapped characters in the
421 * typeahead buffer (used in case of an error). If 'typeahead' is true,
422 * flush all typeahead characters (used when interrupted by a CTRL-C).
424 void
425 flush_buffers(typeahead)
426 int typeahead;
428 init_typebuf();
430 start_stuff();
431 while (read_stuff(TRUE) != NUL)
434 if (typeahead) /* remove all typeahead */
437 * We have to get all characters, because we may delete the first part
438 * of an escape sequence.
439 * In an xterm we get one char at a time and we have to get them all.
441 while (inchar(typebuf.tb_buf, typebuf.tb_buflen - 1, 10L,
442 typebuf.tb_change_cnt) != 0)
444 typebuf.tb_off = MAXMAPLEN;
445 typebuf.tb_len = 0;
447 else /* remove mapped characters only */
449 typebuf.tb_off += typebuf.tb_maplen;
450 typebuf.tb_len -= typebuf.tb_maplen;
452 typebuf.tb_maplen = 0;
453 typebuf.tb_silent = 0;
454 cmd_silent = FALSE;
455 typebuf.tb_no_abbr_cnt = 0;
459 * The previous contents of the redo buffer is kept in old_redobuffer.
460 * This is used for the CTRL-O <.> command in insert mode.
462 void
463 ResetRedobuff()
465 if (!block_redo)
467 free_buff(&old_redobuff);
468 old_redobuff = redobuff;
469 redobuff.bh_first.b_next = NULL;
473 #if defined(FEAT_AUTOCMD) || defined(FEAT_EVAL) || defined(PROTO)
475 * Save redobuff and old_redobuff to save_redobuff and save_old_redobuff.
476 * Used before executing autocommands and user functions.
478 static int save_level = 0;
480 void
481 saveRedobuff()
483 char_u *s;
485 if (save_level++ == 0)
487 save_redobuff = redobuff;
488 redobuff.bh_first.b_next = NULL;
489 save_old_redobuff = old_redobuff;
490 old_redobuff.bh_first.b_next = NULL;
492 /* Make a copy, so that ":normal ." in a function works. */
493 s = get_buffcont(&save_redobuff, FALSE);
494 if (s != NULL)
496 add_buff(&redobuff, s, -1L);
497 vim_free(s);
503 * Restore redobuff and old_redobuff from save_redobuff and save_old_redobuff.
504 * Used after executing autocommands and user functions.
506 void
507 restoreRedobuff()
509 if (--save_level == 0)
511 free_buff(&redobuff);
512 redobuff = save_redobuff;
513 free_buff(&old_redobuff);
514 old_redobuff = save_old_redobuff;
517 #endif
520 * Append "s" to the redo buffer.
521 * K_SPECIAL and CSI should already have been escaped.
523 void
524 AppendToRedobuff(s)
525 char_u *s;
527 if (!block_redo)
528 add_buff(&redobuff, s, -1L);
532 * Append to Redo buffer literally, escaping special characters with CTRL-V.
533 * K_SPECIAL and CSI are escaped as well.
535 void
536 AppendToRedobuffLit(str, len)
537 char_u *str;
538 int len; /* length of "str" or -1 for up to the NUL */
540 char_u *s = str;
541 int c;
542 char_u *start;
544 if (block_redo)
545 return;
547 while (len < 0 ? *s != NUL : s - str < len)
549 /* Put a string of normal characters in the redo buffer (that's
550 * faster). */
551 start = s;
552 while (*s >= ' '
553 #ifndef EBCDIC
554 && *s < DEL /* EBCDIC: all chars above space are normal */
555 #endif
556 && (len < 0 || s - str < len))
557 ++s;
559 /* Don't put '0' or '^' as last character, just in case a CTRL-D is
560 * typed next. */
561 if (*s == NUL && (s[-1] == '0' || s[-1] == '^'))
562 --s;
563 if (s > start)
564 add_buff(&redobuff, start, (long)(s - start));
566 if (*s == NUL || (len >= 0 && s - str >= len))
567 break;
569 /* Handle a special or multibyte character. */
570 #ifdef FEAT_MBYTE
571 if (has_mbyte)
572 /* Handle composing chars separately. */
573 c = mb_cptr2char_adv(&s);
574 else
575 #endif
576 c = *s++;
577 if (c < ' ' || c == DEL || (*s == NUL && (c == '0' || c == '^')))
578 add_char_buff(&redobuff, Ctrl_V);
580 /* CTRL-V '0' must be inserted as CTRL-V 048 (EBCDIC: xf0) */
581 if (*s == NUL && c == '0')
582 #ifdef EBCDIC
583 add_buff(&redobuff, (char_u *)"xf0", 3L);
584 #else
585 add_buff(&redobuff, (char_u *)"048", 3L);
586 #endif
587 else
588 add_char_buff(&redobuff, c);
593 * Append a character to the redo buffer.
594 * Translates special keys, NUL, CSI, K_SPECIAL and multibyte characters.
596 void
597 AppendCharToRedobuff(c)
598 int c;
600 if (!block_redo)
601 add_char_buff(&redobuff, c);
605 * Append a number to the redo buffer.
607 void
608 AppendNumberToRedobuff(n)
609 long n;
611 if (!block_redo)
612 add_num_buff(&redobuff, n);
616 * Append string "s" to the stuff buffer.
617 * CSI and K_SPECIAL must already have been escaped.
619 void
620 stuffReadbuff(s)
621 char_u *s;
623 add_buff(&stuffbuff, s, -1L);
626 void
627 stuffReadbuffLen(s, len)
628 char_u *s;
629 long len;
631 add_buff(&stuffbuff, s, len);
634 #if defined(FEAT_EVAL) || defined(PROTO)
636 * Stuff "s" into the stuff buffer, leaving special key codes unmodified and
637 * escaping other K_SPECIAL and CSI bytes.
639 void
640 stuffReadbuffSpec(s)
641 char_u *s;
643 while (*s != NUL)
645 if (*s == K_SPECIAL && s[1] != NUL && s[2] != NUL)
647 /* Insert special key literally. */
648 stuffReadbuffLen(s, 3L);
649 s += 3;
651 else
652 #ifdef FEAT_MBYTE
653 stuffcharReadbuff(mb_ptr2char_adv(&s));
654 #else
655 stuffcharReadbuff(*s++);
656 #endif
659 #endif
662 * Append a character to the stuff buffer.
663 * Translates special keys, NUL, CSI, K_SPECIAL and multibyte characters.
665 void
666 stuffcharReadbuff(c)
667 int c;
669 add_char_buff(&stuffbuff, c);
673 * Append a number to the stuff buffer.
675 void
676 stuffnumReadbuff(n)
677 long n;
679 add_num_buff(&stuffbuff, n);
683 * Read a character from the redo buffer. Translates K_SPECIAL, CSI and
684 * multibyte characters.
685 * The redo buffer is left as it is.
686 * if init is TRUE, prepare for redo, return FAIL if nothing to redo, OK
687 * otherwise
688 * if old is TRUE, use old_redobuff instead of redobuff
690 static int
691 read_redo(init, old_redo)
692 int init;
693 int old_redo;
695 static struct buffblock *bp;
696 static char_u *p;
697 int c;
698 #ifdef FEAT_MBYTE
699 int n;
700 char_u buf[MB_MAXBYTES];
701 int i;
702 #endif
704 if (init)
706 if (old_redo)
707 bp = old_redobuff.bh_first.b_next;
708 else
709 bp = redobuff.bh_first.b_next;
710 if (bp == NULL)
711 return FAIL;
712 p = bp->b_str;
713 return OK;
715 if ((c = *p) != NUL)
717 /* Reverse the conversion done by add_char_buff() */
718 #ifdef FEAT_MBYTE
719 /* For a multi-byte character get all the bytes and return the
720 * converted character. */
721 if (has_mbyte && (c != K_SPECIAL || p[1] == KS_SPECIAL))
722 n = MB_BYTE2LEN_CHECK(c);
723 else
724 n = 1;
725 for (i = 0; ; ++i)
726 #endif
728 if (c == K_SPECIAL) /* special key or escaped K_SPECIAL */
730 c = TO_SPECIAL(p[1], p[2]);
731 p += 2;
733 #ifdef FEAT_GUI
734 if (c == CSI) /* escaped CSI */
735 p += 2;
736 #endif
737 if (*++p == NUL && bp->b_next != NULL)
739 bp = bp->b_next;
740 p = bp->b_str;
742 #ifdef FEAT_MBYTE
743 buf[i] = c;
744 if (i == n - 1) /* last byte of a character */
746 if (n != 1)
747 c = (*mb_ptr2char)(buf);
748 break;
750 c = *p;
751 if (c == NUL) /* cannot happen? */
752 break;
753 #endif
757 return c;
761 * Copy the rest of the redo buffer into the stuff buffer (in a slow way).
762 * If old_redo is TRUE, use old_redobuff instead of redobuff.
763 * The escaped K_SPECIAL and CSI are copied without translation.
765 static void
766 copy_redo(old_redo)
767 int old_redo;
769 int c;
771 while ((c = read_redo(FALSE, old_redo)) != NUL)
772 stuffcharReadbuff(c);
776 * Stuff the redo buffer into the stuffbuff.
777 * Insert the redo count into the command.
778 * If "old_redo" is TRUE, the last but one command is repeated
779 * instead of the last command (inserting text). This is used for
780 * CTRL-O <.> in insert mode
782 * return FAIL for failure, OK otherwise
785 start_redo(count, old_redo)
786 long count;
787 int old_redo;
789 int c;
791 /* init the pointers; return if nothing to redo */
792 if (read_redo(TRUE, old_redo) == FAIL)
793 return FAIL;
795 c = read_redo(FALSE, old_redo);
797 /* copy the buffer name, if present */
798 if (c == '"')
800 add_buff(&stuffbuff, (char_u *)"\"", 1L);
801 c = read_redo(FALSE, old_redo);
803 /* if a numbered buffer is used, increment the number */
804 if (c >= '1' && c < '9')
805 ++c;
806 add_char_buff(&stuffbuff, c);
807 c = read_redo(FALSE, old_redo);
810 #ifdef FEAT_VISUAL
811 if (c == 'v') /* redo Visual */
813 VIsual = curwin->w_cursor;
814 VIsual_active = TRUE;
815 VIsual_select = FALSE;
816 VIsual_reselect = TRUE;
817 redo_VIsual_busy = TRUE;
818 c = read_redo(FALSE, old_redo);
820 #endif
822 /* try to enter the count (in place of a previous count) */
823 if (count)
825 while (VIM_ISDIGIT(c)) /* skip "old" count */
826 c = read_redo(FALSE, old_redo);
827 add_num_buff(&stuffbuff, count);
830 /* copy from the redo buffer into the stuff buffer */
831 add_char_buff(&stuffbuff, c);
832 copy_redo(old_redo);
833 return OK;
837 * Repeat the last insert (R, o, O, a, A, i or I command) by stuffing
838 * the redo buffer into the stuffbuff.
839 * return FAIL for failure, OK otherwise
842 start_redo_ins()
844 int c;
846 if (read_redo(TRUE, FALSE) == FAIL)
847 return FAIL;
848 start_stuff();
850 /* skip the count and the command character */
851 while ((c = read_redo(FALSE, FALSE)) != NUL)
853 if (vim_strchr((char_u *)"AaIiRrOo", c) != NULL)
855 if (c == 'O' || c == 'o')
856 stuffReadbuff(NL_STR);
857 break;
861 /* copy the typed text from the redo buffer into the stuff buffer */
862 copy_redo(FALSE);
863 block_redo = TRUE;
864 return OK;
867 void
868 stop_redo_ins()
870 block_redo = FALSE;
874 * Initialize typebuf.tb_buf to point to typebuf_init.
875 * alloc() cannot be used here: In out-of-memory situations it would
876 * be impossible to type anything.
878 static void
879 init_typebuf()
881 if (typebuf.tb_buf == NULL)
883 typebuf.tb_buf = typebuf_init;
884 typebuf.tb_noremap = noremapbuf_init;
885 typebuf.tb_buflen = TYPELEN_INIT;
886 typebuf.tb_len = 0;
887 typebuf.tb_off = 0;
888 typebuf.tb_change_cnt = 1;
893 * insert a string in position 'offset' in the typeahead buffer (for "@r"
894 * and ":normal" command, vgetorpeek() and check_termcode())
896 * If noremap is REMAP_YES, new string can be mapped again.
897 * If noremap is REMAP_NONE, new string cannot be mapped again.
898 * If noremap is REMAP_SKIP, fist char of new string cannot be mapped again,
899 * but abbreviations are allowed.
900 * If noremap is REMAP_SCRIPT, new string cannot be mapped again, except for
901 * script-local mappings.
902 * If noremap is > 0, that many characters of the new string cannot be mapped.
904 * If nottyped is TRUE, the string does not return KeyTyped (don't use when
905 * offset is non-zero!).
907 * If silent is TRUE, cmd_silent is set when the characters are obtained.
909 * return FAIL for failure, OK otherwise
912 ins_typebuf(str, noremap, offset, nottyped, silent)
913 char_u *str;
914 int noremap;
915 int offset;
916 int nottyped;
917 int silent;
919 char_u *s1, *s2;
920 int newlen;
921 int addlen;
922 int i;
923 int newoff;
924 int val;
925 int nrm;
927 init_typebuf();
928 if (++typebuf.tb_change_cnt == 0)
929 typebuf.tb_change_cnt = 1;
931 addlen = (int)STRLEN(str);
934 * Easy case: there is room in front of typebuf.tb_buf[typebuf.tb_off]
936 if (offset == 0 && addlen <= typebuf.tb_off)
938 typebuf.tb_off -= addlen;
939 mch_memmove(typebuf.tb_buf + typebuf.tb_off, str, (size_t)addlen);
943 * Need to allocate a 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.
948 else
950 newoff = MAXMAPLEN + 4;
951 newlen = typebuf.tb_len + addlen + newoff + 4 * (MAXMAPLEN + 4);
952 if (newlen < 0) /* string is getting too long */
954 EMSG(_(e_toocompl)); /* also calls flush_buffers */
955 setcursor();
956 return FAIL;
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 */
964 vim_free(s1);
965 return FAIL;
967 typebuf.tb_buflen = newlen;
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;
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;
992 typebuf.tb_off = newoff;
994 typebuf.tb_len += addlen;
996 /* If noremap == REMAP_SCRIPT: do remap script-local mappings. */
997 if (noremap == REMAP_SCRIPT)
998 val = RM_SCRIPT;
999 else if (noremap == REMAP_SKIP)
1000 val = RM_ABBR;
1001 else
1002 val = RM_NONE;
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
1012 if (noremap == REMAP_SKIP)
1013 nrm = 1;
1014 else if (noremap < 0)
1015 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;
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)
1029 typebuf.tb_silent += addlen;
1030 cmd_silent = TRUE;
1032 if (typebuf.tb_no_abbr_cnt && offset == 0) /* and not used for abbrev.s */
1033 typebuf.tb_no_abbr_cnt += addlen;
1035 return OK;
1039 * Put character "c" back into the typeahead buffer.
1040 * Can be used for a character obtained by vgetc() that needs to be put back.
1041 * Uses cmd_silent, KeyTyped and KeyNoremap to restore the flags belonging to
1042 * the char.
1044 void
1045 ins_char_typebuf(c)
1046 int c;
1048 #ifdef FEAT_MBYTE
1049 char_u buf[MB_MAXBYTES];
1050 #else
1051 char_u buf[4];
1052 #endif
1053 if (IS_SPECIAL(c))
1055 buf[0] = K_SPECIAL;
1056 buf[1] = K_SECOND(c);
1057 buf[2] = K_THIRD(c);
1058 buf[3] = NUL;
1060 else
1062 #ifdef FEAT_MBYTE
1063 buf[(*mb_char2bytes)(c, buf)] = NUL;
1064 #else
1065 buf[0] = c;
1066 buf[1] = NUL;
1067 #endif
1069 (void)ins_typebuf(buf, KeyNoremap, 0, !KeyTyped, cmd_silent);
1073 * Return TRUE if the typeahead buffer was changed (while waiting for a
1074 * character to arrive). Happens when a message was received from a client or
1075 * from feedkeys().
1076 * But check in a more generic way to avoid trouble: When "typebuf.tb_buf"
1077 * changed it was reallocated and the old pointer can no longer be used.
1078 * Or "typebuf.tb_off" may have been changed and we would overwrite characters
1079 * that was just added.
1082 typebuf_changed(tb_change_cnt)
1083 int tb_change_cnt; /* old value of typebuf.tb_change_cnt */
1085 return (tb_change_cnt != 0 && (typebuf.tb_change_cnt != tb_change_cnt
1086 #if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
1087 || typebuf_was_filled
1088 #endif
1093 * Return TRUE if there are no characters in the typeahead buffer that have
1094 * not been typed (result from a mapping or come from ":normal").
1097 typebuf_typed()
1099 return typebuf.tb_maplen == 0;
1102 #if defined(FEAT_VISUAL) || defined(PROTO)
1104 * Return the number of characters that are mapped (or not typed).
1107 typebuf_maplen()
1109 return typebuf.tb_maplen;
1111 #endif
1114 * remove "len" characters from typebuf.tb_buf[typebuf.tb_off + offset]
1116 void
1117 del_typebuf(len, offset)
1118 int len;
1119 int offset;
1121 int i;
1123 if (len == 0)
1124 return; /* nothing to do */
1126 typebuf.tb_len -= len;
1129 * Easy case: Just increase typebuf.tb_off.
1131 if (offset == 0 && typebuf.tb_buflen - (typebuf.tb_off + len)
1132 >= 3 * MAXMAPLEN + 3)
1133 typebuf.tb_off += len;
1135 * Have to move the characters in typebuf.tb_buf[] and typebuf.tb_noremap[]
1137 else
1139 i = typebuf.tb_off + offset;
1141 * Leave some extra room at the end to avoid reallocation.
1143 if (typebuf.tb_off > MAXMAPLEN)
1145 mch_memmove(typebuf.tb_buf + MAXMAPLEN,
1146 typebuf.tb_buf + typebuf.tb_off, (size_t)offset);
1147 mch_memmove(typebuf.tb_noremap + MAXMAPLEN,
1148 typebuf.tb_noremap + typebuf.tb_off, (size_t)offset);
1149 typebuf.tb_off = MAXMAPLEN;
1151 /* adjust typebuf.tb_buf (include the NUL at the end) */
1152 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset,
1153 typebuf.tb_buf + i + len,
1154 (size_t)(typebuf.tb_len - offset + 1));
1155 /* adjust typebuf.tb_noremap[] */
1156 mch_memmove(typebuf.tb_noremap + typebuf.tb_off + offset,
1157 typebuf.tb_noremap + i + len,
1158 (size_t)(typebuf.tb_len - offset));
1161 if (typebuf.tb_maplen > offset) /* adjust tb_maplen */
1163 if (typebuf.tb_maplen < offset + len)
1164 typebuf.tb_maplen = offset;
1165 else
1166 typebuf.tb_maplen -= len;
1168 if (typebuf.tb_silent > offset) /* adjust tb_silent */
1170 if (typebuf.tb_silent < offset + len)
1171 typebuf.tb_silent = offset;
1172 else
1173 typebuf.tb_silent -= len;
1175 if (typebuf.tb_no_abbr_cnt > offset) /* adjust tb_no_abbr_cnt */
1177 if (typebuf.tb_no_abbr_cnt < offset + len)
1178 typebuf.tb_no_abbr_cnt = offset;
1179 else
1180 typebuf.tb_no_abbr_cnt -= len;
1183 #if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
1184 /* Reset the flag that text received from a client or from feedkeys()
1185 * was inserted in the typeahead buffer. */
1186 typebuf_was_filled = FALSE;
1187 #endif
1188 if (++typebuf.tb_change_cnt == 0)
1189 typebuf.tb_change_cnt = 1;
1193 * Write typed characters to script file.
1194 * If recording is on put the character in the recordbuffer.
1196 static void
1197 gotchars(chars, len)
1198 char_u *chars;
1199 int len;
1201 char_u *s = chars;
1202 int c;
1203 char_u buf[2];
1204 int todo = len;
1206 /* remember how many chars were last recorded */
1207 if (Recording)
1208 last_recorded_len += len;
1210 buf[1] = NUL;
1211 while (todo--)
1213 /* Handle one byte at a time; no translation to be done. */
1214 c = *s++;
1215 updatescript(c);
1217 if (Recording)
1219 buf[0] = c;
1220 add_buff(&recordbuff, buf, 1L);
1223 may_sync_undo();
1225 #ifdef FEAT_EVAL
1226 /* output "debug mode" message next time in debug mode */
1227 debug_did_msg = FALSE;
1228 #endif
1230 /* Since characters have been typed, consider the following to be in
1231 * another mapping. Search string will be kept in history. */
1232 ++maptick;
1236 * Sync undo. Called when typed characters are obtained from the typeahead
1237 * buffer, or when a menu is used.
1238 * Do not sync:
1239 * - In Insert mode, unless cursor key has been used.
1240 * - While reading a script file.
1241 * - When no_u_sync is non-zero.
1243 static void
1244 may_sync_undo()
1246 if ((!(State & (INSERT + CMDLINE)) || arrow_used)
1247 && scriptin[curscript] == NULL)
1248 u_sync(FALSE);
1252 * Make "typebuf" empty and allocate new buffers.
1253 * Returns FAIL when out of memory.
1256 alloc_typebuf()
1258 typebuf.tb_buf = alloc(TYPELEN_INIT);
1259 typebuf.tb_noremap = alloc(TYPELEN_INIT);
1260 if (typebuf.tb_buf == NULL || typebuf.tb_noremap == NULL)
1262 free_typebuf();
1263 return FAIL;
1265 typebuf.tb_buflen = TYPELEN_INIT;
1266 typebuf.tb_off = 0;
1267 typebuf.tb_len = 0;
1268 typebuf.tb_maplen = 0;
1269 typebuf.tb_silent = 0;
1270 typebuf.tb_no_abbr_cnt = 0;
1271 if (++typebuf.tb_change_cnt == 0)
1272 typebuf.tb_change_cnt = 1;
1273 return OK;
1277 * Free the buffers of "typebuf".
1279 void
1280 free_typebuf()
1282 if (typebuf.tb_buf == typebuf_init)
1283 EMSG2(_(e_intern2), "Free typebuf 1");
1284 else
1285 vim_free(typebuf.tb_buf);
1286 if (typebuf.tb_buf == noremapbuf_init)
1287 EMSG2(_(e_intern2), "Free typebuf 2");
1288 else
1289 vim_free(typebuf.tb_noremap);
1293 * When doing ":so! file", the current typeahead needs to be saved, and
1294 * restored when "file" has been read completely.
1296 static typebuf_T saved_typebuf[NSCRIPT];
1299 save_typebuf()
1301 init_typebuf();
1302 saved_typebuf[curscript] = typebuf;
1303 /* If out of memory: restore typebuf and close file. */
1304 if (alloc_typebuf() == FAIL)
1306 closescript();
1307 return FAIL;
1309 return OK;
1312 static int old_char = -1; /* character put back by vungetc() */
1313 static int old_mod_mask; /* mod_mask for ungotten character */
1315 #if defined(FEAT_EVAL) || defined(FEAT_EX_EXTRA) || defined(PROTO)
1318 * Save all three kinds of typeahead, so that the user must type at a prompt.
1320 void
1321 save_typeahead(tp)
1322 tasave_T *tp;
1324 tp->save_typebuf = typebuf;
1325 tp->typebuf_valid = (alloc_typebuf() == OK);
1326 if (!tp->typebuf_valid)
1327 typebuf = tp->save_typebuf;
1329 tp->old_char = old_char;
1330 tp->old_mod_mask = old_mod_mask;
1331 old_char = -1;
1333 tp->save_stuffbuff = stuffbuff;
1334 stuffbuff.bh_first.b_next = NULL;
1335 # ifdef USE_INPUT_BUF
1336 tp->save_inputbuf = get_input_buf();
1337 # endif
1341 * Restore the typeahead to what it was before calling save_typeahead().
1342 * The allocated memory is freed, can only be called once!
1344 void
1345 restore_typeahead(tp)
1346 tasave_T *tp;
1348 if (tp->typebuf_valid)
1350 free_typebuf();
1351 typebuf = tp->save_typebuf;
1354 old_char = tp->old_char;
1355 old_mod_mask = tp->old_mod_mask;
1357 free_buff(&stuffbuff);
1358 stuffbuff = tp->save_stuffbuff;
1359 # ifdef USE_INPUT_BUF
1360 set_input_buf(tp->save_inputbuf);
1361 # endif
1363 #endif
1366 * Open a new script file for the ":source!" command.
1368 void
1369 openscript(name, directly)
1370 char_u *name;
1371 int directly; /* when TRUE execute directly */
1373 if (curscript + 1 == NSCRIPT)
1375 EMSG(_(e_nesting));
1376 return;
1378 #ifdef FEAT_EVAL
1379 if (ignore_script)
1380 /* Not reading from script, also don't open one. Warning message? */
1381 return;
1382 #endif
1384 if (scriptin[curscript] != NULL) /* already reading script */
1385 ++curscript;
1386 /* use NameBuff for expanded name */
1387 expand_env(name, NameBuff, MAXPATHL);
1388 if ((scriptin[curscript] = mch_fopen((char *)NameBuff, READBIN)) == NULL)
1390 EMSG2(_(e_notopen), name);
1391 if (curscript)
1392 --curscript;
1393 return;
1395 if (save_typebuf() == FAIL)
1396 return;
1399 * Execute the commands from the file right now when using ":source!"
1400 * after ":global" or ":argdo" or in a loop. Also when another command
1401 * follows. This means the display won't be updated. Don't do this
1402 * always, "make test" would fail.
1404 if (directly)
1406 oparg_T oa;
1407 int oldcurscript;
1408 int save_State = State;
1409 int save_restart_edit = restart_edit;
1410 int save_insertmode = p_im;
1411 int save_finish_op = finish_op;
1412 int save_msg_scroll = msg_scroll;
1414 State = NORMAL;
1415 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
1416 restart_edit = 0; /* don't go to Insert mode */
1417 p_im = FALSE; /* don't use 'insertmode' */
1418 clear_oparg(&oa);
1419 finish_op = FALSE;
1421 oldcurscript = curscript;
1424 update_topline_cursor(); /* update cursor position and topline */
1425 normal_cmd(&oa, FALSE); /* execute one command */
1426 vpeekc(); /* check for end of file */
1428 while (scriptin[oldcurscript] != NULL);
1430 State = save_State;
1431 msg_scroll = save_msg_scroll;
1432 restart_edit = save_restart_edit;
1433 p_im = save_insertmode;
1434 finish_op = save_finish_op;
1439 * Close the currently active input script.
1441 static void
1442 closescript()
1444 free_typebuf();
1445 typebuf = saved_typebuf[curscript];
1447 fclose(scriptin[curscript]);
1448 scriptin[curscript] = NULL;
1449 if (curscript > 0)
1450 --curscript;
1453 #if defined(EXITFREE) || defined(PROTO)
1454 void
1455 close_all_scripts()
1457 while (scriptin[0] != NULL)
1458 closescript();
1460 #endif
1462 #if defined(FEAT_INS_EXPAND) || defined(PROTO)
1464 * Return TRUE when reading keys from a script file.
1467 using_script()
1469 return scriptin[curscript] != NULL;
1471 #endif
1474 * This function is called just before doing a blocking wait. Thus after
1475 * waiting 'updatetime' for a character to arrive.
1477 void
1478 before_blocking()
1480 updatescript(0);
1481 #ifdef FEAT_EVAL
1482 if (may_garbage_collect)
1483 garbage_collect();
1484 #endif
1488 * updatescipt() is called when a character can be written into the script file
1489 * or when we have waited some time for a character (c == 0)
1491 * All the changed memfiles are synced if c == 0 or when the number of typed
1492 * characters reaches 'updatecount' and 'updatecount' is non-zero.
1494 void
1495 updatescript(c)
1496 int c;
1498 static int count = 0;
1500 if (c && scriptout)
1501 putc(c, scriptout);
1502 if (c == 0 || (p_uc > 0 && ++count >= p_uc))
1504 ml_sync_all(c == 0, TRUE);
1505 count = 0;
1509 #define KL_PART_KEY -1 /* keylen value for incomplete key-code */
1510 #define KL_PART_MAP -2 /* keylen value for incomplete mapping */
1513 * Get the next input character.
1514 * Can return a special key or a multi-byte character.
1515 * Can return NUL when called recursively, use safe_vgetc() if that's not
1516 * wanted.
1517 * This translates escaped K_SPECIAL and CSI bytes to a K_SPECIAL or CSI byte.
1518 * Collects the bytes of a multibyte character into the whole character.
1519 * Returns the modifers in the global "mod_mask".
1522 vgetc()
1524 int c, c2;
1525 #ifdef FEAT_MBYTE
1526 int n;
1527 char_u buf[MB_MAXBYTES];
1528 int i;
1529 #endif
1531 #ifdef FEAT_EVAL
1532 /* Do garbage collection when garbagecollect() was called previously and
1533 * we are now at the toplevel. */
1534 if (may_garbage_collect && want_garbage_collect)
1535 garbage_collect();
1536 #endif
1539 * If a character was put back with vungetc, it was already processed.
1540 * Return it directly.
1542 if (old_char != -1)
1544 c = old_char;
1545 old_char = -1;
1546 mod_mask = old_mod_mask;
1548 else
1550 mod_mask = 0x0;
1551 last_recorded_len = 0;
1552 for (;;) /* this is done twice if there are modifiers */
1554 if (mod_mask) /* no mapping after modifier has been read */
1556 ++no_mapping;
1557 ++allow_keys;
1559 c = vgetorpeek(TRUE);
1560 if (mod_mask)
1562 --no_mapping;
1563 --allow_keys;
1566 /* Get two extra bytes for special keys */
1567 if (c == K_SPECIAL
1568 #ifdef FEAT_GUI
1569 || c == CSI
1570 #endif
1573 int save_allow_keys = allow_keys;
1575 ++no_mapping;
1576 allow_keys = 0; /* make sure BS is not found */
1577 c2 = vgetorpeek(TRUE); /* no mapping for these chars */
1578 c = vgetorpeek(TRUE);
1579 --no_mapping;
1580 allow_keys = save_allow_keys;
1581 if (c2 == KS_MODIFIER)
1583 mod_mask = c;
1584 continue;
1586 c = TO_SPECIAL(c2, c);
1588 #if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
1589 /* Handle K_TEAROFF here, the caller of vgetc() doesn't need to
1590 * know that a menu was torn off */
1591 if (c == K_TEAROFF)
1593 char_u name[200];
1594 int i;
1596 /* get menu path, it ends with a <CR> */
1597 for (i = 0; (c = vgetorpeek(TRUE)) != '\r'; )
1599 name[i] = c;
1600 if (i < 199)
1601 ++i;
1603 name[i] = NUL;
1604 gui_make_tearoff(name);
1605 continue;
1607 #endif
1608 #if defined(FEAT_GUI) && defined(HAVE_GTK2) && defined(FEAT_MENU)
1609 /* GTK: <F10> normally selects the menu, but it's passed until
1610 * here to allow mapping it. Intercept and invoke the GTK
1611 * behavior if it's not mapped. */
1612 if (c == K_F10 && gui.menubar != NULL)
1614 gtk_menu_shell_select_first(GTK_MENU_SHELL(gui.menubar), FALSE);
1615 continue;
1617 #endif
1618 #ifdef FEAT_GUI
1619 /* Handle focus event here, so that the caller doesn't need to
1620 * know about it. Return K_IGNORE so that we loop once (needed if
1621 * 'lazyredraw' is set). */
1622 if (c == K_FOCUSGAINED || c == K_FOCUSLOST)
1624 ui_focus_change(c == K_FOCUSGAINED);
1625 c = K_IGNORE;
1628 /* Translate K_CSI to CSI. The special key is only used to avoid
1629 * it being recognized as the start of a special key. */
1630 if (c == K_CSI)
1631 c = CSI;
1632 #endif
1634 #ifdef MSDOS
1636 * If K_NUL was typed, it is replaced by K_NUL, 3 in mch_inchar().
1637 * Delete the 3 here.
1639 else if (c == K_NUL && vpeekc() == 3)
1640 (void)vgetorpeek(TRUE);
1641 #endif
1643 /* a keypad or special function key was not mapped, use it like
1644 * its ASCII equivalent */
1645 switch (c)
1647 case K_KPLUS: c = '+'; break;
1648 case K_KMINUS: c = '-'; break;
1649 case K_KDIVIDE: c = '/'; break;
1650 case K_KMULTIPLY: c = '*'; break;
1651 case K_KENTER: c = CAR; break;
1652 case K_KPOINT:
1653 #ifdef WIN32
1654 /* Can be either '.' or a ',', *
1655 * depending on the type of keypad. */
1656 c = MapVirtualKey(VK_DECIMAL, 2); break;
1657 #else
1658 c = '.'; break;
1659 #endif
1660 case K_K0: c = '0'; break;
1661 case K_K1: c = '1'; break;
1662 case K_K2: c = '2'; break;
1663 case K_K3: c = '3'; break;
1664 case K_K4: c = '4'; break;
1665 case K_K5: c = '5'; break;
1666 case K_K6: c = '6'; break;
1667 case K_K7: c = '7'; break;
1668 case K_K8: c = '8'; break;
1669 case K_K9: c = '9'; break;
1671 case K_XHOME:
1672 case K_ZHOME: if (mod_mask == MOD_MASK_SHIFT)
1674 c = K_S_HOME;
1675 mod_mask = 0;
1677 else if (mod_mask == MOD_MASK_CTRL)
1679 c = K_C_HOME;
1680 mod_mask = 0;
1682 else
1683 c = K_HOME;
1684 break;
1685 case K_XEND:
1686 case K_ZEND: if (mod_mask == MOD_MASK_SHIFT)
1688 c = K_S_END;
1689 mod_mask = 0;
1691 else if (mod_mask == MOD_MASK_CTRL)
1693 c = K_C_END;
1694 mod_mask = 0;
1696 else
1697 c = K_END;
1698 break;
1700 case K_XUP: c = K_UP; break;
1701 case K_XDOWN: c = K_DOWN; break;
1702 case K_XLEFT: c = K_LEFT; break;
1703 case K_XRIGHT: c = K_RIGHT; break;
1706 #ifdef FEAT_MBYTE
1707 /* For a multi-byte character get all the bytes and return the
1708 * converted character.
1709 * Note: This will loop until enough bytes are received!
1711 if (has_mbyte && (n = MB_BYTE2LEN_CHECK(c)) > 1)
1713 ++no_mapping;
1714 buf[0] = c;
1715 for (i = 1; i < n; ++i)
1717 buf[i] = vgetorpeek(TRUE);
1718 if (buf[i] == K_SPECIAL
1719 #ifdef FEAT_GUI
1720 || buf[i] == CSI
1721 #endif
1724 /* Must be a K_SPECIAL - KS_SPECIAL - KE_FILLER sequence,
1725 * which represents a K_SPECIAL (0x80),
1726 * or a CSI - KS_EXTRA - KE_CSI sequence, which represents
1727 * a CSI (0x9B),
1728 * of a K_SPECIAL - KS_EXTRA - KE_CSI, which is CSI too. */
1729 c = vgetorpeek(TRUE);
1730 if (vgetorpeek(TRUE) == (int)KE_CSI && c == KS_EXTRA)
1731 buf[i] = CSI;
1734 --no_mapping;
1735 c = (*mb_ptr2char)(buf);
1737 #endif
1739 break;
1743 #ifdef FEAT_EVAL
1745 * In the main loop "may_garbage_collect" can be set to do garbage
1746 * collection in the first next vgetc(). It's disabled after that to
1747 * avoid internally used Lists and Dicts to be freed.
1749 may_garbage_collect = FALSE;
1750 #endif
1752 return c;
1756 * Like vgetc(), but never return a NUL when called recursively, get a key
1757 * directly from the user (ignoring typeahead).
1760 safe_vgetc()
1762 int c;
1764 c = vgetc();
1765 if (c == NUL)
1766 c = get_keystroke();
1767 return c;
1771 * Like safe_vgetc(), but loop to handle K_IGNORE.
1772 * Also ignore scrollbar events.
1775 plain_vgetc()
1777 int c;
1781 c = safe_vgetc();
1782 } while (c == K_IGNORE || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR);
1783 return c;
1787 * Check if a character is available, such that vgetc() will not block.
1788 * If the next character is a special character or multi-byte, the returned
1789 * character is not valid!.
1792 vpeekc()
1794 if (old_char != -1)
1795 return old_char;
1796 return vgetorpeek(FALSE);
1799 #if defined(FEAT_TERMRESPONSE) || defined(PROTO)
1801 * Like vpeekc(), but don't allow mapping. Do allow checking for terminal
1802 * codes.
1805 vpeekc_nomap()
1807 int c;
1809 ++no_mapping;
1810 ++allow_keys;
1811 c = vpeekc();
1812 --no_mapping;
1813 --allow_keys;
1814 return c;
1816 #endif
1818 #if defined(FEAT_INS_EXPAND) || defined(PROTO)
1820 * Check if any character is available, also half an escape sequence.
1821 * Trick: when no typeahead found, but there is something in the typeahead
1822 * buffer, it must be an ESC that is recognized as the start of a key code.
1825 vpeekc_any()
1827 int c;
1829 c = vpeekc();
1830 if (c == NUL && typebuf.tb_len > 0)
1831 c = ESC;
1832 return c;
1834 #endif
1837 * Call vpeekc() without causing anything to be mapped.
1838 * Return TRUE if a character is available, FALSE otherwise.
1841 char_avail()
1843 int retval;
1845 ++no_mapping;
1846 retval = vpeekc();
1847 --no_mapping;
1848 return (retval != NUL);
1851 void
1852 vungetc(c) /* unget one character (can only be done once!) */
1853 int c;
1855 old_char = c;
1856 old_mod_mask = mod_mask;
1860 * get a character:
1861 * 1. from the stuffbuffer
1862 * This is used for abbreviated commands like "D" -> "d$".
1863 * Also used to redo a command for ".".
1864 * 2. from the typeahead buffer
1865 * Stores text obtained previously but not used yet.
1866 * Also stores the result of mappings.
1867 * Also used for the ":normal" command.
1868 * 3. from the user
1869 * This may do a blocking wait if "advance" is TRUE.
1871 * if "advance" is TRUE (vgetc()):
1872 * really get the character.
1873 * KeyTyped is set to TRUE in the case the user typed the key.
1874 * KeyStuffed is TRUE if the character comes from the stuff buffer.
1875 * if "advance" is FALSE (vpeekc()):
1876 * just look whether there is a character available.
1878 * When "no_mapping" is zero, checks for mappings in the current mode.
1879 * Only returns one byte (of a multi-byte character).
1880 * K_SPECIAL and CSI may be escaped, need to get two more bytes then.
1882 static int
1883 vgetorpeek(advance)
1884 int advance;
1886 int c, c1;
1887 int keylen;
1888 char_u *s;
1889 mapblock_T *mp;
1890 #ifdef FEAT_LOCALMAP
1891 mapblock_T *mp2;
1892 #endif
1893 mapblock_T *mp_match;
1894 int mp_match_len = 0;
1895 int timedout = FALSE; /* waited for more than 1 second
1896 for mapping to complete */
1897 int mapdepth = 0; /* check for recursive mapping */
1898 int mode_deleted = FALSE; /* set when mode has been deleted */
1899 int local_State;
1900 int mlen;
1901 int max_mlen;
1902 int i;
1903 #ifdef FEAT_CMDL_INFO
1904 int new_wcol, new_wrow;
1905 #endif
1906 #ifdef FEAT_GUI
1907 # ifdef FEAT_MENU
1908 int idx;
1909 # endif
1910 int shape_changed = FALSE; /* adjusted cursor shape */
1911 #endif
1912 int n;
1913 #ifdef FEAT_LANGMAP
1914 int nolmaplen;
1915 #endif
1916 int old_wcol, old_wrow;
1917 int wait_tb_len;
1920 * This function doesn't work very well when called recursively. This may
1921 * happen though, because of:
1922 * 1. The call to add_to_showcmd(). char_avail() is then used to check if
1923 * there is a character available, which calls this function. In that
1924 * case we must return NUL, to indicate no character is available.
1925 * 2. A GUI callback function writes to the screen, causing a
1926 * wait_return().
1927 * Using ":normal" can also do this, but it saves the typeahead buffer,
1928 * thus it should be OK. But don't get a key from the user then.
1930 if (vgetc_busy > 0
1931 #ifdef FEAT_EX_EXTRA
1932 && ex_normal_busy == 0
1933 #endif
1935 return NUL;
1937 local_State = get_real_state();
1939 ++vgetc_busy;
1941 if (advance)
1942 KeyStuffed = FALSE;
1944 init_typebuf();
1945 start_stuff();
1946 if (advance && typebuf.tb_maplen == 0)
1947 Exec_reg = FALSE;
1951 * get a character: 1. from the stuffbuffer
1953 if (typeahead_char != 0)
1955 c = typeahead_char;
1956 if (advance)
1957 typeahead_char = 0;
1959 else
1960 c = read_stuff(advance);
1961 if (c != NUL && !got_int)
1963 if (advance)
1965 /* KeyTyped = FALSE; When the command that stuffed something
1966 * was typed, behave like the stuffed command was typed.
1967 * needed for CTRL-W CTRl-] to open a fold, for example. */
1968 KeyStuffed = TRUE;
1970 if (typebuf.tb_no_abbr_cnt == 0)
1971 typebuf.tb_no_abbr_cnt = 1; /* no abbreviations now */
1973 else
1976 * Loop until we either find a matching mapped key, or we
1977 * are sure that it is not a mapped key.
1978 * If a mapped key sequence is found we go back to the start to
1979 * try re-mapping.
1981 for (;;)
1984 * ui_breakcheck() is slow, don't use it too often when
1985 * inside a mapping. But call it each time for typed
1986 * characters.
1988 if (typebuf.tb_maplen)
1989 line_breakcheck();
1990 else
1991 ui_breakcheck(); /* check for CTRL-C */
1992 keylen = 0;
1993 if (got_int)
1995 /* flush all input */
1996 c = inchar(typebuf.tb_buf, typebuf.tb_buflen - 1, 0L,
1997 typebuf.tb_change_cnt);
1999 * If inchar() returns TRUE (script file was active) or we
2000 * are inside a mapping, get out of insert mode.
2001 * Otherwise we behave like having gotten a CTRL-C.
2002 * As a result typing CTRL-C in insert mode will
2003 * really insert a CTRL-C.
2005 if ((c || typebuf.tb_maplen)
2006 && (State & (INSERT + CMDLINE)))
2007 c = ESC;
2008 else
2009 c = Ctrl_C;
2010 flush_buffers(TRUE); /* flush all typeahead */
2012 if (advance)
2014 /* Also record this character, it might be needed to
2015 * get out of Insert mode. */
2016 *typebuf.tb_buf = c;
2017 gotchars(typebuf.tb_buf, 1);
2019 cmd_silent = FALSE;
2021 break;
2023 else if (typebuf.tb_len > 0)
2026 * Check for a mappable key sequence.
2027 * Walk through one maphash[] list until we find an
2028 * entry that matches.
2030 * Don't look for mappings if:
2031 * - no_mapping set: mapping disabled (e.g. for CTRL-V)
2032 * - maphash_valid not set: no mappings present.
2033 * - typebuf.tb_buf[typebuf.tb_off] should not be remapped
2034 * - in insert or cmdline mode and 'paste' option set
2035 * - waiting for "hit return to continue" and CR or SPACE
2036 * typed
2037 * - waiting for a char with --more--
2038 * - in Ctrl-X mode, and we get a valid char for that mode
2040 mp = NULL;
2041 max_mlen = 0;
2042 c1 = typebuf.tb_buf[typebuf.tb_off];
2043 if (no_mapping == 0 && maphash_valid
2044 && (no_zero_mapping == 0 || c1 != '0')
2045 && (typebuf.tb_maplen == 0
2046 || (p_remap
2047 && (typebuf.tb_noremap[typebuf.tb_off]
2048 & (RM_NONE|RM_ABBR)) == 0))
2049 && !(p_paste && (State & (INSERT + CMDLINE)))
2050 && !(State == HITRETURN && (c1 == CAR || c1 == ' '))
2051 && State != ASKMORE
2052 && State != CONFIRM
2053 #ifdef FEAT_INS_EXPAND
2054 && !((ctrl_x_mode != 0 && vim_is_ctrl_x_key(c1))
2055 || ((compl_cont_status & CONT_LOCAL)
2056 && (c1 == Ctrl_N || c1 == Ctrl_P)))
2057 #endif
2060 #ifdef FEAT_LANGMAP
2061 if (c1 == K_SPECIAL)
2062 nolmaplen = 2;
2063 else
2065 LANGMAP_ADJUST(c1, TRUE);
2066 nolmaplen = 0;
2068 #endif
2069 #ifdef FEAT_LOCALMAP
2070 /* First try buffer-local mappings. */
2071 mp = curbuf->b_maphash[MAP_HASH(local_State, c1)];
2072 mp2 = maphash[MAP_HASH(local_State, c1)];
2073 if (mp == NULL)
2075 mp = mp2;
2076 mp2 = NULL;
2078 #else
2079 mp = maphash[MAP_HASH(local_State, c1)];
2080 #endif
2082 * Loop until a partly matching mapping is found or
2083 * all (local) mappings have been checked.
2084 * The longest full match is remembered in "mp_match".
2085 * A full match is only accepted if there is no partly
2086 * match, so "aa" and "aaa" can both be mapped.
2088 mp_match = NULL;
2089 mp_match_len = 0;
2090 for ( ; mp != NULL;
2091 #ifdef FEAT_LOCALMAP
2092 mp->m_next == NULL ? (mp = mp2, mp2 = NULL) :
2093 #endif
2094 (mp = mp->m_next))
2097 * Only consider an entry if the first character
2098 * matches and it is for the current state.
2099 * Skip ":lmap" mappings if keys were mapped.
2101 if (mp->m_keys[0] == c1
2102 && (mp->m_mode & local_State)
2103 && ((mp->m_mode & LANGMAP) == 0
2104 || typebuf.tb_maplen == 0))
2106 #ifdef FEAT_LANGMAP
2107 int nomap = nolmaplen;
2108 int c2;
2109 #endif
2110 /* find the match length of this mapping */
2111 for (mlen = 1; mlen < typebuf.tb_len; ++mlen)
2113 #ifdef FEAT_LANGMAP
2114 c2 = typebuf.tb_buf[typebuf.tb_off + mlen];
2115 if (nomap > 0)
2116 --nomap;
2117 else if (c2 == K_SPECIAL)
2118 nomap = 2;
2119 else
2120 LANGMAP_ADJUST(c2, TRUE);
2121 if (mp->m_keys[mlen] != c2)
2122 #else
2123 if (mp->m_keys[mlen] !=
2124 typebuf.tb_buf[typebuf.tb_off + mlen])
2125 #endif
2126 break;
2129 #ifdef FEAT_MBYTE
2130 /* Don't allow mapping the first byte(s) of a
2131 * multi-byte char. Happens when mapping
2132 * <M-a> and then changing 'encoding'. */
2133 if (has_mbyte && MB_BYTE2LEN(c1)
2134 > (*mb_ptr2len)(mp->m_keys))
2135 mlen = 0;
2136 #endif
2138 * Check an entry whether it matches.
2139 * - Full match: mlen == keylen
2140 * - Partly match: mlen == typebuf.tb_len
2142 keylen = mp->m_keylen;
2143 if (mlen == keylen
2144 || (mlen == typebuf.tb_len
2145 && typebuf.tb_len < keylen))
2148 * If only script-local mappings are
2149 * allowed, check if the mapping starts
2150 * with K_SNR.
2152 s = typebuf.tb_noremap + typebuf.tb_off;
2153 if (*s == RM_SCRIPT
2154 && (mp->m_keys[0] != K_SPECIAL
2155 || mp->m_keys[1] != KS_EXTRA
2156 || mp->m_keys[2]
2157 != (int)KE_SNR))
2158 continue;
2160 * If one of the typed keys cannot be
2161 * remapped, skip the entry.
2163 for (n = mlen; --n >= 0; )
2164 if (*s++ & (RM_NONE|RM_ABBR))
2165 break;
2166 if (n >= 0)
2167 continue;
2169 if (keylen > typebuf.tb_len)
2171 if (!timedout)
2173 /* break at a partly match */
2174 keylen = KL_PART_MAP;
2175 break;
2178 else if (keylen > mp_match_len)
2180 /* found a longer match */
2181 mp_match = mp;
2182 mp_match_len = keylen;
2185 else
2186 /* No match; may have to check for
2187 * termcode at next character. */
2188 if (max_mlen < mlen)
2189 max_mlen = mlen;
2193 /* If no partly match found, use the longest full
2194 * match. */
2195 if (keylen != KL_PART_MAP)
2197 mp = mp_match;
2198 keylen = mp_match_len;
2202 /* Check for match with 'pastetoggle' */
2203 if (*p_pt != NUL && mp == NULL && (State & (INSERT|NORMAL)))
2205 for (mlen = 0; mlen < typebuf.tb_len && p_pt[mlen];
2206 ++mlen)
2207 if (p_pt[mlen] != typebuf.tb_buf[typebuf.tb_off
2208 + mlen])
2209 break;
2210 if (p_pt[mlen] == NUL) /* match */
2212 /* write chars to script file(s) */
2213 if (mlen > typebuf.tb_maplen)
2214 gotchars(typebuf.tb_buf + typebuf.tb_off
2215 + typebuf.tb_maplen,
2216 mlen - typebuf.tb_maplen);
2218 del_typebuf(mlen, 0); /* remove the chars */
2219 set_option_value((char_u *)"paste",
2220 (long)!p_paste, NULL, 0);
2221 if (!(State & INSERT))
2223 msg_col = 0;
2224 msg_row = Rows - 1;
2225 msg_clr_eos(); /* clear ruler */
2227 showmode();
2228 setcursor();
2229 continue;
2231 /* Need more chars for partly match. */
2232 if (mlen == typebuf.tb_len)
2233 keylen = KL_PART_KEY;
2234 else if (max_mlen < mlen)
2235 /* no match, may have to check for termcode at
2236 * next character */
2237 max_mlen = mlen + 1;
2240 if ((mp == NULL || max_mlen >= mp_match_len)
2241 && keylen != KL_PART_MAP)
2243 int save_keylen = keylen;
2246 * When no matching mapping found or found a
2247 * non-matching mapping that matches at least what the
2248 * matching mapping matched:
2249 * Check if we have a terminal code, when:
2250 * mapping is allowed,
2251 * keys have not been mapped,
2252 * and not an ESC sequence, not in insert mode or
2253 * p_ek is on,
2254 * and when not timed out,
2256 if ((no_mapping == 0 || allow_keys != 0)
2257 && (typebuf.tb_maplen == 0
2258 || (p_remap && typebuf.tb_noremap[
2259 typebuf.tb_off] == RM_YES))
2260 && !timedout)
2262 keylen = check_termcode(max_mlen + 1, NULL, 0);
2264 /* If no termcode matched but 'pastetoggle'
2265 * matched partially it's like an incomplete key
2266 * sequence. */
2267 if (keylen == 0 && save_keylen == KL_PART_KEY)
2268 keylen = KL_PART_KEY;
2271 * When getting a partial match, but the last
2272 * characters were not typed, don't wait for a
2273 * typed character to complete the termcode.
2274 * This helps a lot when a ":normal" command ends
2275 * in an ESC.
2277 if (keylen < 0
2278 && typebuf.tb_len == typebuf.tb_maplen)
2279 keylen = 0;
2281 else
2282 keylen = 0;
2283 if (keylen == 0) /* no matching terminal code */
2285 #ifdef AMIGA /* check for window bounds report */
2286 if (typebuf.tb_maplen == 0 && (typebuf.tb_buf[
2287 typebuf.tb_off] & 0xff) == CSI)
2289 for (s = typebuf.tb_buf + typebuf.tb_off + 1;
2290 s < typebuf.tb_buf + typebuf.tb_off
2291 + typebuf.tb_len
2292 && (VIM_ISDIGIT(*s) || *s == ';'
2293 || *s == ' ');
2294 ++s)
2296 if (*s == 'r' || *s == '|') /* found one */
2298 del_typebuf((int)(s + 1 -
2299 (typebuf.tb_buf + typebuf.tb_off)), 0);
2300 /* get size and redraw screen */
2301 shell_resized();
2302 continue;
2304 if (*s == NUL) /* need more characters */
2305 keylen = KL_PART_KEY;
2307 if (keylen >= 0)
2308 #endif
2309 /* When there was a matching mapping and no
2310 * termcode could be replaced after another one,
2311 * use that mapping (loop around). If there was
2312 * no mapping use the character from the
2313 * typeahead buffer right here. */
2314 if (mp == NULL)
2317 * get a character: 2. from the typeahead buffer
2319 c = typebuf.tb_buf[typebuf.tb_off] & 255;
2320 if (advance) /* remove chars from tb_buf */
2322 cmd_silent = (typebuf.tb_silent > 0);
2323 if (typebuf.tb_maplen > 0)
2324 KeyTyped = FALSE;
2325 else
2327 KeyTyped = TRUE;
2328 /* write char to script file(s) */
2329 gotchars(typebuf.tb_buf
2330 + typebuf.tb_off, 1);
2332 KeyNoremap = typebuf.tb_noremap[
2333 typebuf.tb_off];
2334 del_typebuf(1, 0);
2336 break; /* got character, break for loop */
2339 if (keylen > 0) /* full matching terminal code */
2341 #if defined(FEAT_GUI) && defined(FEAT_MENU)
2342 if (typebuf.tb_buf[typebuf.tb_off] == K_SPECIAL
2343 && typebuf.tb_buf[typebuf.tb_off + 1]
2344 == KS_MENU)
2347 * Using a menu may cause a break in undo!
2348 * It's like using gotchars(), but without
2349 * recording or writing to a script file.
2351 may_sync_undo();
2352 del_typebuf(3, 0);
2353 idx = get_menu_index(current_menu, local_State);
2354 if (idx != MENU_INDEX_INVALID)
2356 # ifdef FEAT_VISUAL
2358 * In Select mode and a Visual mode menu
2359 * is used: Switch to Visual mode
2360 * temporarily. Append K_SELECT to switch
2361 * back to Select mode.
2363 if (VIsual_active && VIsual_select
2364 && (current_menu->modes & VISUAL))
2366 VIsual_select = FALSE;
2367 (void)ins_typebuf(K_SELECT_STRING,
2368 REMAP_NONE, 0, TRUE, FALSE);
2370 # endif
2371 ins_typebuf(current_menu->strings[idx],
2372 current_menu->noremap[idx],
2373 0, TRUE,
2374 current_menu->silent[idx]);
2377 #endif /* FEAT_GUI && FEAT_MENU */
2378 continue; /* try mapping again */
2381 /* Partial match: get some more characters. When a
2382 * matching mapping was found use that one. */
2383 if (mp == NULL || keylen < 0)
2384 keylen = KL_PART_KEY;
2385 else
2386 keylen = mp_match_len;
2389 /* complete match */
2390 if (keylen >= 0 && keylen <= typebuf.tb_len)
2392 /* write chars to script file(s) */
2393 if (keylen > typebuf.tb_maplen)
2394 gotchars(typebuf.tb_buf + typebuf.tb_off
2395 + typebuf.tb_maplen,
2396 keylen - typebuf.tb_maplen);
2398 cmd_silent = (typebuf.tb_silent > 0);
2399 del_typebuf(keylen, 0); /* remove the mapped keys */
2402 * Put the replacement string in front of mapstr.
2403 * The depth check catches ":map x y" and ":map y x".
2405 if (++mapdepth >= p_mmd)
2407 EMSG(_("E223: recursive mapping"));
2408 if (State & CMDLINE)
2409 redrawcmdline();
2410 else
2411 setcursor();
2412 flush_buffers(FALSE);
2413 mapdepth = 0; /* for next one */
2414 c = -1;
2415 break;
2418 #ifdef FEAT_VISUAL
2420 * In Select mode and a Visual mode mapping is used:
2421 * Switch to Visual mode temporarily. Append K_SELECT
2422 * to switch back to Select mode.
2424 if (VIsual_active && VIsual_select
2425 && (mp->m_mode & VISUAL))
2427 VIsual_select = FALSE;
2428 (void)ins_typebuf(K_SELECT_STRING, REMAP_NONE,
2429 0, TRUE, FALSE);
2431 #endif
2433 #ifdef FEAT_EVAL
2435 * Handle ":map <expr>": evaluate the {rhs} as an
2436 * expression. Save and restore the typeahead so that
2437 * getchar() can be used. Also save and restore the
2438 * command line for "normal :".
2440 if (mp->m_expr)
2442 tasave_T tabuf;
2443 int save_vgetc_busy = vgetc_busy;
2445 save_typeahead(&tabuf);
2446 if (tabuf.typebuf_valid)
2448 vgetc_busy = 0;
2449 s = eval_map_expr(mp->m_str, NUL);
2450 vgetc_busy = save_vgetc_busy;
2452 else
2453 s = NULL;
2454 restore_typeahead(&tabuf);
2456 else
2457 #endif
2458 s = mp->m_str;
2461 * Insert the 'to' part in the typebuf.tb_buf.
2462 * If 'from' field is the same as the start of the
2463 * 'to' field, don't remap the first character (but do
2464 * allow abbreviations).
2465 * If m_noremap is set, don't remap the whole 'to'
2466 * part.
2468 if (s == NULL)
2469 i = FAIL;
2470 else
2472 i = ins_typebuf(s,
2473 mp->m_noremap != REMAP_YES
2474 ? mp->m_noremap
2475 : STRNCMP(s, mp->m_keys,
2476 (size_t)keylen) != 0
2477 ? REMAP_YES : REMAP_SKIP,
2478 0, TRUE, cmd_silent || mp->m_silent);
2479 #ifdef FEAT_EVAL
2480 if (mp->m_expr)
2481 vim_free(s);
2482 #endif
2484 if (i == FAIL)
2486 c = -1;
2487 break;
2489 continue;
2494 * get a character: 3. from the user - handle <Esc> in Insert mode
2497 * special case: if we get an <ESC> in insert mode and there
2498 * are no more characters at once, we pretend to go out of
2499 * insert mode. This prevents the one second delay after
2500 * typing an <ESC>. If we get something after all, we may
2501 * have to redisplay the mode. That the cursor is in the wrong
2502 * place does not matter.
2504 c = 0;
2505 #ifdef FEAT_CMDL_INFO
2506 new_wcol = curwin->w_wcol;
2507 new_wrow = curwin->w_wrow;
2508 #endif
2509 if ( advance
2510 && typebuf.tb_len == 1
2511 && typebuf.tb_buf[typebuf.tb_off] == ESC
2512 && !no_mapping
2513 #ifdef FEAT_EX_EXTRA
2514 && ex_normal_busy == 0
2515 #endif
2516 && typebuf.tb_maplen == 0
2517 && (State & INSERT)
2518 && (p_timeout || (keylen == KL_PART_KEY && p_ttimeout))
2519 && (c = inchar(typebuf.tb_buf + typebuf.tb_off
2520 + typebuf.tb_len, 3, 25L,
2521 typebuf.tb_change_cnt)) == 0)
2523 colnr_T col = 0, vcol;
2524 char_u *ptr;
2526 if (mode_displayed)
2528 unshowmode(TRUE);
2529 mode_deleted = TRUE;
2531 #ifdef FEAT_GUI
2532 /* may show different cursor shape */
2533 if (gui.in_use)
2535 int save_State;
2537 save_State = State;
2538 State = NORMAL;
2539 gui_update_cursor(TRUE, FALSE);
2540 State = save_State;
2541 shape_changed = TRUE;
2543 #endif
2544 validate_cursor();
2545 old_wcol = curwin->w_wcol;
2546 old_wrow = curwin->w_wrow;
2548 /* move cursor left, if possible */
2549 if (curwin->w_cursor.col != 0)
2551 if (curwin->w_wcol > 0)
2553 if (did_ai)
2556 * We are expecting to truncate the trailing
2557 * white-space, so find the last non-white
2558 * character -- webb
2560 col = vcol = curwin->w_wcol = 0;
2561 ptr = ml_get_curline();
2562 while (col < curwin->w_cursor.col)
2564 if (!vim_iswhite(ptr[col]))
2565 curwin->w_wcol = vcol;
2566 vcol += lbr_chartabsize(ptr + col,
2567 (colnr_T)vcol);
2568 #ifdef FEAT_MBYTE
2569 if (has_mbyte)
2570 col += (*mb_ptr2len)(ptr + col);
2571 else
2572 #endif
2573 ++col;
2575 curwin->w_wrow = curwin->w_cline_row
2576 + curwin->w_wcol / W_WIDTH(curwin);
2577 curwin->w_wcol %= W_WIDTH(curwin);
2578 curwin->w_wcol += curwin_col_off();
2579 #ifdef FEAT_MBYTE
2580 col = 0; /* no correction needed */
2581 #endif
2583 else
2585 --curwin->w_wcol;
2586 #ifdef FEAT_MBYTE
2587 col = curwin->w_cursor.col - 1;
2588 #endif
2591 else if (curwin->w_p_wrap && curwin->w_wrow)
2593 --curwin->w_wrow;
2594 curwin->w_wcol = W_WIDTH(curwin) - 1;
2595 #ifdef FEAT_MBYTE
2596 col = curwin->w_cursor.col - 1;
2597 #endif
2599 #ifdef FEAT_MBYTE
2600 if (has_mbyte && col > 0 && curwin->w_wcol > 0)
2602 /* Correct when the cursor is on the right halve
2603 * of a double-wide character. */
2604 ptr = ml_get_curline();
2605 col -= (*mb_head_off)(ptr, ptr + col);
2606 if ((*mb_ptr2cells)(ptr + col) > 1)
2607 --curwin->w_wcol;
2609 #endif
2611 setcursor();
2612 out_flush();
2613 #ifdef FEAT_CMDL_INFO
2614 new_wcol = curwin->w_wcol;
2615 new_wrow = curwin->w_wrow;
2616 #endif
2617 curwin->w_wcol = old_wcol;
2618 curwin->w_wrow = old_wrow;
2620 if (c < 0)
2621 continue; /* end of input script reached */
2622 typebuf.tb_len += c;
2624 /* buffer full, don't map */
2625 if (typebuf.tb_len >= typebuf.tb_maplen + MAXMAPLEN)
2627 timedout = TRUE;
2628 continue;
2631 #ifdef FEAT_EX_EXTRA
2632 if (ex_normal_busy > 0)
2634 # ifdef FEAT_CMDWIN
2635 static int tc = 0;
2636 # endif
2638 /* No typeahead left and inside ":normal". Must return
2639 * something to avoid getting stuck. When an incomplete
2640 * mapping is present, behave like it timed out. */
2641 if (typebuf.tb_len > 0)
2643 timedout = TRUE;
2644 continue;
2646 /* When 'insertmode' is set, ESC just beeps in Insert
2647 * mode. Use CTRL-L to make edit() return.
2648 * For the command line only CTRL-C always breaks it.
2649 * For the cmdline window: Alternate between ESC and
2650 * CTRL-C: ESC for most situations and CTRL-C to close the
2651 * cmdline window. */
2652 if (p_im && (State & INSERT))
2653 c = Ctrl_L;
2654 else if ((State & CMDLINE)
2655 # ifdef FEAT_CMDWIN
2656 || (cmdwin_type > 0 && tc == ESC)
2657 # endif
2659 c = Ctrl_C;
2660 else
2661 c = ESC;
2662 # ifdef FEAT_CMDWIN
2663 tc = c;
2664 # endif
2665 break;
2667 #endif
2670 * get a character: 3. from the user - update display
2672 /* In insert mode a screen update is skipped when characters
2673 * are still available. But when those available characters
2674 * are part of a mapping, and we are going to do a blocking
2675 * wait here. Need to update the screen to display the
2676 * changed text so far. */
2677 if ((State & INSERT) && advance && must_redraw != 0)
2679 update_screen(0);
2680 setcursor(); /* put cursor back where it belongs */
2684 * If we have a partial match (and are going to wait for more
2685 * input from the user), show the partially matched characters
2686 * to the user with showcmd.
2688 #ifdef FEAT_CMDL_INFO
2689 i = 0;
2690 #endif
2691 c1 = 0;
2692 if (typebuf.tb_len > 0 && advance && !exmode_active)
2694 if (((State & (NORMAL | INSERT)) || State == LANGMAP)
2695 && State != HITRETURN)
2697 /* this looks nice when typing a dead character map */
2698 if (State & INSERT
2699 && ptr2cells(typebuf.tb_buf + typebuf.tb_off
2700 + typebuf.tb_len - 1) == 1)
2702 edit_putchar(typebuf.tb_buf[typebuf.tb_off
2703 + typebuf.tb_len - 1], FALSE);
2704 setcursor(); /* put cursor back where it belongs */
2705 c1 = 1;
2707 #ifdef FEAT_CMDL_INFO
2708 /* need to use the col and row from above here */
2709 old_wcol = curwin->w_wcol;
2710 old_wrow = curwin->w_wrow;
2711 curwin->w_wcol = new_wcol;
2712 curwin->w_wrow = new_wrow;
2713 push_showcmd();
2714 if (typebuf.tb_len > SHOWCMD_COLS)
2715 i = typebuf.tb_len - SHOWCMD_COLS;
2716 while (i < typebuf.tb_len)
2717 (void)add_to_showcmd(typebuf.tb_buf[typebuf.tb_off
2718 + i++]);
2719 curwin->w_wcol = old_wcol;
2720 curwin->w_wrow = old_wrow;
2721 #endif
2724 /* this looks nice when typing a dead character map */
2725 if ((State & CMDLINE)
2726 #if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2727 && cmdline_star == 0
2728 #endif
2729 && ptr2cells(typebuf.tb_buf + typebuf.tb_off
2730 + typebuf.tb_len - 1) == 1)
2732 putcmdline(typebuf.tb_buf[typebuf.tb_off
2733 + typebuf.tb_len - 1], FALSE);
2734 c1 = 1;
2739 * get a character: 3. from the user - get it
2741 wait_tb_len = typebuf.tb_len;
2742 c = inchar(typebuf.tb_buf + typebuf.tb_off + typebuf.tb_len,
2743 typebuf.tb_buflen - typebuf.tb_off - typebuf.tb_len - 1,
2744 !advance
2746 : ((typebuf.tb_len == 0
2747 || !(p_timeout || (p_ttimeout
2748 && keylen == KL_PART_KEY)))
2749 ? -1L
2750 : ((keylen == KL_PART_KEY && p_ttm >= 0)
2751 ? p_ttm
2752 : p_tm)), typebuf.tb_change_cnt);
2754 #ifdef FEAT_CMDL_INFO
2755 if (i != 0)
2756 pop_showcmd();
2757 #endif
2758 if (c1 == 1)
2760 if (State & INSERT)
2761 edit_unputchar();
2762 if (State & CMDLINE)
2763 unputcmdline();
2764 setcursor(); /* put cursor back where it belongs */
2767 if (c < 0)
2768 continue; /* end of input script reached */
2769 if (c == NUL) /* no character available */
2771 if (!advance)
2772 break;
2773 if (wait_tb_len > 0) /* timed out */
2775 timedout = TRUE;
2776 continue;
2779 else
2780 { /* allow mapping for just typed characters */
2781 while (typebuf.tb_buf[typebuf.tb_off
2782 + typebuf.tb_len] != NUL)
2783 typebuf.tb_noremap[typebuf.tb_off
2784 + typebuf.tb_len++] = RM_YES;
2785 #ifdef USE_IM_CONTROL
2786 /* Get IM status right after getting keys, not after the
2787 * timeout for a mapping (focus may be lost by then). */
2788 vgetc_im_active = im_get_status();
2789 #endif
2791 } /* for (;;) */
2792 } /* if (!character from stuffbuf) */
2794 /* if advance is FALSE don't loop on NULs */
2795 } while (c < 0 || (advance && c == NUL));
2798 * The "INSERT" message is taken care of here:
2799 * if we return an ESC to exit insert mode, the message is deleted
2800 * if we don't return an ESC but deleted the message before, redisplay it
2802 if (advance && p_smd && msg_silent == 0 && (State & INSERT))
2804 if (c == ESC && !mode_deleted && !no_mapping && mode_displayed)
2806 if (typebuf.tb_len && !KeyTyped)
2807 redraw_cmdline = TRUE; /* delete mode later */
2808 else
2809 unshowmode(FALSE);
2811 else if (c != ESC && mode_deleted)
2813 if (typebuf.tb_len && !KeyTyped)
2814 redraw_cmdline = TRUE; /* show mode later */
2815 else
2816 showmode();
2819 #ifdef FEAT_GUI
2820 /* may unshow different cursor shape */
2821 if (gui.in_use && shape_changed)
2822 gui_update_cursor(TRUE, FALSE);
2823 #endif
2825 --vgetc_busy;
2827 return c;
2831 * inchar() - get one character from
2832 * 1. a scriptfile
2833 * 2. the keyboard
2835 * As much characters as we can get (upto 'maxlen') are put in "buf" and
2836 * NUL terminated (buffer length must be 'maxlen' + 1).
2837 * Minimum for "maxlen" is 3!!!!
2839 * "tb_change_cnt" is the value of typebuf.tb_change_cnt if "buf" points into
2840 * it. When typebuf.tb_change_cnt changes (e.g., when a message is received
2841 * from a remote client) "buf" can no longer be used. "tb_change_cnt" is 0
2842 * otherwise.
2844 * If we got an interrupt all input is read until none is available.
2846 * If wait_time == 0 there is no waiting for the char.
2847 * If wait_time == n we wait for n msec for a character to arrive.
2848 * If wait_time == -1 we wait forever for a character to arrive.
2850 * Return the number of obtained characters.
2851 * Return -1 when end of input script reached.
2854 inchar(buf, maxlen, wait_time, tb_change_cnt)
2855 char_u *buf;
2856 int maxlen;
2857 long wait_time; /* milli seconds */
2858 int tb_change_cnt;
2860 int len = 0; /* init for GCC */
2861 int retesc = FALSE; /* return ESC with gotint */
2862 int script_char;
2864 if (wait_time == -1L || wait_time > 100L) /* flush output before waiting */
2866 cursor_on();
2867 out_flush();
2868 #ifdef FEAT_GUI
2869 if (gui.in_use)
2871 gui_update_cursor(FALSE, FALSE);
2872 # ifdef FEAT_MOUSESHAPE
2873 if (postponed_mouseshape)
2874 update_mouseshape(-1);
2875 # endif
2877 #endif
2881 * Don't reset these when at the hit-return prompt, otherwise a endless
2882 * recursive loop may result (write error in swapfile, hit-return, timeout
2883 * on char wait, flush swapfile, write error....).
2885 if (State != HITRETURN)
2887 did_outofmem_msg = FALSE; /* display out of memory message (again) */
2888 did_swapwrite_msg = FALSE; /* display swap file write error again */
2890 undo_off = FALSE; /* restart undo now */
2893 * Get a character from a script file if there is one.
2894 * If interrupted: Stop reading script files, close them all.
2896 script_char = -1;
2897 while (scriptin[curscript] != NULL && script_char < 0
2898 #ifdef FEAT_EVAL
2899 && !ignore_script
2900 #endif
2904 #if defined(FEAT_NETBEANS_INTG)
2905 /* Process the queued netbeans messages. */
2906 netbeans_parse_messages();
2907 #endif
2909 if (got_int || (script_char = getc(scriptin[curscript])) < 0)
2911 /* Reached EOF.
2912 * Careful: closescript() frees typebuf.tb_buf[] and buf[] may
2913 * point inside typebuf.tb_buf[]. Don't use buf[] after this! */
2914 closescript();
2916 * When reading script file is interrupted, return an ESC to get
2917 * back to normal mode.
2918 * Otherwise return -1, because typebuf.tb_buf[] has changed.
2920 if (got_int)
2921 retesc = TRUE;
2922 else
2923 return -1;
2925 else
2927 buf[0] = script_char;
2928 len = 1;
2932 if (script_char < 0) /* did not get a character from script */
2935 * If we got an interrupt, skip all previously typed characters and
2936 * return TRUE if quit reading script file.
2937 * Stop reading typeahead when a single CTRL-C was read,
2938 * fill_input_buf() returns this when not able to read from stdin.
2939 * Don't use buf[] here, closescript() may have freed typebuf.tb_buf[]
2940 * and buf may be pointing inside typebuf.tb_buf[].
2942 if (got_int)
2944 #define DUM_LEN MAXMAPLEN * 3 + 3
2945 char_u dum[DUM_LEN + 1];
2947 for (;;)
2949 len = ui_inchar(dum, DUM_LEN, 0L, 0);
2950 if (len == 0 || (len == 1 && dum[0] == 3))
2951 break;
2953 return retesc;
2957 * Always flush the output characters when getting input characters
2958 * from the user.
2960 out_flush();
2963 * Fill up to a third of the buffer, because each character may be
2964 * tripled below.
2966 len = ui_inchar(buf, maxlen / 3, wait_time, tb_change_cnt);
2969 if (typebuf_changed(tb_change_cnt))
2970 return 0;
2972 return fix_input_buffer(buf, len, script_char >= 0);
2976 * Fix typed characters for use by vgetc() and check_termcode().
2977 * buf[] must have room to triple the number of bytes!
2978 * Returns the new length.
2981 fix_input_buffer(buf, len, script)
2982 char_u *buf;
2983 int len;
2984 int script; /* TRUE when reading from a script */
2986 int i;
2987 char_u *p = buf;
2990 * Two characters are special: NUL and K_SPECIAL.
2991 * When compiled With the GUI CSI is also special.
2992 * Replace NUL by K_SPECIAL KS_ZERO KE_FILLER
2993 * Replace K_SPECIAL by K_SPECIAL KS_SPECIAL KE_FILLER
2994 * Replace CSI by K_SPECIAL KS_EXTRA KE_CSI
2995 * Don't replace K_SPECIAL when reading a script file.
2997 for (i = len; --i >= 0; ++p)
2999 #ifdef FEAT_GUI
3000 /* When the GUI is used any character can come after a CSI, don't
3001 * escape it. */
3002 if (gui.in_use && p[0] == CSI && i >= 2)
3004 p += 2;
3005 i -= 2;
3007 /* When the GUI is not used CSI needs to be escaped. */
3008 else if (!gui.in_use && p[0] == CSI)
3010 mch_memmove(p + 3, p + 1, (size_t)i);
3011 *p++ = K_SPECIAL;
3012 *p++ = KS_EXTRA;
3013 *p = (int)KE_CSI;
3014 len += 2;
3016 else
3017 #endif
3018 if (p[0] == NUL || (p[0] == K_SPECIAL && !script
3019 #ifdef FEAT_AUTOCMD
3020 /* timeout may generate K_CURSORHOLD */
3021 && (i < 2 || p[1] != KS_EXTRA || p[2] != (int)KE_CURSORHOLD)
3022 #endif
3023 #if defined(WIN3264) && !defined(FEAT_GUI)
3024 /* Win32 console passes modifiers */
3025 && (i < 2 || p[1] != KS_MODIFIER)
3026 #endif
3029 mch_memmove(p + 3, p + 1, (size_t)i);
3030 p[2] = K_THIRD(p[0]);
3031 p[1] = K_SECOND(p[0]);
3032 p[0] = K_SPECIAL;
3033 p += 2;
3034 len += 2;
3037 *p = NUL; /* add trailing NUL */
3038 return len;
3041 #if defined(USE_INPUT_BUF) || defined(PROTO)
3043 * Return TRUE when bytes are in the input buffer or in the typeahead buffer.
3044 * Normally the input buffer would be sufficient, but the server_to_input_buf()
3045 * or feedkeys() may insert characters in the typeahead buffer while we are
3046 * waiting for input to arrive.
3049 input_available()
3051 return (!vim_is_input_buf_empty()
3052 # if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
3053 || typebuf_was_filled
3054 # endif
3057 #endif
3060 * map[!] : show all key mappings
3061 * map[!] {lhs} : show key mapping for {lhs}
3062 * map[!] {lhs} {rhs} : set key mapping for {lhs} to {rhs}
3063 * noremap[!] {lhs} {rhs} : same, but no remapping for {rhs}
3064 * unmap[!] {lhs} : remove key mapping for {lhs}
3065 * abbr : show all abbreviations
3066 * abbr {lhs} : show abbreviations for {lhs}
3067 * abbr {lhs} {rhs} : set abbreviation for {lhs} to {rhs}
3068 * noreabbr {lhs} {rhs} : same, but no remapping for {rhs}
3069 * unabbr {lhs} : remove abbreviation for {lhs}
3071 * maptype: 0 for :map, 1 for :unmap, 2 for noremap.
3073 * arg is pointer to any arguments. Note: arg cannot be a read-only string,
3074 * it will be modified.
3076 * for :map mode is NORMAL + VISUAL + SELECTMODE + OP_PENDING
3077 * for :map! mode is INSERT + CMDLINE
3078 * for :cmap mode is CMDLINE
3079 * for :imap mode is INSERT
3080 * for :lmap mode is LANGMAP
3081 * for :nmap mode is NORMAL
3082 * for :vmap mode is VISUAL + SELECTMODE
3083 * for :xmap mode is VISUAL
3084 * for :smap mode is SELECTMODE
3085 * for :omap mode is OP_PENDING
3087 * for :abbr mode is INSERT + CMDLINE
3088 * for :iabbr mode is INSERT
3089 * for :cabbr mode is CMDLINE
3091 * Return 0 for success
3092 * 1 for invalid arguments
3093 * 2 for no match
3094 * 4 for out of mem
3095 * 5 for entry not unique
3098 do_map(maptype, arg, mode, abbrev)
3099 int maptype;
3100 char_u *arg;
3101 int mode;
3102 int abbrev; /* not a mapping but an abbreviation */
3104 char_u *keys;
3105 mapblock_T *mp, **mpp;
3106 char_u *rhs;
3107 char_u *p;
3108 int n;
3109 int len = 0; /* init for GCC */
3110 char_u *newstr;
3111 int hasarg;
3112 int haskey;
3113 int did_it = FALSE;
3114 #ifdef FEAT_LOCALMAP
3115 int did_local = FALSE;
3116 #endif
3117 int round;
3118 char_u *keys_buf = NULL;
3119 char_u *arg_buf = NULL;
3120 int retval = 0;
3121 int do_backslash;
3122 int hash;
3123 int new_hash;
3124 mapblock_T **abbr_table;
3125 mapblock_T **map_table;
3126 int unique = FALSE;
3127 int silent = FALSE;
3128 int special = FALSE;
3129 #ifdef FEAT_EVAL
3130 int expr = FALSE;
3131 #endif
3132 int noremap;
3134 keys = arg;
3135 map_table = maphash;
3136 abbr_table = &first_abbr;
3138 /* For ":noremap" don't remap, otherwise do remap. */
3139 if (maptype == 2)
3140 noremap = REMAP_NONE;
3141 else
3142 noremap = REMAP_YES;
3144 /* Accept <buffer>, <silent>, <expr> <script> and <unique> in any order. */
3145 for (;;)
3147 #ifdef FEAT_LOCALMAP
3149 * Check for "<buffer>": mapping local to buffer.
3151 if (STRNCMP(keys, "<buffer>", 8) == 0)
3153 keys = skipwhite(keys + 8);
3154 map_table = curbuf->b_maphash;
3155 abbr_table = &curbuf->b_first_abbr;
3156 continue;
3158 #endif
3161 * Check for "<silent>": don't echo commands.
3163 if (STRNCMP(keys, "<silent>", 8) == 0)
3165 keys = skipwhite(keys + 8);
3166 silent = TRUE;
3167 continue;
3171 * Check for "<special>": accept special keys in <>
3173 if (STRNCMP(keys, "<special>", 9) == 0)
3175 keys = skipwhite(keys + 9);
3176 special = TRUE;
3177 continue;
3180 #ifdef FEAT_EVAL
3182 * Check for "<script>": remap script-local mappings only
3184 if (STRNCMP(keys, "<script>", 8) == 0)
3186 keys = skipwhite(keys + 8);
3187 noremap = REMAP_SCRIPT;
3188 continue;
3192 * Check for "<expr>": {rhs} is an expression.
3194 if (STRNCMP(keys, "<expr>", 6) == 0)
3196 keys = skipwhite(keys + 6);
3197 expr = TRUE;
3198 continue;
3200 #endif
3202 * Check for "<unique>": don't overwrite an existing mapping.
3204 if (STRNCMP(keys, "<unique>", 8) == 0)
3206 keys = skipwhite(keys + 8);
3207 unique = TRUE;
3208 continue;
3210 break;
3213 validate_maphash();
3216 * find end of keys and skip CTRL-Vs (and backslashes) in it
3217 * Accept backslash like CTRL-V when 'cpoptions' does not contain 'B'.
3218 * with :unmap white space is included in the keys, no argument possible
3220 p = keys;
3221 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL);
3222 while (*p && (maptype == 1 || !vim_iswhite(*p)))
3224 if ((p[0] == Ctrl_V || (do_backslash && p[0] == '\\')) &&
3225 p[1] != NUL)
3226 ++p; /* skip CTRL-V or backslash */
3227 ++p;
3229 if (*p != NUL)
3230 *p++ = NUL;
3231 p = skipwhite(p);
3232 rhs = p;
3233 hasarg = (*rhs != NUL);
3234 haskey = (*keys != NUL);
3236 /* check for :unmap without argument */
3237 if (maptype == 1 && !haskey)
3239 retval = 1;
3240 goto theend;
3244 * If mapping has been given as ^V<C_UP> say, then replace the term codes
3245 * with the appropriate two bytes. If it is a shifted special key, unshift
3246 * it too, giving another two bytes.
3247 * replace_termcodes() may move the result to allocated memory, which
3248 * needs to be freed later (*keys_buf and *arg_buf).
3249 * replace_termcodes() also removes CTRL-Vs and sometimes backslashes.
3251 if (haskey)
3252 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE, special);
3253 if (hasarg)
3255 if (STRICMP(rhs, "<nop>") == 0) /* "<Nop>" means nothing */
3256 rhs = (char_u *)"";
3257 else
3258 rhs = replace_termcodes(rhs, &arg_buf, FALSE, TRUE, special);
3261 #ifdef FEAT_FKMAP
3263 * when in right-to-left mode and alternate keymap option set,
3264 * reverse the character flow in the rhs in Farsi.
3266 if (p_altkeymap && curwin->w_p_rl)
3267 lrswap(rhs);
3268 #endif
3271 * check arguments and translate function keys
3273 if (haskey)
3275 len = (int)STRLEN(keys);
3276 if (len > MAXMAPLEN) /* maximum length of MAXMAPLEN chars */
3278 retval = 1;
3279 goto theend;
3282 if (abbrev && maptype != 1)
3285 * If an abbreviation ends in a keyword character, the
3286 * rest must be all keyword-char or all non-keyword-char.
3287 * Otherwise we won't be able to find the start of it in a
3288 * vi-compatible way.
3290 #ifdef FEAT_MBYTE
3291 if (has_mbyte)
3293 int first, last;
3294 int same = -1;
3296 first = vim_iswordp(keys);
3297 last = first;
3298 p = keys + (*mb_ptr2len)(keys);
3299 n = 1;
3300 while (p < keys + len)
3302 ++n; /* nr of (multi-byte) chars */
3303 last = vim_iswordp(p); /* type of last char */
3304 if (same == -1 && last != first)
3305 same = n - 1; /* count of same char type */
3306 p += (*mb_ptr2len)(p);
3308 if (last && n > 2 && same >= 0 && same < n - 1)
3310 retval = 1;
3311 goto theend;
3314 else
3315 #endif
3316 if (vim_iswordc(keys[len - 1])) /* ends in keyword char */
3317 for (n = 0; n < len - 2; ++n)
3318 if (vim_iswordc(keys[n]) != vim_iswordc(keys[len - 2]))
3320 retval = 1;
3321 goto theend;
3323 /* An abbrevation cannot contain white space. */
3324 for (n = 0; n < len; ++n)
3325 if (vim_iswhite(keys[n]))
3327 retval = 1;
3328 goto theend;
3333 if (haskey && hasarg && abbrev) /* if we will add an abbreviation */
3334 no_abbr = FALSE; /* reset flag that indicates there are
3335 no abbreviations */
3337 if (!haskey || (maptype != 1 && !hasarg))
3338 msg_start();
3340 #ifdef FEAT_LOCALMAP
3342 * Check if a new local mapping wasn't already defined globally.
3344 if (map_table == curbuf->b_maphash && haskey && hasarg && maptype != 1)
3346 /* need to loop over all global hash lists */
3347 for (hash = 0; hash < 256 && !got_int; ++hash)
3349 if (abbrev)
3351 if (hash != 0) /* there is only one abbreviation list */
3352 break;
3353 mp = first_abbr;
3355 else
3356 mp = maphash[hash];
3357 for ( ; mp != NULL && !got_int; mp = mp->m_next)
3359 /* check entries with the same mode */
3360 if ((mp->m_mode & mode) != 0
3361 && mp->m_keylen == len
3362 && unique
3363 && STRNCMP(mp->m_keys, keys, (size_t)len) == 0)
3365 if (abbrev)
3366 EMSG2(_("E224: global abbreviation already exists for %s"),
3367 mp->m_keys);
3368 else
3369 EMSG2(_("E225: global mapping already exists for %s"),
3370 mp->m_keys);
3371 retval = 5;
3372 goto theend;
3379 * When listing global mappings, also list buffer-local ones here.
3381 if (map_table != curbuf->b_maphash && !hasarg && maptype != 1)
3383 /* need to loop over all global hash lists */
3384 for (hash = 0; hash < 256 && !got_int; ++hash)
3386 if (abbrev)
3388 if (hash != 0) /* there is only one abbreviation list */
3389 break;
3390 mp = curbuf->b_first_abbr;
3392 else
3393 mp = curbuf->b_maphash[hash];
3394 for ( ; mp != NULL && !got_int; mp = mp->m_next)
3396 /* check entries with the same mode */
3397 if ((mp->m_mode & mode) != 0)
3399 if (!haskey) /* show all entries */
3401 showmap(mp, TRUE);
3402 did_local = TRUE;
3404 else
3406 n = mp->m_keylen;
3407 if (STRNCMP(mp->m_keys, keys,
3408 (size_t)(n < len ? n : len)) == 0)
3410 showmap(mp, TRUE);
3411 did_local = TRUE;
3418 #endif
3421 * Find an entry in the maphash[] list that matches.
3422 * For :unmap we may loop two times: once to try to unmap an entry with a
3423 * matching 'from' part, a second time, if the first fails, to unmap an
3424 * entry with a matching 'to' part. This was done to allow ":ab foo bar"
3425 * to be unmapped by typing ":unab foo", where "foo" will be replaced by
3426 * "bar" because of the abbreviation.
3428 for (round = 0; (round == 0 || maptype == 1) && round <= 1
3429 && !did_it && !got_int; ++round)
3431 /* need to loop over all hash lists */
3432 for (hash = 0; hash < 256 && !got_int; ++hash)
3434 if (abbrev)
3436 if (hash > 0) /* there is only one abbreviation list */
3437 break;
3438 mpp = abbr_table;
3440 else
3441 mpp = &(map_table[hash]);
3442 for (mp = *mpp; mp != NULL && !got_int; mp = *mpp)
3445 if (!(mp->m_mode & mode)) /* skip entries with wrong mode */
3447 mpp = &(mp->m_next);
3448 continue;
3450 if (!haskey) /* show all entries */
3452 showmap(mp, map_table != maphash);
3453 did_it = TRUE;
3455 else /* do we have a match? */
3457 if (round) /* second round: Try unmap "rhs" string */
3459 n = (int)STRLEN(mp->m_str);
3460 p = mp->m_str;
3462 else
3464 n = mp->m_keylen;
3465 p = mp->m_keys;
3467 if (STRNCMP(p, keys, (size_t)(n < len ? n : len)) == 0)
3469 if (maptype == 1) /* delete entry */
3471 /* Only accept a full match. For abbreviations we
3472 * ignore trailing space when matching with the
3473 * "lhs", since an abbreviation can't have
3474 * trailing space. */
3475 if (n != len && (!abbrev || round || n > len
3476 || *skipwhite(keys + n) != NUL))
3478 mpp = &(mp->m_next);
3479 continue;
3482 * We reset the indicated mode bits. If nothing is
3483 * left the entry is deleted below.
3485 mp->m_mode &= ~mode;
3486 did_it = TRUE; /* remember we did something */
3488 else if (!hasarg) /* show matching entry */
3490 showmap(mp, map_table != maphash);
3491 did_it = TRUE;
3493 else if (n != len) /* new entry is ambiguous */
3495 mpp = &(mp->m_next);
3496 continue;
3498 else if (unique)
3500 if (abbrev)
3501 EMSG2(_("E226: abbreviation already exists for %s"),
3503 else
3504 EMSG2(_("E227: mapping already exists for %s"), p);
3505 retval = 5;
3506 goto theend;
3508 else /* new rhs for existing entry */
3510 mp->m_mode &= ~mode; /* remove mode bits */
3511 if (mp->m_mode == 0 && !did_it) /* reuse entry */
3513 newstr = vim_strsave(rhs);
3514 if (newstr == NULL)
3516 retval = 4; /* no mem */
3517 goto theend;
3519 vim_free(mp->m_str);
3520 mp->m_str = newstr;
3521 mp->m_noremap = noremap;
3522 mp->m_silent = silent;
3523 mp->m_mode = mode;
3524 #ifdef FEAT_EVAL
3525 mp->m_expr = expr;
3526 mp->m_script_ID = current_SID;
3527 #endif
3528 did_it = TRUE;
3531 if (mp->m_mode == 0) /* entry can be deleted */
3533 map_free(mpp);
3534 continue; /* continue with *mpp */
3538 * May need to put this entry into another hash list.
3540 new_hash = MAP_HASH(mp->m_mode, mp->m_keys[0]);
3541 if (!abbrev && new_hash != hash)
3543 *mpp = mp->m_next;
3544 mp->m_next = map_table[new_hash];
3545 map_table[new_hash] = mp;
3547 continue; /* continue with *mpp */
3551 mpp = &(mp->m_next);
3556 if (maptype == 1) /* delete entry */
3558 if (!did_it)
3559 retval = 2; /* no match */
3560 goto theend;
3563 if (!haskey || !hasarg) /* print entries */
3565 if (!did_it
3566 #ifdef FEAT_LOCALMAP
3567 && !did_local
3568 #endif
3571 if (abbrev)
3572 MSG(_("No abbreviation found"));
3573 else
3574 MSG(_("No mapping found"));
3576 goto theend; /* listing finished */
3579 if (did_it) /* have added the new entry already */
3580 goto theend;
3583 * Get here when adding a new entry to the maphash[] list or abbrlist.
3585 mp = (mapblock_T *)alloc((unsigned)sizeof(mapblock_T));
3586 if (mp == NULL)
3588 retval = 4; /* no mem */
3589 goto theend;
3592 /* If CTRL-C has been mapped, don't always use it for Interrupting */
3593 if (*keys == Ctrl_C)
3594 mapped_ctrl_c = TRUE;
3596 mp->m_keys = vim_strsave(keys);
3597 mp->m_str = vim_strsave(rhs);
3598 if (mp->m_keys == NULL || mp->m_str == NULL)
3600 vim_free(mp->m_keys);
3601 vim_free(mp->m_str);
3602 vim_free(mp);
3603 retval = 4; /* no mem */
3604 goto theend;
3606 mp->m_keylen = (int)STRLEN(mp->m_keys);
3607 mp->m_noremap = noremap;
3608 mp->m_silent = silent;
3609 mp->m_mode = mode;
3610 #ifdef FEAT_EVAL
3611 mp->m_expr = expr;
3612 mp->m_script_ID = current_SID;
3613 #endif
3615 /* add the new entry in front of the abbrlist or maphash[] list */
3616 if (abbrev)
3618 mp->m_next = *abbr_table;
3619 *abbr_table = mp;
3621 else
3623 n = MAP_HASH(mp->m_mode, mp->m_keys[0]);
3624 mp->m_next = map_table[n];
3625 map_table[n] = mp;
3628 theend:
3629 vim_free(keys_buf);
3630 vim_free(arg_buf);
3631 return retval;
3635 * Delete one entry from the abbrlist or maphash[].
3636 * "mpp" is a pointer to the m_next field of the PREVIOUS entry!
3638 static void
3639 map_free(mpp)
3640 mapblock_T **mpp;
3642 mapblock_T *mp;
3644 mp = *mpp;
3645 vim_free(mp->m_keys);
3646 vim_free(mp->m_str);
3647 *mpp = mp->m_next;
3648 vim_free(mp);
3652 * Initialize maphash[] for first use.
3654 static void
3655 validate_maphash()
3657 if (!maphash_valid)
3659 vim_memset(maphash, 0, sizeof(maphash));
3660 maphash_valid = TRUE;
3665 * Get the mapping mode from the command name.
3668 get_map_mode(cmdp, forceit)
3669 char_u **cmdp;
3670 int forceit;
3672 char_u *p;
3673 int modec;
3674 int mode;
3676 p = *cmdp;
3677 modec = *p++;
3678 if (modec == 'i')
3679 mode = INSERT; /* :imap */
3680 else if (modec == 'l')
3681 mode = LANGMAP; /* :lmap */
3682 else if (modec == 'c')
3683 mode = CMDLINE; /* :cmap */
3684 else if (modec == 'n' && *p != 'o') /* avoid :noremap */
3685 mode = NORMAL; /* :nmap */
3686 else if (modec == 'v')
3687 mode = VISUAL + SELECTMODE; /* :vmap */
3688 else if (modec == 'x')
3689 mode = VISUAL; /* :xmap */
3690 else if (modec == 's')
3691 mode = SELECTMODE; /* :smap */
3692 else if (modec == 'o')
3693 mode = OP_PENDING; /* :omap */
3694 else
3696 --p;
3697 if (forceit)
3698 mode = INSERT + CMDLINE; /* :map ! */
3699 else
3700 mode = VISUAL + SELECTMODE + NORMAL + OP_PENDING;/* :map */
3703 *cmdp = p;
3704 return mode;
3708 * Clear all mappings or abbreviations.
3709 * 'abbr' should be FALSE for mappings, TRUE for abbreviations.
3711 void
3712 map_clear(cmdp, arg, forceit, abbr)
3713 char_u *cmdp;
3714 char_u *arg UNUSED;
3715 int forceit;
3716 int abbr;
3718 int mode;
3719 #ifdef FEAT_LOCALMAP
3720 int local;
3722 local = (STRCMP(arg, "<buffer>") == 0);
3723 if (!local && *arg != NUL)
3725 EMSG(_(e_invarg));
3726 return;
3728 #endif
3730 mode = get_map_mode(&cmdp, forceit);
3731 map_clear_int(curbuf, mode,
3732 #ifdef FEAT_LOCALMAP
3733 local,
3734 #else
3735 FALSE,
3736 #endif
3737 abbr);
3741 * Clear all mappings in "mode".
3743 void
3744 map_clear_int(buf, mode, local, abbr)
3745 buf_T *buf UNUSED; /* buffer for local mappings */
3746 int mode; /* mode in which to delete */
3747 int local UNUSED; /* TRUE for buffer-local mappings */
3748 int abbr; /* TRUE for abbreviations */
3750 mapblock_T *mp, **mpp;
3751 int hash;
3752 int new_hash;
3754 validate_maphash();
3756 for (hash = 0; hash < 256; ++hash)
3758 if (abbr)
3760 if (hash > 0) /* there is only one abbrlist */
3761 break;
3762 #ifdef FEAT_LOCALMAP
3763 if (local)
3764 mpp = &buf->b_first_abbr;
3765 else
3766 #endif
3767 mpp = &first_abbr;
3769 else
3771 #ifdef FEAT_LOCALMAP
3772 if (local)
3773 mpp = &buf->b_maphash[hash];
3774 else
3775 #endif
3776 mpp = &maphash[hash];
3778 while (*mpp != NULL)
3780 mp = *mpp;
3781 if (mp->m_mode & mode)
3783 mp->m_mode &= ~mode;
3784 if (mp->m_mode == 0) /* entry can be deleted */
3786 map_free(mpp);
3787 continue;
3790 * May need to put this entry into another hash list.
3792 new_hash = MAP_HASH(mp->m_mode, mp->m_keys[0]);
3793 if (!abbr && new_hash != hash)
3795 *mpp = mp->m_next;
3796 #ifdef FEAT_LOCALMAP
3797 if (local)
3799 mp->m_next = buf->b_maphash[new_hash];
3800 buf->b_maphash[new_hash] = mp;
3802 else
3803 #endif
3805 mp->m_next = maphash[new_hash];
3806 maphash[new_hash] = mp;
3808 continue; /* continue with *mpp */
3811 mpp = &(mp->m_next);
3816 static void
3817 showmap(mp, local)
3818 mapblock_T *mp;
3819 int local; /* TRUE for buffer-local map */
3821 int len = 1;
3823 if (msg_didout || msg_silent != 0)
3825 msg_putchar('\n');
3826 if (got_int) /* 'q' typed at MORE prompt */
3827 return;
3829 if ((mp->m_mode & (INSERT + CMDLINE)) == INSERT + CMDLINE)
3830 msg_putchar('!'); /* :map! */
3831 else if (mp->m_mode & INSERT)
3832 msg_putchar('i'); /* :imap */
3833 else if (mp->m_mode & LANGMAP)
3834 msg_putchar('l'); /* :lmap */
3835 else if (mp->m_mode & CMDLINE)
3836 msg_putchar('c'); /* :cmap */
3837 else if ((mp->m_mode & (NORMAL + VISUAL + SELECTMODE + OP_PENDING))
3838 == NORMAL + VISUAL + SELECTMODE + OP_PENDING)
3839 msg_putchar(' '); /* :map */
3840 else
3842 len = 0;
3843 if (mp->m_mode & NORMAL)
3845 msg_putchar('n'); /* :nmap */
3846 ++len;
3848 if (mp->m_mode & OP_PENDING)
3850 msg_putchar('o'); /* :omap */
3851 ++len;
3853 if ((mp->m_mode & (VISUAL + SELECTMODE)) == VISUAL + SELECTMODE)
3855 msg_putchar('v'); /* :vmap */
3856 ++len;
3858 else
3860 if (mp->m_mode & VISUAL)
3862 msg_putchar('x'); /* :xmap */
3863 ++len;
3865 if (mp->m_mode & SELECTMODE)
3867 msg_putchar('s'); /* :smap */
3868 ++len;
3872 while (++len <= 3)
3873 msg_putchar(' ');
3875 /* Display the LHS. Get length of what we write. */
3876 len = msg_outtrans_special(mp->m_keys, TRUE);
3879 msg_putchar(' '); /* padd with blanks */
3880 ++len;
3881 } while (len < 12);
3883 if (mp->m_noremap == REMAP_NONE)
3884 msg_puts_attr((char_u *)"*", hl_attr(HLF_8));
3885 else if (mp->m_noremap == REMAP_SCRIPT)
3886 msg_puts_attr((char_u *)"&", hl_attr(HLF_8));
3887 else
3888 msg_putchar(' ');
3890 if (local)
3891 msg_putchar('@');
3892 else
3893 msg_putchar(' ');
3895 /* Use FALSE below if we only want things like <Up> to show up as such on
3896 * the rhs, and not M-x etc, TRUE gets both -- webb
3898 if (*mp->m_str == NUL)
3899 msg_puts_attr((char_u *)"<Nop>", hl_attr(HLF_8));
3900 else
3901 msg_outtrans_special(mp->m_str, FALSE);
3902 #ifdef FEAT_EVAL
3903 if (p_verbose > 0)
3904 last_set_msg(mp->m_script_ID);
3905 #endif
3906 out_flush(); /* show one line at a time */
3909 #if defined(FEAT_EVAL) || defined(PROTO)
3911 * Return TRUE if a map exists that has "str" in the rhs for mode "modechars".
3912 * Recognize termcap codes in "str".
3913 * Also checks mappings local to the current buffer.
3916 map_to_exists(str, modechars, abbr)
3917 char_u *str;
3918 char_u *modechars;
3919 int abbr;
3921 int mode = 0;
3922 char_u *rhs;
3923 char_u *buf;
3924 int retval;
3926 rhs = replace_termcodes(str, &buf, FALSE, TRUE, FALSE);
3928 if (vim_strchr(modechars, 'n') != NULL)
3929 mode |= NORMAL;
3930 if (vim_strchr(modechars, 'v') != NULL)
3931 mode |= VISUAL + SELECTMODE;
3932 if (vim_strchr(modechars, 'x') != NULL)
3933 mode |= VISUAL;
3934 if (vim_strchr(modechars, 's') != NULL)
3935 mode |= SELECTMODE;
3936 if (vim_strchr(modechars, 'o') != NULL)
3937 mode |= OP_PENDING;
3938 if (vim_strchr(modechars, 'i') != NULL)
3939 mode |= INSERT;
3940 if (vim_strchr(modechars, 'l') != NULL)
3941 mode |= LANGMAP;
3942 if (vim_strchr(modechars, 'c') != NULL)
3943 mode |= CMDLINE;
3945 retval = map_to_exists_mode(rhs, mode, abbr);
3946 vim_free(buf);
3948 return retval;
3950 #endif
3953 * Return TRUE if a map exists that has "str" in the rhs for mode "mode".
3954 * Also checks mappings local to the current buffer.
3957 map_to_exists_mode(rhs, mode, abbr)
3958 char_u *rhs;
3959 int mode;
3960 int abbr;
3962 mapblock_T *mp;
3963 int hash;
3964 # ifdef FEAT_LOCALMAP
3965 int expand_buffer = FALSE;
3967 validate_maphash();
3969 /* Do it twice: once for global maps and once for local maps. */
3970 for (;;)
3972 # endif
3973 for (hash = 0; hash < 256; ++hash)
3975 if (abbr)
3977 if (hash > 0) /* there is only one abbr list */
3978 break;
3979 #ifdef FEAT_LOCALMAP
3980 if (expand_buffer)
3981 mp = curbuf->b_first_abbr;
3982 else
3983 #endif
3984 mp = first_abbr;
3986 # ifdef FEAT_LOCALMAP
3987 else if (expand_buffer)
3988 mp = curbuf->b_maphash[hash];
3989 # endif
3990 else
3991 mp = maphash[hash];
3992 for (; mp; mp = mp->m_next)
3994 if ((mp->m_mode & mode)
3995 && strstr((char *)mp->m_str, (char *)rhs) != NULL)
3996 return TRUE;
3999 # ifdef FEAT_LOCALMAP
4000 if (expand_buffer)
4001 break;
4002 expand_buffer = TRUE;
4004 # endif
4006 return FALSE;
4009 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4011 * Used below when expanding mapping/abbreviation names.
4013 static int expand_mapmodes = 0;
4014 static int expand_isabbrev = 0;
4015 #ifdef FEAT_LOCALMAP
4016 static int expand_buffer = FALSE;
4017 #endif
4020 * Work out what to complete when doing command line completion of mapping
4021 * or abbreviation names.
4023 char_u *
4024 set_context_in_map_cmd(xp, cmd, arg, forceit, isabbrev, isunmap, cmdidx)
4025 expand_T *xp;
4026 char_u *cmd;
4027 char_u *arg;
4028 int forceit; /* TRUE if '!' given */
4029 int isabbrev; /* TRUE if abbreviation */
4030 int isunmap; /* TRUE if unmap/unabbrev command */
4031 cmdidx_T cmdidx;
4033 if (forceit && cmdidx != CMD_map && cmdidx != CMD_unmap)
4034 xp->xp_context = EXPAND_NOTHING;
4035 else
4037 if (isunmap)
4038 expand_mapmodes = get_map_mode(&cmd, forceit || isabbrev);
4039 else
4041 expand_mapmodes = INSERT + CMDLINE;
4042 if (!isabbrev)
4043 expand_mapmodes += VISUAL + SELECTMODE + NORMAL + OP_PENDING;
4045 expand_isabbrev = isabbrev;
4046 xp->xp_context = EXPAND_MAPPINGS;
4047 #ifdef FEAT_LOCALMAP
4048 expand_buffer = FALSE;
4049 #endif
4050 for (;;)
4052 #ifdef FEAT_LOCALMAP
4053 if (STRNCMP(arg, "<buffer>", 8) == 0)
4055 expand_buffer = TRUE;
4056 arg = skipwhite(arg + 8);
4057 continue;
4059 #endif
4060 if (STRNCMP(arg, "<unique>", 8) == 0)
4062 arg = skipwhite(arg + 8);
4063 continue;
4065 if (STRNCMP(arg, "<silent>", 8) == 0)
4067 arg = skipwhite(arg + 8);
4068 continue;
4070 #ifdef FEAT_EVAL
4071 if (STRNCMP(arg, "<script>", 8) == 0)
4073 arg = skipwhite(arg + 8);
4074 continue;
4076 if (STRNCMP(arg, "<expr>", 6) == 0)
4078 arg = skipwhite(arg + 6);
4079 continue;
4081 #endif
4082 break;
4084 xp->xp_pattern = arg;
4087 return NULL;
4091 * Find all mapping/abbreviation names that match regexp 'prog'.
4092 * For command line expansion of ":[un]map" and ":[un]abbrev" in all modes.
4093 * Return OK if matches found, FAIL otherwise.
4096 ExpandMappings(regmatch, num_file, file)
4097 regmatch_T *regmatch;
4098 int *num_file;
4099 char_u ***file;
4101 mapblock_T *mp;
4102 int hash;
4103 int count;
4104 int round;
4105 char_u *p;
4106 int i;
4108 validate_maphash();
4110 *num_file = 0; /* return values in case of FAIL */
4111 *file = NULL;
4114 * round == 1: Count the matches.
4115 * round == 2: Build the array to keep the matches.
4117 for (round = 1; round <= 2; ++round)
4119 count = 0;
4121 for (i = 0; i < 5; ++i)
4123 if (i == 0)
4124 p = (char_u *)"<silent>";
4125 else if (i == 1)
4126 p = (char_u *)"<unique>";
4127 #ifdef FEAT_EVAL
4128 else if (i == 2)
4129 p = (char_u *)"<script>";
4130 else if (i == 3)
4131 p = (char_u *)"<expr>";
4132 #endif
4133 #ifdef FEAT_LOCALMAP
4134 else if (i == 4 && !expand_buffer)
4135 p = (char_u *)"<buffer>";
4136 #endif
4137 else
4138 continue;
4140 if (vim_regexec(regmatch, p, (colnr_T)0))
4142 if (round == 1)
4143 ++count;
4144 else
4145 (*file)[count++] = vim_strsave(p);
4149 for (hash = 0; hash < 256; ++hash)
4151 if (expand_isabbrev)
4153 if (hash > 0) /* only one abbrev list */
4154 break; /* for (hash) */
4155 mp = first_abbr;
4157 #ifdef FEAT_LOCALMAP
4158 else if (expand_buffer)
4159 mp = curbuf->b_maphash[hash];
4160 #endif
4161 else
4162 mp = maphash[hash];
4163 for (; mp; mp = mp->m_next)
4165 if (mp->m_mode & expand_mapmodes)
4167 p = translate_mapping(mp->m_keys, TRUE);
4168 if (p != NULL && vim_regexec(regmatch, p, (colnr_T)0))
4170 if (round == 1)
4171 ++count;
4172 else
4174 (*file)[count++] = p;
4175 p = NULL;
4178 vim_free(p);
4180 } /* for (mp) */
4181 } /* for (hash) */
4183 if (count == 0) /* no match found */
4184 break; /* for (round) */
4186 if (round == 1)
4188 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
4189 if (*file == NULL)
4190 return FAIL;
4192 } /* for (round) */
4194 if (count > 1)
4196 char_u **ptr1;
4197 char_u **ptr2;
4198 char_u **ptr3;
4200 /* Sort the matches */
4201 sort_strings(*file, count);
4203 /* Remove multiple entries */
4204 ptr1 = *file;
4205 ptr2 = ptr1 + 1;
4206 ptr3 = ptr1 + count;
4208 while (ptr2 < ptr3)
4210 if (STRCMP(*ptr1, *ptr2))
4211 *++ptr1 = *ptr2++;
4212 else
4214 vim_free(*ptr2++);
4215 count--;
4220 *num_file = count;
4221 return (count == 0 ? FAIL : OK);
4223 #endif /* FEAT_CMDL_COMPL */
4226 * Check for an abbreviation.
4227 * Cursor is at ptr[col]. When inserting, mincol is where insert started.
4228 * "c" is the character typed before check_abbr was called. It may have
4229 * ABBR_OFF added to avoid prepending a CTRL-V to it.
4231 * Historic vi practice: The last character of an abbreviation must be an id
4232 * character ([a-zA-Z0-9_]). The characters in front of it must be all id
4233 * characters or all non-id characters. This allows for abbr. "#i" to
4234 * "#include".
4236 * Vim addition: Allow for abbreviations that end in a non-keyword character.
4237 * Then there must be white space before the abbr.
4239 * return TRUE if there is an abbreviation, FALSE if not
4242 check_abbr(c, ptr, col, mincol)
4243 int c;
4244 char_u *ptr;
4245 int col;
4246 int mincol;
4248 int len;
4249 int scol; /* starting column of the abbr. */
4250 int j;
4251 char_u *s;
4252 #ifdef FEAT_MBYTE
4253 char_u tb[MB_MAXBYTES + 4];
4254 #else
4255 char_u tb[4];
4256 #endif
4257 mapblock_T *mp;
4258 #ifdef FEAT_LOCALMAP
4259 mapblock_T *mp2;
4260 #endif
4261 #ifdef FEAT_MBYTE
4262 int clen = 0; /* length in characters */
4263 #endif
4264 int is_id = TRUE;
4265 int vim_abbr;
4267 if (typebuf.tb_no_abbr_cnt) /* abbrev. are not recursive */
4268 return FALSE;
4269 if ((KeyNoremap & (RM_NONE|RM_SCRIPT)) != 0)
4270 /* no remapping implies no abbreviation */
4271 return FALSE;
4274 * Check for word before the cursor: If it ends in a keyword char all
4275 * chars before it must be al keyword chars or non-keyword chars, but not
4276 * white space. If it ends in a non-keyword char we accept any characters
4277 * before it except white space.
4279 if (col == 0) /* cannot be an abbr. */
4280 return FALSE;
4282 #ifdef FEAT_MBYTE
4283 if (has_mbyte)
4285 char_u *p;
4287 p = mb_prevptr(ptr, ptr + col);
4288 if (!vim_iswordp(p))
4289 vim_abbr = TRUE; /* Vim added abbr. */
4290 else
4292 vim_abbr = FALSE; /* vi compatible abbr. */
4293 if (p > ptr)
4294 is_id = vim_iswordp(mb_prevptr(ptr, p));
4296 clen = 1;
4297 while (p > ptr + mincol)
4299 p = mb_prevptr(ptr, p);
4300 if (vim_isspace(*p) || (!vim_abbr && is_id != vim_iswordp(p)))
4302 p += (*mb_ptr2len)(p);
4303 break;
4305 ++clen;
4307 scol = (int)(p - ptr);
4309 else
4310 #endif
4312 if (!vim_iswordc(ptr[col - 1]))
4313 vim_abbr = TRUE; /* Vim added abbr. */
4314 else
4316 vim_abbr = FALSE; /* vi compatible abbr. */
4317 if (col > 1)
4318 is_id = vim_iswordc(ptr[col - 2]);
4320 for (scol = col - 1; scol > 0 && !vim_isspace(ptr[scol - 1])
4321 && (vim_abbr || is_id == vim_iswordc(ptr[scol - 1])); --scol)
4325 if (scol < mincol)
4326 scol = mincol;
4327 if (scol < col) /* there is a word in front of the cursor */
4329 ptr += scol;
4330 len = col - scol;
4331 #ifdef FEAT_LOCALMAP
4332 mp = curbuf->b_first_abbr;
4333 mp2 = first_abbr;
4334 if (mp == NULL)
4336 mp = mp2;
4337 mp2 = NULL;
4339 #else
4340 mp = first_abbr;
4341 #endif
4342 for ( ; mp;
4343 #ifdef FEAT_LOCALMAP
4344 mp->m_next == NULL ? (mp = mp2, mp2 = NULL) :
4345 #endif
4346 (mp = mp->m_next))
4348 /* find entries with right mode and keys */
4349 if ( (mp->m_mode & State)
4350 && mp->m_keylen == len
4351 && !STRNCMP(mp->m_keys, ptr, (size_t)len))
4352 break;
4354 if (mp != NULL)
4357 * Found a match:
4358 * Insert the rest of the abbreviation in typebuf.tb_buf[].
4359 * This goes from end to start.
4361 * Characters 0x000 - 0x100: normal chars, may need CTRL-V,
4362 * except K_SPECIAL: Becomes K_SPECIAL KS_SPECIAL KE_FILLER
4363 * Characters where IS_SPECIAL() == TRUE: key codes, need
4364 * K_SPECIAL. Other characters (with ABBR_OFF): don't use CTRL-V.
4366 * Character CTRL-] is treated specially - it completes the
4367 * abbreviation, but is not inserted into the input stream.
4369 j = 0;
4370 if (c != Ctrl_RSB)
4372 /* special key code, split up */
4373 if (IS_SPECIAL(c) || c == K_SPECIAL)
4375 tb[j++] = K_SPECIAL;
4376 tb[j++] = K_SECOND(c);
4377 tb[j++] = K_THIRD(c);
4379 else
4381 if (c < ABBR_OFF && (c < ' ' || c > '~'))
4382 tb[j++] = Ctrl_V; /* special char needs CTRL-V */
4383 #ifdef FEAT_MBYTE
4384 if (has_mbyte)
4386 /* if ABBR_OFF has been added, remove it here */
4387 if (c >= ABBR_OFF)
4388 c -= ABBR_OFF;
4389 j += (*mb_char2bytes)(c, tb + j);
4391 else
4392 #endif
4393 tb[j++] = c;
4395 tb[j] = NUL;
4396 /* insert the last typed char */
4397 (void)ins_typebuf(tb, 1, 0, TRUE, mp->m_silent);
4399 #ifdef FEAT_EVAL
4400 if (mp->m_expr)
4401 s = eval_map_expr(mp->m_str, c);
4402 else
4403 #endif
4404 s = mp->m_str;
4405 if (s != NULL)
4407 /* insert the to string */
4408 (void)ins_typebuf(s, mp->m_noremap, 0, TRUE, mp->m_silent);
4409 /* no abbrev. for these chars */
4410 typebuf.tb_no_abbr_cnt += (int)STRLEN(s) + j + 1;
4411 #ifdef FEAT_EVAL
4412 if (mp->m_expr)
4413 vim_free(s);
4414 #endif
4417 tb[0] = Ctrl_H;
4418 tb[1] = NUL;
4419 #ifdef FEAT_MBYTE
4420 if (has_mbyte)
4421 len = clen; /* Delete characters instead of bytes */
4422 #endif
4423 while (len-- > 0) /* delete the from string */
4424 (void)ins_typebuf(tb, 1, 0, TRUE, mp->m_silent);
4425 return TRUE;
4428 return FALSE;
4431 #ifdef FEAT_EVAL
4433 * Evaluate the RHS of a mapping or abbreviations and take care of escaping
4434 * special characters.
4436 static char_u *
4437 eval_map_expr(str, c)
4438 char_u *str;
4439 int c; /* NUL or typed character for abbreviation */
4441 char_u *res;
4442 char_u *p;
4443 char_u *save_cmd;
4444 pos_T save_cursor;
4446 save_cmd = save_cmdline_alloc();
4447 if (save_cmd == NULL)
4448 return NULL;
4450 /* Forbid changing text or using ":normal" to avoid most of the bad side
4451 * effects. Also restore the cursor position. */
4452 ++textlock;
4453 #ifdef FEAT_EX_EXTRA
4454 ++ex_normal_lock;
4455 #endif
4456 set_vim_var_char(c); /* set v:char to the typed character */
4457 save_cursor = curwin->w_cursor;
4458 p = eval_to_string(str, NULL, FALSE);
4459 --textlock;
4460 #ifdef FEAT_EX_EXTRA
4461 --ex_normal_lock;
4462 #endif
4463 curwin->w_cursor = save_cursor;
4465 restore_cmdline_alloc(save_cmd);
4466 if (p == NULL)
4467 return NULL;
4468 res = vim_strsave_escape_csi(p);
4469 vim_free(p);
4471 return res;
4473 #endif
4476 * Copy "p" to allocated memory, escaping K_SPECIAL and CSI so that the result
4477 * can be put in the typeahead buffer.
4478 * Returns NULL when out of memory.
4480 char_u *
4481 vim_strsave_escape_csi(p)
4482 char_u *p;
4484 char_u *res;
4485 char_u *s, *d;
4487 /* Need a buffer to hold up to three times as much. */
4488 res = alloc((unsigned)(STRLEN(p) * 3) + 1);
4489 if (res != NULL)
4491 d = res;
4492 for (s = p; *s != NUL; )
4494 if (s[0] == K_SPECIAL && s[1] != NUL && s[2] != NUL)
4496 /* Copy special key unmodified. */
4497 *d++ = *s++;
4498 *d++ = *s++;
4499 *d++ = *s++;
4501 else
4503 /* Add character, possibly multi-byte to destination, escaping
4504 * CSI and K_SPECIAL. */
4505 d = add_char2buf(PTR2CHAR(s), d);
4506 mb_ptr_adv(s);
4509 *d = NUL;
4511 return res;
4515 * Remove escaping from CSI and K_SPECIAL characters. Reverse of
4516 * vim_strsave_escape_csi(). Works in-place.
4518 void
4519 vim_unescape_csi(p)
4520 char_u *p;
4522 char_u *s = p, *d = p;
4524 while (*s != NUL)
4526 if (s[0] == K_SPECIAL && s[1] == KS_SPECIAL && s[2] == KE_FILLER)
4528 *d++ = K_SPECIAL;
4529 s += 3;
4531 else if ((s[0] == K_SPECIAL || s[0] == CSI)
4532 && s[1] == KS_EXTRA && s[2] == (int)KE_CSI)
4534 *d++ = CSI;
4535 s += 3;
4537 else
4538 *d++ = *s++;
4540 *d = NUL;
4544 * Write map commands for the current mappings to an .exrc file.
4545 * Return FAIL on error, OK otherwise.
4548 makemap(fd, buf)
4549 FILE *fd;
4550 buf_T *buf; /* buffer for local mappings or NULL */
4552 mapblock_T *mp;
4553 char_u c1, c2, c3;
4554 char_u *p;
4555 char *cmd;
4556 int abbr;
4557 int hash;
4558 int did_cpo = FALSE;
4559 int i;
4561 validate_maphash();
4564 * Do the loop twice: Once for mappings, once for abbreviations.
4565 * Then loop over all map hash lists.
4567 for (abbr = 0; abbr < 2; ++abbr)
4568 for (hash = 0; hash < 256; ++hash)
4570 if (abbr)
4572 if (hash > 0) /* there is only one abbr list */
4573 break;
4574 #ifdef FEAT_LOCALMAP
4575 if (buf != NULL)
4576 mp = buf->b_first_abbr;
4577 else
4578 #endif
4579 mp = first_abbr;
4581 else
4583 #ifdef FEAT_LOCALMAP
4584 if (buf != NULL)
4585 mp = buf->b_maphash[hash];
4586 else
4587 #endif
4588 mp = maphash[hash];
4591 for ( ; mp; mp = mp->m_next)
4593 /* skip script-local mappings */
4594 if (mp->m_noremap == REMAP_SCRIPT)
4595 continue;
4597 /* skip mappings that contain a <SNR> (script-local thing),
4598 * they probably don't work when loaded again */
4599 for (p = mp->m_str; *p != NUL; ++p)
4600 if (p[0] == K_SPECIAL && p[1] == KS_EXTRA
4601 && p[2] == (int)KE_SNR)
4602 break;
4603 if (*p != NUL)
4604 continue;
4606 /* It's possible to create a mapping and then ":unmap" certain
4607 * modes. We recreate this here by mapping the individual
4608 * modes, which requires up to three of them. */
4609 c1 = NUL;
4610 c2 = NUL;
4611 c3 = NUL;
4612 if (abbr)
4613 cmd = "abbr";
4614 else
4615 cmd = "map";
4616 switch (mp->m_mode)
4618 case NORMAL + VISUAL + SELECTMODE + OP_PENDING:
4619 break;
4620 case NORMAL:
4621 c1 = 'n';
4622 break;
4623 case VISUAL:
4624 c1 = 'x';
4625 break;
4626 case SELECTMODE:
4627 c1 = 's';
4628 break;
4629 case OP_PENDING:
4630 c1 = 'o';
4631 break;
4632 case NORMAL + VISUAL:
4633 c1 = 'n';
4634 c2 = 'x';
4635 break;
4636 case NORMAL + SELECTMODE:
4637 c1 = 'n';
4638 c2 = 's';
4639 break;
4640 case NORMAL + OP_PENDING:
4641 c1 = 'n';
4642 c2 = 'o';
4643 break;
4644 case VISUAL + SELECTMODE:
4645 c1 = 'v';
4646 break;
4647 case VISUAL + OP_PENDING:
4648 c1 = 'x';
4649 c2 = 'o';
4650 break;
4651 case SELECTMODE + OP_PENDING:
4652 c1 = 's';
4653 c2 = 'o';
4654 break;
4655 case NORMAL + VISUAL + SELECTMODE:
4656 c1 = 'n';
4657 c2 = 'v';
4658 break;
4659 case NORMAL + VISUAL + OP_PENDING:
4660 c1 = 'n';
4661 c2 = 'x';
4662 c3 = 'o';
4663 break;
4664 case NORMAL + SELECTMODE + OP_PENDING:
4665 c1 = 'n';
4666 c2 = 's';
4667 c3 = 'o';
4668 break;
4669 case VISUAL + SELECTMODE + OP_PENDING:
4670 c1 = 'v';
4671 c2 = 'o';
4672 break;
4673 case CMDLINE + INSERT:
4674 if (!abbr)
4675 cmd = "map!";
4676 break;
4677 case CMDLINE:
4678 c1 = 'c';
4679 break;
4680 case INSERT:
4681 c1 = 'i';
4682 break;
4683 case LANGMAP:
4684 c1 = 'l';
4685 break;
4686 default:
4687 EMSG(_("E228: makemap: Illegal mode"));
4688 return FAIL;
4690 do /* do this twice if c2 is set, 3 times with c3 */
4692 /* When outputting <> form, need to make sure that 'cpo'
4693 * is set to the Vim default. */
4694 if (!did_cpo)
4696 if (*mp->m_str == NUL) /* will use <Nop> */
4697 did_cpo = TRUE;
4698 else
4699 for (i = 0; i < 2; ++i)
4700 for (p = (i ? mp->m_str : mp->m_keys); *p; ++p)
4701 if (*p == K_SPECIAL || *p == NL)
4702 did_cpo = TRUE;
4703 if (did_cpo)
4705 if (fprintf(fd, "let s:cpo_save=&cpo") < 0
4706 || put_eol(fd) < 0
4707 || fprintf(fd, "set cpo&vim") < 0
4708 || put_eol(fd) < 0)
4709 return FAIL;
4712 if (c1 && putc(c1, fd) < 0)
4713 return FAIL;
4714 if (mp->m_noremap != REMAP_YES && fprintf(fd, "nore") < 0)
4715 return FAIL;
4716 if (fputs(cmd, fd) < 0)
4717 return FAIL;
4718 if (buf != NULL && fputs(" <buffer>", fd) < 0)
4719 return FAIL;
4720 if (mp->m_silent && fputs(" <silent>", fd) < 0)
4721 return FAIL;
4722 #ifdef FEAT_EVAL
4723 if (mp->m_noremap == REMAP_SCRIPT
4724 && fputs("<script>", fd) < 0)
4725 return FAIL;
4726 if (mp->m_expr && fputs(" <expr>", fd) < 0)
4727 return FAIL;
4728 #endif
4730 if ( putc(' ', fd) < 0
4731 || put_escstr(fd, mp->m_keys, 0) == FAIL
4732 || putc(' ', fd) < 0
4733 || put_escstr(fd, mp->m_str, 1) == FAIL
4734 || put_eol(fd) < 0)
4735 return FAIL;
4736 c1 = c2;
4737 c2 = c3;
4738 c3 = NUL;
4739 } while (c1 != NUL);
4743 if (did_cpo)
4744 if (fprintf(fd, "let &cpo=s:cpo_save") < 0
4745 || put_eol(fd) < 0
4746 || fprintf(fd, "unlet s:cpo_save") < 0
4747 || put_eol(fd) < 0)
4748 return FAIL;
4749 return OK;
4753 * write escape string to file
4754 * "what": 0 for :map lhs, 1 for :map rhs, 2 for :set
4756 * return FAIL for failure, OK otherwise
4759 put_escstr(fd, strstart, what)
4760 FILE *fd;
4761 char_u *strstart;
4762 int what;
4764 char_u *str = strstart;
4765 int c;
4766 int modifiers;
4768 /* :map xx <Nop> */
4769 if (*str == NUL && what == 1)
4771 if (fprintf(fd, "<Nop>") < 0)
4772 return FAIL;
4773 return OK;
4776 for ( ; *str != NUL; ++str)
4778 #ifdef FEAT_MBYTE
4779 char_u *p;
4781 /* Check for a multi-byte character, which may contain escaped
4782 * K_SPECIAL and CSI bytes */
4783 p = mb_unescape(&str);
4784 if (p != NULL)
4786 while (*p != NUL)
4787 if (fputc(*p++, fd) < 0)
4788 return FAIL;
4789 --str;
4790 continue;
4792 #endif
4794 c = *str;
4796 * Special key codes have to be translated to be able to make sense
4797 * when they are read back.
4799 if (c == K_SPECIAL && what != 2)
4801 modifiers = 0x0;
4802 if (str[1] == KS_MODIFIER)
4804 modifiers = str[2];
4805 str += 3;
4806 c = *str;
4808 if (c == K_SPECIAL)
4810 c = TO_SPECIAL(str[1], str[2]);
4811 str += 2;
4813 if (IS_SPECIAL(c) || modifiers) /* special key */
4815 if (fputs((char *)get_special_key_name(c, modifiers), fd) < 0)
4816 return FAIL;
4817 continue;
4822 * A '\n' in a map command should be written as <NL>.
4823 * A '\n' in a set command should be written as \^V^J.
4825 if (c == NL)
4827 if (what == 2)
4829 if (fprintf(fd, IF_EB("\\\026\n", "\\" CTRL_V_STR "\n")) < 0)
4830 return FAIL;
4832 else
4834 if (fprintf(fd, "<NL>") < 0)
4835 return FAIL;
4837 continue;
4841 * Some characters have to be escaped with CTRL-V to
4842 * prevent them from misinterpreted in DoOneCmd().
4843 * A space, Tab and '"' has to be escaped with a backslash to
4844 * prevent it to be misinterpreted in do_set().
4845 * A space has to be escaped with a CTRL-V when it's at the start of a
4846 * ":map" rhs.
4847 * A '<' has to be escaped with a CTRL-V to prevent it being
4848 * interpreted as the start of a special key name.
4849 * A space in the lhs of a :map needs a CTRL-V.
4851 if (what == 2 && (vim_iswhite(c) || c == '"' || c == '\\'))
4853 if (putc('\\', fd) < 0)
4854 return FAIL;
4856 else if (c < ' ' || c > '~' || c == '|'
4857 || (what == 0 && c == ' ')
4858 || (what == 1 && str == strstart && c == ' ')
4859 || (what != 2 && c == '<'))
4861 if (putc(Ctrl_V, fd) < 0)
4862 return FAIL;
4864 if (putc(c, fd) < 0)
4865 return FAIL;
4867 return OK;
4871 * Check all mappings for the presence of special key codes.
4872 * Used after ":set term=xxx".
4874 void
4875 check_map_keycodes()
4877 mapblock_T *mp;
4878 char_u *p;
4879 int i;
4880 char_u buf[3];
4881 char_u *save_name;
4882 int abbr;
4883 int hash;
4884 #ifdef FEAT_LOCALMAP
4885 buf_T *bp;
4886 #endif
4888 validate_maphash();
4889 save_name = sourcing_name;
4890 sourcing_name = (char_u *)"mappings"; /* avoids giving error messages */
4892 #ifdef FEAT_LOCALMAP
4893 /* This this once for each buffer, and then once for global
4894 * mappings/abbreviations with bp == NULL */
4895 for (bp = firstbuf; ; bp = bp->b_next)
4897 #endif
4899 * Do the loop twice: Once for mappings, once for abbreviations.
4900 * Then loop over all map hash lists.
4902 for (abbr = 0; abbr <= 1; ++abbr)
4903 for (hash = 0; hash < 256; ++hash)
4905 if (abbr)
4907 if (hash) /* there is only one abbr list */
4908 break;
4909 #ifdef FEAT_LOCALMAP
4910 if (bp != NULL)
4911 mp = bp->b_first_abbr;
4912 else
4913 #endif
4914 mp = first_abbr;
4916 else
4918 #ifdef FEAT_LOCALMAP
4919 if (bp != NULL)
4920 mp = bp->b_maphash[hash];
4921 else
4922 #endif
4923 mp = maphash[hash];
4925 for ( ; mp != NULL; mp = mp->m_next)
4927 for (i = 0; i <= 1; ++i) /* do this twice */
4929 if (i == 0)
4930 p = mp->m_keys; /* once for the "from" part */
4931 else
4932 p = mp->m_str; /* and once for the "to" part */
4933 while (*p)
4935 if (*p == K_SPECIAL)
4937 ++p;
4938 if (*p < 128) /* for "normal" tcap entries */
4940 buf[0] = p[0];
4941 buf[1] = p[1];
4942 buf[2] = NUL;
4943 (void)add_termcap_entry(buf, FALSE);
4945 ++p;
4947 ++p;
4952 #ifdef FEAT_LOCALMAP
4953 if (bp == NULL)
4954 break;
4956 #endif
4957 sourcing_name = save_name;
4960 #ifdef FEAT_EVAL
4962 * Check the string "keys" against the lhs of all mappings
4963 * Return pointer to rhs of mapping (mapblock->m_str)
4964 * NULL otherwise
4966 char_u *
4967 check_map(keys, mode, exact, ign_mod, abbr)
4968 char_u *keys;
4969 int mode;
4970 int exact; /* require exact match */
4971 int ign_mod; /* ignore preceding modifier */
4972 int abbr; /* do abbreviations */
4974 int hash;
4975 int len, minlen;
4976 mapblock_T *mp;
4977 char_u *s;
4978 #ifdef FEAT_LOCALMAP
4979 int local;
4980 #endif
4982 validate_maphash();
4984 len = (int)STRLEN(keys);
4985 #ifdef FEAT_LOCALMAP
4986 for (local = 1; local >= 0; --local)
4987 #endif
4988 /* loop over all hash lists */
4989 for (hash = 0; hash < 256; ++hash)
4991 if (abbr)
4993 if (hash > 0) /* there is only one list. */
4994 break;
4995 #ifdef FEAT_LOCALMAP
4996 if (local)
4997 mp = curbuf->b_first_abbr;
4998 else
4999 #endif
5000 mp = first_abbr;
5002 #ifdef FEAT_LOCALMAP
5003 else if (local)
5004 mp = curbuf->b_maphash[hash];
5005 #endif
5006 else
5007 mp = maphash[hash];
5008 for ( ; mp != NULL; mp = mp->m_next)
5010 /* skip entries with wrong mode, wrong length and not matching
5011 * ones */
5012 if ((mp->m_mode & mode) && (!exact || mp->m_keylen == len))
5014 if (len > mp->m_keylen)
5015 minlen = mp->m_keylen;
5016 else
5017 minlen = len;
5018 s = mp->m_keys;
5019 if (ign_mod && s[0] == K_SPECIAL && s[1] == KS_MODIFIER
5020 && s[2] != NUL)
5022 s += 3;
5023 if (len > mp->m_keylen - 3)
5024 minlen = mp->m_keylen - 3;
5026 if (STRNCMP(s, keys, minlen) == 0)
5027 return mp->m_str;
5032 return NULL;
5034 #endif
5036 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS)
5038 #define VIS_SEL (VISUAL+SELECTMODE) /* abbreviation */
5041 * Default mappings for some often used keys.
5043 static struct initmap
5045 char_u *arg;
5046 int mode;
5047 } initmappings[] =
5049 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
5050 /* Use the Windows (CUA) keybindings. */
5051 # ifdef FEAT_GUI
5052 # if 0 /* These are now used to move tab pages */
5053 {(char_u *)"<C-PageUp> H", NORMAL+VIS_SEL},
5054 {(char_u *)"<C-PageUp> <C-O>H",INSERT},
5055 {(char_u *)"<C-PageDown> L$", NORMAL+VIS_SEL},
5056 {(char_u *)"<C-PageDown> <C-O>L<C-O>$", INSERT},
5057 # endif
5059 /* paste, copy and cut */
5060 {(char_u *)"<S-Insert> \"*P", NORMAL},
5061 {(char_u *)"<S-Insert> \"-d\"*P", VIS_SEL},
5062 {(char_u *)"<S-Insert> <C-R><C-O>*", INSERT+CMDLINE},
5063 {(char_u *)"<C-Insert> \"*y", VIS_SEL},
5064 {(char_u *)"<S-Del> \"*d", VIS_SEL},
5065 {(char_u *)"<C-Del> \"*d", VIS_SEL},
5066 {(char_u *)"<C-X> \"*d", VIS_SEL},
5067 /* Missing: CTRL-C (cancel) and CTRL-V (block selection) */
5068 # else
5069 # if 0 /* These are now used to move tab pages */
5070 {(char_u *)"\316\204 H", NORMAL+VIS_SEL}, /* CTRL-PageUp is "H" */
5071 {(char_u *)"\316\204 \017H",INSERT}, /* CTRL-PageUp is "^OH"*/
5072 {(char_u *)"\316v L$", NORMAL+VIS_SEL}, /* CTRL-PageDown is "L$" */
5073 {(char_u *)"\316v \017L\017$", INSERT}, /* CTRL-PageDown ="^OL^O$"*/
5074 # endif
5075 {(char_u *)"\316w <C-Home>", NORMAL+VIS_SEL},
5076 {(char_u *)"\316w <C-Home>", INSERT+CMDLINE},
5077 {(char_u *)"\316u <C-End>", NORMAL+VIS_SEL},
5078 {(char_u *)"\316u <C-End>", INSERT+CMDLINE},
5080 /* paste, copy and cut */
5081 # ifdef FEAT_CLIPBOARD
5082 # ifdef DJGPP
5083 {(char_u *)"\316\122 \"*P", NORMAL}, /* SHIFT-Insert is "*P */
5084 {(char_u *)"\316\122 \"-d\"*P", VIS_SEL}, /* SHIFT-Insert is "-d"*P */
5085 {(char_u *)"\316\122 \022\017*", INSERT}, /* SHIFT-Insert is ^R^O* */
5086 {(char_u *)"\316\222 \"*y", VIS_SEL}, /* CTRL-Insert is "*y */
5087 # if 0 /* Shift-Del produces the same code as Del */
5088 {(char_u *)"\316\123 \"*d", VIS_SEL}, /* SHIFT-Del is "*d */
5089 # endif
5090 {(char_u *)"\316\223 \"*d", VIS_SEL}, /* CTRL-Del is "*d */
5091 {(char_u *)"\030 \"-d", VIS_SEL}, /* CTRL-X is "-d */
5092 # else
5093 {(char_u *)"\316\324 \"*P", NORMAL}, /* SHIFT-Insert is "*P */
5094 {(char_u *)"\316\324 \"-d\"*P", VIS_SEL}, /* SHIFT-Insert is "-d"*P */
5095 {(char_u *)"\316\324 \022\017*", INSERT}, /* SHIFT-Insert is ^R^O* */
5096 {(char_u *)"\316\325 \"*y", VIS_SEL}, /* CTRL-Insert is "*y */
5097 {(char_u *)"\316\327 \"*d", VIS_SEL}, /* SHIFT-Del is "*d */
5098 {(char_u *)"\316\330 \"*d", VIS_SEL}, /* CTRL-Del is "*d */
5099 {(char_u *)"\030 \"-d", VIS_SEL}, /* CTRL-X is "-d */
5100 # endif
5101 # else
5102 {(char_u *)"\316\324 P", NORMAL}, /* SHIFT-Insert is P */
5103 {(char_u *)"\316\324 \"-dP", VIS_SEL}, /* SHIFT-Insert is "-dP */
5104 {(char_u *)"\316\324 \022\017\"", INSERT}, /* SHIFT-Insert is ^R^O" */
5105 {(char_u *)"\316\325 y", VIS_SEL}, /* CTRL-Insert is y */
5106 {(char_u *)"\316\327 d", VIS_SEL}, /* SHIFT-Del is d */
5107 {(char_u *)"\316\330 d", VIS_SEL}, /* CTRL-Del is d */
5108 # endif
5109 # endif
5110 #endif
5112 #if defined(MACOS)
5113 /* Use the Standard MacOS binding. */
5114 /* paste, copy and cut */
5115 {(char_u *)"<D-v> \"*P", NORMAL},
5116 {(char_u *)"<D-v> \"-d\"*P", VIS_SEL},
5117 {(char_u *)"<D-v> <C-R>*", INSERT+CMDLINE},
5118 {(char_u *)"<D-c> \"*y", VIS_SEL},
5119 {(char_u *)"<D-x> \"*d", VIS_SEL},
5120 {(char_u *)"<Backspace> \"-d", VIS_SEL},
5121 #endif
5124 # undef VIS_SEL
5125 #endif
5128 * Set up default mappings.
5130 void
5131 init_mappings()
5133 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS)
5134 int i;
5136 for (i = 0; i < sizeof(initmappings) / sizeof(struct initmap); ++i)
5137 add_map(initmappings[i].arg, initmappings[i].mode);
5138 #endif
5141 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
5142 || defined(FEAT_CMDWIN) || defined(MACOS) || defined(PROTO)
5144 * Add a mapping "map" for mode "mode".
5145 * Need to put string in allocated memory, because do_map() will modify it.
5147 void
5148 add_map(map, mode)
5149 char_u *map;
5150 int mode;
5152 char_u *s;
5153 char_u *cpo_save = p_cpo;
5155 p_cpo = (char_u *)""; /* Allow <> notation */
5156 s = vim_strsave(map);
5157 if (s != NULL)
5159 (void)do_map(0, s, mode, FALSE);
5160 vim_free(s);
5162 p_cpo = cpo_save;
5164 #endif