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