blob: 7455c778d8b46db0caf22caae0544b86da38c577 [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.
Bram Moolenaarf6f95d92009-11-11 15:23:37 +000025 * - recorded characters: for the "q" command.
Bram Moolenaar071d4272004-06-13 20:20:40 +000026 *
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
Bram Moolenaar0a36fec2014-02-11 15:10:43 +010043static buffheader_T redobuff = {{NULL, {NUL}}, NULL, 0, 0};
44static buffheader_T old_redobuff = {{NULL, {NUL}}, NULL, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +000045#if defined(FEAT_AUTOCMD) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar0a36fec2014-02-11 15:10:43 +010046static buffheader_T save_redobuff = {{NULL, {NUL}}, NULL, 0, 0};
47static buffheader_T save_old_redobuff = {{NULL, {NUL}}, NULL, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +000048#endif
Bram Moolenaar0a36fec2014-02-11 15:10:43 +010049static buffheader_T recordbuff = {{NULL, {NUL}}, NULL, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +000050
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 */
Bram Moolenaar371d5402006-03-20 21:47:49 +000066#define MAP_HASH(mode, c1) (((mode) & (NORMAL + VISUAL + SELECTMODE + OP_PENDING)) ? (c1) : ((c1) ^ 0x80))
Bram Moolenaar071d4272004-06-13 20:20:40 +000067
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
Bram Moolenaarcf8e7d12006-12-05 20:43:17 +000079static int KeyNoremap = 0; /* remapping flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +000080
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
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100115static char_u *get_buffcont __ARGS((buffheader_T *, int));
116static void add_buff __ARGS((buffheader_T *, char_u *, long n));
117static void add_num_buff __ARGS((buffheader_T *, long));
118static void add_char_buff __ARGS((buffheader_T *, int));
119static int read_readbuffers __ARGS((int advance));
120static int read_readbuf __ARGS((buffheader_T *buf, int advance));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121static void start_stuff __ARGS((void));
122static int read_redo __ARGS((int, int));
123static void copy_redo __ARGS((int));
124static void init_typebuf __ARGS((void));
125static void gotchars __ARGS((char_u *, int));
126static void may_sync_undo __ARGS((void));
127static void closescript __ARGS((void));
128static int vgetorpeek __ARGS((int));
129static void map_free __ARGS((mapblock_T **));
130static void validate_maphash __ARGS((void));
131static void showmap __ARGS((mapblock_T *mp, int local));
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000132#ifdef FEAT_EVAL
Bram Moolenaarda9591e2009-09-30 13:17:02 +0000133static char_u *eval_map_expr __ARGS((char_u *str, int c));
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000134#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135
136/*
137 * Free and clear a buffer.
138 */
139 void
140free_buff(buf)
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100141 buffheader_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142{
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100143 buffblock_T *p, *np;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144
145 for (p = buf->bh_first.b_next; p != NULL; p = np)
146 {
147 np = p->b_next;
148 vim_free(p);
149 }
150 buf->bh_first.b_next = NULL;
151}
152
153/*
154 * Return the contents of a buffer as a single string.
155 * K_SPECIAL and CSI in the returned string are escaped.
156 */
157 static char_u *
158get_buffcont(buffer, dozero)
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100159 buffheader_T *buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160 int dozero; /* count == zero is not an error */
161{
162 long_u count = 0;
163 char_u *p = NULL;
164 char_u *p2;
165 char_u *str;
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100166 buffblock_T *bp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167
168 /* compute the total length of the string */
169 for (bp = buffer->bh_first.b_next; bp != NULL; bp = bp->b_next)
170 count += (long_u)STRLEN(bp->b_str);
171
172 if ((count || dozero) && (p = lalloc(count + 1, TRUE)) != NULL)
173 {
174 p2 = p;
175 for (bp = buffer->bh_first.b_next; bp != NULL; bp = bp->b_next)
176 for (str = bp->b_str; *str; )
177 *p2++ = *str++;
178 *p2 = NUL;
179 }
180 return (p);
181}
182
183/*
184 * Return the contents of the record buffer as a single string
185 * and clear the record buffer.
186 * K_SPECIAL and CSI in the returned string are escaped.
187 */
188 char_u *
189get_recorded()
190{
191 char_u *p;
192 size_t len;
193
194 p = get_buffcont(&recordbuff, TRUE);
195 free_buff(&recordbuff);
196
197 /*
198 * Remove the characters that were added the last time, these must be the
199 * (possibly mapped) characters that stopped the recording.
200 */
201 len = STRLEN(p);
202 if ((int)len >= last_recorded_len)
203 {
204 len -= last_recorded_len;
205 p[len] = NUL;
206 }
207
208 /*
209 * When stopping recording from Insert mode with CTRL-O q, also remove the
210 * CTRL-O.
211 */
212 if (len > 0 && restart_edit != 0 && p[len - 1] == Ctrl_O)
213 p[len - 1] = NUL;
214
215 return (p);
216}
217
218/*
219 * Return the contents of the redo buffer as a single string.
220 * K_SPECIAL and CSI in the returned string are escaped.
221 */
222 char_u *
223get_inserted()
224{
Bram Moolenaarf2330482008-06-24 20:19:36 +0000225 return get_buffcont(&redobuff, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226}
227
228/*
Bram Moolenaar4e86cba2007-05-06 11:56:32 +0000229 * Add string "s" after the current block of buffer "buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230 * K_SPECIAL and CSI should have been escaped already.
231 */
232 static void
233add_buff(buf, s, slen)
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100234 buffheader_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235 char_u *s;
236 long slen; /* length of "s" or -1 */
237{
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100238 buffblock_T *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239 long_u len;
240
241 if (slen < 0)
242 slen = (long)STRLEN(s);
243 if (slen == 0) /* don't add empty strings */
244 return;
245
246 if (buf->bh_first.b_next == NULL) /* first add to list */
247 {
248 buf->bh_space = 0;
249 buf->bh_curr = &(buf->bh_first);
250 }
251 else if (buf->bh_curr == NULL) /* buffer has already been read */
252 {
253 EMSG(_("E222: Add to read buffer"));
254 return;
255 }
256 else if (buf->bh_index != 0)
Bram Moolenaarc3b73072007-12-07 16:30:42 +0000257 mch_memmove(buf->bh_first.b_next->b_str,
258 buf->bh_first.b_next->b_str + buf->bh_index,
259 STRLEN(buf->bh_first.b_next->b_str + buf->bh_index) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260 buf->bh_index = 0;
261
262 if (buf->bh_space >= (int)slen)
263 {
264 len = (long_u)STRLEN(buf->bh_curr->b_str);
Bram Moolenaarb6356332005-07-18 21:40:44 +0000265 vim_strncpy(buf->bh_curr->b_str + len, s, (size_t)slen);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266 buf->bh_space -= slen;
267 }
268 else
269 {
270 if (slen < MINIMAL_SIZE)
271 len = MINIMAL_SIZE;
272 else
273 len = slen;
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100274 p = (buffblock_T *)lalloc((long_u)(sizeof(buffblock_T) + len),
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275 TRUE);
276 if (p == NULL)
277 return; /* no space, just forget it */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000278 buf->bh_space = (int)(len - slen);
Bram Moolenaarb6356332005-07-18 21:40:44 +0000279 vim_strncpy(p->b_str, s, (size_t)slen);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280
281 p->b_next = buf->bh_curr->b_next;
282 buf->bh_curr->b_next = p;
283 buf->bh_curr = p;
284 }
285 return;
286}
287
288/*
289 * Add number "n" to buffer "buf".
290 */
291 static void
292add_num_buff(buf, n)
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100293 buffheader_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294 long n;
295{
296 char_u number[32];
297
298 sprintf((char *)number, "%ld", n);
299 add_buff(buf, number, -1L);
300}
301
302/*
303 * Add character 'c' to buffer "buf".
304 * Translates special keys, NUL, CSI, K_SPECIAL and multibyte characters.
305 */
306 static void
307add_char_buff(buf, c)
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100308 buffheader_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309 int c;
310{
311#ifdef FEAT_MBYTE
312 char_u bytes[MB_MAXBYTES + 1];
313 int len;
314 int i;
315#endif
316 char_u temp[4];
317
318#ifdef FEAT_MBYTE
319 if (IS_SPECIAL(c))
320 len = 1;
321 else
322 len = (*mb_char2bytes)(c, bytes);
323 for (i = 0; i < len; ++i)
324 {
325 if (!IS_SPECIAL(c))
326 c = bytes[i];
327#endif
328
329 if (IS_SPECIAL(c) || c == K_SPECIAL || c == NUL)
330 {
331 /* translate special key code into three byte sequence */
332 temp[0] = K_SPECIAL;
333 temp[1] = K_SECOND(c);
334 temp[2] = K_THIRD(c);
335 temp[3] = NUL;
336 }
337#ifdef FEAT_GUI
338 else if (c == CSI)
339 {
340 /* Translate a CSI to a CSI - KS_EXTRA - KE_CSI sequence */
341 temp[0] = CSI;
342 temp[1] = KS_EXTRA;
343 temp[2] = (int)KE_CSI;
344 temp[3] = NUL;
345 }
346#endif
347 else
348 {
349 temp[0] = c;
350 temp[1] = NUL;
351 }
352 add_buff(buf, temp, -1L);
353#ifdef FEAT_MBYTE
354 }
355#endif
356}
357
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100358/* First read ahead buffer. Used for translated commands. */
359static buffheader_T readbuf1 = {{NULL, {NUL}}, NULL, 0, 0};
360
361/* Second read ahead buffer. Used for redo. */
362static buffheader_T readbuf2 = {{NULL, {NUL}}, NULL, 0, 0};
363
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364/*
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100365 * Get one byte from the read buffers. Use readbuf1 one first, use readbuf2
366 * if that one is empty.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 * If advance == TRUE go to the next char.
368 * No translation is done K_SPECIAL and CSI are escaped.
369 */
370 static int
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100371read_readbuffers(advance)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372 int advance;
373{
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100374 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100376 c = read_readbuf(&readbuf1, advance);
377 if (c == NUL)
378 c = read_readbuf(&readbuf2, advance);
379 return c;
380}
381
382 static int
383read_readbuf(buf, advance)
384 buffheader_T *buf;
385 int advance;
386{
387 char_u c;
388 buffblock_T *curr;
389
390 if (buf->bh_first.b_next == NULL) /* buffer is empty */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 return NUL;
392
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100393 curr = buf->bh_first.b_next;
394 c = curr->b_str[buf->bh_index];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395
396 if (advance)
397 {
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100398 if (curr->b_str[++buf->bh_index] == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399 {
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100400 buf->bh_first.b_next = curr->b_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 vim_free(curr);
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100402 buf->bh_index = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403 }
404 }
405 return c;
406}
407
408/*
Bram Moolenaar06811f32014-02-15 16:17:07 +0100409 * Prepare the read buffers for reading (if they contain something).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410 */
411 static void
412start_stuff()
413{
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100414 if (readbuf1.bh_first.b_next != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415 {
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100416 readbuf1.bh_curr = &(readbuf1.bh_first);
417 readbuf1.bh_space = 0;
418 }
419 if (readbuf2.bh_first.b_next != NULL)
420 {
421 readbuf2.bh_curr = &(readbuf2.bh_first);
422 readbuf2.bh_space = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423 }
424}
425
426/*
427 * Return TRUE if the stuff buffer is empty.
428 */
429 int
430stuff_empty()
431{
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100432 return (readbuf1.bh_first.b_next == NULL
433 && readbuf2.bh_first.b_next == NULL);
434}
435
436/*
437 * Return TRUE if readbuf1 is empty. There may still be redo characters in
438 * redbuf2.
439 */
440 int
441readbuf1_empty()
442{
443 return (readbuf1.bh_first.b_next == NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444}
445
446/*
447 * Set a typeahead character that won't be flushed.
448 */
449 void
450typeahead_noflush(c)
451 int c;
452{
453 typeahead_char = c;
454}
455
456/*
457 * Remove the contents of the stuff buffer and the mapped characters in the
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100458 * typeahead buffer (used in case of an error). If "flush_typeahead" is true,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459 * flush all typeahead characters (used when interrupted by a CTRL-C).
460 */
461 void
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100462flush_buffers(flush_typeahead)
463 int flush_typeahead;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464{
465 init_typebuf();
466
467 start_stuff();
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100468 while (read_readbuffers(TRUE) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469 ;
470
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100471 if (flush_typeahead) /* remove all typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472 {
473 /*
474 * We have to get all characters, because we may delete the first part
475 * of an escape sequence.
476 * In an xterm we get one char at a time and we have to get them all.
477 */
478 while (inchar(typebuf.tb_buf, typebuf.tb_buflen - 1, 10L,
479 typebuf.tb_change_cnt) != 0)
480 ;
481 typebuf.tb_off = MAXMAPLEN;
482 typebuf.tb_len = 0;
483 }
Bram Moolenaar687a29c2013-04-15 15:47:12 +0200484 else /* remove mapped characters at the start only */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485 {
486 typebuf.tb_off += typebuf.tb_maplen;
487 typebuf.tb_len -= typebuf.tb_maplen;
488 }
489 typebuf.tb_maplen = 0;
490 typebuf.tb_silent = 0;
491 cmd_silent = FALSE;
492 typebuf.tb_no_abbr_cnt = 0;
493}
494
495/*
496 * The previous contents of the redo buffer is kept in old_redobuffer.
497 * This is used for the CTRL-O <.> command in insert mode.
498 */
499 void
500ResetRedobuff()
501{
502 if (!block_redo)
503 {
504 free_buff(&old_redobuff);
505 old_redobuff = redobuff;
506 redobuff.bh_first.b_next = NULL;
507 }
508}
509
Bram Moolenaarbe094a12012-02-05 01:18:48 +0100510/*
511 * Discard the contents of the redo buffer and restore the previous redo
512 * buffer.
513 */
514 void
515CancelRedo()
516{
517 if (!block_redo)
518 {
519 free_buff(&redobuff);
520 redobuff = old_redobuff;
521 old_redobuff.bh_first.b_next = NULL;
522 start_stuff();
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100523 while (read_readbuffers(TRUE) != NUL)
Bram Moolenaarbe094a12012-02-05 01:18:48 +0100524 ;
525 }
526}
527
Bram Moolenaar071d4272004-06-13 20:20:40 +0000528#if defined(FEAT_AUTOCMD) || defined(FEAT_EVAL) || defined(PROTO)
529/*
530 * Save redobuff and old_redobuff to save_redobuff and save_old_redobuff.
531 * Used before executing autocommands and user functions.
532 */
533static int save_level = 0;
534
535 void
536saveRedobuff()
537{
538 char_u *s;
539
540 if (save_level++ == 0)
541 {
542 save_redobuff = redobuff;
543 redobuff.bh_first.b_next = NULL;
544 save_old_redobuff = old_redobuff;
545 old_redobuff.bh_first.b_next = NULL;
546
547 /* Make a copy, so that ":normal ." in a function works. */
548 s = get_buffcont(&save_redobuff, FALSE);
549 if (s != NULL)
550 {
551 add_buff(&redobuff, s, -1L);
552 vim_free(s);
553 }
554 }
555}
556
557/*
558 * Restore redobuff and old_redobuff from save_redobuff and save_old_redobuff.
559 * Used after executing autocommands and user functions.
560 */
561 void
562restoreRedobuff()
563{
564 if (--save_level == 0)
565 {
566 free_buff(&redobuff);
567 redobuff = save_redobuff;
568 free_buff(&old_redobuff);
569 old_redobuff = save_old_redobuff;
570 }
571}
572#endif
573
574/*
575 * Append "s" to the redo buffer.
576 * K_SPECIAL and CSI should already have been escaped.
577 */
578 void
579AppendToRedobuff(s)
580 char_u *s;
581{
582 if (!block_redo)
583 add_buff(&redobuff, s, -1L);
584}
585
586/*
587 * Append to Redo buffer literally, escaping special characters with CTRL-V.
588 * K_SPECIAL and CSI are escaped as well.
589 */
590 void
Bram Moolenaarebefac62005-12-28 22:39:57 +0000591AppendToRedobuffLit(str, len)
592 char_u *str;
593 int len; /* length of "str" or -1 for up to the NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594{
Bram Moolenaarebefac62005-12-28 22:39:57 +0000595 char_u *s = str;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596 int c;
597 char_u *start;
598
599 if (block_redo)
600 return;
601
Bram Moolenaarebefac62005-12-28 22:39:57 +0000602 while (len < 0 ? *s != NUL : s - str < len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603 {
604 /* Put a string of normal characters in the redo buffer (that's
605 * faster). */
606 start = s;
607 while (*s >= ' '
608#ifndef EBCDIC
609 && *s < DEL /* EBCDIC: all chars above space are normal */
610#endif
Bram Moolenaarebefac62005-12-28 22:39:57 +0000611 && (len < 0 || s - str < len))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612 ++s;
613
614 /* Don't put '0' or '^' as last character, just in case a CTRL-D is
615 * typed next. */
616 if (*s == NUL && (s[-1] == '0' || s[-1] == '^'))
617 --s;
618 if (s > start)
619 add_buff(&redobuff, start, (long)(s - start));
620
Bram Moolenaarebefac62005-12-28 22:39:57 +0000621 if (*s == NUL || (len >= 0 && s - str >= len))
622 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623
Bram Moolenaarebefac62005-12-28 22:39:57 +0000624 /* Handle a special or multibyte character. */
625#ifdef FEAT_MBYTE
626 if (has_mbyte)
627 /* Handle composing chars separately. */
628 c = mb_cptr2char_adv(&s);
629 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630#endif
Bram Moolenaarebefac62005-12-28 22:39:57 +0000631 c = *s++;
632 if (c < ' ' || c == DEL || (*s == NUL && (c == '0' || c == '^')))
633 add_char_buff(&redobuff, Ctrl_V);
634
635 /* CTRL-V '0' must be inserted as CTRL-V 048 (EBCDIC: xf0) */
636 if (*s == NUL && c == '0')
637#ifdef EBCDIC
638 add_buff(&redobuff, (char_u *)"xf0", 3L);
639#else
640 add_buff(&redobuff, (char_u *)"048", 3L);
641#endif
642 else
643 add_char_buff(&redobuff, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 }
645}
646
647/*
648 * Append a character to the redo buffer.
649 * Translates special keys, NUL, CSI, K_SPECIAL and multibyte characters.
650 */
651 void
652AppendCharToRedobuff(c)
653 int c;
654{
655 if (!block_redo)
656 add_char_buff(&redobuff, c);
657}
658
659/*
660 * Append a number to the redo buffer.
661 */
662 void
663AppendNumberToRedobuff(n)
664 long n;
665{
666 if (!block_redo)
667 add_num_buff(&redobuff, n);
668}
669
670/*
671 * Append string "s" to the stuff buffer.
672 * CSI and K_SPECIAL must already have been escaped.
673 */
674 void
675stuffReadbuff(s)
676 char_u *s;
677{
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100678 add_buff(&readbuf1, s, -1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679}
680
681 void
682stuffReadbuffLen(s, len)
683 char_u *s;
684 long len;
685{
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100686 add_buff(&readbuf1, s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687}
688
689#if defined(FEAT_EVAL) || defined(PROTO)
690/*
691 * Stuff "s" into the stuff buffer, leaving special key codes unmodified and
692 * escaping other K_SPECIAL and CSI bytes.
Bram Moolenaar877b97b2011-04-28 17:30:09 +0200693 * Change CR, LF and ESC into a space.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 */
695 void
696stuffReadbuffSpec(s)
697 char_u *s;
698{
Bram Moolenaar877b97b2011-04-28 17:30:09 +0200699 int c;
700
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701 while (*s != NUL)
702 {
703 if (*s == K_SPECIAL && s[1] != NUL && s[2] != NUL)
704 {
705 /* Insert special key literally. */
706 stuffReadbuffLen(s, 3L);
707 s += 3;
708 }
709 else
Bram Moolenaar877b97b2011-04-28 17:30:09 +0200710 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711#ifdef FEAT_MBYTE
Bram Moolenaar877b97b2011-04-28 17:30:09 +0200712 c = mb_ptr2char_adv(&s);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713#else
Bram Moolenaar877b97b2011-04-28 17:30:09 +0200714 c = *s++;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715#endif
Bram Moolenaar877b97b2011-04-28 17:30:09 +0200716 if (c == CAR || c == NL || c == ESC)
717 c = ' ';
718 stuffcharReadbuff(c);
719 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000720 }
721}
722#endif
723
724/*
725 * Append a character to the stuff buffer.
726 * Translates special keys, NUL, CSI, K_SPECIAL and multibyte characters.
727 */
728 void
729stuffcharReadbuff(c)
730 int c;
731{
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100732 add_char_buff(&readbuf1, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733}
734
735/*
736 * Append a number to the stuff buffer.
737 */
738 void
739stuffnumReadbuff(n)
740 long n;
741{
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100742 add_num_buff(&readbuf1, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743}
744
745/*
746 * Read a character from the redo buffer. Translates K_SPECIAL, CSI and
747 * multibyte characters.
748 * The redo buffer is left as it is.
Bram Moolenaarbe094a12012-02-05 01:18:48 +0100749 * If init is TRUE, prepare for redo, return FAIL if nothing to redo, OK
750 * otherwise.
751 * If old is TRUE, use old_redobuff instead of redobuff.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 */
753 static int
754read_redo(init, old_redo)
755 int init;
756 int old_redo;
757{
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100758 static buffblock_T *bp;
759 static char_u *p;
760 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761#ifdef FEAT_MBYTE
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100762 int n;
763 char_u buf[MB_MAXBYTES + 1];
764 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765#endif
766
767 if (init)
768 {
769 if (old_redo)
770 bp = old_redobuff.bh_first.b_next;
771 else
772 bp = redobuff.bh_first.b_next;
773 if (bp == NULL)
774 return FAIL;
775 p = bp->b_str;
776 return OK;
777 }
778 if ((c = *p) != NUL)
779 {
780 /* Reverse the conversion done by add_char_buff() */
781#ifdef FEAT_MBYTE
782 /* For a multi-byte character get all the bytes and return the
783 * converted character. */
784 if (has_mbyte && (c != K_SPECIAL || p[1] == KS_SPECIAL))
785 n = MB_BYTE2LEN_CHECK(c);
786 else
787 n = 1;
788 for (i = 0; ; ++i)
789#endif
790 {
791 if (c == K_SPECIAL) /* special key or escaped K_SPECIAL */
792 {
793 c = TO_SPECIAL(p[1], p[2]);
794 p += 2;
795 }
796#ifdef FEAT_GUI
797 if (c == CSI) /* escaped CSI */
798 p += 2;
799#endif
800 if (*++p == NUL && bp->b_next != NULL)
801 {
802 bp = bp->b_next;
803 p = bp->b_str;
804 }
805#ifdef FEAT_MBYTE
806 buf[i] = c;
807 if (i == n - 1) /* last byte of a character */
808 {
809 if (n != 1)
810 c = (*mb_ptr2char)(buf);
811 break;
812 }
813 c = *p;
814 if (c == NUL) /* cannot happen? */
815 break;
816#endif
817 }
818 }
819
820 return c;
821}
822
823/*
824 * Copy the rest of the redo buffer into the stuff buffer (in a slow way).
825 * If old_redo is TRUE, use old_redobuff instead of redobuff.
826 * The escaped K_SPECIAL and CSI are copied without translation.
827 */
828 static void
829copy_redo(old_redo)
830 int old_redo;
831{
832 int c;
833
834 while ((c = read_redo(FALSE, old_redo)) != NUL)
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100835 add_char_buff(&readbuf2, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836}
837
838/*
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100839 * Stuff the redo buffer into readbuf2.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 * Insert the redo count into the command.
841 * If "old_redo" is TRUE, the last but one command is repeated
842 * instead of the last command (inserting text). This is used for
843 * CTRL-O <.> in insert mode
844 *
845 * return FAIL for failure, OK otherwise
846 */
847 int
848start_redo(count, old_redo)
849 long count;
850 int old_redo;
851{
852 int c;
853
854 /* init the pointers; return if nothing to redo */
855 if (read_redo(TRUE, old_redo) == FAIL)
856 return FAIL;
857
858 c = read_redo(FALSE, old_redo);
859
860 /* copy the buffer name, if present */
861 if (c == '"')
862 {
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100863 add_buff(&readbuf2, (char_u *)"\"", 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864 c = read_redo(FALSE, old_redo);
865
866 /* if a numbered buffer is used, increment the number */
867 if (c >= '1' && c < '9')
868 ++c;
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100869 add_char_buff(&readbuf2, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 c = read_redo(FALSE, old_redo);
871 }
872
873#ifdef FEAT_VISUAL
874 if (c == 'v') /* redo Visual */
875 {
876 VIsual = curwin->w_cursor;
877 VIsual_active = TRUE;
878 VIsual_select = FALSE;
879 VIsual_reselect = TRUE;
880 redo_VIsual_busy = TRUE;
881 c = read_redo(FALSE, old_redo);
882 }
883#endif
884
885 /* try to enter the count (in place of a previous count) */
886 if (count)
887 {
888 while (VIM_ISDIGIT(c)) /* skip "old" count */
889 c = read_redo(FALSE, old_redo);
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100890 add_num_buff(&readbuf2, count);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 }
892
893 /* copy from the redo buffer into the stuff buffer */
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100894 add_char_buff(&readbuf2, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 copy_redo(old_redo);
896 return OK;
897}
898
899/*
900 * Repeat the last insert (R, o, O, a, A, i or I command) by stuffing
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100901 * the redo buffer into readbuf2.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902 * return FAIL for failure, OK otherwise
903 */
904 int
905start_redo_ins()
906{
907 int c;
908
909 if (read_redo(TRUE, FALSE) == FAIL)
910 return FAIL;
911 start_stuff();
912
913 /* skip the count and the command character */
914 while ((c = read_redo(FALSE, FALSE)) != NUL)
915 {
916 if (vim_strchr((char_u *)"AaIiRrOo", c) != NULL)
917 {
918 if (c == 'O' || c == 'o')
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100919 add_buff(&readbuf2, NL_STR, -1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 break;
921 }
922 }
923
924 /* copy the typed text from the redo buffer into the stuff buffer */
925 copy_redo(FALSE);
926 block_redo = TRUE;
927 return OK;
928}
929
930 void
931stop_redo_ins()
932{
933 block_redo = FALSE;
934}
935
936/*
937 * Initialize typebuf.tb_buf to point to typebuf_init.
938 * alloc() cannot be used here: In out-of-memory situations it would
939 * be impossible to type anything.
940 */
941 static void
942init_typebuf()
943{
944 if (typebuf.tb_buf == NULL)
945 {
946 typebuf.tb_buf = typebuf_init;
947 typebuf.tb_noremap = noremapbuf_init;
948 typebuf.tb_buflen = TYPELEN_INIT;
949 typebuf.tb_len = 0;
950 typebuf.tb_off = 0;
951 typebuf.tb_change_cnt = 1;
952 }
953}
954
955/*
956 * insert a string in position 'offset' in the typeahead buffer (for "@r"
957 * and ":normal" command, vgetorpeek() and check_termcode())
958 *
959 * If noremap is REMAP_YES, new string can be mapped again.
960 * If noremap is REMAP_NONE, new string cannot be mapped again.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000961 * If noremap is REMAP_SKIP, fist char of new string cannot be mapped again,
962 * but abbreviations are allowed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 * If noremap is REMAP_SCRIPT, new string cannot be mapped again, except for
964 * script-local mappings.
965 * If noremap is > 0, that many characters of the new string cannot be mapped.
966 *
967 * If nottyped is TRUE, the string does not return KeyTyped (don't use when
968 * offset is non-zero!).
969 *
970 * If silent is TRUE, cmd_silent is set when the characters are obtained.
971 *
972 * return FAIL for failure, OK otherwise
973 */
974 int
975ins_typebuf(str, noremap, offset, nottyped, silent)
976 char_u *str;
977 int noremap;
978 int offset;
979 int nottyped;
980 int silent;
981{
982 char_u *s1, *s2;
983 int newlen;
984 int addlen;
985 int i;
986 int newoff;
987 int val;
988 int nrm;
989
990 init_typebuf();
991 if (++typebuf.tb_change_cnt == 0)
992 typebuf.tb_change_cnt = 1;
993
994 addlen = (int)STRLEN(str);
Bram Moolenaar4e86cba2007-05-06 11:56:32 +0000995
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 /*
997 * Easy case: there is room in front of typebuf.tb_buf[typebuf.tb_off]
998 */
999 if (offset == 0 && addlen <= typebuf.tb_off)
1000 {
1001 typebuf.tb_off -= addlen;
1002 mch_memmove(typebuf.tb_buf + typebuf.tb_off, str, (size_t)addlen);
1003 }
Bram Moolenaar4e86cba2007-05-06 11:56:32 +00001004
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 /*
Bram Moolenaar4e86cba2007-05-06 11:56:32 +00001006 * Need to allocate a new buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 * In typebuf.tb_buf there must always be room for 3 * MAXMAPLEN + 4
1008 * characters. We add some extra room to avoid having to allocate too
1009 * often.
1010 */
1011 else
1012 {
1013 newoff = MAXMAPLEN + 4;
1014 newlen = typebuf.tb_len + addlen + newoff + 4 * (MAXMAPLEN + 4);
1015 if (newlen < 0) /* string is getting too long */
1016 {
1017 EMSG(_(e_toocompl)); /* also calls flush_buffers */
1018 setcursor();
1019 return FAIL;
1020 }
1021 s1 = alloc(newlen);
1022 if (s1 == NULL) /* out of memory */
1023 return FAIL;
1024 s2 = alloc(newlen);
1025 if (s2 == NULL) /* out of memory */
1026 {
1027 vim_free(s1);
1028 return FAIL;
1029 }
1030 typebuf.tb_buflen = newlen;
1031
1032 /* copy the old chars, before the insertion point */
1033 mch_memmove(s1 + newoff, typebuf.tb_buf + typebuf.tb_off,
1034 (size_t)offset);
1035 /* copy the new chars */
1036 mch_memmove(s1 + newoff + offset, str, (size_t)addlen);
1037 /* copy the old chars, after the insertion point, including the NUL at
1038 * the end */
1039 mch_memmove(s1 + newoff + offset + addlen,
1040 typebuf.tb_buf + typebuf.tb_off + offset,
1041 (size_t)(typebuf.tb_len - offset + 1));
1042 if (typebuf.tb_buf != typebuf_init)
1043 vim_free(typebuf.tb_buf);
1044 typebuf.tb_buf = s1;
1045
1046 mch_memmove(s2 + newoff, typebuf.tb_noremap + typebuf.tb_off,
1047 (size_t)offset);
1048 mch_memmove(s2 + newoff + offset + addlen,
1049 typebuf.tb_noremap + typebuf.tb_off + offset,
1050 (size_t)(typebuf.tb_len - offset));
1051 if (typebuf.tb_noremap != noremapbuf_init)
1052 vim_free(typebuf.tb_noremap);
1053 typebuf.tb_noremap = s2;
1054
1055 typebuf.tb_off = newoff;
1056 }
1057 typebuf.tb_len += addlen;
1058
1059 /* If noremap == REMAP_SCRIPT: do remap script-local mappings. */
1060 if (noremap == REMAP_SCRIPT)
1061 val = RM_SCRIPT;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001062 else if (noremap == REMAP_SKIP)
1063 val = RM_ABBR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 else
1065 val = RM_NONE;
1066
1067 /*
1068 * Adjust typebuf.tb_noremap[] for the new characters:
1069 * If noremap == REMAP_NONE or REMAP_SCRIPT: new characters are
1070 * (sometimes) not remappable
1071 * If noremap == REMAP_YES: all the new characters are mappable
1072 * If noremap > 0: "noremap" characters are not remappable, the rest
1073 * mappable
1074 */
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001075 if (noremap == REMAP_SKIP)
1076 nrm = 1;
1077 else if (noremap < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 nrm = addlen;
1079 else
1080 nrm = noremap;
1081 for (i = 0; i < addlen; ++i)
1082 typebuf.tb_noremap[typebuf.tb_off + i + offset] =
1083 (--nrm >= 0) ? val : RM_YES;
1084
1085 /* tb_maplen and tb_silent only remember the length of mapped and/or
1086 * silent mappings at the start of the buffer, assuming that a mapped
1087 * sequence doesn't result in typed characters. */
1088 if (nottyped || typebuf.tb_maplen > offset)
1089 typebuf.tb_maplen += addlen;
1090 if (silent || typebuf.tb_silent > offset)
1091 {
1092 typebuf.tb_silent += addlen;
1093 cmd_silent = TRUE;
1094 }
1095 if (typebuf.tb_no_abbr_cnt && offset == 0) /* and not used for abbrev.s */
1096 typebuf.tb_no_abbr_cnt += addlen;
1097
1098 return OK;
1099}
1100
1101/*
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00001102 * Put character "c" back into the typeahead buffer.
1103 * Can be used for a character obtained by vgetc() that needs to be put back.
Bram Moolenaarcf8e7d12006-12-05 20:43:17 +00001104 * Uses cmd_silent, KeyTyped and KeyNoremap to restore the flags belonging to
1105 * the char.
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00001106 */
1107 void
1108ins_char_typebuf(c)
1109 int c;
1110{
1111#ifdef FEAT_MBYTE
Bram Moolenaar9a920d82012-06-01 15:21:02 +02001112 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00001113#else
1114 char_u buf[4];
1115#endif
1116 if (IS_SPECIAL(c))
1117 {
1118 buf[0] = K_SPECIAL;
1119 buf[1] = K_SECOND(c);
1120 buf[2] = K_THIRD(c);
1121 buf[3] = NUL;
1122 }
1123 else
1124 {
1125#ifdef FEAT_MBYTE
1126 buf[(*mb_char2bytes)(c, buf)] = NUL;
1127#else
1128 buf[0] = c;
1129 buf[1] = NUL;
1130#endif
1131 }
Bram Moolenaarcf8e7d12006-12-05 20:43:17 +00001132 (void)ins_typebuf(buf, KeyNoremap, 0, !KeyTyped, cmd_silent);
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00001133}
1134
1135/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 * Return TRUE if the typeahead buffer was changed (while waiting for a
Bram Moolenaar4a85b412006-04-23 22:40:29 +00001137 * character to arrive). Happens when a message was received from a client or
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00001138 * from feedkeys().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139 * But check in a more generic way to avoid trouble: When "typebuf.tb_buf"
1140 * changed it was reallocated and the old pointer can no longer be used.
1141 * Or "typebuf.tb_off" may have been changed and we would overwrite characters
1142 * that was just added.
1143 */
1144 int
1145typebuf_changed(tb_change_cnt)
1146 int tb_change_cnt; /* old value of typebuf.tb_change_cnt */
1147{
1148 return (tb_change_cnt != 0 && (typebuf.tb_change_cnt != tb_change_cnt
Bram Moolenaar4a85b412006-04-23 22:40:29 +00001149#if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
1150 || typebuf_was_filled
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151#endif
1152 ));
1153}
1154
1155/*
1156 * Return TRUE if there are no characters in the typeahead buffer that have
1157 * not been typed (result from a mapping or come from ":normal").
1158 */
1159 int
1160typebuf_typed()
1161{
1162 return typebuf.tb_maplen == 0;
1163}
1164
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001165#if defined(FEAT_VISUAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166/*
1167 * Return the number of characters that are mapped (or not typed).
1168 */
1169 int
1170typebuf_maplen()
1171{
1172 return typebuf.tb_maplen;
1173}
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001174#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175
1176/*
1177 * remove "len" characters from typebuf.tb_buf[typebuf.tb_off + offset]
1178 */
1179 void
1180del_typebuf(len, offset)
1181 int len;
1182 int offset;
1183{
1184 int i;
1185
1186 if (len == 0)
1187 return; /* nothing to do */
1188
1189 typebuf.tb_len -= len;
1190
1191 /*
1192 * Easy case: Just increase typebuf.tb_off.
1193 */
1194 if (offset == 0 && typebuf.tb_buflen - (typebuf.tb_off + len)
1195 >= 3 * MAXMAPLEN + 3)
1196 typebuf.tb_off += len;
1197 /*
1198 * Have to move the characters in typebuf.tb_buf[] and typebuf.tb_noremap[]
1199 */
1200 else
1201 {
1202 i = typebuf.tb_off + offset;
1203 /*
1204 * Leave some extra room at the end to avoid reallocation.
1205 */
1206 if (typebuf.tb_off > MAXMAPLEN)
1207 {
1208 mch_memmove(typebuf.tb_buf + MAXMAPLEN,
1209 typebuf.tb_buf + typebuf.tb_off, (size_t)offset);
1210 mch_memmove(typebuf.tb_noremap + MAXMAPLEN,
1211 typebuf.tb_noremap + typebuf.tb_off, (size_t)offset);
1212 typebuf.tb_off = MAXMAPLEN;
1213 }
1214 /* adjust typebuf.tb_buf (include the NUL at the end) */
1215 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset,
1216 typebuf.tb_buf + i + len,
1217 (size_t)(typebuf.tb_len - offset + 1));
1218 /* adjust typebuf.tb_noremap[] */
1219 mch_memmove(typebuf.tb_noremap + typebuf.tb_off + offset,
1220 typebuf.tb_noremap + i + len,
1221 (size_t)(typebuf.tb_len - offset));
1222 }
1223
1224 if (typebuf.tb_maplen > offset) /* adjust tb_maplen */
1225 {
1226 if (typebuf.tb_maplen < offset + len)
1227 typebuf.tb_maplen = offset;
1228 else
1229 typebuf.tb_maplen -= len;
1230 }
1231 if (typebuf.tb_silent > offset) /* adjust tb_silent */
1232 {
1233 if (typebuf.tb_silent < offset + len)
1234 typebuf.tb_silent = offset;
1235 else
1236 typebuf.tb_silent -= len;
1237 }
1238 if (typebuf.tb_no_abbr_cnt > offset) /* adjust tb_no_abbr_cnt */
1239 {
1240 if (typebuf.tb_no_abbr_cnt < offset + len)
1241 typebuf.tb_no_abbr_cnt = offset;
1242 else
1243 typebuf.tb_no_abbr_cnt -= len;
1244 }
1245
Bram Moolenaar4a85b412006-04-23 22:40:29 +00001246#if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00001247 /* Reset the flag that text received from a client or from feedkeys()
Bram Moolenaar4a85b412006-04-23 22:40:29 +00001248 * was inserted in the typeahead buffer. */
1249 typebuf_was_filled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250#endif
1251 if (++typebuf.tb_change_cnt == 0)
1252 typebuf.tb_change_cnt = 1;
1253}
1254
1255/*
1256 * Write typed characters to script file.
1257 * If recording is on put the character in the recordbuffer.
1258 */
1259 static void
Bram Moolenaar4e86cba2007-05-06 11:56:32 +00001260gotchars(chars, len)
1261 char_u *chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 int len;
1263{
Bram Moolenaar4e86cba2007-05-06 11:56:32 +00001264 char_u *s = chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 int c;
1266 char_u buf[2];
Bram Moolenaar4e86cba2007-05-06 11:56:32 +00001267 int todo = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268
1269 /* remember how many chars were last recorded */
1270 if (Recording)
1271 last_recorded_len += len;
1272
1273 buf[1] = NUL;
Bram Moolenaar4e86cba2007-05-06 11:56:32 +00001274 while (todo--)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 {
1276 /* Handle one byte at a time; no translation to be done. */
1277 c = *s++;
1278 updatescript(c);
1279
1280 if (Recording)
1281 {
1282 buf[0] = c;
1283 add_buff(&recordbuff, buf, 1L);
1284 }
1285 }
1286 may_sync_undo();
1287
1288#ifdef FEAT_EVAL
1289 /* output "debug mode" message next time in debug mode */
1290 debug_did_msg = FALSE;
1291#endif
1292
1293 /* Since characters have been typed, consider the following to be in
1294 * another mapping. Search string will be kept in history. */
1295 ++maptick;
1296}
1297
1298/*
1299 * Sync undo. Called when typed characters are obtained from the typeahead
1300 * buffer, or when a menu is used.
1301 * Do not sync:
1302 * - In Insert mode, unless cursor key has been used.
1303 * - While reading a script file.
1304 * - When no_u_sync is non-zero.
1305 */
1306 static void
1307may_sync_undo()
1308{
1309 if ((!(State & (INSERT + CMDLINE)) || arrow_used)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001310 && scriptin[curscript] == NULL)
1311 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312}
1313
1314/*
1315 * Make "typebuf" empty and allocate new buffers.
1316 * Returns FAIL when out of memory.
1317 */
1318 int
1319alloc_typebuf()
1320{
1321 typebuf.tb_buf = alloc(TYPELEN_INIT);
1322 typebuf.tb_noremap = alloc(TYPELEN_INIT);
1323 if (typebuf.tb_buf == NULL || typebuf.tb_noremap == NULL)
1324 {
1325 free_typebuf();
1326 return FAIL;
1327 }
1328 typebuf.tb_buflen = TYPELEN_INIT;
1329 typebuf.tb_off = 0;
1330 typebuf.tb_len = 0;
1331 typebuf.tb_maplen = 0;
1332 typebuf.tb_silent = 0;
1333 typebuf.tb_no_abbr_cnt = 0;
1334 if (++typebuf.tb_change_cnt == 0)
1335 typebuf.tb_change_cnt = 1;
1336 return OK;
1337}
1338
1339/*
1340 * Free the buffers of "typebuf".
1341 */
1342 void
1343free_typebuf()
1344{
Bram Moolenaaree3f7a52008-01-01 13:17:56 +00001345 if (typebuf.tb_buf == typebuf_init)
1346 EMSG2(_(e_intern2), "Free typebuf 1");
1347 else
1348 vim_free(typebuf.tb_buf);
Bram Moolenaarf6f95d92009-11-11 15:23:37 +00001349 if (typebuf.tb_noremap == noremapbuf_init)
Bram Moolenaaree3f7a52008-01-01 13:17:56 +00001350 EMSG2(_(e_intern2), "Free typebuf 2");
1351 else
1352 vim_free(typebuf.tb_noremap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353}
1354
1355/*
1356 * When doing ":so! file", the current typeahead needs to be saved, and
1357 * restored when "file" has been read completely.
1358 */
1359static typebuf_T saved_typebuf[NSCRIPT];
1360
1361 int
1362save_typebuf()
1363{
1364 init_typebuf();
1365 saved_typebuf[curscript] = typebuf;
1366 /* If out of memory: restore typebuf and close file. */
1367 if (alloc_typebuf() == FAIL)
1368 {
1369 closescript();
1370 return FAIL;
1371 }
1372 return OK;
1373}
1374
Bram Moolenaar13df0fe2009-07-09 16:24:19 +00001375static int old_char = -1; /* character put back by vungetc() */
1376static int old_mod_mask; /* mod_mask for ungotten character */
Bram Moolenaarb8978712013-03-16 21:42:16 +01001377#ifdef FEAT_MOUSE
1378static int old_mouse_row; /* mouse_row related to old_char */
1379static int old_mouse_col; /* mouse_col related to old_char */
1380#endif
Bram Moolenaar13df0fe2009-07-09 16:24:19 +00001381
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382#if defined(FEAT_EVAL) || defined(FEAT_EX_EXTRA) || defined(PROTO)
1383
1384/*
1385 * Save all three kinds of typeahead, so that the user must type at a prompt.
1386 */
1387 void
1388save_typeahead(tp)
1389 tasave_T *tp;
1390{
1391 tp->save_typebuf = typebuf;
1392 tp->typebuf_valid = (alloc_typebuf() == OK);
1393 if (!tp->typebuf_valid)
1394 typebuf = tp->save_typebuf;
1395
Bram Moolenaar13df0fe2009-07-09 16:24:19 +00001396 tp->old_char = old_char;
1397 tp->old_mod_mask = old_mod_mask;
1398 old_char = -1;
1399
Bram Moolenaar0a36fec2014-02-11 15:10:43 +01001400 tp->save_readbuf1 = readbuf1;
1401 readbuf1.bh_first.b_next = NULL;
1402 tp->save_readbuf2 = readbuf2;
1403 readbuf2.bh_first.b_next = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404# ifdef USE_INPUT_BUF
1405 tp->save_inputbuf = get_input_buf();
1406# endif
1407}
1408
1409/*
1410 * Restore the typeahead to what it was before calling save_typeahead().
1411 * The allocated memory is freed, can only be called once!
1412 */
1413 void
1414restore_typeahead(tp)
1415 tasave_T *tp;
1416{
1417 if (tp->typebuf_valid)
1418 {
1419 free_typebuf();
1420 typebuf = tp->save_typebuf;
1421 }
1422
Bram Moolenaar13df0fe2009-07-09 16:24:19 +00001423 old_char = tp->old_char;
1424 old_mod_mask = tp->old_mod_mask;
1425
Bram Moolenaar0a36fec2014-02-11 15:10:43 +01001426 free_buff(&readbuf1);
1427 readbuf1 = tp->save_readbuf1;
1428 free_buff(&readbuf2);
1429 readbuf2 = tp->save_readbuf2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430# ifdef USE_INPUT_BUF
1431 set_input_buf(tp->save_inputbuf);
1432# endif
1433}
1434#endif
1435
1436/*
1437 * Open a new script file for the ":source!" command.
1438 */
1439 void
1440openscript(name, directly)
1441 char_u *name;
1442 int directly; /* when TRUE execute directly */
1443{
1444 if (curscript + 1 == NSCRIPT)
1445 {
1446 EMSG(_(e_nesting));
1447 return;
1448 }
Bram Moolenaaree3f7a52008-01-01 13:17:56 +00001449#ifdef FEAT_EVAL
1450 if (ignore_script)
1451 /* Not reading from script, also don't open one. Warning message? */
1452 return;
1453#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454
1455 if (scriptin[curscript] != NULL) /* already reading script */
1456 ++curscript;
1457 /* use NameBuff for expanded name */
1458 expand_env(name, NameBuff, MAXPATHL);
1459 if ((scriptin[curscript] = mch_fopen((char *)NameBuff, READBIN)) == NULL)
1460 {
1461 EMSG2(_(e_notopen), name);
1462 if (curscript)
1463 --curscript;
1464 return;
1465 }
1466 if (save_typebuf() == FAIL)
1467 return;
1468
1469 /*
1470 * Execute the commands from the file right now when using ":source!"
1471 * after ":global" or ":argdo" or in a loop. Also when another command
1472 * follows. This means the display won't be updated. Don't do this
1473 * always, "make test" would fail.
1474 */
1475 if (directly)
1476 {
1477 oparg_T oa;
1478 int oldcurscript;
1479 int save_State = State;
1480 int save_restart_edit = restart_edit;
1481 int save_insertmode = p_im;
1482 int save_finish_op = finish_op;
1483 int save_msg_scroll = msg_scroll;
1484
1485 State = NORMAL;
1486 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
1487 restart_edit = 0; /* don't go to Insert mode */
1488 p_im = FALSE; /* don't use 'insertmode' */
1489 clear_oparg(&oa);
1490 finish_op = FALSE;
1491
1492 oldcurscript = curscript;
1493 do
1494 {
1495 update_topline_cursor(); /* update cursor position and topline */
1496 normal_cmd(&oa, FALSE); /* execute one command */
1497 vpeekc(); /* check for end of file */
1498 }
1499 while (scriptin[oldcurscript] != NULL);
1500
1501 State = save_State;
1502 msg_scroll = save_msg_scroll;
1503 restart_edit = save_restart_edit;
1504 p_im = save_insertmode;
1505 finish_op = save_finish_op;
1506 }
1507}
1508
1509/*
1510 * Close the currently active input script.
1511 */
1512 static void
1513closescript()
1514{
1515 free_typebuf();
1516 typebuf = saved_typebuf[curscript];
1517
1518 fclose(scriptin[curscript]);
1519 scriptin[curscript] = NULL;
1520 if (curscript > 0)
1521 --curscript;
1522}
1523
Bram Moolenaarea408852005-06-25 22:49:46 +00001524#if defined(EXITFREE) || defined(PROTO)
1525 void
1526close_all_scripts()
1527{
1528 while (scriptin[0] != NULL)
1529 closescript();
1530}
1531#endif
1532
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533#if defined(FEAT_INS_EXPAND) || defined(PROTO)
1534/*
1535 * Return TRUE when reading keys from a script file.
1536 */
1537 int
1538using_script()
1539{
1540 return scriptin[curscript] != NULL;
1541}
1542#endif
1543
1544/*
Bram Moolenaar238f4fa2005-06-27 22:25:50 +00001545 * This function is called just before doing a blocking wait. Thus after
1546 * waiting 'updatetime' for a character to arrive.
1547 */
1548 void
1549before_blocking()
1550{
1551 updatescript(0);
1552#ifdef FEAT_EVAL
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001553 if (may_garbage_collect)
1554 garbage_collect();
Bram Moolenaar238f4fa2005-06-27 22:25:50 +00001555#endif
1556}
1557
1558/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 * updatescipt() is called when a character can be written into the script file
1560 * or when we have waited some time for a character (c == 0)
1561 *
1562 * All the changed memfiles are synced if c == 0 or when the number of typed
1563 * characters reaches 'updatecount' and 'updatecount' is non-zero.
1564 */
1565 void
1566updatescript(c)
1567 int c;
1568{
1569 static int count = 0;
1570
1571 if (c && scriptout)
1572 putc(c, scriptout);
1573 if (c == 0 || (p_uc > 0 && ++count >= p_uc))
1574 {
1575 ml_sync_all(c == 0, TRUE);
1576 count = 0;
1577 }
1578}
1579
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580/*
1581 * Get the next input character.
1582 * Can return a special key or a multi-byte character.
1583 * Can return NUL when called recursively, use safe_vgetc() if that's not
1584 * wanted.
1585 * This translates escaped K_SPECIAL and CSI bytes to a K_SPECIAL or CSI byte.
1586 * Collects the bytes of a multibyte character into the whole character.
Bram Moolenaarf6f95d92009-11-11 15:23:37 +00001587 * Returns the modifiers in the global "mod_mask".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 */
1589 int
1590vgetc()
1591{
1592 int c, c2;
1593#ifdef FEAT_MBYTE
1594 int n;
Bram Moolenaar9a920d82012-06-01 15:21:02 +02001595 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 int i;
1597#endif
1598
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001599#ifdef FEAT_EVAL
1600 /* Do garbage collection when garbagecollect() was called previously and
1601 * we are now at the toplevel. */
1602 if (may_garbage_collect && want_garbage_collect)
1603 garbage_collect();
1604#endif
1605
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 /*
1607 * If a character was put back with vungetc, it was already processed.
1608 * Return it directly.
1609 */
1610 if (old_char != -1)
1611 {
1612 c = old_char;
1613 old_char = -1;
1614 mod_mask = old_mod_mask;
Bram Moolenaarb8978712013-03-16 21:42:16 +01001615#ifdef FEAT_MOUSE
1616 mouse_row = old_mouse_row;
1617 mouse_col = old_mouse_col;
1618#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 }
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001620 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 {
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001622 mod_mask = 0x0;
1623 last_recorded_len = 0;
1624 for (;;) /* this is done twice if there are modifiers */
1625 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626 if (mod_mask) /* no mapping after modifier has been read */
1627 {
1628 ++no_mapping;
1629 ++allow_keys;
1630 }
1631 c = vgetorpeek(TRUE);
1632 if (mod_mask)
1633 {
1634 --no_mapping;
1635 --allow_keys;
1636 }
1637
1638 /* Get two extra bytes for special keys */
1639 if (c == K_SPECIAL
1640#ifdef FEAT_GUI
1641 || c == CSI
1642#endif
1643 )
1644 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001645 int save_allow_keys = allow_keys;
1646
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 ++no_mapping;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001648 allow_keys = 0; /* make sure BS is not found */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 c2 = vgetorpeek(TRUE); /* no mapping for these chars */
1650 c = vgetorpeek(TRUE);
1651 --no_mapping;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001652 allow_keys = save_allow_keys;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 if (c2 == KS_MODIFIER)
1654 {
1655 mod_mask = c;
1656 continue;
1657 }
1658 c = TO_SPECIAL(c2, c);
1659
1660#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
1661 /* Handle K_TEAROFF here, the caller of vgetc() doesn't need to
1662 * know that a menu was torn off */
1663 if (c == K_TEAROFF)
1664 {
1665 char_u name[200];
1666 int i;
1667
1668 /* get menu path, it ends with a <CR> */
1669 for (i = 0; (c = vgetorpeek(TRUE)) != '\r'; )
1670 {
1671 name[i] = c;
1672 if (i < 199)
1673 ++i;
1674 }
1675 name[i] = NUL;
1676 gui_make_tearoff(name);
1677 continue;
1678 }
1679#endif
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001680#if defined(FEAT_GUI) && defined(FEAT_GUI_GTK) && defined(FEAT_MENU)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001681 /* GTK: <F10> normally selects the menu, but it's passed until
1682 * here to allow mapping it. Intercept and invoke the GTK
1683 * behavior if it's not mapped. */
1684 if (c == K_F10 && gui.menubar != NULL)
1685 {
1686 gtk_menu_shell_select_first(GTK_MENU_SHELL(gui.menubar), FALSE);
1687 continue;
1688 }
1689#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690#ifdef FEAT_GUI
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001691 /* Handle focus event here, so that the caller doesn't need to
1692 * know about it. Return K_IGNORE so that we loop once (needed if
1693 * 'lazyredraw' is set). */
Bram Moolenaar9c8791f2007-09-05 19:47:23 +00001694 if (c == K_FOCUSGAINED || c == K_FOCUSLOST)
1695 {
1696 ui_focus_change(c == K_FOCUSGAINED);
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001697 c = K_IGNORE;
Bram Moolenaar9c8791f2007-09-05 19:47:23 +00001698 }
1699
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700 /* Translate K_CSI to CSI. The special key is only used to avoid
1701 * it being recognized as the start of a special key. */
1702 if (c == K_CSI)
1703 c = CSI;
1704#endif
1705 }
1706#ifdef MSDOS
1707 /*
1708 * If K_NUL was typed, it is replaced by K_NUL, 3 in mch_inchar().
1709 * Delete the 3 here.
1710 */
1711 else if (c == K_NUL && vpeekc() == 3)
1712 (void)vgetorpeek(TRUE);
1713#endif
1714
Bram Moolenaara88d9682005-03-25 21:45:43 +00001715 /* a keypad or special function key was not mapped, use it like
1716 * its ASCII equivalent */
1717 switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 {
Bram Moolenaara88d9682005-03-25 21:45:43 +00001719 case K_KPLUS: c = '+'; break;
1720 case K_KMINUS: c = '-'; break;
1721 case K_KDIVIDE: c = '/'; break;
1722 case K_KMULTIPLY: c = '*'; break;
1723 case K_KENTER: c = CAR; break;
1724 case K_KPOINT:
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001725#ifdef WIN32
Bram Moolenaara88d9682005-03-25 21:45:43 +00001726 /* Can be either '.' or a ',', *
1727 * depending on the type of keypad. */
1728 c = MapVirtualKey(VK_DECIMAL, 2); break;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001729#else
Bram Moolenaara88d9682005-03-25 21:45:43 +00001730 c = '.'; break;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001731#endif
Bram Moolenaara88d9682005-03-25 21:45:43 +00001732 case K_K0: c = '0'; break;
1733 case K_K1: c = '1'; break;
1734 case K_K2: c = '2'; break;
1735 case K_K3: c = '3'; break;
1736 case K_K4: c = '4'; break;
1737 case K_K5: c = '5'; break;
1738 case K_K6: c = '6'; break;
1739 case K_K7: c = '7'; break;
1740 case K_K8: c = '8'; break;
1741 case K_K9: c = '9'; break;
1742
1743 case K_XHOME:
1744 case K_ZHOME: if (mod_mask == MOD_MASK_SHIFT)
1745 {
1746 c = K_S_HOME;
1747 mod_mask = 0;
1748 }
1749 else if (mod_mask == MOD_MASK_CTRL)
1750 {
1751 c = K_C_HOME;
1752 mod_mask = 0;
1753 }
1754 else
1755 c = K_HOME;
1756 break;
1757 case K_XEND:
1758 case K_ZEND: if (mod_mask == MOD_MASK_SHIFT)
1759 {
1760 c = K_S_END;
1761 mod_mask = 0;
1762 }
1763 else if (mod_mask == MOD_MASK_CTRL)
1764 {
1765 c = K_C_END;
1766 mod_mask = 0;
1767 }
1768 else
1769 c = K_END;
1770 break;
1771
1772 case K_XUP: c = K_UP; break;
1773 case K_XDOWN: c = K_DOWN; break;
1774 case K_XLEFT: c = K_LEFT; break;
1775 case K_XRIGHT: c = K_RIGHT; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 }
1777
1778#ifdef FEAT_MBYTE
1779 /* For a multi-byte character get all the bytes and return the
1780 * converted character.
1781 * Note: This will loop until enough bytes are received!
1782 */
1783 if (has_mbyte && (n = MB_BYTE2LEN_CHECK(c)) > 1)
1784 {
1785 ++no_mapping;
1786 buf[0] = c;
1787 for (i = 1; i < n; ++i)
1788 {
1789 buf[i] = vgetorpeek(TRUE);
1790 if (buf[i] == K_SPECIAL
1791#ifdef FEAT_GUI
1792 || buf[i] == CSI
1793#endif
1794 )
1795 {
1796 /* Must be a K_SPECIAL - KS_SPECIAL - KE_FILLER sequence,
1797 * which represents a K_SPECIAL (0x80),
1798 * or a CSI - KS_EXTRA - KE_CSI sequence, which represents
1799 * a CSI (0x9B),
1800 * of a K_SPECIAL - KS_EXTRA - KE_CSI, which is CSI too. */
1801 c = vgetorpeek(TRUE);
1802 if (vgetorpeek(TRUE) == (int)KE_CSI && c == KS_EXTRA)
1803 buf[i] = CSI;
1804 }
1805 }
1806 --no_mapping;
1807 c = (*mb_ptr2char)(buf);
1808 }
1809#endif
1810
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001811 break;
1812 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 }
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001814
1815#ifdef FEAT_EVAL
1816 /*
1817 * In the main loop "may_garbage_collect" can be set to do garbage
1818 * collection in the first next vgetc(). It's disabled after that to
1819 * avoid internally used Lists and Dicts to be freed.
1820 */
1821 may_garbage_collect = FALSE;
1822#endif
1823
1824 return c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825}
1826
1827/*
1828 * Like vgetc(), but never return a NUL when called recursively, get a key
1829 * directly from the user (ignoring typeahead).
1830 */
1831 int
1832safe_vgetc()
1833{
1834 int c;
1835
1836 c = vgetc();
1837 if (c == NUL)
1838 c = get_keystroke();
1839 return c;
1840}
1841
1842/*
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001843 * Like safe_vgetc(), but loop to handle K_IGNORE.
1844 * Also ignore scrollbar events.
1845 */
1846 int
1847plain_vgetc()
1848{
1849 int c;
1850
1851 do
1852 {
1853 c = safe_vgetc();
1854 } while (c == K_IGNORE || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR);
1855 return c;
1856}
1857
1858/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 * Check if a character is available, such that vgetc() will not block.
1860 * If the next character is a special character or multi-byte, the returned
1861 * character is not valid!.
1862 */
1863 int
1864vpeekc()
1865{
1866 if (old_char != -1)
1867 return old_char;
1868 return vgetorpeek(FALSE);
1869}
1870
1871#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
1872/*
1873 * Like vpeekc(), but don't allow mapping. Do allow checking for terminal
1874 * codes.
1875 */
1876 int
1877vpeekc_nomap()
1878{
1879 int c;
1880
1881 ++no_mapping;
1882 ++allow_keys;
1883 c = vpeekc();
1884 --no_mapping;
1885 --allow_keys;
1886 return c;
1887}
1888#endif
1889
1890#if defined(FEAT_INS_EXPAND) || defined(PROTO)
1891/*
1892 * Check if any character is available, also half an escape sequence.
1893 * Trick: when no typeahead found, but there is something in the typeahead
1894 * buffer, it must be an ESC that is recognized as the start of a key code.
1895 */
1896 int
1897vpeekc_any()
1898{
1899 int c;
1900
1901 c = vpeekc();
1902 if (c == NUL && typebuf.tb_len > 0)
1903 c = ESC;
1904 return c;
1905}
1906#endif
1907
1908/*
1909 * Call vpeekc() without causing anything to be mapped.
1910 * Return TRUE if a character is available, FALSE otherwise.
1911 */
1912 int
1913char_avail()
1914{
1915 int retval;
1916
1917 ++no_mapping;
1918 retval = vpeekc();
1919 --no_mapping;
1920 return (retval != NUL);
1921}
1922
1923 void
1924vungetc(c) /* unget one character (can only be done once!) */
1925 int c;
1926{
1927 old_char = c;
1928 old_mod_mask = mod_mask;
Bram Moolenaarb8978712013-03-16 21:42:16 +01001929#ifdef FEAT_MOUSE
1930 old_mouse_row = mouse_row;
1931 old_mouse_col = mouse_col;
1932#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933}
1934
1935/*
1936 * get a character:
1937 * 1. from the stuffbuffer
1938 * This is used for abbreviated commands like "D" -> "d$".
1939 * Also used to redo a command for ".".
1940 * 2. from the typeahead buffer
1941 * Stores text obtained previously but not used yet.
1942 * Also stores the result of mappings.
1943 * Also used for the ":normal" command.
1944 * 3. from the user
1945 * This may do a blocking wait if "advance" is TRUE.
1946 *
1947 * if "advance" is TRUE (vgetc()):
1948 * really get the character.
1949 * KeyTyped is set to TRUE in the case the user typed the key.
1950 * KeyStuffed is TRUE if the character comes from the stuff buffer.
1951 * if "advance" is FALSE (vpeekc()):
1952 * just look whether there is a character available.
1953 *
1954 * When "no_mapping" is zero, checks for mappings in the current mode.
1955 * Only returns one byte (of a multi-byte character).
1956 * K_SPECIAL and CSI may be escaped, need to get two more bytes then.
1957 */
1958 static int
1959vgetorpeek(advance)
1960 int advance;
1961{
1962 int c, c1;
1963 int keylen;
1964 char_u *s;
1965 mapblock_T *mp;
1966#ifdef FEAT_LOCALMAP
1967 mapblock_T *mp2;
1968#endif
1969 mapblock_T *mp_match;
1970 int mp_match_len = 0;
1971 int timedout = FALSE; /* waited for more than 1 second
1972 for mapping to complete */
1973 int mapdepth = 0; /* check for recursive mapping */
1974 int mode_deleted = FALSE; /* set when mode has been deleted */
1975 int local_State;
1976 int mlen;
1977 int max_mlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978 int i;
Bram Moolenaar4e427192006-03-10 21:34:27 +00001979#ifdef FEAT_CMDL_INFO
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 int new_wcol, new_wrow;
1981#endif
1982#ifdef FEAT_GUI
1983# ifdef FEAT_MENU
1984 int idx;
1985# endif
1986 int shape_changed = FALSE; /* adjusted cursor shape */
1987#endif
1988 int n;
1989#ifdef FEAT_LANGMAP
1990 int nolmaplen;
1991#endif
1992 int old_wcol, old_wrow;
Bram Moolenaar28a37ff2005-03-15 22:28:00 +00001993 int wait_tb_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994
1995 /*
1996 * This function doesn't work very well when called recursively. This may
1997 * happen though, because of:
1998 * 1. The call to add_to_showcmd(). char_avail() is then used to check if
1999 * there is a character available, which calls this function. In that
2000 * case we must return NUL, to indicate no character is available.
2001 * 2. A GUI callback function writes to the screen, causing a
2002 * wait_return().
2003 * Using ":normal" can also do this, but it saves the typeahead buffer,
2004 * thus it should be OK. But don't get a key from the user then.
2005 */
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002006 if (vgetc_busy > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007#ifdef FEAT_EX_EXTRA
2008 && ex_normal_busy == 0
2009#endif
2010 )
2011 return NUL;
2012
2013 local_State = get_real_state();
2014
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002015 ++vgetc_busy;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016
2017 if (advance)
2018 KeyStuffed = FALSE;
2019
2020 init_typebuf();
2021 start_stuff();
2022 if (advance && typebuf.tb_maplen == 0)
2023 Exec_reg = FALSE;
2024 do
2025 {
2026/*
2027 * get a character: 1. from the stuffbuffer
2028 */
2029 if (typeahead_char != 0)
2030 {
2031 c = typeahead_char;
2032 if (advance)
2033 typeahead_char = 0;
2034 }
2035 else
Bram Moolenaar0a36fec2014-02-11 15:10:43 +01002036 c = read_readbuffers(advance);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 if (c != NUL && !got_int)
2038 {
2039 if (advance)
2040 {
2041 /* KeyTyped = FALSE; When the command that stuffed something
2042 * was typed, behave like the stuffed command was typed.
2043 * needed for CTRL-W CTRl-] to open a fold, for example. */
2044 KeyStuffed = TRUE;
2045 }
2046 if (typebuf.tb_no_abbr_cnt == 0)
2047 typebuf.tb_no_abbr_cnt = 1; /* no abbreviations now */
2048 }
2049 else
2050 {
2051 /*
2052 * Loop until we either find a matching mapped key, or we
2053 * are sure that it is not a mapped key.
2054 * If a mapped key sequence is found we go back to the start to
2055 * try re-mapping.
2056 */
2057 for (;;)
2058 {
2059 /*
2060 * ui_breakcheck() is slow, don't use it too often when
2061 * inside a mapping. But call it each time for typed
2062 * characters.
2063 */
2064 if (typebuf.tb_maplen)
2065 line_breakcheck();
2066 else
2067 ui_breakcheck(); /* check for CTRL-C */
2068 keylen = 0;
2069 if (got_int)
2070 {
2071 /* flush all input */
2072 c = inchar(typebuf.tb_buf, typebuf.tb_buflen - 1, 0L,
2073 typebuf.tb_change_cnt);
2074 /*
2075 * If inchar() returns TRUE (script file was active) or we
2076 * are inside a mapping, get out of insert mode.
2077 * Otherwise we behave like having gotten a CTRL-C.
2078 * As a result typing CTRL-C in insert mode will
2079 * really insert a CTRL-C.
2080 */
2081 if ((c || typebuf.tb_maplen)
2082 && (State & (INSERT + CMDLINE)))
2083 c = ESC;
2084 else
2085 c = Ctrl_C;
2086 flush_buffers(TRUE); /* flush all typeahead */
2087
Bram Moolenaard9dfd572006-10-03 13:36:13 +00002088 if (advance)
2089 {
2090 /* Also record this character, it might be needed to
2091 * get out of Insert mode. */
2092 *typebuf.tb_buf = c;
2093 gotchars(typebuf.tb_buf, 1);
2094 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 cmd_silent = FALSE;
2096
2097 break;
2098 }
2099 else if (typebuf.tb_len > 0)
2100 {
2101 /*
2102 * Check for a mappable key sequence.
2103 * Walk through one maphash[] list until we find an
2104 * entry that matches.
2105 *
2106 * Don't look for mappings if:
2107 * - no_mapping set: mapping disabled (e.g. for CTRL-V)
2108 * - maphash_valid not set: no mappings present.
2109 * - typebuf.tb_buf[typebuf.tb_off] should not be remapped
2110 * - in insert or cmdline mode and 'paste' option set
2111 * - waiting for "hit return to continue" and CR or SPACE
2112 * typed
2113 * - waiting for a char with --more--
2114 * - in Ctrl-X mode, and we get a valid char for that mode
2115 */
2116 mp = NULL;
2117 max_mlen = 0;
2118 c1 = typebuf.tb_buf[typebuf.tb_off];
2119 if (no_mapping == 0 && maphash_valid
2120 && (no_zero_mapping == 0 || c1 != '0')
2121 && (typebuf.tb_maplen == 0
2122 || (p_remap
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002123 && (typebuf.tb_noremap[typebuf.tb_off]
2124 & (RM_NONE|RM_ABBR)) == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 && !(p_paste && (State & (INSERT + CMDLINE)))
2126 && !(State == HITRETURN && (c1 == CAR || c1 == ' '))
2127 && State != ASKMORE
2128 && State != CONFIRM
2129#ifdef FEAT_INS_EXPAND
2130 && !((ctrl_x_mode != 0 && vim_is_ctrl_x_key(c1))
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002131 || ((compl_cont_status & CONT_LOCAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 && (c1 == Ctrl_N || c1 == Ctrl_P)))
2133#endif
2134 )
2135 {
2136#ifdef FEAT_LANGMAP
2137 if (c1 == K_SPECIAL)
2138 nolmaplen = 2;
2139 else
2140 {
2141 LANGMAP_ADJUST(c1, TRUE);
2142 nolmaplen = 0;
2143 }
2144#endif
2145#ifdef FEAT_LOCALMAP
2146 /* First try buffer-local mappings. */
2147 mp = curbuf->b_maphash[MAP_HASH(local_State, c1)];
2148 mp2 = maphash[MAP_HASH(local_State, c1)];
2149 if (mp == NULL)
2150 {
Bram Moolenaar72179e12013-06-29 13:58:31 +02002151 /* There are no buffer-local mappings. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 mp = mp2;
2153 mp2 = NULL;
2154 }
2155#else
2156 mp = maphash[MAP_HASH(local_State, c1)];
2157#endif
2158 /*
2159 * Loop until a partly matching mapping is found or
2160 * all (local) mappings have been checked.
2161 * The longest full match is remembered in "mp_match".
2162 * A full match is only accepted if there is no partly
2163 * match, so "aa" and "aaa" can both be mapped.
2164 */
2165 mp_match = NULL;
2166 mp_match_len = 0;
2167 for ( ; mp != NULL;
2168#ifdef FEAT_LOCALMAP
2169 mp->m_next == NULL ? (mp = mp2, mp2 = NULL) :
2170#endif
2171 (mp = mp->m_next))
2172 {
2173 /*
2174 * Only consider an entry if the first character
2175 * matches and it is for the current state.
2176 * Skip ":lmap" mappings if keys were mapped.
2177 */
2178 if (mp->m_keys[0] == c1
2179 && (mp->m_mode & local_State)
2180 && ((mp->m_mode & LANGMAP) == 0
2181 || typebuf.tb_maplen == 0))
2182 {
2183#ifdef FEAT_LANGMAP
2184 int nomap = nolmaplen;
2185 int c2;
2186#endif
2187 /* find the match length of this mapping */
2188 for (mlen = 1; mlen < typebuf.tb_len; ++mlen)
2189 {
2190#ifdef FEAT_LANGMAP
2191 c2 = typebuf.tb_buf[typebuf.tb_off + mlen];
2192 if (nomap > 0)
2193 --nomap;
2194 else if (c2 == K_SPECIAL)
2195 nomap = 2;
2196 else
2197 LANGMAP_ADJUST(c2, TRUE);
2198 if (mp->m_keys[mlen] != c2)
2199#else
2200 if (mp->m_keys[mlen] !=
2201 typebuf.tb_buf[typebuf.tb_off + mlen])
2202#endif
2203 break;
2204 }
2205
2206#ifdef FEAT_MBYTE
2207 /* Don't allow mapping the first byte(s) of a
2208 * multi-byte char. Happens when mapping
Bram Moolenaar1d9ff432014-03-12 20:17:51 +01002209 * <M-a> and then changing 'encoding'. Beware
2210 * that 0x80 is escaped. */
2211 {
2212 char_u *p1 = mp->m_keys;
2213 char_u *p2 = mb_unescape(&p1);
2214
2215 if (has_mbyte && p2 != NULL
2216 && MB_BYTE2LEN(c1) > MB_PTR2LEN(p2))
2217 mlen = 0;
2218 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219#endif
2220 /*
2221 * Check an entry whether it matches.
2222 * - Full match: mlen == keylen
2223 * - Partly match: mlen == typebuf.tb_len
2224 */
2225 keylen = mp->m_keylen;
2226 if (mlen == keylen
2227 || (mlen == typebuf.tb_len
2228 && typebuf.tb_len < keylen))
2229 {
2230 /*
2231 * If only script-local mappings are
2232 * allowed, check if the mapping starts
2233 * with K_SNR.
2234 */
2235 s = typebuf.tb_noremap + typebuf.tb_off;
2236 if (*s == RM_SCRIPT
2237 && (mp->m_keys[0] != K_SPECIAL
2238 || mp->m_keys[1] != KS_EXTRA
2239 || mp->m_keys[2]
2240 != (int)KE_SNR))
2241 continue;
2242 /*
2243 * If one of the typed keys cannot be
2244 * remapped, skip the entry.
2245 */
2246 for (n = mlen; --n >= 0; )
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002247 if (*s++ & (RM_NONE|RM_ABBR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248 break;
2249 if (n >= 0)
2250 continue;
2251
2252 if (keylen > typebuf.tb_len)
2253 {
Bram Moolenaar72179e12013-06-29 13:58:31 +02002254 if (!timedout && !(mp_match != NULL
2255 && mp_match->m_nowait))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 {
2257 /* break at a partly match */
Bram Moolenaar946ffd42010-12-30 12:30:31 +01002258 keylen = KEYLEN_PART_MAP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259 break;
2260 }
2261 }
2262 else if (keylen > mp_match_len)
2263 {
2264 /* found a longer match */
2265 mp_match = mp;
2266 mp_match_len = keylen;
2267 }
2268 }
2269 else
2270 /* No match; may have to check for
2271 * termcode at next character. */
2272 if (max_mlen < mlen)
2273 max_mlen = mlen;
2274 }
2275 }
2276
2277 /* If no partly match found, use the longest full
2278 * match. */
Bram Moolenaar946ffd42010-12-30 12:30:31 +01002279 if (keylen != KEYLEN_PART_MAP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 {
2281 mp = mp_match;
2282 keylen = mp_match_len;
2283 }
2284 }
2285
2286 /* Check for match with 'pastetoggle' */
2287 if (*p_pt != NUL && mp == NULL && (State & (INSERT|NORMAL)))
2288 {
2289 for (mlen = 0; mlen < typebuf.tb_len && p_pt[mlen];
2290 ++mlen)
2291 if (p_pt[mlen] != typebuf.tb_buf[typebuf.tb_off
2292 + mlen])
2293 break;
2294 if (p_pt[mlen] == NUL) /* match */
2295 {
2296 /* write chars to script file(s) */
2297 if (mlen > typebuf.tb_maplen)
2298 gotchars(typebuf.tb_buf + typebuf.tb_off
2299 + typebuf.tb_maplen,
2300 mlen - typebuf.tb_maplen);
2301
2302 del_typebuf(mlen, 0); /* remove the chars */
2303 set_option_value((char_u *)"paste",
2304 (long)!p_paste, NULL, 0);
2305 if (!(State & INSERT))
2306 {
2307 msg_col = 0;
2308 msg_row = Rows - 1;
2309 msg_clr_eos(); /* clear ruler */
2310 }
Bram Moolenaar06811f32014-02-15 16:17:07 +01002311#ifdef FEAT_WINDOWS
2312 status_redraw_all();
2313 redraw_statuslines();
2314#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 showmode();
2316 setcursor();
2317 continue;
2318 }
2319 /* Need more chars for partly match. */
2320 if (mlen == typebuf.tb_len)
Bram Moolenaar946ffd42010-12-30 12:30:31 +01002321 keylen = KEYLEN_PART_KEY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 else if (max_mlen < mlen)
2323 /* no match, may have to check for termcode at
2324 * next character */
2325 max_mlen = mlen + 1;
2326 }
2327
2328 if ((mp == NULL || max_mlen >= mp_match_len)
Bram Moolenaar946ffd42010-12-30 12:30:31 +01002329 && keylen != KEYLEN_PART_MAP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002331 int save_keylen = keylen;
2332
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333 /*
2334 * When no matching mapping found or found a
2335 * non-matching mapping that matches at least what the
2336 * matching mapping matched:
2337 * Check if we have a terminal code, when:
2338 * mapping is allowed,
2339 * keys have not been mapped,
2340 * and not an ESC sequence, not in insert mode or
2341 * p_ek is on,
2342 * and when not timed out,
2343 */
2344 if ((no_mapping == 0 || allow_keys != 0)
2345 && (typebuf.tb_maplen == 0
2346 || (p_remap && typebuf.tb_noremap[
2347 typebuf.tb_off] == RM_YES))
2348 && !timedout)
2349 {
Bram Moolenaara8c8a682012-02-05 22:05:48 +01002350 keylen = check_termcode(max_mlen + 1,
2351 NULL, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352
Bram Moolenaarf2330482008-06-24 20:19:36 +00002353 /* If no termcode matched but 'pastetoggle'
2354 * matched partially it's like an incomplete key
2355 * sequence. */
Bram Moolenaar946ffd42010-12-30 12:30:31 +01002356 if (keylen == 0 && save_keylen == KEYLEN_PART_KEY)
2357 keylen = KEYLEN_PART_KEY;
Bram Moolenaarf2330482008-06-24 20:19:36 +00002358
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359 /*
2360 * When getting a partial match, but the last
2361 * characters were not typed, don't wait for a
2362 * typed character to complete the termcode.
2363 * This helps a lot when a ":normal" command ends
2364 * in an ESC.
2365 */
2366 if (keylen < 0
2367 && typebuf.tb_len == typebuf.tb_maplen)
2368 keylen = 0;
2369 }
2370 else
2371 keylen = 0;
2372 if (keylen == 0) /* no matching terminal code */
2373 {
2374#ifdef AMIGA /* check for window bounds report */
2375 if (typebuf.tb_maplen == 0 && (typebuf.tb_buf[
2376 typebuf.tb_off] & 0xff) == CSI)
2377 {
2378 for (s = typebuf.tb_buf + typebuf.tb_off + 1;
2379 s < typebuf.tb_buf + typebuf.tb_off
2380 + typebuf.tb_len
2381 && (VIM_ISDIGIT(*s) || *s == ';'
2382 || *s == ' ');
2383 ++s)
2384 ;
2385 if (*s == 'r' || *s == '|') /* found one */
2386 {
2387 del_typebuf((int)(s + 1 -
2388 (typebuf.tb_buf + typebuf.tb_off)), 0);
2389 /* get size and redraw screen */
2390 shell_resized();
2391 continue;
2392 }
2393 if (*s == NUL) /* need more characters */
Bram Moolenaar946ffd42010-12-30 12:30:31 +01002394 keylen = KEYLEN_PART_KEY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 }
2396 if (keylen >= 0)
2397#endif
2398 /* When there was a matching mapping and no
2399 * termcode could be replaced after another one,
Bram Moolenaarf2330482008-06-24 20:19:36 +00002400 * use that mapping (loop around). If there was
2401 * no mapping use the character from the
2402 * typeahead buffer right here. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 if (mp == NULL)
2404 {
2405/*
2406 * get a character: 2. from the typeahead buffer
2407 */
2408 c = typebuf.tb_buf[typebuf.tb_off] & 255;
2409 if (advance) /* remove chars from tb_buf */
2410 {
2411 cmd_silent = (typebuf.tb_silent > 0);
2412 if (typebuf.tb_maplen > 0)
2413 KeyTyped = FALSE;
2414 else
2415 {
2416 KeyTyped = TRUE;
2417 /* write char to script file(s) */
2418 gotchars(typebuf.tb_buf
2419 + typebuf.tb_off, 1);
2420 }
Bram Moolenaarcf8e7d12006-12-05 20:43:17 +00002421 KeyNoremap = typebuf.tb_noremap[
2422 typebuf.tb_off];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 del_typebuf(1, 0);
2424 }
2425 break; /* got character, break for loop */
2426 }
2427 }
2428 if (keylen > 0) /* full matching terminal code */
2429 {
2430#if defined(FEAT_GUI) && defined(FEAT_MENU)
Bram Moolenaar946ffd42010-12-30 12:30:31 +01002431 if (typebuf.tb_len >= 2
2432 && typebuf.tb_buf[typebuf.tb_off] == K_SPECIAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 && typebuf.tb_buf[typebuf.tb_off + 1]
2434 == KS_MENU)
2435 {
2436 /*
2437 * Using a menu may cause a break in undo!
2438 * It's like using gotchars(), but without
2439 * recording or writing to a script file.
2440 */
2441 may_sync_undo();
2442 del_typebuf(3, 0);
2443 idx = get_menu_index(current_menu, local_State);
2444 if (idx != MENU_INDEX_INVALID)
2445 {
2446# ifdef FEAT_VISUAL
2447 /*
Bram Moolenaar371d5402006-03-20 21:47:49 +00002448 * In Select mode and a Visual mode menu
2449 * is used: Switch to Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 * temporarily. Append K_SELECT to switch
2451 * back to Select mode.
2452 */
Bram Moolenaar371d5402006-03-20 21:47:49 +00002453 if (VIsual_active && VIsual_select
2454 && (current_menu->modes & VISUAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 {
2456 VIsual_select = FALSE;
2457 (void)ins_typebuf(K_SELECT_STRING,
2458 REMAP_NONE, 0, TRUE, FALSE);
2459 }
2460# endif
2461 ins_typebuf(current_menu->strings[idx],
2462 current_menu->noremap[idx],
2463 0, TRUE,
2464 current_menu->silent[idx]);
2465 }
2466 }
Bram Moolenaaree3f7a52008-01-01 13:17:56 +00002467#endif /* FEAT_GUI && FEAT_MENU */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 continue; /* try mapping again */
2469 }
2470
2471 /* Partial match: get some more characters. When a
2472 * matching mapping was found use that one. */
2473 if (mp == NULL || keylen < 0)
Bram Moolenaar946ffd42010-12-30 12:30:31 +01002474 keylen = KEYLEN_PART_KEY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475 else
2476 keylen = mp_match_len;
2477 }
2478
2479 /* complete match */
2480 if (keylen >= 0 && keylen <= typebuf.tb_len)
2481 {
Bram Moolenaar0dbf7202010-01-27 17:31:43 +01002482#ifdef FEAT_EVAL
2483 int save_m_expr;
2484 int save_m_noremap;
2485 int save_m_silent;
2486 char_u *save_m_keys;
2487 char_u *save_m_str;
2488#else
2489# define save_m_noremap mp->m_noremap
2490# define save_m_silent mp->m_silent
2491#endif
2492
Bram Moolenaar071d4272004-06-13 20:20:40 +00002493 /* write chars to script file(s) */
2494 if (keylen > typebuf.tb_maplen)
2495 gotchars(typebuf.tb_buf + typebuf.tb_off
2496 + typebuf.tb_maplen,
2497 keylen - typebuf.tb_maplen);
2498
2499 cmd_silent = (typebuf.tb_silent > 0);
2500 del_typebuf(keylen, 0); /* remove the mapped keys */
2501
2502 /*
2503 * Put the replacement string in front of mapstr.
2504 * The depth check catches ":map x y" and ":map y x".
2505 */
2506 if (++mapdepth >= p_mmd)
2507 {
2508 EMSG(_("E223: recursive mapping"));
2509 if (State & CMDLINE)
2510 redrawcmdline();
2511 else
2512 setcursor();
2513 flush_buffers(FALSE);
2514 mapdepth = 0; /* for next one */
2515 c = -1;
2516 break;
2517 }
2518
2519#ifdef FEAT_VISUAL
2520 /*
Bram Moolenaar371d5402006-03-20 21:47:49 +00002521 * In Select mode and a Visual mode mapping is used:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 * Switch to Visual mode temporarily. Append K_SELECT
2523 * to switch back to Select mode.
2524 */
Bram Moolenaar371d5402006-03-20 21:47:49 +00002525 if (VIsual_active && VIsual_select
2526 && (mp->m_mode & VISUAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 {
2528 VIsual_select = FALSE;
2529 (void)ins_typebuf(K_SELECT_STRING, REMAP_NONE,
2530 0, TRUE, FALSE);
2531 }
2532#endif
2533
Bram Moolenaar4e427192006-03-10 21:34:27 +00002534#ifdef FEAT_EVAL
Bram Moolenaar0dbf7202010-01-27 17:31:43 +01002535 /* Copy the values from *mp that are used, because
2536 * evaluating the expression may invoke a function
2537 * that redefines the mapping, thereby making *mp
2538 * invalid. */
2539 save_m_expr = mp->m_expr;
2540 save_m_noremap = mp->m_noremap;
2541 save_m_silent = mp->m_silent;
2542 save_m_keys = NULL; /* only saved when needed */
2543 save_m_str = NULL; /* only saved when needed */
2544
Bram Moolenaar4e427192006-03-10 21:34:27 +00002545 /*
2546 * Handle ":map <expr>": evaluate the {rhs} as an
Bram Moolenaarb3479bd2011-10-12 22:02:14 +02002547 * expression. Also save and restore the command line
2548 * for "normal :".
Bram Moolenaar4e427192006-03-10 21:34:27 +00002549 */
2550 if (mp->m_expr)
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002551 {
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002552 int save_vgetc_busy = vgetc_busy;
2553
Bram Moolenaarb3479bd2011-10-12 22:02:14 +02002554 vgetc_busy = 0;
2555 save_m_keys = vim_strsave(mp->m_keys);
2556 save_m_str = vim_strsave(mp->m_str);
2557 s = eval_map_expr(save_m_str, NUL);
2558 vgetc_busy = save_vgetc_busy;
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002559 }
Bram Moolenaar4e427192006-03-10 21:34:27 +00002560 else
2561#endif
2562 s = mp->m_str;
2563
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564 /*
2565 * Insert the 'to' part in the typebuf.tb_buf.
2566 * If 'from' field is the same as the start of the
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002567 * 'to' field, don't remap the first character (but do
2568 * allow abbreviations).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569 * If m_noremap is set, don't remap the whole 'to'
2570 * part.
2571 */
Bram Moolenaar4e427192006-03-10 21:34:27 +00002572 if (s == NULL)
2573 i = FAIL;
2574 else
2575 {
Bram Moolenaard21d9a62010-01-28 22:58:16 +01002576 int noremap;
2577
2578 if (save_m_noremap != REMAP_YES)
2579 noremap = save_m_noremap;
2580 else if (
Bram Moolenaar0dbf7202010-01-27 17:31:43 +01002581#ifdef FEAT_EVAL
Bram Moolenaard21d9a62010-01-28 22:58:16 +01002582 STRNCMP(s, save_m_keys != NULL
2583 ? save_m_keys : mp->m_keys,
2584 (size_t)keylen)
2585#else
2586 STRNCMP(s, mp->m_keys, (size_t)keylen)
Bram Moolenaar0dbf7202010-01-27 17:31:43 +01002587#endif
Bram Moolenaard21d9a62010-01-28 22:58:16 +01002588 != 0)
2589 noremap = REMAP_YES;
2590 else
2591 noremap = REMAP_SKIP;
2592 i = ins_typebuf(s, noremap,
2593 0, TRUE, cmd_silent || save_m_silent);
Bram Moolenaar4e427192006-03-10 21:34:27 +00002594#ifdef FEAT_EVAL
Bram Moolenaar0dbf7202010-01-27 17:31:43 +01002595 if (save_m_expr)
Bram Moolenaar4e427192006-03-10 21:34:27 +00002596 vim_free(s);
2597#endif
2598 }
Bram Moolenaar0dbf7202010-01-27 17:31:43 +01002599#ifdef FEAT_EVAL
2600 vim_free(save_m_keys);
2601 vim_free(save_m_str);
2602#endif
Bram Moolenaar4e427192006-03-10 21:34:27 +00002603 if (i == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604 {
2605 c = -1;
2606 break;
2607 }
2608 continue;
2609 }
2610 }
2611
2612/*
2613 * get a character: 3. from the user - handle <Esc> in Insert mode
2614 */
2615 /*
2616 * special case: if we get an <ESC> in insert mode and there
2617 * are no more characters at once, we pretend to go out of
2618 * insert mode. This prevents the one second delay after
2619 * typing an <ESC>. If we get something after all, we may
2620 * have to redisplay the mode. That the cursor is in the wrong
2621 * place does not matter.
2622 */
2623 c = 0;
2624#ifdef FEAT_CMDL_INFO
2625 new_wcol = curwin->w_wcol;
2626 new_wrow = curwin->w_wrow;
2627#endif
2628 if ( advance
2629 && typebuf.tb_len == 1
2630 && typebuf.tb_buf[typebuf.tb_off] == ESC
2631 && !no_mapping
2632#ifdef FEAT_EX_EXTRA
2633 && ex_normal_busy == 0
2634#endif
2635 && typebuf.tb_maplen == 0
2636 && (State & INSERT)
Bram Moolenaar946ffd42010-12-30 12:30:31 +01002637 && (p_timeout
2638 || (keylen == KEYLEN_PART_KEY && p_ttimeout))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 && (c = inchar(typebuf.tb_buf + typebuf.tb_off
2640 + typebuf.tb_len, 3, 25L,
2641 typebuf.tb_change_cnt)) == 0)
2642 {
2643 colnr_T col = 0, vcol;
2644 char_u *ptr;
2645
Bram Moolenaar28c258f2006-01-25 22:02:51 +00002646 if (mode_displayed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 {
2648 unshowmode(TRUE);
2649 mode_deleted = TRUE;
2650 }
2651#ifdef FEAT_GUI
2652 /* may show different cursor shape */
2653 if (gui.in_use)
2654 {
2655 int save_State;
2656
2657 save_State = State;
2658 State = NORMAL;
2659 gui_update_cursor(TRUE, FALSE);
2660 State = save_State;
2661 shape_changed = TRUE;
2662 }
2663#endif
2664 validate_cursor();
2665 old_wcol = curwin->w_wcol;
2666 old_wrow = curwin->w_wrow;
2667
2668 /* move cursor left, if possible */
2669 if (curwin->w_cursor.col != 0)
2670 {
2671 if (curwin->w_wcol > 0)
2672 {
2673 if (did_ai)
2674 {
2675 /*
2676 * We are expecting to truncate the trailing
2677 * white-space, so find the last non-white
2678 * character -- webb
2679 */
2680 col = vcol = curwin->w_wcol = 0;
2681 ptr = ml_get_curline();
2682 while (col < curwin->w_cursor.col)
2683 {
2684 if (!vim_iswhite(ptr[col]))
2685 curwin->w_wcol = vcol;
2686 vcol += lbr_chartabsize(ptr + col,
2687 (colnr_T)vcol);
2688#ifdef FEAT_MBYTE
2689 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002690 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 else
2692#endif
2693 ++col;
2694 }
2695 curwin->w_wrow = curwin->w_cline_row
2696 + curwin->w_wcol / W_WIDTH(curwin);
2697 curwin->w_wcol %= W_WIDTH(curwin);
2698 curwin->w_wcol += curwin_col_off();
2699#ifdef FEAT_MBYTE
2700 col = 0; /* no correction needed */
2701#endif
2702 }
2703 else
2704 {
2705 --curwin->w_wcol;
2706#ifdef FEAT_MBYTE
2707 col = curwin->w_cursor.col - 1;
2708#endif
2709 }
2710 }
2711 else if (curwin->w_p_wrap && curwin->w_wrow)
2712 {
2713 --curwin->w_wrow;
2714 curwin->w_wcol = W_WIDTH(curwin) - 1;
2715#ifdef FEAT_MBYTE
2716 col = curwin->w_cursor.col - 1;
2717#endif
2718 }
2719#ifdef FEAT_MBYTE
2720 if (has_mbyte && col > 0 && curwin->w_wcol > 0)
2721 {
2722 /* Correct when the cursor is on the right halve
2723 * of a double-wide character. */
2724 ptr = ml_get_curline();
2725 col -= (*mb_head_off)(ptr, ptr + col);
2726 if ((*mb_ptr2cells)(ptr + col) > 1)
2727 --curwin->w_wcol;
2728 }
2729#endif
2730 }
2731 setcursor();
2732 out_flush();
2733#ifdef FEAT_CMDL_INFO
2734 new_wcol = curwin->w_wcol;
2735 new_wrow = curwin->w_wrow;
2736#endif
2737 curwin->w_wcol = old_wcol;
2738 curwin->w_wrow = old_wrow;
2739 }
2740 if (c < 0)
2741 continue; /* end of input script reached */
2742 typebuf.tb_len += c;
2743
2744 /* buffer full, don't map */
2745 if (typebuf.tb_len >= typebuf.tb_maplen + MAXMAPLEN)
2746 {
2747 timedout = TRUE;
2748 continue;
2749 }
2750
2751#ifdef FEAT_EX_EXTRA
2752 if (ex_normal_busy > 0)
2753 {
2754# ifdef FEAT_CMDWIN
2755 static int tc = 0;
2756# endif
2757
2758 /* No typeahead left and inside ":normal". Must return
2759 * something to avoid getting stuck. When an incomplete
2760 * mapping is present, behave like it timed out. */
2761 if (typebuf.tb_len > 0)
2762 {
2763 timedout = TRUE;
2764 continue;
2765 }
2766 /* When 'insertmode' is set, ESC just beeps in Insert
2767 * mode. Use CTRL-L to make edit() return.
2768 * For the command line only CTRL-C always breaks it.
2769 * For the cmdline window: Alternate between ESC and
2770 * CTRL-C: ESC for most situations and CTRL-C to close the
2771 * cmdline window. */
2772 if (p_im && (State & INSERT))
2773 c = Ctrl_L;
2774 else if ((State & CMDLINE)
2775# ifdef FEAT_CMDWIN
2776 || (cmdwin_type > 0 && tc == ESC)
2777# endif
2778 )
2779 c = Ctrl_C;
2780 else
2781 c = ESC;
2782# ifdef FEAT_CMDWIN
2783 tc = c;
2784# endif
2785 break;
2786 }
2787#endif
2788
2789/*
2790 * get a character: 3. from the user - update display
2791 */
2792 /* In insert mode a screen update is skipped when characters
2793 * are still available. But when those available characters
2794 * are part of a mapping, and we are going to do a blocking
2795 * wait here. Need to update the screen to display the
Bram Moolenaar6eb634e2011-03-03 15:04:08 +01002796 * changed text so far. Also for when 'lazyredraw' is set and
2797 * redrawing was postponed because there was something in the
2798 * input buffer (e.g., termresponse). */
Bram Moolenaarfd30cd42011-03-22 13:07:26 +01002799 if (((State & INSERT) != 0 || p_lz) && (State & CMDLINE) == 0
2800 && advance && must_redraw != 0 && !need_wait_return)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 {
2802 update_screen(0);
2803 setcursor(); /* put cursor back where it belongs */
2804 }
2805
2806 /*
2807 * If we have a partial match (and are going to wait for more
2808 * input from the user), show the partially matched characters
2809 * to the user with showcmd.
2810 */
2811#ifdef FEAT_CMDL_INFO
2812 i = 0;
2813#endif
2814 c1 = 0;
2815 if (typebuf.tb_len > 0 && advance && !exmode_active)
2816 {
2817 if (((State & (NORMAL | INSERT)) || State == LANGMAP)
2818 && State != HITRETURN)
2819 {
2820 /* this looks nice when typing a dead character map */
2821 if (State & INSERT
2822 && ptr2cells(typebuf.tb_buf + typebuf.tb_off
2823 + typebuf.tb_len - 1) == 1)
2824 {
2825 edit_putchar(typebuf.tb_buf[typebuf.tb_off
2826 + typebuf.tb_len - 1], FALSE);
2827 setcursor(); /* put cursor back where it belongs */
2828 c1 = 1;
2829 }
2830#ifdef FEAT_CMDL_INFO
2831 /* need to use the col and row from above here */
2832 old_wcol = curwin->w_wcol;
2833 old_wrow = curwin->w_wrow;
2834 curwin->w_wcol = new_wcol;
2835 curwin->w_wrow = new_wrow;
2836 push_showcmd();
2837 if (typebuf.tb_len > SHOWCMD_COLS)
2838 i = typebuf.tb_len - SHOWCMD_COLS;
2839 while (i < typebuf.tb_len)
2840 (void)add_to_showcmd(typebuf.tb_buf[typebuf.tb_off
2841 + i++]);
2842 curwin->w_wcol = old_wcol;
2843 curwin->w_wrow = old_wrow;
2844#endif
2845 }
2846
2847 /* this looks nice when typing a dead character map */
2848 if ((State & CMDLINE)
2849#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
2850 && cmdline_star == 0
2851#endif
2852 && ptr2cells(typebuf.tb_buf + typebuf.tb_off
2853 + typebuf.tb_len - 1) == 1)
2854 {
2855 putcmdline(typebuf.tb_buf[typebuf.tb_off
2856 + typebuf.tb_len - 1], FALSE);
2857 c1 = 1;
2858 }
2859 }
2860
2861/*
2862 * get a character: 3. from the user - get it
2863 */
Bram Moolenaar28a37ff2005-03-15 22:28:00 +00002864 wait_tb_len = typebuf.tb_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 c = inchar(typebuf.tb_buf + typebuf.tb_off + typebuf.tb_len,
2866 typebuf.tb_buflen - typebuf.tb_off - typebuf.tb_len - 1,
2867 !advance
2868 ? 0
2869 : ((typebuf.tb_len == 0
2870 || !(p_timeout || (p_ttimeout
Bram Moolenaar946ffd42010-12-30 12:30:31 +01002871 && keylen == KEYLEN_PART_KEY)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 ? -1L
Bram Moolenaar946ffd42010-12-30 12:30:31 +01002873 : ((keylen == KEYLEN_PART_KEY && p_ttm >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 ? p_ttm
2875 : p_tm)), typebuf.tb_change_cnt);
2876
2877#ifdef FEAT_CMDL_INFO
2878 if (i != 0)
2879 pop_showcmd();
2880#endif
2881 if (c1 == 1)
2882 {
2883 if (State & INSERT)
2884 edit_unputchar();
2885 if (State & CMDLINE)
2886 unputcmdline();
Bram Moolenaarbc256d92012-06-06 12:06:15 +02002887 else
2888 setcursor(); /* put cursor back where it belongs */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889 }
2890
2891 if (c < 0)
2892 continue; /* end of input script reached */
2893 if (c == NUL) /* no character available */
2894 {
2895 if (!advance)
2896 break;
Bram Moolenaar28a37ff2005-03-15 22:28:00 +00002897 if (wait_tb_len > 0) /* timed out */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898 {
2899 timedout = TRUE;
2900 continue;
2901 }
2902 }
2903 else
2904 { /* allow mapping for just typed characters */
2905 while (typebuf.tb_buf[typebuf.tb_off
2906 + typebuf.tb_len] != NUL)
2907 typebuf.tb_noremap[typebuf.tb_off
2908 + typebuf.tb_len++] = RM_YES;
2909#ifdef USE_IM_CONTROL
2910 /* Get IM status right after getting keys, not after the
2911 * timeout for a mapping (focus may be lost by then). */
2912 vgetc_im_active = im_get_status();
2913#endif
2914 }
2915 } /* for (;;) */
2916 } /* if (!character from stuffbuf) */
2917
2918 /* if advance is FALSE don't loop on NULs */
2919 } while (c < 0 || (advance && c == NUL));
2920
2921 /*
2922 * The "INSERT" message is taken care of here:
2923 * if we return an ESC to exit insert mode, the message is deleted
2924 * if we don't return an ESC but deleted the message before, redisplay it
2925 */
Bram Moolenaar09df3122006-01-23 22:23:09 +00002926 if (advance && p_smd && msg_silent == 0 && (State & INSERT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00002928 if (c == ESC && !mode_deleted && !no_mapping && mode_displayed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929 {
2930 if (typebuf.tb_len && !KeyTyped)
2931 redraw_cmdline = TRUE; /* delete mode later */
2932 else
2933 unshowmode(FALSE);
2934 }
2935 else if (c != ESC && mode_deleted)
2936 {
2937 if (typebuf.tb_len && !KeyTyped)
2938 redraw_cmdline = TRUE; /* show mode later */
2939 else
2940 showmode();
2941 }
2942 }
2943#ifdef FEAT_GUI
2944 /* may unshow different cursor shape */
2945 if (gui.in_use && shape_changed)
2946 gui_update_cursor(TRUE, FALSE);
2947#endif
2948
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002949 --vgetc_busy;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950
2951 return c;
2952}
2953
2954/*
2955 * inchar() - get one character from
2956 * 1. a scriptfile
2957 * 2. the keyboard
2958 *
2959 * As much characters as we can get (upto 'maxlen') are put in "buf" and
2960 * NUL terminated (buffer length must be 'maxlen' + 1).
2961 * Minimum for "maxlen" is 3!!!!
2962 *
2963 * "tb_change_cnt" is the value of typebuf.tb_change_cnt if "buf" points into
2964 * it. When typebuf.tb_change_cnt changes (e.g., when a message is received
2965 * from a remote client) "buf" can no longer be used. "tb_change_cnt" is 0
2966 * otherwise.
2967 *
2968 * If we got an interrupt all input is read until none is available.
2969 *
2970 * If wait_time == 0 there is no waiting for the char.
2971 * If wait_time == n we wait for n msec for a character to arrive.
2972 * If wait_time == -1 we wait forever for a character to arrive.
2973 *
2974 * Return the number of obtained characters.
2975 * Return -1 when end of input script reached.
2976 */
2977 int
2978inchar(buf, maxlen, wait_time, tb_change_cnt)
2979 char_u *buf;
2980 int maxlen;
2981 long wait_time; /* milli seconds */
2982 int tb_change_cnt;
2983{
2984 int len = 0; /* init for GCC */
2985 int retesc = FALSE; /* return ESC with gotint */
2986 int script_char;
2987
2988 if (wait_time == -1L || wait_time > 100L) /* flush output before waiting */
2989 {
2990 cursor_on();
2991 out_flush();
2992#ifdef FEAT_GUI
2993 if (gui.in_use)
2994 {
2995 gui_update_cursor(FALSE, FALSE);
2996# ifdef FEAT_MOUSESHAPE
2997 if (postponed_mouseshape)
2998 update_mouseshape(-1);
2999# endif
3000 }
3001#endif
3002 }
3003
3004 /*
3005 * Don't reset these when at the hit-return prompt, otherwise a endless
3006 * recursive loop may result (write error in swapfile, hit-return, timeout
3007 * on char wait, flush swapfile, write error....).
3008 */
3009 if (State != HITRETURN)
3010 {
3011 did_outofmem_msg = FALSE; /* display out of memory message (again) */
3012 did_swapwrite_msg = FALSE; /* display swap file write error again */
3013 }
3014 undo_off = FALSE; /* restart undo now */
3015
3016 /*
Bram Moolenaaree3f7a52008-01-01 13:17:56 +00003017 * Get a character from a script file if there is one.
3018 * If interrupted: Stop reading script files, close them all.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019 */
3020 script_char = -1;
Bram Moolenaaree3f7a52008-01-01 13:17:56 +00003021 while (scriptin[curscript] != NULL && script_char < 0
3022#ifdef FEAT_EVAL
3023 && !ignore_script
3024#endif
3025 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00003027
3028#if defined(FEAT_NETBEANS_INTG)
3029 /* Process the queued netbeans messages. */
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003030 netbeans_parse_messages();
Bram Moolenaarf2330482008-06-24 20:19:36 +00003031#endif
3032
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 if (got_int || (script_char = getc(scriptin[curscript])) < 0)
3034 {
3035 /* Reached EOF.
3036 * Careful: closescript() frees typebuf.tb_buf[] and buf[] may
3037 * point inside typebuf.tb_buf[]. Don't use buf[] after this! */
3038 closescript();
3039 /*
3040 * When reading script file is interrupted, return an ESC to get
3041 * back to normal mode.
3042 * Otherwise return -1, because typebuf.tb_buf[] has changed.
3043 */
3044 if (got_int)
3045 retesc = TRUE;
3046 else
3047 return -1;
3048 }
3049 else
3050 {
3051 buf[0] = script_char;
3052 len = 1;
3053 }
3054 }
3055
3056 if (script_char < 0) /* did not get a character from script */
3057 {
3058 /*
3059 * If we got an interrupt, skip all previously typed characters and
3060 * return TRUE if quit reading script file.
3061 * Stop reading typeahead when a single CTRL-C was read,
3062 * fill_input_buf() returns this when not able to read from stdin.
3063 * Don't use buf[] here, closescript() may have freed typebuf.tb_buf[]
3064 * and buf may be pointing inside typebuf.tb_buf[].
3065 */
3066 if (got_int)
3067 {
3068#define DUM_LEN MAXMAPLEN * 3 + 3
3069 char_u dum[DUM_LEN + 1];
3070
3071 for (;;)
3072 {
3073 len = ui_inchar(dum, DUM_LEN, 0L, 0);
3074 if (len == 0 || (len == 1 && dum[0] == 3))
3075 break;
3076 }
3077 return retesc;
3078 }
3079
3080 /*
3081 * Always flush the output characters when getting input characters
3082 * from the user.
3083 */
3084 out_flush();
3085
3086 /*
3087 * Fill up to a third of the buffer, because each character may be
3088 * tripled below.
3089 */
3090 len = ui_inchar(buf, maxlen / 3, wait_time, tb_change_cnt);
3091 }
3092
3093 if (typebuf_changed(tb_change_cnt))
3094 return 0;
3095
3096 return fix_input_buffer(buf, len, script_char >= 0);
3097}
3098
3099/*
3100 * Fix typed characters for use by vgetc() and check_termcode().
3101 * buf[] must have room to triple the number of bytes!
3102 * Returns the new length.
3103 */
3104 int
3105fix_input_buffer(buf, len, script)
3106 char_u *buf;
3107 int len;
3108 int script; /* TRUE when reading from a script */
3109{
3110 int i;
3111 char_u *p = buf;
3112
3113 /*
3114 * Two characters are special: NUL and K_SPECIAL.
3115 * When compiled With the GUI CSI is also special.
3116 * Replace NUL by K_SPECIAL KS_ZERO KE_FILLER
3117 * Replace K_SPECIAL by K_SPECIAL KS_SPECIAL KE_FILLER
3118 * Replace CSI by K_SPECIAL KS_EXTRA KE_CSI
3119 * Don't replace K_SPECIAL when reading a script file.
3120 */
3121 for (i = len; --i >= 0; ++p)
3122 {
3123#ifdef FEAT_GUI
3124 /* When the GUI is used any character can come after a CSI, don't
3125 * escape it. */
3126 if (gui.in_use && p[0] == CSI && i >= 2)
3127 {
3128 p += 2;
3129 i -= 2;
3130 }
3131 /* When the GUI is not used CSI needs to be escaped. */
3132 else if (!gui.in_use && p[0] == CSI)
3133 {
3134 mch_memmove(p + 3, p + 1, (size_t)i);
3135 *p++ = K_SPECIAL;
3136 *p++ = KS_EXTRA;
3137 *p = (int)KE_CSI;
3138 len += 2;
3139 }
3140 else
3141#endif
3142 if (p[0] == NUL || (p[0] == K_SPECIAL && !script
Bram Moolenaar28a37ff2005-03-15 22:28:00 +00003143#ifdef FEAT_AUTOCMD
3144 /* timeout may generate K_CURSORHOLD */
3145 && (i < 2 || p[1] != KS_EXTRA || p[2] != (int)KE_CURSORHOLD)
3146#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147#if defined(WIN3264) && !defined(FEAT_GUI)
3148 /* Win32 console passes modifiers */
3149 && (i < 2 || p[1] != KS_MODIFIER)
3150#endif
3151 ))
3152 {
3153 mch_memmove(p + 3, p + 1, (size_t)i);
3154 p[2] = K_THIRD(p[0]);
3155 p[1] = K_SECOND(p[0]);
3156 p[0] = K_SPECIAL;
3157 p += 2;
3158 len += 2;
3159 }
3160 }
3161 *p = NUL; /* add trailing NUL */
3162 return len;
3163}
3164
3165#if defined(USE_INPUT_BUF) || defined(PROTO)
3166/*
3167 * Return TRUE when bytes are in the input buffer or in the typeahead buffer.
3168 * Normally the input buffer would be sufficient, but the server_to_input_buf()
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003169 * or feedkeys() may insert characters in the typeahead buffer while we are
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003170 * waiting for input to arrive.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171 */
3172 int
3173input_available()
3174{
3175 return (!vim_is_input_buf_empty()
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003176# if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
3177 || typebuf_was_filled
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178# endif
3179 );
3180}
3181#endif
3182
3183/*
3184 * map[!] : show all key mappings
3185 * map[!] {lhs} : show key mapping for {lhs}
3186 * map[!] {lhs} {rhs} : set key mapping for {lhs} to {rhs}
3187 * noremap[!] {lhs} {rhs} : same, but no remapping for {rhs}
3188 * unmap[!] {lhs} : remove key mapping for {lhs}
3189 * abbr : show all abbreviations
3190 * abbr {lhs} : show abbreviations for {lhs}
3191 * abbr {lhs} {rhs} : set abbreviation for {lhs} to {rhs}
3192 * noreabbr {lhs} {rhs} : same, but no remapping for {rhs}
3193 * unabbr {lhs} : remove abbreviation for {lhs}
3194 *
3195 * maptype: 0 for :map, 1 for :unmap, 2 for noremap.
3196 *
3197 * arg is pointer to any arguments. Note: arg cannot be a read-only string,
3198 * it will be modified.
3199 *
Bram Moolenaar371d5402006-03-20 21:47:49 +00003200 * for :map mode is NORMAL + VISUAL + SELECTMODE + OP_PENDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 * for :map! mode is INSERT + CMDLINE
3202 * for :cmap mode is CMDLINE
3203 * for :imap mode is INSERT
3204 * for :lmap mode is LANGMAP
3205 * for :nmap mode is NORMAL
Bram Moolenaar371d5402006-03-20 21:47:49 +00003206 * for :vmap mode is VISUAL + SELECTMODE
3207 * for :xmap mode is VISUAL
3208 * for :smap mode is SELECTMODE
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209 * for :omap mode is OP_PENDING
3210 *
3211 * for :abbr mode is INSERT + CMDLINE
3212 * for :iabbr mode is INSERT
3213 * for :cabbr mode is CMDLINE
3214 *
3215 * Return 0 for success
3216 * 1 for invalid arguments
3217 * 2 for no match
3218 * 4 for out of mem
3219 * 5 for entry not unique
3220 */
3221 int
3222do_map(maptype, arg, mode, abbrev)
3223 int maptype;
3224 char_u *arg;
3225 int mode;
3226 int abbrev; /* not a mapping but an abbreviation */
3227{
3228 char_u *keys;
3229 mapblock_T *mp, **mpp;
3230 char_u *rhs;
3231 char_u *p;
3232 int n;
3233 int len = 0; /* init for GCC */
3234 char_u *newstr;
3235 int hasarg;
3236 int haskey;
3237 int did_it = FALSE;
3238#ifdef FEAT_LOCALMAP
3239 int did_local = FALSE;
3240#endif
3241 int round;
3242 char_u *keys_buf = NULL;
3243 char_u *arg_buf = NULL;
3244 int retval = 0;
3245 int do_backslash;
3246 int hash;
3247 int new_hash;
3248 mapblock_T **abbr_table;
3249 mapblock_T **map_table;
3250 int unique = FALSE;
Bram Moolenaar72179e12013-06-29 13:58:31 +02003251 int nowait = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 int silent = FALSE;
Bram Moolenaar9c102382006-05-03 21:26:49 +00003253 int special = FALSE;
Bram Moolenaar4e427192006-03-10 21:34:27 +00003254#ifdef FEAT_EVAL
3255 int expr = FALSE;
3256#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257 int noremap;
Bram Moolenaarbd743252010-10-20 21:23:33 +02003258 char_u *orig_rhs;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259
3260 keys = arg;
3261 map_table = maphash;
3262 abbr_table = &first_abbr;
3263
3264 /* For ":noremap" don't remap, otherwise do remap. */
3265 if (maptype == 2)
3266 noremap = REMAP_NONE;
3267 else
3268 noremap = REMAP_YES;
3269
Bram Moolenaar72179e12013-06-29 13:58:31 +02003270 /* Accept <buffer>, <nowait>, <silent>, <expr> <script> and <unique> in
3271 * any order. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003272 for (;;)
3273 {
3274#ifdef FEAT_LOCALMAP
3275 /*
3276 * Check for "<buffer>": mapping local to buffer.
3277 */
3278 if (STRNCMP(keys, "<buffer>", 8) == 0)
3279 {
3280 keys = skipwhite(keys + 8);
3281 map_table = curbuf->b_maphash;
3282 abbr_table = &curbuf->b_first_abbr;
3283 continue;
3284 }
3285#endif
3286
3287 /*
Bram Moolenaar72179e12013-06-29 13:58:31 +02003288 * Check for "<nowait>": don't wait for more characters.
3289 */
3290 if (STRNCMP(keys, "<nowait>", 8) == 0)
3291 {
3292 keys = skipwhite(keys + 8);
3293 nowait = TRUE;
3294 continue;
3295 }
3296
3297 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298 * Check for "<silent>": don't echo commands.
3299 */
3300 if (STRNCMP(keys, "<silent>", 8) == 0)
3301 {
3302 keys = skipwhite(keys + 8);
3303 silent = TRUE;
3304 continue;
3305 }
3306
Bram Moolenaar9c102382006-05-03 21:26:49 +00003307 /*
3308 * Check for "<special>": accept special keys in <>
3309 */
3310 if (STRNCMP(keys, "<special>", 9) == 0)
3311 {
3312 keys = skipwhite(keys + 9);
3313 special = TRUE;
3314 continue;
3315 }
3316
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317#ifdef FEAT_EVAL
3318 /*
3319 * Check for "<script>": remap script-local mappings only
3320 */
3321 if (STRNCMP(keys, "<script>", 8) == 0)
3322 {
3323 keys = skipwhite(keys + 8);
3324 noremap = REMAP_SCRIPT;
3325 continue;
3326 }
Bram Moolenaar4e427192006-03-10 21:34:27 +00003327
3328 /*
3329 * Check for "<expr>": {rhs} is an expression.
3330 */
3331 if (STRNCMP(keys, "<expr>", 6) == 0)
3332 {
3333 keys = skipwhite(keys + 6);
3334 expr = TRUE;
3335 continue;
3336 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337#endif
3338 /*
3339 * Check for "<unique>": don't overwrite an existing mapping.
3340 */
3341 if (STRNCMP(keys, "<unique>", 8) == 0)
3342 {
3343 keys = skipwhite(keys + 8);
3344 unique = TRUE;
3345 continue;
3346 }
3347 break;
3348 }
3349
3350 validate_maphash();
3351
3352 /*
Bram Moolenaarf6f4a012011-08-17 17:18:20 +02003353 * Find end of keys and skip CTRL-Vs (and backslashes) in it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003354 * Accept backslash like CTRL-V when 'cpoptions' does not contain 'B'.
Bram Moolenaarf6f4a012011-08-17 17:18:20 +02003355 * with :unmap white space is included in the keys, no argument possible.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356 */
3357 p = keys;
3358 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL);
3359 while (*p && (maptype == 1 || !vim_iswhite(*p)))
3360 {
3361 if ((p[0] == Ctrl_V || (do_backslash && p[0] == '\\')) &&
3362 p[1] != NUL)
3363 ++p; /* skip CTRL-V or backslash */
3364 ++p;
3365 }
3366 if (*p != NUL)
3367 *p++ = NUL;
Bram Moolenaarbd743252010-10-20 21:23:33 +02003368
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369 p = skipwhite(p);
3370 rhs = p;
3371 hasarg = (*rhs != NUL);
3372 haskey = (*keys != NUL);
3373
3374 /* check for :unmap without argument */
3375 if (maptype == 1 && !haskey)
3376 {
3377 retval = 1;
3378 goto theend;
3379 }
3380
3381 /*
3382 * If mapping has been given as ^V<C_UP> say, then replace the term codes
3383 * with the appropriate two bytes. If it is a shifted special key, unshift
3384 * it too, giving another two bytes.
3385 * replace_termcodes() may move the result to allocated memory, which
3386 * needs to be freed later (*keys_buf and *arg_buf).
3387 * replace_termcodes() also removes CTRL-Vs and sometimes backslashes.
3388 */
3389 if (haskey)
Bram Moolenaar9c102382006-05-03 21:26:49 +00003390 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE, special);
Bram Moolenaarb3ae56c2010-10-27 17:39:05 +02003391 orig_rhs = rhs;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392 if (hasarg)
3393 {
3394 if (STRICMP(rhs, "<nop>") == 0) /* "<Nop>" means nothing */
3395 rhs = (char_u *)"";
3396 else
Bram Moolenaar9c102382006-05-03 21:26:49 +00003397 rhs = replace_termcodes(rhs, &arg_buf, FALSE, TRUE, special);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 }
3399
3400#ifdef FEAT_FKMAP
3401 /*
Bram Moolenaarbd743252010-10-20 21:23:33 +02003402 * When in right-to-left mode and alternate keymap option set,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 * reverse the character flow in the rhs in Farsi.
3404 */
3405 if (p_altkeymap && curwin->w_p_rl)
3406 lrswap(rhs);
3407#endif
3408
3409 /*
3410 * check arguments and translate function keys
3411 */
3412 if (haskey)
3413 {
3414 len = (int)STRLEN(keys);
3415 if (len > MAXMAPLEN) /* maximum length of MAXMAPLEN chars */
3416 {
3417 retval = 1;
3418 goto theend;
3419 }
3420
3421 if (abbrev && maptype != 1)
3422 {
3423 /*
3424 * If an abbreviation ends in a keyword character, the
3425 * rest must be all keyword-char or all non-keyword-char.
3426 * Otherwise we won't be able to find the start of it in a
3427 * vi-compatible way.
3428 */
3429#ifdef FEAT_MBYTE
3430 if (has_mbyte)
3431 {
3432 int first, last;
3433 int same = -1;
3434
3435 first = vim_iswordp(keys);
3436 last = first;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003437 p = keys + (*mb_ptr2len)(keys);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438 n = 1;
3439 while (p < keys + len)
3440 {
3441 ++n; /* nr of (multi-byte) chars */
3442 last = vim_iswordp(p); /* type of last char */
3443 if (same == -1 && last != first)
3444 same = n - 1; /* count of same char type */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003445 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446 }
3447 if (last && n > 2 && same >= 0 && same < n - 1)
3448 {
3449 retval = 1;
3450 goto theend;
3451 }
3452 }
3453 else
3454#endif
3455 if (vim_iswordc(keys[len - 1])) /* ends in keyword char */
3456 for (n = 0; n < len - 2; ++n)
3457 if (vim_iswordc(keys[n]) != vim_iswordc(keys[len - 2]))
3458 {
3459 retval = 1;
3460 goto theend;
3461 }
Bram Moolenaarf6f95d92009-11-11 15:23:37 +00003462 /* An abbreviation cannot contain white space. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 for (n = 0; n < len; ++n)
3464 if (vim_iswhite(keys[n]))
3465 {
3466 retval = 1;
3467 goto theend;
3468 }
3469 }
3470 }
3471
3472 if (haskey && hasarg && abbrev) /* if we will add an abbreviation */
3473 no_abbr = FALSE; /* reset flag that indicates there are
3474 no abbreviations */
3475
3476 if (!haskey || (maptype != 1 && !hasarg))
3477 msg_start();
3478
3479#ifdef FEAT_LOCALMAP
3480 /*
3481 * Check if a new local mapping wasn't already defined globally.
3482 */
3483 if (map_table == curbuf->b_maphash && haskey && hasarg && maptype != 1)
3484 {
3485 /* need to loop over all global hash lists */
3486 for (hash = 0; hash < 256 && !got_int; ++hash)
3487 {
3488 if (abbrev)
3489 {
3490 if (hash != 0) /* there is only one abbreviation list */
3491 break;
3492 mp = first_abbr;
3493 }
3494 else
3495 mp = maphash[hash];
3496 for ( ; mp != NULL && !got_int; mp = mp->m_next)
3497 {
3498 /* check entries with the same mode */
3499 if ((mp->m_mode & mode) != 0
3500 && mp->m_keylen == len
3501 && unique
3502 && STRNCMP(mp->m_keys, keys, (size_t)len) == 0)
3503 {
3504 if (abbrev)
3505 EMSG2(_("E224: global abbreviation already exists for %s"),
3506 mp->m_keys);
3507 else
3508 EMSG2(_("E225: global mapping already exists for %s"),
3509 mp->m_keys);
3510 retval = 5;
3511 goto theend;
3512 }
3513 }
3514 }
3515 }
3516
3517 /*
3518 * When listing global mappings, also list buffer-local ones here.
3519 */
3520 if (map_table != curbuf->b_maphash && !hasarg && maptype != 1)
3521 {
3522 /* need to loop over all global hash lists */
3523 for (hash = 0; hash < 256 && !got_int; ++hash)
3524 {
3525 if (abbrev)
3526 {
3527 if (hash != 0) /* there is only one abbreviation list */
3528 break;
3529 mp = curbuf->b_first_abbr;
3530 }
3531 else
3532 mp = curbuf->b_maphash[hash];
3533 for ( ; mp != NULL && !got_int; mp = mp->m_next)
3534 {
3535 /* check entries with the same mode */
3536 if ((mp->m_mode & mode) != 0)
3537 {
3538 if (!haskey) /* show all entries */
3539 {
3540 showmap(mp, TRUE);
3541 did_local = TRUE;
3542 }
3543 else
3544 {
3545 n = mp->m_keylen;
3546 if (STRNCMP(mp->m_keys, keys,
3547 (size_t)(n < len ? n : len)) == 0)
3548 {
3549 showmap(mp, TRUE);
3550 did_local = TRUE;
3551 }
3552 }
3553 }
3554 }
3555 }
3556 }
3557#endif
3558
3559 /*
3560 * Find an entry in the maphash[] list that matches.
3561 * For :unmap we may loop two times: once to try to unmap an entry with a
3562 * matching 'from' part, a second time, if the first fails, to unmap an
3563 * entry with a matching 'to' part. This was done to allow ":ab foo bar"
3564 * to be unmapped by typing ":unab foo", where "foo" will be replaced by
3565 * "bar" because of the abbreviation.
3566 */
3567 for (round = 0; (round == 0 || maptype == 1) && round <= 1
3568 && !did_it && !got_int; ++round)
3569 {
3570 /* need to loop over all hash lists */
3571 for (hash = 0; hash < 256 && !got_int; ++hash)
3572 {
3573 if (abbrev)
3574 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003575 if (hash > 0) /* there is only one abbreviation list */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576 break;
3577 mpp = abbr_table;
3578 }
3579 else
3580 mpp = &(map_table[hash]);
3581 for (mp = *mpp; mp != NULL && !got_int; mp = *mpp)
3582 {
3583
3584 if (!(mp->m_mode & mode)) /* skip entries with wrong mode */
3585 {
3586 mpp = &(mp->m_next);
3587 continue;
3588 }
3589 if (!haskey) /* show all entries */
3590 {
3591 showmap(mp, map_table != maphash);
3592 did_it = TRUE;
3593 }
3594 else /* do we have a match? */
3595 {
3596 if (round) /* second round: Try unmap "rhs" string */
3597 {
3598 n = (int)STRLEN(mp->m_str);
3599 p = mp->m_str;
3600 }
3601 else
3602 {
3603 n = mp->m_keylen;
3604 p = mp->m_keys;
3605 }
3606 if (STRNCMP(p, keys, (size_t)(n < len ? n : len)) == 0)
3607 {
3608 if (maptype == 1) /* delete entry */
3609 {
3610 /* Only accept a full match. For abbreviations we
3611 * ignore trailing space when matching with the
3612 * "lhs", since an abbreviation can't have
3613 * trailing space. */
3614 if (n != len && (!abbrev || round || n > len
3615 || *skipwhite(keys + n) != NUL))
3616 {
3617 mpp = &(mp->m_next);
3618 continue;
3619 }
3620 /*
3621 * We reset the indicated mode bits. If nothing is
3622 * left the entry is deleted below.
3623 */
3624 mp->m_mode &= ~mode;
3625 did_it = TRUE; /* remember we did something */
3626 }
3627 else if (!hasarg) /* show matching entry */
3628 {
3629 showmap(mp, map_table != maphash);
3630 did_it = TRUE;
3631 }
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00003632 else if (n != len) /* new entry is ambiguous */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 {
3634 mpp = &(mp->m_next);
3635 continue;
3636 }
3637 else if (unique)
3638 {
3639 if (abbrev)
3640 EMSG2(_("E226: abbreviation already exists for %s"),
3641 p);
3642 else
3643 EMSG2(_("E227: mapping already exists for %s"), p);
3644 retval = 5;
3645 goto theend;
3646 }
3647 else /* new rhs for existing entry */
3648 {
3649 mp->m_mode &= ~mode; /* remove mode bits */
3650 if (mp->m_mode == 0 && !did_it) /* reuse entry */
3651 {
3652 newstr = vim_strsave(rhs);
3653 if (newstr == NULL)
3654 {
3655 retval = 4; /* no mem */
3656 goto theend;
3657 }
3658 vim_free(mp->m_str);
3659 mp->m_str = newstr;
Bram Moolenaarbd743252010-10-20 21:23:33 +02003660 vim_free(mp->m_orig_str);
3661 mp->m_orig_str = vim_strsave(orig_rhs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003662 mp->m_noremap = noremap;
Bram Moolenaar72179e12013-06-29 13:58:31 +02003663 mp->m_nowait = nowait;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664 mp->m_silent = silent;
3665 mp->m_mode = mode;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00003666#ifdef FEAT_EVAL
Bram Moolenaar4e427192006-03-10 21:34:27 +00003667 mp->m_expr = expr;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00003668 mp->m_script_ID = current_SID;
3669#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670 did_it = TRUE;
3671 }
3672 }
3673 if (mp->m_mode == 0) /* entry can be deleted */
3674 {
3675 map_free(mpp);
3676 continue; /* continue with *mpp */
3677 }
3678
3679 /*
3680 * May need to put this entry into another hash list.
3681 */
3682 new_hash = MAP_HASH(mp->m_mode, mp->m_keys[0]);
3683 if (!abbrev && new_hash != hash)
3684 {
3685 *mpp = mp->m_next;
3686 mp->m_next = map_table[new_hash];
3687 map_table[new_hash] = mp;
3688
3689 continue; /* continue with *mpp */
3690 }
3691 }
3692 }
3693 mpp = &(mp->m_next);
3694 }
3695 }
3696 }
3697
3698 if (maptype == 1) /* delete entry */
3699 {
3700 if (!did_it)
3701 retval = 2; /* no match */
3702 goto theend;
3703 }
3704
3705 if (!haskey || !hasarg) /* print entries */
3706 {
3707 if (!did_it
3708#ifdef FEAT_LOCALMAP
3709 && !did_local
3710#endif
3711 )
3712 {
3713 if (abbrev)
3714 MSG(_("No abbreviation found"));
3715 else
3716 MSG(_("No mapping found"));
3717 }
3718 goto theend; /* listing finished */
3719 }
3720
3721 if (did_it) /* have added the new entry already */
3722 goto theend;
3723
3724 /*
3725 * Get here when adding a new entry to the maphash[] list or abbrlist.
3726 */
3727 mp = (mapblock_T *)alloc((unsigned)sizeof(mapblock_T));
3728 if (mp == NULL)
3729 {
3730 retval = 4; /* no mem */
3731 goto theend;
3732 }
3733
3734 /* If CTRL-C has been mapped, don't always use it for Interrupting */
3735 if (*keys == Ctrl_C)
3736 mapped_ctrl_c = TRUE;
3737
3738 mp->m_keys = vim_strsave(keys);
3739 mp->m_str = vim_strsave(rhs);
Bram Moolenaarbd743252010-10-20 21:23:33 +02003740 mp->m_orig_str = vim_strsave(orig_rhs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 if (mp->m_keys == NULL || mp->m_str == NULL)
3742 {
3743 vim_free(mp->m_keys);
3744 vim_free(mp->m_str);
Bram Moolenaarbd743252010-10-20 21:23:33 +02003745 vim_free(mp->m_orig_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 vim_free(mp);
3747 retval = 4; /* no mem */
3748 goto theend;
3749 }
3750 mp->m_keylen = (int)STRLEN(mp->m_keys);
3751 mp->m_noremap = noremap;
Bram Moolenaar72179e12013-06-29 13:58:31 +02003752 mp->m_nowait = nowait;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753 mp->m_silent = silent;
3754 mp->m_mode = mode;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00003755#ifdef FEAT_EVAL
Bram Moolenaar4e427192006-03-10 21:34:27 +00003756 mp->m_expr = expr;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00003757 mp->m_script_ID = current_SID;
3758#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759
3760 /* add the new entry in front of the abbrlist or maphash[] list */
3761 if (abbrev)
3762 {
3763 mp->m_next = *abbr_table;
3764 *abbr_table = mp;
3765 }
3766 else
3767 {
3768 n = MAP_HASH(mp->m_mode, mp->m_keys[0]);
3769 mp->m_next = map_table[n];
3770 map_table[n] = mp;
3771 }
3772
3773theend:
3774 vim_free(keys_buf);
3775 vim_free(arg_buf);
3776 return retval;
3777}
3778
3779/*
3780 * Delete one entry from the abbrlist or maphash[].
3781 * "mpp" is a pointer to the m_next field of the PREVIOUS entry!
3782 */
3783 static void
3784map_free(mpp)
3785 mapblock_T **mpp;
3786{
3787 mapblock_T *mp;
3788
3789 mp = *mpp;
3790 vim_free(mp->m_keys);
3791 vim_free(mp->m_str);
Bram Moolenaarbd743252010-10-20 21:23:33 +02003792 vim_free(mp->m_orig_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 *mpp = mp->m_next;
3794 vim_free(mp);
3795}
3796
3797/*
3798 * Initialize maphash[] for first use.
3799 */
3800 static void
3801validate_maphash()
3802{
3803 if (!maphash_valid)
3804 {
3805 vim_memset(maphash, 0, sizeof(maphash));
3806 maphash_valid = TRUE;
3807 }
3808}
3809
3810/*
3811 * Get the mapping mode from the command name.
3812 */
3813 int
3814get_map_mode(cmdp, forceit)
3815 char_u **cmdp;
3816 int forceit;
3817{
3818 char_u *p;
3819 int modec;
3820 int mode;
3821
3822 p = *cmdp;
3823 modec = *p++;
3824 if (modec == 'i')
3825 mode = INSERT; /* :imap */
3826 else if (modec == 'l')
3827 mode = LANGMAP; /* :lmap */
3828 else if (modec == 'c')
3829 mode = CMDLINE; /* :cmap */
3830 else if (modec == 'n' && *p != 'o') /* avoid :noremap */
3831 mode = NORMAL; /* :nmap */
3832 else if (modec == 'v')
Bram Moolenaar371d5402006-03-20 21:47:49 +00003833 mode = VISUAL + SELECTMODE; /* :vmap */
3834 else if (modec == 'x')
3835 mode = VISUAL; /* :xmap */
3836 else if (modec == 's')
3837 mode = SELECTMODE; /* :smap */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003838 else if (modec == 'o')
3839 mode = OP_PENDING; /* :omap */
3840 else
3841 {
3842 --p;
3843 if (forceit)
3844 mode = INSERT + CMDLINE; /* :map ! */
3845 else
Bram Moolenaar371d5402006-03-20 21:47:49 +00003846 mode = VISUAL + SELECTMODE + NORMAL + OP_PENDING;/* :map */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847 }
3848
3849 *cmdp = p;
3850 return mode;
3851}
3852
3853/*
3854 * Clear all mappings or abbreviations.
3855 * 'abbr' should be FALSE for mappings, TRUE for abbreviations.
3856 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 void
3858map_clear(cmdp, arg, forceit, abbr)
3859 char_u *cmdp;
Bram Moolenaard31aca22009-07-14 11:44:30 +00003860 char_u *arg UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861 int forceit;
3862 int abbr;
3863{
3864 int mode;
3865#ifdef FEAT_LOCALMAP
3866 int local;
3867
3868 local = (STRCMP(arg, "<buffer>") == 0);
3869 if (!local && *arg != NUL)
3870 {
3871 EMSG(_(e_invarg));
3872 return;
3873 }
3874#endif
3875
3876 mode = get_map_mode(&cmdp, forceit);
3877 map_clear_int(curbuf, mode,
3878#ifdef FEAT_LOCALMAP
3879 local,
3880#else
3881 FALSE,
3882#endif
3883 abbr);
3884}
3885
3886/*
3887 * Clear all mappings in "mode".
3888 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889 void
3890map_clear_int(buf, mode, local, abbr)
Bram Moolenaard31aca22009-07-14 11:44:30 +00003891 buf_T *buf UNUSED; /* buffer for local mappings */
3892 int mode; /* mode in which to delete */
3893 int local UNUSED; /* TRUE for buffer-local mappings */
3894 int abbr; /* TRUE for abbreviations */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895{
3896 mapblock_T *mp, **mpp;
3897 int hash;
3898 int new_hash;
3899
3900 validate_maphash();
3901
3902 for (hash = 0; hash < 256; ++hash)
3903 {
3904 if (abbr)
3905 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003906 if (hash > 0) /* there is only one abbrlist */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907 break;
3908#ifdef FEAT_LOCALMAP
3909 if (local)
3910 mpp = &buf->b_first_abbr;
3911 else
3912#endif
3913 mpp = &first_abbr;
3914 }
3915 else
3916 {
3917#ifdef FEAT_LOCALMAP
3918 if (local)
3919 mpp = &buf->b_maphash[hash];
3920 else
3921#endif
3922 mpp = &maphash[hash];
3923 }
3924 while (*mpp != NULL)
3925 {
3926 mp = *mpp;
3927 if (mp->m_mode & mode)
3928 {
3929 mp->m_mode &= ~mode;
3930 if (mp->m_mode == 0) /* entry can be deleted */
3931 {
3932 map_free(mpp);
3933 continue;
3934 }
3935 /*
3936 * May need to put this entry into another hash list.
3937 */
3938 new_hash = MAP_HASH(mp->m_mode, mp->m_keys[0]);
3939 if (!abbr && new_hash != hash)
3940 {
3941 *mpp = mp->m_next;
3942#ifdef FEAT_LOCALMAP
3943 if (local)
3944 {
3945 mp->m_next = buf->b_maphash[new_hash];
3946 buf->b_maphash[new_hash] = mp;
3947 }
3948 else
3949#endif
3950 {
3951 mp->m_next = maphash[new_hash];
3952 maphash[new_hash] = mp;
3953 }
3954 continue; /* continue with *mpp */
3955 }
3956 }
3957 mpp = &(mp->m_next);
3958 }
3959 }
3960}
3961
Bram Moolenaarbd743252010-10-20 21:23:33 +02003962/*
3963 * Return characters to represent the map mode in an allocated string.
3964 * Returns NULL when out of memory.
3965 */
3966 char_u *
3967map_mode_to_chars(mode)
3968 int mode;
3969{
3970 garray_T mapmode;
3971
3972 ga_init2(&mapmode, 1, 7);
3973
3974 if ((mode & (INSERT + CMDLINE)) == INSERT + CMDLINE)
3975 ga_append(&mapmode, '!'); /* :map! */
3976 else if (mode & INSERT)
3977 ga_append(&mapmode, 'i'); /* :imap */
3978 else if (mode & LANGMAP)
3979 ga_append(&mapmode, 'l'); /* :lmap */
3980 else if (mode & CMDLINE)
3981 ga_append(&mapmode, 'c'); /* :cmap */
3982 else if ((mode & (NORMAL + VISUAL + SELECTMODE + OP_PENDING))
3983 == NORMAL + VISUAL + SELECTMODE + OP_PENDING)
3984 ga_append(&mapmode, ' '); /* :map */
3985 else
3986 {
3987 if (mode & NORMAL)
3988 ga_append(&mapmode, 'n'); /* :nmap */
3989 if (mode & OP_PENDING)
3990 ga_append(&mapmode, 'o'); /* :omap */
3991 if ((mode & (VISUAL + SELECTMODE)) == VISUAL + SELECTMODE)
3992 ga_append(&mapmode, 'v'); /* :vmap */
3993 else
3994 {
3995 if (mode & VISUAL)
3996 ga_append(&mapmode, 'x'); /* :xmap */
3997 if (mode & SELECTMODE)
3998 ga_append(&mapmode, 's'); /* :smap */
3999 }
4000 }
4001
4002 ga_append(&mapmode, NUL);
4003 return (char_u *)mapmode.ga_data;
4004}
4005
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006 static void
4007showmap(mp, local)
4008 mapblock_T *mp;
4009 int local; /* TRUE for buffer-local map */
4010{
Bram Moolenaarbd743252010-10-20 21:23:33 +02004011 int len = 1;
4012 char_u *mapchars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013
4014 if (msg_didout || msg_silent != 0)
Bram Moolenaarfa47a922009-02-22 22:43:27 +00004015 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004016 msg_putchar('\n');
Bram Moolenaarfa47a922009-02-22 22:43:27 +00004017 if (got_int) /* 'q' typed at MORE prompt */
4018 return;
4019 }
Bram Moolenaarbd743252010-10-20 21:23:33 +02004020
4021 mapchars = map_mode_to_chars(mp->m_mode);
4022 if (mapchars != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023 {
Bram Moolenaarbd743252010-10-20 21:23:33 +02004024 msg_puts(mapchars);
Bram Moolenaar6b5ef062010-10-27 12:18:00 +02004025 len = (int)STRLEN(mapchars);
Bram Moolenaarbd743252010-10-20 21:23:33 +02004026 vim_free(mapchars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027 }
Bram Moolenaarbd743252010-10-20 21:23:33 +02004028
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029 while (++len <= 3)
4030 msg_putchar(' ');
4031
Bram Moolenaarf2330482008-06-24 20:19:36 +00004032 /* Display the LHS. Get length of what we write. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033 len = msg_outtrans_special(mp->m_keys, TRUE);
4034 do
4035 {
4036 msg_putchar(' '); /* padd with blanks */
4037 ++len;
4038 } while (len < 12);
4039
4040 if (mp->m_noremap == REMAP_NONE)
4041 msg_puts_attr((char_u *)"*", hl_attr(HLF_8));
4042 else if (mp->m_noremap == REMAP_SCRIPT)
4043 msg_puts_attr((char_u *)"&", hl_attr(HLF_8));
4044 else
4045 msg_putchar(' ');
4046
4047 if (local)
4048 msg_putchar('@');
4049 else
4050 msg_putchar(' ');
4051
4052 /* Use FALSE below if we only want things like <Up> to show up as such on
Bram Moolenaarbd743252010-10-20 21:23:33 +02004053 * the rhs, and not M-x etc, TRUE gets both -- webb */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054 if (*mp->m_str == NUL)
4055 msg_puts_attr((char_u *)"<Nop>", hl_attr(HLF_8));
4056 else
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02004057 {
4058 /* Remove escaping of CSI, because "m_str" is in a format to be used
4059 * as typeahead. */
4060 char_u *s = vim_strsave(mp->m_str);
4061 if (s != NULL)
4062 {
4063 vim_unescape_csi(s);
4064 msg_outtrans_special(s, FALSE);
4065 vim_free(s);
4066 }
4067 }
Bram Moolenaarae5bce12005-08-15 21:41:48 +00004068#ifdef FEAT_EVAL
4069 if (p_verbose > 0)
4070 last_set_msg(mp->m_script_ID);
4071#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072 out_flush(); /* show one line at a time */
4073}
4074
4075#if defined(FEAT_EVAL) || defined(PROTO)
4076/*
4077 * Return TRUE if a map exists that has "str" in the rhs for mode "modechars".
4078 * Recognize termcap codes in "str".
4079 * Also checks mappings local to the current buffer.
4080 */
4081 int
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004082map_to_exists(str, modechars, abbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083 char_u *str;
4084 char_u *modechars;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004085 int abbr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086{
4087 int mode = 0;
4088 char_u *rhs;
4089 char_u *buf;
4090 int retval;
4091
Bram Moolenaar9c102382006-05-03 21:26:49 +00004092 rhs = replace_termcodes(str, &buf, FALSE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093
4094 if (vim_strchr(modechars, 'n') != NULL)
4095 mode |= NORMAL;
4096 if (vim_strchr(modechars, 'v') != NULL)
Bram Moolenaar371d5402006-03-20 21:47:49 +00004097 mode |= VISUAL + SELECTMODE;
4098 if (vim_strchr(modechars, 'x') != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 mode |= VISUAL;
Bram Moolenaar371d5402006-03-20 21:47:49 +00004100 if (vim_strchr(modechars, 's') != NULL)
4101 mode |= SELECTMODE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 if (vim_strchr(modechars, 'o') != NULL)
4103 mode |= OP_PENDING;
4104 if (vim_strchr(modechars, 'i') != NULL)
4105 mode |= INSERT;
4106 if (vim_strchr(modechars, 'l') != NULL)
4107 mode |= LANGMAP;
4108 if (vim_strchr(modechars, 'c') != NULL)
4109 mode |= CMDLINE;
4110
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004111 retval = map_to_exists_mode(rhs, mode, abbr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 vim_free(buf);
4113
4114 return retval;
4115}
4116#endif
4117
4118/*
4119 * Return TRUE if a map exists that has "str" in the rhs for mode "mode".
4120 * Also checks mappings local to the current buffer.
4121 */
4122 int
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004123map_to_exists_mode(rhs, mode, abbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 char_u *rhs;
4125 int mode;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004126 int abbr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127{
4128 mapblock_T *mp;
4129 int hash;
4130# ifdef FEAT_LOCALMAP
4131 int expand_buffer = FALSE;
4132
4133 validate_maphash();
4134
4135 /* Do it twice: once for global maps and once for local maps. */
4136 for (;;)
4137 {
4138# endif
4139 for (hash = 0; hash < 256; ++hash)
4140 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004141 if (abbr)
4142 {
4143 if (hash > 0) /* there is only one abbr list */
4144 break;
4145#ifdef FEAT_LOCALMAP
4146 if (expand_buffer)
4147 mp = curbuf->b_first_abbr;
4148 else
4149#endif
4150 mp = first_abbr;
4151 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152# ifdef FEAT_LOCALMAP
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004153 else if (expand_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154 mp = curbuf->b_maphash[hash];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155# endif
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004156 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157 mp = maphash[hash];
4158 for (; mp; mp = mp->m_next)
4159 {
4160 if ((mp->m_mode & mode)
4161 && strstr((char *)mp->m_str, (char *)rhs) != NULL)
4162 return TRUE;
4163 }
4164 }
4165# ifdef FEAT_LOCALMAP
4166 if (expand_buffer)
4167 break;
4168 expand_buffer = TRUE;
4169 }
4170# endif
4171
4172 return FALSE;
4173}
4174
4175#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4176/*
4177 * Used below when expanding mapping/abbreviation names.
4178 */
4179static int expand_mapmodes = 0;
4180static int expand_isabbrev = 0;
4181#ifdef FEAT_LOCALMAP
4182static int expand_buffer = FALSE;
4183#endif
4184
4185/*
4186 * Work out what to complete when doing command line completion of mapping
4187 * or abbreviation names.
4188 */
4189 char_u *
4190set_context_in_map_cmd(xp, cmd, arg, forceit, isabbrev, isunmap, cmdidx)
4191 expand_T *xp;
4192 char_u *cmd;
4193 char_u *arg;
4194 int forceit; /* TRUE if '!' given */
4195 int isabbrev; /* TRUE if abbreviation */
4196 int isunmap; /* TRUE if unmap/unabbrev command */
4197 cmdidx_T cmdidx;
4198{
4199 if (forceit && cmdidx != CMD_map && cmdidx != CMD_unmap)
4200 xp->xp_context = EXPAND_NOTHING;
4201 else
4202 {
4203 if (isunmap)
4204 expand_mapmodes = get_map_mode(&cmd, forceit || isabbrev);
4205 else
4206 {
4207 expand_mapmodes = INSERT + CMDLINE;
4208 if (!isabbrev)
Bram Moolenaar371d5402006-03-20 21:47:49 +00004209 expand_mapmodes += VISUAL + SELECTMODE + NORMAL + OP_PENDING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210 }
4211 expand_isabbrev = isabbrev;
4212 xp->xp_context = EXPAND_MAPPINGS;
4213#ifdef FEAT_LOCALMAP
4214 expand_buffer = FALSE;
4215#endif
4216 for (;;)
4217 {
4218#ifdef FEAT_LOCALMAP
4219 if (STRNCMP(arg, "<buffer>", 8) == 0)
4220 {
4221 expand_buffer = TRUE;
4222 arg = skipwhite(arg + 8);
4223 continue;
4224 }
4225#endif
4226 if (STRNCMP(arg, "<unique>", 8) == 0)
4227 {
4228 arg = skipwhite(arg + 8);
4229 continue;
4230 }
Bram Moolenaar72179e12013-06-29 13:58:31 +02004231 if (STRNCMP(arg, "<nowait>", 8) == 0)
4232 {
4233 arg = skipwhite(arg + 8);
4234 continue;
4235 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236 if (STRNCMP(arg, "<silent>", 8) == 0)
4237 {
4238 arg = skipwhite(arg + 8);
4239 continue;
4240 }
Bram Moolenaar4e427192006-03-10 21:34:27 +00004241#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242 if (STRNCMP(arg, "<script>", 8) == 0)
4243 {
4244 arg = skipwhite(arg + 8);
4245 continue;
4246 }
Bram Moolenaar4e427192006-03-10 21:34:27 +00004247 if (STRNCMP(arg, "<expr>", 6) == 0)
4248 {
4249 arg = skipwhite(arg + 6);
4250 continue;
4251 }
4252#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253 break;
4254 }
4255 xp->xp_pattern = arg;
4256 }
4257
4258 return NULL;
4259}
4260
4261/*
4262 * Find all mapping/abbreviation names that match regexp 'prog'.
4263 * For command line expansion of ":[un]map" and ":[un]abbrev" in all modes.
4264 * Return OK if matches found, FAIL otherwise.
4265 */
4266 int
4267ExpandMappings(regmatch, num_file, file)
4268 regmatch_T *regmatch;
4269 int *num_file;
4270 char_u ***file;
4271{
4272 mapblock_T *mp;
4273 int hash;
4274 int count;
4275 int round;
4276 char_u *p;
4277 int i;
4278
4279 validate_maphash();
4280
4281 *num_file = 0; /* return values in case of FAIL */
4282 *file = NULL;
4283
4284 /*
4285 * round == 1: Count the matches.
4286 * round == 2: Build the array to keep the matches.
4287 */
4288 for (round = 1; round <= 2; ++round)
4289 {
4290 count = 0;
4291
Bram Moolenaar72179e12013-06-29 13:58:31 +02004292 for (i = 0; i < 6; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293 {
4294 if (i == 0)
4295 p = (char_u *)"<silent>";
4296 else if (i == 1)
4297 p = (char_u *)"<unique>";
4298#ifdef FEAT_EVAL
4299 else if (i == 2)
4300 p = (char_u *)"<script>";
Bram Moolenaar4e427192006-03-10 21:34:27 +00004301 else if (i == 3)
4302 p = (char_u *)"<expr>";
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303#endif
4304#ifdef FEAT_LOCALMAP
Bram Moolenaar4e427192006-03-10 21:34:27 +00004305 else if (i == 4 && !expand_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306 p = (char_u *)"<buffer>";
4307#endif
Bram Moolenaar72179e12013-06-29 13:58:31 +02004308 else if (i == 5)
4309 p = (char_u *)"<nowait>";
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 else
4311 continue;
4312
4313 if (vim_regexec(regmatch, p, (colnr_T)0))
4314 {
4315 if (round == 1)
4316 ++count;
4317 else
4318 (*file)[count++] = vim_strsave(p);
4319 }
4320 }
4321
4322 for (hash = 0; hash < 256; ++hash)
4323 {
4324 if (expand_isabbrev)
4325 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004326 if (hash > 0) /* only one abbrev list */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327 break; /* for (hash) */
4328 mp = first_abbr;
4329 }
4330#ifdef FEAT_LOCALMAP
4331 else if (expand_buffer)
4332 mp = curbuf->b_maphash[hash];
4333#endif
4334 else
4335 mp = maphash[hash];
4336 for (; mp; mp = mp->m_next)
4337 {
4338 if (mp->m_mode & expand_mapmodes)
4339 {
4340 p = translate_mapping(mp->m_keys, TRUE);
4341 if (p != NULL && vim_regexec(regmatch, p, (colnr_T)0))
4342 {
4343 if (round == 1)
4344 ++count;
4345 else
4346 {
4347 (*file)[count++] = p;
4348 p = NULL;
4349 }
4350 }
4351 vim_free(p);
4352 }
4353 } /* for (mp) */
4354 } /* for (hash) */
4355
4356 if (count == 0) /* no match found */
4357 break; /* for (round) */
4358
4359 if (round == 1)
4360 {
4361 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
4362 if (*file == NULL)
4363 return FAIL;
4364 }
4365 } /* for (round) */
4366
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004367 if (count > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004369 char_u **ptr1;
4370 char_u **ptr2;
4371 char_u **ptr3;
4372
4373 /* Sort the matches */
4374 sort_strings(*file, count);
4375
4376 /* Remove multiple entries */
4377 ptr1 = *file;
4378 ptr2 = ptr1 + 1;
4379 ptr3 = ptr1 + count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380
4381 while (ptr2 < ptr3)
4382 {
4383 if (STRCMP(*ptr1, *ptr2))
4384 *++ptr1 = *ptr2++;
4385 else
4386 {
4387 vim_free(*ptr2++);
4388 count--;
4389 }
4390 }
4391 }
4392
4393 *num_file = count;
4394 return (count == 0 ? FAIL : OK);
4395}
4396#endif /* FEAT_CMDL_COMPL */
4397
4398/*
4399 * Check for an abbreviation.
4400 * Cursor is at ptr[col]. When inserting, mincol is where insert started.
4401 * "c" is the character typed before check_abbr was called. It may have
4402 * ABBR_OFF added to avoid prepending a CTRL-V to it.
4403 *
4404 * Historic vi practice: The last character of an abbreviation must be an id
4405 * character ([a-zA-Z0-9_]). The characters in front of it must be all id
4406 * characters or all non-id characters. This allows for abbr. "#i" to
4407 * "#include".
4408 *
4409 * Vim addition: Allow for abbreviations that end in a non-keyword character.
4410 * Then there must be white space before the abbr.
4411 *
4412 * return TRUE if there is an abbreviation, FALSE if not
4413 */
4414 int
4415check_abbr(c, ptr, col, mincol)
4416 int c;
4417 char_u *ptr;
4418 int col;
4419 int mincol;
4420{
4421 int len;
4422 int scol; /* starting column of the abbr. */
4423 int j;
Bram Moolenaar4e427192006-03-10 21:34:27 +00004424 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425 char_u tb[MB_MAXBYTES + 4];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004426 mapblock_T *mp;
4427#ifdef FEAT_LOCALMAP
4428 mapblock_T *mp2;
4429#endif
4430#ifdef FEAT_MBYTE
4431 int clen = 0; /* length in characters */
4432#endif
4433 int is_id = TRUE;
4434 int vim_abbr;
4435
4436 if (typebuf.tb_no_abbr_cnt) /* abbrev. are not recursive */
4437 return FALSE;
Bram Moolenaare0ebfd72012-04-05 16:07:06 +02004438
4439 /* no remapping implies no abbreviation, except for CTRL-] */
4440 if ((KeyNoremap & (RM_NONE|RM_SCRIPT)) != 0 && c != Ctrl_RSB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441 return FALSE;
4442
4443 /*
4444 * Check for word before the cursor: If it ends in a keyword char all
Bram Moolenaarf6f95d92009-11-11 15:23:37 +00004445 * chars before it must be keyword chars or non-keyword chars, but not
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446 * white space. If it ends in a non-keyword char we accept any characters
4447 * before it except white space.
4448 */
4449 if (col == 0) /* cannot be an abbr. */
4450 return FALSE;
4451
4452#ifdef FEAT_MBYTE
4453 if (has_mbyte)
4454 {
4455 char_u *p;
4456
4457 p = mb_prevptr(ptr, ptr + col);
4458 if (!vim_iswordp(p))
4459 vim_abbr = TRUE; /* Vim added abbr. */
4460 else
4461 {
4462 vim_abbr = FALSE; /* vi compatible abbr. */
4463 if (p > ptr)
4464 is_id = vim_iswordp(mb_prevptr(ptr, p));
4465 }
4466 clen = 1;
4467 while (p > ptr + mincol)
4468 {
4469 p = mb_prevptr(ptr, p);
4470 if (vim_isspace(*p) || (!vim_abbr && is_id != vim_iswordp(p)))
4471 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004472 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 break;
4474 }
4475 ++clen;
4476 }
4477 scol = (int)(p - ptr);
4478 }
4479 else
4480#endif
4481 {
4482 if (!vim_iswordc(ptr[col - 1]))
4483 vim_abbr = TRUE; /* Vim added abbr. */
4484 else
4485 {
4486 vim_abbr = FALSE; /* vi compatible abbr. */
4487 if (col > 1)
4488 is_id = vim_iswordc(ptr[col - 2]);
4489 }
4490 for (scol = col - 1; scol > 0 && !vim_isspace(ptr[scol - 1])
4491 && (vim_abbr || is_id == vim_iswordc(ptr[scol - 1])); --scol)
4492 ;
4493 }
4494
4495 if (scol < mincol)
4496 scol = mincol;
4497 if (scol < col) /* there is a word in front of the cursor */
4498 {
4499 ptr += scol;
4500 len = col - scol;
4501#ifdef FEAT_LOCALMAP
4502 mp = curbuf->b_first_abbr;
4503 mp2 = first_abbr;
4504 if (mp == NULL)
4505 {
4506 mp = mp2;
4507 mp2 = NULL;
4508 }
4509#else
4510 mp = first_abbr;
4511#endif
4512 for ( ; mp;
4513#ifdef FEAT_LOCALMAP
4514 mp->m_next == NULL ? (mp = mp2, mp2 = NULL) :
4515#endif
4516 (mp = mp->m_next))
4517 {
4518 /* find entries with right mode and keys */
4519 if ( (mp->m_mode & State)
4520 && mp->m_keylen == len
4521 && !STRNCMP(mp->m_keys, ptr, (size_t)len))
4522 break;
4523 }
4524 if (mp != NULL)
4525 {
4526 /*
4527 * Found a match:
4528 * Insert the rest of the abbreviation in typebuf.tb_buf[].
4529 * This goes from end to start.
4530 *
4531 * Characters 0x000 - 0x100: normal chars, may need CTRL-V,
4532 * except K_SPECIAL: Becomes K_SPECIAL KS_SPECIAL KE_FILLER
4533 * Characters where IS_SPECIAL() == TRUE: key codes, need
4534 * K_SPECIAL. Other characters (with ABBR_OFF): don't use CTRL-V.
4535 *
4536 * Character CTRL-] is treated specially - it completes the
4537 * abbreviation, but is not inserted into the input stream.
4538 */
4539 j = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540 if (c != Ctrl_RSB)
4541 {
Bram Moolenaarda9591e2009-09-30 13:17:02 +00004542 /* special key code, split up */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004543 if (IS_SPECIAL(c) || c == K_SPECIAL)
4544 {
4545 tb[j++] = K_SPECIAL;
4546 tb[j++] = K_SECOND(c);
4547 tb[j++] = K_THIRD(c);
4548 }
4549 else
4550 {
4551 if (c < ABBR_OFF && (c < ' ' || c > '~'))
4552 tb[j++] = Ctrl_V; /* special char needs CTRL-V */
4553#ifdef FEAT_MBYTE
4554 if (has_mbyte)
4555 {
4556 /* if ABBR_OFF has been added, remove it here */
4557 if (c >= ABBR_OFF)
4558 c -= ABBR_OFF;
4559 j += (*mb_char2bytes)(c, tb + j);
4560 }
4561 else
4562#endif
4563 tb[j++] = c;
4564 }
4565 tb[j] = NUL;
4566 /* insert the last typed char */
4567 (void)ins_typebuf(tb, 1, 0, TRUE, mp->m_silent);
4568 }
Bram Moolenaar4e427192006-03-10 21:34:27 +00004569#ifdef FEAT_EVAL
4570 if (mp->m_expr)
Bram Moolenaarda9591e2009-09-30 13:17:02 +00004571 s = eval_map_expr(mp->m_str, c);
Bram Moolenaar4e427192006-03-10 21:34:27 +00004572 else
4573#endif
4574 s = mp->m_str;
4575 if (s != NULL)
4576 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577 /* insert the to string */
Bram Moolenaar4e427192006-03-10 21:34:27 +00004578 (void)ins_typebuf(s, mp->m_noremap, 0, TRUE, mp->m_silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579 /* no abbrev. for these chars */
Bram Moolenaar4e427192006-03-10 21:34:27 +00004580 typebuf.tb_no_abbr_cnt += (int)STRLEN(s) + j + 1;
4581#ifdef FEAT_EVAL
4582 if (mp->m_expr)
4583 vim_free(s);
4584#endif
4585 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586
4587 tb[0] = Ctrl_H;
4588 tb[1] = NUL;
4589#ifdef FEAT_MBYTE
4590 if (has_mbyte)
4591 len = clen; /* Delete characters instead of bytes */
4592#endif
4593 while (len-- > 0) /* delete the from string */
4594 (void)ins_typebuf(tb, 1, 0, TRUE, mp->m_silent);
4595 return TRUE;
4596 }
4597 }
4598 return FALSE;
4599}
4600
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004601#ifdef FEAT_EVAL
4602/*
4603 * Evaluate the RHS of a mapping or abbreviations and take care of escaping
4604 * special characters.
4605 */
4606 static char_u *
Bram Moolenaarda9591e2009-09-30 13:17:02 +00004607eval_map_expr(str, c)
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004608 char_u *str;
Bram Moolenaarda9591e2009-09-30 13:17:02 +00004609 int c; /* NUL or typed character for abbreviation */
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004610{
4611 char_u *res;
Bram Moolenaar8424a622006-04-19 21:23:36 +00004612 char_u *p;
Bram Moolenaarf6f4a012011-08-17 17:18:20 +02004613 char_u *expr;
Bram Moolenaarc1b52862006-04-28 22:32:28 +00004614 char_u *save_cmd;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004615 pos_T save_cursor;
Bram Moolenaar63760642011-12-23 14:54:04 +01004616 int save_msg_col;
4617 int save_msg_row;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004618
Bram Moolenaarf6f4a012011-08-17 17:18:20 +02004619 /* Remove escaping of CSI, because "str" is in a format to be used as
4620 * typeahead. */
4621 expr = vim_strsave(str);
4622 if (expr == NULL)
4623 return NULL;
4624 vim_unescape_csi(expr);
4625
Bram Moolenaarc1b52862006-04-28 22:32:28 +00004626 save_cmd = save_cmdline_alloc();
4627 if (save_cmd == NULL)
Bram Moolenaarf6f4a012011-08-17 17:18:20 +02004628 {
4629 vim_free(expr);
Bram Moolenaarc1b52862006-04-28 22:32:28 +00004630 return NULL;
Bram Moolenaarf6f4a012011-08-17 17:18:20 +02004631 }
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004632
4633 /* Forbid changing text or using ":normal" to avoid most of the bad side
4634 * effects. Also restore the cursor position. */
4635 ++textlock;
4636#ifdef FEAT_EX_EXTRA
4637 ++ex_normal_lock;
4638#endif
Bram Moolenaarda9591e2009-09-30 13:17:02 +00004639 set_vim_var_char(c); /* set v:char to the typed character */
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004640 save_cursor = curwin->w_cursor;
Bram Moolenaar63760642011-12-23 14:54:04 +01004641 save_msg_col = msg_col;
4642 save_msg_row = msg_row;
Bram Moolenaarf6f4a012011-08-17 17:18:20 +02004643 p = eval_to_string(expr, NULL, FALSE);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004644 --textlock;
4645#ifdef FEAT_EX_EXTRA
4646 --ex_normal_lock;
4647#endif
4648 curwin->w_cursor = save_cursor;
Bram Moolenaar63760642011-12-23 14:54:04 +01004649 msg_col = save_msg_col;
4650 msg_row = save_msg_row;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004651
Bram Moolenaarc1b52862006-04-28 22:32:28 +00004652 restore_cmdline_alloc(save_cmd);
Bram Moolenaarf6f4a012011-08-17 17:18:20 +02004653 vim_free(expr);
4654
Bram Moolenaar8424a622006-04-19 21:23:36 +00004655 if (p == NULL)
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004656 return NULL;
Bram Moolenaarf6f4a012011-08-17 17:18:20 +02004657 /* Escape CSI in the result to be able to use the string as typeahead. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004658 res = vim_strsave_escape_csi(p);
4659 vim_free(p);
4660
4661 return res;
4662}
4663#endif
4664
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004665/*
4666 * Copy "p" to allocated memory, escaping K_SPECIAL and CSI so that the result
4667 * can be put in the typeahead buffer.
4668 * Returns NULL when out of memory.
4669 */
4670 char_u *
4671vim_strsave_escape_csi(p)
4672 char_u *p;
4673{
4674 char_u *res;
4675 char_u *s, *d;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004676
4677 /* Need a buffer to hold up to three times as much. */
Bram Moolenaar8424a622006-04-19 21:23:36 +00004678 res = alloc((unsigned)(STRLEN(p) * 3) + 1);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004679 if (res != NULL)
4680 {
Bram Moolenaar8424a622006-04-19 21:23:36 +00004681 d = res;
4682 for (s = p; *s != NUL; )
4683 {
4684 if (s[0] == K_SPECIAL && s[1] != NUL && s[2] != NUL)
4685 {
4686 /* Copy special key unmodified. */
4687 *d++ = *s++;
4688 *d++ = *s++;
4689 *d++ = *s++;
4690 }
4691 else
4692 {
Bram Moolenaar229f8db2013-05-06 05:50:28 +02004693#ifdef FEAT_MBYTE
4694 int len = mb_char2len(PTR2CHAR(s));
4695 int len2 = mb_ptr2len(s);
4696#endif
Bram Moolenaar8424a622006-04-19 21:23:36 +00004697 /* Add character, possibly multi-byte to destination, escaping
4698 * CSI and K_SPECIAL. */
4699 d = add_char2buf(PTR2CHAR(s), d);
Bram Moolenaar229f8db2013-05-06 05:50:28 +02004700#ifdef FEAT_MBYTE
4701 while (len < len2)
4702 {
4703 /* add following combining char */
4704 d = add_char2buf(PTR2CHAR(s + len), d);
4705 len += mb_char2len(PTR2CHAR(s + len));
4706 }
4707#endif
Bram Moolenaar8424a622006-04-19 21:23:36 +00004708 mb_ptr_adv(s);
4709 }
4710 }
4711 *d = NUL;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004712 }
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004713 return res;
4714}
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004715
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716/*
Bram Moolenaar81b85872007-03-04 20:22:01 +00004717 * Remove escaping from CSI and K_SPECIAL characters. Reverse of
4718 * vim_strsave_escape_csi(). Works in-place.
4719 */
4720 void
4721vim_unescape_csi(p)
4722 char_u *p;
4723{
4724 char_u *s = p, *d = p;
4725
4726 while (*s != NUL)
4727 {
4728 if (s[0] == K_SPECIAL && s[1] == KS_SPECIAL && s[2] == KE_FILLER)
4729 {
4730 *d++ = K_SPECIAL;
4731 s += 3;
4732 }
4733 else if ((s[0] == K_SPECIAL || s[0] == CSI)
4734 && s[1] == KS_EXTRA && s[2] == (int)KE_CSI)
4735 {
4736 *d++ = CSI;
4737 s += 3;
4738 }
4739 else
4740 *d++ = *s++;
4741 }
4742 *d = NUL;
4743}
4744
4745/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 * Write map commands for the current mappings to an .exrc file.
4747 * Return FAIL on error, OK otherwise.
4748 */
4749 int
4750makemap(fd, buf)
4751 FILE *fd;
4752 buf_T *buf; /* buffer for local mappings or NULL */
4753{
4754 mapblock_T *mp;
Bram Moolenaar01b9a402008-07-22 16:58:47 +00004755 char_u c1, c2, c3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756 char_u *p;
4757 char *cmd;
4758 int abbr;
4759 int hash;
4760 int did_cpo = FALSE;
4761 int i;
4762
4763 validate_maphash();
4764
4765 /*
4766 * Do the loop twice: Once for mappings, once for abbreviations.
4767 * Then loop over all map hash lists.
4768 */
4769 for (abbr = 0; abbr < 2; ++abbr)
4770 for (hash = 0; hash < 256; ++hash)
4771 {
4772 if (abbr)
4773 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004774 if (hash > 0) /* there is only one abbr list */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775 break;
4776#ifdef FEAT_LOCALMAP
4777 if (buf != NULL)
4778 mp = buf->b_first_abbr;
4779 else
4780#endif
4781 mp = first_abbr;
4782 }
4783 else
4784 {
4785#ifdef FEAT_LOCALMAP
4786 if (buf != NULL)
4787 mp = buf->b_maphash[hash];
4788 else
4789#endif
4790 mp = maphash[hash];
4791 }
4792
4793 for ( ; mp; mp = mp->m_next)
4794 {
4795 /* skip script-local mappings */
4796 if (mp->m_noremap == REMAP_SCRIPT)
4797 continue;
4798
4799 /* skip mappings that contain a <SNR> (script-local thing),
4800 * they probably don't work when loaded again */
4801 for (p = mp->m_str; *p != NUL; ++p)
4802 if (p[0] == K_SPECIAL && p[1] == KS_EXTRA
4803 && p[2] == (int)KE_SNR)
4804 break;
4805 if (*p != NUL)
4806 continue;
4807
Bram Moolenaar01b9a402008-07-22 16:58:47 +00004808 /* It's possible to create a mapping and then ":unmap" certain
4809 * modes. We recreate this here by mapping the individual
4810 * modes, which requires up to three of them. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811 c1 = NUL;
4812 c2 = NUL;
Bram Moolenaar01b9a402008-07-22 16:58:47 +00004813 c3 = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 if (abbr)
4815 cmd = "abbr";
4816 else
4817 cmd = "map";
4818 switch (mp->m_mode)
4819 {
Bram Moolenaar371d5402006-03-20 21:47:49 +00004820 case NORMAL + VISUAL + SELECTMODE + OP_PENDING:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 break;
4822 case NORMAL:
4823 c1 = 'n';
4824 break;
Bram Moolenaar371d5402006-03-20 21:47:49 +00004825 case VISUAL:
4826 c1 = 'x';
4827 break;
4828 case SELECTMODE:
4829 c1 = 's';
4830 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831 case OP_PENDING:
4832 c1 = 'o';
4833 break;
Bram Moolenaar01b9a402008-07-22 16:58:47 +00004834 case NORMAL + VISUAL:
4835 c1 = 'n';
4836 c2 = 'x';
4837 break;
4838 case NORMAL + SELECTMODE:
4839 c1 = 'n';
4840 c2 = 's';
4841 break;
4842 case NORMAL + OP_PENDING:
4843 c1 = 'n';
4844 c2 = 'o';
4845 break;
4846 case VISUAL + SELECTMODE:
4847 c1 = 'v';
4848 break;
4849 case VISUAL + OP_PENDING:
4850 c1 = 'x';
4851 c2 = 'o';
4852 break;
4853 case SELECTMODE + OP_PENDING:
4854 c1 = 's';
4855 c2 = 'o';
4856 break;
Bram Moolenaar371d5402006-03-20 21:47:49 +00004857 case NORMAL + VISUAL + SELECTMODE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004858 c1 = 'n';
4859 c2 = 'v';
4860 break;
Bram Moolenaar01b9a402008-07-22 16:58:47 +00004861 case NORMAL + VISUAL + OP_PENDING:
4862 c1 = 'n';
4863 c2 = 'x';
4864 c3 = 'o';
4865 break;
4866 case NORMAL + SELECTMODE + OP_PENDING:
4867 c1 = 'n';
4868 c2 = 's';
4869 c3 = 'o';
4870 break;
Bram Moolenaar371d5402006-03-20 21:47:49 +00004871 case VISUAL + SELECTMODE + OP_PENDING:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872 c1 = 'v';
4873 c2 = 'o';
4874 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875 case CMDLINE + INSERT:
4876 if (!abbr)
4877 cmd = "map!";
4878 break;
4879 case CMDLINE:
4880 c1 = 'c';
4881 break;
4882 case INSERT:
4883 c1 = 'i';
4884 break;
4885 case LANGMAP:
4886 c1 = 'l';
4887 break;
4888 default:
4889 EMSG(_("E228: makemap: Illegal mode"));
4890 return FAIL;
4891 }
Bram Moolenaar01b9a402008-07-22 16:58:47 +00004892 do /* do this twice if c2 is set, 3 times with c3 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893 {
4894 /* When outputting <> form, need to make sure that 'cpo'
4895 * is set to the Vim default. */
4896 if (!did_cpo)
4897 {
4898 if (*mp->m_str == NUL) /* will use <Nop> */
4899 did_cpo = TRUE;
4900 else
4901 for (i = 0; i < 2; ++i)
4902 for (p = (i ? mp->m_str : mp->m_keys); *p; ++p)
4903 if (*p == K_SPECIAL || *p == NL)
4904 did_cpo = TRUE;
4905 if (did_cpo)
4906 {
4907 if (fprintf(fd, "let s:cpo_save=&cpo") < 0
4908 || put_eol(fd) < 0
4909 || fprintf(fd, "set cpo&vim") < 0
4910 || put_eol(fd) < 0)
4911 return FAIL;
4912 }
4913 }
4914 if (c1 && putc(c1, fd) < 0)
4915 return FAIL;
4916 if (mp->m_noremap != REMAP_YES && fprintf(fd, "nore") < 0)
4917 return FAIL;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004918 if (fputs(cmd, fd) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 return FAIL;
4920 if (buf != NULL && fputs(" <buffer>", fd) < 0)
4921 return FAIL;
Bram Moolenaar72179e12013-06-29 13:58:31 +02004922 if (mp->m_nowait && fputs(" <nowait>", fd) < 0)
4923 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924 if (mp->m_silent && fputs(" <silent>", fd) < 0)
4925 return FAIL;
Bram Moolenaar4e427192006-03-10 21:34:27 +00004926#ifdef FEAT_EVAL
4927 if (mp->m_noremap == REMAP_SCRIPT
4928 && fputs("<script>", fd) < 0)
4929 return FAIL;
4930 if (mp->m_expr && fputs(" <expr>", fd) < 0)
4931 return FAIL;
4932#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933
4934 if ( putc(' ', fd) < 0
4935 || put_escstr(fd, mp->m_keys, 0) == FAIL
4936 || putc(' ', fd) < 0
4937 || put_escstr(fd, mp->m_str, 1) == FAIL
4938 || put_eol(fd) < 0)
4939 return FAIL;
4940 c1 = c2;
Bram Moolenaar01b9a402008-07-22 16:58:47 +00004941 c2 = c3;
4942 c3 = NUL;
4943 } while (c1 != NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 }
4945 }
4946
4947 if (did_cpo)
4948 if (fprintf(fd, "let &cpo=s:cpo_save") < 0
4949 || put_eol(fd) < 0
4950 || fprintf(fd, "unlet s:cpo_save") < 0
4951 || put_eol(fd) < 0)
4952 return FAIL;
4953 return OK;
4954}
4955
4956/*
4957 * write escape string to file
4958 * "what": 0 for :map lhs, 1 for :map rhs, 2 for :set
4959 *
4960 * return FAIL for failure, OK otherwise
4961 */
4962 int
4963put_escstr(fd, strstart, what)
4964 FILE *fd;
4965 char_u *strstart;
4966 int what;
4967{
4968 char_u *str = strstart;
4969 int c;
4970 int modifiers;
4971
4972 /* :map xx <Nop> */
4973 if (*str == NUL && what == 1)
4974 {
4975 if (fprintf(fd, "<Nop>") < 0)
4976 return FAIL;
4977 return OK;
4978 }
4979
4980 for ( ; *str != NUL; ++str)
4981 {
4982#ifdef FEAT_MBYTE
4983 char_u *p;
4984
4985 /* Check for a multi-byte character, which may contain escaped
4986 * K_SPECIAL and CSI bytes */
4987 p = mb_unescape(&str);
4988 if (p != NULL)
4989 {
4990 while (*p != NUL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00004991 if (fputc(*p++, fd) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992 return FAIL;
4993 --str;
4994 continue;
4995 }
4996#endif
4997
4998 c = *str;
4999 /*
5000 * Special key codes have to be translated to be able to make sense
5001 * when they are read back.
5002 */
5003 if (c == K_SPECIAL && what != 2)
5004 {
5005 modifiers = 0x0;
5006 if (str[1] == KS_MODIFIER)
5007 {
5008 modifiers = str[2];
5009 str += 3;
5010 c = *str;
5011 }
5012 if (c == K_SPECIAL)
5013 {
5014 c = TO_SPECIAL(str[1], str[2]);
5015 str += 2;
5016 }
5017 if (IS_SPECIAL(c) || modifiers) /* special key */
5018 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005019 if (fputs((char *)get_special_key_name(c, modifiers), fd) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005020 return FAIL;
5021 continue;
5022 }
5023 }
5024
5025 /*
5026 * A '\n' in a map command should be written as <NL>.
5027 * A '\n' in a set command should be written as \^V^J.
5028 */
5029 if (c == NL)
5030 {
5031 if (what == 2)
5032 {
5033 if (fprintf(fd, IF_EB("\\\026\n", "\\" CTRL_V_STR "\n")) < 0)
5034 return FAIL;
5035 }
5036 else
5037 {
5038 if (fprintf(fd, "<NL>") < 0)
5039 return FAIL;
5040 }
5041 continue;
5042 }
5043
5044 /*
5045 * Some characters have to be escaped with CTRL-V to
5046 * prevent them from misinterpreted in DoOneCmd().
5047 * A space, Tab and '"' has to be escaped with a backslash to
5048 * prevent it to be misinterpreted in do_set().
5049 * A space has to be escaped with a CTRL-V when it's at the start of a
5050 * ":map" rhs.
5051 * A '<' has to be escaped with a CTRL-V to prevent it being
5052 * interpreted as the start of a special key name.
5053 * A space in the lhs of a :map needs a CTRL-V.
5054 */
5055 if (what == 2 && (vim_iswhite(c) || c == '"' || c == '\\'))
5056 {
5057 if (putc('\\', fd) < 0)
5058 return FAIL;
5059 }
5060 else if (c < ' ' || c > '~' || c == '|'
5061 || (what == 0 && c == ' ')
5062 || (what == 1 && str == strstart && c == ' ')
5063 || (what != 2 && c == '<'))
5064 {
5065 if (putc(Ctrl_V, fd) < 0)
5066 return FAIL;
5067 }
5068 if (putc(c, fd) < 0)
5069 return FAIL;
5070 }
5071 return OK;
5072}
5073
5074/*
5075 * Check all mappings for the presence of special key codes.
5076 * Used after ":set term=xxx".
5077 */
5078 void
5079check_map_keycodes()
5080{
5081 mapblock_T *mp;
5082 char_u *p;
5083 int i;
5084 char_u buf[3];
5085 char_u *save_name;
5086 int abbr;
5087 int hash;
5088#ifdef FEAT_LOCALMAP
5089 buf_T *bp;
5090#endif
5091
5092 validate_maphash();
5093 save_name = sourcing_name;
5094 sourcing_name = (char_u *)"mappings"; /* avoids giving error messages */
5095
5096#ifdef FEAT_LOCALMAP
5097 /* This this once for each buffer, and then once for global
5098 * mappings/abbreviations with bp == NULL */
5099 for (bp = firstbuf; ; bp = bp->b_next)
5100 {
5101#endif
5102 /*
5103 * Do the loop twice: Once for mappings, once for abbreviations.
5104 * Then loop over all map hash lists.
5105 */
5106 for (abbr = 0; abbr <= 1; ++abbr)
5107 for (hash = 0; hash < 256; ++hash)
5108 {
5109 if (abbr)
5110 {
5111 if (hash) /* there is only one abbr list */
5112 break;
5113#ifdef FEAT_LOCALMAP
5114 if (bp != NULL)
5115 mp = bp->b_first_abbr;
5116 else
5117#endif
5118 mp = first_abbr;
5119 }
5120 else
5121 {
5122#ifdef FEAT_LOCALMAP
5123 if (bp != NULL)
5124 mp = bp->b_maphash[hash];
5125 else
5126#endif
5127 mp = maphash[hash];
5128 }
5129 for ( ; mp != NULL; mp = mp->m_next)
5130 {
5131 for (i = 0; i <= 1; ++i) /* do this twice */
5132 {
5133 if (i == 0)
5134 p = mp->m_keys; /* once for the "from" part */
5135 else
5136 p = mp->m_str; /* and once for the "to" part */
5137 while (*p)
5138 {
5139 if (*p == K_SPECIAL)
5140 {
5141 ++p;
5142 if (*p < 128) /* for "normal" tcap entries */
5143 {
5144 buf[0] = p[0];
5145 buf[1] = p[1];
5146 buf[2] = NUL;
5147 (void)add_termcap_entry(buf, FALSE);
5148 }
5149 ++p;
5150 }
5151 ++p;
5152 }
5153 }
5154 }
5155 }
5156#ifdef FEAT_LOCALMAP
5157 if (bp == NULL)
5158 break;
5159 }
5160#endif
5161 sourcing_name = save_name;
5162}
5163
Bram Moolenaarbd743252010-10-20 21:23:33 +02005164#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165/*
Bram Moolenaarbd743252010-10-20 21:23:33 +02005166 * Check the string "keys" against the lhs of all mappings.
5167 * Return pointer to rhs of mapping (mapblock->m_str).
5168 * NULL when no mapping found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 */
5170 char_u *
Bram Moolenaarbd743252010-10-20 21:23:33 +02005171check_map(keys, mode, exact, ign_mod, abbr, mp_ptr, local_ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172 char_u *keys;
5173 int mode;
5174 int exact; /* require exact match */
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005175 int ign_mod; /* ignore preceding modifier */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005176 int abbr; /* do abbreviations */
Bram Moolenaarbd743252010-10-20 21:23:33 +02005177 mapblock_T **mp_ptr; /* return: pointer to mapblock or NULL */
5178 int *local_ptr; /* return: buffer-local mapping or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179{
5180 int hash;
5181 int len, minlen;
5182 mapblock_T *mp;
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005183 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005184#ifdef FEAT_LOCALMAP
5185 int local;
5186#endif
5187
5188 validate_maphash();
5189
5190 len = (int)STRLEN(keys);
5191#ifdef FEAT_LOCALMAP
5192 for (local = 1; local >= 0; --local)
5193#endif
5194 /* loop over all hash lists */
5195 for (hash = 0; hash < 256; ++hash)
5196 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005197 if (abbr)
5198 {
5199 if (hash > 0) /* there is only one list. */
5200 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201#ifdef FEAT_LOCALMAP
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005202 if (local)
5203 mp = curbuf->b_first_abbr;
5204 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205#endif
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005206 mp = first_abbr;
5207 }
5208#ifdef FEAT_LOCALMAP
5209 else if (local)
5210 mp = curbuf->b_maphash[hash];
5211#endif
5212 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213 mp = maphash[hash];
5214 for ( ; mp != NULL; mp = mp->m_next)
5215 {
5216 /* skip entries with wrong mode, wrong length and not matching
5217 * ones */
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005218 if ((mp->m_mode & mode) && (!exact || mp->m_keylen == len))
5219 {
5220 if (len > mp->m_keylen)
5221 minlen = mp->m_keylen;
5222 else
5223 minlen = len;
5224 s = mp->m_keys;
5225 if (ign_mod && s[0] == K_SPECIAL && s[1] == KS_MODIFIER
5226 && s[2] != NUL)
5227 {
5228 s += 3;
5229 if (len > mp->m_keylen - 3)
5230 minlen = mp->m_keylen - 3;
5231 }
5232 if (STRNCMP(s, keys, minlen) == 0)
Bram Moolenaarbd743252010-10-20 21:23:33 +02005233 {
5234 if (mp_ptr != NULL)
5235 *mp_ptr = mp;
5236 if (local_ptr != NULL)
Bram Moolenaarb8e86702010-10-22 22:13:52 +02005237#ifdef FEAT_LOCALMAP
Bram Moolenaarbd743252010-10-20 21:23:33 +02005238 *local_ptr = local;
Bram Moolenaarb8e86702010-10-22 22:13:52 +02005239#else
5240 *local_ptr = 0;
5241#endif
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005242 return mp->m_str;
Bram Moolenaarbd743252010-10-20 21:23:33 +02005243 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005244 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245 }
5246 }
5247
5248 return NULL;
5249}
5250#endif
5251
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005252#if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS)
Bram Moolenaar371d5402006-03-20 21:47:49 +00005253
5254#define VIS_SEL (VISUAL+SELECTMODE) /* abbreviation */
5255
Bram Moolenaar071d4272004-06-13 20:20:40 +00005256/*
5257 * Default mappings for some often used keys.
5258 */
5259static struct initmap
5260{
5261 char_u *arg;
5262 int mode;
5263} initmappings[] =
5264{
5265#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
5266 /* Use the Windows (CUA) keybindings. */
5267# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268 /* paste, copy and cut */
5269 {(char_u *)"<S-Insert> \"*P", NORMAL},
Bram Moolenaar371d5402006-03-20 21:47:49 +00005270 {(char_u *)"<S-Insert> \"-d\"*P", VIS_SEL},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271 {(char_u *)"<S-Insert> <C-R><C-O>*", INSERT+CMDLINE},
Bram Moolenaar371d5402006-03-20 21:47:49 +00005272 {(char_u *)"<C-Insert> \"*y", VIS_SEL},
5273 {(char_u *)"<S-Del> \"*d", VIS_SEL},
5274 {(char_u *)"<C-Del> \"*d", VIS_SEL},
5275 {(char_u *)"<C-X> \"*d", VIS_SEL},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 /* Missing: CTRL-C (cancel) and CTRL-V (block selection) */
5277# else
Bram Moolenaar371d5402006-03-20 21:47:49 +00005278 {(char_u *)"\316w <C-Home>", NORMAL+VIS_SEL},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005279 {(char_u *)"\316w <C-Home>", INSERT+CMDLINE},
Bram Moolenaar371d5402006-03-20 21:47:49 +00005280 {(char_u *)"\316u <C-End>", NORMAL+VIS_SEL},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281 {(char_u *)"\316u <C-End>", INSERT+CMDLINE},
5282
5283 /* paste, copy and cut */
5284# ifdef FEAT_CLIPBOARD
5285# ifdef DJGPP
5286 {(char_u *)"\316\122 \"*P", NORMAL}, /* SHIFT-Insert is "*P */
Bram Moolenaar09092152010-08-08 16:38:42 +02005287 {(char_u *)"\316\122 \"-d\"*P", VIS_SEL}, /* SHIFT-Insert is "-d"*P */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005288 {(char_u *)"\316\122 \022\017*", INSERT}, /* SHIFT-Insert is ^R^O* */
Bram Moolenaar371d5402006-03-20 21:47:49 +00005289 {(char_u *)"\316\222 \"*y", VIS_SEL}, /* CTRL-Insert is "*y */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290# if 0 /* Shift-Del produces the same code as Del */
Bram Moolenaar371d5402006-03-20 21:47:49 +00005291 {(char_u *)"\316\123 \"*d", VIS_SEL}, /* SHIFT-Del is "*d */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292# endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00005293 {(char_u *)"\316\223 \"*d", VIS_SEL}, /* CTRL-Del is "*d */
5294 {(char_u *)"\030 \"-d", VIS_SEL}, /* CTRL-X is "-d */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295# else
5296 {(char_u *)"\316\324 \"*P", NORMAL}, /* SHIFT-Insert is "*P */
Bram Moolenaar09092152010-08-08 16:38:42 +02005297 {(char_u *)"\316\324 \"-d\"*P", VIS_SEL}, /* SHIFT-Insert is "-d"*P */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298 {(char_u *)"\316\324 \022\017*", INSERT}, /* SHIFT-Insert is ^R^O* */
Bram Moolenaar371d5402006-03-20 21:47:49 +00005299 {(char_u *)"\316\325 \"*y", VIS_SEL}, /* CTRL-Insert is "*y */
5300 {(char_u *)"\316\327 \"*d", VIS_SEL}, /* SHIFT-Del is "*d */
5301 {(char_u *)"\316\330 \"*d", VIS_SEL}, /* CTRL-Del is "*d */
5302 {(char_u *)"\030 \"-d", VIS_SEL}, /* CTRL-X is "-d */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303# endif
5304# else
5305 {(char_u *)"\316\324 P", NORMAL}, /* SHIFT-Insert is P */
Bram Moolenaar371d5402006-03-20 21:47:49 +00005306 {(char_u *)"\316\324 \"-dP", VIS_SEL}, /* SHIFT-Insert is "-dP */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 {(char_u *)"\316\324 \022\017\"", INSERT}, /* SHIFT-Insert is ^R^O" */
Bram Moolenaar371d5402006-03-20 21:47:49 +00005308 {(char_u *)"\316\325 y", VIS_SEL}, /* CTRL-Insert is y */
5309 {(char_u *)"\316\327 d", VIS_SEL}, /* SHIFT-Del is d */
5310 {(char_u *)"\316\330 d", VIS_SEL}, /* CTRL-Del is d */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311# endif
5312# endif
5313#endif
5314
5315#if defined(MACOS)
5316 /* Use the Standard MacOS binding. */
5317 /* paste, copy and cut */
5318 {(char_u *)"<D-v> \"*P", NORMAL},
Bram Moolenaar371d5402006-03-20 21:47:49 +00005319 {(char_u *)"<D-v> \"-d\"*P", VIS_SEL},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005320 {(char_u *)"<D-v> <C-R>*", INSERT+CMDLINE},
Bram Moolenaar371d5402006-03-20 21:47:49 +00005321 {(char_u *)"<D-c> \"*y", VIS_SEL},
5322 {(char_u *)"<D-x> \"*d", VIS_SEL},
5323 {(char_u *)"<Backspace> \"-d", VIS_SEL},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005325};
Bram Moolenaar371d5402006-03-20 21:47:49 +00005326
5327# undef VIS_SEL
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005328#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329
5330/*
5331 * Set up default mappings.
5332 */
5333 void
5334init_mappings()
5335{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005336#if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337 int i;
5338
5339 for (i = 0; i < sizeof(initmappings) / sizeof(struct initmap); ++i)
5340 add_map(initmappings[i].arg, initmappings[i].mode);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005341#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342}
5343
Bram Moolenaar52b4b552005-03-07 23:00:57 +00005344#if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
5345 || defined(FEAT_CMDWIN) || defined(MACOS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346/*
5347 * Add a mapping "map" for mode "mode".
5348 * Need to put string in allocated memory, because do_map() will modify it.
5349 */
5350 void
5351add_map(map, mode)
5352 char_u *map;
5353 int mode;
5354{
5355 char_u *s;
5356 char_u *cpo_save = p_cpo;
5357
5358 p_cpo = (char_u *)""; /* Allow <> notation */
5359 s = vim_strsave(map);
5360 if (s != NULL)
5361 {
5362 (void)do_map(0, s, mode, FALSE);
5363 vim_free(s);
5364 }
5365 p_cpo = cpo_save;
5366}
Bram Moolenaar52b4b552005-03-07 23:00:57 +00005367#endif