Mercurial > vim
annotate src/misc2.c @ 28660:a3bcb2a30572 v8.2.4854
patch 8.2.4854: array size does not match usage
Commit: https://github.com/vim/vim/commit/2f7e00a8aeceaf1d682d9e797149c1c51654ff68
Author: Christian Brabandt <cb@256bit.org>
Date: Mon May 2 00:06:51 2022 +0100
patch 8.2.4854: array size does not match usage
Problem: Array size does not match usage.
Solution: Make array size 3 instead of 4. (Christian Brabandt, closes https://github.com/vim/vim/issues/10336)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 02 May 2022 01:15:04 +0200 |
parents | ce202d2984a0 |
children | 53c608c7ea9e |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9869
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * misc2.c: Various functions. | |
12 */ | |
13 #include "vim.h" | |
14 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
15 static char_u *username = NULL; // cached result of mch_get_user_name() |
359 | 16 |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
17 static int coladvance2(pos_T *pos, int addspaces, int finetune, colnr_T wcol); |
7 | 18 |
19 /* | |
20 * Return TRUE if in the current mode we need to use virtual. | |
21 */ | |
22 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
23 virtual_active(void) |
7 | 24 { |
25380
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25206
diff
changeset
|
25 unsigned int cur_ve_flags = get_ve_flags(); |
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25206
diff
changeset
|
26 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
27 // While an operator is being executed we return "virtual_op", because |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
28 // VIsual_active has already been reset, thus we can't check for "block" |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
29 // being used. |
7 | 30 if (virtual_op != MAYBE) |
31 return virtual_op; | |
25380
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25206
diff
changeset
|
32 return (cur_ve_flags == VE_ALL |
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25206
diff
changeset
|
33 || ((cur_ve_flags & VE_BLOCK) && VIsual_active && VIsual_mode == Ctrl_V) |
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25206
diff
changeset
|
34 || ((cur_ve_flags & VE_INSERT) && (State & INSERT))); |
7 | 35 } |
36 | |
37 /* | |
38 * Get the screen position of the cursor. | |
39 */ | |
40 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
41 getviscol(void) |
7 | 42 { |
43 colnr_T x; | |
44 | |
45 getvvcol(curwin, &curwin->w_cursor, &x, NULL, NULL); | |
46 return (int)x; | |
47 } | |
48 | |
49 /* | |
1209 | 50 * Go to column "wcol", and add/insert white space as necessary to get the |
7 | 51 * cursor in that column. |
52 * The caller must have saved the cursor line for undo! | |
53 */ | |
54 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
55 coladvance_force(colnr_T wcol) |
7 | 56 { |
57 int rc = coladvance2(&curwin->w_cursor, TRUE, FALSE, wcol); | |
58 | |
59 if (wcol == MAXCOL) | |
60 curwin->w_valid &= ~VALID_VIRTCOL; | |
61 else | |
62 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
63 // Virtcol is valid |
7 | 64 curwin->w_valid |= VALID_VIRTCOL; |
65 curwin->w_virtcol = wcol; | |
66 } | |
67 return rc; | |
68 } | |
69 | |
70 /* | |
15428
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
71 * Get the screen position of character col with a coladd in the cursor line. |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
72 */ |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
73 int |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
74 getviscol2(colnr_T col, colnr_T coladd UNUSED) |
15428
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
75 { |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
76 colnr_T x; |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
77 pos_T pos; |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
78 |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
79 pos.lnum = curwin->w_cursor.lnum; |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
80 pos.col = col; |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
81 pos.coladd = coladd; |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
82 getvvcol(curwin, &pos, &x, NULL, NULL); |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
83 return (int)x; |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
84 } |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
85 |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
86 /* |
7 | 87 * Try to advance the Cursor to the specified screen column. |
88 * If virtual editing: fine tune the cursor position. | |
89 * Note that all virtual positions off the end of a line should share | |
90 * a curwin->w_cursor.col value (n.b. this is equal to STRLEN(line)), | |
91 * beginning at coladd 0. | |
92 * | |
93 * return OK if desired column is reached, FAIL if not | |
94 */ | |
95 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
96 coladvance(colnr_T wcol) |
7 | 97 { |
98 int rc = getvpos(&curwin->w_cursor, wcol); | |
99 | |
100 if (wcol == MAXCOL || rc == FAIL) | |
101 curwin->w_valid &= ~VALID_VIRTCOL; | |
44 | 102 else if (*ml_get_cursor() != TAB) |
7 | 103 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
104 // Virtcol is valid when not on a TAB |
7 | 105 curwin->w_valid |= VALID_VIRTCOL; |
106 curwin->w_virtcol = wcol; | |
107 } | |
108 return rc; | |
109 } | |
110 | |
111 /* | |
112 * Return in "pos" the position of the cursor advanced to screen column "wcol". | |
113 * return OK if desired column is reached, FAIL if not | |
114 */ | |
115 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
116 getvpos(pos_T *pos, colnr_T wcol) |
7 | 117 { |
118 return coladvance2(pos, FALSE, virtual_active(), wcol); | |
119 } | |
120 | |
121 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
122 coladvance2( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
123 pos_T *pos, |
18291
11f68eb58fda
patch 8.1.2140: "gk" and "gj" do not work correctly in number column
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
124 int addspaces, // change the text to achieve our goal? |
11f68eb58fda
patch 8.1.2140: "gk" and "gj" do not work correctly in number column
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
125 int finetune, // change char offset for the exact column |
11f68eb58fda
patch 8.1.2140: "gk" and "gj" do not work correctly in number column
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
126 colnr_T wcol_arg) // column to move to (can be negative) |
7 | 127 { |
18291
11f68eb58fda
patch 8.1.2140: "gk" and "gj" do not work correctly in number column
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
128 colnr_T wcol = wcol_arg; |
7 | 129 int idx; |
130 char_u *ptr; | |
131 char_u *line; | |
132 colnr_T col = 0; | |
133 int csize = 0; | |
134 int one_more; | |
135 #ifdef FEAT_LINEBREAK | |
136 int head = 0; | |
137 #endif | |
138 | |
772 | 139 one_more = (State & INSERT) |
140 || restart_edit != NUL | |
141 || (VIsual_active && *p_sel != 'o') | |
25380
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25206
diff
changeset
|
142 || ((get_ve_flags() & VE_ONEMORE) && wcol < MAXCOL); |
1982 | 143 line = ml_get_buf(curbuf, pos->lnum, FALSE); |
7 | 144 |
145 if (wcol >= MAXCOL) | |
146 { | |
147 idx = (int)STRLEN(line) - 1 + one_more; | |
148 col = wcol; | |
149 | |
150 if ((addspaces || finetune) && !VIsual_active) | |
151 { | |
152 curwin->w_curswant = linetabsize(line) + one_more; | |
153 if (curwin->w_curswant > 0) | |
154 --curwin->w_curswant; | |
155 } | |
156 } | |
157 else | |
158 { | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
159 int width = curwin->w_width - win_col_off(curwin); |
7 | 160 |
620 | 161 if (finetune |
7 | 162 && curwin->w_p_wrap |
163 && curwin->w_width != 0 | |
25642
b46214b82d6e
patch 8.2.3357: crash when 'virtualedit' is set and window is narrow
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
164 && wcol >= (colnr_T)width |
b46214b82d6e
patch 8.2.3357: crash when 'virtualedit' is set and window is narrow
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
165 && width > 0) |
7 | 166 { |
167 csize = linetabsize(line); | |
168 if (csize > 0) | |
169 csize--; | |
170 | |
620 | 171 if (wcol / width > (colnr_T)csize / width |
172 && ((State & INSERT) == 0 || (int)wcol > csize + 1)) | |
7 | 173 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
174 // In case of line wrapping don't move the cursor beyond the |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
175 // right screen edge. In Insert mode allow going just beyond |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
176 // the last character (like what happens when typing and |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
177 // reaching the right window edge). |
7 | 178 wcol = (csize / width + 1) * width - 1; |
179 } | |
180 } | |
181 | |
182 ptr = line; | |
183 while (col <= wcol && *ptr != NUL) | |
184 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
185 // Count a tab for what it's worth (if list mode not on) |
7 | 186 #ifdef FEAT_LINEBREAK |
5995 | 187 csize = win_lbr_chartabsize(curwin, line, ptr, col, &head); |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
188 MB_PTR_ADV(ptr); |
7 | 189 #else |
5995 | 190 csize = lbr_chartabsize_adv(line, &ptr, col); |
7 | 191 #endif |
192 col += csize; | |
193 } | |
194 idx = (int)(ptr - line); | |
195 /* | |
196 * Handle all the special cases. The virtual_active() check | |
197 * is needed to ensure that a virtual position off the end of | |
198 * a line has the correct indexing. The one_more comparison | |
199 * replaces an explicit add of one_more later on. | |
200 */ | |
201 if (col > wcol || (!virtual_active() && one_more == 0)) | |
202 { | |
203 idx -= 1; | |
204 # ifdef FEAT_LINEBREAK | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
205 // Don't count the chars from 'showbreak'. |
7 | 206 csize -= head; |
207 # endif | |
208 col -= csize; | |
209 } | |
210 | |
211 if (virtual_active() | |
212 && addspaces | |
18291
11f68eb58fda
patch 8.1.2140: "gk" and "gj" do not work correctly in number column
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
213 && wcol >= 0 |
7 | 214 && ((col != wcol && col != wcol + 1) || csize > 1)) |
215 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
216 // 'virtualedit' is set: The difference between wcol and col is |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
217 // filled with spaces. |
7 | 218 |
219 if (line[idx] == NUL) | |
220 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
221 // Append spaces |
7 | 222 int correct = wcol - col; |
223 char_u *newline = alloc(idx + correct + 1); | |
224 int t; | |
225 | |
226 if (newline == NULL) | |
227 return FAIL; | |
228 | |
229 for (t = 0; t < idx; ++t) | |
230 newline[t] = line[t]; | |
231 | |
232 for (t = 0; t < correct; ++t) | |
233 newline[t + idx] = ' '; | |
234 | |
235 newline[idx + correct] = NUL; | |
236 | |
237 ml_replace(pos->lnum, newline, FALSE); | |
238 changed_bytes(pos->lnum, (colnr_T)idx); | |
239 idx += correct; | |
240 col = wcol; | |
241 } | |
242 else | |
243 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
244 // Break a tab |
7 | 245 int linelen = (int)STRLEN(line); |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
246 int correct = wcol - col - csize + 1; // negative!! |
840 | 247 char_u *newline; |
7 | 248 int t, s = 0; |
249 int v; | |
250 | |
840 | 251 if (-correct > csize) |
252 return FAIL; | |
253 | |
254 newline = alloc(linelen + csize); | |
255 if (newline == NULL) | |
7 | 256 return FAIL; |
257 | |
258 for (t = 0; t < linelen; t++) | |
259 { | |
260 if (t != idx) | |
261 newline[s++] = line[t]; | |
262 else | |
263 for (v = 0; v < csize; v++) | |
264 newline[s++] = ' '; | |
265 } | |
266 | |
267 newline[linelen + csize - 1] = NUL; | |
268 | |
269 ml_replace(pos->lnum, newline, FALSE); | |
270 changed_bytes(pos->lnum, idx); | |
271 idx += (csize - 1 + correct); | |
272 col += correct; | |
273 } | |
274 } | |
275 } | |
276 | |
277 if (idx < 0) | |
278 pos->col = 0; | |
279 else | |
280 pos->col = idx; | |
281 | |
282 pos->coladd = 0; | |
283 | |
284 if (finetune) | |
285 { | |
286 if (wcol == MAXCOL) | |
287 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
288 // The width of the last character is used to set coladd. |
7 | 289 if (!one_more) |
290 { | |
291 colnr_T scol, ecol; | |
292 | |
293 getvcol(curwin, pos, &scol, NULL, &ecol); | |
294 pos->coladd = ecol - scol; | |
295 } | |
296 } | |
297 else | |
298 { | |
299 int b = (int)wcol - (int)col; | |
300 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
301 // The difference between wcol and col is used to set coladd. |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
302 if (b > 0 && b < (MAXCOL - 2 * curwin->w_width)) |
7 | 303 pos->coladd = b; |
304 | |
305 col += b; | |
306 } | |
307 } | |
308 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
309 // prevent from moving onto a trail byte |
7 | 310 if (has_mbyte) |
2933 | 311 mb_adjustpos(curbuf, pos); |
7 | 312 |
18291
11f68eb58fda
patch 8.1.2140: "gk" and "gj" do not work correctly in number column
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
313 if (wcol < 0 || col < wcol) |
7 | 314 return FAIL; |
315 return OK; | |
316 } | |
317 | |
318 /* | |
1621 | 319 * Increment the cursor position. See inc() for return values. |
7 | 320 */ |
321 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
322 inc_cursor(void) |
7 | 323 { |
324 return inc(&curwin->w_cursor); | |
325 } | |
326 | |
1621 | 327 /* |
328 * Increment the line pointer "lp" crossing line boundaries as necessary. | |
329 * Return 1 when going to the next line. | |
330 * Return 2 when moving forward onto a NUL at the end of the line). | |
331 * Return -1 when at the end of file. | |
332 * Return 0 otherwise. | |
333 */ | |
7 | 334 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
335 inc(pos_T *lp) |
7 | 336 { |
13082
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
337 char_u *p; |
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
338 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
339 // when searching position may be set to end of a line |
13082
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
340 if (lp->col != MAXCOL) |
7 | 341 { |
13082
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
342 p = ml_get_pos(lp); |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
343 if (*p != NUL) // still within line, move to next char (may be NUL) |
7 | 344 { |
13082
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
345 if (has_mbyte) |
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
346 { |
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
347 int l = (*mb_ptr2len)(p); |
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
348 |
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
349 lp->col += l; |
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
350 return ((p[l] != NUL) ? 0 : 2); |
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
351 } |
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
352 lp->col++; |
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
353 lp->coladd = 0; |
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
354 return ((p[1] != NUL) ? 0 : 2); |
7 | 355 } |
356 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
357 if (lp->lnum != curbuf->b_ml.ml_line_count) // there is a next line |
7 | 358 { |
359 lp->col = 0; | |
360 lp->lnum++; | |
361 lp->coladd = 0; | |
362 return 1; | |
363 } | |
364 return -1; | |
365 } | |
366 | |
367 /* | |
368 * incl(lp): same as inc(), but skip the NUL at the end of non-empty lines | |
369 */ | |
370 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
371 incl(pos_T *lp) |
7 | 372 { |
373 int r; | |
374 | |
375 if ((r = inc(lp)) >= 1 && lp->col) | |
376 r = inc(lp); | |
377 return r; | |
378 } | |
379 | |
380 /* | |
381 * dec(p) | |
382 * | |
383 * Decrement the line pointer 'p' crossing line boundaries as necessary. | |
384 * Return 1 when crossing a line, -1 when at start of file, 0 otherwise. | |
385 */ | |
386 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
387 dec_cursor(void) |
7 | 388 { |
10549
055b1633aed7
patch 8.0.0164: outdated and misplaced comments
Christian Brabandt <cb@256bit.org>
parents:
10449
diff
changeset
|
389 return dec(&curwin->w_cursor); |
7 | 390 } |
391 | |
392 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
393 dec(pos_T *lp) |
7 | 394 { |
395 char_u *p; | |
396 | |
397 lp->coladd = 0; | |
13084
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
398 if (lp->col == MAXCOL) |
7 | 399 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
400 // past end of line |
13084
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
401 p = ml_get(lp->lnum); |
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
402 lp->col = (colnr_T)STRLEN(p); |
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
403 if (has_mbyte) |
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
404 lp->col -= (*mb_head_off)(p, p + lp->col); |
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
405 return 0; |
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
406 } |
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
407 |
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
408 if (lp->col > 0) |
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
409 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
410 // still within line |
7 | 411 lp->col--; |
412 if (has_mbyte) | |
413 { | |
414 p = ml_get(lp->lnum); | |
415 lp->col -= (*mb_head_off)(p, p + lp->col); | |
416 } | |
417 return 0; | |
418 } | |
13084
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
419 |
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
420 if (lp->lnum > 1) |
7 | 421 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
422 // there is a prior line |
7 | 423 lp->lnum--; |
424 p = ml_get(lp->lnum); | |
425 lp->col = (colnr_T)STRLEN(p); | |
426 if (has_mbyte) | |
427 lp->col -= (*mb_head_off)(p, p + lp->col); | |
428 return 1; | |
429 } | |
13084
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
430 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
431 // at start of file |
13084
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
432 return -1; |
7 | 433 } |
434 | |
435 /* | |
436 * decl(lp): same as dec(), but skip the NUL at the end of non-empty lines | |
437 */ | |
438 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
439 decl(pos_T *lp) |
7 | 440 { |
441 int r; | |
442 | |
443 if ((r = dec(lp)) == 1 && lp->col) | |
444 r = dec(lp); | |
445 return r; | |
446 } | |
447 | |
448 /* | |
2178
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
449 * Get the line number relative to the current cursor position, i.e. the |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
450 * difference between line number and cursor position. Only look for lines that |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
451 * can be visible, folded lines don't count. |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
452 */ |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
453 linenr_T |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
454 get_cursor_rel_lnum( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
455 win_T *wp, |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
456 linenr_T lnum) // line number to get the result for |
2178
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
457 { |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
458 linenr_T cursor = wp->w_cursor.lnum; |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
459 linenr_T retval = 0; |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
460 |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
461 #ifdef FEAT_FOLDING |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
462 if (hasAnyFolding(wp)) |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
463 { |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
464 if (lnum > cursor) |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
465 { |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
466 while (lnum > cursor) |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
467 { |
5564 | 468 (void)hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL); |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
469 // if lnum and cursor are in the same fold, |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
470 // now lnum <= cursor |
2178
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
471 if (lnum > cursor) |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
472 retval++; |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
473 lnum--; |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
474 } |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
475 } |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
476 else if (lnum < cursor) |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
477 { |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
478 while (lnum < cursor) |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
479 { |
5564 | 480 (void)hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL); |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
481 // if lnum and cursor are in the same fold, |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
482 // now lnum >= cursor |
2178
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
483 if (lnum < cursor) |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
484 retval--; |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
485 lnum++; |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
486 } |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
487 } |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
488 // else if (lnum == cursor) |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
489 // retval = 0; |
2178
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
490 } |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
491 else |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
492 #endif |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
493 retval = lnum - cursor; |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
494 |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
495 return retval; |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
496 } |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
497 |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
498 /* |
10110
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
499 * Make sure "pos.lnum" and "pos.col" are valid in "buf". |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
500 * This allows for the col to be on the NUL byte. |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
501 */ |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
502 void |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
503 check_pos(buf_T *buf, pos_T *pos) |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
504 { |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
505 char_u *line; |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
506 colnr_T len; |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
507 |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
508 if (pos->lnum > buf->b_ml.ml_line_count) |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
509 pos->lnum = buf->b_ml.ml_line_count; |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
510 |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
511 if (pos->col > 0) |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
512 { |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
513 line = ml_get_buf(buf, pos->lnum, FALSE); |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
514 len = (colnr_T)STRLEN(line); |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
515 if (pos->col > len) |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
516 pos->col = len; |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
517 } |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
518 } |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
519 |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
520 /* |
7 | 521 * Make sure curwin->w_cursor.lnum is valid. |
522 */ | |
523 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
524 check_cursor_lnum(void) |
7 | 525 { |
526 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) | |
527 { | |
528 #ifdef FEAT_FOLDING | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
529 // If there is a closed fold at the end of the file, put the cursor in |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
530 // its first line. Otherwise in the last line. |
7 | 531 if (!hasFolding(curbuf->b_ml.ml_line_count, |
532 &curwin->w_cursor.lnum, NULL)) | |
533 #endif | |
534 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
535 } | |
536 if (curwin->w_cursor.lnum <= 0) | |
537 curwin->w_cursor.lnum = 1; | |
538 } | |
539 | |
540 /* | |
541 * Make sure curwin->w_cursor.col is valid. | |
542 */ | |
543 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
544 check_cursor_col(void) |
7 | 545 { |
2933 | 546 check_cursor_col_win(curwin); |
547 } | |
548 | |
549 /* | |
550 * Make sure win->w_cursor.col is valid. | |
551 */ | |
552 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
553 check_cursor_col_win(win_T *win) |
2933 | 554 { |
25380
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25206
diff
changeset
|
555 colnr_T len; |
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25206
diff
changeset
|
556 colnr_T oldcol = win->w_cursor.col; |
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25206
diff
changeset
|
557 colnr_T oldcoladd = win->w_cursor.col + win->w_cursor.coladd; |
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25206
diff
changeset
|
558 unsigned int cur_ve_flags = get_ve_flags(); |
2933 | 559 |
560 len = (colnr_T)STRLEN(ml_get_buf(win->w_buffer, win->w_cursor.lnum, FALSE)); | |
7 | 561 if (len == 0) |
2933 | 562 win->w_cursor.col = 0; |
563 else if (win->w_cursor.col >= len) | |
7 | 564 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
565 // Allow cursor past end-of-line when: |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
566 // - in Insert mode or restarting Insert mode |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
567 // - in Visual mode and 'selection' isn't "old" |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
568 // - 'virtualedit' is set |
620 | 569 if ((State & INSERT) || restart_edit |
7 | 570 || (VIsual_active && *p_sel != 'o') |
25380
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25206
diff
changeset
|
571 || (cur_ve_flags & VE_ONEMORE) |
7 | 572 || virtual_active()) |
2933 | 573 win->w_cursor.col = len; |
7 | 574 else |
1099 | 575 { |
2933 | 576 win->w_cursor.col = len - 1; |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
577 // Move the cursor to the head byte. |
1099 | 578 if (has_mbyte) |
2933 | 579 mb_adjustpos(win->w_buffer, &win->w_cursor); |
1099 | 580 } |
7 | 581 } |
2933 | 582 else if (win->w_cursor.col < 0) |
583 win->w_cursor.col = 0; | |
7 | 584 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
585 // If virtual editing is on, we can leave the cursor on the old position, |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
586 // only we must set it to virtual. But don't do it when at the end of the |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
587 // line. |
7 | 588 if (oldcol == MAXCOL) |
2933 | 589 win->w_cursor.coladd = 0; |
25380
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25206
diff
changeset
|
590 else if (cur_ve_flags == VE_ALL) |
1841 | 591 { |
2933 | 592 if (oldcoladd > win->w_cursor.col) |
12164
5d82470552ce
patch 8.0.0962: crash with virtualedit and joining lines
Christian Brabandt <cb@256bit.org>
parents:
11737
diff
changeset
|
593 { |
2933 | 594 win->w_cursor.coladd = oldcoladd - win->w_cursor.col; |
12279
57e0b701611e
patch 8.0.1019: pasting in virtual edit happens in the wrong place
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
595 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
596 // Make sure that coladd is not more than the char width. |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
597 // Not for the last character, coladd is then used when the cursor |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
598 // is actually after the last character. |
28169
bef82285dda0
patch 8.2.4610: some conditions are always true
Bram Moolenaar <Bram@vim.org>
parents:
27617
diff
changeset
|
599 if (win->w_cursor.col + 1 < len) |
12164
5d82470552ce
patch 8.0.0962: crash with virtualedit and joining lines
Christian Brabandt <cb@256bit.org>
parents:
11737
diff
changeset
|
600 { |
5d82470552ce
patch 8.0.0962: crash with virtualedit and joining lines
Christian Brabandt <cb@256bit.org>
parents:
11737
diff
changeset
|
601 int cs, ce; |
5d82470552ce
patch 8.0.0962: crash with virtualedit and joining lines
Christian Brabandt <cb@256bit.org>
parents:
11737
diff
changeset
|
602 |
5d82470552ce
patch 8.0.0962: crash with virtualedit and joining lines
Christian Brabandt <cb@256bit.org>
parents:
11737
diff
changeset
|
603 getvcol(win, &win->w_cursor, &cs, NULL, &ce); |
5d82470552ce
patch 8.0.0962: crash with virtualedit and joining lines
Christian Brabandt <cb@256bit.org>
parents:
11737
diff
changeset
|
604 if (win->w_cursor.coladd > ce - cs) |
5d82470552ce
patch 8.0.0962: crash with virtualedit and joining lines
Christian Brabandt <cb@256bit.org>
parents:
11737
diff
changeset
|
605 win->w_cursor.coladd = ce - cs; |
5d82470552ce
patch 8.0.0962: crash with virtualedit and joining lines
Christian Brabandt <cb@256bit.org>
parents:
11737
diff
changeset
|
606 } |
5d82470552ce
patch 8.0.0962: crash with virtualedit and joining lines
Christian Brabandt <cb@256bit.org>
parents:
11737
diff
changeset
|
607 } |
1841 | 608 else |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
609 // avoid weird number when there is a miscalculation or overflow |
2933 | 610 win->w_cursor.coladd = 0; |
1841 | 611 } |
7 | 612 } |
613 | |
614 /* | |
615 * make sure curwin->w_cursor in on a valid character | |
616 */ | |
617 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
618 check_cursor(void) |
7 | 619 { |
620 check_cursor_lnum(); | |
621 check_cursor_col(); | |
622 } | |
623 | |
624 #if defined(FEAT_TEXTOBJ) || defined(PROTO) | |
625 /* | |
626 * Make sure curwin->w_cursor is not on the NUL at the end of the line. | |
627 * Allow it when in Visual mode and 'selection' is not "old". | |
628 */ | |
629 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
630 adjust_cursor_col(void) |
7 | 631 { |
632 if (curwin->w_cursor.col > 0 | |
633 && (!VIsual_active || *p_sel == 'o') | |
634 && gchar_cursor() == NUL) | |
635 --curwin->w_cursor.col; | |
636 } | |
637 #endif | |
638 | |
639 /* | |
640 * When curwin->w_leftcol has changed, adjust the cursor position. | |
641 * Return TRUE if the cursor was moved. | |
642 */ | |
643 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
644 leftcol_changed(void) |
7 | 645 { |
646 long lastcol; | |
647 colnr_T s, e; | |
648 int retval = FALSE; | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15675
diff
changeset
|
649 long siso = get_sidescrolloff_value(); |
7 | 650 |
651 changed_cline_bef_curs(); | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
652 lastcol = curwin->w_leftcol + curwin->w_width - curwin_col_off() - 1; |
7 | 653 validate_virtcol(); |
654 | |
655 /* | |
656 * If the cursor is right or left of the screen, move it to last or first | |
657 * character. | |
658 */ | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15675
diff
changeset
|
659 if (curwin->w_virtcol > (colnr_T)(lastcol - siso)) |
7 | 660 { |
661 retval = TRUE; | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15675
diff
changeset
|
662 coladvance((colnr_T)(lastcol - siso)); |
7 | 663 } |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15675
diff
changeset
|
664 else if (curwin->w_virtcol < curwin->w_leftcol + siso) |
7 | 665 { |
666 retval = TRUE; | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15675
diff
changeset
|
667 (void)coladvance((colnr_T)(curwin->w_leftcol + siso)); |
7 | 668 } |
669 | |
670 /* | |
671 * If the start of the character under the cursor is not on the screen, | |
672 * advance the cursor one more char. If this fails (last char of the | |
673 * line) adjust the scrolling. | |
674 */ | |
675 getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e); | |
676 if (e > (colnr_T)lastcol) | |
677 { | |
678 retval = TRUE; | |
679 coladvance(s - 1); | |
680 } | |
681 else if (s < curwin->w_leftcol) | |
682 { | |
683 retval = TRUE; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
684 if (coladvance(e + 1) == FAIL) // there isn't another character |
7 | 685 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
686 curwin->w_leftcol = s; // adjust w_leftcol instead |
7 | 687 changed_cline_bef_curs(); |
688 } | |
689 } | |
690 | |
691 if (retval) | |
692 curwin->w_set_curswant = TRUE; | |
693 redraw_later(NOT_VALID); | |
694 return retval; | |
695 } | |
696 | |
15292
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
697 /* |
7 | 698 * Isolate one part of a string option where parts are separated with |
699 * "sep_chars". | |
459 | 700 * The part is copied into "buf[maxlen]". |
7 | 701 * "*option" is advanced to the next part. |
702 * The length is returned. | |
703 */ | |
704 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
705 copy_option_part( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
706 char_u **option, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
707 char_u *buf, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
708 int maxlen, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
709 char *sep_chars) |
7 | 710 { |
711 int len = 0; | |
712 char_u *p = *option; | |
713 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
714 // skip '.' at start of option part, for 'suffixes' |
7 | 715 if (*p == '.') |
716 buf[len++] = *p++; | |
717 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL) | |
718 { | |
719 /* | |
720 * Skip backslash before a separator character and space. | |
721 */ | |
722 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL) | |
723 ++p; | |
724 if (len < maxlen - 1) | |
725 buf[len++] = *p; | |
726 ++p; | |
727 } | |
728 buf[len] = NUL; | |
729 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
730 if (*p != NUL && *p != ',') // skip non-standard separator |
7 | 731 ++p; |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
732 p = skip_to_option_part(p); // p points to next file name |
7 | 733 |
734 *option = p; | |
735 return len; | |
736 } | |
737 | |
738 #ifndef HAVE_MEMSET | |
739 void * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
740 vim_memset(void *ptr, int c, size_t size) |
7 | 741 { |
742 char *p = ptr; | |
743 | |
744 while (size-- > 0) | |
745 *p++ = c; | |
746 return ptr; | |
747 } | |
748 #endif | |
749 | |
750 /* | |
751 * Vim has its own isspace() function, because on some machines isspace() | |
752 * can't handle characters above 128. | |
753 */ | |
754 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
755 vim_isspace(int x) |
7 | 756 { |
757 return ((x >= 9 && x <= 13) || x == ' '); | |
758 } | |
759 | |
760 /************************************************************************ | |
761 * functions that use lookup tables for various things, generally to do with | |
762 * special key codes. | |
763 */ | |
764 | |
765 /* | |
766 * Some useful tables. | |
767 */ | |
768 | |
769 static struct modmasktable | |
770 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
771 short mod_mask; // Bit-mask for particular key modifier |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
772 short mod_flag; // Bit(s) for particular key modifier |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
773 char_u name; // Single letter name of modifier |
7 | 774 } mod_mask_table[] = |
775 { | |
776 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'}, | |
179 | 777 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'}, |
7 | 778 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'}, |
779 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'}, | |
780 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'}, | |
781 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'}, | |
782 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'}, | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12672
diff
changeset
|
783 #ifdef MACOS_X |
7 | 784 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'}, |
785 #endif | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
786 // 'A' must be the last one |
7 | 787 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'}, |
788 {0, 0, NUL} | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
789 // NOTE: when adding an entry, update MAX_KEY_NAME_LEN! |
7 | 790 }; |
791 | |
792 /* | |
793 * Shifted key terminal codes and their unshifted equivalent. | |
1209 | 794 * Don't add mouse codes here, they are handled separately! |
7 | 795 */ |
796 #define MOD_KEYS_ENTRY_SIZE 5 | |
797 | |
798 static char_u modifier_keys_table[] = | |
799 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
800 // mod mask with modifier without modifier |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
801 MOD_MASK_SHIFT, '&', '9', '@', '1', // begin |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
802 MOD_MASK_SHIFT, '&', '0', '@', '2', // cancel |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
803 MOD_MASK_SHIFT, '*', '1', '@', '4', // command |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
804 MOD_MASK_SHIFT, '*', '2', '@', '5', // copy |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
805 MOD_MASK_SHIFT, '*', '3', '@', '6', // create |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
806 MOD_MASK_SHIFT, '*', '4', 'k', 'D', // delete char |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
807 MOD_MASK_SHIFT, '*', '5', 'k', 'L', // delete line |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
808 MOD_MASK_SHIFT, '*', '7', '@', '7', // end |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
809 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', // end |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
810 MOD_MASK_SHIFT, '*', '9', '@', '9', // exit |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
811 MOD_MASK_SHIFT, '*', '0', '@', '0', // find |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
812 MOD_MASK_SHIFT, '#', '1', '%', '1', // help |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
813 MOD_MASK_SHIFT, '#', '2', 'k', 'h', // home |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
814 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', // home |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
815 MOD_MASK_SHIFT, '#', '3', 'k', 'I', // insert |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
816 MOD_MASK_SHIFT, '#', '4', 'k', 'l', // left arrow |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
817 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', // left arrow |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
818 MOD_MASK_SHIFT, '%', 'a', '%', '3', // message |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
819 MOD_MASK_SHIFT, '%', 'b', '%', '4', // move |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
820 MOD_MASK_SHIFT, '%', 'c', '%', '5', // next |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
821 MOD_MASK_SHIFT, '%', 'd', '%', '7', // options |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
822 MOD_MASK_SHIFT, '%', 'e', '%', '8', // previous |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
823 MOD_MASK_SHIFT, '%', 'f', '%', '9', // print |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
824 MOD_MASK_SHIFT, '%', 'g', '%', '0', // redo |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
825 MOD_MASK_SHIFT, '%', 'h', '&', '3', // replace |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
826 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', // right arr. |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
827 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', // right arr. |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
828 MOD_MASK_SHIFT, '%', 'j', '&', '5', // resume |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
829 MOD_MASK_SHIFT, '!', '1', '&', '6', // save |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
830 MOD_MASK_SHIFT, '!', '2', '&', '7', // suspend |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
831 MOD_MASK_SHIFT, '!', '3', '&', '8', // undo |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
832 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', // up arrow |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
833 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', // down arrow |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
834 |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
835 // vt100 F1 |
7 | 836 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1, |
837 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2, | |
838 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3, | |
839 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4, | |
840 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
841 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', // F1 |
7 | 842 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2', |
843 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3', | |
844 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4', | |
845 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5', | |
846 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6', | |
847 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7', | |
848 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8', | |
849 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9', | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
850 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', // F10 |
7 | 851 |
852 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1', | |
853 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2', | |
854 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3', | |
855 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4', | |
856 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5', | |
857 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6', | |
858 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7', | |
859 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8', | |
860 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9', | |
861 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A', | |
862 | |
863 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B', | |
864 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C', | |
865 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D', | |
866 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E', | |
867 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F', | |
868 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G', | |
869 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H', | |
870 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I', | |
871 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J', | |
872 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K', | |
873 | |
874 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L', | |
875 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M', | |
876 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N', | |
877 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O', | |
878 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P', | |
879 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q', | |
880 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R', | |
881 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
882 // TAB pseudo code |
7 | 883 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB, |
884 | |
885 NUL | |
886 }; | |
887 | |
888 static struct key_name_entry | |
889 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
890 int key; // Special key code or ascii value |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
891 char_u *name; // Name of key |
7 | 892 } key_names_table[] = |
893 { | |
894 {' ', (char_u *)"Space"}, | |
895 {TAB, (char_u *)"Tab"}, | |
896 {K_TAB, (char_u *)"Tab"}, | |
897 {NL, (char_u *)"NL"}, | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
898 {NL, (char_u *)"NewLine"}, // Alternative name |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
899 {NL, (char_u *)"LineFeed"}, // Alternative name |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
900 {NL, (char_u *)"LF"}, // Alternative name |
7 | 901 {CAR, (char_u *)"CR"}, |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
902 {CAR, (char_u *)"Return"}, // Alternative name |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
903 {CAR, (char_u *)"Enter"}, // Alternative name |
7 | 904 {K_BS, (char_u *)"BS"}, |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
905 {K_BS, (char_u *)"BackSpace"}, // Alternative name |
7 | 906 {ESC, (char_u *)"Esc"}, |
907 {CSI, (char_u *)"CSI"}, | |
908 {K_CSI, (char_u *)"xCSI"}, | |
909 {'|', (char_u *)"Bar"}, | |
910 {'\\', (char_u *)"Bslash"}, | |
911 {K_DEL, (char_u *)"Del"}, | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
912 {K_DEL, (char_u *)"Delete"}, // Alternative name |
7 | 913 {K_KDEL, (char_u *)"kDel"}, |
914 {K_UP, (char_u *)"Up"}, | |
915 {K_DOWN, (char_u *)"Down"}, | |
916 {K_LEFT, (char_u *)"Left"}, | |
917 {K_RIGHT, (char_u *)"Right"}, | |
180 | 918 {K_XUP, (char_u *)"xUp"}, |
919 {K_XDOWN, (char_u *)"xDown"}, | |
920 {K_XLEFT, (char_u *)"xLeft"}, | |
921 {K_XRIGHT, (char_u *)"xRight"}, | |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
922 {K_PS, (char_u *)"PasteStart"}, |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
923 {K_PE, (char_u *)"PasteEnd"}, |
7 | 924 |
925 {K_F1, (char_u *)"F1"}, | |
926 {K_F2, (char_u *)"F2"}, | |
927 {K_F3, (char_u *)"F3"}, | |
928 {K_F4, (char_u *)"F4"}, | |
929 {K_F5, (char_u *)"F5"}, | |
930 {K_F6, (char_u *)"F6"}, | |
931 {K_F7, (char_u *)"F7"}, | |
932 {K_F8, (char_u *)"F8"}, | |
933 {K_F9, (char_u *)"F9"}, | |
934 {K_F10, (char_u *)"F10"}, | |
935 | |
936 {K_F11, (char_u *)"F11"}, | |
937 {K_F12, (char_u *)"F12"}, | |
938 {K_F13, (char_u *)"F13"}, | |
939 {K_F14, (char_u *)"F14"}, | |
940 {K_F15, (char_u *)"F15"}, | |
941 {K_F16, (char_u *)"F16"}, | |
942 {K_F17, (char_u *)"F17"}, | |
943 {K_F18, (char_u *)"F18"}, | |
944 {K_F19, (char_u *)"F19"}, | |
945 {K_F20, (char_u *)"F20"}, | |
946 | |
947 {K_F21, (char_u *)"F21"}, | |
948 {K_F22, (char_u *)"F22"}, | |
949 {K_F23, (char_u *)"F23"}, | |
950 {K_F24, (char_u *)"F24"}, | |
951 {K_F25, (char_u *)"F25"}, | |
952 {K_F26, (char_u *)"F26"}, | |
953 {K_F27, (char_u *)"F27"}, | |
954 {K_F28, (char_u *)"F28"}, | |
955 {K_F29, (char_u *)"F29"}, | |
956 {K_F30, (char_u *)"F30"}, | |
957 | |
958 {K_F31, (char_u *)"F31"}, | |
959 {K_F32, (char_u *)"F32"}, | |
960 {K_F33, (char_u *)"F33"}, | |
961 {K_F34, (char_u *)"F34"}, | |
962 {K_F35, (char_u *)"F35"}, | |
963 {K_F36, (char_u *)"F36"}, | |
964 {K_F37, (char_u *)"F37"}, | |
965 | |
966 {K_XF1, (char_u *)"xF1"}, | |
967 {K_XF2, (char_u *)"xF2"}, | |
968 {K_XF3, (char_u *)"xF3"}, | |
969 {K_XF4, (char_u *)"xF4"}, | |
970 | |
971 {K_HELP, (char_u *)"Help"}, | |
972 {K_UNDO, (char_u *)"Undo"}, | |
973 {K_INS, (char_u *)"Insert"}, | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
974 {K_INS, (char_u *)"Ins"}, // Alternative name |
7 | 975 {K_KINS, (char_u *)"kInsert"}, |
976 {K_HOME, (char_u *)"Home"}, | |
977 {K_KHOME, (char_u *)"kHome"}, | |
978 {K_XHOME, (char_u *)"xHome"}, | |
230 | 979 {K_ZHOME, (char_u *)"zHome"}, |
7 | 980 {K_END, (char_u *)"End"}, |
981 {K_KEND, (char_u *)"kEnd"}, | |
982 {K_XEND, (char_u *)"xEnd"}, | |
230 | 983 {K_ZEND, (char_u *)"zEnd"}, |
7 | 984 {K_PAGEUP, (char_u *)"PageUp"}, |
985 {K_PAGEDOWN, (char_u *)"PageDown"}, | |
986 {K_KPAGEUP, (char_u *)"kPageUp"}, | |
987 {K_KPAGEDOWN, (char_u *)"kPageDown"}, | |
988 | |
989 {K_KPLUS, (char_u *)"kPlus"}, | |
990 {K_KMINUS, (char_u *)"kMinus"}, | |
991 {K_KDIVIDE, (char_u *)"kDivide"}, | |
992 {K_KMULTIPLY, (char_u *)"kMultiply"}, | |
993 {K_KENTER, (char_u *)"kEnter"}, | |
994 {K_KPOINT, (char_u *)"kPoint"}, | |
995 | |
996 {K_K0, (char_u *)"k0"}, | |
997 {K_K1, (char_u *)"k1"}, | |
998 {K_K2, (char_u *)"k2"}, | |
999 {K_K3, (char_u *)"k3"}, | |
1000 {K_K4, (char_u *)"k4"}, | |
1001 {K_K5, (char_u *)"k5"}, | |
1002 {K_K6, (char_u *)"k6"}, | |
1003 {K_K7, (char_u *)"k7"}, | |
1004 {K_K8, (char_u *)"k8"}, | |
1005 {K_K9, (char_u *)"k9"}, | |
1006 | |
1007 {'<', (char_u *)"lt"}, | |
1008 | |
1009 {K_MOUSE, (char_u *)"Mouse"}, | |
3273 | 1010 #ifdef FEAT_MOUSE_NET |
7 | 1011 {K_NETTERM_MOUSE, (char_u *)"NetMouse"}, |
3273 | 1012 #endif |
1013 #ifdef FEAT_MOUSE_DEC | |
7 | 1014 {K_DEC_MOUSE, (char_u *)"DecMouse"}, |
3273 | 1015 #endif |
1016 #ifdef FEAT_MOUSE_JSB | |
7 | 1017 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"}, |
3273 | 1018 #endif |
1019 #ifdef FEAT_MOUSE_PTERM | |
7 | 1020 {K_PTERM_MOUSE, (char_u *)"PtermMouse"}, |
3273 | 1021 #endif |
1022 #ifdef FEAT_MOUSE_URXVT | |
1023 {K_URXVT_MOUSE, (char_u *)"UrxvtMouse"}, | |
1024 #endif | |
3746 | 1025 {K_SGR_MOUSE, (char_u *)"SgrMouse"}, |
24008
51cccde1b1aa
patch 8.2.2546: typo in mouse key name
Bram Moolenaar <Bram@vim.org>
parents:
23683
diff
changeset
|
1026 {K_SGR_MOUSERELEASE, (char_u *)"SgrMouseRelease"}, |
7 | 1027 {K_LEFTMOUSE, (char_u *)"LeftMouse"}, |
1028 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"}, | |
1029 {K_LEFTDRAG, (char_u *)"LeftDrag"}, | |
1030 {K_LEFTRELEASE, (char_u *)"LeftRelease"}, | |
1031 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"}, | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12798
diff
changeset
|
1032 {K_MOUSEMOVE, (char_u *)"MouseMove"}, |
7 | 1033 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"}, |
1034 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"}, | |
1035 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"}, | |
1036 {K_RIGHTMOUSE, (char_u *)"RightMouse"}, | |
1037 {K_RIGHTDRAG, (char_u *)"RightDrag"}, | |
1038 {K_RIGHTRELEASE, (char_u *)"RightRelease"}, | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2363
diff
changeset
|
1039 {K_MOUSEDOWN, (char_u *)"ScrollWheelUp"}, |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2363
diff
changeset
|
1040 {K_MOUSEUP, (char_u *)"ScrollWheelDown"}, |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2363
diff
changeset
|
1041 {K_MOUSELEFT, (char_u *)"ScrollWheelRight"}, |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2363
diff
changeset
|
1042 {K_MOUSERIGHT, (char_u *)"ScrollWheelLeft"}, |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1043 {K_MOUSEDOWN, (char_u *)"MouseDown"}, // OBSOLETE: Use |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1044 {K_MOUSEUP, (char_u *)"MouseUp"}, // ScrollWheelXXX instead |
7 | 1045 {K_X1MOUSE, (char_u *)"X1Mouse"}, |
1046 {K_X1DRAG, (char_u *)"X1Drag"}, | |
1047 {K_X1RELEASE, (char_u *)"X1Release"}, | |
1048 {K_X2MOUSE, (char_u *)"X2Mouse"}, | |
1049 {K_X2DRAG, (char_u *)"X2Drag"}, | |
1050 {K_X2RELEASE, (char_u *)"X2Release"}, | |
1051 {K_DROP, (char_u *)"Drop"}, | |
1052 {K_ZERO, (char_u *)"Nul"}, | |
1053 #ifdef FEAT_EVAL | |
1054 {K_SNR, (char_u *)"SNR"}, | |
1055 #endif | |
1056 {K_PLUG, (char_u *)"Plug"}, | |
6245 | 1057 {K_CURSORHOLD, (char_u *)"CursorHold"}, |
16594
6f52e82d9d4e
patch 8.1.1300: in a terminal 'ballooneval' does not work right away
Bram Moolenaar <Bram@vim.org>
parents:
16511
diff
changeset
|
1058 {K_IGNORE, (char_u *)"Ignore"}, |
22862
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22732
diff
changeset
|
1059 {K_COMMAND, (char_u *)"Cmd"}, |
27140
a9eeb18e749c
patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
1060 {K_SCRIPT_COMMAND, (char_u *)"ScriptCmd"}, |
23683
c6b9df4c442d
patch 8.2.2383: focus escape sequences are not named
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1061 {K_FOCUSGAINED, (char_u *)"FocusGained"}, |
c6b9df4c442d
patch 8.2.2383: focus escape sequences are not named
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1062 {K_FOCUSLOST, (char_u *)"FocusLost"}, |
7 | 1063 {0, NULL} |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1064 // NOTE: When adding a long name update MAX_KEY_NAME_LEN. |
7 | 1065 }; |
1066 | |
24768
7334bf933510
patch 8.2.2922: computing array length is done in various ways
Bram Moolenaar <Bram@vim.org>
parents:
24375
diff
changeset
|
1067 #define KEY_NAMES_TABLE_LEN ARRAY_LENGTH(key_names_table) |
7 | 1068 |
1069 /* | |
1070 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given | |
1071 * modifier name ('S' for Shift, 'C' for Ctrl etc). | |
1072 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
1073 static int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1074 name_to_mod_mask(int c) |
7 | 1075 { |
1076 int i; | |
1077 | |
1078 c = TOUPPER_ASC(c); | |
1079 for (i = 0; mod_mask_table[i].mod_mask != 0; i++) | |
1080 if (c == mod_mask_table[i].name) | |
1081 return mod_mask_table[i].mod_flag; | |
1082 return 0; | |
1083 } | |
1084 | |
1085 /* | |
1086 * Check if if there is a special key code for "key" that includes the | |
1087 * modifiers specified. | |
1088 */ | |
1089 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1090 simplify_key(int key, int *modifiers) |
7 | 1091 { |
1092 int i; | |
1093 int key0; | |
1094 int key1; | |
1095 | |
1096 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT)) | |
1097 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1098 // TAB is a special case |
7 | 1099 if (key == TAB && (*modifiers & MOD_MASK_SHIFT)) |
1100 { | |
1101 *modifiers &= ~MOD_MASK_SHIFT; | |
1102 return K_S_TAB; | |
1103 } | |
1104 key0 = KEY2TERMCAP0(key); | |
1105 key1 = KEY2TERMCAP1(key); | |
1106 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE) | |
1107 if (key0 == modifier_keys_table[i + 3] | |
1108 && key1 == modifier_keys_table[i + 4] | |
1109 && (*modifiers & modifier_keys_table[i])) | |
1110 { | |
1111 *modifiers &= ~modifier_keys_table[i]; | |
1112 return TERMCAP2KEY(modifier_keys_table[i + 1], | |
1113 modifier_keys_table[i + 2]); | |
1114 } | |
1115 } | |
1116 return key; | |
1117 } | |
1118 | |
1119 /* | |
180 | 1120 * Change <xHome> to <Home>, <xUp> to <Up>, etc. |
1121 */ | |
1122 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1123 handle_x_keys(int key) |
180 | 1124 { |
1125 switch (key) | |
1126 { | |
1127 case K_XUP: return K_UP; | |
1128 case K_XDOWN: return K_DOWN; | |
1129 case K_XLEFT: return K_LEFT; | |
1130 case K_XRIGHT: return K_RIGHT; | |
1131 case K_XHOME: return K_HOME; | |
230 | 1132 case K_ZHOME: return K_HOME; |
180 | 1133 case K_XEND: return K_END; |
230 | 1134 case K_ZEND: return K_END; |
180 | 1135 case K_XF1: return K_F1; |
1136 case K_XF2: return K_F2; | |
1137 case K_XF3: return K_F3; | |
1138 case K_XF4: return K_F4; | |
1139 case K_S_XF1: return K_S_F1; | |
1140 case K_S_XF2: return K_S_F2; | |
1141 case K_S_XF3: return K_S_F3; | |
1142 case K_S_XF4: return K_S_F4; | |
1143 } | |
1144 return key; | |
1145 } | |
1146 | |
1147 /* | |
7 | 1148 * Return a string which contains the name of the given key when the given |
1149 * modifiers are down. | |
1150 */ | |
1151 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1152 get_special_key_name(int c, int modifiers) |
7 | 1153 { |
1154 static char_u string[MAX_KEY_NAME_LEN + 1]; | |
1155 | |
1156 int i, idx; | |
1157 int table_idx; | |
1158 char_u *s; | |
1159 | |
1160 string[0] = '<'; | |
1161 idx = 1; | |
1162 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1163 // Key that stands for a normal character. |
7 | 1164 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY) |
1165 c = KEY2TERMCAP1(c); | |
1166 | |
1167 /* | |
1168 * Translate shifted special keys into unshifted keys and set modifier. | |
1169 * Same for CTRL and ALT modifiers. | |
1170 */ | |
1171 if (IS_SPECIAL(c)) | |
1172 { | |
1173 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE) | |
1174 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1] | |
1175 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2]) | |
1176 { | |
1177 modifiers |= modifier_keys_table[i]; | |
1178 c = TERMCAP2KEY(modifier_keys_table[i + 3], | |
1179 modifier_keys_table[i + 4]); | |
1180 break; | |
1181 } | |
1182 } | |
1183 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1184 // try to find the key in the special key table |
7 | 1185 table_idx = find_special_key_in_table(c); |
1186 | |
1187 /* | |
1188 * When not a known special key, and not a printable character, try to | |
1189 * extract modifiers. | |
1190 */ | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1191 if (c > 0 && (*mb_char2len)(c) == 1) |
7 | 1192 { |
1193 if (table_idx < 0 | |
1194 && (!vim_isprintc(c) || (c & 0x7f) == ' ') | |
1195 && (c & 0x80)) | |
1196 { | |
1197 c &= 0x7f; | |
1198 modifiers |= MOD_MASK_ALT; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1199 // try again, to find the un-alted key in the special key table |
7 | 1200 table_idx = find_special_key_in_table(c); |
1201 } | |
1202 if (table_idx < 0 && !vim_isprintc(c) && c < ' ') | |
1203 { | |
1204 c += '@'; | |
1205 modifiers |= MOD_MASK_CTRL; | |
1206 } | |
1207 } | |
1208 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1209 // translate the modifier into a string |
7 | 1210 for (i = 0; mod_mask_table[i].name != 'A'; i++) |
1211 if ((modifiers & mod_mask_table[i].mod_mask) | |
1212 == mod_mask_table[i].mod_flag) | |
1213 { | |
1214 string[idx++] = mod_mask_table[i].name; | |
1215 string[idx++] = (char_u)'-'; | |
1216 } | |
1217 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1218 if (table_idx < 0) // unknown special key, may output t_xx |
7 | 1219 { |
1220 if (IS_SPECIAL(c)) | |
1221 { | |
1222 string[idx++] = 't'; | |
1223 string[idx++] = '_'; | |
1224 string[idx++] = KEY2TERMCAP0(c); | |
1225 string[idx++] = KEY2TERMCAP1(c); | |
1226 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1227 // Not a special key, only modifiers, output directly |
7 | 1228 else |
1229 { | |
1230 if (has_mbyte && (*mb_char2len)(c) > 1) | |
1231 idx += (*mb_char2bytes)(c, string + idx); | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1232 else if (vim_isprintc(c)) |
7 | 1233 string[idx++] = c; |
1234 else | |
1235 { | |
1236 s = transchar(c); | |
1237 while (*s) | |
1238 string[idx++] = *s++; | |
1239 } | |
1240 } | |
1241 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1242 else // use name of special key |
7 | 1243 { |
10644
2025bec9175f
patch 8.0.0212: buffer for key name may be too small
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
1244 size_t len = STRLEN(key_names_table[table_idx].name); |
2025bec9175f
patch 8.0.0212: buffer for key name may be too small
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
1245 |
2025bec9175f
patch 8.0.0212: buffer for key name may be too small
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
1246 if (len + idx + 2 <= MAX_KEY_NAME_LEN) |
2025bec9175f
patch 8.0.0212: buffer for key name may be too small
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
1247 { |
2025bec9175f
patch 8.0.0212: buffer for key name may be too small
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
1248 STRCPY(string + idx, key_names_table[table_idx].name); |
2025bec9175f
patch 8.0.0212: buffer for key name may be too small
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
1249 idx += (int)len; |
2025bec9175f
patch 8.0.0212: buffer for key name may be too small
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
1250 } |
7 | 1251 } |
1252 string[idx++] = '>'; | |
1253 string[idx] = NUL; | |
1254 return string; | |
1255 } | |
1256 | |
1257 /* | |
1258 * Try translating a <> name at (*srcp)[] to dst[]. | |
1259 * Return the number of characters added to dst[], zero for no match. | |
1260 * If there is a match, srcp is advanced to after the <> name. | |
1261 * dst[] must be big enough to hold the result (up to six characters)! | |
1262 */ | |
1263 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1264 trans_special( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1265 char_u **srcp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1266 char_u *dst, |
20603
c2570baa2e4c
patch 8.2.0855: GUI tests fail because the test doesn't use a modifier
Bram Moolenaar <Bram@vim.org>
parents:
20392
diff
changeset
|
1267 int flags, // FSK_ values |
c2570baa2e4c
patch 8.2.0855: GUI tests fail because the test doesn't use a modifier
Bram Moolenaar <Bram@vim.org>
parents:
20392
diff
changeset
|
1268 int *did_simplify) // FSK_SIMPLIFY and found <C-H> or <A-x> |
7 | 1269 { |
1270 int modifiers = 0; | |
1271 int key; | |
1272 | |
20603
c2570baa2e4c
patch 8.2.0855: GUI tests fail because the test doesn't use a modifier
Bram Moolenaar <Bram@vim.org>
parents:
20392
diff
changeset
|
1273 key = find_special_key(srcp, &modifiers, flags, did_simplify); |
7 | 1274 if (key == 0) |
1275 return 0; | |
1276 | |
20603
c2570baa2e4c
patch 8.2.0855: GUI tests fail because the test doesn't use a modifier
Bram Moolenaar <Bram@vim.org>
parents:
20392
diff
changeset
|
1277 return special_to_buf(key, modifiers, flags & FSK_KEYCODE, dst); |
16880
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
1278 } |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
1279 |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
1280 /* |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
1281 * Put the character sequence for "key" with "modifiers" into "dst" and return |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
1282 * the resulting length. |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
1283 * When "keycode" is TRUE prefer key code, e.g. K_DEL instead of DEL. |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
1284 * The sequence is not NUL terminated. |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
1285 * This is how characters in a string are encoded. |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
1286 */ |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
1287 int |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
1288 special_to_buf(int key, int modifiers, int keycode, char_u *dst) |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
1289 { |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
1290 int dlen = 0; |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
1291 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1292 // Put the appropriate modifier in a string |
7 | 1293 if (modifiers != 0) |
1294 { | |
1295 dst[dlen++] = K_SPECIAL; | |
1296 dst[dlen++] = KS_MODIFIER; | |
1297 dst[dlen++] = modifiers; | |
1298 } | |
1299 | |
1300 if (IS_SPECIAL(key)) | |
1301 { | |
1302 dst[dlen++] = K_SPECIAL; | |
1303 dst[dlen++] = KEY2TERMCAP0(key); | |
1304 dst[dlen++] = KEY2TERMCAP1(key); | |
1305 } | |
1306 else if (has_mbyte && !keycode) | |
1307 dlen += (*mb_char2bytes)(key, dst + dlen); | |
1308 else if (keycode) | |
1309 dlen = (int)(add_char2buf(key, dst + dlen) - dst); | |
1310 else | |
1311 dst[dlen++] = key; | |
1312 | |
1313 return dlen; | |
1314 } | |
1315 | |
1316 /* | |
1317 * Try translating a <> name at (*srcp)[], return the key and modifiers. | |
1318 * srcp is advanced to after the <> name. | |
1319 * returns 0 if there is no match. | |
1320 */ | |
1321 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1322 find_special_key( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1323 char_u **srcp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1324 int *modp, |
20603
c2570baa2e4c
patch 8.2.0855: GUI tests fail because the test doesn't use a modifier
Bram Moolenaar <Bram@vim.org>
parents:
20392
diff
changeset
|
1325 int flags, // FSK_ values |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1326 int *did_simplify) // found <C-H> or <A-x> |
7 | 1327 { |
1328 char_u *last_dash; | |
1329 char_u *end_of_name; | |
1330 char_u *src; | |
1331 char_u *bp; | |
20603
c2570baa2e4c
patch 8.2.0855: GUI tests fail because the test doesn't use a modifier
Bram Moolenaar <Bram@vim.org>
parents:
20392
diff
changeset
|
1332 int in_string = flags & FSK_IN_STRING; |
7 | 1333 int modifiers; |
1334 int bit; | |
1335 int key; | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
1336 uvarnumber_T n; |
3024 | 1337 int l; |
7 | 1338 |
1339 src = *srcp; | |
20627
8bce783af0cb
patch 8.2.0867: using {xxx} for encoding a modifier is not nice
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
1340 if (src[0] != '<') |
7 | 1341 return 0; |
20627
8bce783af0cb
patch 8.2.0867: using {xxx} for encoding a modifier is not nice
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
1342 if (src[1] == '*') // <*xxx>: do not simplify |
8bce783af0cb
patch 8.2.0867: using {xxx} for encoding a modifier is not nice
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
1343 ++src; |
7 | 1344 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1345 // Find end of modifier list |
7 | 1346 last_dash = src; |
24375
fe4b6fc7149c
patch 8.2.2728: special key names don't work if 'isident' is cleared
Bram Moolenaar <Bram@vim.org>
parents:
24188
diff
changeset
|
1347 for (bp = src + 1; *bp == '-' || vim_isNormalIDc(*bp); bp++) |
7 | 1348 { |
1349 if (*bp == '-') | |
1350 { | |
1351 last_dash = bp; | |
3024 | 1352 if (bp[1] != NUL) |
1353 { | |
1354 if (has_mbyte) | |
1355 l = mb_ptr2len(bp + 1); | |
1356 else | |
1357 l = 1; | |
17720
844f470532b6
patch 8.1.1857: cannot use modifier with multi-byte character
Bram Moolenaar <Bram@vim.org>
parents:
17708
diff
changeset
|
1358 // Anything accepted, like <C-?>. |
844f470532b6
patch 8.1.1857: cannot use modifier with multi-byte character
Bram Moolenaar <Bram@vim.org>
parents:
17708
diff
changeset
|
1359 // <C-"> or <M-"> are not special in strings as " is |
844f470532b6
patch 8.1.1857: cannot use modifier with multi-byte character
Bram Moolenaar <Bram@vim.org>
parents:
17708
diff
changeset
|
1360 // the string delimiter. With a backslash it works: <M-\"> |
20627
8bce783af0cb
patch 8.2.0867: using {xxx} for encoding a modifier is not nice
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
1361 if (!(in_string && bp[1] == '"') && bp[l + 1] == '>') |
9373
b88c573d8aa4
commit https://github.com/vim/vim/commit/1d90a5a5af84250e226f8a9121e771f7b72aa894
Christian Brabandt <cb@256bit.org>
parents:
9347
diff
changeset
|
1362 bp += l; |
9869
989d44d35a66
commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
1363 else if (in_string && bp[1] == '\\' && bp[2] == '"' |
20627
8bce783af0cb
patch 8.2.0867: using {xxx} for encoding a modifier is not nice
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
1364 && bp[3] == '>') |
9869
989d44d35a66
commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
1365 bp += 2; |
3024 | 1366 } |
7 | 1367 } |
1368 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3]) | |
20627
8bce783af0cb
patch 8.2.0867: using {xxx} for encoding a modifier is not nice
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
1369 bp += 3; // skip t_xx, xx may be '-' or '>' |
3026 | 1370 else if (STRNICMP(bp, "char-", 5) == 0) |
1371 { | |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
1372 vim_str2nr(bp + 5, NULL, &l, STR2NR_ALL, NULL, NULL, 0, TRUE); |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
1373 if (l == 0) |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
1374 { |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
1375 emsg(_(e_invalid_argument)); |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
1376 return 0; |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
1377 } |
3026 | 1378 bp += l + 5; |
1379 break; | |
1380 } | |
7 | 1381 } |
1382 | |
20627
8bce783af0cb
patch 8.2.0867: using {xxx} for encoding a modifier is not nice
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
1383 if (*bp == '>') // found matching '>' |
7 | 1384 { |
1385 end_of_name = bp + 1; | |
1386 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1387 // Which modifiers are given? |
7 | 1388 modifiers = 0x0; |
1389 for (bp = src + 1; bp < last_dash; bp++) | |
1390 { | |
1391 if (*bp != '-') | |
1392 { | |
1393 bit = name_to_mod_mask(*bp); | |
1394 if (bit == 0x0) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1395 break; // Illegal modifier name |
7 | 1396 modifiers |= bit; |
1397 } | |
1398 } | |
1399 | |
1400 /* | |
1401 * Legal modifier name. | |
1402 */ | |
1403 if (bp >= last_dash) | |
1404 { | |
3024 | 1405 if (STRNICMP(last_dash + 1, "char-", 5) == 0 |
1406 && VIM_ISDIGIT(last_dash[6])) | |
1407 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1408 // <Char-123> or <Char-033> or <Char-0x33> |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1409 vim_str2nr(last_dash + 6, NULL, &l, STR2NR_ALL, NULL, |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1410 &n, 0, TRUE); |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
1411 if (l == 0) |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
1412 { |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
1413 emsg(_(e_invalid_argument)); |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
1414 return 0; |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
1415 } |
3026 | 1416 key = (int)n; |
3024 | 1417 } |
7 | 1418 else |
180 | 1419 { |
9869
989d44d35a66
commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
1420 int off = 1; |
989d44d35a66
commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
1421 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1422 // Modifier with single letter, or special key name. |
9869
989d44d35a66
commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
1423 if (in_string && last_dash[1] == '\\' && last_dash[2] == '"') |
989d44d35a66
commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
1424 off = 2; |
3026 | 1425 if (has_mbyte) |
9869
989d44d35a66
commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
1426 l = mb_ptr2len(last_dash + off); |
3026 | 1427 else |
1428 l = 1; | |
20627
8bce783af0cb
patch 8.2.0867: using {xxx} for encoding a modifier is not nice
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
1429 if (modifiers != 0 && last_dash[l + off] == '>') |
9869
989d44d35a66
commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
1430 key = PTR2CHAR(last_dash + off); |
3026 | 1431 else |
1432 { | |
9869
989d44d35a66
commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
1433 key = get_special_key_code(last_dash + off); |
20603
c2570baa2e4c
patch 8.2.0855: GUI tests fail because the test doesn't use a modifier
Bram Moolenaar <Bram@vim.org>
parents:
20392
diff
changeset
|
1434 if (!(flags & FSK_KEEP_X_KEY)) |
3026 | 1435 key = handle_x_keys(key); |
1436 } | |
180 | 1437 } |
7 | 1438 |
1439 /* | |
1440 * get_special_key_code() may return NUL for invalid | |
1441 * special key name. | |
1442 */ | |
1443 if (key != NUL) | |
1444 { | |
1445 /* | |
1446 * Only use a modifier when there is no special key code that | |
1447 * includes the modifier. | |
1448 */ | |
1449 key = simplify_key(key, &modifiers); | |
1450 | |
20603
c2570baa2e4c
patch 8.2.0855: GUI tests fail because the test doesn't use a modifier
Bram Moolenaar <Bram@vim.org>
parents:
20392
diff
changeset
|
1451 if (!(flags & FSK_KEYCODE)) |
7 | 1452 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1453 // don't want keycode, use single byte code |
7 | 1454 if (key == K_BS) |
1455 key = BS; | |
1456 else if (key == K_DEL || key == K_KDEL) | |
1457 key = DEL; | |
1458 } | |
1459 | |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1460 // Normal Key with modifier: Try to make a single byte code. |
7 | 1461 if (!IS_SPECIAL(key)) |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1462 key = extract_modifiers(key, &modifiers, |
20603
c2570baa2e4c
patch 8.2.0855: GUI tests fail because the test doesn't use a modifier
Bram Moolenaar <Bram@vim.org>
parents:
20392
diff
changeset
|
1463 flags & FSK_SIMPLIFY, did_simplify); |
7 | 1464 |
1465 *modp = modifiers; | |
1466 *srcp = end_of_name; | |
1467 return key; | |
1468 } | |
1469 } | |
1470 } | |
1471 return 0; | |
1472 } | |
1473 | |
20935
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
1474 |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
1475 /* |
22522
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1476 * Some keys are used with Ctrl without Shift and are still expected to be |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1477 * mapped as if Shift was pressed: |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1478 * CTRL-2 is CTRL-@ |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1479 * CTRL-6 is CTRL-^ |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1480 * CTRL-- is CTRL-_ |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1481 * Also, <C-H> and <C-h> mean the same thing, always use "H". |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1482 * Returns the possibly adjusted key. |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1483 */ |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1484 int |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1485 may_adjust_key_for_ctrl(int modifiers, int key) |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1486 { |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1487 if (modifiers & MOD_MASK_CTRL) |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1488 { |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1489 if (ASCII_ISALPHA(key)) |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1490 return TOUPPER_ASC(key); |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1491 if (key == '2') |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1492 return '@'; |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1493 if (key == '6') |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1494 return '^'; |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1495 if (key == '-') |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1496 return '_'; |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1497 } |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1498 return key; |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1499 } |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1500 |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22407
diff
changeset
|
1501 /* |
20935
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
1502 * Some keys already have Shift included, pass them as normal keys. |
22526
6325ef9143bc
patch 8.2.1811: mapping Ctrl-key does not work for '{', '}' and '|'
Bram Moolenaar <Bram@vim.org>
parents:
22522
diff
changeset
|
1503 * When Ctrl is also used <C-H> and <C-S-H> are different, but <C-S-{> should |
6325ef9143bc
patch 8.2.1811: mapping Ctrl-key does not work for '{', '}' and '|'
Bram Moolenaar <Bram@vim.org>
parents:
22522
diff
changeset
|
1504 * be <C-{>. Same for <C-S-}> and <C-S-|>. |
20935
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
1505 * Also for <A-S-a> and <M-S-a>. |
22407
c19acd92ee83
patch 8.2.1752: GTK GUI: cannot map alt-? with <A-?>
Bram Moolenaar <Bram@vim.org>
parents:
21745
diff
changeset
|
1506 * This includes all printable ASCII characters except numbers and a-z. |
20935
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
1507 */ |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
1508 int |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
1509 may_remove_shift_modifier(int modifiers, int key) |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
1510 { |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
1511 if ((modifiers == MOD_MASK_SHIFT |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
1512 || modifiers == (MOD_MASK_SHIFT | MOD_MASK_ALT) |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
1513 || modifiers == (MOD_MASK_SHIFT | MOD_MASK_META)) |
22407
c19acd92ee83
patch 8.2.1752: GTK GUI: cannot map alt-? with <A-?>
Bram Moolenaar <Bram@vim.org>
parents:
21745
diff
changeset
|
1514 && ((key >= '!' && key <= '/') |
c19acd92ee83
patch 8.2.1752: GTK GUI: cannot map alt-? with <A-?>
Bram Moolenaar <Bram@vim.org>
parents:
21745
diff
changeset
|
1515 || (key >= ':' && key <= 'Z') |
c19acd92ee83
patch 8.2.1752: GTK GUI: cannot map alt-? with <A-?>
Bram Moolenaar <Bram@vim.org>
parents:
21745
diff
changeset
|
1516 || (key >= '[' && key <= '`') |
20935
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
1517 || (key >= '{' && key <= '~'))) |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
1518 return modifiers & ~MOD_MASK_SHIFT; |
22526
6325ef9143bc
patch 8.2.1811: mapping Ctrl-key does not work for '{', '}' and '|'
Bram Moolenaar <Bram@vim.org>
parents:
22522
diff
changeset
|
1519 |
6325ef9143bc
patch 8.2.1811: mapping Ctrl-key does not work for '{', '}' and '|'
Bram Moolenaar <Bram@vim.org>
parents:
22522
diff
changeset
|
1520 if (modifiers == (MOD_MASK_SHIFT | MOD_MASK_CTRL) |
6325ef9143bc
patch 8.2.1811: mapping Ctrl-key does not work for '{', '}' and '|'
Bram Moolenaar <Bram@vim.org>
parents:
22522
diff
changeset
|
1521 && (key == '{' || key == '}' || key == '|')) |
6325ef9143bc
patch 8.2.1811: mapping Ctrl-key does not work for '{', '}' and '|'
Bram Moolenaar <Bram@vim.org>
parents:
22522
diff
changeset
|
1522 return modifiers & ~MOD_MASK_SHIFT; |
6325ef9143bc
patch 8.2.1811: mapping Ctrl-key does not work for '{', '}' and '|'
Bram Moolenaar <Bram@vim.org>
parents:
22522
diff
changeset
|
1523 |
20935
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
1524 return modifiers; |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
1525 } |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
1526 |
7 | 1527 /* |
1528 * Try to include modifiers in the key. | |
1529 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc. | |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1530 * When "simplify" is FALSE don't do Ctrl and Alt. |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1531 * When "simplify" is TRUE and Ctrl or Alt is removed from modifiers set |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1532 * "did_simplify" when it's not NULL. |
7 | 1533 */ |
1534 int | |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1535 extract_modifiers(int key, int *modp, int simplify, int *did_simplify) |
7 | 1536 { |
1537 int modifiers = *modp; | |
1538 | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12672
diff
changeset
|
1539 #ifdef MACOS_X |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1540 // Command-key really special, no fancynest |
7 | 1541 if (!(modifiers & MOD_MASK_CMD)) |
1542 #endif | |
1543 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key)) | |
1544 { | |
1545 key = TOUPPER_ASC(key); | |
20927
9328feafbbf5
patch 8.2.1015: popup filter gets key with modifier prepended
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1546 // With <C-S-a> we keep the shift modifier. |
9328feafbbf5
patch 8.2.1015: popup filter gets key with modifier prepended
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1547 // With <S-a>, <A-S-a> and <S-A> we don't keep the shift modifier. |
9328feafbbf5
patch 8.2.1015: popup filter gets key with modifier prepended
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1548 if (simplify || modifiers == MOD_MASK_SHIFT |
9328feafbbf5
patch 8.2.1015: popup filter gets key with modifier prepended
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1549 || modifiers == (MOD_MASK_SHIFT | MOD_MASK_ALT) |
9328feafbbf5
patch 8.2.1015: popup filter gets key with modifier prepended
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1550 || modifiers == (MOD_MASK_SHIFT | MOD_MASK_META)) |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1551 modifiers &= ~MOD_MASK_SHIFT; |
7 | 1552 } |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1553 |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1554 // <C-H> and <C-h> mean the same thing, always use "H" |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1555 if ((modifiers & MOD_MASK_CTRL) && ASCII_ISALPHA(key)) |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1556 key = TOUPPER_ASC(key); |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1557 |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1558 if (simplify && (modifiers & MOD_MASK_CTRL) |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27181
diff
changeset
|
1559 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))) |
7 | 1560 { |
1561 key = Ctrl_chr(key); | |
1562 modifiers &= ~MOD_MASK_CTRL; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1563 // <C-@> is <Nul> |
28610
ce202d2984a0
patch 8.2.4829: a key may be simplified to NUL
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
1564 if (key == NUL) |
7 | 1565 key = K_ZERO; |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1566 if (did_simplify != NULL) |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1567 *did_simplify = TRUE; |
7 | 1568 } |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1569 |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12672
diff
changeset
|
1570 #ifdef MACOS_X |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1571 // Command-key really special, no fancynest |
7 | 1572 if (!(modifiers & MOD_MASK_CMD)) |
1573 #endif | |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1574 if (simplify && (modifiers & MOD_MASK_ALT) && key < 0x80 |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1575 && !enc_dbcs) // avoid creating a lead byte |
7 | 1576 { |
1577 key |= 0x80; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1578 modifiers &= ~MOD_MASK_ALT; // remove the META modifier |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1579 if (did_simplify != NULL) |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1580 *did_simplify = TRUE; |
7 | 1581 } |
1582 | |
1583 *modp = modifiers; | |
1584 return key; | |
1585 } | |
1586 | |
1587 /* | |
1588 * Try to find key "c" in the special key table. | |
1589 * Return the index when found, -1 when not found. | |
1590 */ | |
1591 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1592 find_special_key_in_table(int c) |
7 | 1593 { |
1594 int i; | |
1595 | |
1596 for (i = 0; key_names_table[i].name != NULL; i++) | |
1597 if (c == key_names_table[i].key) | |
1598 break; | |
1599 if (key_names_table[i].name == NULL) | |
1600 i = -1; | |
1601 return i; | |
1602 } | |
1603 | |
1604 /* | |
1605 * Find the special key with the given name (the given string does not have to | |
1606 * end with NUL, the name is assumed to end before the first non-idchar). | |
1607 * If the name starts with "t_" the next two characters are interpreted as a | |
1608 * termcap name. | |
1609 * Return the key code, or 0 if not found. | |
1610 */ | |
1611 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1612 get_special_key_code(char_u *name) |
7 | 1613 { |
1614 char_u *table_name; | |
1615 char_u string[3]; | |
1616 int i, j; | |
1617 | |
1618 /* | |
1619 * If it's <t_xx> we get the code for xx from the termcap | |
1620 */ | |
1621 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL) | |
1622 { | |
1623 string[0] = name[2]; | |
1624 string[1] = name[3]; | |
1625 string[2] = NUL; | |
1626 if (add_termcap_entry(string, FALSE) == OK) | |
1627 return TERMCAP2KEY(name[2], name[3]); | |
1628 } | |
1629 else | |
1630 for (i = 0; key_names_table[i].name != NULL; i++) | |
1631 { | |
1632 table_name = key_names_table[i].name; | |
24375
fe4b6fc7149c
patch 8.2.2728: special key names don't work if 'isident' is cleared
Bram Moolenaar <Bram@vim.org>
parents:
24188
diff
changeset
|
1633 for (j = 0; vim_isNormalIDc(name[j]) && table_name[j] != NUL; j++) |
7 | 1634 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j])) |
1635 break; | |
24375
fe4b6fc7149c
patch 8.2.2728: special key names don't work if 'isident' is cleared
Bram Moolenaar <Bram@vim.org>
parents:
24188
diff
changeset
|
1636 if (!vim_isNormalIDc(name[j]) && table_name[j] == NUL) |
7 | 1637 return key_names_table[i].key; |
1638 } | |
1639 return 0; | |
1640 } | |
1641 | |
1642 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1643 get_key_name(int i) |
7 | 1644 { |
1881 | 1645 if (i >= (int)KEY_NAMES_TABLE_LEN) |
7 | 1646 return NULL; |
1647 return key_names_table[i].name; | |
1648 } | |
1649 | |
1650 /* | |
1651 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC. | |
1652 */ | |
1653 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1654 get_fileformat(buf_T *buf) |
7 | 1655 { |
1656 int c = *buf->b_p_ff; | |
1657 | |
1658 if (buf->b_p_bin || c == 'u') | |
1659 return EOL_UNIX; | |
1660 if (c == 'm') | |
1661 return EOL_MAC; | |
1662 return EOL_DOS; | |
1663 } | |
1664 | |
1665 /* | |
1666 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val" | |
1667 * argument. | |
1668 */ | |
1669 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1670 get_fileformat_force( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1671 buf_T *buf, |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1672 exarg_T *eap) // can be NULL! |
7 | 1673 { |
1674 int c; | |
1675 | |
1676 if (eap != NULL && eap->force_ff != 0) | |
13575
4df23d9bad47
patch 8.0.1660: the terminal API "drop" command doesn't support options
Christian Brabandt <cb@256bit.org>
parents:
13493
diff
changeset
|
1677 c = eap->force_ff; |
7 | 1678 else |
1679 { | |
1680 if ((eap != NULL && eap->force_bin != 0) | |
1681 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin) | |
1682 return EOL_UNIX; | |
1683 c = *buf->b_p_ff; | |
1684 } | |
1685 if (c == 'u') | |
1686 return EOL_UNIX; | |
1687 if (c == 'm') | |
1688 return EOL_MAC; | |
1689 return EOL_DOS; | |
1690 } | |
1691 | |
1692 /* | |
1693 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC. | |
1694 * Sets both 'textmode' and 'fileformat'. | |
1695 * Note: Does _not_ set global value of 'textmode'! | |
1696 */ | |
1697 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1698 set_fileformat( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1699 int t, |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1700 int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL |
7 | 1701 { |
1702 char *p = NULL; | |
1703 | |
1704 switch (t) | |
1705 { | |
1706 case EOL_DOS: | |
1707 p = FF_DOS; | |
1708 curbuf->b_p_tx = TRUE; | |
1709 break; | |
1710 case EOL_UNIX: | |
1711 p = FF_UNIX; | |
1712 curbuf->b_p_tx = FALSE; | |
1713 break; | |
1714 case EOL_MAC: | |
1715 p = FF_MAC; | |
1716 curbuf->b_p_tx = FALSE; | |
1717 break; | |
1718 } | |
1719 if (p != NULL) | |
1720 set_string_option_direct((char_u *)"ff", -1, (char_u *)p, | |
694 | 1721 OPT_FREE | opt_flags, 0); |
1722 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1723 // This may cause the buffer to become (un)modified. |
7 | 1724 check_status(curbuf); |
673 | 1725 redraw_tabline = TRUE; |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1726 need_maketitle = TRUE; // set window title later |
7 | 1727 } |
1728 | |
1729 /* | |
1730 * Return the default fileformat from 'fileformats'. | |
1731 */ | |
1732 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1733 default_fileformat(void) |
7 | 1734 { |
1735 switch (*p_ffs) | |
1736 { | |
1737 case 'm': return EOL_MAC; | |
1738 case 'd': return EOL_DOS; | |
1739 } | |
1740 return EOL_UNIX; | |
1741 } | |
1742 | |
1743 /* | |
1744 * Call shell. Calls mch_call_shell, with 'shellxquote' added. | |
1745 */ | |
1746 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1747 call_shell(char_u *cmd, int opt) |
7 | 1748 { |
1749 char_u *ncmd; | |
1750 int retval; | |
170 | 1751 #ifdef FEAT_PROFILE |
1752 proftime_T wait_time; | |
1753 #endif | |
7 | 1754 |
1755 if (p_verbose > 3) | |
1756 { | |
293 | 1757 verbose_enter(); |
20380
79c870b68cf3
patch 8.2.0745: crash on exit when not all popups are closed
Bram Moolenaar <Bram@vim.org>
parents:
20033
diff
changeset
|
1758 smsg(_("Calling shell to execute: \"%s\""), cmd == NULL ? p_sh : cmd); |
7 | 1759 out_char('\n'); |
1760 cursor_on(); | |
293 | 1761 verbose_leave(); |
7 | 1762 } |
1763 | |
170 | 1764 #ifdef FEAT_PROFILE |
789 | 1765 if (do_profiling == PROF_YES) |
170 | 1766 prof_child_enter(&wait_time); |
1767 #endif | |
1768 | |
7 | 1769 if (*p_sh == NUL) |
1770 { | |
26602
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
1771 emsg(_(e_shell_option_is_empty)); |
7 | 1772 retval = -1; |
1773 } | |
1774 else | |
1775 { | |
1776 #ifdef FEAT_GUI_MSWIN | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1777 // Don't hide the pointer while executing a shell command. |
7 | 1778 gui_mch_mousehide(FALSE); |
1779 #endif | |
1780 #ifdef FEAT_GUI | |
1781 ++hold_gui_events; | |
1782 #endif | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1783 // The external command may update a tags file, clear cached tags. |
7 | 1784 tag_freematch(); |
1785 | |
17028
70933f7b5de4
patch 8.1.1514: MS-Windows: wrong shell command with ! in 'guioptions'
Bram Moolenaar <Bram@vim.org>
parents:
17000
diff
changeset
|
1786 if (cmd == NULL || *p_sxq == NUL) |
7 | 1787 retval = mch_call_shell(cmd, opt); |
1788 else | |
1789 { | |
3359 | 1790 char_u *ecmd = cmd; |
1791 | |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1792 if (*p_sxe != NUL && *p_sxq == '(') |
3359 | 1793 { |
1794 ecmd = vim_strsave_escaped_ext(cmd, p_sxe, '^', FALSE); | |
1795 if (ecmd == NULL) | |
1796 ecmd = cmd; | |
1797 } | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
1798 ncmd = alloc(STRLEN(ecmd) + STRLEN(p_sxq) * 2 + 1); |
7 | 1799 if (ncmd != NULL) |
1800 { | |
1801 STRCPY(ncmd, p_sxq); | |
3359 | 1802 STRCAT(ncmd, ecmd); |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1803 // When 'shellxquote' is ( append ). |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1804 // When 'shellxquote' is "( append )". |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1805 STRCAT(ncmd, *p_sxq == '(' ? (char_u *)")" |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1806 : *p_sxq == '"' && *(p_sxq+1) == '(' ? (char_u *)")\"" |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1807 : p_sxq); |
7 | 1808 retval = mch_call_shell(ncmd, opt); |
1809 vim_free(ncmd); | |
1810 } | |
1811 else | |
1812 retval = -1; | |
3359 | 1813 if (ecmd != cmd) |
1814 vim_free(ecmd); | |
7 | 1815 } |
1816 #ifdef FEAT_GUI | |
1817 --hold_gui_events; | |
1818 #endif | |
1819 /* | |
1820 * Check the window size, in case it changed while executing the | |
1821 * external command. | |
1822 */ | |
1823 shell_resized_check(); | |
1824 } | |
1825 | |
1826 #ifdef FEAT_EVAL | |
1827 set_vim_var_nr(VV_SHELL_ERROR, (long)retval); | |
170 | 1828 # ifdef FEAT_PROFILE |
789 | 1829 if (do_profiling == PROF_YES) |
170 | 1830 prof_child_exit(&wait_time); |
1831 # endif | |
7 | 1832 #endif |
1833 | |
1834 return retval; | |
1835 } | |
1836 | |
1837 /* | |
789 | 1838 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to |
1839 * NORMAL State with a condition. This function returns the real State. | |
7 | 1840 */ |
1841 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1842 get_real_state(void) |
7 | 1843 { |
1844 if (State & NORMAL) | |
1845 { | |
1846 if (VIsual_active) | |
789 | 1847 { |
1848 if (VIsual_select) | |
1849 return SELECTMODE; | |
7 | 1850 return VISUAL; |
789 | 1851 } |
5735 | 1852 else if (finish_op) |
1853 return OP_PENDING; | |
7 | 1854 } |
1855 return State; | |
1856 } | |
1857 | |
39 | 1858 /* |
1859 * Return TRUE if "p" points to just after a path separator. | |
2939 | 1860 * Takes care of multi-byte characters. |
39 | 1861 * "b" must point to the start of the file name |
1862 */ | |
1863 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1864 after_pathsep(char_u *b, char_u *p) |
39 | 1865 { |
2939 | 1866 return p > b && vim_ispathsep(p[-1]) |
39 | 1867 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0); |
1868 } | |
1869 | |
1870 /* | |
1871 * Return TRUE if file names "f1" and "f2" are in the same directory. | |
1872 * "f1" may be a short name, "f2" must be a full path. | |
1873 */ | |
1874 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1875 same_directory(char_u *f1, char_u *f2) |
39 | 1876 { |
1877 char_u ffname[MAXPATHL]; | |
1878 char_u *t1; | |
1879 char_u *t2; | |
1880 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1881 // safety check |
39 | 1882 if (f1 == NULL || f2 == NULL) |
1883 return FALSE; | |
1884 | |
1885 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE); | |
1886 t1 = gettail_sep(ffname); | |
1887 t2 = gettail_sep(f2); | |
1888 return (t1 - ffname == t2 - f2 | |
1889 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0); | |
1890 } | |
1891 | |
14220
96e4c6b26998
patch 8.1.0127: build failure when disabling the session feature
Christian Brabandt <cb@256bit.org>
parents:
13750
diff
changeset
|
1892 #if defined(FEAT_SESSION) || defined(FEAT_AUTOCHDIR) \ |
21745
35921b7fc07a
patch 8.2.1422: the Mac GUI implementation is outdated
Bram Moolenaar <Bram@vim.org>
parents:
21558
diff
changeset
|
1893 || defined(MSWIN) || defined(FEAT_GUI_GTK) \ |
15510
41fbbcea0f1b
patch 8.1.0763: nobody is using the Sun Workshop support
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1894 || defined(FEAT_NETBEANS_INTG) \ |
7 | 1895 || defined(PROTO) |
1896 /* | |
1897 * Change to a file's directory. | |
1898 * Caller must call shorten_fnames()! | |
1899 * Return OK or FAIL. | |
1900 */ | |
1901 int | |
15184
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
1902 vim_chdirfile(char_u *fname, char *trigger_autocmd) |
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
1903 { |
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
1904 char_u old_dir[MAXPATHL]; |
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
1905 char_u new_dir[MAXPATHL]; |
39 | 1906 |
15184
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
1907 if (mch_dirname(old_dir, MAXPATHL) != OK) |
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
1908 *old_dir = NUL; |
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
1909 |
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
1910 vim_strncpy(new_dir, fname, MAXPATHL - 1); |
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
1911 *gettail_sep(new_dir) = NUL; |
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
1912 |
15188
2d8c31ae1e24
patch 8.1.0604: autocommand test fails on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents:
15184
diff
changeset
|
1913 if (pathcmp((char *)old_dir, (char *)new_dir, -1) == 0) |
15184
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
1914 // nothing to do |
27511
9986f96fb1bd
patch 8.2.4283: using a variable for the return value is not needed
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
1915 return OK; |
9986f96fb1bd
patch 8.2.4283: using a variable for the return value is not needed
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
1916 |
27617
269f89efb06a
patch 8.2.4335: no autocommand event triggered before changing directory
Bram Moolenaar <Bram@vim.org>
parents:
27511
diff
changeset
|
1917 if (trigger_autocmd != NULL) |
269f89efb06a
patch 8.2.4335: no autocommand event triggered before changing directory
Bram Moolenaar <Bram@vim.org>
parents:
27511
diff
changeset
|
1918 trigger_DirChangedPre((char_u *)trigger_autocmd, new_dir); |
269f89efb06a
patch 8.2.4335: no autocommand event triggered before changing directory
Bram Moolenaar <Bram@vim.org>
parents:
27511
diff
changeset
|
1919 |
27511
9986f96fb1bd
patch 8.2.4283: using a variable for the return value is not needed
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
1920 if (mch_chdir((char *)new_dir) != 0) |
9986f96fb1bd
patch 8.2.4283: using a variable for the return value is not needed
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
1921 return FAIL; |
15184
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
1922 |
27511
9986f96fb1bd
patch 8.2.4283: using a variable for the return value is not needed
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
1923 if (trigger_autocmd != NULL) |
9986f96fb1bd
patch 8.2.4283: using a variable for the return value is not needed
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
1924 apply_autocmds(EVENT_DIRCHANGED, (char_u *)trigger_autocmd, |
15184
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
1925 new_dir, FALSE, curbuf); |
27511
9986f96fb1bd
patch 8.2.4283: using a variable for the return value is not needed
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
1926 return OK; |
7 | 1927 } |
1928 #endif | |
1929 | |
1930 #if defined(STAT_IGNORES_SLASH) || defined(PROTO) | |
1931 /* | |
1932 * Check if "name" ends in a slash and is not a directory. | |
1933 * Used for systems where stat() ignores a trailing slash on a file name. | |
1934 * The Vim code assumes a trailing slash is only ignored for a directory. | |
1935 */ | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
1936 static int |
11146
6ce90f33373f
patch 8.0.0460: can't build on HPUX
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1937 illegal_slash(const char *name) |
7 | 1938 { |
1939 if (name[0] == NUL) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1940 return FALSE; // no file name is not illegal |
7 | 1941 if (name[strlen(name) - 1] != '/') |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1942 return FALSE; // no trailing slash |
7 | 1943 if (mch_isdir((char_u *)name)) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1944 return FALSE; // trailing slash for a directory |
7 | 1945 return TRUE; |
1946 } | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
1947 |
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
1948 /* |
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
1949 * Special implementation of mch_stat() for Solaris. |
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
1950 */ |
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
1951 int |
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
1952 vim_stat(const char *name, stat_T *stp) |
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
1953 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1954 // On Solaris stat() accepts "file/" as if it was "file". Return -1 if |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1955 // the name ends in "/" and it's not a directory. |
11146
6ce90f33373f
patch 8.0.0460: can't build on HPUX
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1956 return illegal_slash(name) ? -1 : stat(name, stp); |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
1957 } |
7 | 1958 #endif |
1959 | |
1960 #if defined(CURSOR_SHAPE) || defined(PROTO) | |
1961 | |
1962 /* | |
1963 * Handling of cursor and mouse pointer shapes in various modes. | |
1964 */ | |
1965 | |
1966 cursorentry_T shape_table[SHAPE_IDX_COUNT] = | |
1967 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1968 // The values will be filled in from the 'guicursor' and 'mouseshape' |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1969 // defaults when Vim starts. |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1970 // Adjust the SHAPE_IDX_ defines when making changes! |
7 | 1971 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE}, |
1972 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE}, | |
1973 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE}, | |
1974 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE}, | |
1975 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE}, | |
1976 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE}, | |
1977 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE}, | |
1978 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE}, | |
1979 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE}, | |
1980 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE}, | |
1981 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE}, | |
1982 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE}, | |
1983 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE}, | |
1984 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE}, | |
1985 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE}, | |
1986 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE}, | |
1987 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR}, | |
1988 }; | |
1989 | |
1990 #ifdef FEAT_MOUSESHAPE | |
1991 /* | |
1992 * Table with names for mouse shapes. Keep in sync with all the tables for | |
1993 * mch_set_mouse_shape()!. | |
1994 */ | |
1995 static char * mshape_names[] = | |
1996 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1997 "arrow", // default, must be the first one |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1998 "blank", // hidden |
7 | 1999 "beam", |
2000 "updown", | |
2001 "udsizing", | |
2002 "leftright", | |
2003 "lrsizing", | |
2004 "busy", | |
2005 "no", | |
2006 "crosshair", | |
2007 "hand1", | |
2008 "hand2", | |
2009 "pencil", | |
2010 "question", | |
2011 "rightup-arrow", | |
2012 "up-arrow", | |
2013 NULL | |
2014 }; | |
2015 #endif | |
2016 | |
2017 /* | |
2018 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape' | |
2019 * ("what" is SHAPE_MOUSE). | |
2020 * Returns error message for an illegal option, NULL otherwise. | |
2021 */ | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
2022 char * |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2023 parse_shape_opt(int what) |
7 | 2024 { |
2025 char_u *modep; | |
2026 char_u *colonp; | |
2027 char_u *commap; | |
2028 char_u *slashp; | |
2029 char_u *p, *endp; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2030 int idx = 0; // init for GCC |
7 | 2031 int all_idx; |
2032 int len; | |
2033 int i; | |
2034 long n; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2035 int found_ve = FALSE; // found "ve" flag |
7 | 2036 int round; |
2037 | |
2038 /* | |
2039 * First round: check for errors; second round: do it for real. | |
2040 */ | |
2041 for (round = 1; round <= 2; ++round) | |
2042 { | |
2043 /* | |
2044 * Repeat for all comma separated parts. | |
2045 */ | |
2046 #ifdef FEAT_MOUSESHAPE | |
2047 if (what == SHAPE_MOUSE) | |
2048 modep = p_mouseshape; | |
2049 else | |
2050 #endif | |
2051 modep = p_guicursor; | |
2052 while (*modep != NUL) | |
2053 { | |
2054 colonp = vim_strchr(modep, ':'); | |
10936
a516b6c279d9
patch 8.0.0357: crash when setting 'guicursor' to weird value
Christian Brabandt <cb@256bit.org>
parents:
10716
diff
changeset
|
2055 commap = vim_strchr(modep, ','); |
a516b6c279d9
patch 8.0.0357: crash when setting 'guicursor' to weird value
Christian Brabandt <cb@256bit.org>
parents:
10716
diff
changeset
|
2056 |
a516b6c279d9
patch 8.0.0357: crash when setting 'guicursor' to weird value
Christian Brabandt <cb@256bit.org>
parents:
10716
diff
changeset
|
2057 if (colonp == NULL || (commap != NULL && commap < colonp)) |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
2058 return e_missing_colon_2; |
7 | 2059 if (colonp == modep) |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
2060 return e_illegal_mode; |
7 | 2061 |
2062 /* | |
2063 * Repeat for all mode's before the colon. | |
2064 * For the 'a' mode, we loop to handle all the modes. | |
2065 */ | |
2066 all_idx = -1; | |
2067 while (modep < colonp || all_idx >= 0) | |
2068 { | |
2069 if (all_idx < 0) | |
2070 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2071 // Find the mode. |
7 | 2072 if (modep[1] == '-' || modep[1] == ':') |
2073 len = 1; | |
2074 else | |
2075 len = 2; | |
2076 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a') | |
2077 all_idx = SHAPE_IDX_COUNT - 1; | |
2078 else | |
2079 { | |
2080 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx) | |
2081 if (STRNICMP(modep, shape_table[idx].name, len) | |
2082 == 0) | |
2083 break; | |
2084 if (idx == SHAPE_IDX_COUNT | |
2085 || (shape_table[idx].used_for & what) == 0) | |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
2086 return e_illegal_mode; |
7 | 2087 if (len == 2 && modep[0] == 'v' && modep[1] == 'e') |
2088 found_ve = TRUE; | |
2089 } | |
2090 modep += len + 1; | |
2091 } | |
2092 | |
2093 if (all_idx >= 0) | |
2094 idx = all_idx--; | |
2095 else if (round == 2) | |
2096 { | |
2097 #ifdef FEAT_MOUSESHAPE | |
2098 if (what == SHAPE_MOUSE) | |
2099 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2100 // Set the default, for the missing parts |
7 | 2101 shape_table[idx].mshape = 0; |
2102 } | |
2103 else | |
2104 #endif | |
2105 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2106 // Set the defaults, for the missing parts |
7 | 2107 shape_table[idx].shape = SHAPE_BLOCK; |
2108 shape_table[idx].blinkwait = 700L; | |
2109 shape_table[idx].blinkon = 400L; | |
2110 shape_table[idx].blinkoff = 250L; | |
2111 } | |
2112 } | |
2113 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2114 // Parse the part after the colon |
7 | 2115 for (p = colonp + 1; *p && *p != ','; ) |
2116 { | |
2117 #ifdef FEAT_MOUSESHAPE | |
2118 if (what == SHAPE_MOUSE) | |
2119 { | |
2120 for (i = 0; ; ++i) | |
2121 { | |
2122 if (mshape_names[i] == NULL) | |
2123 { | |
2124 if (!VIM_ISDIGIT(*p)) | |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
2125 return e_illegal_mouseshape; |
7 | 2126 if (round == 2) |
2127 shape_table[idx].mshape = | |
2128 getdigits(&p) + MSHAPE_NUMBERED; | |
2129 else | |
2130 (void)getdigits(&p); | |
2131 break; | |
2132 } | |
2133 len = (int)STRLEN(mshape_names[i]); | |
2134 if (STRNICMP(p, mshape_names[i], len) == 0) | |
2135 { | |
2136 if (round == 2) | |
2137 shape_table[idx].mshape = i; | |
2138 p += len; | |
2139 break; | |
2140 } | |
2141 } | |
2142 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2143 else // if (what == SHAPE_MOUSE) |
7 | 2144 #endif |
2145 { | |
2146 /* | |
2147 * First handle the ones with a number argument. | |
2148 */ | |
2149 i = *p; | |
2150 len = 0; | |
2151 if (STRNICMP(p, "ver", 3) == 0) | |
2152 len = 3; | |
2153 else if (STRNICMP(p, "hor", 3) == 0) | |
2154 len = 3; | |
2155 else if (STRNICMP(p, "blinkwait", 9) == 0) | |
2156 len = 9; | |
2157 else if (STRNICMP(p, "blinkon", 7) == 0) | |
2158 len = 7; | |
2159 else if (STRNICMP(p, "blinkoff", 8) == 0) | |
2160 len = 8; | |
2161 if (len != 0) | |
2162 { | |
2163 p += len; | |
2164 if (!VIM_ISDIGIT(*p)) | |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
2165 return e_digit_expected; |
7 | 2166 n = getdigits(&p); |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2167 if (len == 3) // "ver" or "hor" |
7 | 2168 { |
2169 if (n == 0) | |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
2170 return e_illegal_percentage; |
7 | 2171 if (round == 2) |
2172 { | |
2173 if (TOLOWER_ASC(i) == 'v') | |
2174 shape_table[idx].shape = SHAPE_VER; | |
2175 else | |
2176 shape_table[idx].shape = SHAPE_HOR; | |
2177 shape_table[idx].percentage = n; | |
2178 } | |
2179 } | |
2180 else if (round == 2) | |
2181 { | |
2182 if (len == 9) | |
2183 shape_table[idx].blinkwait = n; | |
2184 else if (len == 7) | |
2185 shape_table[idx].blinkon = n; | |
2186 else | |
2187 shape_table[idx].blinkoff = n; | |
2188 } | |
2189 } | |
2190 else if (STRNICMP(p, "block", 5) == 0) | |
2191 { | |
2192 if (round == 2) | |
2193 shape_table[idx].shape = SHAPE_BLOCK; | |
2194 p += 5; | |
2195 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2196 else // must be a highlight group name then |
7 | 2197 { |
2198 endp = vim_strchr(p, '-'); | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2199 if (commap == NULL) // last part |
7 | 2200 { |
2201 if (endp == NULL) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2202 endp = p + STRLEN(p); // find end of part |
7 | 2203 } |
2204 else if (endp > commap || endp == NULL) | |
2205 endp = commap; | |
2206 slashp = vim_strchr(p, '/'); | |
2207 if (slashp != NULL && slashp < endp) | |
2208 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2209 // "group/langmap_group" |
7 | 2210 i = syn_check_group(p, (int)(slashp - p)); |
2211 p = slashp + 1; | |
2212 } | |
2213 if (round == 2) | |
2214 { | |
2215 shape_table[idx].id = syn_check_group(p, | |
2216 (int)(endp - p)); | |
2217 shape_table[idx].id_lm = shape_table[idx].id; | |
2218 if (slashp != NULL && slashp < endp) | |
2219 shape_table[idx].id = i; | |
2220 } | |
2221 p = endp; | |
2222 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2223 } // if (what != SHAPE_MOUSE) |
7 | 2224 |
2225 if (*p == '-') | |
2226 ++p; | |
2227 } | |
2228 } | |
2229 modep = p; | |
2230 if (*modep == ',') | |
2231 ++modep; | |
2232 } | |
2233 } | |
2234 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2235 // If the 's' flag is not given, use the 'v' cursor for 's' |
7 | 2236 if (!found_ve) |
2237 { | |
2238 #ifdef FEAT_MOUSESHAPE | |
2239 if (what == SHAPE_MOUSE) | |
2240 { | |
2241 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape; | |
2242 } | |
2243 else | |
2244 #endif | |
2245 { | |
2246 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape; | |
2247 shape_table[SHAPE_IDX_VE].percentage = | |
2248 shape_table[SHAPE_IDX_V].percentage; | |
2249 shape_table[SHAPE_IDX_VE].blinkwait = | |
2250 shape_table[SHAPE_IDX_V].blinkwait; | |
2251 shape_table[SHAPE_IDX_VE].blinkon = | |
2252 shape_table[SHAPE_IDX_V].blinkon; | |
2253 shape_table[SHAPE_IDX_VE].blinkoff = | |
2254 shape_table[SHAPE_IDX_V].blinkoff; | |
2255 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id; | |
2256 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm; | |
2257 } | |
2258 } | |
2259 | |
2260 return NULL; | |
2261 } | |
2262 | |
500 | 2263 # if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \ |
2264 || defined(FEAT_MOUSESHAPE) || defined(PROTO) | |
7 | 2265 /* |
2266 * Return the index into shape_table[] for the current mode. | |
2267 * When "mouse" is TRUE, consider indexes valid for the mouse pointer. | |
2268 */ | |
2269 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2270 get_shape_idx(int mouse) |
7 | 2271 { |
2272 #ifdef FEAT_MOUSESHAPE | |
2273 if (mouse && (State == HITRETURN || State == ASKMORE)) | |
2274 { | |
2275 # ifdef FEAT_GUI | |
87 | 2276 int x, y; |
2277 gui_mch_getmouse(&x, &y); | |
2278 if (Y_2_ROW(y) == Rows - 1) | |
7 | 2279 return SHAPE_IDX_MOREL; |
2280 # endif | |
2281 return SHAPE_IDX_MORE; | |
2282 } | |
2283 if (mouse && drag_status_line) | |
2284 return SHAPE_IDX_SDRAG; | |
2285 if (mouse && drag_sep_line) | |
2286 return SHAPE_IDX_VDRAG; | |
2287 #endif | |
2288 if (!mouse && State == SHOWMATCH) | |
2289 return SHAPE_IDX_SM; | |
2290 if (State & VREPLACE_FLAG) | |
2291 return SHAPE_IDX_R; | |
2292 if (State & REPLACE_FLAG) | |
2293 return SHAPE_IDX_R; | |
2294 if (State & INSERT) | |
2295 return SHAPE_IDX_I; | |
2296 if (State & CMDLINE) | |
2297 { | |
2298 if (cmdline_at_end()) | |
2299 return SHAPE_IDX_C; | |
2300 if (cmdline_overstrike()) | |
2301 return SHAPE_IDX_CR; | |
2302 return SHAPE_IDX_CI; | |
2303 } | |
2304 if (finish_op) | |
2305 return SHAPE_IDX_O; | |
2306 if (VIsual_active) | |
2307 { | |
2308 if (*p_sel == 'e') | |
2309 return SHAPE_IDX_VE; | |
2310 else | |
2311 return SHAPE_IDX_V; | |
2312 } | |
2313 return SHAPE_IDX_N; | |
2314 } | |
500 | 2315 #endif |
7 | 2316 |
2317 # if defined(FEAT_MOUSESHAPE) || defined(PROTO) | |
2318 static int old_mouse_shape = 0; | |
2319 | |
2320 /* | |
2321 * Set the mouse shape: | |
2322 * If "shape" is -1, use shape depending on the current mode, | |
2323 * depending on the current state. | |
2324 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used | |
2325 * when the mouse moves off the status or command line). | |
2326 */ | |
2327 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2328 update_mouseshape(int shape_idx) |
7 | 2329 { |
2330 int new_mouse_shape; | |
2331 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2332 // Only works in GUI mode. |
227 | 2333 if (!gui.in_use || gui.starting) |
7 | 2334 return; |
2335 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2336 // Postpone the updating when more is to come. Speeds up executing of |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2337 // mappings. |
7 | 2338 if (shape_idx == -1 && char_avail()) |
2339 { | |
2340 postponed_mouseshape = TRUE; | |
2341 return; | |
2342 } | |
2343 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2344 // When ignoring the mouse don't change shape on the statusline. |
864 | 2345 if (*p_mouse == NUL |
2346 && (shape_idx == SHAPE_IDX_CLINE | |
2347 || shape_idx == SHAPE_IDX_STATUS | |
2348 || shape_idx == SHAPE_IDX_VSEP)) | |
2349 shape_idx = -2; | |
2350 | |
7 | 2351 if (shape_idx == -2 |
2352 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape | |
2353 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape | |
2354 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape) | |
2355 return; | |
2356 if (shape_idx < 0) | |
2357 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape; | |
2358 else | |
2359 new_mouse_shape = shape_table[shape_idx].mshape; | |
2360 if (new_mouse_shape != old_mouse_shape) | |
2361 { | |
2362 mch_set_mouse_shape(new_mouse_shape); | |
2363 old_mouse_shape = new_mouse_shape; | |
2364 } | |
2365 postponed_mouseshape = FALSE; | |
2366 } | |
2367 # endif | |
2368 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2369 #endif // CURSOR_SHAPE |
7 | 2370 |
2371 | |
2372 /* | |
2373 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search | |
2374 * 'cdpath' for relative directory names, otherwise just mch_chdir(). | |
2375 */ | |
2376 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2377 vim_chdir(char_u *new_dir) |
7 | 2378 { |
2379 #ifndef FEAT_SEARCHPATH | |
2380 return mch_chdir((char *)new_dir); | |
2381 #else | |
2382 char_u *dir_name; | |
2383 int r; | |
2384 | |
2385 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir), | |
2386 FNAME_MESS, curbuf->b_ffname); | |
2387 if (dir_name == NULL) | |
2388 return -1; | |
2389 r = mch_chdir((char *)dir_name); | |
2390 vim_free(dir_name); | |
2391 return r; | |
2392 #endif | |
2393 } | |
2394 | |
2395 /* | |
418 | 2396 * Get user name from machine-specific function. |
7 | 2397 * Returns the user name in "buf[len]". |
418 | 2398 * Some systems are quite slow in obtaining the user name (Windows NT), thus |
2399 * cache the result. | |
7 | 2400 * Returns OK or FAIL. |
2401 */ | |
2402 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2403 get_user_name(char_u *buf, int len) |
7 | 2404 { |
359 | 2405 if (username == NULL) |
7 | 2406 { |
2407 if (mch_get_user_name(buf, len) == FAIL) | |
2408 return FAIL; | |
359 | 2409 username = vim_strsave(buf); |
7 | 2410 } |
2411 else | |
418 | 2412 vim_strncpy(buf, username, len - 1); |
7 | 2413 return OK; |
2414 } | |
2415 | |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
2416 #if defined(EXITFREE) || defined(PROTOS) |
25529
bb1097899693
patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
2417 /* |
bb1097899693
patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
2418 * Free the memory allocated by get_user_name() |
bb1097899693
patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
2419 */ |
bb1097899693
patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
2420 void |
bb1097899693
patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
2421 free_username(void) |
bb1097899693
patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
2422 { |
bb1097899693
patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
2423 vim_free(username); |
bb1097899693
patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
2424 } |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
2425 #endif |
25529
bb1097899693
patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
2426 |
7 | 2427 #ifndef HAVE_QSORT |
2428 /* | |
2429 * Our own qsort(), for systems that don't have it. | |
2430 * It's simple and slow. From the K&R C book. | |
2431 */ | |
2432 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2433 qsort( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2434 void *base, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2435 size_t elm_count, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2436 size_t elm_size, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2437 int (*cmp)(const void *, const void *)) |
7 | 2438 { |
2439 char_u *buf; | |
2440 char_u *p1; | |
2441 char_u *p2; | |
2442 int i, j; | |
2443 int gap; | |
2444 | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
2445 buf = alloc(elm_size); |
7 | 2446 if (buf == NULL) |
2447 return; | |
2448 | |
2449 for (gap = elm_count / 2; gap > 0; gap /= 2) | |
2450 for (i = gap; i < elm_count; ++i) | |
2451 for (j = i - gap; j >= 0; j -= gap) | |
2452 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2453 // Compare the elements. |
7 | 2454 p1 = (char_u *)base + j * elm_size; |
2455 p2 = (char_u *)base + (j + gap) * elm_size; | |
2456 if ((*cmp)((void *)p1, (void *)p2) <= 0) | |
2457 break; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2458 // Exchange the elements. |
7 | 2459 mch_memmove(buf, p1, elm_size); |
2460 mch_memmove(p1, p2, elm_size); | |
2461 mch_memmove(p2, buf, elm_size); | |
2462 } | |
2463 | |
2464 vim_free(buf); | |
2465 } | |
2466 #endif | |
2467 | |
2468 /* | |
2469 * The putenv() implementation below comes from the "screen" program. | |
2470 * Included with permission from Juergen Weigert. | |
2471 * See pty.c for the copyright notice. | |
2472 */ | |
2473 | |
2474 /* | |
2475 * putenv -- put value into environment | |
2476 * | |
2477 * Usage: i = putenv (string) | |
2478 * int i; | |
2479 * char *string; | |
2480 * | |
2481 * where string is of the form <name>=<value>. | |
2482 * Putenv returns 0 normally, -1 on error (not enough core for malloc). | |
2483 * | |
2484 * Putenv may need to add a new name into the environment, or to | |
2485 * associate a value longer than the current value with a particular | |
2486 * name. So, to make life simpler, putenv() copies your entire | |
2487 * environment into the heap (i.e. malloc()) from the stack | |
2488 * (i.e. where it resides when your process is initiated) the first | |
2489 * time you call it. | |
2490 * | |
2491 * (history removed, not very interesting. See the "screen" sources.) | |
2492 */ | |
2493 | |
2494 #if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) | |
2495 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2496 #define EXTRASIZE 5 // increment to add to env. size |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2497 |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2498 static int envsize = -1; // current size of environment |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2499 extern char **environ; // the global which is your env. |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2500 |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2501 static int findenv(char *name); // look for a name in the env. |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2502 static int newenv(void); // copy env. from stack to heap |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2503 static int moreenv(void); // incr. size of env. |
7 | 2504 |
2505 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2506 putenv(const char *string) |
7 | 2507 { |
2508 int i; | |
2509 char *p; | |
2510 | |
2511 if (envsize < 0) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2512 { // first time putenv called |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2513 if (newenv() < 0) // copy env. to heap |
7 | 2514 return -1; |
2515 } | |
2516 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2517 i = findenv((char *)string); // look for name in environment |
7 | 2518 |
2519 if (i < 0) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2520 { // name must be added |
7 | 2521 for (i = 0; environ[i]; i++); |
2522 if (i >= (envsize - 1)) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2523 { // need new slot |
7 | 2524 if (moreenv() < 0) |
2525 return -1; | |
2526 } | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
2527 p = alloc(strlen(string) + 1); |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2528 if (p == NULL) // not enough core |
7 | 2529 return -1; |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2530 environ[i + 1] = 0; // new end of env. |
7 | 2531 } |
2532 else | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2533 { // name already in env. |
7 | 2534 p = vim_realloc(environ[i], strlen(string) + 1); |
2535 if (p == NULL) | |
2536 return -1; | |
2537 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2538 sprintf(p, "%s", string); // copy into env. |
7 | 2539 environ[i] = p; |
2540 | |
2541 return 0; | |
2542 } | |
2543 | |
2544 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2545 findenv(char *name) |
7 | 2546 { |
2547 char *namechar, *envchar; | |
2548 int i, found; | |
2549 | |
2550 found = 0; | |
2551 for (i = 0; environ[i] && !found; i++) | |
2552 { | |
2553 envchar = environ[i]; | |
2554 namechar = name; | |
2555 while (*namechar && *namechar != '=' && (*namechar == *envchar)) | |
2556 { | |
2557 namechar++; | |
2558 envchar++; | |
2559 } | |
2560 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '='); | |
2561 } | |
2562 return found ? i - 1 : -1; | |
2563 } | |
2564 | |
2565 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2566 newenv(void) |
7 | 2567 { |
2568 char **env, *elem; | |
2569 int i, esize; | |
2570 | |
2571 for (i = 0; environ[i]; i++) | |
2572 ; | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12672
diff
changeset
|
2573 |
7 | 2574 esize = i + EXTRASIZE + 1; |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
2575 env = ALLOC_MULT(char *, esize); |
7 | 2576 if (env == NULL) |
2577 return -1; | |
2578 | |
2579 for (i = 0; environ[i]; i++) | |
2580 { | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
2581 elem = alloc(strlen(environ[i]) + 1); |
7 | 2582 if (elem == NULL) |
2583 return -1; | |
2584 env[i] = elem; | |
2585 strcpy(elem, environ[i]); | |
2586 } | |
2587 | |
2588 env[i] = 0; | |
2589 environ = env; | |
2590 envsize = esize; | |
2591 return 0; | |
2592 } | |
2593 | |
2594 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2595 moreenv(void) |
7 | 2596 { |
2597 int esize; | |
2598 char **env; | |
2599 | |
2600 esize = envsize + EXTRASIZE; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
2601 env = vim_realloc((char *)environ, esize * sizeof (*env)); |
7 | 2602 if (env == 0) |
2603 return -1; | |
2604 environ = env; | |
2605 envsize = esize; | |
2606 return 0; | |
2607 } | |
2608 | |
2609 # ifdef USE_VIMPTY_GETENV | |
11737
7791a15353dc
patch 8.0.0751: OpenPTY missing with some combination of features
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
2610 /* |
7791a15353dc
patch 8.0.0751: OpenPTY missing with some combination of features
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
2611 * Used for mch_getenv() for Mac. |
7791a15353dc
patch 8.0.0751: OpenPTY missing with some combination of features
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
2612 */ |
7 | 2613 char_u * |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2614 vimpty_getenv(const char_u *string) |
7 | 2615 { |
2616 int i; | |
2617 char_u *p; | |
2618 | |
2619 if (envsize < 0) | |
2620 return NULL; | |
2621 | |
2622 i = findenv((char *)string); | |
2623 | |
2624 if (i < 0) | |
2625 return NULL; | |
2626 | |
2627 p = vim_strchr((char_u *)environ[i], '='); | |
2628 return (p + 1); | |
2629 } | |
2630 # endif | |
2631 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2632 #endif // !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) |
313 | 2633 |
741 | 2634 #if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO) |
313 | 2635 /* |
2636 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have | |
2637 * rights to write into. | |
2638 */ | |
2639 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2640 filewritable(char_u *fname) |
313 | 2641 { |
2642 int retval = 0; | |
2643 #if defined(UNIX) || defined(VMS) | |
2644 int perm = 0; | |
2645 #endif | |
2646 | |
2647 #if defined(UNIX) || defined(VMS) | |
2648 perm = mch_getperm(fname); | |
2649 #endif | |
2650 if ( | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
2651 # ifdef MSWIN |
313 | 2652 mch_writable(fname) && |
2653 # else | |
2654 # if defined(UNIX) || defined(VMS) | |
2655 (perm & 0222) && | |
2656 # endif | |
2657 # endif | |
2658 mch_access((char *)fname, W_OK) == 0 | |
2659 ) | |
2660 { | |
2661 ++retval; | |
2662 if (mch_isdir(fname)) | |
2663 ++retval; | |
2664 } | |
2665 return retval; | |
2666 } | |
2667 #endif | |
332 | 2668 |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2669 #if defined(FEAT_SPELL) || defined(FEAT_PERSISTENT_UNDO) || defined(PROTO) |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2670 /* |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2671 * Read 2 bytes from "fd" and turn them into an int, MSB first. |
13493
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2672 * Returns -1 when encountering EOF. |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2673 */ |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2674 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2675 get2c(FILE *fd) |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2676 { |
13493
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2677 int c, n; |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2678 |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2679 n = getc(fd); |
13493
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2680 if (n == EOF) return -1; |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2681 c = getc(fd); |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2682 if (c == EOF) return -1; |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2683 return (n << 8) + c; |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2684 } |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2685 |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2686 /* |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2687 * Read 3 bytes from "fd" and turn them into an int, MSB first. |
13493
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2688 * Returns -1 when encountering EOF. |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2689 */ |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2690 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2691 get3c(FILE *fd) |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2692 { |
13493
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2693 int c, n; |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2694 |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2695 n = getc(fd); |
13493
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2696 if (n == EOF) return -1; |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2697 c = getc(fd); |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2698 if (c == EOF) return -1; |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2699 n = (n << 8) + c; |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2700 c = getc(fd); |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2701 if (c == EOF) return -1; |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2702 return (n << 8) + c; |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2703 } |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2704 |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2705 /* |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2706 * Read 4 bytes from "fd" and turn them into an int, MSB first. |
13493
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2707 * Returns -1 when encountering EOF. |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2708 */ |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2709 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2710 get4c(FILE *fd) |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2711 { |
13493
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2712 int c; |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2713 // Use unsigned rather than int otherwise result is undefined |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2714 // when left-shift sets the MSB. |
5347 | 2715 unsigned n; |
2716 | |
13493
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2717 c = getc(fd); |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2718 if (c == EOF) return -1; |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2719 n = (unsigned)c; |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2720 c = getc(fd); |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2721 if (c == EOF) return -1; |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2722 n = (n << 8) + (unsigned)c; |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2723 c = getc(fd); |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2724 if (c == EOF) return -1; |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2725 n = (n << 8) + (unsigned)c; |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2726 c = getc(fd); |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2727 if (c == EOF) return -1; |
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
2728 n = (n << 8) + (unsigned)c; |
5347 | 2729 return (int)n; |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2730 } |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2731 |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2732 /* |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2733 * Read a string of length "cnt" from "fd" into allocated memory. |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2734 * Returns NULL when out of memory or unable to read that many bytes. |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2735 */ |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2736 char_u * |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2737 read_string(FILE *fd, int cnt) |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2738 { |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2739 char_u *str; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2740 int i; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2741 int c; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2742 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2743 // allocate memory |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
2744 str = alloc(cnt + 1); |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2745 if (str != NULL) |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2746 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2747 // Read the string. Quit when running into the EOF. |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2748 for (i = 0; i < cnt; ++i) |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2749 { |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2750 c = getc(fd); |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2751 if (c == EOF) |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2752 { |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2753 vim_free(str); |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2754 return NULL; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2755 } |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2756 str[i] = c; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2757 } |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2758 str[i] = NUL; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2759 } |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2760 return str; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2761 } |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2762 |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2763 /* |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2764 * Write a number to file "fd", MSB first, in "len" bytes. |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2765 */ |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2766 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2767 put_bytes(FILE *fd, long_u nr, int len) |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2768 { |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2769 int i; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2770 |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2771 for (i = len - 1; i >= 0; --i) |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2772 if (putc((int)(nr >> (i * 8)), fd) == EOF) |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2773 return FAIL; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2774 return OK; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2775 } |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2776 |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2777 #endif |
3257 | 2778 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2779 #ifndef PROTO // proto is defined in vim.h |
10449
222b1432814e
commit https://github.com/vim/vim/commit/5162822914372fc916a93f85848c0c82209e7cec
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
2780 # ifdef ELAPSED_TIMEVAL |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2781 /* |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2782 * Return time in msec since "start_tv". |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2783 */ |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2784 long |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2785 elapsed(struct timeval *start_tv) |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2786 { |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2787 struct timeval now_tv; |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2788 |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2789 gettimeofday(&now_tv, NULL); |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2790 return (now_tv.tv_sec - start_tv->tv_sec) * 1000L |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2791 + (now_tv.tv_usec - start_tv->tv_usec) / 1000L; |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2792 } |
10449
222b1432814e
commit https://github.com/vim/vim/commit/5162822914372fc916a93f85848c0c82209e7cec
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
2793 # endif |
222b1432814e
commit https://github.com/vim/vim/commit/5162822914372fc916a93f85848c0c82209e7cec
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
2794 |
222b1432814e
commit https://github.com/vim/vim/commit/5162822914372fc916a93f85848c0c82209e7cec
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
2795 # ifdef ELAPSED_TICKCOUNT |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2796 /* |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2797 * Return time in msec since "start_tick". |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2798 */ |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2799 long |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2800 elapsed(DWORD start_tick) |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2801 { |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2802 DWORD now = GetTickCount(); |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2803 |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2804 return (long)now - (long)start_tick; |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
2805 } |
10449
222b1432814e
commit https://github.com/vim/vim/commit/5162822914372fc916a93f85848c0c82209e7cec
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
2806 # endif |
222b1432814e
commit https://github.com/vim/vim/commit/5162822914372fc916a93f85848c0c82209e7cec
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
2807 #endif |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2808 |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2809 #if defined(FEAT_JOB_CHANNEL) \ |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2810 || (defined(UNIX) && (!defined(USE_SYSTEM) \ |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2811 || (defined(FEAT_GUI) && defined(FEAT_TERMINAL)))) \ |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2812 || defined(PROTO) |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2813 /* |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2814 * Parse "cmd" and put the white-separated parts in "argv". |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2815 * "argv" is an allocated array with "argc" entries and room for 4 more. |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2816 * Returns FAIL when out of memory. |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2817 */ |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2818 int |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2819 mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc) |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2820 { |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2821 int i; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2822 char_u *p, *d; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2823 int inquote; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2824 |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2825 /* |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2826 * Do this loop twice: |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2827 * 1: find number of arguments |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2828 * 2: separate them and build argv[] |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2829 */ |
19793
607e5d7968b9
patch 8.2.0453: trailing space in job_start() command causes empty argument
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
2830 for (i = 1; i <= 2; ++i) |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2831 { |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2832 p = skipwhite(cmd); |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2833 inquote = FALSE; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2834 *argc = 0; |
19793
607e5d7968b9
patch 8.2.0453: trailing space in job_start() command causes empty argument
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
2835 while (*p != NUL) |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2836 { |
19793
607e5d7968b9
patch 8.2.0453: trailing space in job_start() command causes empty argument
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
2837 if (i == 2) |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2838 (*argv)[*argc] = (char *)p; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2839 ++*argc; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2840 d = p; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2841 while (*p != NUL && (inquote || (*p != ' ' && *p != TAB))) |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2842 { |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2843 if (p[0] == '"') |
14905
c1e94bb0f004
patch 8.1.0464: MS-Windows: job_info() has cmd without backslashes
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2844 // quotes surrounding an argument and are dropped |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2845 inquote = !inquote; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2846 else |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2847 { |
14905
c1e94bb0f004
patch 8.1.0464: MS-Windows: job_info() has cmd without backslashes
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2848 if (rem_backslash(p)) |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2849 { |
14905
c1e94bb0f004
patch 8.1.0464: MS-Windows: job_info() has cmd without backslashes
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2850 // First pass: skip over "\ " and "\"". |
c1e94bb0f004
patch 8.1.0464: MS-Windows: job_info() has cmd without backslashes
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2851 // Second pass: Remove the backslash. |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2852 ++p; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2853 } |
19793
607e5d7968b9
patch 8.2.0453: trailing space in job_start() command causes empty argument
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
2854 if (i == 2) |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2855 *d++ = *p; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2856 } |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2857 ++p; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2858 } |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2859 if (*p == NUL) |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2860 { |
19793
607e5d7968b9
patch 8.2.0453: trailing space in job_start() command causes empty argument
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
2861 if (i == 2) |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2862 *d++ = NUL; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2863 break; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2864 } |
19793
607e5d7968b9
patch 8.2.0453: trailing space in job_start() command causes empty argument
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
2865 if (i == 2) |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2866 *d++ = NUL; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2867 p = skipwhite(p + 1); |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2868 } |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2869 if (*argv == NULL) |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2870 { |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2871 if (use_shcf) |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2872 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2873 // Account for possible multiple args in p_shcf. |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2874 p = p_shcf; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2875 for (;;) |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2876 { |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2877 p = skiptowhite(p); |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2878 if (*p == NUL) |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2879 break; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2880 ++*argc; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2881 p = skipwhite(p); |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2882 } |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2883 } |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2884 |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
2885 *argv = ALLOC_MULT(char *, *argc + 4); |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2886 if (*argv == NULL) // out of memory |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2887 return FAIL; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2888 } |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2889 } |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2890 return OK; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
2891 } |
13750
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2892 |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2893 /* |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2894 * Build "argv[argc]" from the string "cmd". |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2895 * "argv[argc]" is set to NULL; |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2896 * Return FAIL when out of memory. |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2897 */ |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2898 int |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2899 build_argv_from_string(char_u *cmd, char ***argv, int *argc) |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2900 { |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2901 char_u *cmd_copy; |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2902 int i; |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2903 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2904 // Make a copy, parsing will modify "cmd". |
13750
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2905 cmd_copy = vim_strsave(cmd); |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2906 if (cmd_copy == NULL |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2907 || mch_parse_cmd(cmd_copy, FALSE, argv, argc) == FAIL) |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2908 { |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2909 vim_free(cmd_copy); |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2910 return FAIL; |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2911 } |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2912 for (i = 0; i < *argc; i++) |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2913 (*argv)[i] = (char *)vim_strsave((char_u *)(*argv)[i]); |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2914 (*argv)[*argc] = NULL; |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2915 vim_free(cmd_copy); |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2916 return OK; |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2917 } |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2918 |
27181
f9f1e76957a6
patch 8.2.4119: build failure when disabling the channel feature
Bram Moolenaar <Bram@vim.org>
parents:
27140
diff
changeset
|
2919 # if defined(FEAT_JOB_CHANNEL) || defined(PROTO) |
13750
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2920 /* |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2921 * Build "argv[argc]" from the list "l". |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2922 * "argv[argc]" is set to NULL; |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2923 * Return FAIL when out of memory. |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2924 */ |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2925 int |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2926 build_argv_from_list(list_T *l, char ***argv, int *argc) |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2927 { |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2928 listitem_T *li; |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2929 char_u *s; |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2930 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2931 // Pass argv[] to mch_call_shell(). |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
2932 *argv = ALLOC_MULT(char *, l->lv_len + 1); |
13750
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2933 if (*argv == NULL) |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2934 return FAIL; |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2935 *argc = 0; |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19793
diff
changeset
|
2936 FOR_ALL_LIST_ITEMS(l, li) |
13750
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2937 { |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15209
diff
changeset
|
2938 s = tv_get_string_chk(&li->li_tv); |
13750
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2939 if (s == NULL) |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2940 { |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2941 int i; |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2942 |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2943 for (i = 0; i < *argc; ++i) |
20033
2e5e86ff7596
patch 8.2.0572: using two lines for free and reset
Bram Moolenaar <Bram@vim.org>
parents:
20031
diff
changeset
|
2944 VIM_CLEAR((*argv)[i]); |
25891
58b1c9d96ec6
patch 8.2.3479: crash when calling job_start with an invalid argument
Bram Moolenaar <Bram@vim.org>
parents:
25642
diff
changeset
|
2945 (*argv)[0] = NULL; |
13750
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2946 return FAIL; |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2947 } |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2948 (*argv)[*argc] = (char *)vim_strsave(s); |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2949 *argc += 1; |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2950 } |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2951 (*argv)[*argc] = NULL; |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2952 return OK; |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2953 } |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2954 # endif |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
2955 #endif |
18064
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
2956 |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
2957 /* |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
2958 * Change the behavior of vterm. |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
2959 * 0: As usual. |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
2960 * 1: Windows 10 version 1809 |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
2961 * The bug causes unstable handling of ambiguous width character. |
18611
6a7ebc2ee528
patch 8.1.2299: ConPTY in MS-Windows 1909 is still wrong
Bram Moolenaar <Bram@vim.org>
parents:
18301
diff
changeset
|
2962 * 2: Windows 10 version 1903 & 1909 |
18064
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
2963 * Use the wrong result because each result is different. |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
2964 * 3: Windows 10 insider preview (current latest logic) |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
2965 */ |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
2966 int |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
2967 get_special_pty_type(void) |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
2968 { |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
2969 #ifdef MSWIN |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
2970 return get_conpty_type(); |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
2971 #else |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
2972 return 0; |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
2973 #endif |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
2974 } |