annotate src/getchar.c @ 27156:67194006cad8 v8.2.4107

patch 8.2.4107: script context not restored after using <ScriptCmd> Commit: https://github.com/vim/vim/commit/a9725221ac4650b7e9219bf6e3682826fe2e0096 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 16 13:30:33 2022 +0000 patch 8.2.4107: script context not restored after using <ScriptCmd> Problem: Script context not restored after using <ScriptCmd>. Solution: Also restore context when not in a script. (closes https://github.com/vim/vim/issues/9536) Add the 'c' flag to feedkeys() to be able to test this.
author Bram Moolenaar <Bram@vim.org>
date Sun, 16 Jan 2022 14:45:03 +0100
parents 54f0a6a9db2d
children bd072d44eb2c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 * See README.txt for an overview of the Vim source code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 /*
26224
7d66d585bffa patch 8.2.3643: header for source file is outdated
Bram Moolenaar <Bram@vim.org>
parents: 26125
diff changeset
11 * getchar.c: Code related to getting a character from the user or a script
7d66d585bffa patch 8.2.3643: header for source file is outdated
Bram Moolenaar <Bram@vim.org>
parents: 26125
diff changeset
12 * file, manipulations with redo buffer and stuff buffer.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 #include "vim.h"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 * These buffers are used for storing:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19 * - stuffed characters: A command that is translated into another command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20 * - redo characters: will redo the last change.
1992
ada3271481ce updated for version 7.2-289
vimboss
parents: 1969
diff changeset
21 * - recorded characters: for the "q" command.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23 * The bytes are stored like in the typeahead buffer:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
24 * - K_SPECIAL introduces a special key (two more bytes follow). A literal
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
25 * K_SPECIAL is stored as K_SPECIAL KS_SPECIAL KE_FILLER.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
26 * - CSI introduces a GUI termcap code (also when gui.in_use is FALSE,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
27 * otherwise switching the GUI on would make mappings invalid).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28 * A literal CSI is stored as CSI KS_EXTRA KE_CSI.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29 * These translations are also done on multi-byte characters!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
30 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31 * Escaping CSI bytes is done by the system-specific input functions, called
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32 * by ui_inchar().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 * Escaping K_SPECIAL is done by inchar().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
34 * Un-escaping is done by vgetc().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
35 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
36
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
37 #define MINIMAL_SIZE 20 // minimal size for b_str
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
38
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
39 static buffheader_T redobuff = {{NULL, {NUL}}, NULL, 0, 0};
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
40 static buffheader_T old_redobuff = {{NULL, {NUL}}, NULL, 0, 0};
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
41 static buffheader_T recordbuff = {{NULL, {NUL}}, NULL, 0, 0};
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
42
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
43 static int typeahead_char = 0; // typeahead char that's not flushed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
44
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
45 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
46 * when block_redo is TRUE redo buffer will not be changed
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
47 * used by edit() to repeat insertions and 'V' command for redoing
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
48 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
49 static int block_redo = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
50
18301
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18281
diff changeset
51 static int KeyNoremap = 0; // remapping flags
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
52
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
53 /*
9228
ea504064c996 commit https://github.com/vim/vim/commit/fd89d7ea81b18d32363456b16258174dc9e095dc
Christian Brabandt <cb@256bit.org>
parents: 9205
diff changeset
54 * Variables used by vgetorpeek() and flush_buffers().
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
55 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
56 * typebuf.tb_buf[] contains all characters that are not consumed yet.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
57 * typebuf.tb_buf[typebuf.tb_off] is the first valid character.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
58 * typebuf.tb_buf[typebuf.tb_off + typebuf.tb_len - 1] is the last valid char.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
59 * typebuf.tb_buf[typebuf.tb_off + typebuf.tb_len] must be NUL.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
60 * The head of the buffer may contain the result of mappings, abbreviations
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
61 * and @a commands. The length of this part is typebuf.tb_maplen.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
62 * typebuf.tb_silent is the part where <silent> applies.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
63 * After the head are characters that come from the terminal.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
64 * typebuf.tb_no_abbr_cnt is the number of characters in typebuf.tb_buf that
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
65 * should not be considered for abbreviations.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
66 * Some parts of typebuf.tb_buf may not be mapped. These parts are remembered
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
67 * in typebuf.tb_noremap[], which is the same length as typebuf.tb_buf and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68 * contains RM_NONE for the characters that are not to be remapped.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
69 * typebuf.tb_noremap[typebuf.tb_off] is the first valid flag.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
70 * (typebuf has been put in globals.h, because check_termcode() needs it).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
71 */
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
72 #define RM_YES 0 // tb_noremap: remap
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
73 #define RM_NONE 1 // tb_noremap: don't remap
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
74 #define RM_SCRIPT 2 // tb_noremap: remap local script mappings
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
75 #define RM_ABBR 4 // tb_noremap: don't remap, do abbrev.
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
76
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
77 // typebuf.tb_buf has three parts: room in front (for result of mappings), the
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
78 // middle for typeahead and room for new characters (which needs to be 3 *
26771
fc859aea8cec patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents: 26592
diff changeset
79 // MAXMAPLEN for the Amiga).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
80 #define TYPELEN_INIT (5 * (MAXMAPLEN + 3))
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
81 static char_u typebuf_init[TYPELEN_INIT]; // initial typebuf.tb_buf
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
82 static char_u noremapbuf_init[TYPELEN_INIT]; // initial typebuf.tb_noremap
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
83
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
84 static int last_recorded_len = 0; // number of last recorded chars
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
85
27140
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
86 #ifdef FEAT_EVAL
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
87 mapblock_T *last_used_map = NULL;
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
88 #endif
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
89
7801
a1e71a01dbd6 commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents: 7703
diff changeset
90 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
91 static void init_typebuf(void);
a1e71a01dbd6 commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents: 7703
diff changeset
92 static void may_sync_undo(void);
17789
0f7ae8010787 patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents: 17659
diff changeset
93 static void free_typebuf(void);
7801
a1e71a01dbd6 commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents: 7703
diff changeset
94 static void closescript(void);
17789
0f7ae8010787 patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents: 17659
diff changeset
95 static void updatescript(int c);
7801
a1e71a01dbd6 commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents: 7703
diff changeset
96 static int vgetorpeek(int);
12281
2738b0cc5f64 patch 8.0.1020: when a timer calls getchar(1) input is overwritten
Christian Brabandt <cb@256bit.org>
parents: 11577
diff changeset
97 static int inchar(char_u *buf, int maxlen, long wait_time);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
98
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
99 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
100 * Free and clear a buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
101 */
19916
dcec86d796bc patch 8.2.0514: several global functions are used in only one file
Bram Moolenaar <Bram@vim.org>
parents: 19627
diff changeset
102 static void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
103 free_buff(buffheader_T *buf)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
104 {
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
105 buffblock_T *p, *np;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
106
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
107 for (p = buf->bh_first.b_next; p != NULL; p = np)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
108 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
109 np = p->b_next;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
110 vim_free(p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
111 }
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
112 buf->bh_first.b_next = NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
113 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
114
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
115 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
116 * Return the contents of a buffer as a single string.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
117 * K_SPECIAL and CSI in the returned string are escaped.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
118 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
119 static char_u *
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
120 get_buffcont(
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
121 buffheader_T *buffer,
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
122 int dozero) // count == zero is not an error
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
123 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
124 long_u count = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
125 char_u *p = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
126 char_u *p2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
127 char_u *str;
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
128 buffblock_T *bp;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
129
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
130 // compute the total length of the string
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
131 for (bp = buffer->bh_first.b_next; bp != NULL; bp = bp->b_next)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
132 count += (long_u)STRLEN(bp->b_str);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
133
16768
695d9ef00b03 patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents: 16764
diff changeset
134 if ((count || dozero) && (p = alloc(count + 1)) != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
135 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
136 p2 = p;
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
137 for (bp = buffer->bh_first.b_next; bp != NULL; bp = bp->b_next)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
138 for (str = bp->b_str; *str; )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
139 *p2++ = *str++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
140 *p2 = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
141 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
142 return (p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
143 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
144
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
145 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
146 * Return the contents of the record buffer as a single string
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
147 * and clear the record buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
148 * K_SPECIAL and CSI in the returned string are escaped.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
149 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
150 char_u *
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
151 get_recorded(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
152 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
153 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
154 size_t len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
155
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
156 p = get_buffcont(&recordbuff, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
157 free_buff(&recordbuff);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
158
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
159 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
160 * Remove the characters that were added the last time, these must be the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
161 * (possibly mapped) characters that stopped the recording.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
162 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
163 len = STRLEN(p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
164 if ((int)len >= last_recorded_len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
165 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
166 len -= last_recorded_len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
167 p[len] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
168 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
169
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
170 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
171 * When stopping recording from Insert mode with CTRL-O q, also remove the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
172 * CTRL-O.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
173 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
174 if (len > 0 && restart_edit != 0 && p[len - 1] == Ctrl_O)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
175 p[len - 1] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
176
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
177 return (p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
178 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
179
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
180 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
181 * Return the contents of the redo buffer as a single string.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
182 * K_SPECIAL and CSI in the returned string are escaped.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
183 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
184 char_u *
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
185 get_inserted(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
186 {
1618
46bbe11644e0 updated for version 7.2a
vimboss
parents: 1462
diff changeset
187 return get_buffcont(&redobuff, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
188 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
189
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
190 /*
1130
04dbdca9c34c updated for version 7.1a
vimboss
parents: 1103
diff changeset
191 * Add string "s" after the current block of buffer "buf".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
192 * K_SPECIAL and CSI should have been escaped already.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
193 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
194 static void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
195 add_buff(
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
196 buffheader_T *buf,
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
197 char_u *s,
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
198 long slen) // length of "s" or -1
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
199 {
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
200 buffblock_T *p;
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
201 long_u len;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
202
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
203 if (slen < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
204 slen = (long)STRLEN(s);
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
205 if (slen == 0) // don't add empty strings
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
206 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
207
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
208 if (buf->bh_first.b_next == NULL) // first add to list
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
209 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
210 buf->bh_space = 0;
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
211 buf->bh_curr = &(buf->bh_first);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
212 }
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
213 else if (buf->bh_curr == NULL) // buffer has already been read
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
214 {
26861
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
215 iemsg(_(e_add_to_internal_buffer_that_was_already_read_from));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
216 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
217 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
218 else if (buf->bh_index != 0)
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
219 mch_memmove(buf->bh_first.b_next->b_str,
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
220 buf->bh_first.b_next->b_str + buf->bh_index,
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
221 STRLEN(buf->bh_first.b_next->b_str + buf->bh_index) + 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
222 buf->bh_index = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
223
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
224 if (buf->bh_space >= (int)slen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
225 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
226 len = (long_u)STRLEN(buf->bh_curr->b_str);
416
3da34f87c760 updated for version 7.0109
vimboss
parents: 365
diff changeset
227 vim_strncpy(buf->bh_curr->b_str + len, s, (size_t)slen);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
228 buf->bh_space -= slen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
229 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
230 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
231 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
232 if (slen < MINIMAL_SIZE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
233 len = MINIMAL_SIZE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
234 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
235 len = slen;
17659
121bdff812b4 patch 8.1.1827: allocating more memory than needed for extended structs
Bram Moolenaar <Bram@vim.org>
parents: 17604
diff changeset
236 p = alloc(offsetof(buffblock_T, b_str) + len + 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
237 if (p == NULL)
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
238 return; // no space, just forget it
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 825
diff changeset
239 buf->bh_space = (int)(len - slen);
416
3da34f87c760 updated for version 7.0109
vimboss
parents: 365
diff changeset
240 vim_strncpy(p->b_str, s, (size_t)slen);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
241
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
242 p->b_next = buf->bh_curr->b_next;
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
243 buf->bh_curr->b_next = p;
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
244 buf->bh_curr = p;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
245 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
246 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
247
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
248 /*
26929
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
249 * Delete "slen" bytes from the end of "buf".
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
250 * Only works when it was just added.
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
251 */
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
252 static void
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
253 delete_buff_tail(buffheader_T *buf, int slen)
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
254 {
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
255 int len = (int)STRLEN(buf->bh_curr->b_str);
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
256
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
257 if (len >= slen)
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
258 {
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
259 buf->bh_curr->b_str[len - slen] = NUL;
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
260 buf->bh_space += slen;
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
261 }
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
262 }
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
263
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
264 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
265 * Add number "n" to buffer "buf".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
266 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
267 static void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
268 add_num_buff(buffheader_T *buf, long n)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
269 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
270 char_u number[32];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
271
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
272 sprintf((char *)number, "%ld", n);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
273 add_buff(buf, number, -1L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
274 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
275
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
276 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
277 * Add character 'c' to buffer "buf".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
278 * Translates special keys, NUL, CSI, K_SPECIAL and multibyte characters.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
279 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
280 static void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
281 add_char_buff(buffheader_T *buf, int c)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
282 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
283 char_u bytes[MB_MAXBYTES + 1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
284 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
285 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
286 char_u temp[4];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
287
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
288 if (IS_SPECIAL(c))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
289 len = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
290 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
291 len = (*mb_char2bytes)(c, bytes);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
292 for (i = 0; i < len; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
293 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
294 if (!IS_SPECIAL(c))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
295 c = bytes[i];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
296
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
297 if (IS_SPECIAL(c) || c == K_SPECIAL || c == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
298 {
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
299 // translate special key code into three byte sequence
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
300 temp[0] = K_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
301 temp[1] = K_SECOND(c);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
302 temp[2] = K_THIRD(c);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
303 temp[3] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
304 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
305 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
306 else if (c == CSI)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
307 {
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
308 // Translate a CSI to a CSI - KS_EXTRA - KE_CSI sequence
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
309 temp[0] = CSI;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
310 temp[1] = KS_EXTRA;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
311 temp[2] = (int)KE_CSI;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
312 temp[3] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
313 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
314 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
315 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
316 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
317 temp[0] = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
318 temp[1] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
319 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
320 add_buff(buf, temp, -1L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
321 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
322 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
323
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
324 // First read ahead buffer. Used for translated commands.
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
325 static buffheader_T readbuf1 = {{NULL, {NUL}}, NULL, 0, 0};
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
326
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
327 // Second read ahead buffer. Used for redo.
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
328 static buffheader_T readbuf2 = {{NULL, {NUL}}, NULL, 0, 0};
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
329
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
330 /*
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
331 * Get one byte from the read buffers. Use readbuf1 one first, use readbuf2
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
332 * if that one is empty.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
333 * If advance == TRUE go to the next char.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
334 * No translation is done K_SPECIAL and CSI are escaped.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
335 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
336 static int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
337 read_readbuffers(int advance)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
338 {
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
339 int c;
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
340
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
341 c = read_readbuf(&readbuf1, advance);
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
342 if (c == NUL)
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
343 c = read_readbuf(&readbuf2, advance);
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
344 return c;
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
345 }
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
346
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
347 static int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
348 read_readbuf(buffheader_T *buf, int advance)
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
349 {
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
350 char_u c;
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
351 buffblock_T *curr;
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
352
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
353 if (buf->bh_first.b_next == NULL) // buffer is empty
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
354 return NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
355
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
356 curr = buf->bh_first.b_next;
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
357 c = curr->b_str[buf->bh_index];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
358
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
359 if (advance)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
360 {
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
361 if (curr->b_str[++buf->bh_index] == NUL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
362 {
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
363 buf->bh_first.b_next = curr->b_next;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
364 vim_free(curr);
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
365 buf->bh_index = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
366 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
367 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
368 return c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
369 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
370
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
371 /*
5670
cb5683bcde03 updated for version 7.4.181
Bram Moolenaar <bram@vim.org>
parents: 5649
diff changeset
372 * Prepare the read buffers for reading (if they contain something).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
373 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
374 static void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
375 start_stuff(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
376 {
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
377 if (readbuf1.bh_first.b_next != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
378 {
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
379 readbuf1.bh_curr = &(readbuf1.bh_first);
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
380 readbuf1.bh_space = 0;
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
381 }
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
382 if (readbuf2.bh_first.b_next != NULL)
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
383 {
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
384 readbuf2.bh_curr = &(readbuf2.bh_first);
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
385 readbuf2.bh_space = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
386 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
387 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
388
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
389 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
390 * Return TRUE if the stuff buffer is empty.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
391 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
392 int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
393 stuff_empty(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
394 {
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
395 return (readbuf1.bh_first.b_next == NULL
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
396 && readbuf2.bh_first.b_next == NULL);
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
397 }
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
398
15555
d89c5b339c2a patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
399 #if defined(FEAT_EVAL) || defined(PROTO)
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
400 /*
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
401 * Return TRUE if readbuf1 is empty. There may still be redo characters in
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
402 * redbuf2.
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
403 */
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
404 int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
405 readbuf1_empty(void)
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
406 {
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
407 return (readbuf1.bh_first.b_next == NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
408 }
15555
d89c5b339c2a patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
409 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
410
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
411 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
412 * Set a typeahead character that won't be flushed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
413 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
414 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
415 typeahead_noflush(int c)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
416 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
417 typeahead_char = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
418 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
419
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
420 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
421 * Remove the contents of the stuff buffer and the mapped characters in the
3263
320cc46d0eb0 updated for version 7.3.400
Bram Moolenaar <bram@vim.org>
parents: 3231
diff changeset
422 * typeahead buffer (used in case of an error). If "flush_typeahead" is true,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
423 * flush all typeahead characters (used when interrupted by a CTRL-C).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
424 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
425 void
14909
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
426 flush_buffers(flush_buffers_T flush_typeahead)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
427 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
428 init_typebuf();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
429
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
430 start_stuff();
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
431 while (read_readbuffers(TRUE) != NUL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
432 ;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
433
14909
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
434 if (flush_typeahead == FLUSH_MINIMAL)
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
435 {
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
436 // remove mapped characters at the start only
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
437 typebuf.tb_off += typebuf.tb_maplen;
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
438 typebuf.tb_len -= typebuf.tb_maplen;
19627
6b1564fcab92 patch 8.2.0370: the typebuf_was_filled flag is sometimes not reset
Bram Moolenaar <Bram@vim.org>
parents: 19599
diff changeset
439 #if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
6b1564fcab92 patch 8.2.0370: the typebuf_was_filled flag is sometimes not reset
Bram Moolenaar <Bram@vim.org>
parents: 19599
diff changeset
440 if (typebuf.tb_len == 0)
6b1564fcab92 patch 8.2.0370: the typebuf_was_filled flag is sometimes not reset
Bram Moolenaar <Bram@vim.org>
parents: 19599
diff changeset
441 typebuf_was_filled = FALSE;
6b1564fcab92 patch 8.2.0370: the typebuf_was_filled flag is sometimes not reset
Bram Moolenaar <Bram@vim.org>
parents: 19599
diff changeset
442 #endif
14909
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
443 }
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
444 else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
445 {
14909
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
446 // remove typeahead
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
447 if (flush_typeahead == FLUSH_INPUT)
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
448 // We have to get all characters, because we may delete the first
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
449 // part of an escape sequence. In an xterm we get one char at a
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
450 // time and we have to get them all.
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
451 while (inchar(typebuf.tb_buf, typebuf.tb_buflen - 1, 10L) != 0)
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
452 ;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
453 typebuf.tb_off = MAXMAPLEN;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
454 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
455 #if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
456 // Reset the flag that text received from a client or from feedkeys()
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
457 // was inserted in the typeahead buffer.
11577
2bc04093ed28 patch 8.0.0671: hang when typing CTRL-C in confirm() in timer
Christian Brabandt <cb@256bit.org>
parents: 11490
diff changeset
458 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
459 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
460 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
461 typebuf.tb_maplen = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
462 typebuf.tb_silent = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
463 cmd_silent = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
464 typebuf.tb_no_abbr_cnt = 0;
21654
bb0c4325a712 patch 8.2.1377: triggering the ATTENTION prompt causes typeahead mess up
Bram Moolenaar <Bram@vim.org>
parents: 21230
diff changeset
465 if (++typebuf.tb_change_cnt == 0)
bb0c4325a712 patch 8.2.1377: triggering the ATTENTION prompt causes typeahead mess up
Bram Moolenaar <Bram@vim.org>
parents: 21230
diff changeset
466 typebuf.tb_change_cnt = 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
467 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
468
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
469 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
470 * The previous contents of the redo buffer is kept in old_redobuffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
471 * This is used for the CTRL-O <.> command in insert mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
472 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
473 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
474 ResetRedobuff(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
475 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
476 if (!block_redo)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
477 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
478 free_buff(&old_redobuff);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
479 old_redobuff = redobuff;
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
480 redobuff.bh_first.b_next = NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
481 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
482 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
483
3324
c9366ca36f6f updated for version 7.3.429
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
484 /*
c9366ca36f6f updated for version 7.3.429
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
485 * Discard the contents of the redo buffer and restore the previous redo
c9366ca36f6f updated for version 7.3.429
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
486 * buffer.
c9366ca36f6f updated for version 7.3.429
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
487 */
c9366ca36f6f updated for version 7.3.429
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
488 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
489 CancelRedo(void)
3324
c9366ca36f6f updated for version 7.3.429
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
490 {
c9366ca36f6f updated for version 7.3.429
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
491 if (!block_redo)
c9366ca36f6f updated for version 7.3.429
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
492 {
c9366ca36f6f updated for version 7.3.429
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
493 free_buff(&redobuff);
c9366ca36f6f updated for version 7.3.429
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
494 redobuff = old_redobuff;
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
495 old_redobuff.bh_first.b_next = NULL;
3324
c9366ca36f6f updated for version 7.3.429
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
496 start_stuff();
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
497 while (read_readbuffers(TRUE) != NUL)
3324
c9366ca36f6f updated for version 7.3.429
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
498 ;
c9366ca36f6f updated for version 7.3.429
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
499 }
c9366ca36f6f updated for version 7.3.429
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
500 }
c9366ca36f6f updated for version 7.3.429
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
501
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
502 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
503 * Save redobuff and old_redobuff to save_redobuff and save_old_redobuff.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
504 * Used before executing autocommands and user functions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
505 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
506 void
11325
77f3b7316d8b patch 8.0.0548: saving the redo buffer only works one time
Christian Brabandt <cb@256bit.org>
parents: 11158
diff changeset
507 saveRedobuff(save_redo_T *save_redo)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
508 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
509 char_u *s;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
510
11325
77f3b7316d8b patch 8.0.0548: saving the redo buffer only works one time
Christian Brabandt <cb@256bit.org>
parents: 11158
diff changeset
511 save_redo->sr_redobuff = redobuff;
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
512 redobuff.bh_first.b_next = NULL;
11325
77f3b7316d8b patch 8.0.0548: saving the redo buffer only works one time
Christian Brabandt <cb@256bit.org>
parents: 11158
diff changeset
513 save_redo->sr_old_redobuff = old_redobuff;
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
514 old_redobuff.bh_first.b_next = NULL;
11325
77f3b7316d8b patch 8.0.0548: saving the redo buffer only works one time
Christian Brabandt <cb@256bit.org>
parents: 11158
diff changeset
515
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
516 // Make a copy, so that ":normal ." in a function works.
11325
77f3b7316d8b patch 8.0.0548: saving the redo buffer only works one time
Christian Brabandt <cb@256bit.org>
parents: 11158
diff changeset
517 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
518 if (s != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
519 {
11325
77f3b7316d8b patch 8.0.0548: saving the redo buffer only works one time
Christian Brabandt <cb@256bit.org>
parents: 11158
diff changeset
520 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
521 vim_free(s);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
522 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
523 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
524
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
525 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
526 * Restore redobuff and old_redobuff from save_redobuff and save_old_redobuff.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
527 * Used after executing autocommands and user functions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
528 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
529 void
11325
77f3b7316d8b patch 8.0.0548: saving the redo buffer only works one time
Christian Brabandt <cb@256bit.org>
parents: 11158
diff changeset
530 restoreRedobuff(save_redo_T *save_redo)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
531 {
11325
77f3b7316d8b patch 8.0.0548: saving the redo buffer only works one time
Christian Brabandt <cb@256bit.org>
parents: 11158
diff changeset
532 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
533 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
534 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
535 old_redobuff = save_redo->sr_old_redobuff;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
536 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
537
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
538 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
539 * Append "s" to the redo buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
540 * K_SPECIAL and CSI should already have been escaped.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
541 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
542 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
543 AppendToRedobuff(char_u *s)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
544 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
545 if (!block_redo)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
546 add_buff(&redobuff, s, -1L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
547 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
548
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
549 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
550 * Append to Redo buffer literally, escaping special characters with CTRL-V.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
551 * K_SPECIAL and CSI are escaped as well.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
552 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
553 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
554 AppendToRedobuffLit(
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
555 char_u *str,
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
556 int len) // length of "str" or -1 for up to the NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
557 {
620
9e359e5759f6 updated for version 7.0177
vimboss
parents: 481
diff changeset
558 char_u *s = str;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
559 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
560 char_u *start;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
561
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
562 if (block_redo)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
563 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
564
620
9e359e5759f6 updated for version 7.0177
vimboss
parents: 481
diff changeset
565 while (len < 0 ? *s != NUL : s - str < len)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
566 {
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
567 // Put a string of normal characters in the redo buffer (that's
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
568 // faster).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
569 start = s;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
570 while (*s >= ' '
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
571 #ifndef EBCDIC
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
572 && *s < DEL // EBCDIC: all chars above space are normal
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
573 #endif
620
9e359e5759f6 updated for version 7.0177
vimboss
parents: 481
diff changeset
574 && (len < 0 || s - str < len))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
575 ++s;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
576
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
577 // Don't put '0' or '^' as last character, just in case a CTRL-D is
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
578 // typed next.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
579 if (*s == NUL && (s[-1] == '0' || s[-1] == '^'))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
580 --s;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
581 if (s > start)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
582 add_buff(&redobuff, start, (long)(s - start));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
583
620
9e359e5759f6 updated for version 7.0177
vimboss
parents: 481
diff changeset
584 if (*s == NUL || (len >= 0 && s - str >= len))
9e359e5759f6 updated for version 7.0177
vimboss
parents: 481
diff changeset
585 break;
9e359e5759f6 updated for version 7.0177
vimboss
parents: 481
diff changeset
586
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
587 // Handle a special or multibyte character.
620
9e359e5759f6 updated for version 7.0177
vimboss
parents: 481
diff changeset
588 if (has_mbyte)
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
589 // Handle composing chars separately.
620
9e359e5759f6 updated for version 7.0177
vimboss
parents: 481
diff changeset
590 c = mb_cptr2char_adv(&s);
9e359e5759f6 updated for version 7.0177
vimboss
parents: 481
diff changeset
591 else
9e359e5759f6 updated for version 7.0177
vimboss
parents: 481
diff changeset
592 c = *s++;
9e359e5759f6 updated for version 7.0177
vimboss
parents: 481
diff changeset
593 if (c < ' ' || c == DEL || (*s == NUL && (c == '0' || c == '^')))
9e359e5759f6 updated for version 7.0177
vimboss
parents: 481
diff changeset
594 add_char_buff(&redobuff, Ctrl_V);
9e359e5759f6 updated for version 7.0177
vimboss
parents: 481
diff changeset
595
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
596 // CTRL-V '0' must be inserted as CTRL-V 048 (EBCDIC: xf0)
620
9e359e5759f6 updated for version 7.0177
vimboss
parents: 481
diff changeset
597 if (*s == NUL && c == '0')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
598 #ifdef EBCDIC
620
9e359e5759f6 updated for version 7.0177
vimboss
parents: 481
diff changeset
599 add_buff(&redobuff, (char_u *)"xf0", 3L);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
600 #else
620
9e359e5759f6 updated for version 7.0177
vimboss
parents: 481
diff changeset
601 add_buff(&redobuff, (char_u *)"048", 3L);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
602 #endif
620
9e359e5759f6 updated for version 7.0177
vimboss
parents: 481
diff changeset
603 else
9e359e5759f6 updated for version 7.0177
vimboss
parents: 481
diff changeset
604 add_char_buff(&redobuff, c);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
605 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
606 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
607
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
608 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
609 * Append a character to the redo buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
610 * Translates special keys, NUL, CSI, K_SPECIAL and multibyte characters.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
611 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
612 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
613 AppendCharToRedobuff(int c)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
614 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
615 if (!block_redo)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
616 add_char_buff(&redobuff, c);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
617 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
618
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
619 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
620 * Append a number to the redo buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
621 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
622 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
623 AppendNumberToRedobuff(long n)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
624 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
625 if (!block_redo)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
626 add_num_buff(&redobuff, n);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
627 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
628
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
629 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
630 * Append string "s" to the stuff buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
631 * CSI and K_SPECIAL must already have been escaped.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
632 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
633 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
634 stuffReadbuff(char_u *s)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
635 {
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
636 add_buff(&readbuf1, s, -1L);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
637 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
638
6098
975d96776111 updated for version 7.4.387
Bram Moolenaar <bram@vim.org>
parents: 6087
diff changeset
639 /*
975d96776111 updated for version 7.4.387
Bram Moolenaar <bram@vim.org>
parents: 6087
diff changeset
640 * Append string "s" to the redo stuff buffer.
975d96776111 updated for version 7.4.387
Bram Moolenaar <bram@vim.org>
parents: 6087
diff changeset
641 * CSI and K_SPECIAL must already have been escaped.
975d96776111 updated for version 7.4.387
Bram Moolenaar <bram@vim.org>
parents: 6087
diff changeset
642 */
975d96776111 updated for version 7.4.387
Bram Moolenaar <bram@vim.org>
parents: 6087
diff changeset
643 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
644 stuffRedoReadbuff(char_u *s)
6098
975d96776111 updated for version 7.4.387
Bram Moolenaar <bram@vim.org>
parents: 6087
diff changeset
645 {
975d96776111 updated for version 7.4.387
Bram Moolenaar <bram@vim.org>
parents: 6087
diff changeset
646 add_buff(&readbuf2, s, -1L);
975d96776111 updated for version 7.4.387
Bram Moolenaar <bram@vim.org>
parents: 6087
diff changeset
647 }
975d96776111 updated for version 7.4.387
Bram Moolenaar <bram@vim.org>
parents: 6087
diff changeset
648
25567
0082503ff2ff patch 8.2.3320: some local functions are not static
Bram Moolenaar <Bram@vim.org>
parents: 25384
diff changeset
649 static void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
650 stuffReadbuffLen(char_u *s, long len)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
651 {
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
652 add_buff(&readbuf1, s, len);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
653 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
654
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
655 #if defined(FEAT_EVAL) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
656 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
657 * Stuff "s" into the stuff buffer, leaving special key codes unmodified and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
658 * escaping other K_SPECIAL and CSI bytes.
2784
930b171ce3fc updated for version 7.3.168
Bram Moolenaar <bram@vim.org>
parents: 2723
diff changeset
659 * Change CR, LF and ESC into a space.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
660 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
661 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
662 stuffReadbuffSpec(char_u *s)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
663 {
2784
930b171ce3fc updated for version 7.3.168
Bram Moolenaar <bram@vim.org>
parents: 2723
diff changeset
664 int c;
930b171ce3fc updated for version 7.3.168
Bram Moolenaar <bram@vim.org>
parents: 2723
diff changeset
665
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
666 while (*s != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
667 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
668 if (*s == K_SPECIAL && s[1] != NUL && s[2] != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
669 {
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
670 // Insert special key literally.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
671 stuffReadbuffLen(s, 3L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
672 s += 3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
673 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
674 else
2784
930b171ce3fc updated for version 7.3.168
Bram Moolenaar <bram@vim.org>
parents: 2723
diff changeset
675 {
930b171ce3fc updated for version 7.3.168
Bram Moolenaar <bram@vim.org>
parents: 2723
diff changeset
676 c = mb_ptr2char_adv(&s);
930b171ce3fc updated for version 7.3.168
Bram Moolenaar <bram@vim.org>
parents: 2723
diff changeset
677 if (c == CAR || c == NL || c == ESC)
930b171ce3fc updated for version 7.3.168
Bram Moolenaar <bram@vim.org>
parents: 2723
diff changeset
678 c = ' ';
930b171ce3fc updated for version 7.3.168
Bram Moolenaar <bram@vim.org>
parents: 2723
diff changeset
679 stuffcharReadbuff(c);
930b171ce3fc updated for version 7.3.168
Bram Moolenaar <bram@vim.org>
parents: 2723
diff changeset
680 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
681 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
682 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
683 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
684
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
685 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
686 * Append a character to the stuff buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
687 * Translates special keys, NUL, CSI, K_SPECIAL and multibyte characters.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
688 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
689 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
690 stuffcharReadbuff(int c)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
691 {
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
692 add_char_buff(&readbuf1, c);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
693 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
694
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
695 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
696 * Append a number to the stuff buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
697 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
698 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
699 stuffnumReadbuff(long n)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
700 {
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
701 add_num_buff(&readbuf1, n);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
702 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
703
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
704 /*
20237
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
705 * Stuff a string into the typeahead buffer, such that edit() will insert it
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
706 * literally ("literally" TRUE) or interpret is as typed characters.
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
707 */
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
708 void
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
709 stuffescaped(char_u *arg, int literally)
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
710 {
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
711 int c;
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
712 char_u *start;
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
713
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
714 while (*arg != NUL)
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
715 {
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
716 // Stuff a sequence of normal ASCII characters, that's fast. Also
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
717 // stuff K_SPECIAL to get the effect of a special key when "literally"
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
718 // is TRUE.
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
719 start = arg;
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
720 while ((*arg >= ' '
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
721 #ifndef EBCDIC
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
722 && *arg < DEL // EBCDIC: chars above space are normal
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
723 #endif
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
724 )
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
725 || (*arg == K_SPECIAL && !literally))
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
726 ++arg;
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
727 if (arg > start)
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
728 stuffReadbuffLen(start, (long)(arg - start));
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
729
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
730 // stuff a single special character
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
731 if (*arg != NUL)
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
732 {
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
733 if (has_mbyte)
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
734 c = mb_cptr2char_adv(&arg);
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
735 else
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
736 c = *arg++;
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
737 if (literally && ((c < ' ' && c != TAB) || c == DEL))
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
738 stuffcharReadbuff(Ctrl_V);
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
739 stuffcharReadbuff(c);
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
740 }
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
741 }
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
742 }
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
743
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 19916
diff changeset
744 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
745 * Read a character from the redo buffer. Translates K_SPECIAL, CSI and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
746 * multibyte characters.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
747 * The redo buffer is left as it is.
3324
c9366ca36f6f updated for version 7.3.429
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
748 * If init is TRUE, prepare for redo, return FAIL if nothing to redo, OK
c9366ca36f6f updated for version 7.3.429
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
749 * otherwise.
c9366ca36f6f updated for version 7.3.429
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
750 * If old is TRUE, use old_redobuff instead of redobuff.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
751 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
752 static int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
753 read_redo(int init, int old_redo)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
754 {
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
755 static buffblock_T *bp;
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
756 static char_u *p;
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
757 int c;
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
758 int n;
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
759 char_u buf[MB_MAXBYTES + 1];
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
760 int i;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
761
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
762 if (init)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
763 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
764 if (old_redo)
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
765 bp = old_redobuff.bh_first.b_next;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
766 else
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
767 bp = redobuff.bh_first.b_next;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
768 if (bp == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
769 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
770 p = bp->b_str;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
771 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
772 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
773 if ((c = *p) != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
774 {
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
775 // Reverse the conversion done by add_char_buff()
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
776 // For a multi-byte character get all the bytes and return the
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
777 // converted character.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
778 if (has_mbyte && (c != K_SPECIAL || p[1] == KS_SPECIAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
779 n = MB_BYTE2LEN_CHECK(c);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
780 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
781 n = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
782 for (i = 0; ; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
783 {
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
784 if (c == K_SPECIAL) // special key or escaped K_SPECIAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
785 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
786 c = TO_SPECIAL(p[1], p[2]);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
787 p += 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
788 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
789 #ifdef FEAT_GUI
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
790 if (c == CSI) // escaped CSI
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
791 p += 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
792 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
793 if (*++p == NUL && bp->b_next != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
794 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
795 bp = bp->b_next;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
796 p = bp->b_str;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
797 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
798 buf[i] = c;
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
799 if (i == n - 1) // last byte of a character
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
800 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
801 if (n != 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
802 c = (*mb_ptr2char)(buf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
803 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
804 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
805 c = *p;
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
806 if (c == NUL) // cannot happen?
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
807 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
808 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
809 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
810
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
811 return c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
812 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
813
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
814 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
815 * Copy the rest of the redo buffer into the stuff buffer (in a slow way).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
816 * If old_redo is TRUE, use old_redobuff instead of redobuff.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
817 * The escaped K_SPECIAL and CSI are copied without translation.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
818 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
819 static void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
820 copy_redo(int old_redo)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
821 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
822 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
823
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
824 while ((c = read_redo(FALSE, old_redo)) != NUL)
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
825 add_char_buff(&readbuf2, c);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
826 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
827
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
828 /*
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
829 * Stuff the redo buffer into readbuf2.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
830 * Insert the redo count into the command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
831 * If "old_redo" is TRUE, the last but one command is repeated
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
832 * instead of the last command (inserting text). This is used for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
833 * CTRL-O <.> in insert mode
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
834 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
835 * return FAIL for failure, OK otherwise
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
836 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
837 int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
838 start_redo(long count, int old_redo)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
839 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
840 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
841
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
842 // init the pointers; return if nothing to redo
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
843 if (read_redo(TRUE, old_redo) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
844 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
845
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
846 c = read_redo(FALSE, old_redo);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
847
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
848 // copy the buffer name, if present
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
849 if (c == '"')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
850 {
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
851 add_buff(&readbuf2, (char_u *)"\"", 1L);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
852 c = read_redo(FALSE, old_redo);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
853
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
854 // if a numbered buffer is used, increment the number
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
855 if (c >= '1' && c < '9')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
856 ++c;
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
857 add_char_buff(&readbuf2, c);
14009
830a47e48791 patch 8.1.0022: repeating put from expression register fails
Christian Brabandt <cb@256bit.org>
parents: 14004
diff changeset
858
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
859 // the expression register should be re-evaluated
14009
830a47e48791 patch 8.1.0022: repeating put from expression register fails
Christian Brabandt <cb@256bit.org>
parents: 14004
diff changeset
860 if (c == '=')
830a47e48791 patch 8.1.0022: repeating put from expression register fails
Christian Brabandt <cb@256bit.org>
parents: 14004
diff changeset
861 {
830a47e48791 patch 8.1.0022: repeating put from expression register fails
Christian Brabandt <cb@256bit.org>
parents: 14004
diff changeset
862 add_char_buff(&readbuf2, CAR);
830a47e48791 patch 8.1.0022: repeating put from expression register fails
Christian Brabandt <cb@256bit.org>
parents: 14004
diff changeset
863 cmd_silent = TRUE;
830a47e48791 patch 8.1.0022: repeating put from expression register fails
Christian Brabandt <cb@256bit.org>
parents: 14004
diff changeset
864 }
830a47e48791 patch 8.1.0022: repeating put from expression register fails
Christian Brabandt <cb@256bit.org>
parents: 14004
diff changeset
865
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
866 c = read_redo(FALSE, old_redo);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
867 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
868
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
869 if (c == 'v') // redo Visual
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
870 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
871 VIsual = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
872 VIsual_active = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
873 VIsual_select = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
874 VIsual_reselect = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
875 redo_VIsual_busy = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
876 c = read_redo(FALSE, old_redo);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
877 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
878
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
879 // try to enter the count (in place of a previous count)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
880 if (count)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
881 {
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
882 while (VIM_ISDIGIT(c)) // skip "old" count
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
883 c = read_redo(FALSE, old_redo);
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
884 add_num_buff(&readbuf2, count);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
885 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
886
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
887 // copy from the redo buffer into the stuff buffer
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
888 add_char_buff(&readbuf2, c);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
889 copy_redo(old_redo);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
890 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
891 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
892
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
893 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
894 * Repeat the last insert (R, o, O, a, A, i or I command) by stuffing
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
895 * the redo buffer into readbuf2.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
896 * return FAIL for failure, OK otherwise
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
897 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
898 int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
899 start_redo_ins(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
900 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
901 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
902
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
903 if (read_redo(TRUE, FALSE) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
904 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
905 start_stuff();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
906
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
907 // skip the count and the command character
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
908 while ((c = read_redo(FALSE, FALSE)) != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
909 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
910 if (vim_strchr((char_u *)"AaIiRrOo", c) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
911 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
912 if (c == 'O' || c == 'o')
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
913 add_buff(&readbuf2, NL_STR, -1L);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
914 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
915 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
916 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
917
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
918 // copy the typed text from the redo buffer into the stuff buffer
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
919 copy_redo(FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
920 block_redo = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
921 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
922 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
923
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
924 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
925 stop_redo_ins(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
926 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
927 block_redo = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
928 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
929
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
930 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
931 * Initialize typebuf.tb_buf to point to typebuf_init.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
932 * alloc() cannot be used here: In out-of-memory situations it would
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
933 * be impossible to type anything.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
934 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
935 static void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
936 init_typebuf(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
937 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
938 if (typebuf.tb_buf == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
939 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
940 typebuf.tb_buf = typebuf_init;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
941 typebuf.tb_noremap = noremapbuf_init;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
942 typebuf.tb_buflen = TYPELEN_INIT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
943 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
944 typebuf.tb_off = MAXMAPLEN + 4;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
945 typebuf.tb_change_cnt = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
946 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
947 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
948
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
949 /*
17576
97a750e8707f patch 8.1.1785: map functionality mixed with character input
Bram Moolenaar <Bram@vim.org>
parents: 17522
diff changeset
950 * Returns TRUE when keys cannot be remapped.
97a750e8707f patch 8.1.1785: map functionality mixed with character input
Bram Moolenaar <Bram@vim.org>
parents: 17522
diff changeset
951 */
97a750e8707f patch 8.1.1785: map functionality mixed with character input
Bram Moolenaar <Bram@vim.org>
parents: 17522
diff changeset
952 int
97a750e8707f patch 8.1.1785: map functionality mixed with character input
Bram Moolenaar <Bram@vim.org>
parents: 17522
diff changeset
953 noremap_keys(void)
97a750e8707f patch 8.1.1785: map functionality mixed with character input
Bram Moolenaar <Bram@vim.org>
parents: 17522
diff changeset
954 {
97a750e8707f patch 8.1.1785: map functionality mixed with character input
Bram Moolenaar <Bram@vim.org>
parents: 17522
diff changeset
955 return KeyNoremap & (RM_NONE|RM_SCRIPT);
97a750e8707f patch 8.1.1785: map functionality mixed with character input
Bram Moolenaar <Bram@vim.org>
parents: 17522
diff changeset
956 }
97a750e8707f patch 8.1.1785: map functionality mixed with character input
Bram Moolenaar <Bram@vim.org>
parents: 17522
diff changeset
957
97a750e8707f patch 8.1.1785: map functionality mixed with character input
Bram Moolenaar <Bram@vim.org>
parents: 17522
diff changeset
958 /*
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7117
diff changeset
959 * 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
960 * and ":normal" command, vgetorpeek() and check_termcode()).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
961 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
962 * If noremap is REMAP_YES, new string can be mapped again.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
963 * If noremap is REMAP_NONE, new string cannot be mapped again.
26771
fc859aea8cec patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents: 26592
diff changeset
964 * If noremap is REMAP_SKIP, first char of new string cannot be mapped again,
10
4e2284e71352 updated for version 7.0002
vimboss
parents: 7
diff changeset
965 * but abbreviations are allowed.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
966 * If noremap is REMAP_SCRIPT, new string cannot be mapped again, except for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
967 * script-local mappings.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
968 * If noremap is > 0, that many characters of the new string cannot be mapped.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
969 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
970 * If nottyped is TRUE, the string does not return KeyTyped (don't use when
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
971 * offset is non-zero!).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
972 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
973 * If silent is TRUE, cmd_silent is set when the characters are obtained.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
974 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
975 * return FAIL for failure, OK otherwise
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
976 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
977 int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
978 ins_typebuf(
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
979 char_u *str,
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
980 int noremap,
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
981 int offset,
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
982 int nottyped,
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
983 int silent)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
984 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
985 char_u *s1, *s2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
986 int newlen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
987 int addlen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
988 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
989 int newoff;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
990 int val;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
991 int nrm;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
992
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
993 init_typebuf();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
994 if (++typebuf.tb_change_cnt == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
995 typebuf.tb_change_cnt = 1;
18116
7f57ea9a4ba8 patch 8.1.2053: SafeStateAgain not triggered if callback uses feedkeys()
Bram Moolenaar <Bram@vim.org>
parents: 18106
diff changeset
996 state_no_longer_safe("ins_typebuf()");
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
997
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
998 addlen = (int)STRLEN(str);
1130
04dbdca9c34c updated for version 7.1a
vimboss
parents: 1103
diff changeset
999
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1000 if (offset == 0 && addlen <= typebuf.tb_off)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1001 {
10549
055b1633aed7 patch 8.0.0164: outdated and misplaced comments
Christian Brabandt <cb@256bit.org>
parents: 10359
diff changeset
1002 /*
055b1633aed7 patch 8.0.0164: outdated and misplaced comments
Christian Brabandt <cb@256bit.org>
parents: 10359
diff changeset
1003 * 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
1004 */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1005 typebuf.tb_off -= addlen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1006 mch_memmove(typebuf.tb_buf + typebuf.tb_off, str, (size_t)addlen);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1007 }
11331
ff27a6a3a243 patch 8.0.0551: the typeahead buffer is reallocated too often
Christian Brabandt <cb@256bit.org>
parents: 11325
diff changeset
1008 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
1009 >= 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
1010 {
ff27a6a3a243 patch 8.0.0551: the typeahead buffer is reallocated too often
Christian Brabandt <cb@256bit.org>
parents: 11325
diff changeset
1011 /*
ff27a6a3a243 patch 8.0.0551: the typeahead buffer is reallocated too often
Christian Brabandt <cb@256bit.org>
parents: 11325
diff changeset
1012 * 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
1013 * 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
1014 */
ff27a6a3a243 patch 8.0.0551: the typeahead buffer is reallocated too often
Christian Brabandt <cb@256bit.org>
parents: 11325
diff changeset
1015 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
1016 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
1017 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1018 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1019 {
26125
18114bb393e0 patch 8.2.3595: check for signed overflow might not work everywhere
Bram Moolenaar <Bram@vim.org>
parents: 25913
diff changeset
1020 int extra;
18114bb393e0 patch 8.2.3595: check for signed overflow might not work everywhere
Bram Moolenaar <Bram@vim.org>
parents: 25913
diff changeset
1021
10549
055b1633aed7 patch 8.0.0164: outdated and misplaced comments
Christian Brabandt <cb@256bit.org>
parents: 10359
diff changeset
1022 /*
055b1633aed7 patch 8.0.0164: outdated and misplaced comments
Christian Brabandt <cb@256bit.org>
parents: 10359
diff changeset
1023 * 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
1024 * 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
1025 * 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
1026 * often.
055b1633aed7 patch 8.0.0164: outdated and misplaced comments
Christian Brabandt <cb@256bit.org>
parents: 10359
diff changeset
1027 */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1028 newoff = MAXMAPLEN + 4;
26125
18114bb393e0 patch 8.2.3595: check for signed overflow might not work everywhere
Bram Moolenaar <Bram@vim.org>
parents: 25913
diff changeset
1029 extra = addlen + newoff + 4 * (MAXMAPLEN + 4);
18114bb393e0 patch 8.2.3595: check for signed overflow might not work everywhere
Bram Moolenaar <Bram@vim.org>
parents: 25913
diff changeset
1030 if (typebuf.tb_len > 2147483647 - extra)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1031 {
26125
18114bb393e0 patch 8.2.3595: check for signed overflow might not work everywhere
Bram Moolenaar <Bram@vim.org>
parents: 25913
diff changeset
1032 // string is getting too long for a 32 bit int
26436
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26224
diff changeset
1033 emsg(_(e_command_too_complex)); // also calls flush_buffers
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1034 setcursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1035 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1036 }
26125
18114bb393e0 patch 8.2.3595: check for signed overflow might not work everywhere
Bram Moolenaar <Bram@vim.org>
parents: 25913
diff changeset
1037 newlen = typebuf.tb_len + extra;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1038 s1 = alloc(newlen);
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1039 if (s1 == NULL) // out of memory
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1040 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1041 s2 = alloc(newlen);
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1042 if (s2 == NULL) // out of memory
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1043 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1044 vim_free(s1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1045 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1046 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1047 typebuf.tb_buflen = newlen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1048
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1049 // copy the old chars, before the insertion point
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1050 mch_memmove(s1 + newoff, typebuf.tb_buf + typebuf.tb_off,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1051 (size_t)offset);
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1052 // copy the new chars
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1053 mch_memmove(s1 + newoff + offset, str, (size_t)addlen);
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1054 // copy the old chars, after the insertion point, including the NUL at
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1055 // the end
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1056 mch_memmove(s1 + newoff + offset + addlen,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1057 typebuf.tb_buf + typebuf.tb_off + offset,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1058 (size_t)(typebuf.tb_len - offset + 1));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1059 if (typebuf.tb_buf != typebuf_init)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1060 vim_free(typebuf.tb_buf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1061 typebuf.tb_buf = s1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1062
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1063 mch_memmove(s2 + newoff, typebuf.tb_noremap + typebuf.tb_off,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1064 (size_t)offset);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1065 mch_memmove(s2 + newoff + offset + addlen,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1066 typebuf.tb_noremap + typebuf.tb_off + offset,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1067 (size_t)(typebuf.tb_len - offset));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1068 if (typebuf.tb_noremap != noremapbuf_init)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1069 vim_free(typebuf.tb_noremap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1070 typebuf.tb_noremap = s2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1071
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1072 typebuf.tb_off = newoff;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1073 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1074 typebuf.tb_len += addlen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1075
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1076 // If noremap == REMAP_SCRIPT: do remap script-local mappings.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1077 if (noremap == REMAP_SCRIPT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1078 val = RM_SCRIPT;
10
4e2284e71352 updated for version 7.0002
vimboss
parents: 7
diff changeset
1079 else if (noremap == REMAP_SKIP)
4e2284e71352 updated for version 7.0002
vimboss
parents: 7
diff changeset
1080 val = RM_ABBR;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1081 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1082 val = RM_NONE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1083
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1084 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1085 * Adjust typebuf.tb_noremap[] for the new characters:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1086 * If noremap == REMAP_NONE or REMAP_SCRIPT: new characters are
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1087 * (sometimes) not remappable
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1088 * If noremap == REMAP_YES: all the new characters are mappable
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1089 * If noremap > 0: "noremap" characters are not remappable, the rest
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1090 * mappable
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1091 */
10
4e2284e71352 updated for version 7.0002
vimboss
parents: 7
diff changeset
1092 if (noremap == REMAP_SKIP)
4e2284e71352 updated for version 7.0002
vimboss
parents: 7
diff changeset
1093 nrm = 1;
4e2284e71352 updated for version 7.0002
vimboss
parents: 7
diff changeset
1094 else if (noremap < 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1095 nrm = addlen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1096 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1097 nrm = noremap;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1098 for (i = 0; i < addlen; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1099 typebuf.tb_noremap[typebuf.tb_off + i + offset] =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1100 (--nrm >= 0) ? val : RM_YES;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1101
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1102 // tb_maplen and tb_silent only remember the length of mapped and/or
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1103 // silent mappings at the start of the buffer, assuming that a mapped
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1104 // sequence doesn't result in typed characters.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1105 if (nottyped || typebuf.tb_maplen > offset)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1106 typebuf.tb_maplen += addlen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1107 if (silent || typebuf.tb_silent > offset)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1108 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1109 typebuf.tb_silent += addlen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1110 cmd_silent = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1111 }
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1112 if (typebuf.tb_no_abbr_cnt && offset == 0) // and not used for abbrev.s
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1113 typebuf.tb_no_abbr_cnt += addlen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1114
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1115 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1116 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1117
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1118 /*
852
d58e3db4a7d1 updated for version 7.0f05
vimboss
parents: 847
diff changeset
1119 * Put character "c" back into the typeahead buffer.
d58e3db4a7d1 updated for version 7.0f05
vimboss
parents: 847
diff changeset
1120 * Can be used for a character obtained by vgetc() that needs to be put back.
1051
e14d0a530351 updated for version 7.0-177
vimboss
parents: 988
diff changeset
1121 * Uses cmd_silent, KeyTyped and KeyNoremap to restore the flags belonging to
e14d0a530351 updated for version 7.0-177
vimboss
parents: 988
diff changeset
1122 * the char.
26929
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1123 * Returns the length of what was inserted.
852
d58e3db4a7d1 updated for version 7.0f05
vimboss
parents: 847
diff changeset
1124 */
26929
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1125 int
20571
5995db0fe84a patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents: 20563
diff changeset
1126 ins_char_typebuf(int c, int modifier)
852
d58e3db4a7d1 updated for version 7.0f05
vimboss
parents: 847
diff changeset
1127 {
26946
8d4b44cc324e patch 8.2.4002: first char typed in Select mode can be wrong
Bram Moolenaar <Bram@vim.org>
parents: 26944
diff changeset
1128 char_u buf[MB_MAXBYTES * 3 + 4];
26929
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1129 int len = 0;
20571
5995db0fe84a patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents: 20563
diff changeset
1130
5995db0fe84a patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents: 20563
diff changeset
1131 if (modifier != 0)
852
d58e3db4a7d1 updated for version 7.0f05
vimboss
parents: 847
diff changeset
1132 {
d58e3db4a7d1 updated for version 7.0f05
vimboss
parents: 847
diff changeset
1133 buf[0] = K_SPECIAL;
20571
5995db0fe84a patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents: 20563
diff changeset
1134 buf[1] = KS_MODIFIER;
5995db0fe84a patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents: 20563
diff changeset
1135 buf[2] = modifier;
852
d58e3db4a7d1 updated for version 7.0f05
vimboss
parents: 847
diff changeset
1136 buf[3] = NUL;
26929
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1137 len = 3;
20571
5995db0fe84a patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents: 20563
diff changeset
1138 }
5995db0fe84a patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents: 20563
diff changeset
1139 if (IS_SPECIAL(c))
5995db0fe84a patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents: 20563
diff changeset
1140 {
26929
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1141 buf[len] = K_SPECIAL;
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1142 buf[len + 1] = K_SECOND(c);
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1143 buf[len + 2] = K_THIRD(c);
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1144 buf[len + 3] = NUL;
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1145 len += 3;
852
d58e3db4a7d1 updated for version 7.0f05
vimboss
parents: 847
diff changeset
1146 }
d58e3db4a7d1 updated for version 7.0f05
vimboss
parents: 847
diff changeset
1147 else
26929
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1148 {
26946
8d4b44cc324e patch 8.2.4002: first char typed in Select mode can be wrong
Bram Moolenaar <Bram@vim.org>
parents: 26944
diff changeset
1149 char_u *p = buf + len;
8d4b44cc324e patch 8.2.4002: first char typed in Select mode can be wrong
Bram Moolenaar <Bram@vim.org>
parents: 26944
diff changeset
1150 int char_len = (*mb_char2bytes)(c, p);
8d4b44cc324e patch 8.2.4002: first char typed in Select mode can be wrong
Bram Moolenaar <Bram@vim.org>
parents: 26944
diff changeset
1151 #ifdef FEAT_GUI
8d4b44cc324e patch 8.2.4002: first char typed in Select mode can be wrong
Bram Moolenaar <Bram@vim.org>
parents: 26944
diff changeset
1152 int save_gui_in_use = gui.in_use;
8d4b44cc324e patch 8.2.4002: first char typed in Select mode can be wrong
Bram Moolenaar <Bram@vim.org>
parents: 26944
diff changeset
1153
8d4b44cc324e patch 8.2.4002: first char typed in Select mode can be wrong
Bram Moolenaar <Bram@vim.org>
parents: 26944
diff changeset
1154 gui.in_use = FALSE;
8d4b44cc324e patch 8.2.4002: first char typed in Select mode can be wrong
Bram Moolenaar <Bram@vim.org>
parents: 26944
diff changeset
1155 #endif
8d4b44cc324e patch 8.2.4002: first char typed in Select mode can be wrong
Bram Moolenaar <Bram@vim.org>
parents: 26944
diff changeset
1156 // if the character contains CSI or K_SPECIAL bytes they need escaping
8d4b44cc324e patch 8.2.4002: first char typed in Select mode can be wrong
Bram Moolenaar <Bram@vim.org>
parents: 26944
diff changeset
1157 len += fix_input_buffer(p, char_len);
8d4b44cc324e patch 8.2.4002: first char typed in Select mode can be wrong
Bram Moolenaar <Bram@vim.org>
parents: 26944
diff changeset
1158 #ifdef FEAT_GUI
8d4b44cc324e patch 8.2.4002: first char typed in Select mode can be wrong
Bram Moolenaar <Bram@vim.org>
parents: 26944
diff changeset
1159 gui.in_use = save_gui_in_use;
8d4b44cc324e patch 8.2.4002: first char typed in Select mode can be wrong
Bram Moolenaar <Bram@vim.org>
parents: 26944
diff changeset
1160 #endif
26929
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1161 }
1051
e14d0a530351 updated for version 7.0-177
vimboss
parents: 988
diff changeset
1162 (void)ins_typebuf(buf, KeyNoremap, 0, !KeyTyped, cmd_silent);
26929
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1163 return len;
852
d58e3db4a7d1 updated for version 7.0f05
vimboss
parents: 847
diff changeset
1164 }
d58e3db4a7d1 updated for version 7.0f05
vimboss
parents: 847
diff changeset
1165
d58e3db4a7d1 updated for version 7.0f05
vimboss
parents: 847
diff changeset
1166 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1167 * Return TRUE if the typeahead buffer was changed (while waiting for a
841
c2cae213194d updated for version 7.0e07
vimboss
parents: 840
diff changeset
1168 * character to arrive). Happens when a message was received from a client or
842
a209672376fd updated for version 7.0f
vimboss
parents: 841
diff changeset
1169 * from feedkeys().
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1170 * But check in a more generic way to avoid trouble: When "typebuf.tb_buf"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1171 * changed it was reallocated and the old pointer can no longer be used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1172 * Or "typebuf.tb_off" may have been changed and we would overwrite characters
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1173 * that was just added.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1174 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1175 int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1176 typebuf_changed(
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1177 int tb_change_cnt) // old value of typebuf.tb_change_cnt
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1178 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1179 return (tb_change_cnt != 0 && (typebuf.tb_change_cnt != tb_change_cnt
841
c2cae213194d updated for version 7.0e07
vimboss
parents: 840
diff changeset
1180 #if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
c2cae213194d updated for version 7.0e07
vimboss
parents: 840
diff changeset
1181 || typebuf_was_filled
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1182 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1183 ));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1184 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1185
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1186 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1187 * Return TRUE if there are no characters in the typeahead buffer that have
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1188 * not been typed (result from a mapping or come from ":normal").
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1189 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1190 int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1191 typebuf_typed(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1192 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1193 return typebuf.tb_maplen == 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1194 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1195
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1196 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1197 * Return the number of characters that are mapped (or not typed).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1198 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1199 int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1200 typebuf_maplen(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1201 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1202 return typebuf.tb_maplen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1203 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1204
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1205 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1206 * remove "len" characters from typebuf.tb_buf[typebuf.tb_off + offset]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1207 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1208 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1209 del_typebuf(int len, int offset)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1210 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1211 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1212
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1213 if (len == 0)
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1214 return; // nothing to do
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1215
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1216 typebuf.tb_len -= len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1217
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1218 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1219 * Easy case: Just increase typebuf.tb_off.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1220 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1221 if (offset == 0 && typebuf.tb_buflen - (typebuf.tb_off + len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1222 >= 3 * MAXMAPLEN + 3)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1223 typebuf.tb_off += len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1224 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1225 * Have to move the characters in typebuf.tb_buf[] and typebuf.tb_noremap[]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1226 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1227 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1228 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1229 i = typebuf.tb_off + offset;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1230 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1231 * Leave some extra room at the end to avoid reallocation.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1232 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1233 if (typebuf.tb_off > MAXMAPLEN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1234 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1235 mch_memmove(typebuf.tb_buf + MAXMAPLEN,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1236 typebuf.tb_buf + typebuf.tb_off, (size_t)offset);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1237 mch_memmove(typebuf.tb_noremap + MAXMAPLEN,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1238 typebuf.tb_noremap + typebuf.tb_off, (size_t)offset);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1239 typebuf.tb_off = MAXMAPLEN;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1240 }
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1241 // adjust typebuf.tb_buf (include the NUL at the end)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1242 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1243 typebuf.tb_buf + i + len,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1244 (size_t)(typebuf.tb_len - offset + 1));
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1245 // adjust typebuf.tb_noremap[]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1246 mch_memmove(typebuf.tb_noremap + typebuf.tb_off + offset,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1247 typebuf.tb_noremap + i + len,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1248 (size_t)(typebuf.tb_len - offset));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1249 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1250
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1251 if (typebuf.tb_maplen > offset) // adjust tb_maplen
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1252 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1253 if (typebuf.tb_maplen < offset + len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1254 typebuf.tb_maplen = offset;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1255 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1256 typebuf.tb_maplen -= len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1257 }
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1258 if (typebuf.tb_silent > offset) // adjust tb_silent
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1259 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1260 if (typebuf.tb_silent < offset + len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1261 typebuf.tb_silent = offset;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1262 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1263 typebuf.tb_silent -= len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1264 }
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1265 if (typebuf.tb_no_abbr_cnt > offset) // adjust tb_no_abbr_cnt
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1266 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1267 if (typebuf.tb_no_abbr_cnt < offset + len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1268 typebuf.tb_no_abbr_cnt = offset;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1269 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1270 typebuf.tb_no_abbr_cnt -= len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1271 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1272
841
c2cae213194d updated for version 7.0e07
vimboss
parents: 840
diff changeset
1273 #if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1274 // Reset the flag that text received from a client or from feedkeys()
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1275 // was inserted in the typeahead buffer.
841
c2cae213194d updated for version 7.0e07
vimboss
parents: 840
diff changeset
1276 typebuf_was_filled = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1277 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1278 if (++typebuf.tb_change_cnt == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1279 typebuf.tb_change_cnt = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1280 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1281
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1282 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1283 * Write typed characters to script file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1284 * If recording is on put the character in the recordbuffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1285 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1286 static void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1287 gotchars(char_u *chars, int len)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1288 {
14247
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1289 char_u *s = chars;
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1290 int i;
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1291 static char_u buf[4];
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1292 static int buflen = 0;
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1293 int todo = len;
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1294
1130
04dbdca9c34c updated for version 7.1a
vimboss
parents: 1103
diff changeset
1295 while (todo--)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1296 {
14247
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1297 buf[buflen++] = *s++;
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1298
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1299 // When receiving a special key sequence, store it until we have all
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1300 // the bytes and we can decide what to do with it.
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1301 if (buflen == 1 && buf[0] == K_SPECIAL)
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1302 continue;
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1303 if (buflen == 2)
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1304 continue;
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1305 if (buflen == 3 && buf[1] == KS_EXTRA
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1306 && (buf[2] == KE_FOCUSGAINED || buf[2] == KE_FOCUSLOST))
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1307 {
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1308 // Drop K_FOCUSGAINED and K_FOCUSLOST, they are not useful in a
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1309 // recording.
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1310 buflen = 0;
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1311 continue;
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1312 }
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1313
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1314 // Handle one byte at a time; no translation to be done.
14247
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1315 for (i = 0; i < buflen; ++i)
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1316 updatescript(buf[i]);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1317
14004
e124262d435e patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents: 13950
diff changeset
1318 if (reg_recording != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1319 {
14247
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1320 buf[buflen] = NUL;
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1321 add_buff(&recordbuff, buf, (long)buflen);
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1322 // remember how many chars were last recorded
14247
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1323 last_recorded_len += buflen;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1324 }
14247
381b01f77461 patch 8.1.0140: recording into a register has focus events
Christian Brabandt <cb@256bit.org>
parents: 14069
diff changeset
1325 buflen = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1326 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1327 may_sync_undo();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1328
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1329 #ifdef FEAT_EVAL
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1330 // output "debug mode" message next time in debug mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1331 debug_did_msg = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1332 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1333
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1334 // Since characters have been typed, consider the following to be in
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1335 // another mapping. Search string will be kept in history.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1336 ++maptick;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1337 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1338
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1339 /*
26929
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1340 * Undo the last gotchars() for "len" bytes. To be used when putting a typed
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1341 * character back into the typeahead buffer, thus gotchars() will be called
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1342 * again.
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1343 * Only affects recorded characters.
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1344 */
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1345 void
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1346 ungetchars(int len)
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1347 {
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1348 if (reg_recording != 0)
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1349 {
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1350 delete_buff_tail(&recordbuff, len);
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1351 last_recorded_len -= len;
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1352 }
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1353 }
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1354
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1355 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1356 * Sync undo. Called when typed characters are obtained from the typeahead
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1357 * buffer, or when a menu is used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1358 * Do not sync:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1359 * - In Insert mode, unless cursor key has been used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1360 * - While reading a script file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1361 * - When no_u_sync is non-zero.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1362 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1363 static void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1364 may_sync_undo(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1365 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1366 if ((!(State & (INSERT + CMDLINE)) || arrow_used)
825
6675076019ae updated for version 7.0d
vimboss
parents: 822
diff changeset
1367 && scriptin[curscript] == NULL)
6675076019ae updated for version 7.0d
vimboss
parents: 822
diff changeset
1368 u_sync(FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1369 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1370
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1371 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1372 * Make "typebuf" empty and allocate new buffers.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1373 * Returns FAIL when out of memory.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1374 */
17789
0f7ae8010787 patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents: 17659
diff changeset
1375 static int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1376 alloc_typebuf(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1377 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1378 typebuf.tb_buf = alloc(TYPELEN_INIT);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1379 typebuf.tb_noremap = alloc(TYPELEN_INIT);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1380 if (typebuf.tb_buf == NULL || typebuf.tb_noremap == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1381 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1382 free_typebuf();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1383 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1384 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1385 typebuf.tb_buflen = TYPELEN_INIT;
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1386 typebuf.tb_off = MAXMAPLEN + 4; // can insert without realloc
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1387 typebuf.tb_len = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1388 typebuf.tb_maplen = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1389 typebuf.tb_silent = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1390 typebuf.tb_no_abbr_cnt = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1391 if (++typebuf.tb_change_cnt == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1392 typebuf.tb_change_cnt = 1;
19627
6b1564fcab92 patch 8.2.0370: the typebuf_was_filled flag is sometimes not reset
Bram Moolenaar <Bram@vim.org>
parents: 19599
diff changeset
1393 #if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
6b1564fcab92 patch 8.2.0370: the typebuf_was_filled flag is sometimes not reset
Bram Moolenaar <Bram@vim.org>
parents: 19599
diff changeset
1394 typebuf_was_filled = FALSE;
6b1564fcab92 patch 8.2.0370: the typebuf_was_filled flag is sometimes not reset
Bram Moolenaar <Bram@vim.org>
parents: 19599
diff changeset
1395 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1396 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1397 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1398
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1399 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1400 * Free the buffers of "typebuf".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1401 */
17789
0f7ae8010787 patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents: 17659
diff changeset
1402 static void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1403 free_typebuf(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1404 {
1462
ceaf71b15d81 updated for version 7.1-177
vimboss
parents: 1455
diff changeset
1405 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
1406 internal_error("Free typebuf 1");
1462
ceaf71b15d81 updated for version 7.1-177
vimboss
parents: 1455
diff changeset
1407 else
18193
f31b0ac6e175 patch 8.1.2091: double free when memory allocation fails
Bram Moolenaar <Bram@vim.org>
parents: 18116
diff changeset
1408 VIM_CLEAR(typebuf.tb_buf);
1992
ada3271481ce updated for version 7.2-289
vimboss
parents: 1969
diff changeset
1409 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
1410 internal_error("Free typebuf 2");
1462
ceaf71b15d81 updated for version 7.1-177
vimboss
parents: 1455
diff changeset
1411 else
18193
f31b0ac6e175 patch 8.1.2091: double free when memory allocation fails
Bram Moolenaar <Bram@vim.org>
parents: 18116
diff changeset
1412 VIM_CLEAR(typebuf.tb_noremap);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1413 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1414
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1415 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1416 * When doing ":so! file", the current typeahead needs to be saved, and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1417 * restored when "file" has been read completely.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1418 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1419 static typebuf_T saved_typebuf[NSCRIPT];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1420
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1421 int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1422 save_typebuf(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1423 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1424 init_typebuf();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1425 saved_typebuf[curscript] = typebuf;
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1426 // If out of memory: restore typebuf and close file.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1427 if (alloc_typebuf() == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1428 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1429 closescript();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1430 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1431 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1432 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1433 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1434
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1435 static int old_char = -1; // character put back by vungetc()
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1436 static int old_mod_mask; // mod_mask for ungotten character
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1437 static int old_mouse_row; // mouse_row related to old_char
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1438 static int old_mouse_col; // mouse_col related to old_char
1928
7caa503b63a9 updated for version 7.2-225
vimboss
parents: 1825
diff changeset
1439
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1440 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1441 * Save all three kinds of typeahead, so that the user must type at a prompt.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1442 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1443 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1444 save_typeahead(tasave_T *tp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1445 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1446 tp->save_typebuf = typebuf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1447 tp->typebuf_valid = (alloc_typebuf() == OK);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1448 if (!tp->typebuf_valid)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1449 typebuf = tp->save_typebuf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1450
1928
7caa503b63a9 updated for version 7.2-225
vimboss
parents: 1825
diff changeset
1451 tp->old_char = old_char;
7caa503b63a9 updated for version 7.2-225
vimboss
parents: 1825
diff changeset
1452 tp->old_mod_mask = old_mod_mask;
7caa503b63a9 updated for version 7.2-225
vimboss
parents: 1825
diff changeset
1453 old_char = -1;
7caa503b63a9 updated for version 7.2-225
vimboss
parents: 1825
diff changeset
1454
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
1455 tp->save_readbuf1 = readbuf1;
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
1456 readbuf1.bh_first.b_next = NULL;
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
1457 tp->save_readbuf2 = readbuf2;
13726
d35b1702a1da patch 8.0.1735: flexible array member feature not supported by HP-UX
Christian Brabandt <cb@256bit.org>
parents: 13702
diff changeset
1458 readbuf2.bh_first.b_next = NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1459 # ifdef USE_INPUT_BUF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1460 tp->save_inputbuf = get_input_buf();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1461 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1462 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1463
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1464 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1465 * Restore the typeahead to what it was before calling save_typeahead().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1466 * The allocated memory is freed, can only be called once!
24846
fdc6a7769045 patch 8.2.2961: keys typed during a :normal command are discarded
Bram Moolenaar <Bram@vim.org>
parents: 24838
diff changeset
1467 * When "overwrite" is FALSE input typed later is kept.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1468 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1469 void
24846
fdc6a7769045 patch 8.2.2961: keys typed during a :normal command are discarded
Bram Moolenaar <Bram@vim.org>
parents: 24838
diff changeset
1470 restore_typeahead(tasave_T *tp, int overwrite UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1471 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1472 if (tp->typebuf_valid)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1473 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1474 free_typebuf();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1475 typebuf = tp->save_typebuf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1476 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1477
1928
7caa503b63a9 updated for version 7.2-225
vimboss
parents: 1825
diff changeset
1478 old_char = tp->old_char;
7caa503b63a9 updated for version 7.2-225
vimboss
parents: 1825
diff changeset
1479 old_mod_mask = tp->old_mod_mask;
7caa503b63a9 updated for version 7.2-225
vimboss
parents: 1825
diff changeset
1480
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
1481 free_buff(&readbuf1);
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
1482 readbuf1 = tp->save_readbuf1;
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
1483 free_buff(&readbuf2);
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
1484 readbuf2 = tp->save_readbuf2;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1485 # ifdef USE_INPUT_BUF
24846
fdc6a7769045 patch 8.2.2961: keys typed during a :normal command are discarded
Bram Moolenaar <Bram@vim.org>
parents: 24838
diff changeset
1486 set_input_buf(tp->save_inputbuf, overwrite);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1487 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1488 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1489
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1490 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1491 * Open a new script file for the ":source!" command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1492 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1493 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1494 openscript(
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1495 char_u *name,
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1496 int directly) // when TRUE execute directly
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1497 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1498 if (curscript + 1 == NSCRIPT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1499 {
25064
8f2262c72178 patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 24846
diff changeset
1500 emsg(_(e_scripts_nested_too_deep));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1501 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1502 }
16726
fbab59a5ee6b patch 8.1.1365: source command doesn't check for the sandbox
Bram Moolenaar <Bram@vim.org>
parents: 16712
diff changeset
1503
fbab59a5ee6b patch 8.1.1365: source command doesn't check for the sandbox
Bram Moolenaar <Bram@vim.org>
parents: 16712
diff changeset
1504 // Disallow sourcing a file in the sandbox, the commands would be executed
fbab59a5ee6b patch 8.1.1365: source command doesn't check for the sandbox
Bram Moolenaar <Bram@vim.org>
parents: 16712
diff changeset
1505 // later, possibly outside of the sandbox.
fbab59a5ee6b patch 8.1.1365: source command doesn't check for the sandbox
Bram Moolenaar <Bram@vim.org>
parents: 16712
diff changeset
1506 if (check_secure())
fbab59a5ee6b patch 8.1.1365: source command doesn't check for the sandbox
Bram Moolenaar <Bram@vim.org>
parents: 16712
diff changeset
1507 return;
fbab59a5ee6b patch 8.1.1365: source command doesn't check for the sandbox
Bram Moolenaar <Bram@vim.org>
parents: 16712
diff changeset
1508
1462
ceaf71b15d81 updated for version 7.1-177
vimboss
parents: 1455
diff changeset
1509 #ifdef FEAT_EVAL
ceaf71b15d81 updated for version 7.1-177
vimboss
parents: 1455
diff changeset
1510 if (ignore_script)
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1511 // Not reading from script, also don't open one. Warning message?
1462
ceaf71b15d81 updated for version 7.1-177
vimboss
parents: 1455
diff changeset
1512 return;
ceaf71b15d81 updated for version 7.1-177
vimboss
parents: 1455
diff changeset
1513 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1514
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1515 if (scriptin[curscript] != NULL) // already reading script
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1516 ++curscript;
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1517 // use NameBuff for expanded name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1518 expand_env(name, NameBuff, MAXPATHL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1519 if ((scriptin[curscript] = mch_fopen((char *)NameBuff, READBIN)) == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1520 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26875
diff changeset
1521 semsg(_(e_cant_open_file_str), name);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1522 if (curscript)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1523 --curscript;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1524 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1525 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1526 if (save_typebuf() == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1527 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1528
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1529 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1530 * Execute the commands from the file right now when using ":source!"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1531 * after ":global" or ":argdo" or in a loop. Also when another command
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1532 * follows. This means the display won't be updated. Don't do this
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1533 * always, "make test" would fail.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1534 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1535 if (directly)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1536 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1537 oparg_T oa;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1538 int oldcurscript;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1539 int save_State = State;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1540 int save_restart_edit = restart_edit;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1541 int save_insertmode = p_im;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1542 int save_finish_op = finish_op;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1543 int save_msg_scroll = msg_scroll;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1544
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1545 State = NORMAL;
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1546 msg_scroll = FALSE; // no msg scrolling in Normal mode
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1547 restart_edit = 0; // don't go to Insert mode
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1548 p_im = FALSE; // don't use 'insertmode'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1549 clear_oparg(&oa);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1550 finish_op = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1551
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1552 oldcurscript = curscript;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1553 do
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1554 {
16712
329e28ed10fd patch 8.1.1358: cannot enter character with a CSI byte
Bram Moolenaar <Bram@vim.org>
parents: 16531
diff changeset
1555 update_topline_cursor(); // update cursor position and topline
329e28ed10fd patch 8.1.1358: cannot enter character with a CSI byte
Bram Moolenaar <Bram@vim.org>
parents: 16531
diff changeset
1556 normal_cmd(&oa, FALSE); // execute one command
21230
e67123c115d2 patch 8.2.1166: once mouse move events are enabled getchar() returns them
Bram Moolenaar <Bram@vim.org>
parents: 20800
diff changeset
1557 (void)vpeekc(); // check for end of file
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1558 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1559 while (scriptin[oldcurscript] != NULL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1560
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1561 State = save_State;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1562 msg_scroll = save_msg_scroll;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1563 restart_edit = save_restart_edit;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1564 p_im = save_insertmode;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1565 finish_op = save_finish_op;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1566 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1567 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1568
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1569 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1570 * Close the currently active input script.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1571 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1572 static void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1573 closescript(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1574 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1575 free_typebuf();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1576 typebuf = saved_typebuf[curscript];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1577
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1578 fclose(scriptin[curscript]);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1579 scriptin[curscript] = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1580 if (curscript > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1581 --curscript;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1582 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1583
358
e111db373ca4 updated for version 7.0093
vimboss
parents: 300
diff changeset
1584 #if defined(EXITFREE) || defined(PROTO)
e111db373ca4 updated for version 7.0093
vimboss
parents: 300
diff changeset
1585 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1586 close_all_scripts(void)
358
e111db373ca4 updated for version 7.0093
vimboss
parents: 300
diff changeset
1587 {
e111db373ca4 updated for version 7.0093
vimboss
parents: 300
diff changeset
1588 while (scriptin[0] != NULL)
e111db373ca4 updated for version 7.0093
vimboss
parents: 300
diff changeset
1589 closescript();
e111db373ca4 updated for version 7.0093
vimboss
parents: 300
diff changeset
1590 }
e111db373ca4 updated for version 7.0093
vimboss
parents: 300
diff changeset
1591 #endif
e111db373ca4 updated for version 7.0093
vimboss
parents: 300
diff changeset
1592
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1593 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1594 * Return TRUE when reading keys from a script file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1595 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1596 int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1597 using_script(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1598 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1599 return scriptin[curscript] != NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1600 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1601
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1602 /*
365
bda4394122e0 updated for version 7.0095
vimboss
parents: 358
diff changeset
1603 * This function is called just before doing a blocking wait. Thus after
bda4394122e0 updated for version 7.0095
vimboss
parents: 358
diff changeset
1604 * waiting 'updatetime' for a character to arrive.
bda4394122e0 updated for version 7.0095
vimboss
parents: 358
diff changeset
1605 */
bda4394122e0 updated for version 7.0095
vimboss
parents: 358
diff changeset
1606 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1607 before_blocking(void)
365
bda4394122e0 updated for version 7.0095
vimboss
parents: 358
diff changeset
1608 {
bda4394122e0 updated for version 7.0095
vimboss
parents: 358
diff changeset
1609 updatescript(0);
bda4394122e0 updated for version 7.0095
vimboss
parents: 358
diff changeset
1610 #ifdef FEAT_EVAL
958
e88950f0d4f6 updated for version 7.0-084
vimboss
parents: 859
diff changeset
1611 if (may_garbage_collect)
8881
ed0b39dd7fd6 commit https://github.com/vim/vim/commit/ebf7dfa6f121c82f97d2adca3d45fbaba9ad8f7e
Christian Brabandt <cb@256bit.org>
parents: 8212
diff changeset
1612 garbage_collect(FALSE);
365
bda4394122e0 updated for version 7.0095
vimboss
parents: 358
diff changeset
1613 #endif
bda4394122e0 updated for version 7.0095
vimboss
parents: 358
diff changeset
1614 }
bda4394122e0 updated for version 7.0095
vimboss
parents: 358
diff changeset
1615
bda4394122e0 updated for version 7.0095
vimboss
parents: 358
diff changeset
1616 /*
18498
9e6d5a4abb1c patch 8.1.2243: typos in comments
Bram Moolenaar <Bram@vim.org>
parents: 18412
diff changeset
1617 * updatescript() is called when a character can be written into the script file
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1618 * or when we have waited some time for a character (c == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1619 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1620 * All the changed memfiles are synced if c == 0 or when the number of typed
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1621 * characters reaches 'updatecount' and 'updatecount' is non-zero.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1622 */
17789
0f7ae8010787 patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents: 17659
diff changeset
1623 static void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1624 updatescript(int c)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1625 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1626 static int count = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1627
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1628 if (c && scriptout)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1629 putc(c, scriptout);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1630 if (c == 0 || (p_uc > 0 && ++count >= p_uc))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1631 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1632 ml_sync_all(c == 0, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1633 count = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1634 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1635 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1636
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1637 /*
20727
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
1638 * Convert "c" plus "modifiers" to merge the effect of modifyOtherKeys into the
18717
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1639 * character.
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1640 */
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1641 int
20727
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
1642 merge_modifyOtherKeys(int c_arg, int *modifiers)
18717
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1643 {
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1644 int c = c_arg;
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1645
20727
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
1646 if (*modifiers & MOD_MASK_CTRL)
18717
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1647 {
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1648 if ((c >= '`' && c <= 0x7f) || (c >= '@' && c <= '_'))
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1649 c &= 0x1f;
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1650 else if (c == '6')
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1651 // CTRL-6 is equivalent to CTRL-^
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1652 c = 0x1e;
20595
3609e842f822 patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20571
diff changeset
1653 #ifdef FEAT_GUI_GTK
3609e842f822 patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20571
diff changeset
1654 // These mappings look arbitrary at the first glance, but in fact
3609e842f822 patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20571
diff changeset
1655 // resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my
3609e842f822 patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20571
diff changeset
1656 // machine. The only difference is BS vs. DEL for CTRL-8 (makes
3609e842f822 patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20571
diff changeset
1657 // more sense and is consistent with usual terminal behaviour).
3609e842f822 patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20571
diff changeset
1658 else if (c == '2')
3609e842f822 patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20571
diff changeset
1659 c = NUL;
3609e842f822 patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20571
diff changeset
1660 else if (c >= '3' && c <= '7')
3609e842f822 patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20571
diff changeset
1661 c = c ^ 0x28;
3609e842f822 patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20571
diff changeset
1662 else if (c == '8')
3609e842f822 patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20571
diff changeset
1663 c = BS;
3609e842f822 patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20571
diff changeset
1664 else if (c == '?')
3609e842f822 patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20571
diff changeset
1665 c = DEL;
3609e842f822 patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20571
diff changeset
1666 #endif
3609e842f822 patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20571
diff changeset
1667 if (c != c_arg)
20727
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
1668 *modifiers &= ~MOD_MASK_CTRL;
18717
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1669 }
20727
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
1670 if ((*modifiers & (MOD_MASK_META | MOD_MASK_ALT))
18717
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1671 && c >= 0 && c <= 127)
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1672 {
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1673 c += 0x80;
20727
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
1674 *modifiers &= ~(MOD_MASK_META|MOD_MASK_ALT);
18717
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1675 }
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1676 return c;
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1677 }
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1678
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18689
diff changeset
1679 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1680 * Get the next input character.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1681 * Can return a special key or a multi-byte character.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1682 * Can return NUL when called recursively, use safe_vgetc() if that's not
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1683 * wanted.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1684 * This translates escaped K_SPECIAL and CSI bytes to a K_SPECIAL or CSI byte.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1685 * Collects the bytes of a multibyte character into the whole character.
1992
ada3271481ce updated for version 7.2-289
vimboss
parents: 1969
diff changeset
1686 * Returns the modifiers in the global "mod_mask".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1687 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1688 int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1689 vgetc(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1690 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1691 int c, c2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1692 int n;
3549
f52d2ea0f81c updated for version 7.3.535
Bram Moolenaar <bram@vim.org>
parents: 3448
diff changeset
1693 char_u buf[MB_MAXBYTES + 1];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1694 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1695
958
e88950f0d4f6 updated for version 7.0-084
vimboss
parents: 859
diff changeset
1696 #ifdef FEAT_EVAL
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1697 // Do garbage collection when garbagecollect() was called previously and
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1698 // we are now at the toplevel.
958
e88950f0d4f6 updated for version 7.0-084
vimboss
parents: 859
diff changeset
1699 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
1700 garbage_collect(FALSE);
958
e88950f0d4f6 updated for version 7.0-084
vimboss
parents: 859
diff changeset
1701 #endif
e88950f0d4f6 updated for version 7.0-084
vimboss
parents: 859
diff changeset
1702
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1703 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1704 * If a character was put back with vungetc, it was already processed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1705 * Return it directly.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1706 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1707 if (old_char != -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1708 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1709 c = old_char;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1710 old_char = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1711 mod_mask = old_mod_mask;
4227
94342b0605fb updated for version 7.3.865
Bram Moolenaar <bram@vim.org>
parents: 3560
diff changeset
1712 mouse_row = old_mouse_row;
94342b0605fb updated for version 7.3.865
Bram Moolenaar <bram@vim.org>
parents: 3560
diff changeset
1713 mouse_col = old_mouse_col;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1714 }
958
e88950f0d4f6 updated for version 7.0-084
vimboss
parents: 859
diff changeset
1715 else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1716 {
20571
5995db0fe84a patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents: 20563
diff changeset
1717 mod_mask = 0;
5995db0fe84a patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents: 20563
diff changeset
1718 vgetc_mod_mask = 0;
5995db0fe84a patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents: 20563
diff changeset
1719 vgetc_char = 0;
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1720 last_recorded_len = 0;
20571
5995db0fe84a patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents: 20563
diff changeset
1721
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1722 for (;;) // this is done twice if there are modifiers
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1723 {
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1724 int did_inc = FALSE;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1725
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1726 if (mod_mask
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1727 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1728 || im_is_preediting()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1729 #endif
18763
49b78d6465e5 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1730 #if defined(FEAT_PROP_POPUP)
17604
506dd2efcbb2 patch 8.1.1799: cannot avoid mapping for a popup window
Bram Moolenaar <Bram@vim.org>
parents: 17602
diff changeset
1731 || popup_no_mapping()
506dd2efcbb2 patch 8.1.1799: cannot avoid mapping for a popup window
Bram Moolenaar <Bram@vim.org>
parents: 17602
diff changeset
1732 #endif
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1733 )
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1734 {
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1735 // no mapping after modifier has been read
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1736 ++no_mapping;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1737 ++allow_keys;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1738 did_inc = TRUE; // mod_mask may change value
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1739 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1740 c = vgetorpeek(TRUE);
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1741 if (did_inc)
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1742 {
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1743 --no_mapping;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1744 --allow_keys;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1745 }
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1746
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1747 // Get two extra bytes for special keys
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1748 if (c == K_SPECIAL
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1749 #ifdef FEAT_GUI
19599
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19433
diff changeset
1750 || (c == CSI)
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1751 #endif
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1752 )
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1753 {
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1754 int save_allow_keys = allow_keys;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1755
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1756 ++no_mapping;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1757 allow_keys = 0; // make sure BS is not found
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1758 c2 = vgetorpeek(TRUE); // no mapping for these chars
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1759 c = vgetorpeek(TRUE);
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1760 --no_mapping;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1761 allow_keys = save_allow_keys;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1762 if (c2 == KS_MODIFIER)
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1763 {
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1764 mod_mask = c;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1765 continue;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1766 }
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1767 c = TO_SPECIAL(c2, c);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1768
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
1769 #if defined(FEAT_GUI_MSWIN) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1770 // Handle K_TEAROFF here, the caller of vgetc() doesn't need to
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1771 // know that a menu was torn off
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16393
diff changeset
1772 if (
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16393
diff changeset
1773 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16393
diff changeset
1774 gui.in_use &&
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16393
diff changeset
1775 # endif
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16393
diff changeset
1776 c == K_TEAROFF)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1777 {
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1778 char_u name[200];
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1779 int i;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1780
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1781 // get menu path, it ends with a <CR>
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1782 for (i = 0; (c = vgetorpeek(TRUE)) != '\r'; )
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1783 {
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1784 name[i] = c;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1785 if (i < 199)
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1786 ++i;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1787 }
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1788 name[i] = NUL;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1789 gui_make_tearoff(name);
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1790 continue;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1791 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1792 #endif
2277
f42e0b5ff9e9 Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents: 2210
diff changeset
1793 #if defined(FEAT_GUI) && defined(FEAT_GUI_GTK) && defined(FEAT_MENU)
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1794 // GTK: <F10> normally selects the menu, but it's passed until
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1795 // here to allow mapping it. Intercept and invoke the GTK
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1796 // behavior if it's not mapped.
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1797 if (c == K_F10 && gui.menubar != NULL)
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1798 {
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1799 gtk_menu_shell_select_first(
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1800 GTK_MENU_SHELL(gui.menubar), FALSE);
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1801 continue;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1802 }
36
125e80798a85 updated for version 7.0021
vimboss
parents: 10
diff changeset
1803 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1804 #ifdef FEAT_GUI
19599
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19433
diff changeset
1805 // Handle focus event here, so that the caller doesn't need to
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19433
diff changeset
1806 // know about it. Return K_IGNORE so that we loop once (needed
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19433
diff changeset
1807 // if 'lazyredraw' is set).
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19433
diff changeset
1808 if (c == K_FOCUSGAINED || c == K_FOCUSLOST)
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1809 {
19599
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19433
diff changeset
1810 ui_focus_change(c == K_FOCUSGAINED);
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19433
diff changeset
1811 c = K_IGNORE;
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1812 }
19599
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19433
diff changeset
1813
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19433
diff changeset
1814 // Translate K_CSI to CSI. The special key is only used to
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19433
diff changeset
1815 // avoid it being recognized as the start of a special key.
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19433
diff changeset
1816 if (c == K_CSI)
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19433
diff changeset
1817 c = CSI;
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1818 #endif
1380
99a9e42e5688 updated for version 7.1-095
vimboss
parents: 1187
diff changeset
1819 }
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1820 // a keypad or special function key was not mapped, use it like
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1821 // its ASCII equivalent
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1822 switch (c)
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1823 {
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1824 case K_KPLUS: c = '+'; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1825 case K_KMINUS: c = '-'; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1826 case K_KDIVIDE: c = '/'; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1827 case K_KMULTIPLY: c = '*'; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1828 case K_KENTER: c = CAR; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1829 case K_KPOINT:
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
1830 #ifdef MSWIN
14403
e29cbac5e8f6 patch 8.1.0216: part of file not indented properly
Christian Brabandt <cb@256bit.org>
parents: 14247
diff changeset
1831 // Can be either '.' or a ',',
e29cbac5e8f6 patch 8.1.0216: part of file not indented properly
Christian Brabandt <cb@256bit.org>
parents: 14247
diff changeset
1832 // depending on the type of keypad.
e29cbac5e8f6 patch 8.1.0216: part of file not indented properly
Christian Brabandt <cb@256bit.org>
parents: 14247
diff changeset
1833 c = MapVirtualKey(VK_DECIMAL, 2); break;
36
125e80798a85 updated for version 7.0021
vimboss
parents: 10
diff changeset
1834 #else
14403
e29cbac5e8f6 patch 8.1.0216: part of file not indented properly
Christian Brabandt <cb@256bit.org>
parents: 14247
diff changeset
1835 c = '.'; break;
36
125e80798a85 updated for version 7.0021
vimboss
parents: 10
diff changeset
1836 #endif
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1837 case K_K0: c = '0'; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1838 case K_K1: c = '1'; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1839 case K_K2: c = '2'; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1840 case K_K3: c = '3'; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1841 case K_K4: c = '4'; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1842 case K_K5: c = '5'; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1843 case K_K6: c = '6'; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1844 case K_K7: c = '7'; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1845 case K_K8: c = '8'; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1846 case K_K9: c = '9'; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1847
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1848 case K_XHOME:
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1849 case K_ZHOME: if (mod_mask == MOD_MASK_SHIFT)
229
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1850 {
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1851 c = K_S_HOME;
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1852 mod_mask = 0;
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1853 }
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1854 else if (mod_mask == MOD_MASK_CTRL)
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1855 {
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1856 c = K_C_HOME;
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1857 mod_mask = 0;
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1858 }
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1859 else
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1860 c = K_HOME;
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1861 break;
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1862 case K_XEND:
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1863 case K_ZEND: if (mod_mask == MOD_MASK_SHIFT)
229
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1864 {
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1865 c = K_S_END;
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1866 mod_mask = 0;
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1867 }
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1868 else if (mod_mask == MOD_MASK_CTRL)
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1869 {
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1870 c = K_C_END;
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1871 mod_mask = 0;
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1872 }
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1873 else
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1874 c = K_END;
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1875 break;
723a01584c3e updated for version 7.0064
vimboss
parents: 202
diff changeset
1876
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1877 case K_XUP: c = K_UP; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1878 case K_XDOWN: c = K_DOWN; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1879 case K_XLEFT: c = K_LEFT; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1880 case K_XRIGHT: c = K_RIGHT; break;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1881 }
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1882
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1883 // For a multi-byte character get all the bytes and return the
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1884 // converted character.
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1885 // Note: This will loop until enough bytes are received!
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1886 if (has_mbyte && (n = MB_BYTE2LEN_CHECK(c)) > 1)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1887 {
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1888 ++no_mapping;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1889 buf[0] = c;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1890 for (i = 1; i < n; ++i)
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1891 {
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1892 buf[i] = vgetorpeek(TRUE);
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1893 if (buf[i] == K_SPECIAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1894 #ifdef FEAT_GUI
19599
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19433
diff changeset
1895 || (buf[i] == CSI)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1896 #endif
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1897 )
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1898 {
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1899 // Must be a K_SPECIAL - KS_SPECIAL - KE_FILLER
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1900 // sequence, which represents a K_SPECIAL (0x80),
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1901 // or a CSI - KS_EXTRA - KE_CSI sequence, which
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1902 // represents a CSI (0x9B),
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1903 // or a K_SPECIAL - KS_EXTRA - KE_CSI, which is CSI
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1904 // too.
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1905 c = vgetorpeek(TRUE);
25852
336e2d9924e6 patch 8.2.3460: some type casts are not needed
Bram Moolenaar <Bram@vim.org>
parents: 25567
diff changeset
1906 if (vgetorpeek(TRUE) == KE_CSI && c == KS_EXTRA)
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1907 buf[i] = CSI;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1908 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1909 }
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1910 --no_mapping;
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1911 c = (*mb_ptr2char)(buf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1912 }
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1913
20733
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
1914 if (vgetc_char == 0)
20571
5995db0fe84a patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents: 20563
diff changeset
1915 {
5995db0fe84a patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents: 20563
diff changeset
1916 vgetc_mod_mask = mod_mask;
5995db0fe84a patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents: 20563
diff changeset
1917 vgetc_char = c;
5995db0fe84a patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents: 20563
diff changeset
1918 }
18281
c67268c0398e patch 8.1.2135: with modifyOtherKeys Alt-a does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 18279
diff changeset
1919
15989
a14d8b4ef2b0 patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
1920 break;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1921 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1922 }
958
e88950f0d4f6 updated for version 7.0-084
vimboss
parents: 859
diff changeset
1923
e88950f0d4f6 updated for version 7.0-084
vimboss
parents: 859
diff changeset
1924 #ifdef FEAT_EVAL
e88950f0d4f6 updated for version 7.0-084
vimboss
parents: 859
diff changeset
1925 /*
e88950f0d4f6 updated for version 7.0-084
vimboss
parents: 859
diff changeset
1926 * In the main loop "may_garbage_collect" can be set to do garbage
e88950f0d4f6 updated for version 7.0-084
vimboss
parents: 859
diff changeset
1927 * collection in the first next vgetc(). It's disabled after that to
e88950f0d4f6 updated for version 7.0-084
vimboss
parents: 859
diff changeset
1928 * avoid internally used Lists and Dicts to be freed.
e88950f0d4f6 updated for version 7.0-084
vimboss
parents: 859
diff changeset
1929 */
e88950f0d4f6 updated for version 7.0-084
vimboss
parents: 859
diff changeset
1930 may_garbage_collect = FALSE;
e88950f0d4f6 updated for version 7.0-084
vimboss
parents: 859
diff changeset
1931 #endif
18102
0d9ec3a2821f patch 8.1.2046: SafeState may be triggered at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents: 18094
diff changeset
1932
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
1933 #ifdef FEAT_BEVAL_TERM
17282
6f1679e1082d patch 8.1.1640: the CursorHold autocommand takes down a balloon
Bram Moolenaar <Bram@vim.org>
parents: 17184
diff changeset
1934 if (c != K_MOUSEMOVE && c != K_IGNORE && c != K_CURSORHOLD)
12865
ebb4f6c93598 patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
1935 {
18102
0d9ec3a2821f patch 8.1.2046: SafeState may be triggered at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents: 18094
diff changeset
1936 // Don't trigger 'balloonexpr' unless only the mouse was moved.
12865
ebb4f6c93598 patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
1937 bevalexpr_due_set = FALSE;
ebb4f6c93598 patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
1938 ui_remove_balloon();
ebb4f6c93598 patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
1939 }
ebb4f6c93598 patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
1940 #endif
18763
49b78d6465e5 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1941 #ifdef FEAT_PROP_POPUP
22442
73be82f278c0 patch 8.2.1769: popup filter interferes with using :normal to move the cursor
Bram Moolenaar <Bram@vim.org>
parents: 22361
diff changeset
1942 // Only filter keys that do not come from ":normal". Keys from feedkeys()
73be82f278c0 patch 8.2.1769: popup filter interferes with using :normal to move the cursor
Bram Moolenaar <Bram@vim.org>
parents: 22361
diff changeset
1943 // are filtered.
73be82f278c0 patch 8.2.1769: popup filter interferes with using :normal to move the cursor
Bram Moolenaar <Bram@vim.org>
parents: 22361
diff changeset
1944 if ((!ex_normal_busy || in_feedkeys) && popup_do_filter(c))
18231
25535ef50842 patch 8.1.2110: CTRL-C closes two popups instead of one
Bram Moolenaar <Bram@vim.org>
parents: 18193
diff changeset
1945 {
25535ef50842 patch 8.1.2110: CTRL-C closes two popups instead of one
Bram Moolenaar <Bram@vim.org>
parents: 18193
diff changeset
1946 if (c == Ctrl_C)
25535ef50842 patch 8.1.2110: CTRL-C closes two popups instead of one
Bram Moolenaar <Bram@vim.org>
parents: 18193
diff changeset
1947 got_int = FALSE; // avoid looping
16880
998603a243d7 patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
1948 c = K_IGNORE;
18231
25535ef50842 patch 8.1.2110: CTRL-C closes two popups instead of one
Bram Moolenaar <Bram@vim.org>
parents: 18193
diff changeset
1949 }
16880
998603a243d7 patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
1950 #endif
958
e88950f0d4f6 updated for version 7.0-084
vimboss
parents: 859
diff changeset
1951
18102
0d9ec3a2821f patch 8.1.2046: SafeState may be triggered at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents: 18094
diff changeset
1952 // Need to process the character before we know it's safe to do something
0d9ec3a2821f patch 8.1.2046: SafeState may be triggered at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents: 18094
diff changeset
1953 // else.
0d9ec3a2821f patch 8.1.2046: SafeState may be triggered at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents: 18094
diff changeset
1954 if (c != K_IGNORE)
18116
7f57ea9a4ba8 patch 8.1.2053: SafeStateAgain not triggered if callback uses feedkeys()
Bram Moolenaar <Bram@vim.org>
parents: 18106
diff changeset
1955 state_no_longer_safe("key typed");
18102
0d9ec3a2821f patch 8.1.2046: SafeState may be triggered at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents: 18094
diff changeset
1956
958
e88950f0d4f6 updated for version 7.0-084
vimboss
parents: 859
diff changeset
1957 return c;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1958 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1959
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1960 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1961 * Like vgetc(), but never return a NUL when called recursively, get a key
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1962 * directly from the user (ignoring typeahead).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1963 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1964 int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1965 safe_vgetc(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1966 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1967 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1968
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1969 c = vgetc();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1970 if (c == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1971 c = get_keystroke();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1972 return c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1973 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1974
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1975 /*
1389
bdcfe793d49f updated for version 7.1-104
vimboss
parents: 1380
diff changeset
1976 * Like safe_vgetc(), but loop to handle K_IGNORE.
bdcfe793d49f updated for version 7.1-104
vimboss
parents: 1380
diff changeset
1977 * Also ignore scrollbar events.
bdcfe793d49f updated for version 7.1-104
vimboss
parents: 1380
diff changeset
1978 */
bdcfe793d49f updated for version 7.1-104
vimboss
parents: 1380
diff changeset
1979 int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1980 plain_vgetc(void)
1389
bdcfe793d49f updated for version 7.1-104
vimboss
parents: 1380
diff changeset
1981 {
bdcfe793d49f updated for version 7.1-104
vimboss
parents: 1380
diff changeset
1982 int c;
bdcfe793d49f updated for version 7.1-104
vimboss
parents: 1380
diff changeset
1983
bdcfe793d49f updated for version 7.1-104
vimboss
parents: 1380
diff changeset
1984 do
bdcfe793d49f updated for version 7.1-104
vimboss
parents: 1380
diff changeset
1985 c = safe_vgetc();
24588
826ba03d0d22 patch 8.2.2833: two key command cancelled by moving mouse when using popup
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1986 while (c == K_IGNORE
826ba03d0d22 patch 8.2.2833: two key command cancelled by moving mouse when using popup
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1987 || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR
826ba03d0d22 patch 8.2.2833: two key command cancelled by moving mouse when using popup
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1988 || c == K_MOUSEMOVE);
10640
27be410d6d29 patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents: 10549
diff changeset
1989
27be410d6d29 patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents: 10549
diff changeset
1990 if (c == K_PS)
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1991 // Only handle the first pasted character. Drop the rest, since we
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1992 // don't know what to do with it.
10640
27be410d6d29 patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents: 10549
diff changeset
1993 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
1994
1389
bdcfe793d49f updated for version 7.1-104
vimboss
parents: 1380
diff changeset
1995 return c;
bdcfe793d49f updated for version 7.1-104
vimboss
parents: 1380
diff changeset
1996 }
bdcfe793d49f updated for version 7.1-104
vimboss
parents: 1380
diff changeset
1997
bdcfe793d49f updated for version 7.1-104
vimboss
parents: 1380
diff changeset
1998 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1999 * Check if a character is available, such that vgetc() will not block.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2000 * If the next character is a special character or multi-byte, the returned
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2001 * character is not valid!.
14909
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2002 * Returns NUL if no character is available.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2003 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2004 int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
2005 vpeekc(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2006 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2007 if (old_char != -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2008 return old_char;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2009 return vgetorpeek(FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2010 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2011
13344
68c4fc9ae216 patch 8.0.1546: using feedkeys() in a terminal may trigger mappings
Christian Brabandt <cb@256bit.org>
parents: 13210
diff changeset
2012 #if defined(FEAT_TERMRESPONSE) || defined(FEAT_TERMINAL) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2013 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2014 * Like vpeekc(), but don't allow mapping. Do allow checking for terminal
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2015 * codes.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2016 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2017 int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
2018 vpeekc_nomap(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2019 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2020 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2021
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2022 ++no_mapping;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2023 ++allow_keys;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2024 c = vpeekc();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2025 --no_mapping;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2026 --allow_keys;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2027 return c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2028 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2029 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2030
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2031 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2032 * Check if any character is available, also half an escape sequence.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2033 * Trick: when no typeahead found, but there is something in the typeahead
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2034 * buffer, it must be an ESC that is recognized as the start of a key code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2035 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2036 int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
2037 vpeekc_any(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2038 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2039 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2040
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2041 c = vpeekc();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2042 if (c == NUL && typebuf.tb_len > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2043 c = ESC;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2044 return c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2045 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2046
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2047 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2048 * Call vpeekc() without causing anything to be mapped.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2049 * Return TRUE if a character is available, FALSE otherwise.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2050 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2051 int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
2052 char_avail(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2053 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2054 int retval;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2055
8011
26f555e9aab1 commit https://github.com/vim/vim/commit/2ab375e54ef4eac438d1aef8b99d9e71f2fa0c63
Christian Brabandt <cb@256bit.org>
parents: 7860
diff changeset
2056 #ifdef FEAT_EVAL
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2057 // When test_override("char_avail", 1) was called pretend there is no
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2058 // typeahead.
8011
26f555e9aab1 commit https://github.com/vim/vim/commit/2ab375e54ef4eac438d1aef8b99d9e71f2fa0c63
Christian Brabandt <cb@256bit.org>
parents: 7860
diff changeset
2059 if (disable_char_avail_for_testing)
26f555e9aab1 commit https://github.com/vim/vim/commit/2ab375e54ef4eac438d1aef8b99d9e71f2fa0c63
Christian Brabandt <cb@256bit.org>
parents: 7860
diff changeset
2060 return FALSE;
26f555e9aab1 commit https://github.com/vim/vim/commit/2ab375e54ef4eac438d1aef8b99d9e71f2fa0c63
Christian Brabandt <cb@256bit.org>
parents: 7860
diff changeset
2061 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2062 ++no_mapping;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2063 retval = vpeekc();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2064 --no_mapping;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2065 return (retval != NUL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2066 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2067
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2068 #if defined(FEAT_EVAL) || defined(PROTO)
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2069 /*
24838
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2070 * "getchar()" and "getcharstr()" functions
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2071 */
24838
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2072 static void
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2073 getchar_common(typval_T *argvars, typval_T *rettv)
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2074 {
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2075 varnumber_T n;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2076 int error = FALSE;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2077
25384
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25064
diff changeset
2078 if (in_vim9script() && check_for_opt_bool_arg(argvars, 0) == FAIL)
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25064
diff changeset
2079 return;
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25064
diff changeset
2080
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2081 #ifdef MESSAGE_QUEUE
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2082 // vpeekc() used to check for messages, but that caused problems, invoking
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2083 // a callback where it was not expected. Some plugins use getchar(1) in a
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2084 // loop to await a message, therefore make sure we check for messages here.
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2085 parse_queued_messages();
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2086 #endif
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2087
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2088 // Position the cursor. Needed after a message that ends in a space.
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2089 windgoto(msg_row, msg_col);
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2090
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2091 ++no_mapping;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2092 ++allow_keys;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2093 for (;;)
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2094 {
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2095 if (argvars[0].v_type == VAR_UNKNOWN)
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2096 // getchar(): blocking wait.
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2097 n = plain_vgetc();
22107
679269735ec3 patch 8.2.1603: Vim9: cannot use "true" with getchar()
Bram Moolenaar <Bram@vim.org>
parents: 21654
diff changeset
2098 else if (tv_get_bool_chk(&argvars[0], &error))
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2099 // getchar(1): only check if char avail
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2100 n = vpeekc_any();
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2101 else if (error || vpeekc_any() == NUL)
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2102 // illegal argument or getchar(0) and no char avail: return zero
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2103 n = 0;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2104 else
22117
3ea773da9c4f patch 8.2.1608: Vim9: getchar() test fails with GUI
Bram Moolenaar <Bram@vim.org>
parents: 22107
diff changeset
2105 // getchar(0) and char avail() != NUL: get a character.
3ea773da9c4f patch 8.2.1608: Vim9: getchar() test fails with GUI
Bram Moolenaar <Bram@vim.org>
parents: 22107
diff changeset
2106 // Note that vpeekc_any() returns K_SPECIAL for K_IGNORE.
3ea773da9c4f patch 8.2.1608: Vim9: getchar() test fails with GUI
Bram Moolenaar <Bram@vim.org>
parents: 22107
diff changeset
2107 n = safe_vgetc();
3ea773da9c4f patch 8.2.1608: Vim9: getchar() test fails with GUI
Bram Moolenaar <Bram@vim.org>
parents: 22107
diff changeset
2108
3ea773da9c4f patch 8.2.1608: Vim9: getchar() test fails with GUI
Bram Moolenaar <Bram@vim.org>
parents: 22107
diff changeset
2109 if (n == K_IGNORE || n == K_MOUSEMOVE
3ea773da9c4f patch 8.2.1608: Vim9: getchar() test fails with GUI
Bram Moolenaar <Bram@vim.org>
parents: 22107
diff changeset
2110 || n == K_VER_SCROLLBAR || n == K_HOR_SCROLLBAR)
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2111 continue;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2112 break;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2113 }
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2114 --no_mapping;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2115 --allow_keys;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2116
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2117 set_vim_var_nr(VV_MOUSE_WIN, 0);
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2118 set_vim_var_nr(VV_MOUSE_WINID, 0);
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2119 set_vim_var_nr(VV_MOUSE_LNUM, 0);
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2120 set_vim_var_nr(VV_MOUSE_COL, 0);
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2121
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2122 rettv->vval.v_number = n;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2123 if (IS_SPECIAL(n) || mod_mask != 0)
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2124 {
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2125 char_u temp[10]; // modifier: 3, mbyte-char: 6, NUL: 1
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2126 int i = 0;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2127
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2128 // Turn a special key into three bytes, plus modifier.
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2129 if (mod_mask != 0)
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2130 {
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2131 temp[i++] = K_SPECIAL;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2132 temp[i++] = KS_MODIFIER;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2133 temp[i++] = mod_mask;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2134 }
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2135 if (IS_SPECIAL(n))
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2136 {
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2137 temp[i++] = K_SPECIAL;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2138 temp[i++] = K_SECOND(n);
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2139 temp[i++] = K_THIRD(n);
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2140 }
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2141 else if (has_mbyte)
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2142 i += (*mb_char2bytes)(n, temp + i);
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2143 else
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2144 temp[i++] = n;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2145 temp[i++] = NUL;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2146 rettv->v_type = VAR_STRING;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2147 rettv->vval.v_string = vim_strsave(temp);
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2148
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2149 if (is_mouse_key(n))
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2150 {
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2151 int row = mouse_row;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2152 int col = mouse_col;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2153 win_T *win;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2154 linenr_T lnum;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2155 win_T *wp;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2156 int winnr = 1;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2157
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2158 if (row >= 0 && col >= 0)
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2159 {
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2160 // Find the window at the mouse coordinates and compute the
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2161 // text position.
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2162 win = mouse_find_win(&row, &col, FIND_POPUP);
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2163 if (win == NULL)
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2164 return;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2165 (void)mouse_comp_pos(win, &row, &col, &lnum, NULL);
18763
49b78d6465e5 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2166 #ifdef FEAT_PROP_POPUP
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2167 if (WIN_IS_POPUP(win))
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2168 winnr = 0;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2169 else
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18301
diff changeset
2170 #endif
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2171 for (wp = firstwin; wp != win && wp != NULL;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2172 wp = wp->w_next)
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2173 ++winnr;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2174 set_vim_var_nr(VV_MOUSE_WIN, winnr);
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2175 set_vim_var_nr(VV_MOUSE_WINID, win->w_id);
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2176 set_vim_var_nr(VV_MOUSE_LNUM, lnum);
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2177 set_vim_var_nr(VV_MOUSE_COL, col + 1);
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2178 }
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2179 }
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2180 }
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2181 }
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2182
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2183 /*
24838
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2184 * "getchar()" function
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2185 */
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2186 void
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2187 f_getchar(typval_T *argvars, typval_T *rettv)
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2188 {
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2189 getchar_common(argvars, rettv);
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2190 }
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2191
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2192 /*
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2193 * "getcharstr()" function
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2194 */
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2195 void
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2196 f_getcharstr(typval_T *argvars, typval_T *rettv)
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2197 {
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2198 getchar_common(argvars, rettv);
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2199
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2200 if (rettv->v_type == VAR_NUMBER)
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2201 {
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2202 char_u temp[7]; // mbyte-char: 6, NUL: 1
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2203 varnumber_T n = rettv->vval.v_number;
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2204 int i = 0;
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2205
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2206 if (n != 0)
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2207 {
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2208 if (has_mbyte)
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2209 i += (*mb_char2bytes)(n, temp + i);
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2210 else
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2211 temp[i++] = n;
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2212 }
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2213 temp[i++] = NUL;
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2214 rettv->v_type = VAR_STRING;
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2215 rettv->vval.v_string = vim_strsave(temp);
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2216 }
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2217 }
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2218
3f9053c21765 patch 8.2.2957: using getchar() in Vim9 script is problematic
Bram Moolenaar <Bram@vim.org>
parents: 24588
diff changeset
2219 /*
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2220 * "getcharmod()" function
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2221 */
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2222 void
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2223 f_getcharmod(typval_T *argvars UNUSED, typval_T *rettv)
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2224 {
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2225 rettv->vval.v_number = mod_mask;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2226 }
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2227 #endif // FEAT_EVAL
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2228
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2229 #if defined(MESSAGE_QUEUE) || defined(PROTO)
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2230 # define MAX_REPEAT_PARSE 8
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2231
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2232 /*
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2233 * Process messages that have been queued for netbeans or clientserver.
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2234 * Also check if any jobs have ended.
25881
2ee0425960fe patch 8.2.3474: some places use "Vimscript" instead of "Vim script"
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
2235 * These functions can call arbitrary Vim script and should only be called when
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2236 * it is safe to do so.
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2237 */
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2238 void
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2239 parse_queued_messages(void)
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2240 {
18412
6208e5c2eee7 patch 8.1.2200: crash when memory allocation fails
Bram Moolenaar <Bram@vim.org>
parents: 18394
diff changeset
2241 int old_curwin_id;
6208e5c2eee7 patch 8.1.2200: crash when memory allocation fails
Bram Moolenaar <Bram@vim.org>
parents: 18394
diff changeset
2242 int old_curbuf_fnum;
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2243 int i;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2244 int save_may_garbage_collect = may_garbage_collect;
18102
0d9ec3a2821f patch 8.1.2046: SafeState may be triggered at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents: 18094
diff changeset
2245 static int entered = 0;
18116
7f57ea9a4ba8 patch 8.1.2053: SafeStateAgain not triggered if callback uses feedkeys()
Bram Moolenaar <Bram@vim.org>
parents: 18106
diff changeset
2246 int was_safe = get_was_safe_state();
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2247
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2248 // Do not handle messages while redrawing, because it may cause buffers to
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2249 // change or be wiped while they are being redrawn.
22800
8e7cbf73c3a0 patch 8.2.1948: GUI: crash when handling message while closing a window
Bram Moolenaar <Bram@vim.org>
parents: 22442
diff changeset
2250 // Also bail out when parsing messages was explicitly disabled.
8e7cbf73c3a0 patch 8.2.1948: GUI: crash when handling message while closing a window
Bram Moolenaar <Bram@vim.org>
parents: 22442
diff changeset
2251 if (updating_screen || dont_parse_messages)
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2252 return;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2253
18412
6208e5c2eee7 patch 8.1.2200: crash when memory allocation fails
Bram Moolenaar <Bram@vim.org>
parents: 18394
diff changeset
2254 // If memory allocation fails during startup we'll exit but curbuf or
6208e5c2eee7 patch 8.1.2200: crash when memory allocation fails
Bram Moolenaar <Bram@vim.org>
parents: 18394
diff changeset
2255 // curwin could be NULL.
6208e5c2eee7 patch 8.1.2200: crash when memory allocation fails
Bram Moolenaar <Bram@vim.org>
parents: 18394
diff changeset
2256 if (curbuf == NULL || curwin == NULL)
6208e5c2eee7 patch 8.1.2200: crash when memory allocation fails
Bram Moolenaar <Bram@vim.org>
parents: 18394
diff changeset
2257 return;
6208e5c2eee7 patch 8.1.2200: crash when memory allocation fails
Bram Moolenaar <Bram@vim.org>
parents: 18394
diff changeset
2258
6208e5c2eee7 patch 8.1.2200: crash when memory allocation fails
Bram Moolenaar <Bram@vim.org>
parents: 18394
diff changeset
2259 old_curbuf_fnum = curbuf->b_fnum;
6208e5c2eee7 patch 8.1.2200: crash when memory allocation fails
Bram Moolenaar <Bram@vim.org>
parents: 18394
diff changeset
2260 old_curwin_id = curwin->w_id;
6208e5c2eee7 patch 8.1.2200: crash when memory allocation fails
Bram Moolenaar <Bram@vim.org>
parents: 18394
diff changeset
2261
18102
0d9ec3a2821f patch 8.1.2046: SafeState may be triggered at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents: 18094
diff changeset
2262 ++entered;
0d9ec3a2821f patch 8.1.2046: SafeState may be triggered at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents: 18094
diff changeset
2263
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2264 // may_garbage_collect is set in main_loop() to do garbage collection when
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2265 // blocking to wait on a character. We don't want that while parsing
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2266 // messages, a callback may invoke vgetc() while lists and dicts are in use
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2267 // in the call stack.
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2268 may_garbage_collect = FALSE;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2269
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2270 // Loop when a job ended, but don't keep looping forever.
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2271 for (i = 0; i < MAX_REPEAT_PARSE; ++i)
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2272 {
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2273 // For Win32 mch_breakcheck() does not check for input, do it here.
20277
8a694c9447d7 patch 8.2.0694: Haiku: channel and terminal do not work
Bram Moolenaar <Bram@vim.org>
parents: 20237
diff changeset
2274 # if (defined(MSWIN) || defined(__HAIKU__)) && defined(FEAT_JOB_CHANNEL)
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2275 channel_handle_events(FALSE);
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2276 # endif
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2277
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2278 # ifdef FEAT_NETBEANS_INTG
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2279 // Process the queued netbeans messages.
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2280 netbeans_parse_messages();
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2281 # endif
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2282 # ifdef FEAT_JOB_CHANNEL
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2283 // Write any buffer lines still to be written.
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2284 channel_write_any_lines();
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2285
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2286 // Process the messages queued on channels.
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2287 channel_parse_messages();
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2288 # endif
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2289 # if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2290 // Process the queued clientserver messages.
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2291 server_parse_messages();
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2292 # endif
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2293 # ifdef FEAT_JOB_CHANNEL
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2294 // Check if any jobs have ended. If so, repeat the above to handle
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2295 // changes, e.g. stdin may have been closed.
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2296 if (job_check_ended())
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2297 continue;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2298 # endif
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2299 # ifdef FEAT_TERMINAL
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2300 free_unused_terminals();
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2301 # endif
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2302 # ifdef FEAT_SOUND_CANBERRA
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2303 if (has_sound_callback_in_queue())
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2304 invoke_sound_callback();
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2305 # endif
20800
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20733
diff changeset
2306 #ifdef SIGUSR1
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20733
diff changeset
2307 if (got_sigusr1)
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20733
diff changeset
2308 {
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20733
diff changeset
2309 apply_autocmds(EVENT_SIGUSR1, NULL, NULL, FALSE, curbuf);
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20733
diff changeset
2310 got_sigusr1 = FALSE;
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20733
diff changeset
2311 }
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20733
diff changeset
2312 #endif
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2313 break;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2314 }
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2315
18102
0d9ec3a2821f patch 8.1.2046: SafeState may be triggered at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents: 18094
diff changeset
2316 // When not nested we'll go back to waiting for a typed character. If it
0d9ec3a2821f patch 8.1.2046: SafeState may be triggered at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents: 18094
diff changeset
2317 // was safe before then this triggers a SafeStateAgain autocommand event.
18116
7f57ea9a4ba8 patch 8.1.2053: SafeStateAgain not triggered if callback uses feedkeys()
Bram Moolenaar <Bram@vim.org>
parents: 18106
diff changeset
2318 if (entered == 1 && was_safe)
18106
b456bba1276a patch 8.1.2048: not clear why SafeState and SafeStateAgain are not triggered
Bram Moolenaar <Bram@vim.org>
parents: 18102
diff changeset
2319 may_trigger_safestateagain();
18102
0d9ec3a2821f patch 8.1.2046: SafeState may be triggered at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents: 18094
diff changeset
2320
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2321 may_garbage_collect = save_may_garbage_collect;
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2322
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2323 // If the current window or buffer changed we need to bail out of the
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2324 // waiting loop. E.g. when a job exit callback closes the terminal window.
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2325 if (curwin->w_id != old_curwin_id || curbuf->b_fnum != old_curbuf_fnum)
20571
5995db0fe84a patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents: 20563
diff changeset
2326 ins_char_typebuf(K_IGNORE, 0);
18102
0d9ec3a2821f patch 8.1.2046: SafeState may be triggered at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents: 18094
diff changeset
2327
0d9ec3a2821f patch 8.1.2046: SafeState may be triggered at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents: 18094
diff changeset
2328 --entered;
18094
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2329 }
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2330 #endif
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2331
a1396a35444c patch 8.1.2042: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
2332
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2333 typedef enum {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2334 map_result_fail, // failed, break loop
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2335 map_result_get, // get a character from typeahead
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2336 map_result_retry, // try to map again
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2337 map_result_nomatch // no matching mapping, get char
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2338 } map_result_T;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2339
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2340 /*
18394
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2341 * Check if the bytes at the start of the typeahead buffer are a character used
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2342 * in CTRL-X mode. This includes the form with a CTRL modifier.
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2343 */
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2344 static int
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2345 at_ctrl_x_key(void)
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2346 {
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2347 char_u *p = typebuf.tb_buf + typebuf.tb_off;
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2348 int c = *p;
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2349
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2350 if (typebuf.tb_len > 3
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2351 && c == K_SPECIAL
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2352 && p[1] == KS_MODIFIER
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2353 && (p[2] & MOD_MASK_CTRL))
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2354 c = p[3] & 0x1f;
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2355 return vim_is_ctrl_x_key(c);
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2356 }
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2357
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2358 /*
23229
b545334ae654 patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents: 23076
diff changeset
2359 * Check if typebuf.tb_buf[] contains a modifier plus key that can be changed
20727
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2360 * into just a key, apply that.
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2361 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2362 * + "max_offset"].
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2363 * Return the length of the replaced bytes, zero if nothing changed.
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2364 */
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2365 static int
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2366 check_simplify_modifier(int max_offset)
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2367 {
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2368 int offset;
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2369 char_u *tp;
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2370
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2371 for (offset = 0; offset < max_offset; ++offset)
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2372 {
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2373 if (offset + 3 >= typebuf.tb_len)
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2374 break;
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2375 tp = typebuf.tb_buf + typebuf.tb_off + offset;
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2376 if (tp[0] == K_SPECIAL && tp[1] == KS_MODIFIER)
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2377 {
20733
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2378 // A modifier was not used for a mapping, apply it to ASCII keys.
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2379 // Shift would already have been applied.
20727
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2380 int modifier = tp[2];
20733
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2381 int c = tp[3];
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2382 int new_c = merge_modifyOtherKeys(c, &modifier);
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2383
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2384 if (new_c != c)
20727
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2385 {
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2386 char_u new_string[MB_MAXBYTES];
20733
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2387 int len;
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2388
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2389 if (offset == 0)
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2390 {
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2391 // At the start: remember the character and mod_mask before
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2392 // merging, in some cases, e.g. at the hit-return prompt,
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2393 // they are put back in the typeahead buffer.
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2394 vgetc_char = c;
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2395 vgetc_mod_mask = tp[2];
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2396 }
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2397 len = mb_char2bytes(new_c, new_string);
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2398 if (modifier == 0)
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2399 {
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2400 if (put_string_in_typebuf(offset, 4, new_string, len,
20727
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2401 NULL, 0, 0) == FAIL)
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2402 return -1;
20733
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2403 }
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2404 else
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2405 {
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2406 tp[2] = modifier;
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2407 if (put_string_in_typebuf(offset + 3, 1, new_string, len,
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2408 NULL, 0, 0) == FAIL)
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2409 return -1;
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2410 }
20727
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2411 return len;
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2412 }
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2413 }
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2414 }
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2415 return 0;
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2416 }
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2417
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2418 /*
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2419 * Handle mappings in the typeahead buffer.
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2420 * - When something was mapped, return map_result_retry for recursive mappings.
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2421 * - When nothing mapped and typeahead has a character: return map_result_get.
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2422 * - When there is no match yet, return map_result_nomatch, need to get more
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2423 * typeahead.
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2424 */
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2425 static int
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2426 handle_mapping(
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2427 int *keylenp,
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2428 int *timedout,
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2429 int *mapdepth)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2430 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2431 mapblock_T *mp = NULL;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2432 mapblock_T *mp2;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2433 mapblock_T *mp_match;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2434 int mp_match_len = 0;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2435 int max_mlen = 0;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2436 int tb_c1;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2437 int mlen;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2438 #ifdef FEAT_LANGMAP
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2439 int nolmaplen;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2440 #endif
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2441 int keylen = *keylenp;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2442 int i;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2443 int local_State = get_real_state();
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2444
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2445 /*
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2446 * Check for a mappable key sequence.
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2447 * Walk through one maphash[] list until we find an entry that matches.
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2448 *
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2449 * Don't look for mappings if:
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2450 * - no_mapping set: mapping disabled (e.g. for CTRL-V)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2451 * - maphash_valid not set: no mappings present.
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2452 * - typebuf.tb_buf[typebuf.tb_off] should not be remapped
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2453 * - in insert or cmdline mode and 'paste' option set
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2454 * - waiting for "hit return to continue" and CR or SPACE typed
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2455 * - waiting for a char with --more--
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2456 * - in Ctrl-X mode, and we get a valid char for that mode
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2457 */
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2458 tb_c1 = typebuf.tb_buf[typebuf.tb_off];
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2459 if (no_mapping == 0 && is_maphash_valid()
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2460 && (no_zero_mapping == 0 || tb_c1 != '0')
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2461 && (typebuf.tb_maplen == 0
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2462 || (p_remap
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2463 && (typebuf.tb_noremap[typebuf.tb_off]
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2464 & (RM_NONE|RM_ABBR)) == 0))
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2465 && !(p_paste && (State & (INSERT + CMDLINE)))
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2466 && !(State == HITRETURN && (tb_c1 == CAR || tb_c1 == ' '))
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2467 && State != ASKMORE
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2468 && State != CONFIRM
18394
084b28fb3d22 patch 8.1.2191: when using modifyOtherKeys CTRL-X mode may not work
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
2469 && !((ctrl_x_mode_not_default() && at_ctrl_x_key())
26944
8dbdd68627bd patch 8.2.4001: insert complete code uses global variables
Bram Moolenaar <Bram@vim.org>
parents: 26929
diff changeset
2470 || (compl_status_local()
17809
59f8948b7590 patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents: 17789
diff changeset
2471 && (tb_c1 == Ctrl_N || tb_c1 == Ctrl_P))))
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2472 {
20563
a5a24d688e11 patch 8.2.0835: Motif: mapping <C-bslash> still doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 20277
diff changeset
2473 #ifdef FEAT_GUI
a5a24d688e11 patch 8.2.0835: Motif: mapping <C-bslash> still doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 20277
diff changeset
2474 if (gui.in_use && tb_c1 == CSI && typebuf.tb_len >= 2
a5a24d688e11 patch 8.2.0835: Motif: mapping <C-bslash> still doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 20277
diff changeset
2475 && typebuf.tb_buf[typebuf.tb_off + 1] == KS_MODIFIER)
a5a24d688e11 patch 8.2.0835: Motif: mapping <C-bslash> still doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 20277
diff changeset
2476 {
a5a24d688e11 patch 8.2.0835: Motif: mapping <C-bslash> still doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 20277
diff changeset
2477 // The GUI code sends CSI KS_MODIFIER {flags}, but mappings expect
a5a24d688e11 patch 8.2.0835: Motif: mapping <C-bslash> still doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 20277
diff changeset
2478 // K_SPECIAL KS_MODIFIER {flags}.
a5a24d688e11 patch 8.2.0835: Motif: mapping <C-bslash> still doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 20277
diff changeset
2479 tb_c1 = K_SPECIAL;
a5a24d688e11 patch 8.2.0835: Motif: mapping <C-bslash> still doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 20277
diff changeset
2480 }
a5a24d688e11 patch 8.2.0835: Motif: mapping <C-bslash> still doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 20277
diff changeset
2481 #endif
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2482 #ifdef FEAT_LANGMAP
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2483 if (tb_c1 == K_SPECIAL)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2484 nolmaplen = 2;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2485 else
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2486 {
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2487 LANGMAP_ADJUST(tb_c1, (State & (CMDLINE | INSERT)) == 0
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2488 && get_real_state() != SELECTMODE);
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2489 nolmaplen = 0;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2490 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2491 #endif
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2492 // First try buffer-local mappings.
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2493 mp = get_buf_maphash_list(local_State, tb_c1);
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2494 mp2 = get_maphash_list(local_State, tb_c1);
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2495 if (mp == NULL)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2496 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2497 // There are no buffer-local mappings.
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2498 mp = mp2;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2499 mp2 = NULL;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2500 }
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2501
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2502 /*
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2503 * Loop until a partly matching mapping is found or all (local)
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2504 * mappings have been checked.
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2505 * The longest full match is remembered in "mp_match".
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2506 * A full match is only accepted if there is no partly match, so "aa"
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2507 * and "aaa" can both be mapped.
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2508 */
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2509 mp_match = NULL;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2510 mp_match_len = 0;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2511 for ( ; mp != NULL;
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2512 mp->m_next == NULL ? (mp = mp2, mp2 = NULL) : (mp = mp->m_next))
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2513 {
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2514 // Only consider an entry if the first character matches and it is
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2515 // for the current state.
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2516 // Skip ":lmap" mappings if keys were mapped.
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2517 if (mp->m_keys[0] == tb_c1
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2518 && (mp->m_mode & local_State)
20701
fbee68c6aab1 patch 8.2.0904: assuming modifyOtherKeys for rhs of mapping
Bram Moolenaar <Bram@vim.org>
parents: 20595
diff changeset
2519 && !(mp->m_simplified && seenModifyOtherKeys
fbee68c6aab1 patch 8.2.0904: assuming modifyOtherKeys for rhs of mapping
Bram Moolenaar <Bram@vim.org>
parents: 20595
diff changeset
2520 && typebuf.tb_maplen == 0)
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2521 && ((mp->m_mode & LANGMAP) == 0 || typebuf.tb_maplen == 0))
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2522 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2523 #ifdef FEAT_LANGMAP
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2524 int nomap = nolmaplen;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2525 int c2;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2526 #endif
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2527 // find the match length of this mapping
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2528 for (mlen = 1; mlen < typebuf.tb_len; ++mlen)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2529 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2530 #ifdef FEAT_LANGMAP
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2531 c2 = typebuf.tb_buf[typebuf.tb_off + mlen];
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2532 if (nomap > 0)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2533 --nomap;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2534 else if (c2 == K_SPECIAL)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2535 nomap = 2;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2536 else
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2537 LANGMAP_ADJUST(c2, TRUE);
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2538 if (mp->m_keys[mlen] != c2)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2539 #else
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2540 if (mp->m_keys[mlen] !=
20563
a5a24d688e11 patch 8.2.0835: Motif: mapping <C-bslash> still doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 20277
diff changeset
2541 typebuf.tb_buf[typebuf.tb_off + mlen])
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2542 #endif
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2543 break;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2544 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2545
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2546 // Don't allow mapping the first byte(s) of a multi-byte char.
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2547 // Happens when mapping <M-a> and then changing 'encoding'.
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2548 // Beware that 0x80 is escaped.
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2549 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2550 char_u *p1 = mp->m_keys;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2551 char_u *p2 = mb_unescape(&p1);
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2552
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2553 if (has_mbyte && p2 != NULL
18251
c8a53c0daeed patch 8.1.2120: some MB_ macros are more complicated than necessary
Bram Moolenaar <Bram@vim.org>
parents: 18231
diff changeset
2554 && MB_BYTE2LEN(tb_c1) > mb_ptr2len(p2))
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2555 mlen = 0;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2556 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2557
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2558 // Check an entry whether it matches.
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2559 // - Full match: mlen == keylen
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2560 // - Partly match: mlen == typebuf.tb_len
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2561 keylen = mp->m_keylen;
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2562 if (mlen == keylen || (mlen == typebuf.tb_len
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2563 && typebuf.tb_len < keylen))
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2564 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2565 char_u *s;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2566 int n;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2567
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2568 // If only script-local mappings are allowed, check if the
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2569 // mapping starts with K_SNR.
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2570 s = typebuf.tb_noremap + typebuf.tb_off;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2571 if (*s == RM_SCRIPT
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2572 && (mp->m_keys[0] != K_SPECIAL
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2573 || mp->m_keys[1] != KS_EXTRA
25852
336e2d9924e6 patch 8.2.3460: some type casts are not needed
Bram Moolenaar <Bram@vim.org>
parents: 25567
diff changeset
2574 || mp->m_keys[2] != KE_SNR))
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2575 continue;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2576
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2577 // If one of the typed keys cannot be remapped, skip the
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2578 // entry.
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2579 for (n = mlen; --n >= 0; )
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2580 if (*s++ & (RM_NONE|RM_ABBR))
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2581 break;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2582 if (n >= 0)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2583 continue;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2584
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2585 if (keylen > typebuf.tb_len)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2586 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2587 if (!*timedout && !(mp_match != NULL
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2588 && mp_match->m_nowait))
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2589 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2590 // break at a partly match
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2591 keylen = KEYLEN_PART_MAP;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2592 break;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2593 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2594 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2595 else if (keylen > mp_match_len)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2596 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2597 // found a longer match
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2598 mp_match = mp;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2599 mp_match_len = keylen;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2600 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2601 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2602 else
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2603 // No match; may have to check for termcode at next
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2604 // character.
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2605 if (max_mlen < mlen)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2606 max_mlen = mlen;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2607 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2608 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2609
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2610 // If no partly match found, use the longest full match.
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2611 if (keylen != KEYLEN_PART_MAP)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2612 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2613 mp = mp_match;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2614 keylen = mp_match_len;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2615 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2616 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2617
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2618 /*
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2619 * Check for match with 'pastetoggle'
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2620 */
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2621 if (*p_pt != NUL && mp == NULL && (State & (INSERT|NORMAL)))
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2622 {
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2623 for (mlen = 0; mlen < typebuf.tb_len && p_pt[mlen]; ++mlen)
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2624 if (p_pt[mlen] != typebuf.tb_buf[typebuf.tb_off + mlen])
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2625 break;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2626 if (p_pt[mlen] == NUL) // match
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2627 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2628 // write chars to script file(s)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2629 if (mlen > typebuf.tb_maplen)
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2630 gotchars(typebuf.tb_buf + typebuf.tb_off + typebuf.tb_maplen,
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2631 mlen - typebuf.tb_maplen);
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2632
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2633 del_typebuf(mlen, 0); // remove the chars
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2634 set_option_value((char_u *)"paste", (long)!p_paste, NULL, 0);
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2635 if (!(State & INSERT))
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2636 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2637 msg_col = 0;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2638 msg_row = Rows - 1;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2639 msg_clr_eos(); // clear ruler
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2640 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2641 status_redraw_all();
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2642 redraw_statuslines();
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2643 showmode();
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2644 setcursor();
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2645 *keylenp = keylen;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2646 return map_result_retry;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2647 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2648 // Need more chars for partly match.
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2649 if (mlen == typebuf.tb_len)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2650 keylen = KEYLEN_PART_KEY;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2651 else if (max_mlen < mlen)
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2652 // no match, may have to check for termcode at next character
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2653 max_mlen = mlen + 1;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2654 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2655
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2656 if ((mp == NULL || max_mlen >= mp_match_len) && keylen != KEYLEN_PART_MAP)
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2657 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2658 int save_keylen = keylen;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2659
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2660 /*
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2661 * When no matching mapping found or found a non-matching mapping that
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2662 * matches at least what the matching mapping matched:
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2663 * Check if we have a terminal code, when:
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2664 * - mapping is allowed,
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2665 * - keys have not been mapped,
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2666 * - and not an ESC sequence, not in insert mode or p_ek is on,
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2667 * - and when not timed out,
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2668 */
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2669 if ((no_mapping == 0 || allow_keys != 0)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2670 && (typebuf.tb_maplen == 0
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2671 || (p_remap && typebuf.tb_noremap[
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2672 typebuf.tb_off] == RM_YES))
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2673 && !*timedout)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2674 {
23076
5fbac68bda23 patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents: 23031
diff changeset
2675 keylen = check_termcode(max_mlen + 1, NULL, 0, NULL);
5fbac68bda23 patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents: 23031
diff changeset
2676
5fbac68bda23 patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents: 23031
diff changeset
2677 // If no termcode matched but 'pastetoggle' matched partially
5fbac68bda23 patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents: 23031
diff changeset
2678 // it's like an incomplete key sequence.
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2679 if (keylen == 0 && save_keylen == KEYLEN_PART_KEY)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2680 keylen = KEYLEN_PART_KEY;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2681
20727
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2682 // If no termcode matched, try to include the modifier into the
26224
7d66d585bffa patch 8.2.3643: header for source file is outdated
Bram Moolenaar <Bram@vim.org>
parents: 26125
diff changeset
2683 // key. This is for when modifyOtherKeys is working.
20733
e3078150144d patch 8.2.0919: merging modifier for modifyOtherKeys is done twice
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
2684 if (keylen == 0 && !no_reduce_keys)
20727
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2685 keylen = check_simplify_modifier(max_mlen + 1);
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20701
diff changeset
2686
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2687 // When getting a partial match, but the last characters were not
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2688 // typed, don't wait for a typed character to complete the
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2689 // termcode. This helps a lot when a ":normal" command ends in an
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2690 // ESC.
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2691 if (keylen < 0 && typebuf.tb_len == typebuf.tb_maplen)
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2692 keylen = 0;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2693 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2694 else
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2695 keylen = 0;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2696 if (keylen == 0) // no matching terminal code
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2697 {
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2698 #ifdef AMIGA
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2699 // check for window bounds report
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2700 if (typebuf.tb_maplen == 0 && (typebuf.tb_buf[
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2701 typebuf.tb_off] & 0xff) == CSI)
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2702 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2703 char_u *s;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2704
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2705 for (s = typebuf.tb_buf + typebuf.tb_off + 1;
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2706 s < typebuf.tb_buf + typebuf.tb_off + typebuf.tb_len
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2707 && (VIM_ISDIGIT(*s) || *s == ';' || *s == ' ');
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2708 ++s)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2709 ;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2710 if (*s == 'r' || *s == '|') // found one
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2711 {
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2712 del_typebuf(
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2713 (int)(s + 1 - (typebuf.tb_buf + typebuf.tb_off)), 0);
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2714 // get size and redraw screen
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2715 shell_resized();
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2716 *keylenp = keylen;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2717 return map_result_retry;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2718 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2719 if (*s == NUL) // need more characters
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2720 keylen = KEYLEN_PART_KEY;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2721 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2722 if (keylen >= 0)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2723 #endif
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2724 // When there was a matching mapping and no termcode could be
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2725 // replaced after another one, use that mapping (loop around).
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2726 // If there was no mapping at all use the character from the
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2727 // typeahead buffer right here.
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2728 if (mp == NULL)
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2729 {
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2730 *keylenp = keylen;
26592
9f445e07f766 patch 8.2.3825: various comments could be improved
Bram Moolenaar <Bram@vim.org>
parents: 26436
diff changeset
2731 return map_result_get; // get character from typeahead
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2732 }
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2733 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2734
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2735 if (keylen > 0) // full matching terminal code
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2736 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2737 #if defined(FEAT_GUI) && defined(FEAT_MENU)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2738 if (typebuf.tb_len >= 2
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2739 && typebuf.tb_buf[typebuf.tb_off] == K_SPECIAL
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2740 && typebuf.tb_buf[typebuf.tb_off + 1] == KS_MENU)
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2741 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2742 int idx;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2743
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2744 // Using a menu may cause a break in undo! It's like using
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2745 // gotchars(), but without recording or writing to a script
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2746 // file.
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2747 may_sync_undo();
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2748 del_typebuf(3, 0);
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2749 idx = get_menu_index(current_menu, local_State);
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2750 if (idx != MENU_INDEX_INVALID)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2751 {
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2752 // In Select mode and a Visual mode menu is used: Switch
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2753 // to Visual mode temporarily. Append K_SELECT to switch
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2754 // back to Select mode.
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2755 if (VIsual_active && VIsual_select
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2756 && (current_menu->modes & VISUAL))
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2757 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2758 VIsual_select = FALSE;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2759 (void)ins_typebuf(K_SELECT_STRING,
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2760 REMAP_NONE, 0, TRUE, FALSE);
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2761 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2762 ins_typebuf(current_menu->strings[idx],
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2763 current_menu->noremap[idx],
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2764 0, TRUE, current_menu->silent[idx]);
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2765 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2766 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2767 #endif // FEAT_GUI && FEAT_MENU
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2768 *keylenp = keylen;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2769 return map_result_retry; // try mapping again
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2770 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2771
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2772 // Partial match: get some more characters. When a matching mapping
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2773 // was found use that one.
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2774 if (mp == NULL || keylen < 0)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2775 keylen = KEYLEN_PART_KEY;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2776 else
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2777 keylen = mp_match_len;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2778 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2779
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2780 /*
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2781 * complete match
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2782 */
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2783 if (keylen >= 0 && keylen <= typebuf.tb_len)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2784 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2785 char_u *map_str;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2786
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2787 #ifdef FEAT_EVAL
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2788 int save_m_expr;
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2789 int save_m_noremap;
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2790 int save_m_silent;
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2791 char_u *save_m_keys;
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2792 #else
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2793 # define save_m_noremap mp->m_noremap
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2794 # define save_m_silent mp->m_silent
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2795 #endif
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2796
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2797 // write chars to script file(s)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2798 if (keylen > typebuf.tb_maplen)
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2799 gotchars(typebuf.tb_buf + typebuf.tb_off + typebuf.tb_maplen,
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2800 keylen - typebuf.tb_maplen);
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2801
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2802 cmd_silent = (typebuf.tb_silent > 0);
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2803 del_typebuf(keylen, 0); // remove the mapped keys
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2804
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2805 /*
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2806 * Put the replacement string in front of mapstr.
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2807 * The depth check catches ":map x y" and ":map y x".
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2808 */
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2809 if (++*mapdepth >= p_mmd)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2810 {
26861
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
2811 emsg(_(e_recursive_mapping));
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2812 if (State & CMDLINE)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2813 redrawcmdline();
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2814 else
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2815 setcursor();
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2816 flush_buffers(FLUSH_MINIMAL);
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2817 *mapdepth = 0; // for next one
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2818 *keylenp = keylen;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2819 return map_result_fail;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2820 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2821
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2822 /*
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2823 * In Select mode and a Visual mode mapping is used: Switch to Visual
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2824 * mode temporarily. Append K_SELECT to switch back to Select mode.
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2825 */
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2826 if (VIsual_active && VIsual_select && (mp->m_mode & VISUAL))
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2827 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2828 VIsual_select = FALSE;
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2829 (void)ins_typebuf(K_SELECT_STRING, REMAP_NONE, 0, TRUE, FALSE);
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2830 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2831
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2832 #ifdef FEAT_EVAL
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2833 // Copy the values from *mp that are used, because evaluating the
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2834 // expression may invoke a function that redefines the mapping, thereby
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2835 // making *mp invalid.
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2836 save_m_expr = mp->m_expr;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2837 save_m_noremap = mp->m_noremap;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2838 save_m_silent = mp->m_silent;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2839 save_m_keys = NULL; // only saved when needed
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2840
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2841 /*
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2842 * Handle ":map <expr>": evaluate the {rhs} as an expression. Also
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2843 * save and restore the command line for "normal :".
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2844 */
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2845 if (mp->m_expr)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2846 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2847 int save_vgetc_busy = vgetc_busy;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2848 int save_may_garbage_collect = may_garbage_collect;
18689
8cc12c8d7842 patch 8.1.2336: when an expr mapping moves the cursor it is not restored
Bram Moolenaar <Bram@vim.org>
parents: 18683
diff changeset
2849 int was_screen_col = screen_cur_col;
8cc12c8d7842 patch 8.1.2336: when an expr mapping moves the cursor it is not restored
Bram Moolenaar <Bram@vim.org>
parents: 18683
diff changeset
2850 int was_screen_row = screen_cur_row;
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2851
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2852 vgetc_busy = 0;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2853 may_garbage_collect = FALSE;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2854
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2855 save_m_keys = vim_strsave(mp->m_keys);
27061
1a56c0252772 patch 8.2.4059: Vim9: an expression of a map cannot access script-local items
Bram Moolenaar <Bram@vim.org>
parents: 26946
diff changeset
2856 map_str = eval_map_expr(mp, NUL);
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2857
18689
8cc12c8d7842 patch 8.1.2336: when an expr mapping moves the cursor it is not restored
Bram Moolenaar <Bram@vim.org>
parents: 18683
diff changeset
2858 // The mapping may do anything, but we expect it to take care of
8cc12c8d7842 patch 8.1.2336: when an expr mapping moves the cursor it is not restored
Bram Moolenaar <Bram@vim.org>
parents: 18683
diff changeset
2859 // redrawing. Do put the cursor back where it was.
8cc12c8d7842 patch 8.1.2336: when an expr mapping moves the cursor it is not restored
Bram Moolenaar <Bram@vim.org>
parents: 18683
diff changeset
2860 windgoto(was_screen_row, was_screen_col);
8cc12c8d7842 patch 8.1.2336: when an expr mapping moves the cursor it is not restored
Bram Moolenaar <Bram@vim.org>
parents: 18683
diff changeset
2861 out_flush();
8cc12c8d7842 patch 8.1.2336: when an expr mapping moves the cursor it is not restored
Bram Moolenaar <Bram@vim.org>
parents: 18683
diff changeset
2862
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2863 vgetc_busy = save_vgetc_busy;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2864 may_garbage_collect = save_may_garbage_collect;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2865 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2866 else
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2867 #endif
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2868 map_str = mp->m_str;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2869
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2870 /*
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2871 * Insert the 'to' part in the typebuf.tb_buf.
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2872 * If 'from' field is the same as the start of the 'to' field, don't
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2873 * remap the first character (but do allow abbreviations).
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2874 * If m_noremap is set, don't remap the whole 'to' part.
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2875 */
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2876 if (map_str == NULL)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2877 i = FAIL;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2878 else
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2879 {
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2880 int noremap;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2881
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2882 if (save_m_noremap != REMAP_YES)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2883 noremap = save_m_noremap;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2884 else if (
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2885 #ifdef FEAT_EVAL
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2886 STRNCMP(map_str, save_m_keys != NULL ? save_m_keys : mp->m_keys,
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
2887 (size_t)keylen)
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2888 #else
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2889 STRNCMP(map_str, mp->m_keys, (size_t)keylen)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2890 #endif
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2891 != 0)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2892 noremap = REMAP_YES;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2893 else
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2894 noremap = REMAP_SKIP;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2895 i = ins_typebuf(map_str, noremap,
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2896 0, TRUE, cmd_silent || save_m_silent);
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2897 #ifdef FEAT_EVAL
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2898 if (save_m_expr)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2899 vim_free(map_str);
27140
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
2900 last_used_map = mp;
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2901 #endif
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2902 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2903 #ifdef FEAT_EVAL
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2904 vim_free(save_m_keys);
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2905 #endif
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2906 *keylenp = keylen;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2907 if (i == FAIL)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2908 return map_result_fail;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2909 return map_result_retry;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2910 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2911
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2912 *keylenp = keylen;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2913 return map_result_nomatch;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2914 }
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
2915
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
2916 /*
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
2917 * 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
2918 */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2919 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
2920 vungetc(int c)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2921 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2922 old_char = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2923 old_mod_mask = mod_mask;
4227
94342b0605fb updated for version 7.3.865
Bram Moolenaar <bram@vim.org>
parents: 3560
diff changeset
2924 old_mouse_row = mouse_row;
94342b0605fb updated for version 7.3.865
Bram Moolenaar <bram@vim.org>
parents: 3560
diff changeset
2925 old_mouse_col = mouse_col;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2926 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2927
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2928 /*
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
2929 * Get a byte:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2930 * 1. from the stuffbuffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2931 * This is used for abbreviated commands like "D" -> "d$".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2932 * Also used to redo a command for ".".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2933 * 2. from the typeahead buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2934 * Stores text obtained previously but not used yet.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2935 * Also stores the result of mappings.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2936 * Also used for the ":normal" command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2937 * 3. from the user
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2938 * This may do a blocking wait if "advance" is TRUE.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2939 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2940 * if "advance" is TRUE (vgetc()):
9980
b222552cf0c4 commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents: 9898
diff changeset
2941 * Really get the character.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2942 * KeyTyped is set to TRUE in the case the user typed the key.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2943 * KeyStuffed is TRUE if the character comes from the stuff buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2944 * if "advance" is FALSE (vpeekc()):
14909
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2945 * Just look whether there is a character available.
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2946 * Return NUL if not.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2947 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2948 * When "no_mapping" is zero, checks for mappings in the current mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2949 * Only returns one byte (of a multi-byte character).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2950 * K_SPECIAL and CSI may be escaped, need to get two more bytes then.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2951 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2952 static int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
2953 vgetorpeek(int advance)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2954 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2955 int c, c1;
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2956 int timedout = FALSE; // waited for more than 1 second
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2957 // for mapping to complete
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2958 int mapdepth = 0; // check for recursive mapping
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2959 int mode_deleted = FALSE; // set when mode has been deleted
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2960 #ifdef FEAT_CMDL_INFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2961 int new_wcol, new_wrow;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2962 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2963 #ifdef FEAT_GUI
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2964 int shape_changed = FALSE; // adjusted cursor shape
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2965 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2966 int n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2967 int old_wcol, old_wrow;
202
b6450bf509d8 updated for version 7.0060
vimboss
parents: 184
diff changeset
2968 int wait_tb_len;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2969
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2970 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2971 * This function doesn't work very well when called recursively. This may
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2972 * happen though, because of:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2973 * 1. The call to add_to_showcmd(). char_avail() is then used to check if
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2974 * there is a character available, which calls this function. In that
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2975 * case we must return NUL, to indicate no character is available.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2976 * 2. A GUI callback function writes to the screen, causing a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2977 * wait_return().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2978 * Using ":normal" can also do this, but it saves the typeahead buffer,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2979 * thus it should be OK. But don't get a key from the user then.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2980 */
7850
10f17a228661 commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2981 if (vgetc_busy > 0 && ex_normal_busy == 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2982 return NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2983
822
45fad0f590d0 updated for version 7.0c12
vimboss
parents: 819
diff changeset
2984 ++vgetc_busy;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2985
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2986 if (advance)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2987 KeyStuffed = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2988
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2989 init_typebuf();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2990 start_stuff();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2991 if (advance && typebuf.tb_maplen == 0)
14004
e124262d435e patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents: 13950
diff changeset
2992 reg_executing = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2993 do
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2994 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2995 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2996 * get a character: 1. from the stuffbuffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2997 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2998 if (typeahead_char != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2999 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3000 c = typeahead_char;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3001 if (advance)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3002 typeahead_char = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3003 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3004 else
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5035
diff changeset
3005 c = read_readbuffers(advance);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3006 if (c != NUL && !got_int)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3007 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3008 if (advance)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3009 {
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3010 // KeyTyped = FALSE; When the command that stuffed something
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3011 // was typed, behave like the stuffed command was typed.
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3012 // needed for CTRL-W CTRL-] to open a fold, for example.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3013 KeyStuffed = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3014 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3015 if (typebuf.tb_no_abbr_cnt == 0)
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3016 typebuf.tb_no_abbr_cnt = 1; // no abbreviations now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3017 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3018 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3019 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3020 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3021 * Loop until we either find a matching mapped key, or we
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3022 * are sure that it is not a mapped key.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3023 * If a mapped key sequence is found we go back to the start to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3024 * try re-mapping.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3025 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3026 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3027 {
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3028 long wait_time;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3029 int keylen = 0;
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
3030 #ifdef FEAT_CMDL_INFO
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
3031 int showcmd_idx;
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
3032 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3033 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3034 * ui_breakcheck() is slow, don't use it too often when
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3035 * inside a mapping. But call it each time for typed
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3036 * characters.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3037 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3038 if (typebuf.tb_maplen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3039 line_breakcheck();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3040 else
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3041 ui_breakcheck(); // check for CTRL-C
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3042 if (got_int)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3043 {
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3044 // 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
3045 c = inchar(typebuf.tb_buf, typebuf.tb_buflen - 1, 0L);
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3046
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3047 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3048 * If inchar() returns TRUE (script file was active) or we
13829
044337cbf854 patch 8.0.1786: no test for 'termwinkey'
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3049 * are inside a mapping, get out of Insert mode.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3050 * Otherwise we behave like having gotten a CTRL-C.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3051 * As a result typing CTRL-C in insert mode will
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3052 * really insert a CTRL-C.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3053 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3054 if ((c || typebuf.tb_maplen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3055 && (State & (INSERT + CMDLINE)))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3056 c = ESC;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3057 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3058 c = Ctrl_C;
14909
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
3059 flush_buffers(FLUSH_INPUT); // flush all typeahead
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3060
988
cec8b867838b updated for version 7.0-114
vimboss
parents: 958
diff changeset
3061 if (advance)
cec8b867838b updated for version 7.0-114
vimboss
parents: 958
diff changeset
3062 {
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3063 // Also record this character, it might be needed to
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3064 // get out of Insert mode.
988
cec8b867838b updated for version 7.0-114
vimboss
parents: 958
diff changeset
3065 *typebuf.tb_buf = c;
cec8b867838b updated for version 7.0-114
vimboss
parents: 958
diff changeset
3066 gotchars(typebuf.tb_buf, 1);
cec8b867838b updated for version 7.0-114
vimboss
parents: 958
diff changeset
3067 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3068 cmd_silent = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3069
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3070 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3071 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3072 else if (typebuf.tb_len > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3073 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3074 /*
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3075 * Check for a mapping in "typebuf".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3076 */
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3077 map_result_T result = handle_mapping(
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3078 &keylen, &timedout, &mapdepth);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3079
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3080 if (result == map_result_retry)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3081 // try mapping again
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3082 continue;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3083 if (result == map_result_fail)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3084 {
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3085 // failed, use the outer loop
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3086 c = -1;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3087 break;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3088 }
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3089 if (result == map_result_get)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3090 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3091 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3092 * get a character: 2. from the typeahead buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3093 */
18763
49b78d6465e5 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3094 c = typebuf.tb_buf[typebuf.tb_off];
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3095 if (advance) // remove chars from tb_buf
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3096 {
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3097 cmd_silent = (typebuf.tb_silent > 0);
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3098 if (typebuf.tb_maplen > 0)
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3099 KeyTyped = FALSE;
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3100 else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3101 {
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3102 KeyTyped = TRUE;
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3103 // write char to script file(s)
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3104 gotchars(typebuf.tb_buf
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3105 + typebuf.tb_off, 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3106 }
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3107 KeyNoremap = typebuf.tb_noremap[
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3108 typebuf.tb_off];
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3109 del_typebuf(1, 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3110 }
26592
9f445e07f766 patch 8.2.3825: various comments could be improved
Bram Moolenaar <Bram@vim.org>
parents: 26436
diff changeset
3111 break; // got character, break the for loop
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3112 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3113
17600
ca42eb789472 patch 8.1.1797: the vgetorpeek() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 17594
diff changeset
3114 // not enough characters, get more
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3115 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3116
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3117 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3118 * get a character: 3. from the user - handle <Esc> in Insert mode
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3119 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3120 /*
11490
6a06738f8948 patch 8.0.0628: cursor disappears after silent mapping
Christian Brabandt <cb@256bit.org>
parents: 11486
diff changeset
3121 * Special case: if we get an <ESC> in insert mode and there
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3122 * are no more characters at once, we pretend to go out of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3123 * insert mode. This prevents the one second delay after
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3124 * typing an <ESC>. If we get something after all, we may
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3125 * have to redisplay the mode. That the cursor is in the wrong
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3126 * place does not matter.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3127 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3128 c = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3129 #ifdef FEAT_CMDL_INFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3130 new_wcol = curwin->w_wcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3131 new_wrow = curwin->w_wrow;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3132 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3133 if ( advance
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3134 && typebuf.tb_len == 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3135 && typebuf.tb_buf[typebuf.tb_off] == ESC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3136 && !no_mapping
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3137 && ex_normal_busy == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3138 && typebuf.tb_maplen == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3139 && (State & INSERT)
2672
6a2e4860134b updated for version 7.3.091
Bram Moolenaar <bram@vim.org>
parents: 2623
diff changeset
3140 && (p_timeout
6a2e4860134b updated for version 7.3.091
Bram Moolenaar <bram@vim.org>
parents: 2623
diff changeset
3141 || (keylen == KEYLEN_PART_KEY && p_ttimeout))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3142 && (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
3143 + typebuf.tb_len, 3, 25L)) == 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3144 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3145 colnr_T col = 0, vcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3146 char_u *ptr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3147
643
d3c978b4c7ce updated for version 7.0187
vimboss
parents: 641
diff changeset
3148 if (mode_displayed)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3149 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3150 unshowmode(TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3151 mode_deleted = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3152 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3153 #ifdef FEAT_GUI
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3154 // may show a different cursor shape
11490
6a06738f8948 patch 8.0.0628: cursor disappears after silent mapping
Christian Brabandt <cb@256bit.org>
parents: 11486
diff changeset
3155 if (gui.in_use && State != NORMAL && !cmd_silent)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3156 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3157 int save_State;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3158
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3159 save_State = State;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3160 State = NORMAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3161 gui_update_cursor(TRUE, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3162 State = save_State;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3163 shape_changed = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3164 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3165 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3166 validate_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3167 old_wcol = curwin->w_wcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3168 old_wrow = curwin->w_wrow;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3169
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3170 // move cursor left, if possible
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3171 if (curwin->w_cursor.col != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3172 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3173 if (curwin->w_wcol > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3174 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3175 if (did_ai)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3176 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3177 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3178 * We are expecting to truncate the trailing
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3179 * white-space, so find the last non-white
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3180 * character -- webb
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3181 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3182 col = vcol = curwin->w_wcol = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3183 ptr = ml_get_curline();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3184 while (col < curwin->w_cursor.col)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3185 {
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11026
diff changeset
3186 if (!VIM_ISWHITE(ptr[col]))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3187 curwin->w_wcol = vcol;
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5930
diff changeset
3188 vcol += lbr_chartabsize(ptr, ptr + col,
25852
336e2d9924e6 patch 8.2.3460: some type casts are not needed
Bram Moolenaar <Bram@vim.org>
parents: 25567
diff changeset
3189 vcol);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3190 if (has_mbyte)
474
a5fcf36ef512 updated for version 7.0127
vimboss
parents: 449
diff changeset
3191 col += (*mb_ptr2len)(ptr + col);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3192 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3193 ++col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3194 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3195 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
3196 + 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
3197 curwin->w_wcol %= curwin->w_width;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3198 curwin->w_wcol += curwin_col_off();
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3199 col = 0; // no correction needed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3200 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3201 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3202 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3203 --curwin->w_wcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3204 col = curwin->w_cursor.col - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3205 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3206 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3207 else if (curwin->w_p_wrap && curwin->w_wrow)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3208 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3209 --curwin->w_wrow;
12515
972ea22c946f patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
3210 curwin->w_wcol = curwin->w_width - 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3211 col = curwin->w_cursor.col - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3212 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3213 if (has_mbyte && col > 0 && curwin->w_wcol > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3214 {
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3215 // Correct when the cursor is on the right halve
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3216 // of a double-wide character.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3217 ptr = ml_get_curline();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3218 col -= (*mb_head_off)(ptr, ptr + col);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3219 if ((*mb_ptr2cells)(ptr + col) > 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3220 --curwin->w_wcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3221 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3222 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3223 setcursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3224 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3225 #ifdef FEAT_CMDL_INFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3226 new_wcol = curwin->w_wcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3227 new_wrow = curwin->w_wrow;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3228 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3229 curwin->w_wcol = old_wcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3230 curwin->w_wrow = old_wrow;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3231 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3232 if (c < 0)
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3233 continue; // end of input script reached
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3234
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3235 // Allow mapping for just typed characters. When we get here c
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3236 // is the number of extra bytes and typebuf.tb_len is 1.
6087
dbd7dc1ea2e6 updated for version 7.4.382
Bram Moolenaar <bram@vim.org>
parents: 5995
diff changeset
3237 for (n = 1; n <= c; ++n)
dbd7dc1ea2e6 updated for version 7.4.382
Bram Moolenaar <bram@vim.org>
parents: 5995
diff changeset
3238 typebuf.tb_noremap[typebuf.tb_off + n] = RM_YES;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3239 typebuf.tb_len += c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3240
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3241 // buffer full, don't map
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3242 if (typebuf.tb_len >= typebuf.tb_maplen + MAXMAPLEN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3243 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3244 timedout = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3245 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3246 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3247
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3248 if (ex_normal_busy > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3249 {
7850
10f17a228661 commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
3250 #ifdef FEAT_CMDWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3251 static int tc = 0;
7850
10f17a228661 commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
3252 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3253
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3254 // No typeahead left and inside ":normal". Must return
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3255 // something to avoid getting stuck. When an incomplete
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3256 // mapping is present, behave like it timed out.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3257 if (typebuf.tb_len > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3258 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3259 timedout = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3260 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3261 }
22361
00f2eebe74d9 patch 8.2.1729: endless loop when ":normal" feeds popup window filter
Bram Moolenaar <Bram@vim.org>
parents: 22117
diff changeset
3262
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3263 // When 'insertmode' is set, ESC just beeps in Insert
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3264 // mode. Use CTRL-L to make edit() return.
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3265 // For the command line only CTRL-C always breaks it.
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3266 // For the cmdline window: Alternate between ESC and
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3267 // CTRL-C: ESC for most situations and CTRL-C to close the
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3268 // cmdline window.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3269 if (p_im && (State & INSERT))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3270 c = Ctrl_L;
13829
044337cbf854 patch 8.0.1786: no test for 'termwinkey'
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3271 #ifdef FEAT_TERMINAL
044337cbf854 patch 8.0.1786: no test for 'termwinkey'
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3272 else if (terminal_is_active())
044337cbf854 patch 8.0.1786: no test for 'termwinkey'
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3273 c = K_CANCEL;
044337cbf854 patch 8.0.1786: no test for 'termwinkey'
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3274 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3275 else if ((State & CMDLINE)
7850
10f17a228661 commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
3276 #ifdef FEAT_CMDWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3277 || (cmdwin_type > 0 && tc == ESC)
7850
10f17a228661 commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
3278 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3279 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3280 c = Ctrl_C;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3281 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3282 c = ESC;
7850
10f17a228661 commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
3283 #ifdef FEAT_CMDWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3284 tc = c;
7850
10f17a228661 commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
3285 #endif
19433
af9d5585cfbf patch 8.2.0274: hang with combination of feedkeys(), Ex mode and :global
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3286 // return from main_loop()
af9d5585cfbf patch 8.2.0274: hang with combination of feedkeys(), Ex mode and :global
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3287 if (pending_exmode_active)
af9d5585cfbf patch 8.2.0274: hang with combination of feedkeys(), Ex mode and :global
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3288 exmode_active = EXMODE_NORMAL;
af9d5585cfbf patch 8.2.0274: hang with combination of feedkeys(), Ex mode and :global
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3289
26875
e06cbcf4b94b patch 8.2.3966: when using feedkeys() abbreviations may be blocked
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
3290 // no chars to block abbreviation for
e06cbcf4b94b patch 8.2.3966: when using feedkeys() abbreviations may be blocked
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
3291 typebuf.tb_no_abbr_cnt = 0;
e06cbcf4b94b patch 8.2.3966: when using feedkeys() abbreviations may be blocked
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
3292
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3293 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3294 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3295
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3296 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3297 * get a character: 3. from the user - update display
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3298 */
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3299 // In insert mode a screen update is skipped when characters
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3300 // are still available. But when those available characters
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3301 // are part of a mapping, and we are going to do a blocking
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3302 // wait here. Need to update the screen to display the
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3303 // changed text so far. Also for when 'lazyredraw' is set and
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3304 // redrawing was postponed because there was something in the
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3305 // input buffer (e.g., termresponse).
2723
2e72d84e8965 updated for version 7.3.139
Bram Moolenaar <bram@vim.org>
parents: 2721
diff changeset
3306 if (((State & INSERT) != 0 || p_lz) && (State & CMDLINE) == 0
2e72d84e8965 updated for version 7.3.139
Bram Moolenaar <bram@vim.org>
parents: 2721
diff changeset
3307 && advance && must_redraw != 0 && !need_wait_return)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3308 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3309 update_screen(0);
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3310 setcursor(); // put cursor back where it belongs
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3311 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3312
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3313 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3314 * If we have a partial match (and are going to wait for more
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3315 * input from the user), show the partially matched characters
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3316 * to the user with showcmd.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3317 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3318 #ifdef FEAT_CMDL_INFO
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
3319 showcmd_idx = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3320 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3321 c1 = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3322 if (typebuf.tb_len > 0 && advance && !exmode_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3323 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3324 if (((State & (NORMAL | INSERT)) || State == LANGMAP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3325 && State != HITRETURN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3326 {
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3327 // this looks nice when typing a dead character map
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3328 if (State & INSERT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3329 && ptr2cells(typebuf.tb_buf + typebuf.tb_off
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3330 + typebuf.tb_len - 1) == 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3331 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3332 edit_putchar(typebuf.tb_buf[typebuf.tb_off
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3333 + typebuf.tb_len - 1], FALSE);
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3334 setcursor(); // put cursor back where it belongs
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3335 c1 = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3336 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3337 #ifdef FEAT_CMDL_INFO
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3338 // need to use the col and row from above here
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3339 old_wcol = curwin->w_wcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3340 old_wrow = curwin->w_wrow;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3341 curwin->w_wcol = new_wcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3342 curwin->w_wrow = new_wrow;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3343 push_showcmd();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3344 if (typebuf.tb_len > SHOWCMD_COLS)
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
3345 showcmd_idx = typebuf.tb_len - SHOWCMD_COLS;
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
3346 while (showcmd_idx < typebuf.tb_len)
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
3347 (void)add_to_showcmd(
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
3348 typebuf.tb_buf[typebuf.tb_off + showcmd_idx++]);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3349 curwin->w_wcol = old_wcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3350 curwin->w_wrow = old_wrow;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3351 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3352 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3353
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3354 // this looks nice when typing a dead character map
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3355 if ((State & CMDLINE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3356 #if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3357 && cmdline_star == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3358 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3359 && ptr2cells(typebuf.tb_buf + typebuf.tb_off
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3360 + typebuf.tb_len - 1) == 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3361 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3362 putcmdline(typebuf.tb_buf[typebuf.tb_off
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3363 + typebuf.tb_len - 1], FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3364 c1 = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3365 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3366 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3367
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3368 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3369 * get a character: 3. from the user - get it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3370 */
14069
bc91de20ba43 patch 8.1.0052: when mapping to <Nop> times out the next mapping is skipped
Christian Brabandt <cb@256bit.org>
parents: 14009
diff changeset
3371 if (typebuf.tb_len == 0)
bc91de20ba43 patch 8.1.0052: when mapping to <Nop> times out the next mapping is skipped
Christian Brabandt <cb@256bit.org>
parents: 14009
diff changeset
3372 // timedout may have been set while waiting for a mapping
bc91de20ba43 patch 8.1.0052: when mapping to <Nop> times out the next mapping is skipped
Christian Brabandt <cb@256bit.org>
parents: 14009
diff changeset
3373 // that has a <Nop> RHS.
bc91de20ba43 patch 8.1.0052: when mapping to <Nop> times out the next mapping is skipped
Christian Brabandt <cb@256bit.org>
parents: 14009
diff changeset
3374 timedout = FALSE;
bc91de20ba43 patch 8.1.0052: when mapping to <Nop> times out the next mapping is skipped
Christian Brabandt <cb@256bit.org>
parents: 14009
diff changeset
3375
16227
a70f0d6686c4 patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
3376 if (advance)
a70f0d6686c4 patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
3377 {
a70f0d6686c4 patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
3378 if (typebuf.tb_len == 0
a70f0d6686c4 patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
3379 || !(p_timeout
a70f0d6686c4 patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
3380 || (p_ttimeout && keylen == KEYLEN_PART_KEY)))
a70f0d6686c4 patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
3381 // blocking wait
a70f0d6686c4 patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
3382 wait_time = -1L;
a70f0d6686c4 patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
3383 else if (keylen == KEYLEN_PART_KEY && p_ttm >= 0)
a70f0d6686c4 patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
3384 wait_time = p_ttm;
a70f0d6686c4 patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
3385 else
a70f0d6686c4 patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
3386 wait_time = p_tm;
a70f0d6686c4 patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
3387 }
a70f0d6686c4 patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
3388 else
a70f0d6686c4 patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
3389 wait_time = 0;
a70f0d6686c4 patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
3390
202
b6450bf509d8 updated for version 7.0060
vimboss
parents: 184
diff changeset
3391 wait_tb_len = typebuf.tb_len;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3392 c = inchar(typebuf.tb_buf + typebuf.tb_off + typebuf.tb_len,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3393 typebuf.tb_buflen - typebuf.tb_off - typebuf.tb_len - 1,
16227
a70f0d6686c4 patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
3394 wait_time);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3395
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3396 #ifdef FEAT_CMDL_INFO
17602
653ab352b019 patch 8.1.1798: warning for unused variable in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17600
diff changeset
3397 if (showcmd_idx != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3398 pop_showcmd();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3399 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3400 if (c1 == 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3401 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3402 if (State & INSERT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3403 edit_unputchar();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3404 if (State & CMDLINE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3405 unputcmdline();
3560
af083cb521bc updated for version 7.3.540
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
3406 else
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3407 setcursor(); // put cursor back where it belongs
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3408 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3409
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3410 if (c < 0)
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3411 continue; // end of input script reached
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3412 if (c == NUL) // no character available
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3413 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3414 if (!advance)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3415 break;
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3416 if (wait_tb_len > 0) // timed out
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3417 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3418 timedout = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3419 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3420 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3421 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3422 else
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3423 { // allow mapping for just typed characters
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3424 while (typebuf.tb_buf[typebuf.tb_off
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3425 + typebuf.tb_len] != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3426 typebuf.tb_noremap[typebuf.tb_off
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3427 + typebuf.tb_len++] = RM_YES;
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13344
diff changeset
3428 #ifdef HAVE_INPUT_METHOD
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3429 // Get IM status right after getting keys, not after the
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3430 // timeout for a mapping (focus may be lost by then).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3431 vgetc_im_active = im_get_status();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3432 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3433 }
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3434 } // for (;;)
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3435 } // if (!character from stuffbuf)
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3436
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3437 // if advance is FALSE don't loop on NULs
13829
044337cbf854 patch 8.0.1786: no test for 'termwinkey'
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3438 } while ((c < 0 && c != K_CANCEL) || (advance && c == NUL));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3439
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3440 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3441 * The "INSERT" message is taken care of here:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3442 * if we return an ESC to exit insert mode, the message is deleted
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3443 * if we don't return an ESC but deleted the message before, redisplay it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3444 */
641
6a944e0bd5d2 updated for version 7.0186
vimboss
parents: 620
diff changeset
3445 if (advance && p_smd && msg_silent == 0 && (State & INSERT))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3446 {
643
d3c978b4c7ce updated for version 7.0187
vimboss
parents: 641
diff changeset
3447 if (c == ESC && !mode_deleted && !no_mapping && mode_displayed)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3448 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3449 if (typebuf.tb_len && !KeyTyped)
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3450 redraw_cmdline = TRUE; // delete mode later
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3451 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3452 unshowmode(FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3453 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3454 else if (c != ESC && mode_deleted)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3455 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3456 if (typebuf.tb_len && !KeyTyped)
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3457 redraw_cmdline = TRUE; // show mode later
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3458 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3459 showmode();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3460 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3461 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3462 #ifdef FEAT_GUI
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3463 // 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
3464 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
3465 gui_update_cursor(TRUE, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3466 #endif
15995
e7030c0c79cd patch 8.1.1003: playing back recorded key sequence mistakes key code
Bram Moolenaar <Bram@vim.org>
parents: 15989
diff changeset
3467 if (timedout && c == ESC)
e7030c0c79cd patch 8.1.1003: playing back recorded key sequence mistakes key code
Bram Moolenaar <Bram@vim.org>
parents: 15989
diff changeset
3468 {
e7030c0c79cd patch 8.1.1003: playing back recorded key sequence mistakes key code
Bram Moolenaar <Bram@vim.org>
parents: 15989
diff changeset
3469 char_u nop_buf[3];
e7030c0c79cd patch 8.1.1003: playing back recorded key sequence mistakes key code
Bram Moolenaar <Bram@vim.org>
parents: 15989
diff changeset
3470
e7030c0c79cd patch 8.1.1003: playing back recorded key sequence mistakes key code
Bram Moolenaar <Bram@vim.org>
parents: 15989
diff changeset
3471 // When recording there will be no timeout. Add a <Nop> after the ESC
e7030c0c79cd patch 8.1.1003: playing back recorded key sequence mistakes key code
Bram Moolenaar <Bram@vim.org>
parents: 15989
diff changeset
3472 // to avoid that it forms a key code with following characters.
e7030c0c79cd patch 8.1.1003: playing back recorded key sequence mistakes key code
Bram Moolenaar <Bram@vim.org>
parents: 15989
diff changeset
3473 nop_buf[0] = K_SPECIAL;
e7030c0c79cd patch 8.1.1003: playing back recorded key sequence mistakes key code
Bram Moolenaar <Bram@vim.org>
parents: 15989
diff changeset
3474 nop_buf[1] = KS_EXTRA;
e7030c0c79cd patch 8.1.1003: playing back recorded key sequence mistakes key code
Bram Moolenaar <Bram@vim.org>
parents: 15989
diff changeset
3475 nop_buf[2] = KE_NOP;
e7030c0c79cd patch 8.1.1003: playing back recorded key sequence mistakes key code
Bram Moolenaar <Bram@vim.org>
parents: 15989
diff changeset
3476 gotchars(nop_buf, 3);
e7030c0c79cd patch 8.1.1003: playing back recorded key sequence mistakes key code
Bram Moolenaar <Bram@vim.org>
parents: 15989
diff changeset
3477 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3478
822
45fad0f590d0 updated for version 7.0c12
vimboss
parents: 819
diff changeset
3479 --vgetc_busy;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3480
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3481 return c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3482 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3483
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3484 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3485 * inchar() - get one character from
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3486 * 1. a scriptfile
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3487 * 2. the keyboard
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3488 *
19195
2ef19eed524a patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents: 18781
diff changeset
3489 * As many characters as we can get (up to 'maxlen') are put in "buf" and
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3490 * NUL terminated (buffer length must be 'maxlen' + 1).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3491 * Minimum for "maxlen" is 3!!!!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3492 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3493 * "tb_change_cnt" is the value of typebuf.tb_change_cnt if "buf" points into
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3494 * it. When typebuf.tb_change_cnt changes (e.g., when a message is received
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3495 * from a remote client) "buf" can no longer be used. "tb_change_cnt" is 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3496 * otherwise.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3497 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3498 * If we got an interrupt all input is read until none is available.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3499 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3500 * If wait_time == 0 there is no waiting for the char.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3501 * If wait_time == n we wait for n msec for a character to arrive.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3502 * If wait_time == -1 we wait forever for a character to arrive.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3503 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3504 * Return the number of obtained characters.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3505 * Return -1 when end of input script reached.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3506 */
9205
c19eb05b19df commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents: 9121
diff changeset
3507 static int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
3508 inchar(
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
3509 char_u *buf,
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
3510 int maxlen,
26771
fc859aea8cec patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents: 26592
diff changeset
3511 long wait_time) // milliseconds
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3512 {
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3513 int len = 0; // init for GCC
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3514 int retesc = FALSE; // return ESC with gotint
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3515 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
3516 int tb_change_cnt = typebuf.tb_change_cnt;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3517
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3518 if (wait_time == -1L || wait_time > 100L) // flush output before waiting
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3519 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3520 cursor_on();
13150
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 12924
diff changeset
3521 out_flush_cursor(FALSE, FALSE);
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 12924
diff changeset
3522 #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
3523 if (gui.in_use && postponed_mouseshape)
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 12924
diff changeset
3524 update_mouseshape(-1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3525 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3526 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3527
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3528 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3529 * Don't reset these when at the hit-return prompt, otherwise a endless
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3530 * recursive loop may result (write error in swapfile, hit-return, timeout
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3531 * on char wait, flush swapfile, write error....).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3532 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3533 if (State != HITRETURN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3534 {
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3535 did_outofmem_msg = FALSE; // display out of memory message (again)
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3536 did_swapwrite_msg = FALSE; // display swap file write error again
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3537 }
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3538 undo_off = FALSE; // restart undo now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3539
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3540 /*
1462
ceaf71b15d81 updated for version 7.1-177
vimboss
parents: 1455
diff changeset
3541 * Get a character from a script file if there is one.
ceaf71b15d81 updated for version 7.1-177
vimboss
parents: 1455
diff changeset
3542 * If interrupted: Stop reading script files, close them all.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3543 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3544 script_char = -1;
1462
ceaf71b15d81 updated for version 7.1-177
vimboss
parents: 1455
diff changeset
3545 while (scriptin[curscript] != NULL && script_char < 0
ceaf71b15d81 updated for version 7.1-177
vimboss
parents: 1455
diff changeset
3546 #ifdef FEAT_EVAL
ceaf71b15d81 updated for version 7.1-177
vimboss
parents: 1455
diff changeset
3547 && !ignore_script
ceaf71b15d81 updated for version 7.1-177
vimboss
parents: 1455
diff changeset
3548 #endif
ceaf71b15d81 updated for version 7.1-177
vimboss
parents: 1455
diff changeset
3549 )
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3550 {
7109
fa95595fbc52 commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents: 6907
diff changeset
3551 #ifdef MESSAGE_QUEUE
fa95595fbc52 commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents: 6907
diff changeset
3552 parse_queued_messages();
1618
46bbe11644e0 updated for version 7.2a
vimboss
parents: 1462
diff changeset
3553 #endif
46bbe11644e0 updated for version 7.2a
vimboss
parents: 1462
diff changeset
3554
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3555 if (got_int || (script_char = getc(scriptin[curscript])) < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3556 {
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3557 // Reached EOF.
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3558 // Careful: closescript() frees typebuf.tb_buf[] and buf[] may
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3559 // point inside typebuf.tb_buf[]. Don't use buf[] after this!
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3560 closescript();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3561 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3562 * When reading script file is interrupted, return an ESC to get
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3563 * back to normal mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3564 * Otherwise return -1, because typebuf.tb_buf[] has changed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3565 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3566 if (got_int)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3567 retesc = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3568 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3569 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3570 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3571 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3572 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3573 buf[0] = script_char;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3574 len = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3575 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3576 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3577
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3578 if (script_char < 0) // did not get a character from script
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3579 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3580 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3581 * If we got an interrupt, skip all previously typed characters and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3582 * return TRUE if quit reading script file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3583 * Stop reading typeahead when a single CTRL-C was read,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3584 * fill_input_buf() returns this when not able to read from stdin.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3585 * Don't use buf[] here, closescript() may have freed typebuf.tb_buf[]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3586 * and buf may be pointing inside typebuf.tb_buf[].
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3587 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3588 if (got_int)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3589 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3590 #define DUM_LEN MAXMAPLEN * 3 + 3
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3591 char_u dum[DUM_LEN + 1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3592
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3593 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3594 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3595 len = ui_inchar(dum, DUM_LEN, 0L, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3596 if (len == 0 || (len == 1 && dum[0] == 3))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3597 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3598 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3599 return retesc;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3600 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3601
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3602 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3603 * Always flush the output characters when getting input characters
15629
dd2e0b83a660 patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents: 15605
diff changeset
3604 * from the user and not just peeking.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3605 */
15629
dd2e0b83a660 patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents: 15605
diff changeset
3606 if (wait_time == -1L || wait_time > 10L)
dd2e0b83a660 patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents: 15605
diff changeset
3607 out_flush();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3608
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3609 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3610 * Fill up to a third of the buffer, because each character may be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3611 * tripled below.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3612 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3613 len = ui_inchar(buf, maxlen / 3, wait_time, tb_change_cnt);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3614 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3615
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3616 // If the typebuf was changed further down, it is like nothing was added by
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3617 // this call.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3618 if (typebuf_changed(tb_change_cnt))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3619 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3620
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3621 // Note the change in the typeahead buffer, this matters for when
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3622 // vgetorpeek() is called recursively, e.g. using getchar(1) in a timer
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3623 // function.
12281
2738b0cc5f64 patch 8.0.1020: when a timer calls getchar(1) input is overwritten
Christian Brabandt <cb@256bit.org>
parents: 11577
diff changeset
3624 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
3625 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
3626
9896
7b39615c0db1 commit https://github.com/vim/vim/commit/6bff02eb530aa29aafa2cb5627399837be7a5dd5
Christian Brabandt <cb@256bit.org>
parents: 9228
diff changeset
3627 return fix_input_buffer(buf, len);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3628 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3629
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3630 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3631 * Fix typed characters for use by vgetc() and check_termcode().
16531
5c6bd4431d98 patch 8.1.1269: MS-Windows GUI: multibyte chars with a 0x80 byte do not work
Bram Moolenaar <Bram@vim.org>
parents: 16495
diff changeset
3632 * "buf[]" must have room to triple the number of bytes!
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3633 * Returns the new length.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3634 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3635 int
9896
7b39615c0db1 commit https://github.com/vim/vim/commit/6bff02eb530aa29aafa2cb5627399837be7a5dd5
Christian Brabandt <cb@256bit.org>
parents: 9228
diff changeset
3636 fix_input_buffer(char_u *buf, int len)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3637 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3638 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3639 char_u *p = buf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3640
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3641 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3642 * Two characters are special: NUL and K_SPECIAL.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3643 * When compiled With the GUI CSI is also special.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3644 * Replace NUL by K_SPECIAL KS_ZERO KE_FILLER
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3645 * Replace K_SPECIAL by K_SPECIAL KS_SPECIAL KE_FILLER
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3646 * Replace CSI by K_SPECIAL KS_EXTRA KE_CSI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3647 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3648 for (i = len; --i >= 0; ++p)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3649 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3650 #ifdef FEAT_GUI
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3651 // When the GUI is used any character can come after a CSI, don't
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3652 // escape it.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3653 if (gui.in_use && p[0] == CSI && i >= 2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3654 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3655 p += 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3656 i -= 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3657 }
18781
79e10adc821d patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3658 // When the GUI is not used CSI needs to be escaped.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3659 else if (!gui.in_use && p[0] == CSI)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3660 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3661 mch_memmove(p + 3, p + 1, (size_t)i);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3662 *p++ = K_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3663 *p++ = KS_EXTRA;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3664 *p = (int)KE_CSI;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3665 len += 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3666 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3667 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3668 #endif
9896
7b39615c0db1 commit https://github.com/vim/vim/commit/6bff02eb530aa29aafa2cb5627399837be7a5dd5
Christian Brabandt <cb@256bit.org>
parents: 9228
diff changeset
3669 if (p[0] == NUL || (p[0] == K_SPECIAL
16531
5c6bd4431d98 patch 8.1.1269: MS-Windows GUI: multibyte chars with a 0x80 byte do not work
Bram Moolenaar <Bram@vim.org>
parents: 16495
diff changeset
3670 // timeout may generate K_CURSORHOLD
202
b6450bf509d8 updated for version 7.0060
vimboss
parents: 184
diff changeset
3671 && (i < 2 || p[1] != KS_EXTRA || p[2] != (int)KE_CURSORHOLD)
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16393
diff changeset
3672 #if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))
16531
5c6bd4431d98 patch 8.1.1269: MS-Windows GUI: multibyte chars with a 0x80 byte do not work
Bram Moolenaar <Bram@vim.org>
parents: 16495
diff changeset
3673 // Win32 console passes modifiers
5c6bd4431d98 patch 8.1.1269: MS-Windows GUI: multibyte chars with a 0x80 byte do not work
Bram Moolenaar <Bram@vim.org>
parents: 16495
diff changeset
3674 && (
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16393
diff changeset
3675 # ifdef VIMDLL
16531
5c6bd4431d98 patch 8.1.1269: MS-Windows GUI: multibyte chars with a 0x80 byte do not work
Bram Moolenaar <Bram@vim.org>
parents: 16495
diff changeset
3676 gui.in_use ||
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16393
diff changeset
3677 # endif
16531
5c6bd4431d98 patch 8.1.1269: MS-Windows GUI: multibyte chars with a 0x80 byte do not work
Bram Moolenaar <Bram@vim.org>
parents: 16495
diff changeset
3678 (i < 2 || p[1] != KS_MODIFIER))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3679 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3680 ))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3681 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3682 mch_memmove(p + 3, p + 1, (size_t)i);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3683 p[2] = K_THIRD(p[0]);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3684 p[1] = K_SECOND(p[0]);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3685 p[0] = K_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3686 p += 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3687 len += 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3688 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3689 }
16531
5c6bd4431d98 patch 8.1.1269: MS-Windows GUI: multibyte chars with a 0x80 byte do not work
Bram Moolenaar <Bram@vim.org>
parents: 16495
diff changeset
3690 *p = NUL; // add trailing NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3691 return len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3692 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3693
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3694 #if defined(USE_INPUT_BUF) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3695 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3696 * Return TRUE when bytes are in the input buffer or in the typeahead buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3697 * Normally the input buffer would be sufficient, but the server_to_input_buf()
842
a209672376fd updated for version 7.0f
vimboss
parents: 841
diff changeset
3698 * or feedkeys() may insert characters in the typeahead buffer while we are
841
c2cae213194d updated for version 7.0e07
vimboss
parents: 840
diff changeset
3699 * waiting for input to arrive.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3700 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3701 int
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
3702 input_available(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3703 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3704 return (!vim_is_input_buf_empty()
841
c2cae213194d updated for version 7.0e07
vimboss
parents: 840
diff changeset
3705 # if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
c2cae213194d updated for version 7.0e07
vimboss
parents: 840
diff changeset
3706 || typebuf_was_filled
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3707 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3708 );
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3709 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3710 #endif
22862
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3711
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3712 /*
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3713 * Function passed to do_cmdline() to get the command after a <Cmd> key from
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3714 * typeahead.
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3715 */
27140
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3716 static char_u *
22862
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3717 getcmdkeycmd(
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3718 int promptc UNUSED,
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3719 void *cookie UNUSED,
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3720 int indent UNUSED,
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3721 getline_opt_T do_concat UNUSED)
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3722 {
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3723 garray_T line_ga;
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3724 int c1 = -1;
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3725 int c2;
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3726 int cmod = 0;
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3727 int aborted = FALSE;
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3728
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3729 ga_init2(&line_ga, 1, 32);
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3730
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3731 // no mapping for these characters
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3732 no_mapping++;
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3733
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3734 got_int = FALSE;
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3735 while (c1 != NUL && !aborted)
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3736 {
22888
7ac9dea21baa patch 8.2.1991: Coverity warns for not using the ga_grow() return value
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
3737 if (ga_grow(&line_ga, 32) != OK)
7ac9dea21baa patch 8.2.1991: Coverity warns for not using the ga_grow() return value
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
3738 {
7ac9dea21baa patch 8.2.1991: Coverity warns for not using the ga_grow() return value
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
3739 aborted = TRUE;
7ac9dea21baa patch 8.2.1991: Coverity warns for not using the ga_grow() return value
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
3740 break;
7ac9dea21baa patch 8.2.1991: Coverity warns for not using the ga_grow() return value
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
3741 }
22862
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3742
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3743 if (vgetorpeek(FALSE) == NUL)
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3744 {
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3745 // incomplete <Cmd> is an error, because there is not much the user
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3746 // could do in this state.
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3747 emsg(_(e_cmd_mapping_must_end_with_cr));
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3748 aborted = TRUE;
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3749 break;
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3750 }
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3751
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3752 // Get one character at a time.
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3753 c1 = vgetorpeek(TRUE);
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3754
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3755 // Get two extra bytes for special keys
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3756 if (c1 == K_SPECIAL)
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3757 {
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3758 c1 = vgetorpeek(TRUE);
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3759 c2 = vgetorpeek(TRUE);
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3760 if (c1 == KS_MODIFIER)
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3761 {
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3762 cmod = c2;
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3763 continue;
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3764 }
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3765 c1 = TO_SPECIAL(c1, c2);
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3766 }
23031
b68313ee7002 patch 8.2.2062: <Cmd> does not handle CTRL-V
Bram Moolenaar <Bram@vim.org>
parents: 22916
diff changeset
3767 if (c1 == Ctrl_V)
b68313ee7002 patch 8.2.2062: <Cmd> does not handle CTRL-V
Bram Moolenaar <Bram@vim.org>
parents: 22916
diff changeset
3768 {
b68313ee7002 patch 8.2.2062: <Cmd> does not handle CTRL-V
Bram Moolenaar <Bram@vim.org>
parents: 22916
diff changeset
3769 // CTRL-V is followed by octal, hex or other characters, reverses
b68313ee7002 patch 8.2.2062: <Cmd> does not handle CTRL-V
Bram Moolenaar <Bram@vim.org>
parents: 22916
diff changeset
3770 // what AppendToRedobuffLit() does.
b68313ee7002 patch 8.2.2062: <Cmd> does not handle CTRL-V
Bram Moolenaar <Bram@vim.org>
parents: 22916
diff changeset
3771 no_reduce_keys = TRUE; // don't merge modifyOtherKeys
23076
5fbac68bda23 patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents: 23031
diff changeset
3772 c1 = get_literal(TRUE);
23031
b68313ee7002 patch 8.2.2062: <Cmd> does not handle CTRL-V
Bram Moolenaar <Bram@vim.org>
parents: 22916
diff changeset
3773 no_reduce_keys = FALSE;
b68313ee7002 patch 8.2.2062: <Cmd> does not handle CTRL-V
Bram Moolenaar <Bram@vim.org>
parents: 22916
diff changeset
3774 }
22862
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3775
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3776 if (got_int)
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3777 aborted = TRUE;
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3778 else if (c1 == '\r' || c1 == '\n')
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3779 c1 = NUL; // end the line
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3780 else if (c1 == ESC)
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3781 aborted = TRUE;
27140
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3782 else if (c1 == K_COMMAND || c1 == K_SCRIPT_COMMAND)
22862
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3783 {
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3784 // give a nicer error message for this special case
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3785 emsg(_(e_cmd_mapping_must_end_with_cr_before_second_cmd));
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3786 aborted = TRUE;
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3787 }
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3788 else if (IS_SPECIAL(c1))
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3789 {
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3790 if (c1 == K_SNR)
22916
1fe53aae3ba0 patch 8.2.2005: redoing a mapping with <Cmd> doesn't work properly
Bram Moolenaar <Bram@vim.org>
parents: 22888
diff changeset
3791 ga_concat(&line_ga, (char_u *)"<SNR>");
22862
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3792 else
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3793 {
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3794 semsg(e_cmd_maping_must_not_include_str_key,
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3795 get_special_key_name(c1, cmod));
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3796 aborted = TRUE;
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3797 }
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3798 }
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3799 else
27156
67194006cad8 patch 8.2.4107: script context not restored after using <ScriptCmd>
Bram Moolenaar <Bram@vim.org>
parents: 27144
diff changeset
3800 ga_append(&line_ga, c1);
22862
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3801
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3802 cmod = 0;
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3803 }
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3804
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3805 no_mapping--;
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3806
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3807 if (aborted)
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3808 ga_clear(&line_ga);
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3809
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3810 return (char_u *)line_ga.ga_data;
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22800
diff changeset
3811 }
27140
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3812
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3813 int
27144
54f0a6a9db2d patch 8.2.4101: warning for unused argument in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
3814 do_cmdkey_command(int key UNUSED, int flags)
27140
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3815 {
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3816 int res;
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3817 #ifdef FEAT_EVAL
27156
67194006cad8 patch 8.2.4107: script context not restored after using <ScriptCmd>
Bram Moolenaar <Bram@vim.org>
parents: 27144
diff changeset
3818 sctx_T save_current_sctx = {-1, 0, 0, 0};
27140
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3819
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3820 if (key == K_SCRIPT_COMMAND && last_used_map != NULL)
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3821 {
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3822 save_current_sctx = current_sctx;
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3823 current_sctx = last_used_map->m_script_ctx;
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3824 }
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3825 #endif
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3826
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3827 res = do_cmdline(NULL, getcmdkeycmd, NULL, flags);
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3828
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3829 #ifdef FEAT_EVAL
27156
67194006cad8 patch 8.2.4107: script context not restored after using <ScriptCmd>
Bram Moolenaar <Bram@vim.org>
parents: 27144
diff changeset
3830 if (save_current_sctx.sc_sid >= 0)
27140
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3831 current_sctx = save_current_sctx;
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3832 #endif
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3833
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3834 return res;
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3835 }
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3836
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3837 #if defined(FEAT_EVAL) || defined(PROTO)
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3838 void
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3839 reset_last_used_map(void)
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3840 {
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3841 last_used_map = NULL;
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3842 }
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 27061
diff changeset
3843 #endif