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