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