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