Mercurial > vim
annotate src/misc2.c @ 22109:3785043f8768 v8.2.1604
patch 8.2.1604: Vim9: cannot use "true" with getcompletion()
Commit: https://github.com/vim/vim/commit/d217a87755ba01fc626b1c178c682fcd05ab3a28
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Sep 5 18:31:33 2020 +0200
patch 8.2.1604: Vim9: cannot use "true" with getcompletion()
Problem: Vim9: cannot use "true" with getcompletion().
Solution: use tv_get_bool_chk(). (closes https://github.com/vim/vim/issues/6875)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 05 Sep 2020 18:45:04 +0200 |
parents | 35921b7fc07a |
children | c19acd92ee83 |
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 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
25 // 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
|
26 // 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
|
27 // being used. |
7 | 28 if (virtual_op != MAYBE) |
29 return virtual_op; | |
30 return (ve_flags == VE_ALL | |
31 || ((ve_flags & VE_BLOCK) && VIsual_active && VIsual_mode == Ctrl_V) | |
32 || ((ve_flags & VE_INSERT) && (State & INSERT))); | |
33 } | |
34 | |
35 /* | |
36 * Get the screen position of the cursor. | |
37 */ | |
38 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
39 getviscol(void) |
7 | 40 { |
41 colnr_T x; | |
42 | |
43 getvvcol(curwin, &curwin->w_cursor, &x, NULL, NULL); | |
44 return (int)x; | |
45 } | |
46 | |
47 /* | |
1209 | 48 * Go to column "wcol", and add/insert white space as necessary to get the |
7 | 49 * cursor in that column. |
50 * The caller must have saved the cursor line for undo! | |
51 */ | |
52 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
53 coladvance_force(colnr_T wcol) |
7 | 54 { |
55 int rc = coladvance2(&curwin->w_cursor, TRUE, FALSE, wcol); | |
56 | |
57 if (wcol == MAXCOL) | |
58 curwin->w_valid &= ~VALID_VIRTCOL; | |
59 else | |
60 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
61 // Virtcol is valid |
7 | 62 curwin->w_valid |= VALID_VIRTCOL; |
63 curwin->w_virtcol = wcol; | |
64 } | |
65 return rc; | |
66 } | |
67 | |
68 /* | |
15428
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
69 * 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
|
70 */ |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
71 int |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
72 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
|
73 { |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
74 colnr_T x; |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
75 pos_T pos; |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
76 |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
77 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
|
78 pos.col = col; |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
79 pos.coladd = coladd; |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
80 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
|
81 return (int)x; |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
82 } |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
83 |
eae582bfb293
patch 8.1.0722: cannot build without the virtualedit feature
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
84 /* |
7 | 85 * Try to advance the Cursor to the specified screen column. |
86 * If virtual editing: fine tune the cursor position. | |
87 * Note that all virtual positions off the end of a line should share | |
88 * a curwin->w_cursor.col value (n.b. this is equal to STRLEN(line)), | |
89 * beginning at coladd 0. | |
90 * | |
91 * return OK if desired column is reached, FAIL if not | |
92 */ | |
93 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
94 coladvance(colnr_T wcol) |
7 | 95 { |
96 int rc = getvpos(&curwin->w_cursor, wcol); | |
97 | |
98 if (wcol == MAXCOL || rc == FAIL) | |
99 curwin->w_valid &= ~VALID_VIRTCOL; | |
44 | 100 else if (*ml_get_cursor() != TAB) |
7 | 101 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
102 // Virtcol is valid when not on a TAB |
7 | 103 curwin->w_valid |= VALID_VIRTCOL; |
104 curwin->w_virtcol = wcol; | |
105 } | |
106 return rc; | |
107 } | |
108 | |
109 /* | |
110 * Return in "pos" the position of the cursor advanced to screen column "wcol". | |
111 * return OK if desired column is reached, FAIL if not | |
112 */ | |
113 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
114 getvpos(pos_T *pos, colnr_T wcol) |
7 | 115 { |
116 return coladvance2(pos, FALSE, virtual_active(), wcol); | |
117 } | |
118 | |
119 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
120 coladvance2( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
121 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
|
122 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
|
123 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
|
124 colnr_T wcol_arg) // column to move to (can be negative) |
7 | 125 { |
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
|
126 colnr_T wcol = wcol_arg; |
7 | 127 int idx; |
128 char_u *ptr; | |
129 char_u *line; | |
130 colnr_T col = 0; | |
131 int csize = 0; | |
132 int one_more; | |
133 #ifdef FEAT_LINEBREAK | |
134 int head = 0; | |
135 #endif | |
136 | |
772 | 137 one_more = (State & INSERT) |
138 || restart_edit != NUL | |
139 || (VIsual_active && *p_sel != 'o') | |
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
|
140 || ((ve_flags & VE_ONEMORE) && wcol < MAXCOL); |
1982 | 141 line = ml_get_buf(curbuf, pos->lnum, FALSE); |
7 | 142 |
143 if (wcol >= MAXCOL) | |
144 { | |
145 idx = (int)STRLEN(line) - 1 + one_more; | |
146 col = wcol; | |
147 | |
148 if ((addspaces || finetune) && !VIsual_active) | |
149 { | |
150 curwin->w_curswant = linetabsize(line) + one_more; | |
151 if (curwin->w_curswant > 0) | |
152 --curwin->w_curswant; | |
153 } | |
154 } | |
155 else | |
156 { | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
157 int width = curwin->w_width - win_col_off(curwin); |
7 | 158 |
620 | 159 if (finetune |
7 | 160 && curwin->w_p_wrap |
161 && curwin->w_width != 0 | |
162 && wcol >= (colnr_T)width) | |
163 { | |
164 csize = linetabsize(line); | |
165 if (csize > 0) | |
166 csize--; | |
167 | |
620 | 168 if (wcol / width > (colnr_T)csize / width |
169 && ((State & INSERT) == 0 || (int)wcol > csize + 1)) | |
7 | 170 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
171 // 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
|
172 // 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
|
173 // 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
|
174 // reaching the right window edge). |
7 | 175 wcol = (csize / width + 1) * width - 1; |
176 } | |
177 } | |
178 | |
179 ptr = line; | |
180 while (col <= wcol && *ptr != NUL) | |
181 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
182 // Count a tab for what it's worth (if list mode not on) |
7 | 183 #ifdef FEAT_LINEBREAK |
5995 | 184 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
|
185 MB_PTR_ADV(ptr); |
7 | 186 #else |
5995 | 187 csize = lbr_chartabsize_adv(line, &ptr, col); |
7 | 188 #endif |
189 col += csize; | |
190 } | |
191 idx = (int)(ptr - line); | |
192 /* | |
193 * Handle all the special cases. The virtual_active() check | |
194 * is needed to ensure that a virtual position off the end of | |
195 * a line has the correct indexing. The one_more comparison | |
196 * replaces an explicit add of one_more later on. | |
197 */ | |
198 if (col > wcol || (!virtual_active() && one_more == 0)) | |
199 { | |
200 idx -= 1; | |
201 # ifdef FEAT_LINEBREAK | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
202 // Don't count the chars from 'showbreak'. |
7 | 203 csize -= head; |
204 # endif | |
205 col -= csize; | |
206 } | |
207 | |
208 if (virtual_active() | |
209 && 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
|
210 && wcol >= 0 |
7 | 211 && ((col != wcol && col != wcol + 1) || csize > 1)) |
212 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
213 // '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
|
214 // filled with spaces. |
7 | 215 |
216 if (line[idx] == NUL) | |
217 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
218 // Append spaces |
7 | 219 int correct = wcol - col; |
220 char_u *newline = alloc(idx + correct + 1); | |
221 int t; | |
222 | |
223 if (newline == NULL) | |
224 return FAIL; | |
225 | |
226 for (t = 0; t < idx; ++t) | |
227 newline[t] = line[t]; | |
228 | |
229 for (t = 0; t < correct; ++t) | |
230 newline[t + idx] = ' '; | |
231 | |
232 newline[idx + correct] = NUL; | |
233 | |
234 ml_replace(pos->lnum, newline, FALSE); | |
235 changed_bytes(pos->lnum, (colnr_T)idx); | |
236 idx += correct; | |
237 col = wcol; | |
238 } | |
239 else | |
240 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
241 // Break a tab |
7 | 242 int linelen = (int)STRLEN(line); |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
243 int correct = wcol - col - csize + 1; // negative!! |
840 | 244 char_u *newline; |
7 | 245 int t, s = 0; |
246 int v; | |
247 | |
840 | 248 if (-correct > csize) |
249 return FAIL; | |
250 | |
251 newline = alloc(linelen + csize); | |
252 if (newline == NULL) | |
7 | 253 return FAIL; |
254 | |
255 for (t = 0; t < linelen; t++) | |
256 { | |
257 if (t != idx) | |
258 newline[s++] = line[t]; | |
259 else | |
260 for (v = 0; v < csize; v++) | |
261 newline[s++] = ' '; | |
262 } | |
263 | |
264 newline[linelen + csize - 1] = NUL; | |
265 | |
266 ml_replace(pos->lnum, newline, FALSE); | |
267 changed_bytes(pos->lnum, idx); | |
268 idx += (csize - 1 + correct); | |
269 col += correct; | |
270 } | |
271 } | |
272 } | |
273 | |
274 if (idx < 0) | |
275 pos->col = 0; | |
276 else | |
277 pos->col = idx; | |
278 | |
279 pos->coladd = 0; | |
280 | |
281 if (finetune) | |
282 { | |
283 if (wcol == MAXCOL) | |
284 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
285 // The width of the last character is used to set coladd. |
7 | 286 if (!one_more) |
287 { | |
288 colnr_T scol, ecol; | |
289 | |
290 getvcol(curwin, pos, &scol, NULL, &ecol); | |
291 pos->coladd = ecol - scol; | |
292 } | |
293 } | |
294 else | |
295 { | |
296 int b = (int)wcol - (int)col; | |
297 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
298 // 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
|
299 if (b > 0 && b < (MAXCOL - 2 * curwin->w_width)) |
7 | 300 pos->coladd = b; |
301 | |
302 col += b; | |
303 } | |
304 } | |
305 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
306 // prevent from moving onto a trail byte |
7 | 307 if (has_mbyte) |
2933 | 308 mb_adjustpos(curbuf, pos); |
7 | 309 |
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
|
310 if (wcol < 0 || col < wcol) |
7 | 311 return FAIL; |
312 return OK; | |
313 } | |
314 | |
315 /* | |
1621 | 316 * Increment the cursor position. See inc() for return values. |
7 | 317 */ |
318 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
319 inc_cursor(void) |
7 | 320 { |
321 return inc(&curwin->w_cursor); | |
322 } | |
323 | |
1621 | 324 /* |
325 * Increment the line pointer "lp" crossing line boundaries as necessary. | |
326 * Return 1 when going to the next line. | |
327 * Return 2 when moving forward onto a NUL at the end of the line). | |
328 * Return -1 when at the end of file. | |
329 * Return 0 otherwise. | |
330 */ | |
7 | 331 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
332 inc(pos_T *lp) |
7 | 333 { |
13082
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
334 char_u *p; |
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
335 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
336 // 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
|
337 if (lp->col != MAXCOL) |
7 | 338 { |
13082
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
339 p = ml_get_pos(lp); |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
340 if (*p != NUL) // still within line, move to next char (may be NUL) |
7 | 341 { |
13082
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
342 if (has_mbyte) |
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
343 { |
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
344 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
|
345 |
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
346 lp->col += l; |
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
347 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
|
348 } |
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
349 lp->col++; |
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
350 lp->coladd = 0; |
a80082fd1a1d
patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
351 return ((p[1] != NUL) ? 0 : 2); |
7 | 352 } |
353 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
354 if (lp->lnum != curbuf->b_ml.ml_line_count) // there is a next line |
7 | 355 { |
356 lp->col = 0; | |
357 lp->lnum++; | |
358 lp->coladd = 0; | |
359 return 1; | |
360 } | |
361 return -1; | |
362 } | |
363 | |
364 /* | |
365 * incl(lp): same as inc(), but skip the NUL at the end of non-empty lines | |
366 */ | |
367 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
368 incl(pos_T *lp) |
7 | 369 { |
370 int r; | |
371 | |
372 if ((r = inc(lp)) >= 1 && lp->col) | |
373 r = inc(lp); | |
374 return r; | |
375 } | |
376 | |
377 /* | |
378 * dec(p) | |
379 * | |
380 * Decrement the line pointer 'p' crossing line boundaries as necessary. | |
381 * Return 1 when crossing a line, -1 when at start of file, 0 otherwise. | |
382 */ | |
383 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
384 dec_cursor(void) |
7 | 385 { |
10549
055b1633aed7
patch 8.0.0164: outdated and misplaced comments
Christian Brabandt <cb@256bit.org>
parents:
10449
diff
changeset
|
386 return dec(&curwin->w_cursor); |
7 | 387 } |
388 | |
389 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
390 dec(pos_T *lp) |
7 | 391 { |
392 char_u *p; | |
393 | |
394 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
|
395 if (lp->col == MAXCOL) |
7 | 396 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
397 // 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
|
398 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
|
399 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
|
400 if (has_mbyte) |
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
401 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
|
402 return 0; |
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
403 } |
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
404 |
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
405 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
|
406 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
407 // still within line |
7 | 408 lp->col--; |
409 if (has_mbyte) | |
410 { | |
411 p = ml_get(lp->lnum); | |
412 lp->col -= (*mb_head_off)(p, p + lp->col); | |
413 } | |
414 return 0; | |
415 } | |
13084
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
416 |
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
417 if (lp->lnum > 1) |
7 | 418 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
419 // there is a prior line |
7 | 420 lp->lnum--; |
421 p = ml_get(lp->lnum); | |
422 lp->col = (colnr_T)STRLEN(p); | |
423 if (has_mbyte) | |
424 lp->col -= (*mb_head_off)(p, p + lp->col); | |
425 return 1; | |
426 } | |
13084
25ab78f14c8b
patch 8.0.1417: test doesn't search for a sentence
Christian Brabandt <cb@256bit.org>
parents:
13082
diff
changeset
|
427 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
428 // 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
|
429 return -1; |
7 | 430 } |
431 | |
432 /* | |
433 * decl(lp): same as dec(), but skip the NUL at the end of non-empty lines | |
434 */ | |
435 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
436 decl(pos_T *lp) |
7 | 437 { |
438 int r; | |
439 | |
440 if ((r = dec(lp)) == 1 && lp->col) | |
441 r = dec(lp); | |
442 return r; | |
443 } | |
444 | |
445 /* | |
2178
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
446 * 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
|
447 * 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
|
448 * can be visible, folded lines don't count. |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
449 */ |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
450 linenr_T |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
451 get_cursor_rel_lnum( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
452 win_T *wp, |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
453 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
|
454 { |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
455 linenr_T cursor = wp->w_cursor.lnum; |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
456 linenr_T retval = 0; |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
457 |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
458 #ifdef FEAT_FOLDING |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
459 if (hasAnyFolding(wp)) |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
460 { |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
461 if (lnum > cursor) |
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 while (lnum > cursor) |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
464 { |
5564 | 465 (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
|
466 // 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
|
467 // now lnum <= cursor |
2178
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
468 if (lnum > cursor) |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
469 retval++; |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
470 lnum--; |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
471 } |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
472 } |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
473 else if (lnum < cursor) |
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 while (lnum < cursor) |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
476 { |
5564 | 477 (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
|
478 // 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
|
479 // now lnum >= cursor |
2178
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
480 if (lnum < cursor) |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
481 retval--; |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
482 lnum++; |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
483 } |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
484 } |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
485 // else if (lnum == cursor) |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
486 // retval = 0; |
2178
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
487 } |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
488 else |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
489 #endif |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
490 retval = lnum - cursor; |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
491 |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
492 return retval; |
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 |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2027
diff
changeset
|
495 /* |
10110
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
496 * 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
|
497 * 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
|
498 */ |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
499 void |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
500 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
|
501 { |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
502 char_u *line; |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
503 colnr_T len; |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
504 |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
505 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
|
506 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
|
507 |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
508 if (pos->col > 0) |
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 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
|
511 len = (colnr_T)STRLEN(line); |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
512 if (pos->col > len) |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
513 pos->col = len; |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
514 } |
cfb38b57d407
commit https://github.com/vim/vim/commit/d5824ce1b5491df7d2eb0b66189d366fa67b4585
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
515 } |
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 /* |
7 | 518 * Make sure curwin->w_cursor.lnum is valid. |
519 */ | |
520 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
521 check_cursor_lnum(void) |
7 | 522 { |
523 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) | |
524 { | |
525 #ifdef FEAT_FOLDING | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
526 // 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
|
527 // its first line. Otherwise in the last line. |
7 | 528 if (!hasFolding(curbuf->b_ml.ml_line_count, |
529 &curwin->w_cursor.lnum, NULL)) | |
530 #endif | |
531 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
532 } | |
533 if (curwin->w_cursor.lnum <= 0) | |
534 curwin->w_cursor.lnum = 1; | |
535 } | |
536 | |
537 /* | |
538 * Make sure curwin->w_cursor.col is valid. | |
539 */ | |
540 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
541 check_cursor_col(void) |
7 | 542 { |
2933 | 543 check_cursor_col_win(curwin); |
544 } | |
545 | |
546 /* | |
547 * Make sure win->w_cursor.col is valid. | |
548 */ | |
549 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
550 check_cursor_col_win(win_T *win) |
2933 | 551 { |
7 | 552 colnr_T len; |
2933 | 553 colnr_T oldcol = win->w_cursor.col; |
554 colnr_T oldcoladd = win->w_cursor.col + win->w_cursor.coladd; | |
555 | |
556 len = (colnr_T)STRLEN(ml_get_buf(win->w_buffer, win->w_cursor.lnum, FALSE)); | |
7 | 557 if (len == 0) |
2933 | 558 win->w_cursor.col = 0; |
559 else if (win->w_cursor.col >= len) | |
7 | 560 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
561 // Allow cursor past end-of-line when: |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
562 // - in Insert mode or restarting Insert mode |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
563 // - 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
|
564 // - 'virtualedit' is set |
620 | 565 if ((State & INSERT) || restart_edit |
7 | 566 || (VIsual_active && *p_sel != 'o') |
1488 | 567 || (ve_flags & VE_ONEMORE) |
7 | 568 || virtual_active()) |
2933 | 569 win->w_cursor.col = len; |
7 | 570 else |
1099 | 571 { |
2933 | 572 win->w_cursor.col = len - 1; |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
573 // Move the cursor to the head byte. |
1099 | 574 if (has_mbyte) |
2933 | 575 mb_adjustpos(win->w_buffer, &win->w_cursor); |
1099 | 576 } |
7 | 577 } |
2933 | 578 else if (win->w_cursor.col < 0) |
579 win->w_cursor.col = 0; | |
7 | 580 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
581 // 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
|
582 // 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
|
583 // line. |
7 | 584 if (oldcol == MAXCOL) |
2933 | 585 win->w_cursor.coladd = 0; |
7 | 586 else if (ve_flags == VE_ALL) |
1841 | 587 { |
2933 | 588 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
|
589 { |
2933 | 590 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
|
591 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
592 // 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
|
593 // 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
|
594 // 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
|
595 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
|
596 { |
5d82470552ce
patch 8.0.0962: crash with virtualedit and joining lines
Christian Brabandt <cb@256bit.org>
parents:
11737
diff
changeset
|
597 int cs, ce; |
5d82470552ce
patch 8.0.0962: crash with virtualedit and joining lines
Christian Brabandt <cb@256bit.org>
parents:
11737
diff
changeset
|
598 |
5d82470552ce
patch 8.0.0962: crash with virtualedit and joining lines
Christian Brabandt <cb@256bit.org>
parents:
11737
diff
changeset
|
599 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
|
600 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
|
601 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
|
602 } |
5d82470552ce
patch 8.0.0962: crash with virtualedit and joining lines
Christian Brabandt <cb@256bit.org>
parents:
11737
diff
changeset
|
603 } |
1841 | 604 else |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
605 // avoid weird number when there is a miscalculation or overflow |
2933 | 606 win->w_cursor.coladd = 0; |
1841 | 607 } |
7 | 608 } |
609 | |
610 /* | |
611 * make sure curwin->w_cursor in on a valid character | |
612 */ | |
613 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
614 check_cursor(void) |
7 | 615 { |
616 check_cursor_lnum(); | |
617 check_cursor_col(); | |
618 } | |
619 | |
620 #if defined(FEAT_TEXTOBJ) || defined(PROTO) | |
621 /* | |
622 * Make sure curwin->w_cursor is not on the NUL at the end of the line. | |
623 * Allow it when in Visual mode and 'selection' is not "old". | |
624 */ | |
625 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
626 adjust_cursor_col(void) |
7 | 627 { |
628 if (curwin->w_cursor.col > 0 | |
629 && (!VIsual_active || *p_sel == 'o') | |
630 && gchar_cursor() == NUL) | |
631 --curwin->w_cursor.col; | |
632 } | |
633 #endif | |
634 | |
635 /* | |
636 * When curwin->w_leftcol has changed, adjust the cursor position. | |
637 * Return TRUE if the cursor was moved. | |
638 */ | |
639 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
640 leftcol_changed(void) |
7 | 641 { |
642 long lastcol; | |
643 colnr_T s, e; | |
644 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
|
645 long siso = get_sidescrolloff_value(); |
7 | 646 |
647 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
|
648 lastcol = curwin->w_leftcol + curwin->w_width - curwin_col_off() - 1; |
7 | 649 validate_virtcol(); |
650 | |
651 /* | |
652 * If the cursor is right or left of the screen, move it to last or first | |
653 * character. | |
654 */ | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15675
diff
changeset
|
655 if (curwin->w_virtcol > (colnr_T)(lastcol - siso)) |
7 | 656 { |
657 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
|
658 coladvance((colnr_T)(lastcol - siso)); |
7 | 659 } |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15675
diff
changeset
|
660 else if (curwin->w_virtcol < curwin->w_leftcol + siso) |
7 | 661 { |
662 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
|
663 (void)coladvance((colnr_T)(curwin->w_leftcol + siso)); |
7 | 664 } |
665 | |
666 /* | |
667 * If the start of the character under the cursor is not on the screen, | |
668 * advance the cursor one more char. If this fails (last char of the | |
669 * line) adjust the scrolling. | |
670 */ | |
671 getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e); | |
672 if (e > (colnr_T)lastcol) | |
673 { | |
674 retval = TRUE; | |
675 coladvance(s - 1); | |
676 } | |
677 else if (s < curwin->w_leftcol) | |
678 { | |
679 retval = TRUE; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
680 if (coladvance(e + 1) == FAIL) // there isn't another character |
7 | 681 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
682 curwin->w_leftcol = s; // adjust w_leftcol instead |
7 | 683 changed_cline_bef_curs(); |
684 } | |
685 } | |
686 | |
687 if (retval) | |
688 curwin->w_set_curswant = TRUE; | |
689 redraw_later(NOT_VALID); | |
690 return retval; | |
691 } | |
692 | |
693 /********************************************************************** | |
694 * Various routines dealing with allocation and deallocation of memory. | |
695 */ | |
696 | |
697 #if defined(MEM_PROFILE) || defined(PROTO) | |
698 | |
699 # define MEM_SIZES 8200 | |
700 static long_u mem_allocs[MEM_SIZES]; | |
701 static long_u mem_frees[MEM_SIZES]; | |
702 static long_u mem_allocated; | |
703 static long_u mem_freed; | |
704 static long_u mem_peak; | |
705 static long_u num_alloc; | |
706 static long_u num_freed; | |
707 | |
708 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
709 mem_pre_alloc_s(size_t *sizep) |
7 | 710 { |
711 *sizep += sizeof(size_t); | |
712 } | |
713 | |
714 static void | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
715 mem_pre_alloc_l(size_t *sizep) |
7 | 716 { |
717 *sizep += sizeof(size_t); | |
718 } | |
719 | |
720 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
721 mem_post_alloc( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
722 void **pp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
723 size_t size) |
7 | 724 { |
725 if (*pp == NULL) | |
726 return; | |
727 size -= sizeof(size_t); | |
728 *(long_u *)*pp = size; | |
729 if (size <= MEM_SIZES-1) | |
730 mem_allocs[size-1]++; | |
731 else | |
732 mem_allocs[MEM_SIZES-1]++; | |
733 mem_allocated += size; | |
734 if (mem_allocated - mem_freed > mem_peak) | |
735 mem_peak = mem_allocated - mem_freed; | |
736 num_alloc++; | |
737 *pp = (void *)((char *)*pp + sizeof(size_t)); | |
738 } | |
739 | |
740 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
741 mem_pre_free(void **pp) |
7 | 742 { |
743 long_u size; | |
744 | |
745 *pp = (void *)((char *)*pp - sizeof(size_t)); | |
746 size = *(size_t *)*pp; | |
747 if (size <= MEM_SIZES-1) | |
748 mem_frees[size-1]++; | |
749 else | |
750 mem_frees[MEM_SIZES-1]++; | |
751 mem_freed += size; | |
752 num_freed++; | |
753 } | |
754 | |
755 /* | |
756 * called on exit via atexit() | |
757 */ | |
758 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
759 vim_mem_profile_dump(void) |
7 | 760 { |
761 int i, j; | |
762 | |
763 printf("\r\n"); | |
764 j = 0; | |
765 for (i = 0; i < MEM_SIZES - 1; i++) | |
766 { | |
767 if (mem_allocs[i] || mem_frees[i]) | |
768 { | |
769 if (mem_frees[i] > mem_allocs[i]) | |
770 printf("\r\n%s", _("ERROR: ")); | |
771 printf("[%4d / %4lu-%-4lu] ", i + 1, mem_allocs[i], mem_frees[i]); | |
772 j++; | |
773 if (j > 3) | |
774 { | |
775 j = 0; | |
776 printf("\r\n"); | |
777 } | |
778 } | |
779 } | |
780 | |
781 i = MEM_SIZES - 1; | |
782 if (mem_allocs[i]) | |
783 { | |
784 printf("\r\n"); | |
785 if (mem_frees[i] > mem_allocs[i]) | |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2522
diff
changeset
|
786 puts(_("ERROR: ")); |
7 | 787 printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]); |
788 } | |
789 | |
790 printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"), | |
791 mem_allocated, mem_freed, mem_allocated - mem_freed, mem_peak); | |
792 printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"), | |
793 num_alloc, num_freed); | |
794 } | |
795 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
796 #endif // MEM_PROFILE |
7 | 797 |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
798 #ifdef FEAT_EVAL |
15016
c338c91086b9
patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
799 int |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
800 alloc_does_fail(size_t size) |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
801 { |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
802 if (alloc_fail_countdown == 0) |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
803 { |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
804 if (--alloc_fail_repeat <= 0) |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
805 alloc_fail_id = 0; |
7593
87e607fb6853
commit https://github.com/vim/vim/commit/a260b87d9da17f605666630f18c1ed909c2b8bae
Christian Brabandt <cb@256bit.org>
parents:
7545
diff
changeset
|
806 do_outofmem_msg(size); |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
807 return TRUE; |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
808 } |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
809 --alloc_fail_countdown; |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
810 return FALSE; |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
811 } |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
812 #endif |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
813 |
7 | 814 /* |
815 * Some memory is reserved for error messages and for being able to | |
816 * call mf_release_all(), which needs some memory for mf_trans_add(). | |
817 */ | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8174
diff
changeset
|
818 #define KEEP_ROOM (2 * 8192L) |
3634 | 819 #define KEEP_ROOM_KB (KEEP_ROOM / 1024L) |
7 | 820 |
821 /* | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
822 * The normal way to allocate memory. This handles an out-of-memory situation |
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
823 * as well as possible, still returns NULL when we're completely out. |
7 | 824 */ |
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
|
825 void * |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
826 alloc(size_t size) |
7 | 827 { |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
828 return lalloc(size, TRUE); |
7 | 829 } |
830 | |
831 /* | |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
832 * alloc() with an ID for alloc_fail(). |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
833 */ |
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
|
834 void * |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
835 alloc_id(size_t size, alloc_id_T id UNUSED) |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
836 { |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
837 #ifdef FEAT_EVAL |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
838 if (alloc_fail_id == id && alloc_does_fail(size)) |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
839 return NULL; |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
840 #endif |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
841 return lalloc(size, TRUE); |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
842 } |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
843 |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
844 /* |
7 | 845 * Allocate memory and set all bytes to zero. |
846 */ | |
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
|
847 void * |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
848 alloc_clear(size_t size) |
7 | 849 { |
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
|
850 void *p; |
7 | 851 |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
852 p = lalloc(size, TRUE); |
7 | 853 if (p != NULL) |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
854 (void)vim_memset(p, 0, size); |
7 | 855 return p; |
856 } | |
857 | |
858 /* | |
15209
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
15188
diff
changeset
|
859 * Same as alloc_clear() but with allocation id for testing |
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
15188
diff
changeset
|
860 */ |
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
|
861 void * |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
862 alloc_clear_id(size_t size, alloc_id_T id UNUSED) |
15209
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
15188
diff
changeset
|
863 { |
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
15188
diff
changeset
|
864 #ifdef FEAT_EVAL |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
865 if (alloc_fail_id == id && alloc_does_fail(size)) |
15209
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
15188
diff
changeset
|
866 return NULL; |
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
15188
diff
changeset
|
867 #endif |
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
15188
diff
changeset
|
868 return alloc_clear(size); |
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
15188
diff
changeset
|
869 } |
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
15188
diff
changeset
|
870 |
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
15188
diff
changeset
|
871 /* |
7 | 872 * Allocate memory like lalloc() and set all bytes to zero. |
873 */ | |
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
|
874 void * |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
875 lalloc_clear(size_t size, int message) |
7 | 876 { |
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
|
877 void *p; |
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
878 |
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
879 p = lalloc(size, message); |
7 | 880 if (p != NULL) |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
881 (void)vim_memset(p, 0, size); |
7 | 882 return p; |
883 } | |
884 | |
885 /* | |
886 * Low level memory allocation function. | |
887 * This is used often, KEEP IT FAST! | |
888 */ | |
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
|
889 void * |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
890 lalloc(size_t size, int message) |
7 | 891 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
892 void *p; // pointer to new storage space |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
893 static int releasing = FALSE; // don't do mf_release_all() recursive |
7 | 894 int try_again; |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8174
diff
changeset
|
895 #if defined(HAVE_AVAIL_MEM) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
896 static size_t allocated = 0; // allocated since last avail check |
7 | 897 #endif |
898 | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
899 // Safety check for allocating zero bytes |
7 | 900 if (size == 0) |
901 { | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
902 // Don't hide this message |
7 | 903 emsg_silent = 0; |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
904 iemsg(_("E341: Internal error: lalloc(0, )")); |
7 | 905 return NULL; |
906 } | |
907 | |
908 #ifdef MEM_PROFILE | |
909 mem_pre_alloc_l(&size); | |
910 #endif | |
911 | |
912 /* | |
913 * Loop when out of memory: Try to release some memfile blocks and | |
914 * if some blocks are released call malloc again. | |
915 */ | |
916 for (;;) | |
917 { | |
918 /* | |
919 * Handle three kind of systems: | |
920 * 1. No check for available memory: Just return. | |
921 * 2. Slow check for available memory: call mch_avail_mem() after | |
922 * allocating KEEP_ROOM amount of memory. | |
923 * 3. Strict check for available memory: call mch_avail_mem() | |
924 */ | |
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
|
925 if ((p = malloc(size)) != NULL) |
7 | 926 { |
927 #ifndef HAVE_AVAIL_MEM | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
928 // 1. No check for available memory: Just return. |
7 | 929 goto theend; |
930 #else | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
931 // 2. Slow check for available memory: call mch_avail_mem() after |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
932 // allocating (KEEP_ROOM / 2) amount of memory. |
7 | 933 allocated += size; |
934 if (allocated < KEEP_ROOM / 2) | |
935 goto theend; | |
936 allocated = 0; | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8174
diff
changeset
|
937 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
938 // 3. check for available memory: call mch_avail_mem() |
3634 | 939 if (mch_avail_mem(TRUE) < KEEP_ROOM_KB && !releasing) |
7 | 940 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
941 free(p); // System is low... no go! |
7 | 942 p = NULL; |
943 } | |
944 else | |
945 goto theend; | |
946 #endif | |
947 } | |
948 /* | |
949 * Remember that mf_release_all() is being called to avoid an endless | |
950 * loop, because mf_release_all() may call alloc() recursively. | |
951 */ | |
952 if (releasing) | |
953 break; | |
954 releasing = TRUE; | |
448 | 955 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
956 clear_sb_text(TRUE); // free any scrollback text |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
957 try_again = mf_release_all(); // release as many blocks as possible |
448 | 958 |
7 | 959 releasing = FALSE; |
960 if (!try_again) | |
961 break; | |
962 } | |
963 | |
964 if (message && p == NULL) | |
965 do_outofmem_msg(size); | |
966 | |
967 theend: | |
968 #ifdef MEM_PROFILE | |
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
|
969 mem_post_alloc(&p, size); |
7 | 970 #endif |
971 return p; | |
972 } | |
973 | |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
974 /* |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
975 * lalloc() with an ID for alloc_fail(). |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
976 */ |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
977 #if defined(FEAT_SIGNS) || defined(PROTO) |
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
|
978 void * |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
979 lalloc_id(size_t size, int message, alloc_id_T id UNUSED) |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
980 { |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
981 #ifdef FEAT_EVAL |
7593
87e607fb6853
commit https://github.com/vim/vim/commit/a260b87d9da17f605666630f18c1ed909c2b8bae
Christian Brabandt <cb@256bit.org>
parents:
7545
diff
changeset
|
982 if (alloc_fail_id == id && alloc_does_fail(size)) |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
983 return NULL; |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
984 #endif |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
985 return (lalloc(size, message)); |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
986 } |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
987 #endif |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
988 |
7 | 989 #if defined(MEM_PROFILE) || defined(PROTO) |
990 /* | |
991 * realloc() with memory profiling. | |
992 */ | |
993 void * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
994 mem_realloc(void *ptr, size_t size) |
7 | 995 { |
996 void *p; | |
997 | |
998 mem_pre_free(&ptr); | |
999 mem_pre_alloc_s(&size); | |
1000 | |
1001 p = realloc(ptr, size); | |
1002 | |
1003 mem_post_alloc(&p, size); | |
1004 | |
1005 return p; | |
1006 } | |
1007 #endif | |
1008 | |
1009 /* | |
1010 * Avoid repeating the error message many times (they take 1 second each). | |
1011 * Did_outofmem_msg is reset when a character is read. | |
1012 */ | |
1013 void | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
1014 do_outofmem_msg(size_t size) |
7 | 1015 { |
1016 if (!did_outofmem_msg) | |
1017 { | |
17803
c9e52c1613ef
patch 8.1.1898: crash when out of memory during startup
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
1018 // Don't hide this message |
7 | 1019 emsg_silent = 0; |
3156 | 1020 |
17803
c9e52c1613ef
patch 8.1.1898: crash when out of memory during startup
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
1021 // Must come first to avoid coming back here when printing the error |
c9e52c1613ef
patch 8.1.1898: crash when out of memory during startup
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
1022 // message fails, e.g. when setting v:errmsg. |
3156 | 1023 did_outofmem_msg = TRUE; |
1024 | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
1025 semsg(_("E342: Out of memory! (allocating %lu bytes)"), (long_u)size); |
17803
c9e52c1613ef
patch 8.1.1898: crash when out of memory during startup
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
1026 |
c9e52c1613ef
patch 8.1.1898: crash when out of memory during startup
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
1027 if (starting == NO_SCREEN) |
c9e52c1613ef
patch 8.1.1898: crash when out of memory during startup
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
1028 // Not even finished with initializations and already out of |
c9e52c1613ef
patch 8.1.1898: crash when out of memory during startup
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
1029 // memory? Then nothing is going to work, exit. |
c9e52c1613ef
patch 8.1.1898: crash when out of memory during startup
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
1030 mch_exit(123); |
7 | 1031 } |
1032 } | |
1033 | |
356 | 1034 #if defined(EXITFREE) || defined(PROTO) |
359 | 1035 |
356 | 1036 /* |
1037 * Free everything that we allocated. | |
1038 * Can be used to detect memory leaks, e.g., with ccmalloc. | |
359 | 1039 * NOTE: This is tricky! Things are freed that functions depend on. Don't be |
1040 * surprised if Vim crashes... | |
1041 * Some things can't be freed, esp. things local to a library function. | |
356 | 1042 */ |
1043 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1044 free_all_mem(void) |
356 | 1045 { |
1046 buf_T *buf, *nextbuf; | |
359 | 1047 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1048 // When we cause a crash here it is caught and Vim tries to exit cleanly. |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1049 // Don't try freeing everything again. |
9169
0ea97a753a2d
commit https://github.com/vim/vim/commit/b89a25f17e274dc308c584ea69a129ffbb26bc3d
Christian Brabandt <cb@256bit.org>
parents:
9165
diff
changeset
|
1050 if (entered_free_all_mem) |
359 | 1051 return; |
9169
0ea97a753a2d
commit https://github.com/vim/vim/commit/b89a25f17e274dc308c584ea69a129ffbb26bc3d
Christian Brabandt <cb@256bit.org>
parents:
9165
diff
changeset
|
1052 entered_free_all_mem = TRUE; |
9165
062eb6d28b0c
commit https://github.com/vim/vim/commit/a96732150cda2f242133228579b05437a39b8daa
Christian Brabandt <cb@256bit.org>
parents:
9143
diff
changeset
|
1053 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1054 // Don't want to trigger autocommands from here on. |
6222 | 1055 block_autocmds(); |
1446 | 1056 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1057 // Close all tabs and windows. Reset 'equalalways' to avoid redraws. |
2363
acbb3a9ccc07
Avoid error when exiting in diff mode with EXITFREE defined.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
1058 p_ea = FALSE; |
16511
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1059 if (first_tabpage != NULL && first_tabpage->tp_next != NULL) |
766 | 1060 do_cmdline_cmd((char_u *)"tabonly!"); |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10320
diff
changeset
|
1061 if (!ONE_WINDOW) |
766 | 1062 do_cmdline_cmd((char_u *)"only!"); |
673 | 1063 |
741 | 1064 # if defined(FEAT_SPELL) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1065 // Free all spell info. |
356 | 1066 spell_free_all(); |
1067 # endif | |
1068 | |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17803
diff
changeset
|
1069 # if defined(FEAT_BEVAL_TERM) |
13236
fee03d646e42
patch 8.0.1492: memory leak in balloon_split()
Christian Brabandt <cb@256bit.org>
parents:
13214
diff
changeset
|
1070 ui_remove_balloon(); |
fee03d646e42
patch 8.0.1492: memory leak in balloon_split()
Christian Brabandt <cb@256bit.org>
parents:
13214
diff
changeset
|
1071 # endif |
20384
42ab4d40e78f
patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents:
20380
diff
changeset
|
1072 # ifdef FEAT_PROP_POPUP |
20380
79c870b68cf3
patch 8.2.0745: crash on exit when not all popups are closed
Bram Moolenaar <Bram@vim.org>
parents:
20033
diff
changeset
|
1073 if (curwin != NULL) |
20384
42ab4d40e78f
patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents:
20380
diff
changeset
|
1074 close_all_popups(TRUE); |
20380
79c870b68cf3
patch 8.2.0745: crash on exit when not all popups are closed
Bram Moolenaar <Bram@vim.org>
parents:
20033
diff
changeset
|
1075 # endif |
13236
fee03d646e42
patch 8.0.1492: memory leak in balloon_split()
Christian Brabandt <cb@256bit.org>
parents:
13214
diff
changeset
|
1076 |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
1077 // Clear user commands (before deleting buffers). |
356 | 1078 ex_comclear(NULL); |
1079 | |
16511
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1080 // When exiting from mainerr_arg_missing curbuf has not been initialized, |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1081 // and not much else. |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1082 if (curbuf != NULL) |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1083 { |
356 | 1084 # ifdef FEAT_MENU |
16511
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1085 // Clear menus. |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1086 do_cmdline_cmd((char_u *)"aunmenu *"); |
1993 | 1087 # ifdef FEAT_MULTI_LANG |
16511
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1088 do_cmdline_cmd((char_u *)"menutranslate clear"); |
1993 | 1089 # endif |
356 | 1090 # endif |
16511
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1091 // Clear mappings, abbreviations, breakpoints. |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1092 do_cmdline_cmd((char_u *)"lmapclear"); |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1093 do_cmdline_cmd((char_u *)"xmapclear"); |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1094 do_cmdline_cmd((char_u *)"mapclear"); |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1095 do_cmdline_cmd((char_u *)"mapclear!"); |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1096 do_cmdline_cmd((char_u *)"abclear"); |
359 | 1097 # if defined(FEAT_EVAL) |
16511
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1098 do_cmdline_cmd((char_u *)"breakdel *"); |
359 | 1099 # endif |
362 | 1100 # if defined(FEAT_PROFILE) |
16511
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1101 do_cmdline_cmd((char_u *)"profdel *"); |
362 | 1102 # endif |
1828 | 1103 # if defined(FEAT_KEYMAP) |
16511
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1104 do_cmdline_cmd((char_u *)"set keymap="); |
17266
a9556c0ba457
patch 8.1.1632: build with EXITFREE but without +arabic fails
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
1105 # endif |
16511
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1106 } |
359 | 1107 |
1108 # ifdef FEAT_TITLE | |
1109 free_titles(); | |
1110 # endif | |
1111 # if defined(FEAT_SEARCHPATH) | |
1112 free_findfile(); | |
1113 # endif | |
356 | 1114 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1115 // Obviously named calls. |
356 | 1116 free_all_autocmds(); |
1117 clear_termcodes(); | |
359 | 1118 free_all_marks(); |
1119 alist_clear(&global_alist); | |
1120 free_homedir(); | |
3744 | 1121 free_users(); |
359 | 1122 free_search_patterns(); |
1123 free_old_sub(); | |
1124 free_last_insert(); | |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16058
diff
changeset
|
1125 free_insexpand_stuff(); |
359 | 1126 free_prev_shellcmd(); |
1127 free_regexp_stuff(); | |
1128 free_tag_stuff(); | |
1129 free_cd_dir(); | |
1828 | 1130 # ifdef FEAT_SIGNS |
1131 free_signs(); | |
1132 # endif | |
1446 | 1133 # ifdef FEAT_EVAL |
359 | 1134 set_expr_line(NULL); |
1446 | 1135 # endif |
1136 # ifdef FEAT_DIFF | |
16511
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1137 if (curtab != NULL) |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1138 diff_clear(curtab); |
1446 | 1139 # endif |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1140 clear_sb_text(TRUE); // free any scrollback text |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1141 |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1142 // Free some global vars. |
359 | 1143 vim_free(username); |
1422 | 1144 # ifdef FEAT_CLIPBOARD |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
1145 vim_regfree(clip_exclude_prog); |
1422 | 1146 # endif |
359 | 1147 vim_free(last_cmdline); |
1148 vim_free(new_last_cmdline); | |
680 | 1149 set_keep_msg(NULL, 0); |
356 | 1150 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1151 // Clear cmdline history. |
356 | 1152 p_hi = 0; |
1153 init_history(); | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18611
diff
changeset
|
1154 # ifdef FEAT_PROP_POPUP |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15016
diff
changeset
|
1155 clear_global_prop_types(); |
17266
a9556c0ba457
patch 8.1.1632: build with EXITFREE but without +arabic fails
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
1156 # endif |
a9556c0ba457
patch 8.1.1632: build with EXITFREE but without +arabic fails
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
1157 |
a9556c0ba457
patch 8.1.1632: build with EXITFREE but without +arabic fails
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
1158 # ifdef FEAT_QUICKFIX |
1446 | 1159 { |
1863 | 1160 win_T *win; |
1161 tabpage_T *tab; | |
1446 | 1162 |
1163 qf_free_all(NULL); | |
16511
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1164 // Free all location lists |
1863 | 1165 FOR_ALL_TAB_WINDOWS(tab, win) |
1446 | 1166 qf_free_all(win); |
1167 } | |
17266
a9556c0ba457
patch 8.1.1632: build with EXITFREE but without +arabic fails
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
1168 # endif |
359 | 1169 |
16511
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1170 // Close all script inputs. |
359 | 1171 close_all_scripts(); |
1172 | |
16511
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1173 if (curwin != NULL) |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1174 // Destroy all windows. Must come before freeing buffers. |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1175 win_free_all(); |
359 | 1176 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1177 // Free all option values. Must come after closing windows. |
12672
4e846c9d61a8
patch 8.0.1214: accessing freed memory when EXITFREE is set
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
1178 free_all_options(); |
4e846c9d61a8
patch 8.0.1214: accessing freed memory when EXITFREE is set
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
1179 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1180 // Free all buffers. Reset 'autochdir' to avoid accessing things that |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1181 // were freed already. |
17266
a9556c0ba457
patch 8.1.1632: build with EXITFREE but without +arabic fails
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
1182 # ifdef FEAT_AUTOCHDIR |
1576 | 1183 p_acd = FALSE; |
17266
a9556c0ba457
patch 8.1.1632: build with EXITFREE but without +arabic fails
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
1184 # endif |
356 | 1185 for (buf = firstbuf; buf != NULL; ) |
1186 { | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1187 bufref_T bufref; |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1188 |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1189 set_bufref(&bufref, buf); |
356 | 1190 nextbuf = buf->b_next; |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1191 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, FALSE); |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1192 if (bufref_valid(&bufref)) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1193 buf = nextbuf; // didn't work, try next one |
356 | 1194 else |
1195 buf = firstbuf; | |
1196 } | |
1197 | |
17266
a9556c0ba457
patch 8.1.1632: build with EXITFREE but without +arabic fails
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
1198 # ifdef FEAT_ARABIC |
a9556c0ba457
patch 8.1.1632: build with EXITFREE but without +arabic fails
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
1199 free_arshape_buf(); |
a9556c0ba457
patch 8.1.1632: build with EXITFREE but without +arabic fails
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
1200 # endif |
356 | 1201 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1202 // Clear registers. |
356 | 1203 clear_registers(); |
1204 ResetRedobuff(); | |
1205 ResetRedobuff(); | |
1206 | |
14954
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14905
diff
changeset
|
1207 # if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11) |
359 | 1208 vim_free(serverDelayedStartName); |
14954
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14905
diff
changeset
|
1209 # endif |
359 | 1210 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1211 // highlight info |
356 | 1212 free_highlight(); |
1213 | |
362 | 1214 reset_last_sourcing(); |
1215 | |
16511
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1216 if (first_tabpage != NULL) |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1217 { |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1218 free_tabpage(first_tabpage); |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1219 first_tabpage = NULL; |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1220 } |
766 | 1221 |
356 | 1222 # ifdef UNIX |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1223 // Machine-specific free. |
356 | 1224 mch_free_mem(); |
1225 # endif | |
1226 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1227 // message history |
356 | 1228 for (;;) |
1229 if (delete_first_msg() == FAIL) | |
1230 break; | |
1231 | |
9723
80ac9cf77c9b
commit https://github.com/vim/vim/commit/437bafe4c8a83ed71ee006eda7f54b65a90f0d4c
Christian Brabandt <cb@256bit.org>
parents:
9709
diff
changeset
|
1232 # ifdef FEAT_JOB_CHANNEL |
80ac9cf77c9b
commit https://github.com/vim/vim/commit/437bafe4c8a83ed71ee006eda7f54b65a90f0d4c
Christian Brabandt <cb@256bit.org>
parents:
9709
diff
changeset
|
1233 channel_free_all(); |
80ac9cf77c9b
commit https://github.com/vim/vim/commit/437bafe4c8a83ed71ee006eda7f54b65a90f0d4c
Christian Brabandt <cb@256bit.org>
parents:
9709
diff
changeset
|
1234 # endif |
14954
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14905
diff
changeset
|
1235 # ifdef FEAT_TIMERS |
9723
80ac9cf77c9b
commit https://github.com/vim/vim/commit/437bafe4c8a83ed71ee006eda7f54b65a90f0d4c
Christian Brabandt <cb@256bit.org>
parents:
9709
diff
changeset
|
1236 timer_free_all(); |
14954
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14905
diff
changeset
|
1237 # endif |
356 | 1238 # ifdef FEAT_EVAL |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1239 // must be after channel_free_all() with unrefs partials |
356 | 1240 eval_clear(); |
1241 # endif | |
9143
b9c1a397a8a6
commit https://github.com/vim/vim/commit/655da31a18ef3f888acf10e68b438e2a851f7b14
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
1242 # ifdef FEAT_JOB_CHANNEL |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1243 // must be after eval_clear() with unrefs jobs |
9143
b9c1a397a8a6
commit https://github.com/vim/vim/commit/655da31a18ef3f888acf10e68b438e2a851f7b14
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
1244 job_free_all(); |
b9c1a397a8a6
commit https://github.com/vim/vim/commit/655da31a18ef3f888acf10e68b438e2a851f7b14
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
1245 # endif |
356 | 1246 |
359 | 1247 free_termoptions(); |
1248 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1249 // screenlines (can't display anything now!) |
356 | 1250 free_screenlines(); |
1251 | |
17030
3e5ee8ce4671
patch 8.1.1515: memory leak reported for sound when build with EXITFREE
Bram Moolenaar <Bram@vim.org>
parents:
17028
diff
changeset
|
1252 # if defined(FEAT_SOUND) |
3e5ee8ce4671
patch 8.1.1515: memory leak reported for sound when build with EXITFREE
Bram Moolenaar <Bram@vim.org>
parents:
17028
diff
changeset
|
1253 sound_free(); |
3e5ee8ce4671
patch 8.1.1515: memory leak reported for sound when build with EXITFREE
Bram Moolenaar <Bram@vim.org>
parents:
17028
diff
changeset
|
1254 # endif |
14954
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14905
diff
changeset
|
1255 # if defined(USE_XSMP) |
356 | 1256 xsmp_close(); |
14954
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14905
diff
changeset
|
1257 # endif |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14905
diff
changeset
|
1258 # ifdef FEAT_GUI_GTK |
359 | 1259 gui_mch_free_all(); |
14954
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14905
diff
changeset
|
1260 # endif |
359 | 1261 clear_hl_tables(); |
356 | 1262 |
1263 vim_free(IObuff); | |
1264 vim_free(NameBuff); | |
14954
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14905
diff
changeset
|
1265 # ifdef FEAT_QUICKFIX |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14905
diff
changeset
|
1266 check_quickfix_busy(); |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14905
diff
changeset
|
1267 # endif |
356 | 1268 } |
1269 #endif | |
1270 | |
7 | 1271 /* |
2656 | 1272 * Copy "string" into newly allocated memory. |
7 | 1273 */ |
1274 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1275 vim_strsave(char_u *string) |
7 | 1276 { |
1277 char_u *p; | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
1278 size_t len; |
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
1279 |
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
1280 len = STRLEN(string) + 1; |
7 | 1281 p = alloc(len); |
1282 if (p != NULL) | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
1283 mch_memmove(p, string, len); |
7 | 1284 return p; |
1285 } | |
1286 | |
2656 | 1287 /* |
1288 * Copy up to "len" bytes of "string" into newly allocated memory and | |
1289 * terminate with a NUL. | |
1290 * The allocated memory always has size "len + 1", also when "string" is | |
1291 * shorter. | |
1292 */ | |
7 | 1293 char_u * |
20751
d9a2e5dcfd9f
patch 8.2.0928: many type casts are used for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
20627
diff
changeset
|
1294 vim_strnsave(char_u *string, size_t len) |
7 | 1295 { |
1296 char_u *p; | |
1297 | |
16782
fc58fee685e2
patch 8.1.1393: unnecessary type casts
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
1298 p = alloc(len + 1); |
7 | 1299 if (p != NULL) |
1300 { | |
1301 STRNCPY(p, string, len); | |
1302 p[len] = NUL; | |
1303 } | |
1304 return p; | |
1305 } | |
1306 | |
1307 /* | |
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
|
1308 * Copy "p[len]" into allocated memory, ignoring NUL characters. |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
1309 * Returns NULL when out of memory. |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
1310 */ |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
1311 char_u * |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
1312 vim_memsave(char_u *p, size_t len) |
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
|
1313 { |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
1314 char_u *ret = alloc(len); |
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
|
1315 |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
1316 if (ret != NULL) |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
1317 mch_memmove(ret, p, len); |
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
|
1318 return ret; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
1319 } |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
1320 |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
1321 /* |
7 | 1322 * Same as vim_strsave(), but any characters found in esc_chars are preceded |
1323 * by a backslash. | |
1324 */ | |
1325 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1326 vim_strsave_escaped(char_u *string, char_u *esc_chars) |
7 | 1327 { |
16 | 1328 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE); |
7 | 1329 } |
1330 | |
1331 /* | |
1332 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape | |
1333 * characters where rem_backslash() would remove the backslash. | |
16 | 1334 * Escape the characters with "cc". |
7 | 1335 */ |
1336 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1337 vim_strsave_escaped_ext( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1338 char_u *string, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1339 char_u *esc_chars, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1340 int cc, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1341 int bsl) |
7 | 1342 { |
1343 char_u *p; | |
1344 char_u *p2; | |
1345 char_u *escaped_string; | |
1346 unsigned length; | |
1347 int l; | |
1348 | |
1349 /* | |
1350 * First count the number of backslashes required. | |
1351 * Then allocate the memory and insert them. | |
1352 */ | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1353 length = 1; // count the trailing NUL |
7 | 1354 for (p = string; *p; p++) |
1355 { | |
474 | 1356 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) |
7 | 1357 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1358 length += l; // count a multibyte char |
7 | 1359 p += l - 1; |
1360 continue; | |
1361 } | |
1362 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p))) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1363 ++length; // count a backslash |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1364 ++length; // count an ordinary char |
7 | 1365 } |
1366 escaped_string = alloc(length); | |
1367 if (escaped_string != NULL) | |
1368 { | |
1369 p2 = escaped_string; | |
1370 for (p = string; *p; p++) | |
1371 { | |
474 | 1372 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) |
7 | 1373 { |
1374 mch_memmove(p2, p, (size_t)l); | |
1375 p2 += l; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1376 p += l - 1; // skip multibyte char |
7 | 1377 continue; |
1378 } | |
1379 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p))) | |
16 | 1380 *p2++ = cc; |
7 | 1381 *p2++ = *p; |
1382 } | |
1383 *p2 = NUL; | |
1384 } | |
1385 return escaped_string; | |
1386 } | |
1387 | |
1685 | 1388 /* |
1389 * Return TRUE when 'shell' has "csh" in the tail. | |
1390 */ | |
1391 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1392 csh_like_shell(void) |
1685 | 1393 { |
1394 return (strstr((char *)gettail(p_sh), "csh") != NULL); | |
1395 } | |
1712 | 1396 |
985 | 1397 /* |
1398 * Escape "string" for use as a shell argument with system(). | |
1993 | 1399 * This uses single quotes, except when we know we need to use double quotes |
985 | 1400 * (MS-DOS and MS-Windows without 'shellslash' set). |
1673 | 1401 * Escape a newline, depending on the 'shell' option. |
1402 * When "do_special" is TRUE also replace "!", "%", "#" and things starting | |
1403 * with "<" like "<cfile>". | |
5690 | 1404 * When "do_newline" is FALSE do not escape newline unless it is csh shell. |
985 | 1405 * Returns the result in allocated memory, NULL if we have run out. |
1406 */ | |
1407 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1408 vim_strsave_shellescape(char_u *string, int do_special, int do_newline) |
985 | 1409 { |
1410 unsigned length; | |
1411 char_u *p; | |
1412 char_u *d; | |
1413 char_u *escaped_string; | |
1661 | 1414 int l; |
1673 | 1415 int csh_like; |
1416 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1417 // Only csh and similar shells expand '!' within single quotes. For sh and |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1418 // the like we must not put a backslash before it, it will be taken |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1419 // literally. If do_special is set the '!' will be escaped twice. |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1420 // Csh also needs to have "\n" escaped twice when do_special is set. |
1685 | 1421 csh_like = csh_like_shell(); |
985 | 1422 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1423 // First count the number of extra bytes required. |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1424 length = (unsigned)STRLEN(string) + 3; // two quotes and a trailing NUL |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
1425 for (p = string; *p != NUL; MB_PTR_ADV(p)) |
985 | 1426 { |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
1427 # ifdef MSWIN |
985 | 1428 if (!p_ssl) |
1429 { | |
1430 if (*p == '"') | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1431 ++length; // " -> "" |
985 | 1432 } |
1433 else | |
1434 # endif | |
1435 if (*p == '\'') | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1436 length += 3; // ' => '\'' |
5690 | 1437 if ((*p == '\n' && (csh_like || do_newline)) |
1438 || (*p == '!' && (csh_like || do_special))) | |
1673 | 1439 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1440 ++length; // insert backslash |
1673 | 1441 if (csh_like && do_special) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1442 ++length; // insert backslash |
1673 | 1443 } |
1661 | 1444 if (do_special && find_cmdline_var(p, &l) >= 0) |
1445 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1446 ++length; // insert backslash |
1661 | 1447 p += l - 1; |
1448 } | |
985 | 1449 } |
1450 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1451 // Allocate memory for the result and fill it. |
985 | 1452 escaped_string = alloc(length); |
1453 if (escaped_string != NULL) | |
1454 { | |
1455 d = escaped_string; | |
1456 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1457 // add opening quote |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
1458 # ifdef MSWIN |
985 | 1459 if (!p_ssl) |
1460 *d++ = '"'; | |
1461 else | |
1462 # endif | |
1463 *d++ = '\''; | |
1464 | |
1465 for (p = string; *p != NUL; ) | |
1466 { | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
1467 # ifdef MSWIN |
985 | 1468 if (!p_ssl) |
1469 { | |
1470 if (*p == '"') | |
1471 { | |
1472 *d++ = '"'; | |
1473 *d++ = '"'; | |
1474 ++p; | |
1475 continue; | |
1476 } | |
1477 } | |
1478 else | |
1479 # endif | |
1480 if (*p == '\'') | |
1481 { | |
1661 | 1482 *d++ = '\''; |
1483 *d++ = '\\'; | |
1484 *d++ = '\''; | |
1485 *d++ = '\''; | |
985 | 1486 ++p; |
1487 continue; | |
1488 } | |
5690 | 1489 if ((*p == '\n' && (csh_like || do_newline)) |
1490 || (*p == '!' && (csh_like || do_special))) | |
1673 | 1491 { |
1492 *d++ = '\\'; | |
1493 if (csh_like && do_special) | |
1494 *d++ = '\\'; | |
1495 *d++ = *p++; | |
1496 continue; | |
1497 } | |
1661 | 1498 if (do_special && find_cmdline_var(p, &l) >= 0) |
1499 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1500 *d++ = '\\'; // insert backslash |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1501 while (--l >= 0) // copy the var |
1661 | 1502 *d++ = *p++; |
2009 | 1503 continue; |
1661 | 1504 } |
985 | 1505 |
1506 MB_COPY_CHAR(p, d); | |
1507 } | |
1508 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1509 // add terminating quote and finish with a NUL |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
1510 # ifdef MSWIN |
985 | 1511 if (!p_ssl) |
1512 *d++ = '"'; | |
1513 else | |
1514 # endif | |
1515 *d++ = '\''; | |
1516 *d = NUL; | |
1517 } | |
1518 | |
1519 return escaped_string; | |
1520 } | |
1521 | |
7 | 1522 /* |
1523 * Like vim_strsave(), but make all characters uppercase. | |
1524 * This uses ASCII lower-to-upper case translation, language independent. | |
1525 */ | |
1526 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1527 vim_strsave_up(char_u *string) |
7 | 1528 { |
1529 char_u *p1; | |
1530 | |
1531 p1 = vim_strsave(string); | |
1532 vim_strup(p1); | |
1533 return p1; | |
1534 } | |
1535 | |
1536 /* | |
1537 * Like vim_strnsave(), but make all characters uppercase. | |
1538 * This uses ASCII lower-to-upper case translation, language independent. | |
1539 */ | |
1540 char_u * | |
20751
d9a2e5dcfd9f
patch 8.2.0928: many type casts are used for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
20627
diff
changeset
|
1541 vim_strnsave_up(char_u *string, size_t len) |
7 | 1542 { |
1543 char_u *p1; | |
1544 | |
1545 p1 = vim_strnsave(string, len); | |
1546 vim_strup(p1); | |
1547 return p1; | |
1548 } | |
1549 | |
1550 /* | |
1551 * ASCII lower-to-upper case translation, language independent. | |
1552 */ | |
1553 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1554 vim_strup( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1555 char_u *p) |
7 | 1556 { |
1557 char_u *p2; | |
1558 int c; | |
1559 | |
1560 if (p != NULL) | |
1561 { | |
1562 p2 = p; | |
1563 while ((c = *p2) != NUL) | |
1564 #ifdef EBCDIC | |
1565 *p2++ = isalpha(c) ? toupper(c) : c; | |
1566 #else | |
1567 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20); | |
1568 #endif | |
1569 } | |
1570 } | |
1571 | |
741 | 1572 #if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO) |
323 | 1573 /* |
1574 * Make string "s" all upper-case and return it in allocated memory. | |
1575 * Handles multi-byte characters as well as possible. | |
1576 * Returns NULL when out of memory. | |
1577 */ | |
1578 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1579 strup_save(char_u *orig) |
323 | 1580 { |
1581 char_u *p; | |
1582 char_u *res; | |
1583 | |
1584 res = p = vim_strsave(orig); | |
1585 | |
1586 if (res != NULL) | |
1587 while (*p != NUL) | |
1588 { | |
1589 int l; | |
1590 | |
1591 if (enc_utf8) | |
1592 { | |
1593 int c, uc; | |
3263 | 1594 int newl; |
323 | 1595 char_u *s; |
1596 | |
1597 c = utf_ptr2char(p); | |
13092
d5647746c267
patch 8.0.1421: accessing invalid memory with overlong byte sequence
Christian Brabandt <cb@256bit.org>
parents:
13084
diff
changeset
|
1598 l = utf_ptr2len(p); |
d5647746c267
patch 8.0.1421: accessing invalid memory with overlong byte sequence
Christian Brabandt <cb@256bit.org>
parents:
13084
diff
changeset
|
1599 if (c == 0) |
d5647746c267
patch 8.0.1421: accessing invalid memory with overlong byte sequence
Christian Brabandt <cb@256bit.org>
parents:
13084
diff
changeset
|
1600 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1601 // overlong sequence, use only the first byte |
13092
d5647746c267
patch 8.0.1421: accessing invalid memory with overlong byte sequence
Christian Brabandt <cb@256bit.org>
parents:
13084
diff
changeset
|
1602 c = *p; |
d5647746c267
patch 8.0.1421: accessing invalid memory with overlong byte sequence
Christian Brabandt <cb@256bit.org>
parents:
13084
diff
changeset
|
1603 l = 1; |
d5647746c267
patch 8.0.1421: accessing invalid memory with overlong byte sequence
Christian Brabandt <cb@256bit.org>
parents:
13084
diff
changeset
|
1604 } |
323 | 1605 uc = utf_toupper(c); |
1606 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1607 // Reallocate string when byte count changes. This is rare, |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1608 // thus it's OK to do another malloc()/free(). |
3263 | 1609 newl = utf_char2len(uc); |
1610 if (newl != l) | |
323 | 1611 { |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
1612 s = alloc(STRLEN(res) + 1 + newl - l); |
323 | 1613 if (s == NULL) |
10706
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1614 { |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1615 vim_free(res); |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1616 return NULL; |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1617 } |
323 | 1618 mch_memmove(s, res, p - res); |
3263 | 1619 STRCPY(s + (p - res) + newl, p + l); |
323 | 1620 p = s + (p - res); |
1621 vim_free(res); | |
1622 res = s; | |
1623 } | |
1624 | |
1625 utf_char2bytes(uc, p); | |
3263 | 1626 p += newl; |
323 | 1627 } |
474 | 1628 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1629 p += l; // skip multi-byte character |
323 | 1630 else |
1631 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1632 *p = TOUPPER_LOC(*p); // note that toupper() can be a macro |
323 | 1633 p++; |
1634 } | |
1635 } | |
1636 | |
1637 return res; | |
1638 } | |
10706
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1639 |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1640 /* |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1641 * Make string "s" all lower-case and return it in allocated memory. |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1642 * Handles multi-byte characters as well as possible. |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1643 * Returns NULL when out of memory. |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1644 */ |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1645 char_u * |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1646 strlow_save(char_u *orig) |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1647 { |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1648 char_u *p; |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1649 char_u *res; |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1650 |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1651 res = p = vim_strsave(orig); |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1652 |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1653 if (res != NULL) |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1654 while (*p != NUL) |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1655 { |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1656 int l; |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1657 |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1658 if (enc_utf8) |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1659 { |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1660 int c, lc; |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1661 int newl; |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1662 char_u *s; |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1663 |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1664 c = utf_ptr2char(p); |
13092
d5647746c267
patch 8.0.1421: accessing invalid memory with overlong byte sequence
Christian Brabandt <cb@256bit.org>
parents:
13084
diff
changeset
|
1665 l = utf_ptr2len(p); |
d5647746c267
patch 8.0.1421: accessing invalid memory with overlong byte sequence
Christian Brabandt <cb@256bit.org>
parents:
13084
diff
changeset
|
1666 if (c == 0) |
d5647746c267
patch 8.0.1421: accessing invalid memory with overlong byte sequence
Christian Brabandt <cb@256bit.org>
parents:
13084
diff
changeset
|
1667 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1668 // overlong sequence, use only the first byte |
13092
d5647746c267
patch 8.0.1421: accessing invalid memory with overlong byte sequence
Christian Brabandt <cb@256bit.org>
parents:
13084
diff
changeset
|
1669 c = *p; |
d5647746c267
patch 8.0.1421: accessing invalid memory with overlong byte sequence
Christian Brabandt <cb@256bit.org>
parents:
13084
diff
changeset
|
1670 l = 1; |
d5647746c267
patch 8.0.1421: accessing invalid memory with overlong byte sequence
Christian Brabandt <cb@256bit.org>
parents:
13084
diff
changeset
|
1671 } |
10706
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1672 lc = utf_tolower(c); |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1673 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1674 // Reallocate string when byte count changes. This is rare, |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1675 // thus it's OK to do another malloc()/free(). |
10706
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1676 newl = utf_char2len(lc); |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1677 if (newl != l) |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1678 { |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
1679 s = alloc(STRLEN(res) + 1 + newl - l); |
10706
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1680 if (s == NULL) |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1681 { |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1682 vim_free(res); |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1683 return NULL; |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1684 } |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1685 mch_memmove(s, res, p - res); |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1686 STRCPY(s + (p - res) + newl, p + l); |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1687 p = s + (p - res); |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1688 vim_free(res); |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1689 res = s; |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1690 } |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1691 |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1692 utf_char2bytes(lc, p); |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1693 p += newl; |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1694 } |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1695 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1696 p += l; // skip multi-byte character |
10706
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1697 else |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1698 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1699 *p = TOLOWER_LOC(*p); // note that tolower() can be a macro |
10706
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1700 p++; |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1701 } |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1702 } |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1703 |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1704 return res; |
056e32b99e93
patch 8.0.0243: tolower() does not work if the byte count changes
Christian Brabandt <cb@256bit.org>
parents:
10702
diff
changeset
|
1705 } |
323 | 1706 #endif |
1707 | |
7 | 1708 /* |
1709 * delete spaces at the end of a string | |
1710 */ | |
1711 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1712 del_trailing_spaces(char_u *ptr) |
7 | 1713 { |
1714 char_u *q; | |
1715 | |
1716 q = ptr + STRLEN(ptr); | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
1717 while (--q > ptr && VIM_ISWHITE(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V) |
7 | 1718 *q = NUL; |
1719 } | |
1720 | |
1721 /* | |
323 | 1722 * Like strncpy(), but always terminate the result with one NUL. |
378 | 1723 * "to" must be "len + 1" long! |
7 | 1724 */ |
1725 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1726 vim_strncpy(char_u *to, char_u *from, size_t len) |
7 | 1727 { |
323 | 1728 STRNCPY(to, from, len); |
1729 to[len] = NUL; | |
7 | 1730 } |
1731 | |
1732 /* | |
2768 | 1733 * Like strcat(), but make sure the result fits in "tosize" bytes and is |
10716
905ab712979c
patch 8.0.0248: vim_strcat() cannot handle overlapping arguments
Christian Brabandt <cb@256bit.org>
parents:
10706
diff
changeset
|
1734 * always NUL terminated. "from" and "to" may overlap. |
2768 | 1735 */ |
1736 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1737 vim_strcat(char_u *to, char_u *from, size_t tosize) |
2768 | 1738 { |
1739 size_t tolen = STRLEN(to); | |
1740 size_t fromlen = STRLEN(from); | |
1741 | |
1742 if (tolen + fromlen + 1 > tosize) | |
1743 { | |
1744 mch_memmove(to + tolen, from, tosize - tolen - 1); | |
1745 to[tosize - 1] = NUL; | |
1746 } | |
1747 else | |
10716
905ab712979c
patch 8.0.0248: vim_strcat() cannot handle overlapping arguments
Christian Brabandt <cb@256bit.org>
parents:
10706
diff
changeset
|
1748 mch_memmove(to + tolen, from, fromlen + 1); |
2768 | 1749 } |
1750 | |
1751 /* | |
7 | 1752 * Isolate one part of a string option where parts are separated with |
1753 * "sep_chars". | |
459 | 1754 * The part is copied into "buf[maxlen]". |
7 | 1755 * "*option" is advanced to the next part. |
1756 * The length is returned. | |
1757 */ | |
1758 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1759 copy_option_part( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1760 char_u **option, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1761 char_u *buf, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1762 int maxlen, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1763 char *sep_chars) |
7 | 1764 { |
1765 int len = 0; | |
1766 char_u *p = *option; | |
1767 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1768 // skip '.' at start of option part, for 'suffixes' |
7 | 1769 if (*p == '.') |
1770 buf[len++] = *p++; | |
1771 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL) | |
1772 { | |
1773 /* | |
1774 * Skip backslash before a separator character and space. | |
1775 */ | |
1776 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL) | |
1777 ++p; | |
1778 if (len < maxlen - 1) | |
1779 buf[len++] = *p; | |
1780 ++p; | |
1781 } | |
1782 buf[len] = NUL; | |
1783 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1784 if (*p != NUL && *p != ',') // skip non-standard separator |
7 | 1785 ++p; |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1786 p = skip_to_option_part(p); // p points to next file name |
7 | 1787 |
1788 *option = p; | |
1789 return len; | |
1790 } | |
1791 | |
1792 /* | |
625 | 1793 * Replacement for free() that ignores NULL pointers. |
1794 * Also skip free() when exiting for sure, this helps when we caught a deadly | |
1795 * signal that was caused by a crash in free(). | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13236
diff
changeset
|
1796 * If you want to set NULL after calling this function, you should use |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13236
diff
changeset
|
1797 * VIM_CLEAR() instead. |
7 | 1798 */ |
1799 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1800 vim_free(void *x) |
7 | 1801 { |
625 | 1802 if (x != NULL && !really_exiting) |
7 | 1803 { |
1804 #ifdef MEM_PROFILE | |
1805 mem_pre_free(&x); | |
1806 #endif | |
1807 free(x); | |
1808 } | |
1809 } | |
1810 | |
1811 #ifndef HAVE_MEMSET | |
1812 void * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1813 vim_memset(void *ptr, int c, size_t size) |
7 | 1814 { |
1815 char *p = ptr; | |
1816 | |
1817 while (size-- > 0) | |
1818 *p++ = c; | |
1819 return ptr; | |
1820 } | |
1821 #endif | |
1822 | |
1823 #if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO) | |
1824 /* | |
1825 * Compare two strings, ignoring case, using current locale. | |
1826 * Doesn't work for multi-byte characters. | |
1827 * return 0 for match, < 0 for smaller, > 0 for bigger | |
1828 */ | |
1829 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1830 vim_stricmp(char *s1, char *s2) |
7 | 1831 { |
1832 int i; | |
1833 | |
1834 for (;;) | |
1835 { | |
1836 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2); | |
1837 if (i != 0) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1838 return i; // this character different |
7 | 1839 if (*s1 == NUL) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1840 break; // strings match until NUL |
7 | 1841 ++s1; |
1842 ++s2; | |
1843 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1844 return 0; // strings match |
7 | 1845 } |
1846 #endif | |
1847 | |
1848 #if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO) | |
1849 /* | |
1850 * Compare two strings, for length "len", ignoring case, using current locale. | |
1851 * Doesn't work for multi-byte characters. | |
1852 * return 0 for match, < 0 for smaller, > 0 for bigger | |
1853 */ | |
1854 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1855 vim_strnicmp(char *s1, char *s2, size_t len) |
7 | 1856 { |
1857 int i; | |
1858 | |
1859 while (len > 0) | |
1860 { | |
1861 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2); | |
1862 if (i != 0) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1863 return i; // this character different |
7 | 1864 if (*s1 == NUL) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1865 break; // strings match until NUL |
7 | 1866 ++s1; |
1867 ++s2; | |
1868 --len; | |
1869 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1870 return 0; // strings match |
7 | 1871 } |
1872 #endif | |
1873 | |
1874 /* | |
1875 * Version of strchr() and strrchr() that handle unsigned char strings | |
170 | 1876 * with characters from 128 to 255 correctly. It also doesn't return a |
1877 * pointer to the NUL at the end of the string. | |
7 | 1878 */ |
1879 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1880 vim_strchr(char_u *string, int c) |
7 | 1881 { |
1882 char_u *p; | |
1883 int b; | |
1884 | |
1885 p = string; | |
1886 if (enc_utf8 && c >= 0x80) | |
1887 { | |
1888 while (*p != NUL) | |
1889 { | |
11269
121d29004998
patch 8.0.0520: using a function pointer while the function is known
Christian Brabandt <cb@256bit.org>
parents:
11213
diff
changeset
|
1890 int l = utfc_ptr2len(p); |
6765 | 1891 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
1892 // Avoid matching an illegal byte here. |
6765 | 1893 if (utf_ptr2char(p) == c && l > 1) |
7 | 1894 return p; |
6765 | 1895 p += l; |
7 | 1896 } |
1897 return NULL; | |
1898 } | |
1899 if (enc_dbcs != 0 && c > 255) | |
1900 { | |
1901 int n2 = c & 0xff; | |
1902 | |
1903 c = ((unsigned)c >> 8) & 0xff; | |
1904 while ((b = *p) != NUL) | |
1905 { | |
1906 if (b == c && p[1] == n2) | |
1907 return p; | |
474 | 1908 p += (*mb_ptr2len)(p); |
7 | 1909 } |
1910 return NULL; | |
1911 } | |
1912 if (has_mbyte) | |
1913 { | |
1914 while ((b = *p) != NUL) | |
1915 { | |
1916 if (b == c) | |
1917 return p; | |
474 | 1918 p += (*mb_ptr2len)(p); |
7 | 1919 } |
1920 return NULL; | |
1921 } | |
1922 while ((b = *p) != NUL) | |
1923 { | |
1924 if (b == c) | |
1925 return p; | |
1926 ++p; | |
1927 } | |
1928 return NULL; | |
1929 } | |
1930 | |
1931 /* | |
170 | 1932 * Version of strchr() that only works for bytes and handles unsigned char |
1933 * strings with characters above 128 correctly. It also doesn't return a | |
1934 * pointer to the NUL at the end of the string. | |
1935 */ | |
1936 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1937 vim_strbyte(char_u *string, int c) |
170 | 1938 { |
1939 char_u *p = string; | |
1940 | |
1941 while (*p != NUL) | |
1942 { | |
1943 if (*p == c) | |
1944 return p; | |
1945 ++p; | |
1946 } | |
1947 return NULL; | |
1948 } | |
1949 | |
1950 /* | |
7 | 1951 * Search for last occurrence of "c" in "string". |
500 | 1952 * Return NULL if not found. |
170 | 1953 * Does not handle multi-byte char for "c"! |
7 | 1954 */ |
1955 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1956 vim_strrchr(char_u *string, int c) |
7 | 1957 { |
1958 char_u *retval = NULL; | |
170 | 1959 char_u *p = string; |
1960 | |
1961 while (*p) | |
7 | 1962 { |
170 | 1963 if (*p == c) |
1964 retval = p; | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
1965 MB_PTR_ADV(p); |
7 | 1966 } |
1967 return retval; | |
1968 } | |
1969 | |
1970 /* | |
1971 * Vim's version of strpbrk(), in case it's missing. | |
1972 * Don't generate a prototype for this, causes problems when it's not used. | |
1973 */ | |
1974 #ifndef PROTO | |
1975 # ifndef HAVE_STRPBRK | |
1976 # ifdef vim_strpbrk | |
1977 # undef vim_strpbrk | |
1978 # endif | |
1979 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1980 vim_strpbrk(char_u *s, char_u *charset) |
7 | 1981 { |
1982 while (*s) | |
1983 { | |
1984 if (vim_strchr(charset, *s) != NULL) | |
1985 return s; | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
1986 MB_PTR_ADV(s); |
7 | 1987 } |
1988 return NULL; | |
1989 } | |
1990 # endif | |
1991 #endif | |
1992 | |
1993 /* | |
1994 * Vim has its own isspace() function, because on some machines isspace() | |
1995 * can't handle characters above 128. | |
1996 */ | |
1997 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1998 vim_isspace(int x) |
7 | 1999 { |
2000 return ((x >= 9 && x <= 13) || x == ' '); | |
2001 } | |
2002 | |
2003 /************************************************************************ | |
119 | 2004 * Functions for handling growing arrays. |
7 | 2005 */ |
2006 | |
2007 /* | |
2008 * Clear an allocated growing array. | |
2009 */ | |
2010 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2011 ga_clear(garray_T *gap) |
7 | 2012 { |
2013 vim_free(gap->ga_data); | |
2014 ga_init(gap); | |
2015 } | |
2016 | |
2017 /* | |
2018 * Clear a growing array that contains a list of strings. | |
2019 */ | |
2020 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2021 ga_clear_strings(garray_T *gap) |
7 | 2022 { |
2023 int i; | |
2024 | |
2025 for (i = 0; i < gap->ga_len; ++i) | |
2026 vim_free(((char_u **)(gap->ga_data))[i]); | |
2027 ga_clear(gap); | |
2028 } | |
2029 | |
2030 /* | |
21558
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2031 * Copy a growing array that contains a list of strings. |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2032 */ |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2033 int |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2034 ga_copy_strings(garray_T *from, garray_T *to) |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2035 { |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2036 int i; |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2037 |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2038 ga_init2(to, sizeof(char_u *), 1); |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2039 if (ga_grow(to, from->ga_len) == FAIL) |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2040 return FAIL; |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2041 |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2042 for (i = 0; i < from->ga_len; ++i) |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2043 { |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2044 char_u *orig = ((char_u **)from->ga_data)[i]; |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2045 char_u *copy; |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2046 |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2047 if (orig == NULL) |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2048 copy = NULL; |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2049 else |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2050 { |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2051 copy = vim_strsave(orig); |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2052 if (copy == NULL) |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2053 { |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2054 to->ga_len = i; |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2055 ga_clear_strings(to); |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2056 return FAIL; |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2057 } |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2058 } |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2059 ((char_u **)to->ga_data)[i] = copy; |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2060 } |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2061 to->ga_len = from->ga_len; |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2062 return OK; |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2063 } |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2064 |
1c4d4aa22b37
patch 8.2.1329: Vim9: cannot define global function inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
2065 /* |
7 | 2066 * Initialize a growing array. Don't forget to set ga_itemsize and |
2067 * ga_growsize! Or use ga_init2(). | |
2068 */ | |
2069 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2070 ga_init(garray_T *gap) |
7 | 2071 { |
2072 gap->ga_data = NULL; | |
41 | 2073 gap->ga_maxlen = 0; |
7 | 2074 gap->ga_len = 0; |
2075 } | |
2076 | |
2077 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2078 ga_init2(garray_T *gap, int itemsize, int growsize) |
7 | 2079 { |
2080 ga_init(gap); | |
2081 gap->ga_itemsize = itemsize; | |
2082 gap->ga_growsize = growsize; | |
2083 } | |
2084 | |
2085 /* | |
2086 * Make room in growing array "gap" for at least "n" items. | |
2087 * Return FAIL for failure, OK otherwise. | |
2088 */ | |
2089 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2090 ga_grow(garray_T *gap, int n) |
7 | 2091 { |
20392
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2092 if (gap->ga_maxlen - gap->ga_len < n) |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2093 return ga_grow_inner(gap, n); |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2094 return OK; |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2095 } |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2096 |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2097 int |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2098 ga_grow_inner(garray_T *gap, int n) |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2099 { |
3376 | 2100 size_t old_len; |
2101 size_t new_len; | |
7 | 2102 char_u *pp; |
2103 | |
20392
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2104 if (n < gap->ga_growsize) |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2105 n = gap->ga_growsize; |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2106 |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2107 // A linear growth is very inefficient when the array grows big. This |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2108 // is a compromise between allocating memory that won't be used and too |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2109 // many copy operations. A factor of 1.5 seems reasonable. |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2110 if (n < gap->ga_len / 2) |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2111 n = gap->ga_len / 2; |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2112 |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2113 new_len = gap->ga_itemsize * (gap->ga_len + n); |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2114 pp = vim_realloc(gap->ga_data, new_len); |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2115 if (pp == NULL) |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2116 return FAIL; |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2117 old_len = gap->ga_itemsize * gap->ga_maxlen; |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2118 vim_memset(pp + old_len, 0, new_len - old_len); |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2119 gap->ga_maxlen = gap->ga_len + n; |
4c317d8c1051
patch 8.2.0751: Vim9: performance can be improved
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
2120 gap->ga_data = pp; |
7 | 2121 return OK; |
2122 } | |
2123 | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2124 #if defined(FEAT_EVAL) || defined(FEAT_SEARCHPATH) || defined(PROTO) |
7 | 2125 /* |
2487
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2126 * For a growing array that contains a list of strings: concatenate all the |
5873 | 2127 * strings with a separating "sep". |
2487
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2128 * Returns NULL when out of memory. |
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2129 */ |
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2130 char_u * |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2131 ga_concat_strings(garray_T *gap, char *sep) |
2487
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2132 { |
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2133 int i; |
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2134 int len = 0; |
5873 | 2135 int sep_len = (int)STRLEN(sep); |
2487
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2136 char_u *s; |
5873 | 2137 char_u *p; |
2487
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2138 |
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2139 for (i = 0; i < gap->ga_len; ++i) |
5873 | 2140 len += (int)STRLEN(((char_u **)(gap->ga_data))[i]) + sep_len; |
2487
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2141 |
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2142 s = alloc(len + 1); |
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2143 if (s != NULL) |
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2144 { |
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2145 *s = NUL; |
5873 | 2146 p = s; |
2487
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2147 for (i = 0; i < gap->ga_len; ++i) |
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2148 { |
5873 | 2149 if (p != s) |
2150 { | |
2151 STRCPY(p, sep); | |
2152 p += sep_len; | |
2153 } | |
2154 STRCPY(p, ((char_u **)(gap->ga_data))[i]); | |
2155 p += STRLEN(p); | |
2487
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2156 } |
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2157 } |
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2158 return s; |
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2159 } |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2160 #endif |
2487
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2161 |
11016
4e7308525fe7
patch 8.0.0397: can't build with +viminfo but without +eval
Christian Brabandt <cb@256bit.org>
parents:
10936
diff
changeset
|
2162 #if defined(FEAT_VIMINFO) || defined(FEAT_EVAL) || defined(PROTO) |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2163 /* |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2164 * Make a copy of string "p" and add it to "gap". |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2165 * When out of memory nothing changes. |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2166 */ |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2167 void |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2168 ga_add_string(garray_T *gap, char_u *p) |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2169 { |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2170 char_u *cp = vim_strsave(p); |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2171 |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2172 if (cp != NULL) |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2173 { |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2174 if (ga_grow(gap, 1) == OK) |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2175 ((char_u **)(gap->ga_data))[gap->ga_len++] = cp; |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2176 else |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2177 vim_free(cp); |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2178 } |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2179 } |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2180 #endif |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2181 |
2487
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
2182 /* |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
2183 * Concatenate a string to a growarray which contains bytes. |
7277
6600871bb38c
commit https://github.com/vim/vim/commit/43345546ae63710441f066648b8485fb545b3801
Christian Brabandt <cb@256bit.org>
parents:
7214
diff
changeset
|
2184 * When "s" is NULL does not do anything. |
7 | 2185 * Note: Does NOT copy the NUL at the end! |
2186 */ | |
2187 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2188 ga_concat(garray_T *gap, char_u *s) |
7 | 2189 { |
7277
6600871bb38c
commit https://github.com/vim/vim/commit/43345546ae63710441f066648b8485fb545b3801
Christian Brabandt <cb@256bit.org>
parents:
7214
diff
changeset
|
2190 int len; |
6600871bb38c
commit https://github.com/vim/vim/commit/43345546ae63710441f066648b8485fb545b3801
Christian Brabandt <cb@256bit.org>
parents:
7214
diff
changeset
|
2191 |
11352
251f1833db7d
patch 8.0.0561: undefined behavior when using backslash after empty line
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
2192 if (s == NULL || *s == NUL) |
7277
6600871bb38c
commit https://github.com/vim/vim/commit/43345546ae63710441f066648b8485fb545b3801
Christian Brabandt <cb@256bit.org>
parents:
7214
diff
changeset
|
2193 return; |
6600871bb38c
commit https://github.com/vim/vim/commit/43345546ae63710441f066648b8485fb545b3801
Christian Brabandt <cb@256bit.org>
parents:
7214
diff
changeset
|
2194 len = (int)STRLEN(s); |
7 | 2195 if (ga_grow(gap, len) == OK) |
2196 { | |
2197 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len); | |
2198 gap->ga_len += len; | |
2199 } | |
2200 } | |
2201 | |
2202 /* | |
2203 * Append one byte to a growarray which contains bytes. | |
2204 */ | |
2205 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2206 ga_append(garray_T *gap, int c) |
7 | 2207 { |
2208 if (ga_grow(gap, 1) == OK) | |
2209 { | |
2210 *((char *)gap->ga_data + gap->ga_len) = c; | |
2211 ++gap->ga_len; | |
2212 } | |
2213 } | |
2214 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
2215 #if (defined(UNIX) && !defined(USE_SYSTEM)) || defined(MSWIN) \ |
5995 | 2216 || defined(PROTO) |
2935 | 2217 /* |
2218 * Append the text in "gap" below the cursor line and clear "gap". | |
2219 */ | |
2220 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2221 append_ga_line(garray_T *gap) |
2935 | 2222 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2223 // Remove trailing CR. |
2935 | 2224 if (gap->ga_len > 0 |
2225 && !curbuf->b_p_bin | |
2226 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR) | |
2227 --gap->ga_len; | |
2228 ga_append(gap, NUL); | |
2229 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE); | |
2230 gap->ga_len = 0; | |
2231 } | |
2232 #endif | |
2233 | |
7 | 2234 /************************************************************************ |
2235 * functions that use lookup tables for various things, generally to do with | |
2236 * special key codes. | |
2237 */ | |
2238 | |
2239 /* | |
2240 * Some useful tables. | |
2241 */ | |
2242 | |
2243 static struct modmasktable | |
2244 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2245 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
|
2246 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
|
2247 char_u name; // Single letter name of modifier |
7 | 2248 } mod_mask_table[] = |
2249 { | |
2250 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'}, | |
179 | 2251 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'}, |
7 | 2252 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'}, |
2253 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'}, | |
2254 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'}, | |
2255 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'}, | |
2256 {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
|
2257 #ifdef MACOS_X |
7 | 2258 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'}, |
2259 #endif | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2260 // 'A' must be the last one |
7 | 2261 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'}, |
2262 {0, 0, NUL} | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2263 // NOTE: when adding an entry, update MAX_KEY_NAME_LEN! |
7 | 2264 }; |
2265 | |
2266 /* | |
2267 * Shifted key terminal codes and their unshifted equivalent. | |
1209 | 2268 * Don't add mouse codes here, they are handled separately! |
7 | 2269 */ |
2270 #define MOD_KEYS_ENTRY_SIZE 5 | |
2271 | |
2272 static char_u modifier_keys_table[] = | |
2273 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2274 // mod mask with modifier without modifier |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2275 MOD_MASK_SHIFT, '&', '9', '@', '1', // begin |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2276 MOD_MASK_SHIFT, '&', '0', '@', '2', // cancel |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2277 MOD_MASK_SHIFT, '*', '1', '@', '4', // command |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2278 MOD_MASK_SHIFT, '*', '2', '@', '5', // copy |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2279 MOD_MASK_SHIFT, '*', '3', '@', '6', // create |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2280 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
|
2281 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
|
2282 MOD_MASK_SHIFT, '*', '7', '@', '7', // end |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2283 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
|
2284 MOD_MASK_SHIFT, '*', '9', '@', '9', // exit |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2285 MOD_MASK_SHIFT, '*', '0', '@', '0', // find |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2286 MOD_MASK_SHIFT, '#', '1', '%', '1', // help |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2287 MOD_MASK_SHIFT, '#', '2', 'k', 'h', // home |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2288 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
|
2289 MOD_MASK_SHIFT, '#', '3', 'k', 'I', // insert |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2290 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
|
2291 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
|
2292 MOD_MASK_SHIFT, '%', 'a', '%', '3', // message |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2293 MOD_MASK_SHIFT, '%', 'b', '%', '4', // move |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2294 MOD_MASK_SHIFT, '%', 'c', '%', '5', // next |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2295 MOD_MASK_SHIFT, '%', 'd', '%', '7', // options |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2296 MOD_MASK_SHIFT, '%', 'e', '%', '8', // previous |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2297 MOD_MASK_SHIFT, '%', 'f', '%', '9', // print |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2298 MOD_MASK_SHIFT, '%', 'g', '%', '0', // redo |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2299 MOD_MASK_SHIFT, '%', 'h', '&', '3', // replace |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2300 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
|
2301 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
|
2302 MOD_MASK_SHIFT, '%', 'j', '&', '5', // resume |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2303 MOD_MASK_SHIFT, '!', '1', '&', '6', // save |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2304 MOD_MASK_SHIFT, '!', '2', '&', '7', // suspend |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2305 MOD_MASK_SHIFT, '!', '3', '&', '8', // undo |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2306 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
|
2307 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
|
2308 |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2309 // vt100 F1 |
7 | 2310 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1, |
2311 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2, | |
2312 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3, | |
2313 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4, | |
2314 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2315 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', // F1 |
7 | 2316 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2', |
2317 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3', | |
2318 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4', | |
2319 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5', | |
2320 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6', | |
2321 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7', | |
2322 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8', | |
2323 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
|
2324 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', // F10 |
7 | 2325 |
2326 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1', | |
2327 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2', | |
2328 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3', | |
2329 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4', | |
2330 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5', | |
2331 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6', | |
2332 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7', | |
2333 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8', | |
2334 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9', | |
2335 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A', | |
2336 | |
2337 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B', | |
2338 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C', | |
2339 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D', | |
2340 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E', | |
2341 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F', | |
2342 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G', | |
2343 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H', | |
2344 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I', | |
2345 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J', | |
2346 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K', | |
2347 | |
2348 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L', | |
2349 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M', | |
2350 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N', | |
2351 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O', | |
2352 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P', | |
2353 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q', | |
2354 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R', | |
2355 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2356 // TAB pseudo code |
7 | 2357 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB, |
2358 | |
2359 NUL | |
2360 }; | |
2361 | |
2362 static struct key_name_entry | |
2363 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2364 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
|
2365 char_u *name; // Name of key |
7 | 2366 } key_names_table[] = |
2367 { | |
2368 {' ', (char_u *)"Space"}, | |
2369 {TAB, (char_u *)"Tab"}, | |
2370 {K_TAB, (char_u *)"Tab"}, | |
2371 {NL, (char_u *)"NL"}, | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2372 {NL, (char_u *)"NewLine"}, // Alternative name |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2373 {NL, (char_u *)"LineFeed"}, // Alternative name |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2374 {NL, (char_u *)"LF"}, // Alternative name |
7 | 2375 {CAR, (char_u *)"CR"}, |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2376 {CAR, (char_u *)"Return"}, // Alternative name |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2377 {CAR, (char_u *)"Enter"}, // Alternative name |
7 | 2378 {K_BS, (char_u *)"BS"}, |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2379 {K_BS, (char_u *)"BackSpace"}, // Alternative name |
7 | 2380 {ESC, (char_u *)"Esc"}, |
2381 {CSI, (char_u *)"CSI"}, | |
2382 {K_CSI, (char_u *)"xCSI"}, | |
2383 {'|', (char_u *)"Bar"}, | |
2384 {'\\', (char_u *)"Bslash"}, | |
2385 {K_DEL, (char_u *)"Del"}, | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2386 {K_DEL, (char_u *)"Delete"}, // Alternative name |
7 | 2387 {K_KDEL, (char_u *)"kDel"}, |
2388 {K_UP, (char_u *)"Up"}, | |
2389 {K_DOWN, (char_u *)"Down"}, | |
2390 {K_LEFT, (char_u *)"Left"}, | |
2391 {K_RIGHT, (char_u *)"Right"}, | |
180 | 2392 {K_XUP, (char_u *)"xUp"}, |
2393 {K_XDOWN, (char_u *)"xDown"}, | |
2394 {K_XLEFT, (char_u *)"xLeft"}, | |
2395 {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
|
2396 {K_PS, (char_u *)"PasteStart"}, |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
2397 {K_PE, (char_u *)"PasteEnd"}, |
7 | 2398 |
2399 {K_F1, (char_u *)"F1"}, | |
2400 {K_F2, (char_u *)"F2"}, | |
2401 {K_F3, (char_u *)"F3"}, | |
2402 {K_F4, (char_u *)"F4"}, | |
2403 {K_F5, (char_u *)"F5"}, | |
2404 {K_F6, (char_u *)"F6"}, | |
2405 {K_F7, (char_u *)"F7"}, | |
2406 {K_F8, (char_u *)"F8"}, | |
2407 {K_F9, (char_u *)"F9"}, | |
2408 {K_F10, (char_u *)"F10"}, | |
2409 | |
2410 {K_F11, (char_u *)"F11"}, | |
2411 {K_F12, (char_u *)"F12"}, | |
2412 {K_F13, (char_u *)"F13"}, | |
2413 {K_F14, (char_u *)"F14"}, | |
2414 {K_F15, (char_u *)"F15"}, | |
2415 {K_F16, (char_u *)"F16"}, | |
2416 {K_F17, (char_u *)"F17"}, | |
2417 {K_F18, (char_u *)"F18"}, | |
2418 {K_F19, (char_u *)"F19"}, | |
2419 {K_F20, (char_u *)"F20"}, | |
2420 | |
2421 {K_F21, (char_u *)"F21"}, | |
2422 {K_F22, (char_u *)"F22"}, | |
2423 {K_F23, (char_u *)"F23"}, | |
2424 {K_F24, (char_u *)"F24"}, | |
2425 {K_F25, (char_u *)"F25"}, | |
2426 {K_F26, (char_u *)"F26"}, | |
2427 {K_F27, (char_u *)"F27"}, | |
2428 {K_F28, (char_u *)"F28"}, | |
2429 {K_F29, (char_u *)"F29"}, | |
2430 {K_F30, (char_u *)"F30"}, | |
2431 | |
2432 {K_F31, (char_u *)"F31"}, | |
2433 {K_F32, (char_u *)"F32"}, | |
2434 {K_F33, (char_u *)"F33"}, | |
2435 {K_F34, (char_u *)"F34"}, | |
2436 {K_F35, (char_u *)"F35"}, | |
2437 {K_F36, (char_u *)"F36"}, | |
2438 {K_F37, (char_u *)"F37"}, | |
2439 | |
2440 {K_XF1, (char_u *)"xF1"}, | |
2441 {K_XF2, (char_u *)"xF2"}, | |
2442 {K_XF3, (char_u *)"xF3"}, | |
2443 {K_XF4, (char_u *)"xF4"}, | |
2444 | |
2445 {K_HELP, (char_u *)"Help"}, | |
2446 {K_UNDO, (char_u *)"Undo"}, | |
2447 {K_INS, (char_u *)"Insert"}, | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2448 {K_INS, (char_u *)"Ins"}, // Alternative name |
7 | 2449 {K_KINS, (char_u *)"kInsert"}, |
2450 {K_HOME, (char_u *)"Home"}, | |
2451 {K_KHOME, (char_u *)"kHome"}, | |
2452 {K_XHOME, (char_u *)"xHome"}, | |
230 | 2453 {K_ZHOME, (char_u *)"zHome"}, |
7 | 2454 {K_END, (char_u *)"End"}, |
2455 {K_KEND, (char_u *)"kEnd"}, | |
2456 {K_XEND, (char_u *)"xEnd"}, | |
230 | 2457 {K_ZEND, (char_u *)"zEnd"}, |
7 | 2458 {K_PAGEUP, (char_u *)"PageUp"}, |
2459 {K_PAGEDOWN, (char_u *)"PageDown"}, | |
2460 {K_KPAGEUP, (char_u *)"kPageUp"}, | |
2461 {K_KPAGEDOWN, (char_u *)"kPageDown"}, | |
2462 | |
2463 {K_KPLUS, (char_u *)"kPlus"}, | |
2464 {K_KMINUS, (char_u *)"kMinus"}, | |
2465 {K_KDIVIDE, (char_u *)"kDivide"}, | |
2466 {K_KMULTIPLY, (char_u *)"kMultiply"}, | |
2467 {K_KENTER, (char_u *)"kEnter"}, | |
2468 {K_KPOINT, (char_u *)"kPoint"}, | |
2469 | |
2470 {K_K0, (char_u *)"k0"}, | |
2471 {K_K1, (char_u *)"k1"}, | |
2472 {K_K2, (char_u *)"k2"}, | |
2473 {K_K3, (char_u *)"k3"}, | |
2474 {K_K4, (char_u *)"k4"}, | |
2475 {K_K5, (char_u *)"k5"}, | |
2476 {K_K6, (char_u *)"k6"}, | |
2477 {K_K7, (char_u *)"k7"}, | |
2478 {K_K8, (char_u *)"k8"}, | |
2479 {K_K9, (char_u *)"k9"}, | |
2480 | |
2481 {'<', (char_u *)"lt"}, | |
2482 | |
2483 {K_MOUSE, (char_u *)"Mouse"}, | |
3273 | 2484 #ifdef FEAT_MOUSE_NET |
7 | 2485 {K_NETTERM_MOUSE, (char_u *)"NetMouse"}, |
3273 | 2486 #endif |
2487 #ifdef FEAT_MOUSE_DEC | |
7 | 2488 {K_DEC_MOUSE, (char_u *)"DecMouse"}, |
3273 | 2489 #endif |
2490 #ifdef FEAT_MOUSE_JSB | |
7 | 2491 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"}, |
3273 | 2492 #endif |
2493 #ifdef FEAT_MOUSE_PTERM | |
7 | 2494 {K_PTERM_MOUSE, (char_u *)"PtermMouse"}, |
3273 | 2495 #endif |
2496 #ifdef FEAT_MOUSE_URXVT | |
2497 {K_URXVT_MOUSE, (char_u *)"UrxvtMouse"}, | |
2498 #endif | |
3746 | 2499 {K_SGR_MOUSE, (char_u *)"SgrMouse"}, |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11352
diff
changeset
|
2500 {K_SGR_MOUSERELEASE, (char_u *)"SgrMouseRelelase"}, |
7 | 2501 {K_LEFTMOUSE, (char_u *)"LeftMouse"}, |
2502 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"}, | |
2503 {K_LEFTDRAG, (char_u *)"LeftDrag"}, | |
2504 {K_LEFTRELEASE, (char_u *)"LeftRelease"}, | |
2505 {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
|
2506 {K_MOUSEMOVE, (char_u *)"MouseMove"}, |
7 | 2507 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"}, |
2508 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"}, | |
2509 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"}, | |
2510 {K_RIGHTMOUSE, (char_u *)"RightMouse"}, | |
2511 {K_RIGHTDRAG, (char_u *)"RightDrag"}, | |
2512 {K_RIGHTRELEASE, (char_u *)"RightRelease"}, | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2363
diff
changeset
|
2513 {K_MOUSEDOWN, (char_u *)"ScrollWheelUp"}, |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2363
diff
changeset
|
2514 {K_MOUSEUP, (char_u *)"ScrollWheelDown"}, |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2363
diff
changeset
|
2515 {K_MOUSELEFT, (char_u *)"ScrollWheelRight"}, |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2363
diff
changeset
|
2516 {K_MOUSERIGHT, (char_u *)"ScrollWheelLeft"}, |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2517 {K_MOUSEDOWN, (char_u *)"MouseDown"}, // OBSOLETE: Use |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2518 {K_MOUSEUP, (char_u *)"MouseUp"}, // ScrollWheelXXX instead |
7 | 2519 {K_X1MOUSE, (char_u *)"X1Mouse"}, |
2520 {K_X1DRAG, (char_u *)"X1Drag"}, | |
2521 {K_X1RELEASE, (char_u *)"X1Release"}, | |
2522 {K_X2MOUSE, (char_u *)"X2Mouse"}, | |
2523 {K_X2DRAG, (char_u *)"X2Drag"}, | |
2524 {K_X2RELEASE, (char_u *)"X2Release"}, | |
2525 {K_DROP, (char_u *)"Drop"}, | |
2526 {K_ZERO, (char_u *)"Nul"}, | |
2527 #ifdef FEAT_EVAL | |
2528 {K_SNR, (char_u *)"SNR"}, | |
2529 #endif | |
2530 {K_PLUG, (char_u *)"Plug"}, | |
6245 | 2531 {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
|
2532 {K_IGNORE, (char_u *)"Ignore"}, |
7 | 2533 {0, NULL} |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2534 // NOTE: When adding a long name update MAX_KEY_NAME_LEN. |
7 | 2535 }; |
2536 | |
2537 #define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry)) | |
2538 | |
2539 /* | |
2540 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given | |
2541 * modifier name ('S' for Shift, 'C' for Ctrl etc). | |
2542 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
2543 static int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2544 name_to_mod_mask(int c) |
7 | 2545 { |
2546 int i; | |
2547 | |
2548 c = TOUPPER_ASC(c); | |
2549 for (i = 0; mod_mask_table[i].mod_mask != 0; i++) | |
2550 if (c == mod_mask_table[i].name) | |
2551 return mod_mask_table[i].mod_flag; | |
2552 return 0; | |
2553 } | |
2554 | |
2555 /* | |
2556 * Check if if there is a special key code for "key" that includes the | |
2557 * modifiers specified. | |
2558 */ | |
2559 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2560 simplify_key(int key, int *modifiers) |
7 | 2561 { |
2562 int i; | |
2563 int key0; | |
2564 int key1; | |
2565 | |
2566 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT)) | |
2567 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2568 // TAB is a special case |
7 | 2569 if (key == TAB && (*modifiers & MOD_MASK_SHIFT)) |
2570 { | |
2571 *modifiers &= ~MOD_MASK_SHIFT; | |
2572 return K_S_TAB; | |
2573 } | |
2574 key0 = KEY2TERMCAP0(key); | |
2575 key1 = KEY2TERMCAP1(key); | |
2576 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE) | |
2577 if (key0 == modifier_keys_table[i + 3] | |
2578 && key1 == modifier_keys_table[i + 4] | |
2579 && (*modifiers & modifier_keys_table[i])) | |
2580 { | |
2581 *modifiers &= ~modifier_keys_table[i]; | |
2582 return TERMCAP2KEY(modifier_keys_table[i + 1], | |
2583 modifier_keys_table[i + 2]); | |
2584 } | |
2585 } | |
2586 return key; | |
2587 } | |
2588 | |
2589 /* | |
180 | 2590 * Change <xHome> to <Home>, <xUp> to <Up>, etc. |
2591 */ | |
2592 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2593 handle_x_keys(int key) |
180 | 2594 { |
2595 switch (key) | |
2596 { | |
2597 case K_XUP: return K_UP; | |
2598 case K_XDOWN: return K_DOWN; | |
2599 case K_XLEFT: return K_LEFT; | |
2600 case K_XRIGHT: return K_RIGHT; | |
2601 case K_XHOME: return K_HOME; | |
230 | 2602 case K_ZHOME: return K_HOME; |
180 | 2603 case K_XEND: return K_END; |
230 | 2604 case K_ZEND: return K_END; |
180 | 2605 case K_XF1: return K_F1; |
2606 case K_XF2: return K_F2; | |
2607 case K_XF3: return K_F3; | |
2608 case K_XF4: return K_F4; | |
2609 case K_S_XF1: return K_S_F1; | |
2610 case K_S_XF2: return K_S_F2; | |
2611 case K_S_XF3: return K_S_F3; | |
2612 case K_S_XF4: return K_S_F4; | |
2613 } | |
2614 return key; | |
2615 } | |
2616 | |
2617 /* | |
7 | 2618 * Return a string which contains the name of the given key when the given |
2619 * modifiers are down. | |
2620 */ | |
2621 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2622 get_special_key_name(int c, int modifiers) |
7 | 2623 { |
2624 static char_u string[MAX_KEY_NAME_LEN + 1]; | |
2625 | |
2626 int i, idx; | |
2627 int table_idx; | |
2628 char_u *s; | |
2629 | |
2630 string[0] = '<'; | |
2631 idx = 1; | |
2632 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2633 // Key that stands for a normal character. |
7 | 2634 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY) |
2635 c = KEY2TERMCAP1(c); | |
2636 | |
2637 /* | |
2638 * Translate shifted special keys into unshifted keys and set modifier. | |
2639 * Same for CTRL and ALT modifiers. | |
2640 */ | |
2641 if (IS_SPECIAL(c)) | |
2642 { | |
2643 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE) | |
2644 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1] | |
2645 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2]) | |
2646 { | |
2647 modifiers |= modifier_keys_table[i]; | |
2648 c = TERMCAP2KEY(modifier_keys_table[i + 3], | |
2649 modifier_keys_table[i + 4]); | |
2650 break; | |
2651 } | |
2652 } | |
2653 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2654 // try to find the key in the special key table |
7 | 2655 table_idx = find_special_key_in_table(c); |
2656 | |
2657 /* | |
2658 * When not a known special key, and not a printable character, try to | |
2659 * extract modifiers. | |
2660 */ | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2661 if (c > 0 && (*mb_char2len)(c) == 1) |
7 | 2662 { |
2663 if (table_idx < 0 | |
2664 && (!vim_isprintc(c) || (c & 0x7f) == ' ') | |
2665 && (c & 0x80)) | |
2666 { | |
2667 c &= 0x7f; | |
2668 modifiers |= MOD_MASK_ALT; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2669 // try again, to find the un-alted key in the special key table |
7 | 2670 table_idx = find_special_key_in_table(c); |
2671 } | |
2672 if (table_idx < 0 && !vim_isprintc(c) && c < ' ') | |
2673 { | |
2674 #ifdef EBCDIC | |
2675 c = CtrlChar(c); | |
2676 #else | |
2677 c += '@'; | |
2678 #endif | |
2679 modifiers |= MOD_MASK_CTRL; | |
2680 } | |
2681 } | |
2682 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2683 // translate the modifier into a string |
7 | 2684 for (i = 0; mod_mask_table[i].name != 'A'; i++) |
2685 if ((modifiers & mod_mask_table[i].mod_mask) | |
2686 == mod_mask_table[i].mod_flag) | |
2687 { | |
2688 string[idx++] = mod_mask_table[i].name; | |
2689 string[idx++] = (char_u)'-'; | |
2690 } | |
2691 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2692 if (table_idx < 0) // unknown special key, may output t_xx |
7 | 2693 { |
2694 if (IS_SPECIAL(c)) | |
2695 { | |
2696 string[idx++] = 't'; | |
2697 string[idx++] = '_'; | |
2698 string[idx++] = KEY2TERMCAP0(c); | |
2699 string[idx++] = KEY2TERMCAP1(c); | |
2700 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2701 // Not a special key, only modifiers, output directly |
7 | 2702 else |
2703 { | |
2704 if (has_mbyte && (*mb_char2len)(c) > 1) | |
2705 idx += (*mb_char2bytes)(c, string + idx); | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2706 else if (vim_isprintc(c)) |
7 | 2707 string[idx++] = c; |
2708 else | |
2709 { | |
2710 s = transchar(c); | |
2711 while (*s) | |
2712 string[idx++] = *s++; | |
2713 } | |
2714 } | |
2715 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2716 else // use name of special key |
7 | 2717 { |
10644
2025bec9175f
patch 8.0.0212: buffer for key name may be too small
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
2718 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
|
2719 |
2025bec9175f
patch 8.0.0212: buffer for key name may be too small
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
2720 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
|
2721 { |
2025bec9175f
patch 8.0.0212: buffer for key name may be too small
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
2722 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
|
2723 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
|
2724 } |
7 | 2725 } |
2726 string[idx++] = '>'; | |
2727 string[idx] = NUL; | |
2728 return string; | |
2729 } | |
2730 | |
2731 /* | |
2732 * Try translating a <> name at (*srcp)[] to dst[]. | |
2733 * Return the number of characters added to dst[], zero for no match. | |
2734 * If there is a match, srcp is advanced to after the <> name. | |
2735 * dst[] must be big enough to hold the result (up to six characters)! | |
2736 */ | |
2737 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2738 trans_special( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2739 char_u **srcp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2740 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
|
2741 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
|
2742 int *did_simplify) // FSK_SIMPLIFY and found <C-H> or <A-x> |
7 | 2743 { |
2744 int modifiers = 0; | |
2745 int key; | |
2746 | |
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
|
2747 key = find_special_key(srcp, &modifiers, flags, did_simplify); |
7 | 2748 if (key == 0) |
2749 return 0; | |
2750 | |
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
|
2751 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
|
2752 } |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
2753 |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
2754 /* |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
2755 * 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
|
2756 * the resulting length. |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
2757 * 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
|
2758 * 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
|
2759 * 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
|
2760 */ |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
2761 int |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
2762 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
|
2763 { |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
2764 int dlen = 0; |
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16876
diff
changeset
|
2765 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2766 // Put the appropriate modifier in a string |
7 | 2767 if (modifiers != 0) |
2768 { | |
2769 dst[dlen++] = K_SPECIAL; | |
2770 dst[dlen++] = KS_MODIFIER; | |
2771 dst[dlen++] = modifiers; | |
2772 } | |
2773 | |
2774 if (IS_SPECIAL(key)) | |
2775 { | |
2776 dst[dlen++] = K_SPECIAL; | |
2777 dst[dlen++] = KEY2TERMCAP0(key); | |
2778 dst[dlen++] = KEY2TERMCAP1(key); | |
2779 } | |
2780 else if (has_mbyte && !keycode) | |
2781 dlen += (*mb_char2bytes)(key, dst + dlen); | |
2782 else if (keycode) | |
2783 dlen = (int)(add_char2buf(key, dst + dlen) - dst); | |
2784 else | |
2785 dst[dlen++] = key; | |
2786 | |
2787 return dlen; | |
2788 } | |
2789 | |
2790 /* | |
2791 * Try translating a <> name at (*srcp)[], return the key and modifiers. | |
2792 * srcp is advanced to after the <> name. | |
2793 * returns 0 if there is no match. | |
2794 */ | |
2795 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2796 find_special_key( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2797 char_u **srcp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2798 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
|
2799 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
|
2800 int *did_simplify) // found <C-H> or <A-x> |
7 | 2801 { |
2802 char_u *last_dash; | |
2803 char_u *end_of_name; | |
2804 char_u *src; | |
2805 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
|
2806 int in_string = flags & FSK_IN_STRING; |
7 | 2807 int modifiers; |
2808 int bit; | |
2809 int key; | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
2810 uvarnumber_T n; |
3024 | 2811 int l; |
7 | 2812 |
2813 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
|
2814 if (src[0] != '<') |
7 | 2815 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
|
2816 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
|
2817 ++src; |
7 | 2818 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2819 // Find end of modifier list |
7 | 2820 last_dash = src; |
2821 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++) | |
2822 { | |
2823 if (*bp == '-') | |
2824 { | |
2825 last_dash = bp; | |
3024 | 2826 if (bp[1] != NUL) |
2827 { | |
2828 if (has_mbyte) | |
2829 l = mb_ptr2len(bp + 1); | |
2830 else | |
2831 l = 1; | |
17720
844f470532b6
patch 8.1.1857: cannot use modifier with multi-byte character
Bram Moolenaar <Bram@vim.org>
parents:
17708
diff
changeset
|
2832 // 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
|
2833 // <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
|
2834 // 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
|
2835 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
|
2836 bp += l; |
9869
989d44d35a66
commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
2837 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
|
2838 && bp[3] == '>') |
9869
989d44d35a66
commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
2839 bp += 2; |
3024 | 2840 } |
7 | 2841 } |
2842 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
|
2843 bp += 3; // skip t_xx, xx may be '-' or '>' |
3026 | 2844 else if (STRNICMP(bp, "char-", 5) == 0) |
2845 { | |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
2846 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
|
2847 if (l == 0) |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
2848 { |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
2849 emsg(_(e_invarg)); |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
2850 return 0; |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
2851 } |
3026 | 2852 bp += l + 5; |
2853 break; | |
2854 } | |
7 | 2855 } |
2856 | |
20627
8bce783af0cb
patch 8.2.0867: using {xxx} for encoding a modifier is not nice
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
2857 if (*bp == '>') // found matching '>' |
7 | 2858 { |
2859 end_of_name = bp + 1; | |
2860 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2861 // Which modifiers are given? |
7 | 2862 modifiers = 0x0; |
2863 for (bp = src + 1; bp < last_dash; bp++) | |
2864 { | |
2865 if (*bp != '-') | |
2866 { | |
2867 bit = name_to_mod_mask(*bp); | |
2868 if (bit == 0x0) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2869 break; // Illegal modifier name |
7 | 2870 modifiers |= bit; |
2871 } | |
2872 } | |
2873 | |
2874 /* | |
2875 * Legal modifier name. | |
2876 */ | |
2877 if (bp >= last_dash) | |
2878 { | |
3024 | 2879 if (STRNICMP(last_dash + 1, "char-", 5) == 0 |
2880 && VIM_ISDIGIT(last_dash[6])) | |
2881 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2882 // <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
|
2883 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
|
2884 &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
|
2885 if (l == 0) |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
2886 { |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
2887 emsg(_(e_invarg)); |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
2888 return 0; |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
2889 } |
3026 | 2890 key = (int)n; |
3024 | 2891 } |
7 | 2892 else |
180 | 2893 { |
9869
989d44d35a66
commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
2894 int off = 1; |
989d44d35a66
commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
2895 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2896 // 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
|
2897 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
|
2898 off = 2; |
3026 | 2899 if (has_mbyte) |
9869
989d44d35a66
commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
2900 l = mb_ptr2len(last_dash + off); |
3026 | 2901 else |
2902 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
|
2903 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
|
2904 key = PTR2CHAR(last_dash + off); |
3026 | 2905 else |
2906 { | |
9869
989d44d35a66
commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
2907 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
|
2908 if (!(flags & FSK_KEEP_X_KEY)) |
3026 | 2909 key = handle_x_keys(key); |
2910 } | |
180 | 2911 } |
7 | 2912 |
2913 /* | |
2914 * get_special_key_code() may return NUL for invalid | |
2915 * special key name. | |
2916 */ | |
2917 if (key != NUL) | |
2918 { | |
2919 /* | |
2920 * Only use a modifier when there is no special key code that | |
2921 * includes the modifier. | |
2922 */ | |
2923 key = simplify_key(key, &modifiers); | |
2924 | |
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
|
2925 if (!(flags & FSK_KEYCODE)) |
7 | 2926 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
2927 // don't want keycode, use single byte code |
7 | 2928 if (key == K_BS) |
2929 key = BS; | |
2930 else if (key == K_DEL || key == K_KDEL) | |
2931 key = DEL; | |
2932 } | |
2933 | |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
2934 // Normal Key with modifier: Try to make a single byte code. |
7 | 2935 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
|
2936 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
|
2937 flags & FSK_SIMPLIFY, did_simplify); |
7 | 2938 |
2939 *modp = modifiers; | |
2940 *srcp = end_of_name; | |
2941 return key; | |
2942 } | |
2943 } | |
2944 } | |
2945 return 0; | |
2946 } | |
2947 | |
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
|
2948 |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
2949 /* |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
2950 * Some keys already have Shift included, pass them as normal keys. |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
2951 * Not when Ctrl is also used, because <C-H> and <C-S-H> are different. |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
2952 * Also for <A-S-a> and <M-S-a>. |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
2953 */ |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
2954 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
|
2955 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
|
2956 { |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
2957 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
|
2958 || 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
|
2959 || modifiers == (MOD_MASK_SHIFT | MOD_MASK_META)) |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
2960 && ((key >= '@' && key <= 'Z') |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
2961 || 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
|
2962 || (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
|
2963 return 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
|
2964 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
|
2965 } |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
2966 |
7 | 2967 /* |
2968 * Try to include modifiers in the key. | |
2969 * 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
|
2970 * 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
|
2971 * 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
|
2972 * "did_simplify" when it's not NULL. |
7 | 2973 */ |
2974 int | |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
2975 extract_modifiers(int key, int *modp, int simplify, int *did_simplify) |
7 | 2976 { |
2977 int modifiers = *modp; | |
2978 | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12672
diff
changeset
|
2979 #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
|
2980 // Command-key really special, no fancynest |
7 | 2981 if (!(modifiers & MOD_MASK_CMD)) |
2982 #endif | |
2983 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key)) | |
2984 { | |
2985 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
|
2986 // 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
|
2987 // 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
|
2988 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
|
2989 || 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
|
2990 || 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
|
2991 modifiers &= ~MOD_MASK_SHIFT; |
7 | 2992 } |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
2993 |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
2994 // <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
|
2995 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
|
2996 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
|
2997 |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
2998 if (simplify && (modifiers & MOD_MASK_CTRL) |
7 | 2999 #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
|
3000 // 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
|
3001 // && (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
|
3002 // ??? |
7 | 3003 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key) |
3004 != NULL | |
3005 #else | |
3006 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key)) | |
3007 #endif | |
3008 ) | |
3009 { | |
3010 key = Ctrl_chr(key); | |
3011 modifiers &= ~MOD_MASK_CTRL; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3012 // <C-@> is <Nul> |
7 | 3013 if (key == 0) |
3014 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
|
3015 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
|
3016 *did_simplify = TRUE; |
7 | 3017 } |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
3018 |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12672
diff
changeset
|
3019 #ifdef MACOS_X |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3020 // Command-key really special, no fancynest |
7 | 3021 if (!(modifiers & MOD_MASK_CMD)) |
3022 #endif | |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
3023 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
|
3024 && !enc_dbcs) // avoid creating a lead byte |
7 | 3025 { |
3026 key |= 0x80; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3027 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
|
3028 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
|
3029 *did_simplify = TRUE; |
7 | 3030 } |
3031 | |
3032 *modp = modifiers; | |
3033 return key; | |
3034 } | |
3035 | |
3036 /* | |
3037 * Try to find key "c" in the special key table. | |
3038 * Return the index when found, -1 when not found. | |
3039 */ | |
3040 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3041 find_special_key_in_table(int c) |
7 | 3042 { |
3043 int i; | |
3044 | |
3045 for (i = 0; key_names_table[i].name != NULL; i++) | |
3046 if (c == key_names_table[i].key) | |
3047 break; | |
3048 if (key_names_table[i].name == NULL) | |
3049 i = -1; | |
3050 return i; | |
3051 } | |
3052 | |
3053 /* | |
3054 * Find the special key with the given name (the given string does not have to | |
3055 * end with NUL, the name is assumed to end before the first non-idchar). | |
3056 * If the name starts with "t_" the next two characters are interpreted as a | |
3057 * termcap name. | |
3058 * Return the key code, or 0 if not found. | |
3059 */ | |
3060 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3061 get_special_key_code(char_u *name) |
7 | 3062 { |
3063 char_u *table_name; | |
3064 char_u string[3]; | |
3065 int i, j; | |
3066 | |
3067 /* | |
3068 * If it's <t_xx> we get the code for xx from the termcap | |
3069 */ | |
3070 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL) | |
3071 { | |
3072 string[0] = name[2]; | |
3073 string[1] = name[3]; | |
3074 string[2] = NUL; | |
3075 if (add_termcap_entry(string, FALSE) == OK) | |
3076 return TERMCAP2KEY(name[2], name[3]); | |
3077 } | |
3078 else | |
3079 for (i = 0; key_names_table[i].name != NULL; i++) | |
3080 { | |
3081 table_name = key_names_table[i].name; | |
3082 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++) | |
3083 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j])) | |
3084 break; | |
3085 if (!vim_isIDc(name[j]) && table_name[j] == NUL) | |
3086 return key_names_table[i].key; | |
3087 } | |
3088 return 0; | |
3089 } | |
3090 | |
3091 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3092 get_key_name(int i) |
7 | 3093 { |
1881 | 3094 if (i >= (int)KEY_NAMES_TABLE_LEN) |
7 | 3095 return NULL; |
3096 return key_names_table[i].name; | |
3097 } | |
3098 | |
3099 /* | |
3100 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC. | |
3101 */ | |
3102 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3103 get_fileformat(buf_T *buf) |
7 | 3104 { |
3105 int c = *buf->b_p_ff; | |
3106 | |
3107 if (buf->b_p_bin || c == 'u') | |
3108 return EOL_UNIX; | |
3109 if (c == 'm') | |
3110 return EOL_MAC; | |
3111 return EOL_DOS; | |
3112 } | |
3113 | |
3114 /* | |
3115 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val" | |
3116 * argument. | |
3117 */ | |
3118 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3119 get_fileformat_force( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3120 buf_T *buf, |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3121 exarg_T *eap) // can be NULL! |
7 | 3122 { |
3123 int c; | |
3124 | |
3125 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
|
3126 c = eap->force_ff; |
7 | 3127 else |
3128 { | |
3129 if ((eap != NULL && eap->force_bin != 0) | |
3130 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin) | |
3131 return EOL_UNIX; | |
3132 c = *buf->b_p_ff; | |
3133 } | |
3134 if (c == 'u') | |
3135 return EOL_UNIX; | |
3136 if (c == 'm') | |
3137 return EOL_MAC; | |
3138 return EOL_DOS; | |
3139 } | |
3140 | |
3141 /* | |
3142 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC. | |
3143 * Sets both 'textmode' and 'fileformat'. | |
3144 * Note: Does _not_ set global value of 'textmode'! | |
3145 */ | |
3146 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3147 set_fileformat( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3148 int t, |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3149 int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL |
7 | 3150 { |
3151 char *p = NULL; | |
3152 | |
3153 switch (t) | |
3154 { | |
3155 case EOL_DOS: | |
3156 p = FF_DOS; | |
3157 curbuf->b_p_tx = TRUE; | |
3158 break; | |
3159 case EOL_UNIX: | |
3160 p = FF_UNIX; | |
3161 curbuf->b_p_tx = FALSE; | |
3162 break; | |
3163 case EOL_MAC: | |
3164 p = FF_MAC; | |
3165 curbuf->b_p_tx = FALSE; | |
3166 break; | |
3167 } | |
3168 if (p != NULL) | |
3169 set_string_option_direct((char_u *)"ff", -1, (char_u *)p, | |
694 | 3170 OPT_FREE | opt_flags, 0); |
3171 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3172 // This may cause the buffer to become (un)modified. |
7 | 3173 check_status(curbuf); |
673 | 3174 redraw_tabline = TRUE; |
7 | 3175 #ifdef FEAT_TITLE |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3176 need_maketitle = TRUE; // set window title later |
7 | 3177 #endif |
3178 } | |
3179 | |
3180 /* | |
3181 * Return the default fileformat from 'fileformats'. | |
3182 */ | |
3183 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3184 default_fileformat(void) |
7 | 3185 { |
3186 switch (*p_ffs) | |
3187 { | |
3188 case 'm': return EOL_MAC; | |
3189 case 'd': return EOL_DOS; | |
3190 } | |
3191 return EOL_UNIX; | |
3192 } | |
3193 | |
3194 /* | |
3195 * Call shell. Calls mch_call_shell, with 'shellxquote' added. | |
3196 */ | |
3197 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3198 call_shell(char_u *cmd, int opt) |
7 | 3199 { |
3200 char_u *ncmd; | |
3201 int retval; | |
170 | 3202 #ifdef FEAT_PROFILE |
3203 proftime_T wait_time; | |
3204 #endif | |
7 | 3205 |
3206 if (p_verbose > 3) | |
3207 { | |
293 | 3208 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
|
3209 smsg(_("Calling shell to execute: \"%s\""), cmd == NULL ? p_sh : cmd); |
7 | 3210 out_char('\n'); |
3211 cursor_on(); | |
293 | 3212 verbose_leave(); |
7 | 3213 } |
3214 | |
170 | 3215 #ifdef FEAT_PROFILE |
789 | 3216 if (do_profiling == PROF_YES) |
170 | 3217 prof_child_enter(&wait_time); |
3218 #endif | |
3219 | |
7 | 3220 if (*p_sh == NUL) |
3221 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
3222 emsg(_(e_shellempty)); |
7 | 3223 retval = -1; |
3224 } | |
3225 else | |
3226 { | |
3227 #ifdef FEAT_GUI_MSWIN | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3228 // Don't hide the pointer while executing a shell command. |
7 | 3229 gui_mch_mousehide(FALSE); |
3230 #endif | |
3231 #ifdef FEAT_GUI | |
3232 ++hold_gui_events; | |
3233 #endif | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3234 // The external command may update a tags file, clear cached tags. |
7 | 3235 tag_freematch(); |
3236 | |
17028
70933f7b5de4
patch 8.1.1514: MS-Windows: wrong shell command with ! in 'guioptions'
Bram Moolenaar <Bram@vim.org>
parents:
17000
diff
changeset
|
3237 if (cmd == NULL || *p_sxq == NUL) |
7 | 3238 retval = mch_call_shell(cmd, opt); |
3239 else | |
3240 { | |
3359 | 3241 char_u *ecmd = cmd; |
3242 | |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
3243 if (*p_sxe != NUL && *p_sxq == '(') |
3359 | 3244 { |
3245 ecmd = vim_strsave_escaped_ext(cmd, p_sxe, '^', FALSE); | |
3246 if (ecmd == NULL) | |
3247 ecmd = cmd; | |
3248 } | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
3249 ncmd = alloc(STRLEN(ecmd) + STRLEN(p_sxq) * 2 + 1); |
7 | 3250 if (ncmd != NULL) |
3251 { | |
3252 STRCPY(ncmd, p_sxq); | |
3359 | 3253 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
|
3254 // 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
|
3255 // 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
|
3256 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
|
3257 : *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
|
3258 : p_sxq); |
7 | 3259 retval = mch_call_shell(ncmd, opt); |
3260 vim_free(ncmd); | |
3261 } | |
3262 else | |
3263 retval = -1; | |
3359 | 3264 if (ecmd != cmd) |
3265 vim_free(ecmd); | |
7 | 3266 } |
3267 #ifdef FEAT_GUI | |
3268 --hold_gui_events; | |
3269 #endif | |
3270 /* | |
3271 * Check the window size, in case it changed while executing the | |
3272 * external command. | |
3273 */ | |
3274 shell_resized_check(); | |
3275 } | |
3276 | |
3277 #ifdef FEAT_EVAL | |
3278 set_vim_var_nr(VV_SHELL_ERROR, (long)retval); | |
170 | 3279 # ifdef FEAT_PROFILE |
789 | 3280 if (do_profiling == PROF_YES) |
170 | 3281 prof_child_exit(&wait_time); |
3282 # endif | |
7 | 3283 #endif |
3284 | |
3285 return retval; | |
3286 } | |
3287 | |
3288 /* | |
789 | 3289 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to |
3290 * NORMAL State with a condition. This function returns the real State. | |
7 | 3291 */ |
3292 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3293 get_real_state(void) |
7 | 3294 { |
3295 if (State & NORMAL) | |
3296 { | |
3297 if (VIsual_active) | |
789 | 3298 { |
3299 if (VIsual_select) | |
3300 return SELECTMODE; | |
7 | 3301 return VISUAL; |
789 | 3302 } |
5735 | 3303 else if (finish_op) |
3304 return OP_PENDING; | |
7 | 3305 } |
3306 return State; | |
3307 } | |
3308 | |
39 | 3309 /* |
3310 * Return TRUE if "p" points to just after a path separator. | |
2939 | 3311 * Takes care of multi-byte characters. |
39 | 3312 * "b" must point to the start of the file name |
3313 */ | |
3314 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3315 after_pathsep(char_u *b, char_u *p) |
39 | 3316 { |
2939 | 3317 return p > b && vim_ispathsep(p[-1]) |
39 | 3318 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0); |
3319 } | |
3320 | |
3321 /* | |
3322 * Return TRUE if file names "f1" and "f2" are in the same directory. | |
3323 * "f1" may be a short name, "f2" must be a full path. | |
3324 */ | |
3325 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3326 same_directory(char_u *f1, char_u *f2) |
39 | 3327 { |
3328 char_u ffname[MAXPATHL]; | |
3329 char_u *t1; | |
3330 char_u *t2; | |
3331 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3332 // safety check |
39 | 3333 if (f1 == NULL || f2 == NULL) |
3334 return FALSE; | |
3335 | |
3336 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE); | |
3337 t1 = gettail_sep(ffname); | |
3338 t2 = gettail_sep(f2); | |
3339 return (t1 - ffname == t2 - f2 | |
3340 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0); | |
3341 } | |
3342 | |
14220
96e4c6b26998
patch 8.1.0127: build failure when disabling the session feature
Christian Brabandt <cb@256bit.org>
parents:
13750
diff
changeset
|
3343 #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
|
3344 || 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
|
3345 || defined(FEAT_NETBEANS_INTG) \ |
7 | 3346 || defined(PROTO) |
3347 /* | |
3348 * Change to a file's directory. | |
3349 * Caller must call shorten_fnames()! | |
3350 * Return OK or FAIL. | |
3351 */ | |
3352 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
|
3353 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
|
3354 { |
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
3355 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
|
3356 char_u new_dir[MAXPATHL]; |
13172
7ab8c5983983
patch 8.0.1460: missing file in patch
Christian Brabandt <cb@256bit.org>
parents:
13092
diff
changeset
|
3357 int res; |
39 | 3358 |
15184
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
3359 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
|
3360 *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
|
3361 |
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
3362 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
|
3363 *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
|
3364 |
15188
2d8c31ae1e24
patch 8.1.0604: autocommand test fails on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents:
15184
diff
changeset
|
3365 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
|
3366 // 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
|
3367 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
|
3368 else |
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
3369 { |
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
3370 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
|
3371 |
90ab2d3ce11d
patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents:
15160
diff
changeset
|
3372 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
|
3373 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
|
3374 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
|
3375 } |
13172
7ab8c5983983
patch 8.0.1460: missing file in patch
Christian Brabandt <cb@256bit.org>
parents:
13092
diff
changeset
|
3376 return res; |
7 | 3377 } |
3378 #endif | |
3379 | |
3380 #if defined(STAT_IGNORES_SLASH) || defined(PROTO) | |
3381 /* | |
3382 * Check if "name" ends in a slash and is not a directory. | |
3383 * Used for systems where stat() ignores a trailing slash on a file name. | |
3384 * The Vim code assumes a trailing slash is only ignored for a directory. | |
3385 */ | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
3386 static int |
11146
6ce90f33373f
patch 8.0.0460: can't build on HPUX
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
3387 illegal_slash(const char *name) |
7 | 3388 { |
3389 if (name[0] == NUL) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3390 return FALSE; // no file name is not illegal |
7 | 3391 if (name[strlen(name) - 1] != '/') |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3392 return FALSE; // no trailing slash |
7 | 3393 if (mch_isdir((char_u *)name)) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3394 return FALSE; // trailing slash for a directory |
7 | 3395 return TRUE; |
3396 } | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
3397 |
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
3398 /* |
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
3399 * 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
|
3400 */ |
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
3401 int |
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
3402 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
|
3403 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3404 // 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
|
3405 // 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
|
3406 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
|
3407 } |
7 | 3408 #endif |
3409 | |
3410 #if defined(CURSOR_SHAPE) || defined(PROTO) | |
3411 | |
3412 /* | |
3413 * Handling of cursor and mouse pointer shapes in various modes. | |
3414 */ | |
3415 | |
3416 cursorentry_T shape_table[SHAPE_IDX_COUNT] = | |
3417 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3418 // 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
|
3419 // defaults when Vim starts. |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3420 // Adjust the SHAPE_IDX_ defines when making changes! |
7 | 3421 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE}, |
3422 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE}, | |
3423 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE}, | |
3424 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE}, | |
3425 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE}, | |
3426 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE}, | |
3427 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE}, | |
3428 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE}, | |
3429 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE}, | |
3430 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE}, | |
3431 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE}, | |
3432 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE}, | |
3433 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE}, | |
3434 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE}, | |
3435 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE}, | |
3436 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE}, | |
3437 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR}, | |
3438 }; | |
3439 | |
3440 #ifdef FEAT_MOUSESHAPE | |
3441 /* | |
3442 * Table with names for mouse shapes. Keep in sync with all the tables for | |
3443 * mch_set_mouse_shape()!. | |
3444 */ | |
3445 static char * mshape_names[] = | |
3446 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3447 "arrow", // default, must be the first one |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3448 "blank", // hidden |
7 | 3449 "beam", |
3450 "updown", | |
3451 "udsizing", | |
3452 "leftright", | |
3453 "lrsizing", | |
3454 "busy", | |
3455 "no", | |
3456 "crosshair", | |
3457 "hand1", | |
3458 "hand2", | |
3459 "pencil", | |
3460 "question", | |
3461 "rightup-arrow", | |
3462 "up-arrow", | |
3463 NULL | |
3464 }; | |
3465 #endif | |
3466 | |
3467 /* | |
3468 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape' | |
3469 * ("what" is SHAPE_MOUSE). | |
3470 * Returns error message for an illegal option, NULL otherwise. | |
3471 */ | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
3472 char * |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3473 parse_shape_opt(int what) |
7 | 3474 { |
3475 char_u *modep; | |
3476 char_u *colonp; | |
3477 char_u *commap; | |
3478 char_u *slashp; | |
3479 char_u *p, *endp; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3480 int idx = 0; // init for GCC |
7 | 3481 int all_idx; |
3482 int len; | |
3483 int i; | |
3484 long n; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3485 int found_ve = FALSE; // found "ve" flag |
7 | 3486 int round; |
3487 | |
3488 /* | |
3489 * First round: check for errors; second round: do it for real. | |
3490 */ | |
3491 for (round = 1; round <= 2; ++round) | |
3492 { | |
3493 /* | |
3494 * Repeat for all comma separated parts. | |
3495 */ | |
3496 #ifdef FEAT_MOUSESHAPE | |
3497 if (what == SHAPE_MOUSE) | |
3498 modep = p_mouseshape; | |
3499 else | |
3500 #endif | |
3501 modep = p_guicursor; | |
3502 while (*modep != NUL) | |
3503 { | |
3504 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
|
3505 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
|
3506 |
a516b6c279d9
patch 8.0.0357: crash when setting 'guicursor' to weird value
Christian Brabandt <cb@256bit.org>
parents:
10716
diff
changeset
|
3507 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
|
3508 return N_("E545: Missing colon"); |
7 | 3509 if (colonp == modep) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
3510 return N_("E546: Illegal mode"); |
7 | 3511 |
3512 /* | |
3513 * Repeat for all mode's before the colon. | |
3514 * For the 'a' mode, we loop to handle all the modes. | |
3515 */ | |
3516 all_idx = -1; | |
3517 while (modep < colonp || all_idx >= 0) | |
3518 { | |
3519 if (all_idx < 0) | |
3520 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3521 // Find the mode. |
7 | 3522 if (modep[1] == '-' || modep[1] == ':') |
3523 len = 1; | |
3524 else | |
3525 len = 2; | |
3526 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a') | |
3527 all_idx = SHAPE_IDX_COUNT - 1; | |
3528 else | |
3529 { | |
3530 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx) | |
3531 if (STRNICMP(modep, shape_table[idx].name, len) | |
3532 == 0) | |
3533 break; | |
3534 if (idx == SHAPE_IDX_COUNT | |
3535 || (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
|
3536 return N_("E546: Illegal mode"); |
7 | 3537 if (len == 2 && modep[0] == 'v' && modep[1] == 'e') |
3538 found_ve = TRUE; | |
3539 } | |
3540 modep += len + 1; | |
3541 } | |
3542 | |
3543 if (all_idx >= 0) | |
3544 idx = all_idx--; | |
3545 else if (round == 2) | |
3546 { | |
3547 #ifdef FEAT_MOUSESHAPE | |
3548 if (what == SHAPE_MOUSE) | |
3549 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3550 // Set the default, for the missing parts |
7 | 3551 shape_table[idx].mshape = 0; |
3552 } | |
3553 else | |
3554 #endif | |
3555 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3556 // Set the defaults, for the missing parts |
7 | 3557 shape_table[idx].shape = SHAPE_BLOCK; |
3558 shape_table[idx].blinkwait = 700L; | |
3559 shape_table[idx].blinkon = 400L; | |
3560 shape_table[idx].blinkoff = 250L; | |
3561 } | |
3562 } | |
3563 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3564 // Parse the part after the colon |
7 | 3565 for (p = colonp + 1; *p && *p != ','; ) |
3566 { | |
3567 #ifdef FEAT_MOUSESHAPE | |
3568 if (what == SHAPE_MOUSE) | |
3569 { | |
3570 for (i = 0; ; ++i) | |
3571 { | |
3572 if (mshape_names[i] == NULL) | |
3573 { | |
3574 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
|
3575 return N_("E547: Illegal mouseshape"); |
7 | 3576 if (round == 2) |
3577 shape_table[idx].mshape = | |
3578 getdigits(&p) + MSHAPE_NUMBERED; | |
3579 else | |
3580 (void)getdigits(&p); | |
3581 break; | |
3582 } | |
3583 len = (int)STRLEN(mshape_names[i]); | |
3584 if (STRNICMP(p, mshape_names[i], len) == 0) | |
3585 { | |
3586 if (round == 2) | |
3587 shape_table[idx].mshape = i; | |
3588 p += len; | |
3589 break; | |
3590 } | |
3591 } | |
3592 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3593 else // if (what == SHAPE_MOUSE) |
7 | 3594 #endif |
3595 { | |
3596 /* | |
3597 * First handle the ones with a number argument. | |
3598 */ | |
3599 i = *p; | |
3600 len = 0; | |
3601 if (STRNICMP(p, "ver", 3) == 0) | |
3602 len = 3; | |
3603 else if (STRNICMP(p, "hor", 3) == 0) | |
3604 len = 3; | |
3605 else if (STRNICMP(p, "blinkwait", 9) == 0) | |
3606 len = 9; | |
3607 else if (STRNICMP(p, "blinkon", 7) == 0) | |
3608 len = 7; | |
3609 else if (STRNICMP(p, "blinkoff", 8) == 0) | |
3610 len = 8; | |
3611 if (len != 0) | |
3612 { | |
3613 p += len; | |
3614 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
|
3615 return N_("E548: digit expected"); |
7 | 3616 n = getdigits(&p); |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3617 if (len == 3) // "ver" or "hor" |
7 | 3618 { |
3619 if (n == 0) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
3620 return N_("E549: Illegal percentage"); |
7 | 3621 if (round == 2) |
3622 { | |
3623 if (TOLOWER_ASC(i) == 'v') | |
3624 shape_table[idx].shape = SHAPE_VER; | |
3625 else | |
3626 shape_table[idx].shape = SHAPE_HOR; | |
3627 shape_table[idx].percentage = n; | |
3628 } | |
3629 } | |
3630 else if (round == 2) | |
3631 { | |
3632 if (len == 9) | |
3633 shape_table[idx].blinkwait = n; | |
3634 else if (len == 7) | |
3635 shape_table[idx].blinkon = n; | |
3636 else | |
3637 shape_table[idx].blinkoff = n; | |
3638 } | |
3639 } | |
3640 else if (STRNICMP(p, "block", 5) == 0) | |
3641 { | |
3642 if (round == 2) | |
3643 shape_table[idx].shape = SHAPE_BLOCK; | |
3644 p += 5; | |
3645 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3646 else // must be a highlight group name then |
7 | 3647 { |
3648 endp = vim_strchr(p, '-'); | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3649 if (commap == NULL) // last part |
7 | 3650 { |
3651 if (endp == NULL) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3652 endp = p + STRLEN(p); // find end of part |
7 | 3653 } |
3654 else if (endp > commap || endp == NULL) | |
3655 endp = commap; | |
3656 slashp = vim_strchr(p, '/'); | |
3657 if (slashp != NULL && slashp < endp) | |
3658 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3659 // "group/langmap_group" |
7 | 3660 i = syn_check_group(p, (int)(slashp - p)); |
3661 p = slashp + 1; | |
3662 } | |
3663 if (round == 2) | |
3664 { | |
3665 shape_table[idx].id = syn_check_group(p, | |
3666 (int)(endp - p)); | |
3667 shape_table[idx].id_lm = shape_table[idx].id; | |
3668 if (slashp != NULL && slashp < endp) | |
3669 shape_table[idx].id = i; | |
3670 } | |
3671 p = endp; | |
3672 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3673 } // if (what != SHAPE_MOUSE) |
7 | 3674 |
3675 if (*p == '-') | |
3676 ++p; | |
3677 } | |
3678 } | |
3679 modep = p; | |
3680 if (*modep == ',') | |
3681 ++modep; | |
3682 } | |
3683 } | |
3684 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3685 // If the 's' flag is not given, use the 'v' cursor for 's' |
7 | 3686 if (!found_ve) |
3687 { | |
3688 #ifdef FEAT_MOUSESHAPE | |
3689 if (what == SHAPE_MOUSE) | |
3690 { | |
3691 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape; | |
3692 } | |
3693 else | |
3694 #endif | |
3695 { | |
3696 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape; | |
3697 shape_table[SHAPE_IDX_VE].percentage = | |
3698 shape_table[SHAPE_IDX_V].percentage; | |
3699 shape_table[SHAPE_IDX_VE].blinkwait = | |
3700 shape_table[SHAPE_IDX_V].blinkwait; | |
3701 shape_table[SHAPE_IDX_VE].blinkon = | |
3702 shape_table[SHAPE_IDX_V].blinkon; | |
3703 shape_table[SHAPE_IDX_VE].blinkoff = | |
3704 shape_table[SHAPE_IDX_V].blinkoff; | |
3705 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id; | |
3706 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm; | |
3707 } | |
3708 } | |
3709 | |
3710 return NULL; | |
3711 } | |
3712 | |
500 | 3713 # if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \ |
3714 || defined(FEAT_MOUSESHAPE) || defined(PROTO) | |
7 | 3715 /* |
3716 * Return the index into shape_table[] for the current mode. | |
3717 * When "mouse" is TRUE, consider indexes valid for the mouse pointer. | |
3718 */ | |
3719 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3720 get_shape_idx(int mouse) |
7 | 3721 { |
3722 #ifdef FEAT_MOUSESHAPE | |
3723 if (mouse && (State == HITRETURN || State == ASKMORE)) | |
3724 { | |
3725 # ifdef FEAT_GUI | |
87 | 3726 int x, y; |
3727 gui_mch_getmouse(&x, &y); | |
3728 if (Y_2_ROW(y) == Rows - 1) | |
7 | 3729 return SHAPE_IDX_MOREL; |
3730 # endif | |
3731 return SHAPE_IDX_MORE; | |
3732 } | |
3733 if (mouse && drag_status_line) | |
3734 return SHAPE_IDX_SDRAG; | |
3735 if (mouse && drag_sep_line) | |
3736 return SHAPE_IDX_VDRAG; | |
3737 #endif | |
3738 if (!mouse && State == SHOWMATCH) | |
3739 return SHAPE_IDX_SM; | |
3740 if (State & VREPLACE_FLAG) | |
3741 return SHAPE_IDX_R; | |
3742 if (State & REPLACE_FLAG) | |
3743 return SHAPE_IDX_R; | |
3744 if (State & INSERT) | |
3745 return SHAPE_IDX_I; | |
3746 if (State & CMDLINE) | |
3747 { | |
3748 if (cmdline_at_end()) | |
3749 return SHAPE_IDX_C; | |
3750 if (cmdline_overstrike()) | |
3751 return SHAPE_IDX_CR; | |
3752 return SHAPE_IDX_CI; | |
3753 } | |
3754 if (finish_op) | |
3755 return SHAPE_IDX_O; | |
3756 if (VIsual_active) | |
3757 { | |
3758 if (*p_sel == 'e') | |
3759 return SHAPE_IDX_VE; | |
3760 else | |
3761 return SHAPE_IDX_V; | |
3762 } | |
3763 return SHAPE_IDX_N; | |
3764 } | |
500 | 3765 #endif |
7 | 3766 |
3767 # if defined(FEAT_MOUSESHAPE) || defined(PROTO) | |
3768 static int old_mouse_shape = 0; | |
3769 | |
3770 /* | |
3771 * Set the mouse shape: | |
3772 * If "shape" is -1, use shape depending on the current mode, | |
3773 * depending on the current state. | |
3774 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used | |
3775 * when the mouse moves off the status or command line). | |
3776 */ | |
3777 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3778 update_mouseshape(int shape_idx) |
7 | 3779 { |
3780 int new_mouse_shape; | |
3781 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3782 // Only works in GUI mode. |
227 | 3783 if (!gui.in_use || gui.starting) |
7 | 3784 return; |
3785 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3786 // 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
|
3787 // mappings. |
7 | 3788 if (shape_idx == -1 && char_avail()) |
3789 { | |
3790 postponed_mouseshape = TRUE; | |
3791 return; | |
3792 } | |
3793 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3794 // When ignoring the mouse don't change shape on the statusline. |
864 | 3795 if (*p_mouse == NUL |
3796 && (shape_idx == SHAPE_IDX_CLINE | |
3797 || shape_idx == SHAPE_IDX_STATUS | |
3798 || shape_idx == SHAPE_IDX_VSEP)) | |
3799 shape_idx = -2; | |
3800 | |
7 | 3801 if (shape_idx == -2 |
3802 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape | |
3803 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape | |
3804 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape) | |
3805 return; | |
3806 if (shape_idx < 0) | |
3807 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape; | |
3808 else | |
3809 new_mouse_shape = shape_table[shape_idx].mshape; | |
3810 if (new_mouse_shape != old_mouse_shape) | |
3811 { | |
3812 mch_set_mouse_shape(new_mouse_shape); | |
3813 old_mouse_shape = new_mouse_shape; | |
3814 } | |
3815 postponed_mouseshape = FALSE; | |
3816 } | |
3817 # endif | |
3818 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3819 #endif // CURSOR_SHAPE |
7 | 3820 |
3821 | |
3822 /* | |
3823 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search | |
3824 * 'cdpath' for relative directory names, otherwise just mch_chdir(). | |
3825 */ | |
3826 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3827 vim_chdir(char_u *new_dir) |
7 | 3828 { |
3829 #ifndef FEAT_SEARCHPATH | |
3830 return mch_chdir((char *)new_dir); | |
3831 #else | |
3832 char_u *dir_name; | |
3833 int r; | |
3834 | |
3835 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir), | |
3836 FNAME_MESS, curbuf->b_ffname); | |
3837 if (dir_name == NULL) | |
3838 return -1; | |
3839 r = mch_chdir((char *)dir_name); | |
3840 vim_free(dir_name); | |
3841 return r; | |
3842 #endif | |
3843 } | |
3844 | |
3845 /* | |
418 | 3846 * Get user name from machine-specific function. |
7 | 3847 * Returns the user name in "buf[len]". |
418 | 3848 * Some systems are quite slow in obtaining the user name (Windows NT), thus |
3849 * cache the result. | |
7 | 3850 * Returns OK or FAIL. |
3851 */ | |
3852 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3853 get_user_name(char_u *buf, int len) |
7 | 3854 { |
359 | 3855 if (username == NULL) |
7 | 3856 { |
3857 if (mch_get_user_name(buf, len) == FAIL) | |
3858 return FAIL; | |
359 | 3859 username = vim_strsave(buf); |
7 | 3860 } |
3861 else | |
418 | 3862 vim_strncpy(buf, username, len - 1); |
7 | 3863 return OK; |
3864 } | |
3865 | |
3866 #ifndef HAVE_QSORT | |
3867 /* | |
3868 * Our own qsort(), for systems that don't have it. | |
3869 * It's simple and slow. From the K&R C book. | |
3870 */ | |
3871 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3872 qsort( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3873 void *base, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3874 size_t elm_count, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3875 size_t elm_size, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3876 int (*cmp)(const void *, const void *)) |
7 | 3877 { |
3878 char_u *buf; | |
3879 char_u *p1; | |
3880 char_u *p2; | |
3881 int i, j; | |
3882 int gap; | |
3883 | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
3884 buf = alloc(elm_size); |
7 | 3885 if (buf == NULL) |
3886 return; | |
3887 | |
3888 for (gap = elm_count / 2; gap > 0; gap /= 2) | |
3889 for (i = gap; i < elm_count; ++i) | |
3890 for (j = i - gap; j >= 0; j -= gap) | |
3891 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3892 // Compare the elements. |
7 | 3893 p1 = (char_u *)base + j * elm_size; |
3894 p2 = (char_u *)base + (j + gap) * elm_size; | |
3895 if ((*cmp)((void *)p1, (void *)p2) <= 0) | |
3896 break; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3897 // Exchange the elements. |
7 | 3898 mch_memmove(buf, p1, elm_size); |
3899 mch_memmove(p1, p2, elm_size); | |
3900 mch_memmove(p2, buf, elm_size); | |
3901 } | |
3902 | |
3903 vim_free(buf); | |
3904 } | |
3905 #endif | |
3906 | |
3907 /* | |
3908 * Sort an array of strings. | |
3909 */ | |
16606
7e733046db1d
patch 8.1.1306: Borland support is outdated and doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
16594
diff
changeset
|
3910 static int sort_compare(const void *s1, const void *s2); |
7 | 3911 |
3912 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3913 sort_compare(const void *s1, const void *s2) |
7 | 3914 { |
3915 return STRCMP(*(char **)s1, *(char **)s2); | |
3916 } | |
3917 | |
3918 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3919 sort_strings( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3920 char_u **files, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3921 int count) |
7 | 3922 { |
3923 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare); | |
3924 } | |
3925 | |
3926 /* | |
3927 * The putenv() implementation below comes from the "screen" program. | |
3928 * Included with permission from Juergen Weigert. | |
3929 * See pty.c for the copyright notice. | |
3930 */ | |
3931 | |
3932 /* | |
3933 * putenv -- put value into environment | |
3934 * | |
3935 * Usage: i = putenv (string) | |
3936 * int i; | |
3937 * char *string; | |
3938 * | |
3939 * where string is of the form <name>=<value>. | |
3940 * Putenv returns 0 normally, -1 on error (not enough core for malloc). | |
3941 * | |
3942 * Putenv may need to add a new name into the environment, or to | |
3943 * associate a value longer than the current value with a particular | |
3944 * name. So, to make life simpler, putenv() copies your entire | |
3945 * environment into the heap (i.e. malloc()) from the stack | |
3946 * (i.e. where it resides when your process is initiated) the first | |
3947 * time you call it. | |
3948 * | |
3949 * (history removed, not very interesting. See the "screen" sources.) | |
3950 */ | |
3951 | |
3952 #if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) | |
3953 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3954 #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
|
3955 |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3956 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
|
3957 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
|
3958 |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3959 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
|
3960 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
|
3961 static int moreenv(void); // incr. size of env. |
7 | 3962 |
3963 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3964 putenv(const char *string) |
7 | 3965 { |
3966 int i; | |
3967 char *p; | |
3968 | |
3969 if (envsize < 0) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3970 { // first time putenv called |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3971 if (newenv() < 0) // copy env. to heap |
7 | 3972 return -1; |
3973 } | |
3974 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3975 i = findenv((char *)string); // look for name in environment |
7 | 3976 |
3977 if (i < 0) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3978 { // name must be added |
7 | 3979 for (i = 0; environ[i]; i++); |
3980 if (i >= (envsize - 1)) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3981 { // need new slot |
7 | 3982 if (moreenv() < 0) |
3983 return -1; | |
3984 } | |
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
|
3985 p = alloc(strlen(string) + 1); |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3986 if (p == NULL) // not enough core |
7 | 3987 return -1; |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3988 environ[i + 1] = 0; // new end of env. |
7 | 3989 } |
3990 else | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3991 { // name already in env. |
7 | 3992 p = vim_realloc(environ[i], strlen(string) + 1); |
3993 if (p == NULL) | |
3994 return -1; | |
3995 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3996 sprintf(p, "%s", string); // copy into env. |
7 | 3997 environ[i] = p; |
3998 | |
3999 return 0; | |
4000 } | |
4001 | |
4002 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4003 findenv(char *name) |
7 | 4004 { |
4005 char *namechar, *envchar; | |
4006 int i, found; | |
4007 | |
4008 found = 0; | |
4009 for (i = 0; environ[i] && !found; i++) | |
4010 { | |
4011 envchar = environ[i]; | |
4012 namechar = name; | |
4013 while (*namechar && *namechar != '=' && (*namechar == *envchar)) | |
4014 { | |
4015 namechar++; | |
4016 envchar++; | |
4017 } | |
4018 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '='); | |
4019 } | |
4020 return found ? i - 1 : -1; | |
4021 } | |
4022 | |
4023 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4024 newenv(void) |
7 | 4025 { |
4026 char **env, *elem; | |
4027 int i, esize; | |
4028 | |
4029 for (i = 0; environ[i]; i++) | |
4030 ; | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12672
diff
changeset
|
4031 |
7 | 4032 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
|
4033 env = ALLOC_MULT(char *, esize); |
7 | 4034 if (env == NULL) |
4035 return -1; | |
4036 | |
4037 for (i = 0; environ[i]; i++) | |
4038 { | |
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
|
4039 elem = alloc(strlen(environ[i]) + 1); |
7 | 4040 if (elem == NULL) |
4041 return -1; | |
4042 env[i] = elem; | |
4043 strcpy(elem, environ[i]); | |
4044 } | |
4045 | |
4046 env[i] = 0; | |
4047 environ = env; | |
4048 envsize = esize; | |
4049 return 0; | |
4050 } | |
4051 | |
4052 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4053 moreenv(void) |
7 | 4054 { |
4055 int esize; | |
4056 char **env; | |
4057 | |
4058 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
|
4059 env = vim_realloc((char *)environ, esize * sizeof (*env)); |
7 | 4060 if (env == 0) |
4061 return -1; | |
4062 environ = env; | |
4063 envsize = esize; | |
4064 return 0; | |
4065 } | |
4066 | |
4067 # 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
|
4068 /* |
7791a15353dc
patch 8.0.0751: OpenPTY missing with some combination of features
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4069 * 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
|
4070 */ |
7 | 4071 char_u * |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4072 vimpty_getenv(const char_u *string) |
7 | 4073 { |
4074 int i; | |
4075 char_u *p; | |
4076 | |
4077 if (envsize < 0) | |
4078 return NULL; | |
4079 | |
4080 i = findenv((char *)string); | |
4081 | |
4082 if (i < 0) | |
4083 return NULL; | |
4084 | |
4085 p = vim_strchr((char_u *)environ[i], '='); | |
4086 return (p + 1); | |
4087 } | |
4088 # endif | |
4089 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4090 #endif // !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) |
313 | 4091 |
741 | 4092 #if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO) |
313 | 4093 /* |
4094 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have | |
4095 * rights to write into. | |
4096 */ | |
4097 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4098 filewritable(char_u *fname) |
313 | 4099 { |
4100 int retval = 0; | |
4101 #if defined(UNIX) || defined(VMS) | |
4102 int perm = 0; | |
4103 #endif | |
4104 | |
4105 #if defined(UNIX) || defined(VMS) | |
4106 perm = mch_getperm(fname); | |
4107 #endif | |
4108 if ( | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
4109 # ifdef MSWIN |
313 | 4110 mch_writable(fname) && |
4111 # else | |
4112 # if defined(UNIX) || defined(VMS) | |
4113 (perm & 0222) && | |
4114 # endif | |
4115 # endif | |
4116 mch_access((char *)fname, W_OK) == 0 | |
4117 ) | |
4118 { | |
4119 ++retval; | |
4120 if (mch_isdir(fname)) | |
4121 ++retval; | |
4122 } | |
4123 return retval; | |
4124 } | |
4125 #endif | |
332 | 4126 |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4127 #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
|
4128 /* |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4129 * 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
|
4130 * Returns -1 when encountering EOF. |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4131 */ |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4132 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4133 get2c(FILE *fd) |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4134 { |
13493
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
4135 int c, n; |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4136 |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4137 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
|
4138 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
|
4139 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
|
4140 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
|
4141 return (n << 8) + c; |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4142 } |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4143 |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4144 /* |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4145 * 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
|
4146 * Returns -1 when encountering EOF. |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4147 */ |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4148 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4149 get3c(FILE *fd) |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4150 { |
13493
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
4151 int c, n; |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4152 |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4153 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
|
4154 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
|
4155 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
|
4156 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
|
4157 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
|
4158 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
|
4159 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
|
4160 return (n << 8) + c; |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4161 } |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4162 |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4163 /* |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4164 * 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
|
4165 * Returns -1 when encountering EOF. |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4166 */ |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4167 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4168 get4c(FILE *fd) |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4169 { |
13493
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
4170 int c; |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4171 // 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
|
4172 // when left-shift sets the MSB. |
5347 | 4173 unsigned n; |
4174 | |
13493
96de13023cad
patch 8.0.1620: reading spell file has no good EOF detection
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
4175 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
|
4176 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
|
4177 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
|
4178 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
|
4179 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
|
4180 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
|
4181 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
|
4182 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
|
4183 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
|
4184 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
|
4185 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
|
4186 n = (n << 8) + (unsigned)c; |
5347 | 4187 return (int)n; |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4188 } |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4189 |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4190 /* |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4191 * 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
|
4192 * 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
|
4193 */ |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4194 char_u * |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4195 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
|
4196 { |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4197 char_u *str; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4198 int i; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4199 int c; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4200 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4201 // 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
|
4202 str = alloc(cnt + 1); |
2229
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4203 if (str != NULL) |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4204 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4205 // 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
|
4206 for (i = 0; i < cnt; ++i) |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4207 { |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4208 c = getc(fd); |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4209 if (c == EOF) |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4210 { |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4211 vim_free(str); |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4212 return NULL; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4213 } |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4214 str[i] = c; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4215 } |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4216 str[i] = NUL; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4217 } |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4218 return str; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4219 } |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4220 |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4221 /* |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4222 * 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
|
4223 */ |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4224 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4225 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
|
4226 { |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4227 int i; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4228 |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4229 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
|
4230 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
|
4231 return FAIL; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4232 return OK; |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4233 } |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4234 |
d45902a5c61c
Fix a few more things for persistent undo.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4235 #endif |
3257 | 4236 |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4237 #if defined(FEAT_QUICKFIX) || defined(FEAT_SPELL) || defined(PROTO) |
3257 | 4238 /* |
4239 * Return TRUE if string "s" contains a non-ASCII character (128 or higher). | |
4240 * When "s" is NULL FALSE is returned. | |
4241 */ | |
4242 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4243 has_non_ascii(char_u *s) |
3257 | 4244 { |
4245 char_u *p; | |
4246 | |
4247 if (s != NULL) | |
4248 for (p = s; *p != NUL; ++p) | |
4249 if (*p >= 128) | |
4250 return TRUE; | |
4251 return FALSE; | |
4252 } | |
4253 #endif | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7062
diff
changeset
|
4254 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4255 #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
|
4256 # ifdef ELAPSED_TIMEVAL |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4257 /* |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4258 * 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
|
4259 */ |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4260 long |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4261 elapsed(struct timeval *start_tv) |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4262 { |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4263 struct timeval now_tv; |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4264 |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4265 gettimeofday(&now_tv, NULL); |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4266 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
|
4267 + (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
|
4268 } |
10449
222b1432814e
commit https://github.com/vim/vim/commit/5162822914372fc916a93f85848c0c82209e7cec
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
4269 # endif |
222b1432814e
commit https://github.com/vim/vim/commit/5162822914372fc916a93f85848c0c82209e7cec
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
4270 |
222b1432814e
commit https://github.com/vim/vim/commit/5162822914372fc916a93f85848c0c82209e7cec
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
4271 # ifdef ELAPSED_TICKCOUNT |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4272 /* |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4273 * 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
|
4274 */ |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4275 long |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4276 elapsed(DWORD start_tick) |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4277 { |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4278 DWORD now = GetTickCount(); |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4279 |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4280 return (long)now - (long)start_tick; |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4281 } |
10449
222b1432814e
commit https://github.com/vim/vim/commit/5162822914372fc916a93f85848c0c82209e7cec
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
4282 # endif |
222b1432814e
commit https://github.com/vim/vim/commit/5162822914372fc916a93f85848c0c82209e7cec
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
4283 #endif |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4284 |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4285 #if defined(FEAT_JOB_CHANNEL) \ |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4286 || (defined(UNIX) && (!defined(USE_SYSTEM) \ |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4287 || (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
|
4288 || defined(PROTO) |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4289 /* |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4290 * 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
|
4291 * "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
|
4292 * 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
|
4293 */ |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4294 int |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4295 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
|
4296 { |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4297 int i; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4298 char_u *p, *d; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4299 int inquote; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4300 |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4301 /* |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4302 * Do this loop twice: |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4303 * 1: find number of arguments |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4304 * 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
|
4305 */ |
19793
607e5d7968b9
patch 8.2.0453: trailing space in job_start() command causes empty argument
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
4306 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
|
4307 { |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4308 p = skipwhite(cmd); |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4309 inquote = FALSE; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4310 *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
|
4311 while (*p != NUL) |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4312 { |
19793
607e5d7968b9
patch 8.2.0453: trailing space in job_start() command causes empty argument
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
4313 if (i == 2) |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4314 (*argv)[*argc] = (char *)p; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4315 ++*argc; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4316 d = p; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4317 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
|
4318 { |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4319 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
|
4320 // 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
|
4321 inquote = !inquote; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4322 else |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4323 { |
14905
c1e94bb0f004
patch 8.1.0464: MS-Windows: job_info() has cmd without backslashes
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
4324 if (rem_backslash(p)) |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4325 { |
14905
c1e94bb0f004
patch 8.1.0464: MS-Windows: job_info() has cmd without backslashes
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
4326 // 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
|
4327 // 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
|
4328 ++p; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4329 } |
19793
607e5d7968b9
patch 8.2.0453: trailing space in job_start() command causes empty argument
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
4330 if (i == 2) |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4331 *d++ = *p; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4332 } |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4333 ++p; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4334 } |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4335 if (*p == NUL) |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4336 { |
19793
607e5d7968b9
patch 8.2.0453: trailing space in job_start() command causes empty argument
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
4337 if (i == 2) |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4338 *d++ = NUL; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4339 break; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4340 } |
19793
607e5d7968b9
patch 8.2.0453: trailing space in job_start() command causes empty argument
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
4341 if (i == 2) |
13746
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4342 *d++ = NUL; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4343 p = skipwhite(p + 1); |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4344 } |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4345 if (*argv == NULL) |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4346 { |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4347 if (use_shcf) |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4348 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4349 // 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
|
4350 p = p_shcf; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4351 for (;;) |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4352 { |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4353 p = skiptowhite(p); |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4354 if (*p == NUL) |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4355 break; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4356 ++*argc; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4357 p = skipwhite(p); |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4358 } |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4359 } |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4360 |
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
|
4361 *argv = ALLOC_MULT(char *, *argc + 4); |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4362 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
|
4363 return FAIL; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4364 } |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4365 } |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4366 return OK; |
260256caac38
patch 8.0.1745: build failure on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13575
diff
changeset
|
4367 } |
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
|
4368 |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
4369 # 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
|
4370 /* |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
4371 * 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
|
4372 * "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
|
4373 * 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
|
4374 */ |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
4375 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
|
4376 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
|
4377 { |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
4378 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
|
4379 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
|
4380 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4381 // 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
|
4382 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
|
4383 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
|
4384 || 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
|
4385 { |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
4386 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
|
4387 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
|
4388 } |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
4389 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
|
4390 (*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
|
4391 (*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
|
4392 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
|
4393 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
|
4394 } |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
4395 |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
4396 /* |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
4397 * 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
|
4398 * "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
|
4399 * 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
|
4400 */ |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
4401 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
|
4402 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
|
4403 { |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
4404 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
|
4405 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
|
4406 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4407 // 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
|
4408 *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
|
4409 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
|
4410 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
|
4411 *argc = 0; |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19793
diff
changeset
|
4412 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
|
4413 { |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15209
diff
changeset
|
4414 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
|
4415 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
|
4416 { |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
4417 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
|
4418 |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
4419 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
|
4420 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
|
4421 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
|
4422 } |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
4423 (*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
|
4424 *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
|
4425 } |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
4426 (*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
|
4427 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
|
4428 } |
3ab6198c1f9a
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmd
Christian Brabandt <cb@256bit.org>
parents:
13746
diff
changeset
|
4429 # 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
|
4430 #endif |
18064
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
4431 |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
4432 /* |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
4433 * 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
|
4434 * 0: As usual. |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
4435 * 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
|
4436 * 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
|
4437 * 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
|
4438 * 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
|
4439 * 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
|
4440 */ |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
4441 int |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
4442 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
|
4443 { |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
4444 #ifdef MSWIN |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
4445 return get_conpty_type(); |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
4446 #else |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
4447 return 0; |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
4448 #endif |
8b4f9be5db73
patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents:
17978
diff
changeset
|
4449 } |