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