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