blob: 686861aa47d305b790e41a2a26372cf43adb69fb [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
Bram Moolenaarea408852005-06-25 22:49:46 +00001393#if defined(EXITFREE) || defined(PROTO)
1394 void
1395close_all_scripts()
1396{
1397 while (scriptin[0] != NULL)
1398 closescript();
1399}
1400#endif
1401
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402#if defined(FEAT_INS_EXPAND) || defined(PROTO)
1403/*
1404 * Return TRUE when reading keys from a script file.
1405 */
1406 int
1407using_script()
1408{
1409 return scriptin[curscript] != NULL;
1410}
1411#endif
1412
1413/*
1414 * updatescipt() is called when a character can be written into the script file
1415 * or when we have waited some time for a character (c == 0)
1416 *
1417 * All the changed memfiles are synced if c == 0 or when the number of typed
1418 * characters reaches 'updatecount' and 'updatecount' is non-zero.
1419 */
1420 void
1421updatescript(c)
1422 int c;
1423{
1424 static int count = 0;
1425
1426 if (c && scriptout)
1427 putc(c, scriptout);
1428 if (c == 0 || (p_uc > 0 && ++count >= p_uc))
1429 {
1430 ml_sync_all(c == 0, TRUE);
1431 count = 0;
1432 }
1433}
1434
1435#define KL_PART_KEY -1 /* keylen value for incomplete key-code */
1436#define KL_PART_MAP -2 /* keylen value for incomplete mapping */
1437
1438static int old_char = -1; /* character put back by vungetc() */
1439static int old_mod_mask; /* mod_mask for ungotten character */
1440
1441/*
1442 * Get the next input character.
1443 * Can return a special key or a multi-byte character.
1444 * Can return NUL when called recursively, use safe_vgetc() if that's not
1445 * wanted.
1446 * This translates escaped K_SPECIAL and CSI bytes to a K_SPECIAL or CSI byte.
1447 * Collects the bytes of a multibyte character into the whole character.
1448 * Returns the modifers in the global "mod_mask".
1449 */
1450 int
1451vgetc()
1452{
1453 int c, c2;
1454#ifdef FEAT_MBYTE
1455 int n;
1456 char_u buf[MB_MAXBYTES];
1457 int i;
1458#endif
1459
1460 /*
1461 * If a character was put back with vungetc, it was already processed.
1462 * Return it directly.
1463 */
1464 if (old_char != -1)
1465 {
1466 c = old_char;
1467 old_char = -1;
1468 mod_mask = old_mod_mask;
1469 return c;
1470 }
1471
1472 mod_mask = 0x0;
1473 last_recorded_len = 0;
1474 for (;;) /* this is done twice if there are modifiers */
1475 {
1476 if (mod_mask) /* no mapping after modifier has been read */
1477 {
1478 ++no_mapping;
1479 ++allow_keys;
1480 }
1481 c = vgetorpeek(TRUE);
1482 if (mod_mask)
1483 {
1484 --no_mapping;
1485 --allow_keys;
1486 }
1487
1488 /* Get two extra bytes for special keys */
1489 if (c == K_SPECIAL
1490#ifdef FEAT_GUI
1491 || c == CSI
1492#endif
1493 )
1494 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001495 int save_allow_keys = allow_keys;
1496
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497 ++no_mapping;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001498 allow_keys = 0; /* make sure BS is not found */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499 c2 = vgetorpeek(TRUE); /* no mapping for these chars */
1500 c = vgetorpeek(TRUE);
1501 --no_mapping;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001502 allow_keys = save_allow_keys;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503 if (c2 == KS_MODIFIER)
1504 {
1505 mod_mask = c;
1506 continue;
1507 }
1508 c = TO_SPECIAL(c2, c);
1509
1510#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
1511 /* Handle K_TEAROFF here, the caller of vgetc() doesn't need to
1512 * know that a menu was torn off */
1513 if (c == K_TEAROFF)
1514 {
1515 char_u name[200];
1516 int i;
1517
1518 /* get menu path, it ends with a <CR> */
1519 for (i = 0; (c = vgetorpeek(TRUE)) != '\r'; )
1520 {
1521 name[i] = c;
1522 if (i < 199)
1523 ++i;
1524 }
1525 name[i] = NUL;
1526 gui_make_tearoff(name);
1527 continue;
1528 }
1529#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001530#if defined(HAVE_GTK2) && defined(FEAT_MENU)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001531 /* GTK: <F10> normally selects the menu, but it's passed until
1532 * here to allow mapping it. Intercept and invoke the GTK
1533 * behavior if it's not mapped. */
1534 if (c == K_F10 && gui.menubar != NULL)
1535 {
1536 gtk_menu_shell_select_first(GTK_MENU_SHELL(gui.menubar), FALSE);
1537 continue;
1538 }
1539#endif
1540
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541#ifdef FEAT_GUI
1542 /* Translate K_CSI to CSI. The special key is only used to avoid
1543 * it being recognized as the start of a special key. */
1544 if (c == K_CSI)
1545 c = CSI;
1546#endif
1547 }
1548#ifdef MSDOS
1549 /*
1550 * If K_NUL was typed, it is replaced by K_NUL, 3 in mch_inchar().
1551 * Delete the 3 here.
1552 */
1553 else if (c == K_NUL && vpeekc() == 3)
1554 (void)vgetorpeek(TRUE);
1555#endif
1556
Bram Moolenaara88d9682005-03-25 21:45:43 +00001557 /* a keypad or special function key was not mapped, use it like
1558 * its ASCII equivalent */
1559 switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 {
Bram Moolenaara88d9682005-03-25 21:45:43 +00001561 case K_KPLUS: c = '+'; break;
1562 case K_KMINUS: c = '-'; break;
1563 case K_KDIVIDE: c = '/'; break;
1564 case K_KMULTIPLY: c = '*'; break;
1565 case K_KENTER: c = CAR; break;
1566 case K_KPOINT:
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001567#ifdef WIN32
Bram Moolenaara88d9682005-03-25 21:45:43 +00001568 /* Can be either '.' or a ',', *
1569 * depending on the type of keypad. */
1570 c = MapVirtualKey(VK_DECIMAL, 2); break;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001571#else
Bram Moolenaara88d9682005-03-25 21:45:43 +00001572 c = '.'; break;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001573#endif
Bram Moolenaara88d9682005-03-25 21:45:43 +00001574 case K_K0: c = '0'; break;
1575 case K_K1: c = '1'; break;
1576 case K_K2: c = '2'; break;
1577 case K_K3: c = '3'; break;
1578 case K_K4: c = '4'; break;
1579 case K_K5: c = '5'; break;
1580 case K_K6: c = '6'; break;
1581 case K_K7: c = '7'; break;
1582 case K_K8: c = '8'; break;
1583 case K_K9: c = '9'; break;
1584
1585 case K_XHOME:
1586 case K_ZHOME: if (mod_mask == MOD_MASK_SHIFT)
1587 {
1588 c = K_S_HOME;
1589 mod_mask = 0;
1590 }
1591 else if (mod_mask == MOD_MASK_CTRL)
1592 {
1593 c = K_C_HOME;
1594 mod_mask = 0;
1595 }
1596 else
1597 c = K_HOME;
1598 break;
1599 case K_XEND:
1600 case K_ZEND: if (mod_mask == MOD_MASK_SHIFT)
1601 {
1602 c = K_S_END;
1603 mod_mask = 0;
1604 }
1605 else if (mod_mask == MOD_MASK_CTRL)
1606 {
1607 c = K_C_END;
1608 mod_mask = 0;
1609 }
1610 else
1611 c = K_END;
1612 break;
1613
1614 case K_XUP: c = K_UP; break;
1615 case K_XDOWN: c = K_DOWN; break;
1616 case K_XLEFT: c = K_LEFT; break;
1617 case K_XRIGHT: c = K_RIGHT; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 }
1619
1620#ifdef FEAT_MBYTE
1621 /* For a multi-byte character get all the bytes and return the
1622 * converted character.
1623 * Note: This will loop until enough bytes are received!
1624 */
1625 if (has_mbyte && (n = MB_BYTE2LEN_CHECK(c)) > 1)
1626 {
1627 ++no_mapping;
1628 buf[0] = c;
1629 for (i = 1; i < n; ++i)
1630 {
1631 buf[i] = vgetorpeek(TRUE);
1632 if (buf[i] == K_SPECIAL
1633#ifdef FEAT_GUI
1634 || buf[i] == CSI
1635#endif
1636 )
1637 {
1638 /* Must be a K_SPECIAL - KS_SPECIAL - KE_FILLER sequence,
1639 * which represents a K_SPECIAL (0x80),
1640 * or a CSI - KS_EXTRA - KE_CSI sequence, which represents
1641 * a CSI (0x9B),
1642 * of a K_SPECIAL - KS_EXTRA - KE_CSI, which is CSI too. */
1643 c = vgetorpeek(TRUE);
1644 if (vgetorpeek(TRUE) == (int)KE_CSI && c == KS_EXTRA)
1645 buf[i] = CSI;
1646 }
1647 }
1648 --no_mapping;
1649 c = (*mb_ptr2char)(buf);
1650 }
1651#endif
1652
1653 return c;
1654 }
1655}
1656
1657/*
1658 * Like vgetc(), but never return a NUL when called recursively, get a key
1659 * directly from the user (ignoring typeahead).
1660 */
1661 int
1662safe_vgetc()
1663{
1664 int c;
1665
1666 c = vgetc();
1667 if (c == NUL)
1668 c = get_keystroke();
1669 return c;
1670}
1671
1672/*
1673 * Check if a character is available, such that vgetc() will not block.
1674 * If the next character is a special character or multi-byte, the returned
1675 * character is not valid!.
1676 */
1677 int
1678vpeekc()
1679{
1680 if (old_char != -1)
1681 return old_char;
1682 return vgetorpeek(FALSE);
1683}
1684
1685#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
1686/*
1687 * Like vpeekc(), but don't allow mapping. Do allow checking for terminal
1688 * codes.
1689 */
1690 int
1691vpeekc_nomap()
1692{
1693 int c;
1694
1695 ++no_mapping;
1696 ++allow_keys;
1697 c = vpeekc();
1698 --no_mapping;
1699 --allow_keys;
1700 return c;
1701}
1702#endif
1703
1704#if defined(FEAT_INS_EXPAND) || defined(PROTO)
1705/*
1706 * Check if any character is available, also half an escape sequence.
1707 * Trick: when no typeahead found, but there is something in the typeahead
1708 * buffer, it must be an ESC that is recognized as the start of a key code.
1709 */
1710 int
1711vpeekc_any()
1712{
1713 int c;
1714
1715 c = vpeekc();
1716 if (c == NUL && typebuf.tb_len > 0)
1717 c = ESC;
1718 return c;
1719}
1720#endif
1721
1722/*
1723 * Call vpeekc() without causing anything to be mapped.
1724 * Return TRUE if a character is available, FALSE otherwise.
1725 */
1726 int
1727char_avail()
1728{
1729 int retval;
1730
1731 ++no_mapping;
1732 retval = vpeekc();
1733 --no_mapping;
1734 return (retval != NUL);
1735}
1736
1737 void
1738vungetc(c) /* unget one character (can only be done once!) */
1739 int c;
1740{
1741 old_char = c;
1742 old_mod_mask = mod_mask;
1743}
1744
1745/*
1746 * get a character:
1747 * 1. from the stuffbuffer
1748 * This is used for abbreviated commands like "D" -> "d$".
1749 * Also used to redo a command for ".".
1750 * 2. from the typeahead buffer
1751 * Stores text obtained previously but not used yet.
1752 * Also stores the result of mappings.
1753 * Also used for the ":normal" command.
1754 * 3. from the user
1755 * This may do a blocking wait if "advance" is TRUE.
1756 *
1757 * if "advance" is TRUE (vgetc()):
1758 * really get the character.
1759 * KeyTyped is set to TRUE in the case the user typed the key.
1760 * KeyStuffed is TRUE if the character comes from the stuff buffer.
1761 * if "advance" is FALSE (vpeekc()):
1762 * just look whether there is a character available.
1763 *
1764 * When "no_mapping" is zero, checks for mappings in the current mode.
1765 * Only returns one byte (of a multi-byte character).
1766 * K_SPECIAL and CSI may be escaped, need to get two more bytes then.
1767 */
1768 static int
1769vgetorpeek(advance)
1770 int advance;
1771{
1772 int c, c1;
1773 int keylen;
1774 char_u *s;
1775 mapblock_T *mp;
1776#ifdef FEAT_LOCALMAP
1777 mapblock_T *mp2;
1778#endif
1779 mapblock_T *mp_match;
1780 int mp_match_len = 0;
1781 int timedout = FALSE; /* waited for more than 1 second
1782 for mapping to complete */
1783 int mapdepth = 0; /* check for recursive mapping */
1784 int mode_deleted = FALSE; /* set when mode has been deleted */
1785 int local_State;
1786 int mlen;
1787 int max_mlen;
1788#ifdef FEAT_CMDL_INFO
1789 int i;
1790 int new_wcol, new_wrow;
1791#endif
1792#ifdef FEAT_GUI
1793# ifdef FEAT_MENU
1794 int idx;
1795# endif
1796 int shape_changed = FALSE; /* adjusted cursor shape */
1797#endif
1798 int n;
1799#ifdef FEAT_LANGMAP
1800 int nolmaplen;
1801#endif
1802 int old_wcol, old_wrow;
Bram Moolenaar28a37ff2005-03-15 22:28:00 +00001803 int wait_tb_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804
1805 /*
1806 * This function doesn't work very well when called recursively. This may
1807 * happen though, because of:
1808 * 1. The call to add_to_showcmd(). char_avail() is then used to check if
1809 * there is a character available, which calls this function. In that
1810 * case we must return NUL, to indicate no character is available.
1811 * 2. A GUI callback function writes to the screen, causing a
1812 * wait_return().
1813 * Using ":normal" can also do this, but it saves the typeahead buffer,
1814 * thus it should be OK. But don't get a key from the user then.
1815 */
1816 if (vgetc_busy
1817#ifdef FEAT_EX_EXTRA
1818 && ex_normal_busy == 0
1819#endif
1820 )
1821 return NUL;
1822
1823 local_State = get_real_state();
1824
1825 vgetc_busy = TRUE;
1826
1827 if (advance)
1828 KeyStuffed = FALSE;
1829
1830 init_typebuf();
1831 start_stuff();
1832 if (advance && typebuf.tb_maplen == 0)
1833 Exec_reg = FALSE;
1834 do
1835 {
1836/*
1837 * get a character: 1. from the stuffbuffer
1838 */
1839 if (typeahead_char != 0)
1840 {
1841 c = typeahead_char;
1842 if (advance)
1843 typeahead_char = 0;
1844 }
1845 else
1846 c = read_stuff(advance);
1847 if (c != NUL && !got_int)
1848 {
1849 if (advance)
1850 {
1851 /* KeyTyped = FALSE; When the command that stuffed something
1852 * was typed, behave like the stuffed command was typed.
1853 * needed for CTRL-W CTRl-] to open a fold, for example. */
1854 KeyStuffed = TRUE;
1855 }
1856 if (typebuf.tb_no_abbr_cnt == 0)
1857 typebuf.tb_no_abbr_cnt = 1; /* no abbreviations now */
1858 }
1859 else
1860 {
1861 /*
1862 * Loop until we either find a matching mapped key, or we
1863 * are sure that it is not a mapped key.
1864 * If a mapped key sequence is found we go back to the start to
1865 * try re-mapping.
1866 */
1867 for (;;)
1868 {
1869 /*
1870 * ui_breakcheck() is slow, don't use it too often when
1871 * inside a mapping. But call it each time for typed
1872 * characters.
1873 */
1874 if (typebuf.tb_maplen)
1875 line_breakcheck();
1876 else
1877 ui_breakcheck(); /* check for CTRL-C */
1878 keylen = 0;
1879 if (got_int)
1880 {
1881 /* flush all input */
1882 c = inchar(typebuf.tb_buf, typebuf.tb_buflen - 1, 0L,
1883 typebuf.tb_change_cnt);
1884 /*
1885 * If inchar() returns TRUE (script file was active) or we
1886 * are inside a mapping, get out of insert mode.
1887 * Otherwise we behave like having gotten a CTRL-C.
1888 * As a result typing CTRL-C in insert mode will
1889 * really insert a CTRL-C.
1890 */
1891 if ((c || typebuf.tb_maplen)
1892 && (State & (INSERT + CMDLINE)))
1893 c = ESC;
1894 else
1895 c = Ctrl_C;
1896 flush_buffers(TRUE); /* flush all typeahead */
1897
1898 /* Also record this character, it might be needed to
1899 * get out of Insert mode. */
1900 *typebuf.tb_buf = c;
1901 gotchars(typebuf.tb_buf, 1);
1902 cmd_silent = FALSE;
1903
1904 break;
1905 }
1906 else if (typebuf.tb_len > 0)
1907 {
1908 /*
1909 * Check for a mappable key sequence.
1910 * Walk through one maphash[] list until we find an
1911 * entry that matches.
1912 *
1913 * Don't look for mappings if:
1914 * - no_mapping set: mapping disabled (e.g. for CTRL-V)
1915 * - maphash_valid not set: no mappings present.
1916 * - typebuf.tb_buf[typebuf.tb_off] should not be remapped
1917 * - in insert or cmdline mode and 'paste' option set
1918 * - waiting for "hit return to continue" and CR or SPACE
1919 * typed
1920 * - waiting for a char with --more--
1921 * - in Ctrl-X mode, and we get a valid char for that mode
1922 */
1923 mp = NULL;
1924 max_mlen = 0;
1925 c1 = typebuf.tb_buf[typebuf.tb_off];
1926 if (no_mapping == 0 && maphash_valid
1927 && (no_zero_mapping == 0 || c1 != '0')
1928 && (typebuf.tb_maplen == 0
1929 || (p_remap
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001930 && (typebuf.tb_noremap[typebuf.tb_off]
1931 & (RM_NONE|RM_ABBR)) == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932 && !(p_paste && (State & (INSERT + CMDLINE)))
1933 && !(State == HITRETURN && (c1 == CAR || c1 == ' '))
1934 && State != ASKMORE
1935 && State != CONFIRM
1936#ifdef FEAT_INS_EXPAND
1937 && !((ctrl_x_mode != 0 && vim_is_ctrl_x_key(c1))
1938 || ((continue_status & CONT_LOCAL)
1939 && (c1 == Ctrl_N || c1 == Ctrl_P)))
1940#endif
1941 )
1942 {
1943#ifdef FEAT_LANGMAP
1944 if (c1 == K_SPECIAL)
1945 nolmaplen = 2;
1946 else
1947 {
1948 LANGMAP_ADJUST(c1, TRUE);
1949 nolmaplen = 0;
1950 }
1951#endif
1952#ifdef FEAT_LOCALMAP
1953 /* First try buffer-local mappings. */
1954 mp = curbuf->b_maphash[MAP_HASH(local_State, c1)];
1955 mp2 = maphash[MAP_HASH(local_State, c1)];
1956 if (mp == NULL)
1957 {
1958 mp = mp2;
1959 mp2 = NULL;
1960 }
1961#else
1962 mp = maphash[MAP_HASH(local_State, c1)];
1963#endif
1964 /*
1965 * Loop until a partly matching mapping is found or
1966 * all (local) mappings have been checked.
1967 * The longest full match is remembered in "mp_match".
1968 * A full match is only accepted if there is no partly
1969 * match, so "aa" and "aaa" can both be mapped.
1970 */
1971 mp_match = NULL;
1972 mp_match_len = 0;
1973 for ( ; mp != NULL;
1974#ifdef FEAT_LOCALMAP
1975 mp->m_next == NULL ? (mp = mp2, mp2 = NULL) :
1976#endif
1977 (mp = mp->m_next))
1978 {
1979 /*
1980 * Only consider an entry if the first character
1981 * matches and it is for the current state.
1982 * Skip ":lmap" mappings if keys were mapped.
1983 */
1984 if (mp->m_keys[0] == c1
1985 && (mp->m_mode & local_State)
1986 && ((mp->m_mode & LANGMAP) == 0
1987 || typebuf.tb_maplen == 0))
1988 {
1989#ifdef FEAT_LANGMAP
1990 int nomap = nolmaplen;
1991 int c2;
1992#endif
1993 /* find the match length of this mapping */
1994 for (mlen = 1; mlen < typebuf.tb_len; ++mlen)
1995 {
1996#ifdef FEAT_LANGMAP
1997 c2 = typebuf.tb_buf[typebuf.tb_off + mlen];
1998 if (nomap > 0)
1999 --nomap;
2000 else if (c2 == K_SPECIAL)
2001 nomap = 2;
2002 else
2003 LANGMAP_ADJUST(c2, TRUE);
2004 if (mp->m_keys[mlen] != c2)
2005#else
2006 if (mp->m_keys[mlen] !=
2007 typebuf.tb_buf[typebuf.tb_off + mlen])
2008#endif
2009 break;
2010 }
2011
2012#ifdef FEAT_MBYTE
2013 /* Don't allow mapping the first byte(s) of a
2014 * multi-byte char. Happens when mapping
2015 * <M-a> and then changing 'encoding'. */
2016 if (has_mbyte && MB_BYTE2LEN(c1)
2017 > (*mb_ptr2len_check)(mp->m_keys))
2018 mlen = 0;
2019#endif
2020 /*
2021 * Check an entry whether it matches.
2022 * - Full match: mlen == keylen
2023 * - Partly match: mlen == typebuf.tb_len
2024 */
2025 keylen = mp->m_keylen;
2026 if (mlen == keylen
2027 || (mlen == typebuf.tb_len
2028 && typebuf.tb_len < keylen))
2029 {
2030 /*
2031 * If only script-local mappings are
2032 * allowed, check if the mapping starts
2033 * with K_SNR.
2034 */
2035 s = typebuf.tb_noremap + typebuf.tb_off;
2036 if (*s == RM_SCRIPT
2037 && (mp->m_keys[0] != K_SPECIAL
2038 || mp->m_keys[1] != KS_EXTRA
2039 || mp->m_keys[2]
2040 != (int)KE_SNR))
2041 continue;
2042 /*
2043 * If one of the typed keys cannot be
2044 * remapped, skip the entry.
2045 */
2046 for (n = mlen; --n >= 0; )
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002047 if (*s++ & (RM_NONE|RM_ABBR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 break;
2049 if (n >= 0)
2050 continue;
2051
2052 if (keylen > typebuf.tb_len)
2053 {
2054 if (!timedout)
2055 {
2056 /* break at a partly match */
2057 keylen = KL_PART_MAP;
2058 break;
2059 }
2060 }
2061 else if (keylen > mp_match_len)
2062 {
2063 /* found a longer match */
2064 mp_match = mp;
2065 mp_match_len = keylen;
2066 }
2067 }
2068 else
2069 /* No match; may have to check for
2070 * termcode at next character. */
2071 if (max_mlen < mlen)
2072 max_mlen = mlen;
2073 }
2074 }
2075
2076 /* If no partly match found, use the longest full
2077 * match. */
2078 if (keylen != KL_PART_MAP)
2079 {
2080 mp = mp_match;
2081 keylen = mp_match_len;
2082 }
2083 }
2084
2085 /* Check for match with 'pastetoggle' */
2086 if (*p_pt != NUL && mp == NULL && (State & (INSERT|NORMAL)))
2087 {
2088 for (mlen = 0; mlen < typebuf.tb_len && p_pt[mlen];
2089 ++mlen)
2090 if (p_pt[mlen] != typebuf.tb_buf[typebuf.tb_off
2091 + mlen])
2092 break;
2093 if (p_pt[mlen] == NUL) /* match */
2094 {
2095 /* write chars to script file(s) */
2096 if (mlen > typebuf.tb_maplen)
2097 gotchars(typebuf.tb_buf + typebuf.tb_off
2098 + typebuf.tb_maplen,
2099 mlen - typebuf.tb_maplen);
2100
2101 del_typebuf(mlen, 0); /* remove the chars */
2102 set_option_value((char_u *)"paste",
2103 (long)!p_paste, NULL, 0);
2104 if (!(State & INSERT))
2105 {
2106 msg_col = 0;
2107 msg_row = Rows - 1;
2108 msg_clr_eos(); /* clear ruler */
2109 }
2110 showmode();
2111 setcursor();
2112 continue;
2113 }
2114 /* Need more chars for partly match. */
2115 if (mlen == typebuf.tb_len)
2116 keylen = KL_PART_MAP;
2117 else if (max_mlen < mlen)
2118 /* no match, may have to check for termcode at
2119 * next character */
2120 max_mlen = mlen + 1;
2121 }
2122
2123 if ((mp == NULL || max_mlen >= mp_match_len)
2124 && keylen != KL_PART_MAP)
2125 {
2126 /*
2127 * When no matching mapping found or found a
2128 * non-matching mapping that matches at least what the
2129 * matching mapping matched:
2130 * Check if we have a terminal code, when:
2131 * mapping is allowed,
2132 * keys have not been mapped,
2133 * and not an ESC sequence, not in insert mode or
2134 * p_ek is on,
2135 * and when not timed out,
2136 */
2137 if ((no_mapping == 0 || allow_keys != 0)
2138 && (typebuf.tb_maplen == 0
2139 || (p_remap && typebuf.tb_noremap[
2140 typebuf.tb_off] == RM_YES))
2141 && !timedout)
2142 {
2143 keylen = check_termcode(max_mlen + 1, NULL, 0);
2144
2145 /*
2146 * When getting a partial match, but the last
2147 * characters were not typed, don't wait for a
2148 * typed character to complete the termcode.
2149 * This helps a lot when a ":normal" command ends
2150 * in an ESC.
2151 */
2152 if (keylen < 0
2153 && typebuf.tb_len == typebuf.tb_maplen)
2154 keylen = 0;
2155 }
2156 else
2157 keylen = 0;
2158 if (keylen == 0) /* no matching terminal code */
2159 {
2160#ifdef AMIGA /* check for window bounds report */
2161 if (typebuf.tb_maplen == 0 && (typebuf.tb_buf[
2162 typebuf.tb_off] & 0xff) == CSI)
2163 {
2164 for (s = typebuf.tb_buf + typebuf.tb_off + 1;
2165 s < typebuf.tb_buf + typebuf.tb_off
2166 + typebuf.tb_len
2167 && (VIM_ISDIGIT(*s) || *s == ';'
2168 || *s == ' ');
2169 ++s)
2170 ;
2171 if (*s == 'r' || *s == '|') /* found one */
2172 {
2173 del_typebuf((int)(s + 1 -
2174 (typebuf.tb_buf + typebuf.tb_off)), 0);
2175 /* get size and redraw screen */
2176 shell_resized();
2177 continue;
2178 }
2179 if (*s == NUL) /* need more characters */
2180 keylen = KL_PART_KEY;
2181 }
2182 if (keylen >= 0)
2183#endif
2184 /* When there was a matching mapping and no
2185 * termcode could be replaced after another one,
2186 * use that mapping. */
2187 if (mp == NULL)
2188 {
2189/*
2190 * get a character: 2. from the typeahead buffer
2191 */
2192 c = typebuf.tb_buf[typebuf.tb_off] & 255;
2193 if (advance) /* remove chars from tb_buf */
2194 {
2195 cmd_silent = (typebuf.tb_silent > 0);
2196 if (typebuf.tb_maplen > 0)
2197 KeyTyped = FALSE;
2198 else
2199 {
2200 KeyTyped = TRUE;
2201 /* write char to script file(s) */
2202 gotchars(typebuf.tb_buf
2203 + typebuf.tb_off, 1);
2204 }
2205 KeyNoremap = (typebuf.tb_noremap[
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002206 typebuf.tb_off]
2207 & (RM_NONE|RM_SCRIPT));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208 del_typebuf(1, 0);
2209 }
2210 break; /* got character, break for loop */
2211 }
2212 }
2213 if (keylen > 0) /* full matching terminal code */
2214 {
2215#if defined(FEAT_GUI) && defined(FEAT_MENU)
2216 if (typebuf.tb_buf[typebuf.tb_off] == K_SPECIAL
2217 && typebuf.tb_buf[typebuf.tb_off + 1]
2218 == KS_MENU)
2219 {
2220 /*
2221 * Using a menu may cause a break in undo!
2222 * It's like using gotchars(), but without
2223 * recording or writing to a script file.
2224 */
2225 may_sync_undo();
2226 del_typebuf(3, 0);
2227 idx = get_menu_index(current_menu, local_State);
2228 if (idx != MENU_INDEX_INVALID)
2229 {
2230# ifdef FEAT_VISUAL
2231 /*
2232 * In Select mode, a Visual mode menu is
2233 * used. Switch to Visual mode
2234 * temporarily. Append K_SELECT to switch
2235 * back to Select mode.
2236 */
2237 if (VIsual_active && VIsual_select)
2238 {
2239 VIsual_select = FALSE;
2240 (void)ins_typebuf(K_SELECT_STRING,
2241 REMAP_NONE, 0, TRUE, FALSE);
2242 }
2243# endif
2244 ins_typebuf(current_menu->strings[idx],
2245 current_menu->noremap[idx],
2246 0, TRUE,
2247 current_menu->silent[idx]);
2248 }
2249 }
2250#endif /* FEAT_GUI */
2251 continue; /* try mapping again */
2252 }
2253
2254 /* Partial match: get some more characters. When a
2255 * matching mapping was found use that one. */
2256 if (mp == NULL || keylen < 0)
2257 keylen = KL_PART_KEY;
2258 else
2259 keylen = mp_match_len;
2260 }
2261
2262 /* complete match */
2263 if (keylen >= 0 && keylen <= typebuf.tb_len)
2264 {
2265 /* write chars to script file(s) */
2266 if (keylen > typebuf.tb_maplen)
2267 gotchars(typebuf.tb_buf + typebuf.tb_off
2268 + typebuf.tb_maplen,
2269 keylen - typebuf.tb_maplen);
2270
2271 cmd_silent = (typebuf.tb_silent > 0);
2272 del_typebuf(keylen, 0); /* remove the mapped keys */
2273
2274 /*
2275 * Put the replacement string in front of mapstr.
2276 * The depth check catches ":map x y" and ":map y x".
2277 */
2278 if (++mapdepth >= p_mmd)
2279 {
2280 EMSG(_("E223: recursive mapping"));
2281 if (State & CMDLINE)
2282 redrawcmdline();
2283 else
2284 setcursor();
2285 flush_buffers(FALSE);
2286 mapdepth = 0; /* for next one */
2287 c = -1;
2288 break;
2289 }
2290
2291#ifdef FEAT_VISUAL
2292 /*
2293 * In Select mode, a Visual mode mapping is used.
2294 * Switch to Visual mode temporarily. Append K_SELECT
2295 * to switch back to Select mode.
2296 */
2297 if (VIsual_active && VIsual_select)
2298 {
2299 VIsual_select = FALSE;
2300 (void)ins_typebuf(K_SELECT_STRING, REMAP_NONE,
2301 0, TRUE, FALSE);
2302 }
2303#endif
2304
2305 /*
2306 * Insert the 'to' part in the typebuf.tb_buf.
2307 * If 'from' field is the same as the start of the
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002308 * 'to' field, don't remap the first character (but do
2309 * allow abbreviations).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310 * If m_noremap is set, don't remap the whole 'to'
2311 * part.
2312 */
2313 if (ins_typebuf(mp->m_str,
2314 mp->m_noremap != REMAP_YES
2315 ? mp->m_noremap
2316 : STRNCMP(mp->m_str, mp->m_keys,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002317 (size_t)keylen) != 0
2318 ? REMAP_YES : REMAP_SKIP,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319 0, TRUE, cmd_silent || mp->m_silent) == FAIL)
2320 {
2321 c = -1;
2322 break;
2323 }
2324 continue;
2325 }
2326 }
2327
2328/*
2329 * get a character: 3. from the user - handle <Esc> in Insert mode
2330 */
2331 /*
2332 * special case: if we get an <ESC> in insert mode and there
2333 * are no more characters at once, we pretend to go out of
2334 * insert mode. This prevents the one second delay after
2335 * typing an <ESC>. If we get something after all, we may
2336 * have to redisplay the mode. That the cursor is in the wrong
2337 * place does not matter.
2338 */
2339 c = 0;
2340#ifdef FEAT_CMDL_INFO
2341 new_wcol = curwin->w_wcol;
2342 new_wrow = curwin->w_wrow;
2343#endif
2344 if ( advance
2345 && typebuf.tb_len == 1
2346 && typebuf.tb_buf[typebuf.tb_off] == ESC
2347 && !no_mapping
2348#ifdef FEAT_EX_EXTRA
2349 && ex_normal_busy == 0
2350#endif
2351 && typebuf.tb_maplen == 0
2352 && (State & INSERT)
2353 && (p_timeout || (keylen == KL_PART_KEY && p_ttimeout))
2354 && (c = inchar(typebuf.tb_buf + typebuf.tb_off
2355 + typebuf.tb_len, 3, 25L,
2356 typebuf.tb_change_cnt)) == 0)
2357 {
2358 colnr_T col = 0, vcol;
2359 char_u *ptr;
2360
2361 if (p_smd)
2362 {
2363 unshowmode(TRUE);
2364 mode_deleted = TRUE;
2365 }
2366#ifdef FEAT_GUI
2367 /* may show different cursor shape */
2368 if (gui.in_use)
2369 {
2370 int save_State;
2371
2372 save_State = State;
2373 State = NORMAL;
2374 gui_update_cursor(TRUE, FALSE);
2375 State = save_State;
2376 shape_changed = TRUE;
2377 }
2378#endif
2379 validate_cursor();
2380 old_wcol = curwin->w_wcol;
2381 old_wrow = curwin->w_wrow;
2382
2383 /* move cursor left, if possible */
2384 if (curwin->w_cursor.col != 0)
2385 {
2386 if (curwin->w_wcol > 0)
2387 {
2388 if (did_ai)
2389 {
2390 /*
2391 * We are expecting to truncate the trailing
2392 * white-space, so find the last non-white
2393 * character -- webb
2394 */
2395 col = vcol = curwin->w_wcol = 0;
2396 ptr = ml_get_curline();
2397 while (col < curwin->w_cursor.col)
2398 {
2399 if (!vim_iswhite(ptr[col]))
2400 curwin->w_wcol = vcol;
2401 vcol += lbr_chartabsize(ptr + col,
2402 (colnr_T)vcol);
2403#ifdef FEAT_MBYTE
2404 if (has_mbyte)
2405 col += (*mb_ptr2len_check)(ptr + col);
2406 else
2407#endif
2408 ++col;
2409 }
2410 curwin->w_wrow = curwin->w_cline_row
2411 + curwin->w_wcol / W_WIDTH(curwin);
2412 curwin->w_wcol %= W_WIDTH(curwin);
2413 curwin->w_wcol += curwin_col_off();
2414#ifdef FEAT_MBYTE
2415 col = 0; /* no correction needed */
2416#endif
2417 }
2418 else
2419 {
2420 --curwin->w_wcol;
2421#ifdef FEAT_MBYTE
2422 col = curwin->w_cursor.col - 1;
2423#endif
2424 }
2425 }
2426 else if (curwin->w_p_wrap && curwin->w_wrow)
2427 {
2428 --curwin->w_wrow;
2429 curwin->w_wcol = W_WIDTH(curwin) - 1;
2430#ifdef FEAT_MBYTE
2431 col = curwin->w_cursor.col - 1;
2432#endif
2433 }
2434#ifdef FEAT_MBYTE
2435 if (has_mbyte && col > 0 && curwin->w_wcol > 0)
2436 {
2437 /* Correct when the cursor is on the right halve
2438 * of a double-wide character. */
2439 ptr = ml_get_curline();
2440 col -= (*mb_head_off)(ptr, ptr + col);
2441 if ((*mb_ptr2cells)(ptr + col) > 1)
2442 --curwin->w_wcol;
2443 }
2444#endif
2445 }
2446 setcursor();
2447 out_flush();
2448#ifdef FEAT_CMDL_INFO
2449 new_wcol = curwin->w_wcol;
2450 new_wrow = curwin->w_wrow;
2451#endif
2452 curwin->w_wcol = old_wcol;
2453 curwin->w_wrow = old_wrow;
2454 }
2455 if (c < 0)
2456 continue; /* end of input script reached */
2457 typebuf.tb_len += c;
2458
2459 /* buffer full, don't map */
2460 if (typebuf.tb_len >= typebuf.tb_maplen + MAXMAPLEN)
2461 {
2462 timedout = TRUE;
2463 continue;
2464 }
2465
2466#ifdef FEAT_EX_EXTRA
2467 if (ex_normal_busy > 0)
2468 {
2469# ifdef FEAT_CMDWIN
2470 static int tc = 0;
2471# endif
2472
2473 /* No typeahead left and inside ":normal". Must return
2474 * something to avoid getting stuck. When an incomplete
2475 * mapping is present, behave like it timed out. */
2476 if (typebuf.tb_len > 0)
2477 {
2478 timedout = TRUE;
2479 continue;
2480 }
2481 /* When 'insertmode' is set, ESC just beeps in Insert
2482 * mode. Use CTRL-L to make edit() return.
2483 * For the command line only CTRL-C always breaks it.
2484 * For the cmdline window: Alternate between ESC and
2485 * CTRL-C: ESC for most situations and CTRL-C to close the
2486 * cmdline window. */
2487 if (p_im && (State & INSERT))
2488 c = Ctrl_L;
2489 else if ((State & CMDLINE)
2490# ifdef FEAT_CMDWIN
2491 || (cmdwin_type > 0 && tc == ESC)
2492# endif
2493 )
2494 c = Ctrl_C;
2495 else
2496 c = ESC;
2497# ifdef FEAT_CMDWIN
2498 tc = c;
2499# endif
2500 break;
2501 }
2502#endif
2503
2504/*
2505 * get a character: 3. from the user - update display
2506 */
2507 /* In insert mode a screen update is skipped when characters
2508 * are still available. But when those available characters
2509 * are part of a mapping, and we are going to do a blocking
2510 * wait here. Need to update the screen to display the
2511 * changed text so far. */
2512 if ((State & INSERT) && advance && must_redraw != 0)
2513 {
2514 update_screen(0);
2515 setcursor(); /* put cursor back where it belongs */
2516 }
2517
2518 /*
2519 * If we have a partial match (and are going to wait for more
2520 * input from the user), show the partially matched characters
2521 * to the user with showcmd.
2522 */
2523#ifdef FEAT_CMDL_INFO
2524 i = 0;
2525#endif
2526 c1 = 0;
2527 if (typebuf.tb_len > 0 && advance && !exmode_active)
2528 {
2529 if (((State & (NORMAL | INSERT)) || State == LANGMAP)
2530 && State != HITRETURN)
2531 {
2532 /* this looks nice when typing a dead character map */
2533 if (State & INSERT
2534 && ptr2cells(typebuf.tb_buf + typebuf.tb_off
2535 + typebuf.tb_len - 1) == 1)
2536 {
2537 edit_putchar(typebuf.tb_buf[typebuf.tb_off
2538 + typebuf.tb_len - 1], FALSE);
2539 setcursor(); /* put cursor back where it belongs */
2540 c1 = 1;
2541 }
2542#ifdef FEAT_CMDL_INFO
2543 /* need to use the col and row from above here */
2544 old_wcol = curwin->w_wcol;
2545 old_wrow = curwin->w_wrow;
2546 curwin->w_wcol = new_wcol;
2547 curwin->w_wrow = new_wrow;
2548 push_showcmd();
2549 if (typebuf.tb_len > SHOWCMD_COLS)
2550 i = typebuf.tb_len - SHOWCMD_COLS;
2551 while (i < typebuf.tb_len)
2552 (void)add_to_showcmd(typebuf.tb_buf[typebuf.tb_off
2553 + i++]);
2554 curwin->w_wcol = old_wcol;
2555 curwin->w_wrow = old_wrow;
2556#endif
2557 }
2558
2559 /* this looks nice when typing a dead character map */
2560 if ((State & CMDLINE)
2561#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2562 && cmdline_star == 0
2563#endif
2564 && ptr2cells(typebuf.tb_buf + typebuf.tb_off
2565 + typebuf.tb_len - 1) == 1)
2566 {
2567 putcmdline(typebuf.tb_buf[typebuf.tb_off
2568 + typebuf.tb_len - 1], FALSE);
2569 c1 = 1;
2570 }
2571 }
2572
2573/*
2574 * get a character: 3. from the user - get it
2575 */
Bram Moolenaar28a37ff2005-03-15 22:28:00 +00002576 wait_tb_len = typebuf.tb_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 c = inchar(typebuf.tb_buf + typebuf.tb_off + typebuf.tb_len,
2578 typebuf.tb_buflen - typebuf.tb_off - typebuf.tb_len - 1,
2579 !advance
2580 ? 0
2581 : ((typebuf.tb_len == 0
2582 || !(p_timeout || (p_ttimeout
2583 && keylen == KL_PART_KEY)))
2584 ? -1L
2585 : ((keylen == KL_PART_KEY && p_ttm >= 0)
2586 ? p_ttm
2587 : p_tm)), typebuf.tb_change_cnt);
2588
2589#ifdef FEAT_CMDL_INFO
2590 if (i != 0)
2591 pop_showcmd();
2592#endif
2593 if (c1 == 1)
2594 {
2595 if (State & INSERT)
2596 edit_unputchar();
2597 if (State & CMDLINE)
2598 unputcmdline();
2599 setcursor(); /* put cursor back where it belongs */
2600 }
2601
2602 if (c < 0)
2603 continue; /* end of input script reached */
2604 if (c == NUL) /* no character available */
2605 {
2606 if (!advance)
2607 break;
Bram Moolenaar28a37ff2005-03-15 22:28:00 +00002608 if (wait_tb_len > 0) /* timed out */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 {
2610 timedout = TRUE;
2611 continue;
2612 }
2613 }
2614 else
2615 { /* allow mapping for just typed characters */
2616 while (typebuf.tb_buf[typebuf.tb_off
2617 + typebuf.tb_len] != NUL)
2618 typebuf.tb_noremap[typebuf.tb_off
2619 + typebuf.tb_len++] = RM_YES;
2620#ifdef USE_IM_CONTROL
2621 /* Get IM status right after getting keys, not after the
2622 * timeout for a mapping (focus may be lost by then). */
2623 vgetc_im_active = im_get_status();
2624#endif
2625 }
2626 } /* for (;;) */
2627 } /* if (!character from stuffbuf) */
2628
2629 /* if advance is FALSE don't loop on NULs */
2630 } while (c < 0 || (advance && c == NUL));
2631
2632 /*
2633 * The "INSERT" message is taken care of here:
2634 * if we return an ESC to exit insert mode, the message is deleted
2635 * if we don't return an ESC but deleted the message before, redisplay it
2636 */
2637 if (advance && p_smd && (State & INSERT))
2638 {
2639 if (c == ESC && !mode_deleted && !no_mapping)
2640 {
2641 if (typebuf.tb_len && !KeyTyped)
2642 redraw_cmdline = TRUE; /* delete mode later */
2643 else
2644 unshowmode(FALSE);
2645 }
2646 else if (c != ESC && mode_deleted)
2647 {
2648 if (typebuf.tb_len && !KeyTyped)
2649 redraw_cmdline = TRUE; /* show mode later */
2650 else
2651 showmode();
2652 }
2653 }
2654#ifdef FEAT_GUI
2655 /* may unshow different cursor shape */
2656 if (gui.in_use && shape_changed)
2657 gui_update_cursor(TRUE, FALSE);
2658#endif
2659
2660 vgetc_busy = FALSE;
2661
2662 return c;
2663}
2664
2665/*
2666 * inchar() - get one character from
2667 * 1. a scriptfile
2668 * 2. the keyboard
2669 *
2670 * As much characters as we can get (upto 'maxlen') are put in "buf" and
2671 * NUL terminated (buffer length must be 'maxlen' + 1).
2672 * Minimum for "maxlen" is 3!!!!
2673 *
2674 * "tb_change_cnt" is the value of typebuf.tb_change_cnt if "buf" points into
2675 * it. When typebuf.tb_change_cnt changes (e.g., when a message is received
2676 * from a remote client) "buf" can no longer be used. "tb_change_cnt" is 0
2677 * otherwise.
2678 *
2679 * If we got an interrupt all input is read until none is available.
2680 *
2681 * If wait_time == 0 there is no waiting for the char.
2682 * If wait_time == n we wait for n msec for a character to arrive.
2683 * If wait_time == -1 we wait forever for a character to arrive.
2684 *
2685 * Return the number of obtained characters.
2686 * Return -1 when end of input script reached.
2687 */
2688 int
2689inchar(buf, maxlen, wait_time, tb_change_cnt)
2690 char_u *buf;
2691 int maxlen;
2692 long wait_time; /* milli seconds */
2693 int tb_change_cnt;
2694{
2695 int len = 0; /* init for GCC */
2696 int retesc = FALSE; /* return ESC with gotint */
2697 int script_char;
2698
2699 if (wait_time == -1L || wait_time > 100L) /* flush output before waiting */
2700 {
2701 cursor_on();
2702 out_flush();
2703#ifdef FEAT_GUI
2704 if (gui.in_use)
2705 {
2706 gui_update_cursor(FALSE, FALSE);
2707# ifdef FEAT_MOUSESHAPE
2708 if (postponed_mouseshape)
2709 update_mouseshape(-1);
2710# endif
2711 }
2712#endif
2713 }
2714
2715 /*
2716 * Don't reset these when at the hit-return prompt, otherwise a endless
2717 * recursive loop may result (write error in swapfile, hit-return, timeout
2718 * on char wait, flush swapfile, write error....).
2719 */
2720 if (State != HITRETURN)
2721 {
2722 did_outofmem_msg = FALSE; /* display out of memory message (again) */
2723 did_swapwrite_msg = FALSE; /* display swap file write error again */
2724 }
2725 undo_off = FALSE; /* restart undo now */
2726
2727 /*
2728 * first try script file
2729 * If interrupted: Stop reading script files.
2730 */
2731 script_char = -1;
2732 while (scriptin[curscript] != NULL && script_char < 0)
2733 {
2734 if (got_int || (script_char = getc(scriptin[curscript])) < 0)
2735 {
2736 /* Reached EOF.
2737 * Careful: closescript() frees typebuf.tb_buf[] and buf[] may
2738 * point inside typebuf.tb_buf[]. Don't use buf[] after this! */
2739 closescript();
2740 /*
2741 * When reading script file is interrupted, return an ESC to get
2742 * back to normal mode.
2743 * Otherwise return -1, because typebuf.tb_buf[] has changed.
2744 */
2745 if (got_int)
2746 retesc = TRUE;
2747 else
2748 return -1;
2749 }
2750 else
2751 {
2752 buf[0] = script_char;
2753 len = 1;
2754 }
2755 }
2756
2757 if (script_char < 0) /* did not get a character from script */
2758 {
2759 /*
2760 * If we got an interrupt, skip all previously typed characters and
2761 * return TRUE if quit reading script file.
2762 * Stop reading typeahead when a single CTRL-C was read,
2763 * fill_input_buf() returns this when not able to read from stdin.
2764 * Don't use buf[] here, closescript() may have freed typebuf.tb_buf[]
2765 * and buf may be pointing inside typebuf.tb_buf[].
2766 */
2767 if (got_int)
2768 {
2769#define DUM_LEN MAXMAPLEN * 3 + 3
2770 char_u dum[DUM_LEN + 1];
2771
2772 for (;;)
2773 {
2774 len = ui_inchar(dum, DUM_LEN, 0L, 0);
2775 if (len == 0 || (len == 1 && dum[0] == 3))
2776 break;
2777 }
2778 return retesc;
2779 }
2780
2781 /*
2782 * Always flush the output characters when getting input characters
2783 * from the user.
2784 */
2785 out_flush();
2786
2787 /*
2788 * Fill up to a third of the buffer, because each character may be
2789 * tripled below.
2790 */
2791 len = ui_inchar(buf, maxlen / 3, wait_time, tb_change_cnt);
2792 }
2793
2794 if (typebuf_changed(tb_change_cnt))
2795 return 0;
2796
2797 return fix_input_buffer(buf, len, script_char >= 0);
2798}
2799
2800/*
2801 * Fix typed characters for use by vgetc() and check_termcode().
2802 * buf[] must have room to triple the number of bytes!
2803 * Returns the new length.
2804 */
2805 int
2806fix_input_buffer(buf, len, script)
2807 char_u *buf;
2808 int len;
2809 int script; /* TRUE when reading from a script */
2810{
2811 int i;
2812 char_u *p = buf;
2813
2814 /*
2815 * Two characters are special: NUL and K_SPECIAL.
2816 * When compiled With the GUI CSI is also special.
2817 * Replace NUL by K_SPECIAL KS_ZERO KE_FILLER
2818 * Replace K_SPECIAL by K_SPECIAL KS_SPECIAL KE_FILLER
2819 * Replace CSI by K_SPECIAL KS_EXTRA KE_CSI
2820 * Don't replace K_SPECIAL when reading a script file.
2821 */
2822 for (i = len; --i >= 0; ++p)
2823 {
2824#ifdef FEAT_GUI
2825 /* When the GUI is used any character can come after a CSI, don't
2826 * escape it. */
2827 if (gui.in_use && p[0] == CSI && i >= 2)
2828 {
2829 p += 2;
2830 i -= 2;
2831 }
2832 /* When the GUI is not used CSI needs to be escaped. */
2833 else if (!gui.in_use && p[0] == CSI)
2834 {
2835 mch_memmove(p + 3, p + 1, (size_t)i);
2836 *p++ = K_SPECIAL;
2837 *p++ = KS_EXTRA;
2838 *p = (int)KE_CSI;
2839 len += 2;
2840 }
2841 else
2842#endif
2843 if (p[0] == NUL || (p[0] == K_SPECIAL && !script
Bram Moolenaar28a37ff2005-03-15 22:28:00 +00002844#ifdef FEAT_AUTOCMD
2845 /* timeout may generate K_CURSORHOLD */
2846 && (i < 2 || p[1] != KS_EXTRA || p[2] != (int)KE_CURSORHOLD)
2847#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002848#if defined(WIN3264) && !defined(FEAT_GUI)
2849 /* Win32 console passes modifiers */
2850 && (i < 2 || p[1] != KS_MODIFIER)
2851#endif
2852 ))
2853 {
2854 mch_memmove(p + 3, p + 1, (size_t)i);
2855 p[2] = K_THIRD(p[0]);
2856 p[1] = K_SECOND(p[0]);
2857 p[0] = K_SPECIAL;
2858 p += 2;
2859 len += 2;
2860 }
2861 }
2862 *p = NUL; /* add trailing NUL */
2863 return len;
2864}
2865
2866#if defined(USE_INPUT_BUF) || defined(PROTO)
2867/*
2868 * Return TRUE when bytes are in the input buffer or in the typeahead buffer.
2869 * Normally the input buffer would be sufficient, but the server_to_input_buf()
2870 * may insert characters in the typeahead buffer while we are waiting for
2871 * input to arrive.
2872 */
2873 int
2874input_available()
2875{
2876 return (!vim_is_input_buf_empty()
2877# ifdef FEAT_CLIENTSERVER
2878 || received_from_client
2879# endif
2880 );
2881}
2882#endif
2883
2884/*
2885 * map[!] : show all key mappings
2886 * map[!] {lhs} : show key mapping for {lhs}
2887 * map[!] {lhs} {rhs} : set key mapping for {lhs} to {rhs}
2888 * noremap[!] {lhs} {rhs} : same, but no remapping for {rhs}
2889 * unmap[!] {lhs} : remove key mapping for {lhs}
2890 * abbr : show all abbreviations
2891 * abbr {lhs} : show abbreviations for {lhs}
2892 * abbr {lhs} {rhs} : set abbreviation for {lhs} to {rhs}
2893 * noreabbr {lhs} {rhs} : same, but no remapping for {rhs}
2894 * unabbr {lhs} : remove abbreviation for {lhs}
2895 *
2896 * maptype: 0 for :map, 1 for :unmap, 2 for noremap.
2897 *
2898 * arg is pointer to any arguments. Note: arg cannot be a read-only string,
2899 * it will be modified.
2900 *
2901 * for :map mode is NORMAL + VISUAL + OP_PENDING
2902 * for :map! mode is INSERT + CMDLINE
2903 * for :cmap mode is CMDLINE
2904 * for :imap mode is INSERT
2905 * for :lmap mode is LANGMAP
2906 * for :nmap mode is NORMAL
2907 * for :vmap mode is VISUAL
2908 * for :omap mode is OP_PENDING
2909 *
2910 * for :abbr mode is INSERT + CMDLINE
2911 * for :iabbr mode is INSERT
2912 * for :cabbr mode is CMDLINE
2913 *
2914 * Return 0 for success
2915 * 1 for invalid arguments
2916 * 2 for no match
2917 * 4 for out of mem
2918 * 5 for entry not unique
2919 */
2920 int
2921do_map(maptype, arg, mode, abbrev)
2922 int maptype;
2923 char_u *arg;
2924 int mode;
2925 int abbrev; /* not a mapping but an abbreviation */
2926{
2927 char_u *keys;
2928 mapblock_T *mp, **mpp;
2929 char_u *rhs;
2930 char_u *p;
2931 int n;
2932 int len = 0; /* init for GCC */
2933 char_u *newstr;
2934 int hasarg;
2935 int haskey;
2936 int did_it = FALSE;
2937#ifdef FEAT_LOCALMAP
2938 int did_local = FALSE;
2939#endif
2940 int round;
2941 char_u *keys_buf = NULL;
2942 char_u *arg_buf = NULL;
2943 int retval = 0;
2944 int do_backslash;
2945 int hash;
2946 int new_hash;
2947 mapblock_T **abbr_table;
2948 mapblock_T **map_table;
2949 int unique = FALSE;
2950 int silent = FALSE;
2951 int noremap;
2952
2953 keys = arg;
2954 map_table = maphash;
2955 abbr_table = &first_abbr;
2956
2957 /* For ":noremap" don't remap, otherwise do remap. */
2958 if (maptype == 2)
2959 noremap = REMAP_NONE;
2960 else
2961 noremap = REMAP_YES;
2962
2963 /* Accept <buffer>, <silent>, <script> and <unique> in any order. */
2964 for (;;)
2965 {
2966#ifdef FEAT_LOCALMAP
2967 /*
2968 * Check for "<buffer>": mapping local to buffer.
2969 */
2970 if (STRNCMP(keys, "<buffer>", 8) == 0)
2971 {
2972 keys = skipwhite(keys + 8);
2973 map_table = curbuf->b_maphash;
2974 abbr_table = &curbuf->b_first_abbr;
2975 continue;
2976 }
2977#endif
2978
2979 /*
2980 * Check for "<silent>": don't echo commands.
2981 */
2982 if (STRNCMP(keys, "<silent>", 8) == 0)
2983 {
2984 keys = skipwhite(keys + 8);
2985 silent = TRUE;
2986 continue;
2987 }
2988
2989#ifdef FEAT_EVAL
2990 /*
2991 * Check for "<script>": remap script-local mappings only
2992 */
2993 if (STRNCMP(keys, "<script>", 8) == 0)
2994 {
2995 keys = skipwhite(keys + 8);
2996 noremap = REMAP_SCRIPT;
2997 continue;
2998 }
2999#endif
3000 /*
3001 * Check for "<unique>": don't overwrite an existing mapping.
3002 */
3003 if (STRNCMP(keys, "<unique>", 8) == 0)
3004 {
3005 keys = skipwhite(keys + 8);
3006 unique = TRUE;
3007 continue;
3008 }
3009 break;
3010 }
3011
3012 validate_maphash();
3013
3014 /*
3015 * find end of keys and skip CTRL-Vs (and backslashes) in it
3016 * Accept backslash like CTRL-V when 'cpoptions' does not contain 'B'.
3017 * with :unmap white space is included in the keys, no argument possible
3018 */
3019 p = keys;
3020 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL);
3021 while (*p && (maptype == 1 || !vim_iswhite(*p)))
3022 {
3023 if ((p[0] == Ctrl_V || (do_backslash && p[0] == '\\')) &&
3024 p[1] != NUL)
3025 ++p; /* skip CTRL-V or backslash */
3026 ++p;
3027 }
3028 if (*p != NUL)
3029 *p++ = NUL;
3030 p = skipwhite(p);
3031 rhs = p;
3032 hasarg = (*rhs != NUL);
3033 haskey = (*keys != NUL);
3034
3035 /* check for :unmap without argument */
3036 if (maptype == 1 && !haskey)
3037 {
3038 retval = 1;
3039 goto theend;
3040 }
3041
3042 /*
3043 * If mapping has been given as ^V<C_UP> say, then replace the term codes
3044 * with the appropriate two bytes. If it is a shifted special key, unshift
3045 * it too, giving another two bytes.
3046 * replace_termcodes() may move the result to allocated memory, which
3047 * needs to be freed later (*keys_buf and *arg_buf).
3048 * replace_termcodes() also removes CTRL-Vs and sometimes backslashes.
3049 */
3050 if (haskey)
3051 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE);
3052 if (hasarg)
3053 {
3054 if (STRICMP(rhs, "<nop>") == 0) /* "<Nop>" means nothing */
3055 rhs = (char_u *)"";
3056 else
3057 rhs = replace_termcodes(rhs, &arg_buf, FALSE, TRUE);
3058 }
3059
3060#ifdef FEAT_FKMAP
3061 /*
3062 * when in right-to-left mode and alternate keymap option set,
3063 * reverse the character flow in the rhs in Farsi.
3064 */
3065 if (p_altkeymap && curwin->w_p_rl)
3066 lrswap(rhs);
3067#endif
3068
3069 /*
3070 * check arguments and translate function keys
3071 */
3072 if (haskey)
3073 {
3074 len = (int)STRLEN(keys);
3075 if (len > MAXMAPLEN) /* maximum length of MAXMAPLEN chars */
3076 {
3077 retval = 1;
3078 goto theend;
3079 }
3080
3081 if (abbrev && maptype != 1)
3082 {
3083 /*
3084 * If an abbreviation ends in a keyword character, the
3085 * rest must be all keyword-char or all non-keyword-char.
3086 * Otherwise we won't be able to find the start of it in a
3087 * vi-compatible way.
3088 */
3089#ifdef FEAT_MBYTE
3090 if (has_mbyte)
3091 {
3092 int first, last;
3093 int same = -1;
3094
3095 first = vim_iswordp(keys);
3096 last = first;
3097 p = keys + mb_ptr2len_check(keys);
3098 n = 1;
3099 while (p < keys + len)
3100 {
3101 ++n; /* nr of (multi-byte) chars */
3102 last = vim_iswordp(p); /* type of last char */
3103 if (same == -1 && last != first)
3104 same = n - 1; /* count of same char type */
3105 p += mb_ptr2len_check(p);
3106 }
3107 if (last && n > 2 && same >= 0 && same < n - 1)
3108 {
3109 retval = 1;
3110 goto theend;
3111 }
3112 }
3113 else
3114#endif
3115 if (vim_iswordc(keys[len - 1])) /* ends in keyword char */
3116 for (n = 0; n < len - 2; ++n)
3117 if (vim_iswordc(keys[n]) != vim_iswordc(keys[len - 2]))
3118 {
3119 retval = 1;
3120 goto theend;
3121 }
3122 /* An abbrevation cannot contain white space. */
3123 for (n = 0; n < len; ++n)
3124 if (vim_iswhite(keys[n]))
3125 {
3126 retval = 1;
3127 goto theend;
3128 }
3129 }
3130 }
3131
3132 if (haskey && hasarg && abbrev) /* if we will add an abbreviation */
3133 no_abbr = FALSE; /* reset flag that indicates there are
3134 no abbreviations */
3135
3136 if (!haskey || (maptype != 1 && !hasarg))
3137 msg_start();
3138
3139#ifdef FEAT_LOCALMAP
3140 /*
3141 * Check if a new local mapping wasn't already defined globally.
3142 */
3143 if (map_table == curbuf->b_maphash && haskey && hasarg && maptype != 1)
3144 {
3145 /* need to loop over all global hash lists */
3146 for (hash = 0; hash < 256 && !got_int; ++hash)
3147 {
3148 if (abbrev)
3149 {
3150 if (hash != 0) /* there is only one abbreviation list */
3151 break;
3152 mp = first_abbr;
3153 }
3154 else
3155 mp = maphash[hash];
3156 for ( ; mp != NULL && !got_int; mp = mp->m_next)
3157 {
3158 /* check entries with the same mode */
3159 if ((mp->m_mode & mode) != 0
3160 && mp->m_keylen == len
3161 && unique
3162 && STRNCMP(mp->m_keys, keys, (size_t)len) == 0)
3163 {
3164 if (abbrev)
3165 EMSG2(_("E224: global abbreviation already exists for %s"),
3166 mp->m_keys);
3167 else
3168 EMSG2(_("E225: global mapping already exists for %s"),
3169 mp->m_keys);
3170 retval = 5;
3171 goto theend;
3172 }
3173 }
3174 }
3175 }
3176
3177 /*
3178 * When listing global mappings, also list buffer-local ones here.
3179 */
3180 if (map_table != curbuf->b_maphash && !hasarg && maptype != 1)
3181 {
3182 /* need to loop over all global hash lists */
3183 for (hash = 0; hash < 256 && !got_int; ++hash)
3184 {
3185 if (abbrev)
3186 {
3187 if (hash != 0) /* there is only one abbreviation list */
3188 break;
3189 mp = curbuf->b_first_abbr;
3190 }
3191 else
3192 mp = curbuf->b_maphash[hash];
3193 for ( ; mp != NULL && !got_int; mp = mp->m_next)
3194 {
3195 /* check entries with the same mode */
3196 if ((mp->m_mode & mode) != 0)
3197 {
3198 if (!haskey) /* show all entries */
3199 {
3200 showmap(mp, TRUE);
3201 did_local = TRUE;
3202 }
3203 else
3204 {
3205 n = mp->m_keylen;
3206 if (STRNCMP(mp->m_keys, keys,
3207 (size_t)(n < len ? n : len)) == 0)
3208 {
3209 showmap(mp, TRUE);
3210 did_local = TRUE;
3211 }
3212 }
3213 }
3214 }
3215 }
3216 }
3217#endif
3218
3219 /*
3220 * Find an entry in the maphash[] list that matches.
3221 * For :unmap we may loop two times: once to try to unmap an entry with a
3222 * matching 'from' part, a second time, if the first fails, to unmap an
3223 * entry with a matching 'to' part. This was done to allow ":ab foo bar"
3224 * to be unmapped by typing ":unab foo", where "foo" will be replaced by
3225 * "bar" because of the abbreviation.
3226 */
3227 for (round = 0; (round == 0 || maptype == 1) && round <= 1
3228 && !did_it && !got_int; ++round)
3229 {
3230 /* need to loop over all hash lists */
3231 for (hash = 0; hash < 256 && !got_int; ++hash)
3232 {
3233 if (abbrev)
3234 {
3235 if (hash != 0) /* there is only one abbreviation list */
3236 break;
3237 mpp = abbr_table;
3238 }
3239 else
3240 mpp = &(map_table[hash]);
3241 for (mp = *mpp; mp != NULL && !got_int; mp = *mpp)
3242 {
3243
3244 if (!(mp->m_mode & mode)) /* skip entries with wrong mode */
3245 {
3246 mpp = &(mp->m_next);
3247 continue;
3248 }
3249 if (!haskey) /* show all entries */
3250 {
3251 showmap(mp, map_table != maphash);
3252 did_it = TRUE;
3253 }
3254 else /* do we have a match? */
3255 {
3256 if (round) /* second round: Try unmap "rhs" string */
3257 {
3258 n = (int)STRLEN(mp->m_str);
3259 p = mp->m_str;
3260 }
3261 else
3262 {
3263 n = mp->m_keylen;
3264 p = mp->m_keys;
3265 }
3266 if (STRNCMP(p, keys, (size_t)(n < len ? n : len)) == 0)
3267 {
3268 if (maptype == 1) /* delete entry */
3269 {
3270 /* Only accept a full match. For abbreviations we
3271 * ignore trailing space when matching with the
3272 * "lhs", since an abbreviation can't have
3273 * trailing space. */
3274 if (n != len && (!abbrev || round || n > len
3275 || *skipwhite(keys + n) != NUL))
3276 {
3277 mpp = &(mp->m_next);
3278 continue;
3279 }
3280 /*
3281 * We reset the indicated mode bits. If nothing is
3282 * left the entry is deleted below.
3283 */
3284 mp->m_mode &= ~mode;
3285 did_it = TRUE; /* remember we did something */
3286 }
3287 else if (!hasarg) /* show matching entry */
3288 {
3289 showmap(mp, map_table != maphash);
3290 did_it = TRUE;
3291 }
3292 else if (n != len) /* new entry is ambigious */
3293 {
3294 mpp = &(mp->m_next);
3295 continue;
3296 }
3297 else if (unique)
3298 {
3299 if (abbrev)
3300 EMSG2(_("E226: abbreviation already exists for %s"),
3301 p);
3302 else
3303 EMSG2(_("E227: mapping already exists for %s"), p);
3304 retval = 5;
3305 goto theend;
3306 }
3307 else /* new rhs for existing entry */
3308 {
3309 mp->m_mode &= ~mode; /* remove mode bits */
3310 if (mp->m_mode == 0 && !did_it) /* reuse entry */
3311 {
3312 newstr = vim_strsave(rhs);
3313 if (newstr == NULL)
3314 {
3315 retval = 4; /* no mem */
3316 goto theend;
3317 }
3318 vim_free(mp->m_str);
3319 mp->m_str = newstr;
3320 mp->m_noremap = noremap;
3321 mp->m_silent = silent;
3322 mp->m_mode = mode;
3323 did_it = TRUE;
3324 }
3325 }
3326 if (mp->m_mode == 0) /* entry can be deleted */
3327 {
3328 map_free(mpp);
3329 continue; /* continue with *mpp */
3330 }
3331
3332 /*
3333 * May need to put this entry into another hash list.
3334 */
3335 new_hash = MAP_HASH(mp->m_mode, mp->m_keys[0]);
3336 if (!abbrev && new_hash != hash)
3337 {
3338 *mpp = mp->m_next;
3339 mp->m_next = map_table[new_hash];
3340 map_table[new_hash] = mp;
3341
3342 continue; /* continue with *mpp */
3343 }
3344 }
3345 }
3346 mpp = &(mp->m_next);
3347 }
3348 }
3349 }
3350
3351 if (maptype == 1) /* delete entry */
3352 {
3353 if (!did_it)
3354 retval = 2; /* no match */
3355 goto theend;
3356 }
3357
3358 if (!haskey || !hasarg) /* print entries */
3359 {
3360 if (!did_it
3361#ifdef FEAT_LOCALMAP
3362 && !did_local
3363#endif
3364 )
3365 {
3366 if (abbrev)
3367 MSG(_("No abbreviation found"));
3368 else
3369 MSG(_("No mapping found"));
3370 }
3371 goto theend; /* listing finished */
3372 }
3373
3374 if (did_it) /* have added the new entry already */
3375 goto theend;
3376
3377 /*
3378 * Get here when adding a new entry to the maphash[] list or abbrlist.
3379 */
3380 mp = (mapblock_T *)alloc((unsigned)sizeof(mapblock_T));
3381 if (mp == NULL)
3382 {
3383 retval = 4; /* no mem */
3384 goto theend;
3385 }
3386
3387 /* If CTRL-C has been mapped, don't always use it for Interrupting */
3388 if (*keys == Ctrl_C)
3389 mapped_ctrl_c = TRUE;
3390
3391 mp->m_keys = vim_strsave(keys);
3392 mp->m_str = vim_strsave(rhs);
3393 if (mp->m_keys == NULL || mp->m_str == NULL)
3394 {
3395 vim_free(mp->m_keys);
3396 vim_free(mp->m_str);
3397 vim_free(mp);
3398 retval = 4; /* no mem */
3399 goto theend;
3400 }
3401 mp->m_keylen = (int)STRLEN(mp->m_keys);
3402 mp->m_noremap = noremap;
3403 mp->m_silent = silent;
3404 mp->m_mode = mode;
3405
3406 /* add the new entry in front of the abbrlist or maphash[] list */
3407 if (abbrev)
3408 {
3409 mp->m_next = *abbr_table;
3410 *abbr_table = mp;
3411 }
3412 else
3413 {
3414 n = MAP_HASH(mp->m_mode, mp->m_keys[0]);
3415 mp->m_next = map_table[n];
3416 map_table[n] = mp;
3417 }
3418
3419theend:
3420 vim_free(keys_buf);
3421 vim_free(arg_buf);
3422 return retval;
3423}
3424
3425/*
3426 * Delete one entry from the abbrlist or maphash[].
3427 * "mpp" is a pointer to the m_next field of the PREVIOUS entry!
3428 */
3429 static void
3430map_free(mpp)
3431 mapblock_T **mpp;
3432{
3433 mapblock_T *mp;
3434
3435 mp = *mpp;
3436 vim_free(mp->m_keys);
3437 vim_free(mp->m_str);
3438 *mpp = mp->m_next;
3439 vim_free(mp);
3440}
3441
3442/*
3443 * Initialize maphash[] for first use.
3444 */
3445 static void
3446validate_maphash()
3447{
3448 if (!maphash_valid)
3449 {
3450 vim_memset(maphash, 0, sizeof(maphash));
3451 maphash_valid = TRUE;
3452 }
3453}
3454
3455/*
3456 * Get the mapping mode from the command name.
3457 */
3458 int
3459get_map_mode(cmdp, forceit)
3460 char_u **cmdp;
3461 int forceit;
3462{
3463 char_u *p;
3464 int modec;
3465 int mode;
3466
3467 p = *cmdp;
3468 modec = *p++;
3469 if (modec == 'i')
3470 mode = INSERT; /* :imap */
3471 else if (modec == 'l')
3472 mode = LANGMAP; /* :lmap */
3473 else if (modec == 'c')
3474 mode = CMDLINE; /* :cmap */
3475 else if (modec == 'n' && *p != 'o') /* avoid :noremap */
3476 mode = NORMAL; /* :nmap */
3477 else if (modec == 'v')
3478 mode = VISUAL; /* :vmap */
3479 else if (modec == 'o')
3480 mode = OP_PENDING; /* :omap */
3481 else
3482 {
3483 --p;
3484 if (forceit)
3485 mode = INSERT + CMDLINE; /* :map ! */
3486 else
3487 mode = VISUAL + NORMAL + OP_PENDING;/* :map */
3488 }
3489
3490 *cmdp = p;
3491 return mode;
3492}
3493
3494/*
3495 * Clear all mappings or abbreviations.
3496 * 'abbr' should be FALSE for mappings, TRUE for abbreviations.
3497 */
3498/*ARGSUSED*/
3499 void
3500map_clear(cmdp, arg, forceit, abbr)
3501 char_u *cmdp;
3502 char_u *arg;
3503 int forceit;
3504 int abbr;
3505{
3506 int mode;
3507#ifdef FEAT_LOCALMAP
3508 int local;
3509
3510 local = (STRCMP(arg, "<buffer>") == 0);
3511 if (!local && *arg != NUL)
3512 {
3513 EMSG(_(e_invarg));
3514 return;
3515 }
3516#endif
3517
3518 mode = get_map_mode(&cmdp, forceit);
3519 map_clear_int(curbuf, mode,
3520#ifdef FEAT_LOCALMAP
3521 local,
3522#else
3523 FALSE,
3524#endif
3525 abbr);
3526}
3527
3528/*
3529 * Clear all mappings in "mode".
3530 */
3531/*ARGSUSED*/
3532 void
3533map_clear_int(buf, mode, local, abbr)
3534 buf_T *buf; /* buffer for local mappings */
3535 int mode; /* mode in which to delete */
3536 int local; /* TRUE for buffer-local mappings */
3537 int abbr; /* TRUE for abbreviations */
3538{
3539 mapblock_T *mp, **mpp;
3540 int hash;
3541 int new_hash;
3542
3543 validate_maphash();
3544
3545 for (hash = 0; hash < 256; ++hash)
3546 {
3547 if (abbr)
3548 {
3549 if (hash) /* there is only one abbrlist */
3550 break;
3551#ifdef FEAT_LOCALMAP
3552 if (local)
3553 mpp = &buf->b_first_abbr;
3554 else
3555#endif
3556 mpp = &first_abbr;
3557 }
3558 else
3559 {
3560#ifdef FEAT_LOCALMAP
3561 if (local)
3562 mpp = &buf->b_maphash[hash];
3563 else
3564#endif
3565 mpp = &maphash[hash];
3566 }
3567 while (*mpp != NULL)
3568 {
3569 mp = *mpp;
3570 if (mp->m_mode & mode)
3571 {
3572 mp->m_mode &= ~mode;
3573 if (mp->m_mode == 0) /* entry can be deleted */
3574 {
3575 map_free(mpp);
3576 continue;
3577 }
3578 /*
3579 * May need to put this entry into another hash list.
3580 */
3581 new_hash = MAP_HASH(mp->m_mode, mp->m_keys[0]);
3582 if (!abbr && new_hash != hash)
3583 {
3584 *mpp = mp->m_next;
3585#ifdef FEAT_LOCALMAP
3586 if (local)
3587 {
3588 mp->m_next = buf->b_maphash[new_hash];
3589 buf->b_maphash[new_hash] = mp;
3590 }
3591 else
3592#endif
3593 {
3594 mp->m_next = maphash[new_hash];
3595 maphash[new_hash] = mp;
3596 }
3597 continue; /* continue with *mpp */
3598 }
3599 }
3600 mpp = &(mp->m_next);
3601 }
3602 }
3603}
3604
3605 static void
3606showmap(mp, local)
3607 mapblock_T *mp;
3608 int local; /* TRUE for buffer-local map */
3609{
3610 int len = 1;
3611
3612 if (msg_didout || msg_silent != 0)
3613 msg_putchar('\n');
3614 if ((mp->m_mode & (INSERT + CMDLINE)) == INSERT + CMDLINE)
3615 msg_putchar('!'); /* :map! */
3616 else if (mp->m_mode & INSERT)
3617 msg_putchar('i'); /* :imap */
3618 else if (mp->m_mode & LANGMAP)
3619 msg_putchar('l'); /* :lmap */
3620 else if (mp->m_mode & CMDLINE)
3621 msg_putchar('c'); /* :cmap */
3622 else if ((mp->m_mode & (NORMAL + VISUAL + OP_PENDING))
3623 == NORMAL + VISUAL + OP_PENDING)
3624 msg_putchar(' '); /* :map */
3625 else
3626 {
3627 len = 0;
3628 if (mp->m_mode & NORMAL)
3629 {
3630 msg_putchar('n'); /* :nmap */
3631 ++len;
3632 }
3633 if (mp->m_mode & OP_PENDING)
3634 {
3635 msg_putchar('o'); /* :omap */
3636 ++len;
3637 }
3638 if (mp->m_mode & VISUAL)
3639 {
3640 msg_putchar('v'); /* :vmap */
3641 ++len;
3642 }
3643 }
3644 while (++len <= 3)
3645 msg_putchar(' ');
3646
3647 /* Get length of what we write */
3648 len = msg_outtrans_special(mp->m_keys, TRUE);
3649 do
3650 {
3651 msg_putchar(' '); /* padd with blanks */
3652 ++len;
3653 } while (len < 12);
3654
3655 if (mp->m_noremap == REMAP_NONE)
3656 msg_puts_attr((char_u *)"*", hl_attr(HLF_8));
3657 else if (mp->m_noremap == REMAP_SCRIPT)
3658 msg_puts_attr((char_u *)"&", hl_attr(HLF_8));
3659 else
3660 msg_putchar(' ');
3661
3662 if (local)
3663 msg_putchar('@');
3664 else
3665 msg_putchar(' ');
3666
3667 /* Use FALSE below if we only want things like <Up> to show up as such on
3668 * the rhs, and not M-x etc, TRUE gets both -- webb
3669 */
3670 if (*mp->m_str == NUL)
3671 msg_puts_attr((char_u *)"<Nop>", hl_attr(HLF_8));
3672 else
3673 msg_outtrans_special(mp->m_str, FALSE);
3674 out_flush(); /* show one line at a time */
3675}
3676
3677#if defined(FEAT_EVAL) || defined(PROTO)
3678/*
3679 * Return TRUE if a map exists that has "str" in the rhs for mode "modechars".
3680 * Recognize termcap codes in "str".
3681 * Also checks mappings local to the current buffer.
3682 */
3683 int
3684map_to_exists(str, modechars)
3685 char_u *str;
3686 char_u *modechars;
3687{
3688 int mode = 0;
3689 char_u *rhs;
3690 char_u *buf;
3691 int retval;
3692
3693 rhs = replace_termcodes(str, &buf, FALSE, TRUE);
3694
3695 if (vim_strchr(modechars, 'n') != NULL)
3696 mode |= NORMAL;
3697 if (vim_strchr(modechars, 'v') != NULL)
3698 mode |= VISUAL;
3699 if (vim_strchr(modechars, 'o') != NULL)
3700 mode |= OP_PENDING;
3701 if (vim_strchr(modechars, 'i') != NULL)
3702 mode |= INSERT;
3703 if (vim_strchr(modechars, 'l') != NULL)
3704 mode |= LANGMAP;
3705 if (vim_strchr(modechars, 'c') != NULL)
3706 mode |= CMDLINE;
3707
3708 retval = map_to_exists_mode(rhs, mode);
3709 vim_free(buf);
3710
3711 return retval;
3712}
3713#endif
3714
3715/*
3716 * Return TRUE if a map exists that has "str" in the rhs for mode "mode".
3717 * Also checks mappings local to the current buffer.
3718 */
3719 int
3720map_to_exists_mode(rhs, mode)
3721 char_u *rhs;
3722 int mode;
3723{
3724 mapblock_T *mp;
3725 int hash;
3726# ifdef FEAT_LOCALMAP
3727 int expand_buffer = FALSE;
3728
3729 validate_maphash();
3730
3731 /* Do it twice: once for global maps and once for local maps. */
3732 for (;;)
3733 {
3734# endif
3735 for (hash = 0; hash < 256; ++hash)
3736 {
3737# ifdef FEAT_LOCALMAP
3738 if (expand_buffer)
3739 mp = curbuf->b_maphash[hash];
3740 else
3741# endif
3742 mp = maphash[hash];
3743 for (; mp; mp = mp->m_next)
3744 {
3745 if ((mp->m_mode & mode)
3746 && strstr((char *)mp->m_str, (char *)rhs) != NULL)
3747 return TRUE;
3748 }
3749 }
3750# ifdef FEAT_LOCALMAP
3751 if (expand_buffer)
3752 break;
3753 expand_buffer = TRUE;
3754 }
3755# endif
3756
3757 return FALSE;
3758}
3759
3760#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3761/*
3762 * Used below when expanding mapping/abbreviation names.
3763 */
3764static int expand_mapmodes = 0;
3765static int expand_isabbrev = 0;
3766#ifdef FEAT_LOCALMAP
3767static int expand_buffer = FALSE;
3768#endif
3769
3770/*
3771 * Work out what to complete when doing command line completion of mapping
3772 * or abbreviation names.
3773 */
3774 char_u *
3775set_context_in_map_cmd(xp, cmd, arg, forceit, isabbrev, isunmap, cmdidx)
3776 expand_T *xp;
3777 char_u *cmd;
3778 char_u *arg;
3779 int forceit; /* TRUE if '!' given */
3780 int isabbrev; /* TRUE if abbreviation */
3781 int isunmap; /* TRUE if unmap/unabbrev command */
3782 cmdidx_T cmdidx;
3783{
3784 if (forceit && cmdidx != CMD_map && cmdidx != CMD_unmap)
3785 xp->xp_context = EXPAND_NOTHING;
3786 else
3787 {
3788 if (isunmap)
3789 expand_mapmodes = get_map_mode(&cmd, forceit || isabbrev);
3790 else
3791 {
3792 expand_mapmodes = INSERT + CMDLINE;
3793 if (!isabbrev)
3794 expand_mapmodes += VISUAL + NORMAL + OP_PENDING;
3795 }
3796 expand_isabbrev = isabbrev;
3797 xp->xp_context = EXPAND_MAPPINGS;
3798#ifdef FEAT_LOCALMAP
3799 expand_buffer = FALSE;
3800#endif
3801 for (;;)
3802 {
3803#ifdef FEAT_LOCALMAP
3804 if (STRNCMP(arg, "<buffer>", 8) == 0)
3805 {
3806 expand_buffer = TRUE;
3807 arg = skipwhite(arg + 8);
3808 continue;
3809 }
3810#endif
3811 if (STRNCMP(arg, "<unique>", 8) == 0)
3812 {
3813 arg = skipwhite(arg + 8);
3814 continue;
3815 }
3816 if (STRNCMP(arg, "<silent>", 8) == 0)
3817 {
3818 arg = skipwhite(arg + 8);
3819 continue;
3820 }
3821 if (STRNCMP(arg, "<script>", 8) == 0)
3822 {
3823 arg = skipwhite(arg + 8);
3824 continue;
3825 }
3826 break;
3827 }
3828 xp->xp_pattern = arg;
3829 }
3830
3831 return NULL;
3832}
3833
3834/*
3835 * Find all mapping/abbreviation names that match regexp 'prog'.
3836 * For command line expansion of ":[un]map" and ":[un]abbrev" in all modes.
3837 * Return OK if matches found, FAIL otherwise.
3838 */
3839 int
3840ExpandMappings(regmatch, num_file, file)
3841 regmatch_T *regmatch;
3842 int *num_file;
3843 char_u ***file;
3844{
3845 mapblock_T *mp;
3846 int hash;
3847 int count;
3848 int round;
3849 char_u *p;
3850 int i;
3851
3852 validate_maphash();
3853
3854 *num_file = 0; /* return values in case of FAIL */
3855 *file = NULL;
3856
3857 /*
3858 * round == 1: Count the matches.
3859 * round == 2: Build the array to keep the matches.
3860 */
3861 for (round = 1; round <= 2; ++round)
3862 {
3863 count = 0;
3864
3865 for (i = 0; i < 4; ++i)
3866 {
3867 if (i == 0)
3868 p = (char_u *)"<silent>";
3869 else if (i == 1)
3870 p = (char_u *)"<unique>";
3871#ifdef FEAT_EVAL
3872 else if (i == 2)
3873 p = (char_u *)"<script>";
3874#endif
3875#ifdef FEAT_LOCALMAP
3876 else if (i == 3 && !expand_buffer)
3877 p = (char_u *)"<buffer>";
3878#endif
3879 else
3880 continue;
3881
3882 if (vim_regexec(regmatch, p, (colnr_T)0))
3883 {
3884 if (round == 1)
3885 ++count;
3886 else
3887 (*file)[count++] = vim_strsave(p);
3888 }
3889 }
3890
3891 for (hash = 0; hash < 256; ++hash)
3892 {
3893 if (expand_isabbrev)
3894 {
3895 if (hash) /* only one abbrev list */
3896 break; /* for (hash) */
3897 mp = first_abbr;
3898 }
3899#ifdef FEAT_LOCALMAP
3900 else if (expand_buffer)
3901 mp = curbuf->b_maphash[hash];
3902#endif
3903 else
3904 mp = maphash[hash];
3905 for (; mp; mp = mp->m_next)
3906 {
3907 if (mp->m_mode & expand_mapmodes)
3908 {
3909 p = translate_mapping(mp->m_keys, TRUE);
3910 if (p != NULL && vim_regexec(regmatch, p, (colnr_T)0))
3911 {
3912 if (round == 1)
3913 ++count;
3914 else
3915 {
3916 (*file)[count++] = p;
3917 p = NULL;
3918 }
3919 }
3920 vim_free(p);
3921 }
3922 } /* for (mp) */
3923 } /* for (hash) */
3924
3925 if (count == 0) /* no match found */
3926 break; /* for (round) */
3927
3928 if (round == 1)
3929 {
3930 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
3931 if (*file == NULL)
3932 return FAIL;
3933 }
3934 } /* for (round) */
3935
3936 /* Sort the matches */
3937 sort_strings(*file, count);
3938
3939 /* Remove multiple entries */
3940 {
3941 char_u **ptr1 = *file;
3942 char_u **ptr2 = ptr1 + 1;
3943 char_u **ptr3 = ptr1 + count;
3944
3945 while (ptr2 < ptr3)
3946 {
3947 if (STRCMP(*ptr1, *ptr2))
3948 *++ptr1 = *ptr2++;
3949 else
3950 {
3951 vim_free(*ptr2++);
3952 count--;
3953 }
3954 }
3955 }
3956
3957 *num_file = count;
3958 return (count == 0 ? FAIL : OK);
3959}
3960#endif /* FEAT_CMDL_COMPL */
3961
3962/*
3963 * Check for an abbreviation.
3964 * Cursor is at ptr[col]. When inserting, mincol is where insert started.
3965 * "c" is the character typed before check_abbr was called. It may have
3966 * ABBR_OFF added to avoid prepending a CTRL-V to it.
3967 *
3968 * Historic vi practice: The last character of an abbreviation must be an id
3969 * character ([a-zA-Z0-9_]). The characters in front of it must be all id
3970 * characters or all non-id characters. This allows for abbr. "#i" to
3971 * "#include".
3972 *
3973 * Vim addition: Allow for abbreviations that end in a non-keyword character.
3974 * Then there must be white space before the abbr.
3975 *
3976 * return TRUE if there is an abbreviation, FALSE if not
3977 */
3978 int
3979check_abbr(c, ptr, col, mincol)
3980 int c;
3981 char_u *ptr;
3982 int col;
3983 int mincol;
3984{
3985 int len;
3986 int scol; /* starting column of the abbr. */
3987 int j;
3988#ifdef FEAT_MBYTE
3989 char_u tb[MB_MAXBYTES + 4];
3990#else
3991 char_u tb[4];
3992#endif
3993 mapblock_T *mp;
3994#ifdef FEAT_LOCALMAP
3995 mapblock_T *mp2;
3996#endif
3997#ifdef FEAT_MBYTE
3998 int clen = 0; /* length in characters */
3999#endif
4000 int is_id = TRUE;
4001 int vim_abbr;
4002
4003 if (typebuf.tb_no_abbr_cnt) /* abbrev. are not recursive */
4004 return FALSE;
4005 if (KeyNoremap) /* no remapping implies no abbreviation */
4006 return FALSE;
4007
4008 /*
4009 * Check for word before the cursor: If it ends in a keyword char all
4010 * chars before it must be al keyword chars or non-keyword chars, but not
4011 * white space. If it ends in a non-keyword char we accept any characters
4012 * before it except white space.
4013 */
4014 if (col == 0) /* cannot be an abbr. */
4015 return FALSE;
4016
4017#ifdef FEAT_MBYTE
4018 if (has_mbyte)
4019 {
4020 char_u *p;
4021
4022 p = mb_prevptr(ptr, ptr + col);
4023 if (!vim_iswordp(p))
4024 vim_abbr = TRUE; /* Vim added abbr. */
4025 else
4026 {
4027 vim_abbr = FALSE; /* vi compatible abbr. */
4028 if (p > ptr)
4029 is_id = vim_iswordp(mb_prevptr(ptr, p));
4030 }
4031 clen = 1;
4032 while (p > ptr + mincol)
4033 {
4034 p = mb_prevptr(ptr, p);
4035 if (vim_isspace(*p) || (!vim_abbr && is_id != vim_iswordp(p)))
4036 {
4037 p += (*mb_ptr2len_check)(p);
4038 break;
4039 }
4040 ++clen;
4041 }
4042 scol = (int)(p - ptr);
4043 }
4044 else
4045#endif
4046 {
4047 if (!vim_iswordc(ptr[col - 1]))
4048 vim_abbr = TRUE; /* Vim added abbr. */
4049 else
4050 {
4051 vim_abbr = FALSE; /* vi compatible abbr. */
4052 if (col > 1)
4053 is_id = vim_iswordc(ptr[col - 2]);
4054 }
4055 for (scol = col - 1; scol > 0 && !vim_isspace(ptr[scol - 1])
4056 && (vim_abbr || is_id == vim_iswordc(ptr[scol - 1])); --scol)
4057 ;
4058 }
4059
4060 if (scol < mincol)
4061 scol = mincol;
4062 if (scol < col) /* there is a word in front of the cursor */
4063 {
4064 ptr += scol;
4065 len = col - scol;
4066#ifdef FEAT_LOCALMAP
4067 mp = curbuf->b_first_abbr;
4068 mp2 = first_abbr;
4069 if (mp == NULL)
4070 {
4071 mp = mp2;
4072 mp2 = NULL;
4073 }
4074#else
4075 mp = first_abbr;
4076#endif
4077 for ( ; mp;
4078#ifdef FEAT_LOCALMAP
4079 mp->m_next == NULL ? (mp = mp2, mp2 = NULL) :
4080#endif
4081 (mp = mp->m_next))
4082 {
4083 /* find entries with right mode and keys */
4084 if ( (mp->m_mode & State)
4085 && mp->m_keylen == len
4086 && !STRNCMP(mp->m_keys, ptr, (size_t)len))
4087 break;
4088 }
4089 if (mp != NULL)
4090 {
4091 /*
4092 * Found a match:
4093 * Insert the rest of the abbreviation in typebuf.tb_buf[].
4094 * This goes from end to start.
4095 *
4096 * Characters 0x000 - 0x100: normal chars, may need CTRL-V,
4097 * except K_SPECIAL: Becomes K_SPECIAL KS_SPECIAL KE_FILLER
4098 * Characters where IS_SPECIAL() == TRUE: key codes, need
4099 * K_SPECIAL. Other characters (with ABBR_OFF): don't use CTRL-V.
4100 *
4101 * Character CTRL-] is treated specially - it completes the
4102 * abbreviation, but is not inserted into the input stream.
4103 */
4104 j = 0;
4105 /* special key code, split up */
4106 if (c != Ctrl_RSB)
4107 {
4108 if (IS_SPECIAL(c) || c == K_SPECIAL)
4109 {
4110 tb[j++] = K_SPECIAL;
4111 tb[j++] = K_SECOND(c);
4112 tb[j++] = K_THIRD(c);
4113 }
4114 else
4115 {
4116 if (c < ABBR_OFF && (c < ' ' || c > '~'))
4117 tb[j++] = Ctrl_V; /* special char needs CTRL-V */
4118#ifdef FEAT_MBYTE
4119 if (has_mbyte)
4120 {
4121 /* if ABBR_OFF has been added, remove it here */
4122 if (c >= ABBR_OFF)
4123 c -= ABBR_OFF;
4124 j += (*mb_char2bytes)(c, tb + j);
4125 }
4126 else
4127#endif
4128 tb[j++] = c;
4129 }
4130 tb[j] = NUL;
4131 /* insert the last typed char */
4132 (void)ins_typebuf(tb, 1, 0, TRUE, mp->m_silent);
4133 }
4134 /* insert the to string */
4135 (void)ins_typebuf(mp->m_str, mp->m_noremap, 0, TRUE, mp->m_silent);
4136 /* no abbrev. for these chars */
4137 typebuf.tb_no_abbr_cnt += (int)STRLEN(mp->m_str) + j + 1;
4138
4139 tb[0] = Ctrl_H;
4140 tb[1] = NUL;
4141#ifdef FEAT_MBYTE
4142 if (has_mbyte)
4143 len = clen; /* Delete characters instead of bytes */
4144#endif
4145 while (len-- > 0) /* delete the from string */
4146 (void)ins_typebuf(tb, 1, 0, TRUE, mp->m_silent);
4147 return TRUE;
4148 }
4149 }
4150 return FALSE;
4151}
4152
4153/*
4154 * Write map commands for the current mappings to an .exrc file.
4155 * Return FAIL on error, OK otherwise.
4156 */
4157 int
4158makemap(fd, buf)
4159 FILE *fd;
4160 buf_T *buf; /* buffer for local mappings or NULL */
4161{
4162 mapblock_T *mp;
4163 char_u c1, c2;
4164 char_u *p;
4165 char *cmd;
4166 int abbr;
4167 int hash;
4168 int did_cpo = FALSE;
4169 int i;
4170
4171 validate_maphash();
4172
4173 /*
4174 * Do the loop twice: Once for mappings, once for abbreviations.
4175 * Then loop over all map hash lists.
4176 */
4177 for (abbr = 0; abbr < 2; ++abbr)
4178 for (hash = 0; hash < 256; ++hash)
4179 {
4180 if (abbr)
4181 {
4182 if (hash) /* there is only one abbr list */
4183 break;
4184#ifdef FEAT_LOCALMAP
4185 if (buf != NULL)
4186 mp = buf->b_first_abbr;
4187 else
4188#endif
4189 mp = first_abbr;
4190 }
4191 else
4192 {
4193#ifdef FEAT_LOCALMAP
4194 if (buf != NULL)
4195 mp = buf->b_maphash[hash];
4196 else
4197#endif
4198 mp = maphash[hash];
4199 }
4200
4201 for ( ; mp; mp = mp->m_next)
4202 {
4203 /* skip script-local mappings */
4204 if (mp->m_noremap == REMAP_SCRIPT)
4205 continue;
4206
4207 /* skip mappings that contain a <SNR> (script-local thing),
4208 * they probably don't work when loaded again */
4209 for (p = mp->m_str; *p != NUL; ++p)
4210 if (p[0] == K_SPECIAL && p[1] == KS_EXTRA
4211 && p[2] == (int)KE_SNR)
4212 break;
4213 if (*p != NUL)
4214 continue;
4215
4216 c1 = NUL;
4217 c2 = NUL;
4218 if (abbr)
4219 cmd = "abbr";
4220 else
4221 cmd = "map";
4222 switch (mp->m_mode)
4223 {
4224 case NORMAL + VISUAL + OP_PENDING:
4225 break;
4226 case NORMAL:
4227 c1 = 'n';
4228 break;
4229 case VISUAL:
4230 c1 = 'v';
4231 break;
4232 case OP_PENDING:
4233 c1 = 'o';
4234 break;
4235 case NORMAL + VISUAL:
4236 c1 = 'n';
4237 c2 = 'v';
4238 break;
4239 case VISUAL + OP_PENDING:
4240 c1 = 'v';
4241 c2 = 'o';
4242 break;
4243 case NORMAL + OP_PENDING:
4244 c1 = 'n';
4245 c2 = 'o';
4246 break;
4247 case CMDLINE + INSERT:
4248 if (!abbr)
4249 cmd = "map!";
4250 break;
4251 case CMDLINE:
4252 c1 = 'c';
4253 break;
4254 case INSERT:
4255 c1 = 'i';
4256 break;
4257 case LANGMAP:
4258 c1 = 'l';
4259 break;
4260 default:
4261 EMSG(_("E228: makemap: Illegal mode"));
4262 return FAIL;
4263 }
4264 do /* may do this twice if c2 is set */
4265 {
4266 /* When outputting <> form, need to make sure that 'cpo'
4267 * is set to the Vim default. */
4268 if (!did_cpo)
4269 {
4270 if (*mp->m_str == NUL) /* will use <Nop> */
4271 did_cpo = TRUE;
4272 else
4273 for (i = 0; i < 2; ++i)
4274 for (p = (i ? mp->m_str : mp->m_keys); *p; ++p)
4275 if (*p == K_SPECIAL || *p == NL)
4276 did_cpo = TRUE;
4277 if (did_cpo)
4278 {
4279 if (fprintf(fd, "let s:cpo_save=&cpo") < 0
4280 || put_eol(fd) < 0
4281 || fprintf(fd, "set cpo&vim") < 0
4282 || put_eol(fd) < 0)
4283 return FAIL;
4284 }
4285 }
4286 if (c1 && putc(c1, fd) < 0)
4287 return FAIL;
4288 if (mp->m_noremap != REMAP_YES && fprintf(fd, "nore") < 0)
4289 return FAIL;
4290 if (fprintf(fd, cmd) < 0)
4291 return FAIL;
4292 if (buf != NULL && fputs(" <buffer>", fd) < 0)
4293 return FAIL;
4294 if (mp->m_silent && fputs(" <silent>", fd) < 0)
4295 return FAIL;
4296
4297 if ( putc(' ', fd) < 0
4298 || put_escstr(fd, mp->m_keys, 0) == FAIL
4299 || putc(' ', fd) < 0
4300 || put_escstr(fd, mp->m_str, 1) == FAIL
4301 || put_eol(fd) < 0)
4302 return FAIL;
4303 c1 = c2;
4304 c2 = NUL;
4305 }
4306 while (c1);
4307 }
4308 }
4309
4310 if (did_cpo)
4311 if (fprintf(fd, "let &cpo=s:cpo_save") < 0
4312 || put_eol(fd) < 0
4313 || fprintf(fd, "unlet s:cpo_save") < 0
4314 || put_eol(fd) < 0)
4315 return FAIL;
4316 return OK;
4317}
4318
4319/*
4320 * write escape string to file
4321 * "what": 0 for :map lhs, 1 for :map rhs, 2 for :set
4322 *
4323 * return FAIL for failure, OK otherwise
4324 */
4325 int
4326put_escstr(fd, strstart, what)
4327 FILE *fd;
4328 char_u *strstart;
4329 int what;
4330{
4331 char_u *str = strstart;
4332 int c;
4333 int modifiers;
4334
4335 /* :map xx <Nop> */
4336 if (*str == NUL && what == 1)
4337 {
4338 if (fprintf(fd, "<Nop>") < 0)
4339 return FAIL;
4340 return OK;
4341 }
4342
4343 for ( ; *str != NUL; ++str)
4344 {
4345#ifdef FEAT_MBYTE
4346 char_u *p;
4347
4348 /* Check for a multi-byte character, which may contain escaped
4349 * K_SPECIAL and CSI bytes */
4350 p = mb_unescape(&str);
4351 if (p != NULL)
4352 {
4353 while (*p != NUL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00004354 if (fputc(*p++, fd) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355 return FAIL;
4356 --str;
4357 continue;
4358 }
4359#endif
4360
4361 c = *str;
4362 /*
4363 * Special key codes have to be translated to be able to make sense
4364 * when they are read back.
4365 */
4366 if (c == K_SPECIAL && what != 2)
4367 {
4368 modifiers = 0x0;
4369 if (str[1] == KS_MODIFIER)
4370 {
4371 modifiers = str[2];
4372 str += 3;
4373 c = *str;
4374 }
4375 if (c == K_SPECIAL)
4376 {
4377 c = TO_SPECIAL(str[1], str[2]);
4378 str += 2;
4379 }
4380 if (IS_SPECIAL(c) || modifiers) /* special key */
4381 {
4382 if (fprintf(fd, (char *)get_special_key_name(c, modifiers)) < 0)
4383 return FAIL;
4384 continue;
4385 }
4386 }
4387
4388 /*
4389 * A '\n' in a map command should be written as <NL>.
4390 * A '\n' in a set command should be written as \^V^J.
4391 */
4392 if (c == NL)
4393 {
4394 if (what == 2)
4395 {
4396 if (fprintf(fd, IF_EB("\\\026\n", "\\" CTRL_V_STR "\n")) < 0)
4397 return FAIL;
4398 }
4399 else
4400 {
4401 if (fprintf(fd, "<NL>") < 0)
4402 return FAIL;
4403 }
4404 continue;
4405 }
4406
4407 /*
4408 * Some characters have to be escaped with CTRL-V to
4409 * prevent them from misinterpreted in DoOneCmd().
4410 * A space, Tab and '"' has to be escaped with a backslash to
4411 * prevent it to be misinterpreted in do_set().
4412 * A space has to be escaped with a CTRL-V when it's at the start of a
4413 * ":map" rhs.
4414 * A '<' has to be escaped with a CTRL-V to prevent it being
4415 * interpreted as the start of a special key name.
4416 * A space in the lhs of a :map needs a CTRL-V.
4417 */
4418 if (what == 2 && (vim_iswhite(c) || c == '"' || c == '\\'))
4419 {
4420 if (putc('\\', fd) < 0)
4421 return FAIL;
4422 }
4423 else if (c < ' ' || c > '~' || c == '|'
4424 || (what == 0 && c == ' ')
4425 || (what == 1 && str == strstart && c == ' ')
4426 || (what != 2 && c == '<'))
4427 {
4428 if (putc(Ctrl_V, fd) < 0)
4429 return FAIL;
4430 }
4431 if (putc(c, fd) < 0)
4432 return FAIL;
4433 }
4434 return OK;
4435}
4436
4437/*
4438 * Check all mappings for the presence of special key codes.
4439 * Used after ":set term=xxx".
4440 */
4441 void
4442check_map_keycodes()
4443{
4444 mapblock_T *mp;
4445 char_u *p;
4446 int i;
4447 char_u buf[3];
4448 char_u *save_name;
4449 int abbr;
4450 int hash;
4451#ifdef FEAT_LOCALMAP
4452 buf_T *bp;
4453#endif
4454
4455 validate_maphash();
4456 save_name = sourcing_name;
4457 sourcing_name = (char_u *)"mappings"; /* avoids giving error messages */
4458
4459#ifdef FEAT_LOCALMAP
4460 /* This this once for each buffer, and then once for global
4461 * mappings/abbreviations with bp == NULL */
4462 for (bp = firstbuf; ; bp = bp->b_next)
4463 {
4464#endif
4465 /*
4466 * Do the loop twice: Once for mappings, once for abbreviations.
4467 * Then loop over all map hash lists.
4468 */
4469 for (abbr = 0; abbr <= 1; ++abbr)
4470 for (hash = 0; hash < 256; ++hash)
4471 {
4472 if (abbr)
4473 {
4474 if (hash) /* there is only one abbr list */
4475 break;
4476#ifdef FEAT_LOCALMAP
4477 if (bp != NULL)
4478 mp = bp->b_first_abbr;
4479 else
4480#endif
4481 mp = first_abbr;
4482 }
4483 else
4484 {
4485#ifdef FEAT_LOCALMAP
4486 if (bp != NULL)
4487 mp = bp->b_maphash[hash];
4488 else
4489#endif
4490 mp = maphash[hash];
4491 }
4492 for ( ; mp != NULL; mp = mp->m_next)
4493 {
4494 for (i = 0; i <= 1; ++i) /* do this twice */
4495 {
4496 if (i == 0)
4497 p = mp->m_keys; /* once for the "from" part */
4498 else
4499 p = mp->m_str; /* and once for the "to" part */
4500 while (*p)
4501 {
4502 if (*p == K_SPECIAL)
4503 {
4504 ++p;
4505 if (*p < 128) /* for "normal" tcap entries */
4506 {
4507 buf[0] = p[0];
4508 buf[1] = p[1];
4509 buf[2] = NUL;
4510 (void)add_termcap_entry(buf, FALSE);
4511 }
4512 ++p;
4513 }
4514 ++p;
4515 }
4516 }
4517 }
4518 }
4519#ifdef FEAT_LOCALMAP
4520 if (bp == NULL)
4521 break;
4522 }
4523#endif
4524 sourcing_name = save_name;
4525}
4526
4527#ifdef FEAT_EVAL
4528/*
4529 * Check the string "keys" against the lhs of all mappings
4530 * Return pointer to rhs of mapping (mapblock->m_str)
4531 * NULL otherwise
4532 */
4533 char_u *
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004534check_map(keys, mode, exact, ign_mod)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535 char_u *keys;
4536 int mode;
4537 int exact; /* require exact match */
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004538 int ign_mod; /* ignore preceding modifier */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539{
4540 int hash;
4541 int len, minlen;
4542 mapblock_T *mp;
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004543 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544#ifdef FEAT_LOCALMAP
4545 int local;
4546#endif
4547
4548 validate_maphash();
4549
4550 len = (int)STRLEN(keys);
4551#ifdef FEAT_LOCALMAP
4552 for (local = 1; local >= 0; --local)
4553#endif
4554 /* loop over all hash lists */
4555 for (hash = 0; hash < 256; ++hash)
4556 {
4557#ifdef FEAT_LOCALMAP
4558 if (local)
4559 mp = curbuf->b_maphash[hash];
4560 else
4561#endif
4562 mp = maphash[hash];
4563 for ( ; mp != NULL; mp = mp->m_next)
4564 {
4565 /* skip entries with wrong mode, wrong length and not matching
4566 * ones */
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004567 if ((mp->m_mode & mode) && (!exact || mp->m_keylen == len))
4568 {
4569 if (len > mp->m_keylen)
4570 minlen = mp->m_keylen;
4571 else
4572 minlen = len;
4573 s = mp->m_keys;
4574 if (ign_mod && s[0] == K_SPECIAL && s[1] == KS_MODIFIER
4575 && s[2] != NUL)
4576 {
4577 s += 3;
4578 if (len > mp->m_keylen - 3)
4579 minlen = mp->m_keylen - 3;
4580 }
4581 if (STRNCMP(s, keys, minlen) == 0)
4582 return mp->m_str;
4583 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 }
4585 }
4586
4587 return NULL;
4588}
4589#endif
4590
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004591#if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592/*
4593 * Default mappings for some often used keys.
4594 */
4595static struct initmap
4596{
4597 char_u *arg;
4598 int mode;
4599} initmappings[] =
4600{
4601#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
4602 /* Use the Windows (CUA) keybindings. */
4603# ifdef FEAT_GUI
4604 {(char_u *)"<C-PageUp> H", NORMAL+VISUAL},
4605 {(char_u *)"<C-PageUp> <C-O>H",INSERT},
4606 {(char_u *)"<C-PageDown> L$", NORMAL+VISUAL},
4607 {(char_u *)"<C-PageDown> <C-O>L<C-O>$", INSERT},
4608
4609 /* paste, copy and cut */
4610 {(char_u *)"<S-Insert> \"*P", NORMAL},
4611 {(char_u *)"<S-Insert> \"-d\"*P", VISUAL},
4612 {(char_u *)"<S-Insert> <C-R><C-O>*", INSERT+CMDLINE},
4613 {(char_u *)"<C-Insert> \"*y", VISUAL},
4614 {(char_u *)"<S-Del> \"*d", VISUAL},
4615 {(char_u *)"<C-Del> \"*d", VISUAL},
4616 {(char_u *)"<C-X> \"*d", VISUAL},
4617 /* Missing: CTRL-C (cancel) and CTRL-V (block selection) */
4618# else
4619 {(char_u *)"\316\204 H", NORMAL+VISUAL}, /* CTRL-PageUp is "H" */
4620 {(char_u *)"\316\204 \017H",INSERT}, /* CTRL-PageUp is "^OH"*/
4621 {(char_u *)"\316v L$", NORMAL+VISUAL}, /* CTRL-PageDown is "L$" */
4622 {(char_u *)"\316v \017L\017$", INSERT}, /* CTRL-PageDown ="^OL^O$"*/
4623 {(char_u *)"\316w <C-Home>", NORMAL+VISUAL},
4624 {(char_u *)"\316w <C-Home>", INSERT+CMDLINE},
4625 {(char_u *)"\316u <C-End>", NORMAL+VISUAL},
4626 {(char_u *)"\316u <C-End>", INSERT+CMDLINE},
4627
4628 /* paste, copy and cut */
4629# ifdef FEAT_CLIPBOARD
4630# ifdef DJGPP
4631 {(char_u *)"\316\122 \"*P", NORMAL}, /* SHIFT-Insert is "*P */
4632 {(char_u *)"\316\122 \"-d\"*P", VISUAL}, /* SHIFT-Insert is "-d"*P */
4633 {(char_u *)"\316\122 \022\017*", INSERT}, /* SHIFT-Insert is ^R^O* */
4634 {(char_u *)"\316\222 \"*y", VISUAL}, /* CTRL-Insert is "*y */
4635# if 0 /* Shift-Del produces the same code as Del */
4636 {(char_u *)"\316\123 \"*d", VISUAL}, /* SHIFT-Del is "*d */
4637# endif
4638 {(char_u *)"\316\223 \"*d", VISUAL}, /* CTRL-Del is "*d */
4639 {(char_u *)"\030 \"-d", VISUAL}, /* CTRL-X is "-d */
4640# else
4641 {(char_u *)"\316\324 \"*P", NORMAL}, /* SHIFT-Insert is "*P */
4642 {(char_u *)"\316\324 \"-d\"*P", VISUAL}, /* SHIFT-Insert is "-d"*P */
4643 {(char_u *)"\316\324 \022\017*", INSERT}, /* SHIFT-Insert is ^R^O* */
4644 {(char_u *)"\316\325 \"*y", VISUAL}, /* CTRL-Insert is "*y */
4645 {(char_u *)"\316\327 \"*d", VISUAL}, /* SHIFT-Del is "*d */
4646 {(char_u *)"\316\330 \"*d", VISUAL}, /* CTRL-Del is "*d */
4647 {(char_u *)"\030 \"-d", VISUAL}, /* CTRL-X is "-d */
4648# endif
4649# else
4650 {(char_u *)"\316\324 P", NORMAL}, /* SHIFT-Insert is P */
4651 {(char_u *)"\316\324 \"-dP", VISUAL}, /* SHIFT-Insert is "-dP */
4652 {(char_u *)"\316\324 \022\017\"", INSERT}, /* SHIFT-Insert is ^R^O" */
4653 {(char_u *)"\316\325 y", VISUAL}, /* CTRL-Insert is y */
4654 {(char_u *)"\316\327 d", VISUAL}, /* SHIFT-Del is d */
4655 {(char_u *)"\316\330 d", VISUAL}, /* CTRL-Del is d */
4656# endif
4657# endif
4658#endif
4659
4660#if defined(MACOS)
4661 /* Use the Standard MacOS binding. */
4662 /* paste, copy and cut */
4663 {(char_u *)"<D-v> \"*P", NORMAL},
4664 {(char_u *)"<D-v> \"-d\"*P", VISUAL},
4665 {(char_u *)"<D-v> <C-R>*", INSERT+CMDLINE},
4666 {(char_u *)"<D-c> \"*y", VISUAL},
4667 {(char_u *)"<D-x> \"*d", VISUAL},
4668 {(char_u *)"<Backspace> \"-d", VISUAL},
4669#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670};
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004671#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672
4673/*
4674 * Set up default mappings.
4675 */
4676 void
4677init_mappings()
4678{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004679#if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680 int i;
4681
4682 for (i = 0; i < sizeof(initmappings) / sizeof(struct initmap); ++i)
4683 add_map(initmappings[i].arg, initmappings[i].mode);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004684#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004685}
4686
Bram Moolenaar52b4b552005-03-07 23:00:57 +00004687#if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
4688 || defined(FEAT_CMDWIN) || defined(MACOS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689/*
4690 * Add a mapping "map" for mode "mode".
4691 * Need to put string in allocated memory, because do_map() will modify it.
4692 */
4693 void
4694add_map(map, mode)
4695 char_u *map;
4696 int mode;
4697{
4698 char_u *s;
4699 char_u *cpo_save = p_cpo;
4700
4701 p_cpo = (char_u *)""; /* Allow <> notation */
4702 s = vim_strsave(map);
4703 if (s != NULL)
4704 {
4705 (void)do_map(0, s, mode, FALSE);
4706 vim_free(s);
4707 }
4708 p_cpo = cpo_save;
4709}
Bram Moolenaar52b4b552005-03-07 23:00:57 +00004710#endif