blob: 3261437db24c80f55b0c7062681707af41c73448 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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
Bram Moolenaarf461c8e2005-06-25 23:04:51 +000015static char_u *username = NULL; /* cached result of mch_get_user_name() */
16
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010017static int coladvance2(pos_T *pos, int addspaces, int finetune, colnr_T wcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018
19/*
20 * Return TRUE if in the current mode we need to use virtual.
21 */
22 int
Bram Moolenaar9b578142016-01-30 19:39:49 +010023virtual_active(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +000024{
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
Bram Moolenaar071d4272004-06-13 20:20:40 +000031 || ((ve_flags & VE_BLOCK) && VIsual_active && VIsual_mode == Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +000032 || ((ve_flags & VE_INSERT) && (State & INSERT)));
33}
34
35/*
36 * Get the screen position of the cursor.
37 */
38 int
Bram Moolenaar9b578142016-01-30 19:39:49 +010039getviscol(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +000040{
41 colnr_T x;
42
43 getvvcol(curwin, &curwin->w_cursor, &x, NULL, NULL);
44 return (int)x;
45}
46
47/*
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +000048 * Go to column "wcol", and add/insert white space as necessary to get the
Bram Moolenaar071d4272004-06-13 20:20:40 +000049 * cursor in that column.
50 * The caller must have saved the cursor line for undo!
51 */
52 int
Bram Moolenaar9b578142016-01-30 19:39:49 +010053coladvance_force(colnr_T wcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +000054{
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}
Bram Moolenaar071d4272004-06-13 20:20:40 +000067
68/*
Bram Moolenaar977239e2019-01-11 16:16:01 +010069 * Get the screen position of character col with a coladd in the cursor line.
70 */
71 int
Bram Moolenaarfc3abf42019-01-24 15:54:21 +010072getviscol2(colnr_T col, colnr_T coladd UNUSED)
Bram Moolenaar977239e2019-01-11 16:16:01 +010073{
74 colnr_T x;
75 pos_T pos;
76
77 pos.lnum = curwin->w_cursor.lnum;
78 pos.col = col;
Bram Moolenaar977239e2019-01-11 16:16:01 +010079 pos.coladd = coladd;
Bram Moolenaar977239e2019-01-11 16:16:01 +010080 getvvcol(curwin, &pos, &x, NULL, NULL);
81 return (int)x;
82}
83
84/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000085 * 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
Bram Moolenaar9b578142016-01-30 19:39:49 +010094coladvance(colnr_T wcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +000095{
96 int rc = getvpos(&curwin->w_cursor, wcol);
97
98 if (wcol == MAXCOL || rc == FAIL)
99 curwin->w_valid &= ~VALID_VIRTCOL;
Bram Moolenaardfccaf02004-12-31 20:56:11 +0000100 else if (*ml_get_cursor() != TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101 {
Bram Moolenaardfccaf02004-12-31 20:56:11 +0000102 /* Virtcol is valid when not on a TAB */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103 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
Bram Moolenaar9b578142016-01-30 19:39:49 +0100114getvpos(pos_T *pos, colnr_T wcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116 return coladvance2(pos, FALSE, virtual_active(), wcol);
117}
118
119 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100120coladvance2(
121 pos_T *pos,
Bram Moolenaarceba3dd2019-10-12 16:12:54 +0200122 int addspaces, // change the text to achieve our goal?
123 int finetune, // change char offset for the exact column
124 colnr_T wcol_arg) // column to move to (can be negative)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125{
Bram Moolenaarceba3dd2019-10-12 16:12:54 +0200126 colnr_T wcol = wcol_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127 int idx;
128 char_u *ptr;
129 char_u *line;
130 colnr_T col = 0;
131 int csize = 0;
132 int one_more;
133#ifdef FEAT_LINEBREAK
134 int head = 0;
135#endif
136
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000137 one_more = (State & INSERT)
138 || restart_edit != NUL
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000139 || (VIsual_active && *p_sel != 'o')
Bram Moolenaarceba3dd2019-10-12 16:12:54 +0200140 || ((ve_flags & VE_ONEMORE) && wcol < MAXCOL);
Bram Moolenaara1381de2009-11-03 15:44:21 +0000141 line = ml_get_buf(curbuf, pos->lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142
143 if (wcol >= MAXCOL)
144 {
145 idx = (int)STRLEN(line) - 1 + one_more;
146 col = wcol;
147
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148 if ((addspaces || finetune) && !VIsual_active)
149 {
150 curwin->w_curswant = linetabsize(line) + one_more;
151 if (curwin->w_curswant > 0)
152 --curwin->w_curswant;
153 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154 }
155 else
156 {
Bram Moolenaar02631462017-09-22 15:20:32 +0200157 int width = curwin->w_width - win_col_off(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158
Bram Moolenaarebefac62005-12-28 22:39:57 +0000159 if (finetune
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160 && curwin->w_p_wrap
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 && curwin->w_width != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162 && wcol >= (colnr_T)width)
163 {
164 csize = linetabsize(line);
165 if (csize > 0)
166 csize--;
167
Bram Moolenaarebefac62005-12-28 22:39:57 +0000168 if (wcol / width > (colnr_T)csize / width
169 && ((State & INSERT) == 0 || (int)wcol > csize + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170 {
171 /* In case of line wrapping don't move the cursor beyond the
Bram Moolenaarebefac62005-12-28 22:39:57 +0000172 * right screen edge. In Insert mode allow going just beyond
173 * the last character (like what happens when typing and
174 * reaching the right window edge). */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175 wcol = (csize / width + 1) * width - 1;
176 }
177 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179 ptr = line;
180 while (col <= wcol && *ptr != NUL)
181 {
182 /* Count a tab for what it's worth (if list mode not on) */
183#ifdef FEAT_LINEBREAK
Bram Moolenaar597a4222014-06-25 14:39:50 +0200184 csize = win_lbr_chartabsize(curwin, line, ptr, col, &head);
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100185 MB_PTR_ADV(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186#else
Bram Moolenaar597a4222014-06-25 14:39:50 +0200187 csize = lbr_chartabsize_adv(line, &ptr, col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188#endif
189 col += csize;
190 }
191 idx = (int)(ptr - line);
192 /*
193 * Handle all the special cases. The virtual_active() check
194 * is needed to ensure that a virtual position off the end of
195 * a line has the correct indexing. The one_more comparison
196 * replaces an explicit add of one_more later on.
197 */
198 if (col > wcol || (!virtual_active() && one_more == 0))
199 {
200 idx -= 1;
201# ifdef FEAT_LINEBREAK
202 /* Don't count the chars from 'showbreak'. */
203 csize -= head;
204# endif
205 col -= csize;
206 }
207
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208 if (virtual_active()
209 && addspaces
Bram Moolenaarceba3dd2019-10-12 16:12:54 +0200210 && wcol >= 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211 && ((col != wcol && col != wcol + 1) || csize > 1))
212 {
213 /* 'virtualedit' is set: The difference between wcol and col is
214 * filled with spaces. */
215
216 if (line[idx] == NUL)
217 {
218 /* Append spaces */
219 int correct = wcol - col;
220 char_u *newline = alloc(idx + correct + 1);
221 int t;
222
223 if (newline == NULL)
224 return FAIL;
225
226 for (t = 0; t < idx; ++t)
227 newline[t] = line[t];
228
229 for (t = 0; t < correct; ++t)
230 newline[t + idx] = ' ';
231
232 newline[idx + correct] = NUL;
233
234 ml_replace(pos->lnum, newline, FALSE);
235 changed_bytes(pos->lnum, (colnr_T)idx);
236 idx += correct;
237 col = wcol;
238 }
239 else
240 {
241 /* Break a tab */
242 int linelen = (int)STRLEN(line);
243 int correct = wcol - col - csize + 1; /* negative!! */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000244 char_u *newline;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 int t, s = 0;
246 int v;
247
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000248 if (-correct > csize)
249 return FAIL;
250
251 newline = alloc(linelen + csize);
252 if (newline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253 return FAIL;
254
255 for (t = 0; t < linelen; t++)
256 {
257 if (t != idx)
258 newline[s++] = line[t];
259 else
260 for (v = 0; v < csize; v++)
261 newline[s++] = ' ';
262 }
263
264 newline[linelen + csize - 1] = NUL;
265
266 ml_replace(pos->lnum, newline, FALSE);
267 changed_bytes(pos->lnum, idx);
268 idx += (csize - 1 + correct);
269 col += correct;
270 }
271 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272 }
273
274 if (idx < 0)
275 pos->col = 0;
276 else
277 pos->col = idx;
278
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279 pos->coladd = 0;
280
281 if (finetune)
282 {
283 if (wcol == MAXCOL)
284 {
285 /* The width of the last character is used to set coladd. */
286 if (!one_more)
287 {
288 colnr_T scol, ecol;
289
290 getvcol(curwin, pos, &scol, NULL, &ecol);
291 pos->coladd = ecol - scol;
292 }
293 }
294 else
295 {
296 int b = (int)wcol - (int)col;
297
298 /* The difference between wcol and col is used to set coladd. */
Bram Moolenaar02631462017-09-22 15:20:32 +0200299 if (b > 0 && b < (MAXCOL - 2 * curwin->w_width))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300 pos->coladd = b;
301
302 col += b;
303 }
304 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305
Bram Moolenaara1381de2009-11-03 15:44:21 +0000306 /* prevent from moving onto a trail byte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 if (has_mbyte)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200308 mb_adjustpos(curbuf, pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309
Bram Moolenaarceba3dd2019-10-12 16:12:54 +0200310 if (wcol < 0 || col < wcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311 return FAIL;
312 return OK;
313}
314
315/*
Bram Moolenaar446cb832008-06-24 21:56:24 +0000316 * Increment the cursor position. See inc() for return values.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317 */
318 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100319inc_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320{
321 return inc(&curwin->w_cursor);
322}
323
Bram Moolenaar446cb832008-06-24 21:56:24 +0000324/*
325 * Increment the line pointer "lp" crossing line boundaries as necessary.
326 * Return 1 when going to the next line.
327 * Return 2 when moving forward onto a NUL at the end of the line).
328 * Return -1 when at the end of file.
329 * Return 0 otherwise.
330 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100332inc(pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333{
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100334 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100336 /* when searching position may be set to end of a line */
337 if (lp->col != MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338 {
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100339 p = ml_get_pos(lp);
340 if (*p != NUL) /* still within line, move to next char (may be NUL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 {
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100342 if (has_mbyte)
343 {
344 int l = (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100346 lp->col += l;
347 return ((p[l] != NUL) ? 0 : 2);
348 }
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100349 lp->col++;
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100350 lp->coladd = 0;
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100351 return ((p[1] != NUL) ? 0 : 2);
352 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353 }
354 if (lp->lnum != curbuf->b_ml.ml_line_count) /* there is a next line */
355 {
356 lp->col = 0;
357 lp->lnum++;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358 lp->coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359 return 1;
360 }
361 return -1;
362}
363
364/*
365 * incl(lp): same as inc(), but skip the NUL at the end of non-empty lines
366 */
367 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100368incl(pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369{
370 int r;
371
372 if ((r = inc(lp)) >= 1 && lp->col)
373 r = inc(lp);
374 return r;
375}
376
377/*
378 * dec(p)
379 *
380 * Decrement the line pointer 'p' crossing line boundaries as necessary.
381 * Return 1 when crossing a line, -1 when at start of file, 0 otherwise.
382 */
383 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100384dec_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385{
Bram Moolenaarcaa55b62017-01-10 13:51:09 +0100386 return dec(&curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387}
388
389 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100390dec(pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391{
392 char_u *p;
393
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 lp->coladd = 0;
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100395 if (lp->col == MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396 {
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100397 /* past end of line */
398 p = ml_get(lp->lnum);
399 lp->col = (colnr_T)STRLEN(p);
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100400 if (has_mbyte)
401 lp->col -= (*mb_head_off)(p, p + lp->col);
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100402 return 0;
403 }
404
405 if (lp->col > 0)
406 {
407 /* still within line */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408 lp->col--;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409 if (has_mbyte)
410 {
411 p = ml_get(lp->lnum);
412 lp->col -= (*mb_head_off)(p, p + lp->col);
413 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414 return 0;
415 }
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100416
417 if (lp->lnum > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418 {
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100419 /* there is a prior line */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420 lp->lnum--;
421 p = ml_get(lp->lnum);
422 lp->col = (colnr_T)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423 if (has_mbyte)
424 lp->col -= (*mb_head_off)(p, p + lp->col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425 return 1;
426 }
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100427
428 /* at start of file */
429 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430}
431
432/*
433 * decl(lp): same as dec(), but skip the NUL at the end of non-empty lines
434 */
435 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100436decl(pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437{
438 int r;
439
440 if ((r = dec(lp)) == 1 && lp->col)
441 r = dec(lp);
442 return r;
443}
444
445/*
Bram Moolenaar64486672010-05-16 15:46:46 +0200446 * Get the line number relative to the current cursor position, i.e. the
447 * difference between line number and cursor position. Only look for lines that
448 * can be visible, folded lines don't count.
449 */
450 linenr_T
Bram Moolenaar9b578142016-01-30 19:39:49 +0100451get_cursor_rel_lnum(
452 win_T *wp,
453 linenr_T lnum) /* line number to get the result for */
Bram Moolenaar64486672010-05-16 15:46:46 +0200454{
455 linenr_T cursor = wp->w_cursor.lnum;
456 linenr_T retval = 0;
457
458#ifdef FEAT_FOLDING
459 if (hasAnyFolding(wp))
460 {
461 if (lnum > cursor)
462 {
463 while (lnum > cursor)
464 {
Bram Moolenaar0bd7b3f2013-12-14 12:48:58 +0100465 (void)hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
Bram Moolenaar64486672010-05-16 15:46:46 +0200466 /* if lnum and cursor are in the same fold,
467 * now lnum <= cursor */
468 if (lnum > cursor)
469 retval++;
470 lnum--;
471 }
472 }
473 else if (lnum < cursor)
474 {
475 while (lnum < cursor)
476 {
Bram Moolenaar0bd7b3f2013-12-14 12:48:58 +0100477 (void)hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL);
Bram Moolenaar64486672010-05-16 15:46:46 +0200478 /* if lnum and cursor are in the same fold,
479 * now lnum >= cursor */
480 if (lnum < cursor)
481 retval--;
482 lnum++;
483 }
484 }
485 /* else if (lnum == cursor)
486 * retval = 0;
487 */
488 }
489 else
490#endif
491 retval = lnum - cursor;
492
493 return retval;
494}
495
496/*
Bram Moolenaard5824ce2016-09-04 20:35:01 +0200497 * Make sure "pos.lnum" and "pos.col" are valid in "buf".
498 * This allows for the col to be on the NUL byte.
499 */
500 void
501check_pos(buf_T *buf, pos_T *pos)
502{
503 char_u *line;
504 colnr_T len;
505
506 if (pos->lnum > buf->b_ml.ml_line_count)
507 pos->lnum = buf->b_ml.ml_line_count;
508
509 if (pos->col > 0)
510 {
511 line = ml_get_buf(buf, pos->lnum, FALSE);
512 len = (colnr_T)STRLEN(line);
513 if (pos->col > len)
514 pos->col = len;
515 }
516}
517
518/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519 * Make sure curwin->w_cursor.lnum is valid.
520 */
521 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100522check_cursor_lnum(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523{
524 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
525 {
526#ifdef FEAT_FOLDING
527 /* If there is a closed fold at the end of the file, put the cursor in
528 * its first line. Otherwise in the last line. */
529 if (!hasFolding(curbuf->b_ml.ml_line_count,
530 &curwin->w_cursor.lnum, NULL))
531#endif
532 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
533 }
534 if (curwin->w_cursor.lnum <= 0)
535 curwin->w_cursor.lnum = 1;
536}
537
538/*
539 * Make sure curwin->w_cursor.col is valid.
540 */
541 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100542check_cursor_col(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543{
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200544 check_cursor_col_win(curwin);
545}
546
547/*
548 * Make sure win->w_cursor.col is valid.
549 */
550 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100551check_cursor_col_win(win_T *win)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200552{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 colnr_T len;
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200554 colnr_T oldcol = win->w_cursor.col;
555 colnr_T oldcoladd = win->w_cursor.col + win->w_cursor.coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200557 len = (colnr_T)STRLEN(ml_get_buf(win->w_buffer, win->w_cursor.lnum, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558 if (len == 0)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200559 win->w_cursor.col = 0;
560 else if (win->w_cursor.col >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561 {
Bram Moolenaar33f54432008-01-04 20:25:44 +0000562 /* Allow cursor past end-of-line when:
563 * - in Insert mode or restarting Insert mode
564 * - in Visual mode and 'selection' isn't "old"
565 * - 'virtualedit' is set */
Bram Moolenaarebefac62005-12-28 22:39:57 +0000566 if ((State & INSERT) || restart_edit
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 || (VIsual_active && *p_sel != 'o')
Bram Moolenaar33f54432008-01-04 20:25:44 +0000568 || (ve_flags & VE_ONEMORE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 || virtual_active())
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200570 win->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 else
Bram Moolenaar87c19962007-04-26 08:54:21 +0000572 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200573 win->w_cursor.col = len - 1;
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200574 /* Move the cursor to the head byte. */
Bram Moolenaar87c19962007-04-26 08:54:21 +0000575 if (has_mbyte)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200576 mb_adjustpos(win->w_buffer, &win->w_cursor);
Bram Moolenaar87c19962007-04-26 08:54:21 +0000577 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578 }
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200579 else if (win->w_cursor.col < 0)
580 win->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582 /* If virtual editing is on, we can leave the cursor on the old position,
583 * only we must set it to virtual. But don't do it when at the end of the
584 * line. */
585 if (oldcol == MAXCOL)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200586 win->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587 else if (ve_flags == VE_ALL)
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000588 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200589 if (oldcoladd > win->w_cursor.col)
Bram Moolenaar9aa15692017-08-19 15:05:32 +0200590 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200591 win->w_cursor.coladd = oldcoladd - win->w_cursor.col;
Bram Moolenaard41babe2017-08-30 17:01:35 +0200592
593 /* Make sure that coladd is not more than the char width.
594 * Not for the last character, coladd is then used when the cursor
595 * is actually after the last character. */
596 if (win->w_cursor.col + 1 < len && win->w_cursor.coladd > 0)
Bram Moolenaar9aa15692017-08-19 15:05:32 +0200597 {
598 int cs, ce;
599
Bram Moolenaar9aa15692017-08-19 15:05:32 +0200600 getvcol(win, &win->w_cursor, &cs, NULL, &ce);
601 if (win->w_cursor.coladd > ce - cs)
602 win->w_cursor.coladd = ce - cs;
603 }
604 }
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000605 else
606 /* avoid weird number when there is a miscalculation or overflow */
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200607 win->w_cursor.coladd = 0;
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000608 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609}
610
611/*
612 * make sure curwin->w_cursor in on a valid character
613 */
614 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100615check_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616{
617 check_cursor_lnum();
618 check_cursor_col();
619}
620
621#if defined(FEAT_TEXTOBJ) || defined(PROTO)
622/*
623 * Make sure curwin->w_cursor is not on the NUL at the end of the line.
624 * Allow it when in Visual mode and 'selection' is not "old".
625 */
626 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100627adjust_cursor_col(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628{
629 if (curwin->w_cursor.col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 && (!VIsual_active || *p_sel == 'o')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631 && gchar_cursor() == NUL)
632 --curwin->w_cursor.col;
633}
634#endif
635
636/*
637 * When curwin->w_leftcol has changed, adjust the cursor position.
638 * Return TRUE if the cursor was moved.
639 */
640 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100641leftcol_changed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642{
643 long lastcol;
644 colnr_T s, e;
645 int retval = FALSE;
Bram Moolenaar375e3392019-01-31 18:26:10 +0100646 long siso = get_sidescrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647
648 changed_cline_bef_curs();
Bram Moolenaar02631462017-09-22 15:20:32 +0200649 lastcol = curwin->w_leftcol + curwin->w_width - curwin_col_off() - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650 validate_virtcol();
651
652 /*
653 * If the cursor is right or left of the screen, move it to last or first
654 * character.
655 */
Bram Moolenaar375e3392019-01-31 18:26:10 +0100656 if (curwin->w_virtcol > (colnr_T)(lastcol - siso))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 {
658 retval = TRUE;
Bram Moolenaar375e3392019-01-31 18:26:10 +0100659 coladvance((colnr_T)(lastcol - siso));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660 }
Bram Moolenaar375e3392019-01-31 18:26:10 +0100661 else if (curwin->w_virtcol < curwin->w_leftcol + siso)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 {
663 retval = TRUE;
Bram Moolenaar375e3392019-01-31 18:26:10 +0100664 (void)coladvance((colnr_T)(curwin->w_leftcol + siso));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000665 }
666
667 /*
668 * If the start of the character under the cursor is not on the screen,
669 * advance the cursor one more char. If this fails (last char of the
670 * line) adjust the scrolling.
671 */
672 getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e);
673 if (e > (colnr_T)lastcol)
674 {
675 retval = TRUE;
676 coladvance(s - 1);
677 }
678 else if (s < curwin->w_leftcol)
679 {
680 retval = TRUE;
681 if (coladvance(e + 1) == FAIL) /* there isn't another character */
682 {
683 curwin->w_leftcol = s; /* adjust w_leftcol instead */
684 changed_cline_bef_curs();
685 }
686 }
687
688 if (retval)
689 curwin->w_set_curswant = TRUE;
690 redraw_later(NOT_VALID);
691 return retval;
692}
693
694/**********************************************************************
695 * Various routines dealing with allocation and deallocation of memory.
696 */
697
698#if defined(MEM_PROFILE) || defined(PROTO)
699
700# define MEM_SIZES 8200
701static long_u mem_allocs[MEM_SIZES];
702static long_u mem_frees[MEM_SIZES];
703static long_u mem_allocated;
704static long_u mem_freed;
705static long_u mem_peak;
706static long_u num_alloc;
707static long_u num_freed;
708
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100710mem_pre_alloc_s(size_t *sizep)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711{
712 *sizep += sizeof(size_t);
713}
714
715 static void
Bram Moolenaar964b3742019-05-24 18:54:09 +0200716mem_pre_alloc_l(size_t *sizep)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717{
718 *sizep += sizeof(size_t);
719}
720
721 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100722mem_post_alloc(
723 void **pp,
724 size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725{
726 if (*pp == NULL)
727 return;
728 size -= sizeof(size_t);
729 *(long_u *)*pp = size;
730 if (size <= MEM_SIZES-1)
731 mem_allocs[size-1]++;
732 else
733 mem_allocs[MEM_SIZES-1]++;
734 mem_allocated += size;
735 if (mem_allocated - mem_freed > mem_peak)
736 mem_peak = mem_allocated - mem_freed;
737 num_alloc++;
738 *pp = (void *)((char *)*pp + sizeof(size_t));
739}
740
741 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100742mem_pre_free(void **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743{
744 long_u size;
745
746 *pp = (void *)((char *)*pp - sizeof(size_t));
747 size = *(size_t *)*pp;
748 if (size <= MEM_SIZES-1)
749 mem_frees[size-1]++;
750 else
751 mem_frees[MEM_SIZES-1]++;
752 mem_freed += size;
753 num_freed++;
754}
755
756/*
757 * called on exit via atexit()
758 */
759 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100760vim_mem_profile_dump(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761{
762 int i, j;
763
764 printf("\r\n");
765 j = 0;
766 for (i = 0; i < MEM_SIZES - 1; i++)
767 {
768 if (mem_allocs[i] || mem_frees[i])
769 {
770 if (mem_frees[i] > mem_allocs[i])
771 printf("\r\n%s", _("ERROR: "));
772 printf("[%4d / %4lu-%-4lu] ", i + 1, mem_allocs[i], mem_frees[i]);
773 j++;
774 if (j > 3)
775 {
776 j = 0;
777 printf("\r\n");
778 }
779 }
780 }
781
782 i = MEM_SIZES - 1;
783 if (mem_allocs[i])
784 {
785 printf("\r\n");
786 if (mem_frees[i] > mem_allocs[i])
Bram Moolenaar2f1e0502010-08-13 11:18:02 +0200787 puts(_("ERROR: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]);
789 }
790
791 printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"),
792 mem_allocated, mem_freed, mem_allocated - mem_freed, mem_peak);
793 printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"),
794 num_alloc, num_freed);
795}
796
797#endif /* MEM_PROFILE */
798
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100799#ifdef FEAT_EVAL
Bram Moolenaarf49cc602018-11-11 15:21:05 +0100800 int
Bram Moolenaar964b3742019-05-24 18:54:09 +0200801alloc_does_fail(size_t size)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100802{
803 if (alloc_fail_countdown == 0)
804 {
805 if (--alloc_fail_repeat <= 0)
806 alloc_fail_id = 0;
Bram Moolenaara260b872016-01-15 20:48:22 +0100807 do_outofmem_msg(size);
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100808 return TRUE;
809 }
810 --alloc_fail_countdown;
811 return FALSE;
812}
813#endif
814
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815/*
816 * Some memory is reserved for error messages and for being able to
817 * call mf_release_all(), which needs some memory for mf_trans_add().
818 */
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100819#define KEEP_ROOM (2 * 8192L)
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200820#define KEEP_ROOM_KB (KEEP_ROOM / 1024L)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821
822/*
Bram Moolenaar964b3742019-05-24 18:54:09 +0200823 * The normal way to allocate memory. This handles an out-of-memory situation
824 * as well as possible, still returns NULL when we're completely out.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200826 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200827alloc(size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828{
Bram Moolenaar964b3742019-05-24 18:54:09 +0200829 return lalloc(size, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830}
831
832/*
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100833 * alloc() with an ID for alloc_fail().
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100834 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200835 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200836alloc_id(size_t size, alloc_id_T id UNUSED)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100837{
838#ifdef FEAT_EVAL
Bram Moolenaar964b3742019-05-24 18:54:09 +0200839 if (alloc_fail_id == id && alloc_does_fail(size))
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100840 return NULL;
841#endif
Bram Moolenaar964b3742019-05-24 18:54:09 +0200842 return lalloc(size, TRUE);
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100843}
844
845/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 * Allocate memory and set all bytes to zero.
847 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200848 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200849alloc_clear(size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850{
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200851 void *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852
Bram Moolenaar964b3742019-05-24 18:54:09 +0200853 p = lalloc(size, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 if (p != NULL)
Bram Moolenaar964b3742019-05-24 18:54:09 +0200855 (void)vim_memset(p, 0, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 return p;
857}
858
859/*
Bram Moolenaar162b7142018-12-21 15:17:36 +0100860 * Same as alloc_clear() but with allocation id for testing
861 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200862 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200863alloc_clear_id(size_t size, alloc_id_T id UNUSED)
Bram Moolenaar162b7142018-12-21 15:17:36 +0100864{
865#ifdef FEAT_EVAL
Bram Moolenaar964b3742019-05-24 18:54:09 +0200866 if (alloc_fail_id == id && alloc_does_fail(size))
Bram Moolenaar162b7142018-12-21 15:17:36 +0100867 return NULL;
868#endif
869 return alloc_clear(size);
870}
871
872/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 * Allocate memory like lalloc() and set all bytes to zero.
874 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200875 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200876lalloc_clear(size_t size, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877{
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200878 void *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200880 p = lalloc(size, message);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881 if (p != NULL)
Bram Moolenaar964b3742019-05-24 18:54:09 +0200882 (void)vim_memset(p, 0, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883 return p;
884}
885
886/*
887 * Low level memory allocation function.
888 * This is used often, KEEP IT FAST!
889 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200890 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200891lalloc(size_t size, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892{
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200893 void *p; /* pointer to new storage space */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894 static int releasing = FALSE; /* don't do mf_release_all() recursive */
895 int try_again;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100896#if defined(HAVE_AVAIL_MEM)
Bram Moolenaar964b3742019-05-24 18:54:09 +0200897 static size_t allocated = 0; /* allocated since last avail check */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898#endif
899
Bram Moolenaar964b3742019-05-24 18:54:09 +0200900 // Safety check for allocating zero bytes
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901 if (size == 0)
902 {
Bram Moolenaar964b3742019-05-24 18:54:09 +0200903 // Don't hide this message
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 emsg_silent = 0;
Bram Moolenaar964b3742019-05-24 18:54:09 +0200905 iemsg(_("E341: Internal error: lalloc(0, )"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 return NULL;
907 }
908
909#ifdef MEM_PROFILE
910 mem_pre_alloc_l(&size);
911#endif
912
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 /*
914 * Loop when out of memory: Try to release some memfile blocks and
915 * if some blocks are released call malloc again.
916 */
917 for (;;)
918 {
919 /*
920 * Handle three kind of systems:
921 * 1. No check for available memory: Just return.
922 * 2. Slow check for available memory: call mch_avail_mem() after
923 * allocating KEEP_ROOM amount of memory.
924 * 3. Strict check for available memory: call mch_avail_mem()
925 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200926 if ((p = malloc(size)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 {
928#ifndef HAVE_AVAIL_MEM
929 /* 1. No check for available memory: Just return. */
930 goto theend;
931#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 /* 2. Slow check for available memory: call mch_avail_mem() after
933 * allocating (KEEP_ROOM / 2) amount of memory. */
934 allocated += size;
935 if (allocated < KEEP_ROOM / 2)
936 goto theend;
937 allocated = 0;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100938
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939 /* 3. check for available memory: call mch_avail_mem() */
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200940 if (mch_avail_mem(TRUE) < KEEP_ROOM_KB && !releasing)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200942 free(p); /* System is low... no go! */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 p = NULL;
944 }
945 else
946 goto theend;
947#endif
948 }
949 /*
950 * Remember that mf_release_all() is being called to avoid an endless
951 * loop, because mf_release_all() may call alloc() recursively.
952 */
953 if (releasing)
954 break;
955 releasing = TRUE;
Bram Moolenaar661b1822005-07-28 22:36:45 +0000956
Bram Moolenaarf2405ed2017-03-16 19:58:25 +0100957 clear_sb_text(TRUE); /* free any scrollback text */
Bram Moolenaar661b1822005-07-28 22:36:45 +0000958 try_again = mf_release_all(); /* release as many blocks as possible */
Bram Moolenaar661b1822005-07-28 22:36:45 +0000959
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960 releasing = FALSE;
961 if (!try_again)
962 break;
963 }
964
965 if (message && p == NULL)
966 do_outofmem_msg(size);
967
968theend:
969#ifdef MEM_PROFILE
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200970 mem_post_alloc(&p, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971#endif
972 return p;
973}
974
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100975/*
976 * lalloc() with an ID for alloc_fail().
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100977 */
Bram Moolenaar113e1072019-01-20 15:30:40 +0100978#if defined(FEAT_SIGNS) || defined(PROTO)
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200979 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200980lalloc_id(size_t size, int message, alloc_id_T id UNUSED)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100981{
982#ifdef FEAT_EVAL
Bram Moolenaara260b872016-01-15 20:48:22 +0100983 if (alloc_fail_id == id && alloc_does_fail(size))
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100984 return NULL;
985#endif
Bram Moolenaar964b3742019-05-24 18:54:09 +0200986 return (lalloc(size, message));
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100987}
Bram Moolenaar113e1072019-01-20 15:30:40 +0100988#endif
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100989
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990#if defined(MEM_PROFILE) || defined(PROTO)
991/*
992 * realloc() with memory profiling.
993 */
994 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100995mem_realloc(void *ptr, size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996{
997 void *p;
998
999 mem_pre_free(&ptr);
1000 mem_pre_alloc_s(&size);
1001
1002 p = realloc(ptr, size);
1003
1004 mem_post_alloc(&p, size);
1005
1006 return p;
1007}
1008#endif
1009
1010/*
1011* Avoid repeating the error message many times (they take 1 second each).
1012* Did_outofmem_msg is reset when a character is read.
1013*/
1014 void
Bram Moolenaar964b3742019-05-24 18:54:09 +02001015do_outofmem_msg(size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016{
1017 if (!did_outofmem_msg)
1018 {
Bram Moolenaar4dc8f492019-08-21 13:06:55 +02001019 // Don't hide this message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020 emsg_silent = 0;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001021
Bram Moolenaar4dc8f492019-08-21 13:06:55 +02001022 // Must come first to avoid coming back here when printing the error
1023 // message fails, e.g. when setting v:errmsg.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024 did_outofmem_msg = TRUE;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001025
Bram Moolenaar964b3742019-05-24 18:54:09 +02001026 semsg(_("E342: Out of memory! (allocating %lu bytes)"), (long_u)size);
Bram Moolenaar4dc8f492019-08-21 13:06:55 +02001027
1028 if (starting == NO_SCREEN)
1029 // Not even finished with initializations and already out of
1030 // memory? Then nothing is going to work, exit.
1031 mch_exit(123);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032 }
1033}
1034
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001035#if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001036
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001037/*
1038 * Free everything that we allocated.
1039 * Can be used to detect memory leaks, e.g., with ccmalloc.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001040 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
1041 * surprised if Vim crashes...
1042 * Some things can't be freed, esp. things local to a library function.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001043 */
1044 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001045free_all_mem(void)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001046{
1047 buf_T *buf, *nextbuf;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001048
1049 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
1050 * Don't try freeing everything again. */
Bram Moolenaarb89a25f2016-06-01 23:08:39 +02001051 if (entered_free_all_mem)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001052 return;
Bram Moolenaarb89a25f2016-06-01 23:08:39 +02001053 entered_free_all_mem = TRUE;
Bram Moolenaara9673212016-06-01 22:21:06 +02001054
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02001055 /* Don't want to trigger autocommands from here on. */
1056 block_autocmds();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001057
Bram Moolenaar5bedfc62010-07-20 22:30:01 +02001058 /* Close all tabs and windows. Reset 'equalalways' to avoid redraws. */
1059 p_ea = FALSE;
Bram Moolenaare5c83282019-05-03 23:15:37 +02001060 if (first_tabpage != NULL && first_tabpage->tp_next != NULL)
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001061 do_cmdline_cmd((char_u *)"tabonly!");
Bram Moolenaar95f09602016-11-10 20:01:45 +01001062 if (!ONE_WINDOW)
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001063 do_cmdline_cmd((char_u *)"only!");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001064
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001065# if defined(FEAT_SPELL)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001066 /* Free all spell info. */
1067 spell_free_all();
1068# endif
1069
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001070# if defined(FEAT_BEVAL_TERM)
Bram Moolenaarb301f6b2018-02-10 15:38:35 +01001071 ui_remove_balloon();
1072# endif
1073
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001074 // Clear user commands (before deleting buffers).
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001075 ex_comclear(NULL);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001076
Bram Moolenaare5c83282019-05-03 23:15:37 +02001077 // When exiting from mainerr_arg_missing curbuf has not been initialized,
1078 // and not much else.
1079 if (curbuf != NULL)
1080 {
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001081# ifdef FEAT_MENU
Bram Moolenaare5c83282019-05-03 23:15:37 +02001082 // Clear menus.
1083 do_cmdline_cmd((char_u *)"aunmenu *");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001084# ifdef FEAT_MULTI_LANG
Bram Moolenaare5c83282019-05-03 23:15:37 +02001085 do_cmdline_cmd((char_u *)"menutranslate clear");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001086# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001087# endif
Bram Moolenaare5c83282019-05-03 23:15:37 +02001088 // Clear mappings, abbreviations, breakpoints.
1089 do_cmdline_cmd((char_u *)"lmapclear");
1090 do_cmdline_cmd((char_u *)"xmapclear");
1091 do_cmdline_cmd((char_u *)"mapclear");
1092 do_cmdline_cmd((char_u *)"mapclear!");
1093 do_cmdline_cmd((char_u *)"abclear");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001094# if defined(FEAT_EVAL)
Bram Moolenaare5c83282019-05-03 23:15:37 +02001095 do_cmdline_cmd((char_u *)"breakdel *");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001096# endif
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001097# if defined(FEAT_PROFILE)
Bram Moolenaare5c83282019-05-03 23:15:37 +02001098 do_cmdline_cmd((char_u *)"profdel *");
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001099# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001100# if defined(FEAT_KEYMAP)
Bram Moolenaare5c83282019-05-03 23:15:37 +02001101 do_cmdline_cmd((char_u *)"set keymap=");
Bram Moolenaar48ac6712019-07-04 20:26:21 +02001102# endif
Bram Moolenaare5c83282019-05-03 23:15:37 +02001103 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001104
1105# ifdef FEAT_TITLE
1106 free_titles();
1107# endif
1108# if defined(FEAT_SEARCHPATH)
1109 free_findfile();
1110# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001111
1112 /* Obviously named calls. */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001113 free_all_autocmds();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001114 clear_termcodes();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001115 free_all_marks();
1116 alist_clear(&global_alist);
1117 free_homedir();
Bram Moolenaar24305862012-08-15 14:05:05 +02001118 free_users();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001119 free_search_patterns();
1120 free_old_sub();
1121 free_last_insert();
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001122 free_insexpand_stuff();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001123 free_prev_shellcmd();
1124 free_regexp_stuff();
1125 free_tag_stuff();
1126 free_cd_dir();
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001127# ifdef FEAT_SIGNS
1128 free_signs();
1129# endif
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001130# ifdef FEAT_EVAL
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001131 set_expr_line(NULL);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001132# endif
1133# ifdef FEAT_DIFF
Bram Moolenaare5c83282019-05-03 23:15:37 +02001134 if (curtab != NULL)
1135 diff_clear(curtab);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001136# endif
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01001137 clear_sb_text(TRUE); /* free any scrollback text */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001138
1139 /* Free some global vars. */
1140 vim_free(username);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001141# ifdef FEAT_CLIPBOARD
Bram Moolenaar473de612013-06-08 18:19:48 +02001142 vim_regfree(clip_exclude_prog);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001143# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001144 vim_free(last_cmdline);
1145 vim_free(new_last_cmdline);
Bram Moolenaar238a5642006-02-21 22:12:05 +00001146 set_keep_msg(NULL, 0);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001147
1148 /* Clear cmdline history. */
1149 p_hi = 0;
1150 init_history();
Bram Moolenaar48ac6712019-07-04 20:26:21 +02001151# ifdef FEAT_TEXT_PROP
Bram Moolenaar98aefe72018-12-13 22:20:09 +01001152 clear_global_prop_types();
Bram Moolenaar48ac6712019-07-04 20:26:21 +02001153# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001154
Bram Moolenaar48ac6712019-07-04 20:26:21 +02001155# ifdef FEAT_QUICKFIX
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001156 {
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001157 win_T *win;
1158 tabpage_T *tab;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001159
1160 qf_free_all(NULL);
Bram Moolenaare5c83282019-05-03 23:15:37 +02001161 // Free all location lists
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001162 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001163 qf_free_all(win);
1164 }
Bram Moolenaar48ac6712019-07-04 20:26:21 +02001165# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001166
Bram Moolenaare5c83282019-05-03 23:15:37 +02001167 // Close all script inputs.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001168 close_all_scripts();
1169
Bram Moolenaare5c83282019-05-03 23:15:37 +02001170 if (curwin != NULL)
1171 // Destroy all windows. Must come before freeing buffers.
1172 win_free_all();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001173
Bram Moolenaar4f198282017-10-23 21:53:30 +02001174 /* Free all option values. Must come after closing windows. */
1175 free_all_options();
1176
Bram Moolenaar2a329742008-04-01 12:53:43 +00001177 /* Free all buffers. Reset 'autochdir' to avoid accessing things that
1178 * were freed already. */
Bram Moolenaar48ac6712019-07-04 20:26:21 +02001179# ifdef FEAT_AUTOCHDIR
Bram Moolenaar2a329742008-04-01 12:53:43 +00001180 p_acd = FALSE;
Bram Moolenaar48ac6712019-07-04 20:26:21 +02001181# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001182 for (buf = firstbuf; buf != NULL; )
1183 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001184 bufref_T bufref;
1185
1186 set_bufref(&bufref, buf);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001187 nextbuf = buf->b_next;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001188 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001189 if (bufref_valid(&bufref))
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001190 buf = nextbuf; /* didn't work, try next one */
1191 else
1192 buf = firstbuf;
1193 }
1194
Bram Moolenaar48ac6712019-07-04 20:26:21 +02001195# ifdef FEAT_ARABIC
1196 free_arshape_buf();
1197# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001198
1199 /* Clear registers. */
1200 clear_registers();
1201 ResetRedobuff();
1202 ResetRedobuff();
1203
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001204# if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001205 vim_free(serverDelayedStartName);
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001206# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001207
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001208 /* highlight info */
1209 free_highlight();
1210
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001211 reset_last_sourcing();
1212
Bram Moolenaare5c83282019-05-03 23:15:37 +02001213 if (first_tabpage != NULL)
1214 {
1215 free_tabpage(first_tabpage);
1216 first_tabpage = NULL;
1217 }
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001218
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001219# ifdef UNIX
1220 /* Machine-specific free. */
1221 mch_free_mem();
1222# endif
1223
1224 /* message history */
1225 for (;;)
1226 if (delete_first_msg() == FAIL)
1227 break;
1228
Bram Moolenaar655da312016-05-28 22:22:34 +02001229# ifdef FEAT_JOB_CHANNEL
1230 channel_free_all();
Bram Moolenaar655da312016-05-28 22:22:34 +02001231# endif
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001232# ifdef FEAT_TIMERS
Bram Moolenaar623e2632016-07-30 22:47:56 +02001233 timer_free_all();
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001234# endif
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001235# ifdef FEAT_EVAL
1236 /* must be after channel_free_all() with unrefs partials */
1237 eval_clear();
1238# endif
1239# ifdef FEAT_JOB_CHANNEL
1240 /* must be after eval_clear() with unrefs jobs */
1241 job_free_all();
1242# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001243
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001244 free_termoptions();
1245
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001246 /* screenlines (can't display anything now!) */
1247 free_screenlines();
1248
Bram Moolenaar82febc12019-06-10 14:48:59 +02001249# if defined(FEAT_SOUND)
1250 sound_free();
1251# endif
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001252# if defined(USE_XSMP)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001253 xsmp_close();
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001254# endif
1255# ifdef FEAT_GUI_GTK
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001256 gui_mch_free_all();
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001257# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001258 clear_hl_tables();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001259
1260 vim_free(IObuff);
1261 vim_free(NameBuff);
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001262# ifdef FEAT_QUICKFIX
1263 check_quickfix_busy();
1264# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001265}
1266#endif
1267
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268/*
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001269 * Copy "string" into newly allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 */
1271 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001272vim_strsave(char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273{
1274 char_u *p;
Bram Moolenaar964b3742019-05-24 18:54:09 +02001275 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276
Bram Moolenaar964b3742019-05-24 18:54:09 +02001277 len = STRLEN(string) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 p = alloc(len);
1279 if (p != NULL)
Bram Moolenaar964b3742019-05-24 18:54:09 +02001280 mch_memmove(p, string, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 return p;
1282}
1283
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001284/*
1285 * Copy up to "len" bytes of "string" into newly allocated memory and
1286 * terminate with a NUL.
1287 * The allocated memory always has size "len + 1", also when "string" is
1288 * shorter.
1289 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001291vim_strnsave(char_u *string, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292{
1293 char_u *p;
1294
Bram Moolenaar51e14382019-05-25 20:21:28 +02001295 p = alloc(len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296 if (p != NULL)
1297 {
1298 STRNCPY(p, string, len);
1299 p[len] = NUL;
1300 }
1301 return p;
1302}
1303
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01001305 * Copy "p[len]" into allocated memory, ignoring NUL characters.
1306 * Returns NULL when out of memory.
1307 */
1308 char_u *
Bram Moolenaar964b3742019-05-24 18:54:09 +02001309vim_memsave(char_u *p, size_t len)
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01001310{
Bram Moolenaar964b3742019-05-24 18:54:09 +02001311 char_u *ret = alloc(len);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01001312
1313 if (ret != NULL)
Bram Moolenaar964b3742019-05-24 18:54:09 +02001314 mch_memmove(ret, p, len);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01001315 return ret;
1316}
1317
1318/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1320 * by a backslash.
1321 */
1322 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001323vim_strsave_escaped(char_u *string, char_u *esc_chars)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324{
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001325 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326}
1327
1328/*
1329 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1330 * characters where rem_backslash() would remove the backslash.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001331 * Escape the characters with "cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 */
1333 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001334vim_strsave_escaped_ext(
1335 char_u *string,
1336 char_u *esc_chars,
1337 int cc,
1338 int bsl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339{
1340 char_u *p;
1341 char_u *p2;
1342 char_u *escaped_string;
1343 unsigned length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345
1346 /*
1347 * First count the number of backslashes required.
1348 * Then allocate the memory and insert them.
1349 */
1350 length = 1; /* count the trailing NUL */
1351 for (p = string; *p; p++)
1352 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001353 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 {
1355 length += l; /* count a multibyte char */
1356 p += l - 1;
1357 continue;
1358 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1360 ++length; /* count a backslash */
1361 ++length; /* count an ordinary char */
1362 }
1363 escaped_string = alloc(length);
1364 if (escaped_string != NULL)
1365 {
1366 p2 = escaped_string;
1367 for (p = string; *p; p++)
1368 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001369 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 {
1371 mch_memmove(p2, p, (size_t)l);
1372 p2 += l;
1373 p += l - 1; /* skip multibyte char */
1374 continue;
1375 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001377 *p2++ = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 *p2++ = *p;
1379 }
1380 *p2 = NUL;
1381 }
1382 return escaped_string;
1383}
1384
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001385/*
1386 * Return TRUE when 'shell' has "csh" in the tail.
1387 */
1388 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001389csh_like_shell(void)
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001390{
1391 return (strstr((char *)gettail(p_sh), "csh") != NULL);
1392}
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001393
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001394/*
1395 * Escape "string" for use as a shell argument with system().
Bram Moolenaar21160b92009-11-11 15:56:10 +00001396 * This uses single quotes, except when we know we need to use double quotes
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001397 * (MS-DOS and MS-Windows without 'shellslash' set).
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001398 * Escape a newline, depending on the 'shell' option.
1399 * When "do_special" is TRUE also replace "!", "%", "#" and things starting
1400 * with "<" like "<cfile>".
Bram Moolenaar26df0922014-02-23 23:39:13 +01001401 * When "do_newline" is FALSE do not escape newline unless it is csh shell.
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001402 * Returns the result in allocated memory, NULL if we have run out.
1403 */
1404 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001405vim_strsave_shellescape(char_u *string, int do_special, int do_newline)
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001406{
1407 unsigned length;
1408 char_u *p;
1409 char_u *d;
1410 char_u *escaped_string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001411 int l;
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001412 int csh_like;
1413
1414 /* Only csh and similar shells expand '!' within single quotes. For sh and
1415 * the like we must not put a backslash before it, it will be taken
1416 * literally. If do_special is set the '!' will be escaped twice.
1417 * Csh also needs to have "\n" escaped twice when do_special is set. */
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001418 csh_like = csh_like_shell();
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001419
1420 /* First count the number of extra bytes required. */
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001421 length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001422 for (p = string; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001423 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001424# ifdef MSWIN
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001425 if (!p_ssl)
1426 {
1427 if (*p == '"')
1428 ++length; /* " -> "" */
1429 }
1430 else
1431# endif
1432 if (*p == '\'')
1433 length += 3; /* ' => '\'' */
Bram Moolenaar26df0922014-02-23 23:39:13 +01001434 if ((*p == '\n' && (csh_like || do_newline))
1435 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001436 {
1437 ++length; /* insert backslash */
1438 if (csh_like && do_special)
1439 ++length; /* insert backslash */
1440 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001441 if (do_special && find_cmdline_var(p, &l) >= 0)
1442 {
1443 ++length; /* insert backslash */
1444 p += l - 1;
1445 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001446 }
1447
1448 /* Allocate memory for the result and fill it. */
1449 escaped_string = alloc(length);
1450 if (escaped_string != NULL)
1451 {
1452 d = escaped_string;
1453
1454 /* add opening quote */
Bram Moolenaar4f974752019-02-17 17:44:42 +01001455# ifdef MSWIN
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001456 if (!p_ssl)
1457 *d++ = '"';
1458 else
1459# endif
1460 *d++ = '\'';
1461
1462 for (p = string; *p != NUL; )
1463 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001464# ifdef MSWIN
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001465 if (!p_ssl)
1466 {
1467 if (*p == '"')
1468 {
1469 *d++ = '"';
1470 *d++ = '"';
1471 ++p;
1472 continue;
1473 }
1474 }
1475 else
1476# endif
1477 if (*p == '\'')
1478 {
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001479 *d++ = '\'';
1480 *d++ = '\\';
1481 *d++ = '\'';
1482 *d++ = '\'';
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001483 ++p;
1484 continue;
1485 }
Bram Moolenaar26df0922014-02-23 23:39:13 +01001486 if ((*p == '\n' && (csh_like || do_newline))
1487 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001488 {
1489 *d++ = '\\';
1490 if (csh_like && do_special)
1491 *d++ = '\\';
1492 *d++ = *p++;
1493 continue;
1494 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001495 if (do_special && find_cmdline_var(p, &l) >= 0)
1496 {
1497 *d++ = '\\'; /* insert backslash */
1498 while (--l >= 0) /* copy the var */
1499 *d++ = *p++;
Bram Moolenaar099d01d2009-11-25 16:14:45 +00001500 continue;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001501 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001502
1503 MB_COPY_CHAR(p, d);
1504 }
1505
1506 /* add terminating quote and finish with a NUL */
Bram Moolenaar4f974752019-02-17 17:44:42 +01001507# ifdef MSWIN
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001508 if (!p_ssl)
1509 *d++ = '"';
1510 else
1511# endif
1512 *d++ = '\'';
1513 *d = NUL;
1514 }
1515
1516 return escaped_string;
1517}
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001518
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519/*
1520 * Like vim_strsave(), but make all characters uppercase.
1521 * This uses ASCII lower-to-upper case translation, language independent.
1522 */
1523 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001524vim_strsave_up(char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525{
1526 char_u *p1;
1527
1528 p1 = vim_strsave(string);
1529 vim_strup(p1);
1530 return p1;
1531}
1532
1533/*
1534 * Like vim_strnsave(), but make all characters uppercase.
1535 * This uses ASCII lower-to-upper case translation, language independent.
1536 */
1537 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001538vim_strnsave_up(char_u *string, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539{
1540 char_u *p1;
1541
1542 p1 = vim_strnsave(string, len);
1543 vim_strup(p1);
1544 return p1;
1545}
1546
1547/*
1548 * ASCII lower-to-upper case translation, language independent.
1549 */
1550 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001551vim_strup(
1552 char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553{
1554 char_u *p2;
1555 int c;
1556
1557 if (p != NULL)
1558 {
1559 p2 = p;
1560 while ((c = *p2) != NUL)
1561#ifdef EBCDIC
1562 *p2++ = isalpha(c) ? toupper(c) : c;
1563#else
1564 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1565#endif
1566 }
1567}
1568
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001569#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001570/*
1571 * Make string "s" all upper-case and return it in allocated memory.
1572 * Handles multi-byte characters as well as possible.
1573 * Returns NULL when out of memory.
1574 */
1575 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001576strup_save(char_u *orig)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001577{
1578 char_u *p;
1579 char_u *res;
1580
1581 res = p = vim_strsave(orig);
1582
1583 if (res != NULL)
1584 while (*p != NUL)
1585 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001586 int l;
1587
1588 if (enc_utf8)
1589 {
1590 int c, uc;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001591 int newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001592 char_u *s;
1593
1594 c = utf_ptr2char(p);
Bram Moolenaare6640ad2017-12-22 21:06:56 +01001595 l = utf_ptr2len(p);
1596 if (c == 0)
1597 {
1598 /* overlong sequence, use only the first byte */
1599 c = *p;
1600 l = 1;
1601 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001602 uc = utf_toupper(c);
1603
1604 /* Reallocate string when byte count changes. This is rare,
1605 * thus it's OK to do another malloc()/free(). */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001606 newl = utf_char2len(uc);
1607 if (newl != l)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001608 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02001609 s = alloc(STRLEN(res) + 1 + newl - l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001610 if (s == NULL)
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001611 {
1612 vim_free(res);
1613 return NULL;
1614 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001615 mch_memmove(s, res, p - res);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001616 STRCPY(s + (p - res) + newl, p + l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001617 p = s + (p - res);
1618 vim_free(res);
1619 res = s;
1620 }
1621
1622 utf_char2bytes(uc, p);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001623 p += newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001624 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001625 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001626 p += l; /* skip multi-byte character */
1627 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001628 {
1629 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1630 p++;
1631 }
1632 }
1633
1634 return res;
1635}
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001636
1637/*
1638 * Make string "s" all lower-case and return it in allocated memory.
1639 * Handles multi-byte characters as well as possible.
1640 * Returns NULL when out of memory.
1641 */
1642 char_u *
1643strlow_save(char_u *orig)
1644{
1645 char_u *p;
1646 char_u *res;
1647
1648 res = p = vim_strsave(orig);
1649
1650 if (res != NULL)
1651 while (*p != NUL)
1652 {
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001653 int l;
1654
1655 if (enc_utf8)
1656 {
1657 int c, lc;
1658 int newl;
1659 char_u *s;
1660
1661 c = utf_ptr2char(p);
Bram Moolenaare6640ad2017-12-22 21:06:56 +01001662 l = utf_ptr2len(p);
1663 if (c == 0)
1664 {
1665 /* overlong sequence, use only the first byte */
1666 c = *p;
1667 l = 1;
1668 }
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001669 lc = utf_tolower(c);
1670
1671 /* Reallocate string when byte count changes. This is rare,
1672 * thus it's OK to do another malloc()/free(). */
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001673 newl = utf_char2len(lc);
1674 if (newl != l)
1675 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02001676 s = alloc(STRLEN(res) + 1 + newl - l);
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001677 if (s == NULL)
1678 {
1679 vim_free(res);
1680 return NULL;
1681 }
1682 mch_memmove(s, res, p - res);
1683 STRCPY(s + (p - res) + newl, p + l);
1684 p = s + (p - res);
1685 vim_free(res);
1686 res = s;
1687 }
1688
1689 utf_char2bytes(lc, p);
1690 p += newl;
1691 }
1692 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
1693 p += l; /* skip multi-byte character */
1694 else
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001695 {
1696 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
1697 p++;
1698 }
1699 }
1700
1701 return res;
1702}
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001703#endif
1704
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706 * delete spaces at the end of a string
1707 */
1708 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001709del_trailing_spaces(char_u *ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710{
1711 char_u *q;
1712
1713 q = ptr + STRLEN(ptr);
Bram Moolenaar1c465442017-03-12 20:10:05 +01001714 while (--q > ptr && VIM_ISWHITE(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 *q = NUL;
1716}
1717
1718/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001719 * Like strncpy(), but always terminate the result with one NUL.
Bram Moolenaard042c562005-06-30 22:04:15 +00001720 * "to" must be "len + 1" long!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 */
1722 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001723vim_strncpy(char_u *to, char_u *from, size_t len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001725 STRNCPY(to, from, len);
1726 to[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727}
1728
1729/*
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001730 * Like strcat(), but make sure the result fits in "tosize" bytes and is
Bram Moolenaar45600ce2017-01-27 21:54:07 +01001731 * always NUL terminated. "from" and "to" may overlap.
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001732 */
1733 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001734vim_strcat(char_u *to, char_u *from, size_t tosize)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001735{
1736 size_t tolen = STRLEN(to);
1737 size_t fromlen = STRLEN(from);
1738
1739 if (tolen + fromlen + 1 > tosize)
1740 {
1741 mch_memmove(to + tolen, from, tosize - tolen - 1);
1742 to[tosize - 1] = NUL;
1743 }
1744 else
Bram Moolenaar45600ce2017-01-27 21:54:07 +01001745 mch_memmove(to + tolen, from, fromlen + 1);
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001746}
1747
1748/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 * Isolate one part of a string option where parts are separated with
1750 * "sep_chars".
Bram Moolenaar83bab712005-08-01 21:58:57 +00001751 * The part is copied into "buf[maxlen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 * "*option" is advanced to the next part.
1753 * The length is returned.
1754 */
1755 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001756copy_option_part(
1757 char_u **option,
1758 char_u *buf,
1759 int maxlen,
1760 char *sep_chars)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761{
1762 int len = 0;
1763 char_u *p = *option;
1764
1765 /* skip '.' at start of option part, for 'suffixes' */
1766 if (*p == '.')
1767 buf[len++] = *p++;
1768 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1769 {
1770 /*
1771 * Skip backslash before a separator character and space.
1772 */
1773 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1774 ++p;
1775 if (len < maxlen - 1)
1776 buf[len++] = *p;
1777 ++p;
1778 }
1779 buf[len] = NUL;
1780
1781 if (*p != NUL && *p != ',') /* skip non-standard separator */
1782 ++p;
1783 p = skip_to_option_part(p); /* p points to next file name */
1784
1785 *option = p;
1786 return len;
1787}
1788
1789/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001790 * Replacement for free() that ignores NULL pointers.
1791 * Also skip free() when exiting for sure, this helps when we caught a deadly
1792 * signal that was caused by a crash in free().
Bram Moolenaard23a8232018-02-10 18:45:26 +01001793 * If you want to set NULL after calling this function, you should use
1794 * VIM_CLEAR() instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 */
1796 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001797vim_free(void *x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798{
Bram Moolenaar4770d092006-01-12 23:22:24 +00001799 if (x != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 {
1801#ifdef MEM_PROFILE
1802 mem_pre_free(&x);
1803#endif
1804 free(x);
1805 }
1806}
1807
1808#ifndef HAVE_MEMSET
1809 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001810vim_memset(void *ptr, int c, size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811{
1812 char *p = ptr;
1813
1814 while (size-- > 0)
1815 *p++ = c;
1816 return ptr;
1817}
1818#endif
1819
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820#if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1821/*
1822 * Compare two strings, ignoring case, using current locale.
1823 * Doesn't work for multi-byte characters.
1824 * return 0 for match, < 0 for smaller, > 0 for bigger
1825 */
1826 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001827vim_stricmp(char *s1, char *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828{
1829 int i;
1830
1831 for (;;)
1832 {
1833 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1834 if (i != 0)
1835 return i; /* this character different */
1836 if (*s1 == NUL)
1837 break; /* strings match until NUL */
1838 ++s1;
1839 ++s2;
1840 }
1841 return 0; /* strings match */
1842}
1843#endif
1844
1845#if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1846/*
1847 * Compare two strings, for length "len", ignoring case, using current locale.
1848 * Doesn't work for multi-byte characters.
1849 * return 0 for match, < 0 for smaller, > 0 for bigger
1850 */
1851 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001852vim_strnicmp(char *s1, char *s2, size_t len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853{
1854 int i;
1855
1856 while (len > 0)
1857 {
1858 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1859 if (i != 0)
1860 return i; /* this character different */
1861 if (*s1 == NUL)
1862 break; /* strings match until NUL */
1863 ++s1;
1864 ++s2;
1865 --len;
1866 }
1867 return 0; /* strings match */
1868}
1869#endif
1870
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871/*
1872 * Version of strchr() and strrchr() that handle unsigned char strings
Bram Moolenaar05159a02005-02-26 23:04:13 +00001873 * with characters from 128 to 255 correctly. It also doesn't return a
1874 * pointer to the NUL at the end of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 */
1876 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001877vim_strchr(char_u *string, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878{
1879 char_u *p;
1880 int b;
1881
1882 p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 if (enc_utf8 && c >= 0x80)
1884 {
1885 while (*p != NUL)
1886 {
Bram Moolenaarace95982017-03-29 17:30:27 +02001887 int l = utfc_ptr2len(p);
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001888
1889 /* Avoid matching an illegal byte here. */
1890 if (utf_ptr2char(p) == c && l > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 return p;
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001892 p += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 }
1894 return NULL;
1895 }
1896 if (enc_dbcs != 0 && c > 255)
1897 {
1898 int n2 = c & 0xff;
1899
1900 c = ((unsigned)c >> 8) & 0xff;
1901 while ((b = *p) != NUL)
1902 {
1903 if (b == c && p[1] == n2)
1904 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001905 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 }
1907 return NULL;
1908 }
1909 if (has_mbyte)
1910 {
1911 while ((b = *p) != NUL)
1912 {
1913 if (b == c)
1914 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001915 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 }
1917 return NULL;
1918 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919 while ((b = *p) != NUL)
1920 {
1921 if (b == c)
1922 return p;
1923 ++p;
1924 }
1925 return NULL;
1926}
1927
1928/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001929 * Version of strchr() that only works for bytes and handles unsigned char
1930 * strings with characters above 128 correctly. It also doesn't return a
1931 * pointer to the NUL at the end of the string.
1932 */
1933 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001934vim_strbyte(char_u *string, int c)
Bram Moolenaar05159a02005-02-26 23:04:13 +00001935{
1936 char_u *p = string;
1937
1938 while (*p != NUL)
1939 {
1940 if (*p == c)
1941 return p;
1942 ++p;
1943 }
1944 return NULL;
1945}
1946
1947/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948 * Search for last occurrence of "c" in "string".
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001949 * Return NULL if not found.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001950 * Does not handle multi-byte char for "c"!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 */
1952 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001953vim_strrchr(char_u *string, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954{
1955 char_u *retval = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001956 char_u *p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957
Bram Moolenaar05159a02005-02-26 23:04:13 +00001958 while (*p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00001960 if (*p == c)
1961 retval = p;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001962 MB_PTR_ADV(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963 }
1964 return retval;
1965}
1966
1967/*
1968 * Vim's version of strpbrk(), in case it's missing.
1969 * Don't generate a prototype for this, causes problems when it's not used.
1970 */
1971#ifndef PROTO
1972# ifndef HAVE_STRPBRK
1973# ifdef vim_strpbrk
1974# undef vim_strpbrk
1975# endif
1976 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001977vim_strpbrk(char_u *s, char_u *charset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978{
1979 while (*s)
1980 {
1981 if (vim_strchr(charset, *s) != NULL)
1982 return s;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001983 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 }
1985 return NULL;
1986}
1987# endif
1988#endif
1989
1990/*
1991 * Vim has its own isspace() function, because on some machines isspace()
1992 * can't handle characters above 128.
1993 */
1994 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001995vim_isspace(int x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996{
1997 return ((x >= 9 && x <= 13) || x == ' ');
1998}
1999
2000/************************************************************************
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002001 * Functions for handling growing arrays.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002 */
2003
2004/*
2005 * Clear an allocated growing array.
2006 */
2007 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002008ga_clear(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009{
2010 vim_free(gap->ga_data);
2011 ga_init(gap);
2012}
2013
2014/*
2015 * Clear a growing array that contains a list of strings.
2016 */
2017 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002018ga_clear_strings(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019{
2020 int i;
2021
2022 for (i = 0; i < gap->ga_len; ++i)
2023 vim_free(((char_u **)(gap->ga_data))[i]);
2024 ga_clear(gap);
2025}
2026
2027/*
2028 * Initialize a growing array. Don't forget to set ga_itemsize and
2029 * ga_growsize! Or use ga_init2().
2030 */
2031 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002032ga_init(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033{
2034 gap->ga_data = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002035 gap->ga_maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 gap->ga_len = 0;
2037}
2038
2039 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002040ga_init2(garray_T *gap, int itemsize, int growsize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041{
2042 ga_init(gap);
2043 gap->ga_itemsize = itemsize;
2044 gap->ga_growsize = growsize;
2045}
2046
2047/*
2048 * Make room in growing array "gap" for at least "n" items.
2049 * Return FAIL for failure, OK otherwise.
2050 */
2051 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002052ga_grow(garray_T *gap, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053{
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002054 size_t old_len;
2055 size_t new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 char_u *pp;
2057
Bram Moolenaar86b68352004-12-27 21:59:20 +00002058 if (gap->ga_maxlen - gap->ga_len < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 {
2060 if (n < gap->ga_growsize)
2061 n = gap->ga_growsize;
Bram Moolenaarc47ed442019-06-01 14:36:26 +02002062
2063 // A linear growth is very inefficient when the array grows big. This
2064 // is a compromise between allocating memory that won't be used and too
2065 // many copy operations. A factor of 1.5 seems reasonable.
2066 if (n < gap->ga_len / 2)
2067 n = gap->ga_len / 2;
2068
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002069 new_len = gap->ga_itemsize * (gap->ga_len + n);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002070 pp = vim_realloc(gap->ga_data, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 if (pp == NULL)
2072 return FAIL;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002073 old_len = gap->ga_itemsize * gap->ga_maxlen;
2074 vim_memset(pp + old_len, 0, new_len - old_len);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002075 gap->ga_maxlen = gap->ga_len + n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 gap->ga_data = pp;
2077 }
2078 return OK;
2079}
2080
Bram Moolenaar113e1072019-01-20 15:30:40 +01002081#if defined(FEAT_EVAL) || defined(FEAT_SEARCHPATH) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082/*
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002083 * For a growing array that contains a list of strings: concatenate all the
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002084 * strings with a separating "sep".
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002085 * Returns NULL when out of memory.
2086 */
2087 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002088ga_concat_strings(garray_T *gap, char *sep)
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002089{
2090 int i;
2091 int len = 0;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002092 int sep_len = (int)STRLEN(sep);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002093 char_u *s;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002094 char_u *p;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002095
2096 for (i = 0; i < gap->ga_len; ++i)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002097 len += (int)STRLEN(((char_u **)(gap->ga_data))[i]) + sep_len;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002098
2099 s = alloc(len + 1);
2100 if (s != NULL)
2101 {
2102 *s = NUL;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002103 p = s;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002104 for (i = 0; i < gap->ga_len; ++i)
2105 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002106 if (p != s)
2107 {
2108 STRCPY(p, sep);
2109 p += sep_len;
2110 }
2111 STRCPY(p, ((char_u **)(gap->ga_data))[i]);
2112 p += STRLEN(p);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002113 }
2114 }
2115 return s;
2116}
Bram Moolenaar113e1072019-01-20 15:30:40 +01002117#endif
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002118
Bram Moolenaar5a66dfb2017-03-01 20:40:39 +01002119#if defined(FEAT_VIMINFO) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002120/*
2121 * Make a copy of string "p" and add it to "gap".
2122 * When out of memory nothing changes.
2123 */
2124 void
2125ga_add_string(garray_T *gap, char_u *p)
2126{
2127 char_u *cp = vim_strsave(p);
2128
2129 if (cp != NULL)
2130 {
2131 if (ga_grow(gap, 1) == OK)
2132 ((char_u **)(gap->ga_data))[gap->ga_len++] = cp;
2133 else
2134 vim_free(cp);
2135 }
2136}
2137#endif
2138
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002139/*
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002140 * Concatenate a string to a growarray which contains bytes.
Bram Moolenaar43345542015-11-29 17:35:35 +01002141 * When "s" is NULL does not do anything.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 * Note: Does NOT copy the NUL at the end!
2143 */
2144 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002145ga_concat(garray_T *gap, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146{
Bram Moolenaar43345542015-11-29 17:35:35 +01002147 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148
Bram Moolenaar478af672017-04-10 22:22:42 +02002149 if (s == NULL || *s == NUL)
Bram Moolenaar43345542015-11-29 17:35:35 +01002150 return;
2151 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 if (ga_grow(gap, len) == OK)
2153 {
2154 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
2155 gap->ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 }
2157}
2158
2159/*
2160 * Append one byte to a growarray which contains bytes.
2161 */
2162 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002163ga_append(garray_T *gap, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164{
2165 if (ga_grow(gap, 1) == OK)
2166 {
2167 *((char *)gap->ga_data + gap->ga_len) = c;
2168 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169 }
2170}
2171
Bram Moolenaar4f974752019-02-17 17:44:42 +01002172#if (defined(UNIX) && !defined(USE_SYSTEM)) || defined(MSWIN) \
Bram Moolenaar597a4222014-06-25 14:39:50 +02002173 || defined(PROTO)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002174/*
2175 * Append the text in "gap" below the cursor line and clear "gap".
2176 */
2177 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002178append_ga_line(garray_T *gap)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002179{
2180 /* Remove trailing CR. */
2181 if (gap->ga_len > 0
2182 && !curbuf->b_p_bin
2183 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
2184 --gap->ga_len;
2185 ga_append(gap, NUL);
2186 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
2187 gap->ga_len = 0;
2188}
2189#endif
2190
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191/************************************************************************
2192 * functions that use lookup tables for various things, generally to do with
2193 * special key codes.
2194 */
2195
2196/*
2197 * Some useful tables.
2198 */
2199
2200static struct modmasktable
2201{
2202 short mod_mask; /* Bit-mask for particular key modifier */
2203 short mod_flag; /* Bit(s) for particular key modifier */
2204 char_u name; /* Single letter name of modifier */
2205} mod_mask_table[] =
2206{
2207 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002208 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
2210 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
2211 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
2212 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
2213 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
Bram Moolenaard0573012017-10-28 21:11:06 +02002214#ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
2216#endif
2217 /* 'A' must be the last one */
2218 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
2219 {0, 0, NUL}
Bram Moolenaar423977d2017-01-22 15:05:12 +01002220 /* NOTE: when adding an entry, update MAX_KEY_NAME_LEN! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221};
2222
2223/*
2224 * Shifted key terminal codes and their unshifted equivalent.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002225 * Don't add mouse codes here, they are handled separately!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226 */
2227#define MOD_KEYS_ENTRY_SIZE 5
2228
2229static char_u modifier_keys_table[] =
2230{
2231/* mod mask with modifier without modifier */
2232 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
2233 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
2234 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
2235 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
2236 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
2237 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
2238 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
2239 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
2240 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
2241 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
2242 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
2243 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
2244 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
2245 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
2246 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
2247 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
2248 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
2249 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
2250 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
2251 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
2252 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
2253 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
2254 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
2255 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
2256 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
2257 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
2258 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
2259 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
2260 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
2261 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
2262 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
2263 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
2264 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
2265
2266 /* vt100 F1 */
2267 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2268 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2269 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2270 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2271
2272 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
2273 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2274 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2275 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2276 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2277 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2278 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2279 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2280 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
2281 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
2282
2283 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2284 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2285 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2286 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2287 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2288 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2289 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2290 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2291 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2292 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2293
2294 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2295 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2296 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2297 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2298 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2299 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2300 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2301 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2302 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2303 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2304
2305 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2306 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2307 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2308 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2309 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2310 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2311 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2312
2313 /* TAB pseudo code*/
2314 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2315
2316 NUL
2317};
2318
2319static struct key_name_entry
2320{
2321 int key; /* Special key code or ascii value */
2322 char_u *name; /* Name of key */
2323} key_names_table[] =
2324{
2325 {' ', (char_u *)"Space"},
2326 {TAB, (char_u *)"Tab"},
2327 {K_TAB, (char_u *)"Tab"},
2328 {NL, (char_u *)"NL"},
2329 {NL, (char_u *)"NewLine"}, /* Alternative name */
2330 {NL, (char_u *)"LineFeed"}, /* Alternative name */
2331 {NL, (char_u *)"LF"}, /* Alternative name */
2332 {CAR, (char_u *)"CR"},
2333 {CAR, (char_u *)"Return"}, /* Alternative name */
2334 {CAR, (char_u *)"Enter"}, /* Alternative name */
2335 {K_BS, (char_u *)"BS"},
2336 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2337 {ESC, (char_u *)"Esc"},
2338 {CSI, (char_u *)"CSI"},
2339 {K_CSI, (char_u *)"xCSI"},
2340 {'|', (char_u *)"Bar"},
2341 {'\\', (char_u *)"Bslash"},
2342 {K_DEL, (char_u *)"Del"},
2343 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2344 {K_KDEL, (char_u *)"kDel"},
2345 {K_UP, (char_u *)"Up"},
2346 {K_DOWN, (char_u *)"Down"},
2347 {K_LEFT, (char_u *)"Left"},
2348 {K_RIGHT, (char_u *)"Right"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002349 {K_XUP, (char_u *)"xUp"},
2350 {K_XDOWN, (char_u *)"xDown"},
2351 {K_XLEFT, (char_u *)"xLeft"},
2352 {K_XRIGHT, (char_u *)"xRight"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01002353 {K_PS, (char_u *)"PasteStart"},
2354 {K_PE, (char_u *)"PasteEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355
2356 {K_F1, (char_u *)"F1"},
2357 {K_F2, (char_u *)"F2"},
2358 {K_F3, (char_u *)"F3"},
2359 {K_F4, (char_u *)"F4"},
2360 {K_F5, (char_u *)"F5"},
2361 {K_F6, (char_u *)"F6"},
2362 {K_F7, (char_u *)"F7"},
2363 {K_F8, (char_u *)"F8"},
2364 {K_F9, (char_u *)"F9"},
2365 {K_F10, (char_u *)"F10"},
2366
2367 {K_F11, (char_u *)"F11"},
2368 {K_F12, (char_u *)"F12"},
2369 {K_F13, (char_u *)"F13"},
2370 {K_F14, (char_u *)"F14"},
2371 {K_F15, (char_u *)"F15"},
2372 {K_F16, (char_u *)"F16"},
2373 {K_F17, (char_u *)"F17"},
2374 {K_F18, (char_u *)"F18"},
2375 {K_F19, (char_u *)"F19"},
2376 {K_F20, (char_u *)"F20"},
2377
2378 {K_F21, (char_u *)"F21"},
2379 {K_F22, (char_u *)"F22"},
2380 {K_F23, (char_u *)"F23"},
2381 {K_F24, (char_u *)"F24"},
2382 {K_F25, (char_u *)"F25"},
2383 {K_F26, (char_u *)"F26"},
2384 {K_F27, (char_u *)"F27"},
2385 {K_F28, (char_u *)"F28"},
2386 {K_F29, (char_u *)"F29"},
2387 {K_F30, (char_u *)"F30"},
2388
2389 {K_F31, (char_u *)"F31"},
2390 {K_F32, (char_u *)"F32"},
2391 {K_F33, (char_u *)"F33"},
2392 {K_F34, (char_u *)"F34"},
2393 {K_F35, (char_u *)"F35"},
2394 {K_F36, (char_u *)"F36"},
2395 {K_F37, (char_u *)"F37"},
2396
2397 {K_XF1, (char_u *)"xF1"},
2398 {K_XF2, (char_u *)"xF2"},
2399 {K_XF3, (char_u *)"xF3"},
2400 {K_XF4, (char_u *)"xF4"},
2401
2402 {K_HELP, (char_u *)"Help"},
2403 {K_UNDO, (char_u *)"Undo"},
2404 {K_INS, (char_u *)"Insert"},
2405 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2406 {K_KINS, (char_u *)"kInsert"},
2407 {K_HOME, (char_u *)"Home"},
2408 {K_KHOME, (char_u *)"kHome"},
2409 {K_XHOME, (char_u *)"xHome"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002410 {K_ZHOME, (char_u *)"zHome"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 {K_END, (char_u *)"End"},
2412 {K_KEND, (char_u *)"kEnd"},
2413 {K_XEND, (char_u *)"xEnd"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002414 {K_ZEND, (char_u *)"zEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 {K_PAGEUP, (char_u *)"PageUp"},
2416 {K_PAGEDOWN, (char_u *)"PageDown"},
2417 {K_KPAGEUP, (char_u *)"kPageUp"},
2418 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2419
2420 {K_KPLUS, (char_u *)"kPlus"},
2421 {K_KMINUS, (char_u *)"kMinus"},
2422 {K_KDIVIDE, (char_u *)"kDivide"},
2423 {K_KMULTIPLY, (char_u *)"kMultiply"},
2424 {K_KENTER, (char_u *)"kEnter"},
2425 {K_KPOINT, (char_u *)"kPoint"},
2426
2427 {K_K0, (char_u *)"k0"},
2428 {K_K1, (char_u *)"k1"},
2429 {K_K2, (char_u *)"k2"},
2430 {K_K3, (char_u *)"k3"},
2431 {K_K4, (char_u *)"k4"},
2432 {K_K5, (char_u *)"k5"},
2433 {K_K6, (char_u *)"k6"},
2434 {K_K7, (char_u *)"k7"},
2435 {K_K8, (char_u *)"k8"},
2436 {K_K9, (char_u *)"k9"},
2437
2438 {'<', (char_u *)"lt"},
2439
2440 {K_MOUSE, (char_u *)"Mouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002441#ifdef FEAT_MOUSE_NET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002443#endif
2444#ifdef FEAT_MOUSE_DEC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445 {K_DEC_MOUSE, (char_u *)"DecMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002446#endif
2447#ifdef FEAT_MOUSE_JSB
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002449#endif
2450#ifdef FEAT_MOUSE_PTERM
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002452#endif
2453#ifdef FEAT_MOUSE_URXVT
2454 {K_URXVT_MOUSE, (char_u *)"UrxvtMouse"},
2455#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002456 {K_SGR_MOUSE, (char_u *)"SgrMouse"},
Bram Moolenaara529ce02017-06-22 22:37:57 +02002457 {K_SGR_MOUSERELEASE, (char_u *)"SgrMouseRelelase"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2459 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2460 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2461 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2462 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
Bram Moolenaar51b0f372017-11-18 18:52:04 +01002463 {K_MOUSEMOVE, (char_u *)"MouseMove"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2465 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2466 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2467 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2468 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2469 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002470 {K_MOUSEDOWN, (char_u *)"ScrollWheelUp"},
2471 {K_MOUSEUP, (char_u *)"ScrollWheelDown"},
2472 {K_MOUSELEFT, (char_u *)"ScrollWheelRight"},
2473 {K_MOUSERIGHT, (char_u *)"ScrollWheelLeft"},
2474 {K_MOUSEDOWN, (char_u *)"MouseDown"}, /* OBSOLETE: Use */
2475 {K_MOUSEUP, (char_u *)"MouseUp"}, /* ScrollWheelXXX instead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476 {K_X1MOUSE, (char_u *)"X1Mouse"},
2477 {K_X1DRAG, (char_u *)"X1Drag"},
2478 {K_X1RELEASE, (char_u *)"X1Release"},
2479 {K_X2MOUSE, (char_u *)"X2Mouse"},
2480 {K_X2DRAG, (char_u *)"X2Drag"},
2481 {K_X2RELEASE, (char_u *)"X2Release"},
2482 {K_DROP, (char_u *)"Drop"},
2483 {K_ZERO, (char_u *)"Nul"},
2484#ifdef FEAT_EVAL
2485 {K_SNR, (char_u *)"SNR"},
2486#endif
2487 {K_PLUG, (char_u *)"Plug"},
Bram Moolenaar1db60c42014-09-23 16:49:46 +02002488 {K_CURSORHOLD, (char_u *)"CursorHold"},
Bram Moolenaar2f106582019-05-08 21:59:25 +02002489 {K_IGNORE, (char_u *)"Ignore"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490 {0, NULL}
Bram Moolenaar423977d2017-01-22 15:05:12 +01002491 /* NOTE: When adding a long name update MAX_KEY_NAME_LEN. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492};
2493
2494#define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2495
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496/*
2497 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2498 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2499 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002500 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002501name_to_mod_mask(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502{
2503 int i;
2504
2505 c = TOUPPER_ASC(c);
2506 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2507 if (c == mod_mask_table[i].name)
2508 return mod_mask_table[i].mod_flag;
2509 return 0;
2510}
2511
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512/*
2513 * Check if if there is a special key code for "key" that includes the
2514 * modifiers specified.
2515 */
2516 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002517simplify_key(int key, int *modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518{
2519 int i;
2520 int key0;
2521 int key1;
2522
2523 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2524 {
2525 /* TAB is a special case */
2526 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2527 {
2528 *modifiers &= ~MOD_MASK_SHIFT;
2529 return K_S_TAB;
2530 }
2531 key0 = KEY2TERMCAP0(key);
2532 key1 = KEY2TERMCAP1(key);
2533 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2534 if (key0 == modifier_keys_table[i + 3]
2535 && key1 == modifier_keys_table[i + 4]
2536 && (*modifiers & modifier_keys_table[i]))
2537 {
2538 *modifiers &= ~modifier_keys_table[i];
2539 return TERMCAP2KEY(modifier_keys_table[i + 1],
2540 modifier_keys_table[i + 2]);
2541 }
2542 }
2543 return key;
2544}
2545
2546/*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002547 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002548 */
2549 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002550handle_x_keys(int key)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002551{
2552 switch (key)
2553 {
2554 case K_XUP: return K_UP;
2555 case K_XDOWN: return K_DOWN;
2556 case K_XLEFT: return K_LEFT;
2557 case K_XRIGHT: return K_RIGHT;
2558 case K_XHOME: return K_HOME;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002559 case K_ZHOME: return K_HOME;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002560 case K_XEND: return K_END;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002561 case K_ZEND: return K_END;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002562 case K_XF1: return K_F1;
2563 case K_XF2: return K_F2;
2564 case K_XF3: return K_F3;
2565 case K_XF4: return K_F4;
2566 case K_S_XF1: return K_S_F1;
2567 case K_S_XF2: return K_S_F2;
2568 case K_S_XF3: return K_S_F3;
2569 case K_S_XF4: return K_S_F4;
2570 }
2571 return key;
2572}
2573
2574/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575 * Return a string which contains the name of the given key when the given
2576 * modifiers are down.
2577 */
2578 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002579get_special_key_name(int c, int modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580{
2581 static char_u string[MAX_KEY_NAME_LEN + 1];
2582
2583 int i, idx;
2584 int table_idx;
2585 char_u *s;
2586
2587 string[0] = '<';
2588 idx = 1;
2589
2590 /* Key that stands for a normal character. */
2591 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2592 c = KEY2TERMCAP1(c);
2593
2594 /*
2595 * Translate shifted special keys into unshifted keys and set modifier.
2596 * Same for CTRL and ALT modifiers.
2597 */
2598 if (IS_SPECIAL(c))
2599 {
2600 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2601 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2602 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2603 {
2604 modifiers |= modifier_keys_table[i];
2605 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2606 modifier_keys_table[i + 4]);
2607 break;
2608 }
2609 }
2610
2611 /* try to find the key in the special key table */
2612 table_idx = find_special_key_in_table(c);
2613
2614 /*
2615 * When not a known special key, and not a printable character, try to
2616 * extract modifiers.
2617 */
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002618 if (c > 0 && (*mb_char2len)(c) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 {
2620 if (table_idx < 0
2621 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2622 && (c & 0x80))
2623 {
2624 c &= 0x7f;
2625 modifiers |= MOD_MASK_ALT;
2626 /* try again, to find the un-alted key in the special key table */
2627 table_idx = find_special_key_in_table(c);
2628 }
2629 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2630 {
2631#ifdef EBCDIC
2632 c = CtrlChar(c);
2633#else
2634 c += '@';
2635#endif
2636 modifiers |= MOD_MASK_CTRL;
2637 }
2638 }
2639
2640 /* translate the modifier into a string */
2641 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2642 if ((modifiers & mod_mask_table[i].mod_mask)
2643 == mod_mask_table[i].mod_flag)
2644 {
2645 string[idx++] = mod_mask_table[i].name;
2646 string[idx++] = (char_u)'-';
2647 }
2648
2649 if (table_idx < 0) /* unknown special key, may output t_xx */
2650 {
2651 if (IS_SPECIAL(c))
2652 {
2653 string[idx++] = 't';
2654 string[idx++] = '_';
2655 string[idx++] = KEY2TERMCAP0(c);
2656 string[idx++] = KEY2TERMCAP1(c);
2657 }
2658 /* Not a special key, only modifiers, output directly */
2659 else
2660 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 if (has_mbyte && (*mb_char2len)(c) > 1)
2662 idx += (*mb_char2bytes)(c, string + idx);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002663 else if (vim_isprintc(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 string[idx++] = c;
2665 else
2666 {
2667 s = transchar(c);
2668 while (*s)
2669 string[idx++] = *s++;
2670 }
2671 }
2672 }
2673 else /* use name of special key */
2674 {
Bram Moolenaar423977d2017-01-22 15:05:12 +01002675 size_t len = STRLEN(key_names_table[table_idx].name);
2676
2677 if (len + idx + 2 <= MAX_KEY_NAME_LEN)
2678 {
2679 STRCPY(string + idx, key_names_table[table_idx].name);
2680 idx += (int)len;
2681 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682 }
2683 string[idx++] = '>';
2684 string[idx] = NUL;
2685 return string;
2686}
2687
2688/*
2689 * Try translating a <> name at (*srcp)[] to dst[].
2690 * Return the number of characters added to dst[], zero for no match.
2691 * If there is a match, srcp is advanced to after the <> name.
2692 * dst[] must be big enough to hold the result (up to six characters)!
2693 */
2694 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002695trans_special(
2696 char_u **srcp,
2697 char_u *dst,
Bram Moolenaarbf0eff02019-06-01 17:13:36 +02002698 int keycode, // prefer key code, e.g. K_DEL instead of DEL
2699 int in_string) // TRUE when inside a double quoted string
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700{
2701 int modifiers = 0;
2702 int key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002704 key = find_special_key(srcp, &modifiers, keycode, FALSE, in_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 if (key == 0)
2706 return 0;
2707
Bram Moolenaarbf0eff02019-06-01 17:13:36 +02002708 return special_to_buf(key, modifiers, keycode, dst);
2709}
2710
2711/*
2712 * Put the character sequence for "key" with "modifiers" into "dst" and return
2713 * the resulting length.
2714 * When "keycode" is TRUE prefer key code, e.g. K_DEL instead of DEL.
2715 * The sequence is not NUL terminated.
2716 * This is how characters in a string are encoded.
2717 */
2718 int
2719special_to_buf(int key, int modifiers, int keycode, char_u *dst)
2720{
2721 int dlen = 0;
2722
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 /* Put the appropriate modifier in a string */
2724 if (modifiers != 0)
2725 {
2726 dst[dlen++] = K_SPECIAL;
2727 dst[dlen++] = KS_MODIFIER;
2728 dst[dlen++] = modifiers;
2729 }
2730
2731 if (IS_SPECIAL(key))
2732 {
2733 dst[dlen++] = K_SPECIAL;
2734 dst[dlen++] = KEY2TERMCAP0(key);
2735 dst[dlen++] = KEY2TERMCAP1(key);
2736 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737 else if (has_mbyte && !keycode)
2738 dlen += (*mb_char2bytes)(key, dst + dlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 else if (keycode)
2740 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2741 else
2742 dst[dlen++] = key;
2743
2744 return dlen;
2745}
2746
2747/*
2748 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2749 * srcp is advanced to after the <> name.
2750 * returns 0 if there is no match.
2751 */
2752 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002753find_special_key(
2754 char_u **srcp,
2755 int *modp,
2756 int keycode, /* prefer key code, e.g. K_DEL instead of DEL */
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002757 int keep_x_key, /* don't translate xHome to Home key */
2758 int in_string) /* TRUE in string, double quote is escaped */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759{
2760 char_u *last_dash;
2761 char_u *end_of_name;
2762 char_u *src;
2763 char_u *bp;
2764 int modifiers;
2765 int bit;
2766 int key;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02002767 uvarnumber_T n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002768 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769
2770 src = *srcp;
2771 if (src[0] != '<')
2772 return 0;
2773
2774 /* Find end of modifier list */
2775 last_dash = src;
2776 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2777 {
2778 if (*bp == '-')
2779 {
2780 last_dash = bp;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002781 if (bp[1] != NUL)
2782 {
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002783 if (has_mbyte)
2784 l = mb_ptr2len(bp + 1);
2785 else
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002786 l = 1;
Bram Moolenaarc8fd33d2019-08-16 20:33:05 +02002787 // Anything accepted, like <C-?>.
2788 // <C-"> or <M-"> are not special in strings as " is
2789 // the string delimiter. With a backslash it works: <M-\">
2790 if (!(in_string && bp[1] == '"') && bp[l + 1] == '>')
Bram Moolenaar1d90a5a2016-07-01 11:59:47 +02002791 bp += l;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002792 else if (in_string && bp[1] == '\\' && bp[2] == '"'
2793 && bp[3] == '>')
2794 bp += 2;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002795 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796 }
2797 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2798 bp += 3; /* skip t_xx, xx may be '-' or '>' */
Bram Moolenaar792826c2011-08-19 22:29:02 +02002799 else if (STRNICMP(bp, "char-", 5) == 0)
2800 {
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002801 vim_str2nr(bp + 5, NULL, &l, STR2NR_ALL, NULL, NULL, 0, TRUE);
2802 if (l == 0)
2803 {
2804 emsg(_(e_invarg));
2805 return 0;
2806 }
Bram Moolenaar792826c2011-08-19 22:29:02 +02002807 bp += l + 5;
2808 break;
2809 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810 }
2811
2812 if (*bp == '>') /* found matching '>' */
2813 {
2814 end_of_name = bp + 1;
2815
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 /* Which modifiers are given? */
2817 modifiers = 0x0;
2818 for (bp = src + 1; bp < last_dash; bp++)
2819 {
2820 if (*bp != '-')
2821 {
2822 bit = name_to_mod_mask(*bp);
2823 if (bit == 0x0)
2824 break; /* Illegal modifier name */
2825 modifiers |= bit;
2826 }
2827 }
2828
2829 /*
2830 * Legal modifier name.
2831 */
2832 if (bp >= last_dash)
2833 {
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002834 if (STRNICMP(last_dash + 1, "char-", 5) == 0
2835 && VIM_ISDIGIT(last_dash[6]))
2836 {
2837 /* <Char-123> or <Char-033> or <Char-0x33> */
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002838 vim_str2nr(last_dash + 6, NULL, &l, STR2NR_ALL, NULL, &n, 0, TRUE);
2839 if (l == 0)
2840 {
2841 emsg(_(e_invarg));
2842 return 0;
2843 }
Bram Moolenaar792826c2011-08-19 22:29:02 +02002844 key = (int)n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002845 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002847 {
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002848 int off = 1;
2849
2850 /* Modifier with single letter, or special key name. */
2851 if (in_string && last_dash[1] == '\\' && last_dash[2] == '"')
2852 off = 2;
Bram Moolenaar792826c2011-08-19 22:29:02 +02002853 if (has_mbyte)
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002854 l = mb_ptr2len(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002855 else
Bram Moolenaar792826c2011-08-19 22:29:02 +02002856 l = 1;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002857 if (modifiers != 0 && last_dash[l + off] == '>')
2858 key = PTR2CHAR(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002859 else
2860 {
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002861 key = get_special_key_code(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002862 if (!keep_x_key)
2863 key = handle_x_keys(key);
2864 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002865 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866
2867 /*
2868 * get_special_key_code() may return NUL for invalid
2869 * special key name.
2870 */
2871 if (key != NUL)
2872 {
2873 /*
2874 * Only use a modifier when there is no special key code that
2875 * includes the modifier.
2876 */
2877 key = simplify_key(key, &modifiers);
2878
2879 if (!keycode)
2880 {
2881 /* don't want keycode, use single byte code */
2882 if (key == K_BS)
2883 key = BS;
2884 else if (key == K_DEL || key == K_KDEL)
2885 key = DEL;
2886 }
2887
2888 /*
2889 * Normal Key with modifier: Try to make a single byte code.
2890 */
2891 if (!IS_SPECIAL(key))
2892 key = extract_modifiers(key, &modifiers);
2893
2894 *modp = modifiers;
2895 *srcp = end_of_name;
2896 return key;
2897 }
2898 }
2899 }
2900 return 0;
2901}
2902
2903/*
2904 * Try to include modifiers in the key.
2905 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2906 */
2907 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002908extract_modifiers(int key, int *modp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909{
2910 int modifiers = *modp;
2911
Bram Moolenaard0573012017-10-28 21:11:06 +02002912#ifdef MACOS_X
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002913 /* Command-key really special, no fancynest */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 if (!(modifiers & MOD_MASK_CMD))
2915#endif
2916 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2917 {
2918 key = TOUPPER_ASC(key);
2919 modifiers &= ~MOD_MASK_SHIFT;
2920 }
2921 if ((modifiers & MOD_MASK_CTRL)
2922#ifdef EBCDIC
2923 /* * TODO: EBCDIC Better use:
2924 * && (Ctrl_chr(key) || key == '?')
2925 * ??? */
2926 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2927 != NULL
2928#else
2929 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2930#endif
2931 )
2932 {
2933 key = Ctrl_chr(key);
2934 modifiers &= ~MOD_MASK_CTRL;
2935 /* <C-@> is <Nul> */
2936 if (key == 0)
2937 key = K_ZERO;
2938 }
Bram Moolenaard0573012017-10-28 21:11:06 +02002939#ifdef MACOS_X
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002940 /* Command-key really special, no fancynest */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 if (!(modifiers & MOD_MASK_CMD))
2942#endif
2943 if ((modifiers & MOD_MASK_ALT) && key < 0x80
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002944 && !enc_dbcs) // avoid creating a lead byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 {
2946 key |= 0x80;
2947 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
2948 }
2949
2950 *modp = modifiers;
2951 return key;
2952}
2953
2954/*
2955 * Try to find key "c" in the special key table.
2956 * Return the index when found, -1 when not found.
2957 */
2958 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002959find_special_key_in_table(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960{
2961 int i;
2962
2963 for (i = 0; key_names_table[i].name != NULL; i++)
2964 if (c == key_names_table[i].key)
2965 break;
2966 if (key_names_table[i].name == NULL)
2967 i = -1;
2968 return i;
2969}
2970
2971/*
2972 * Find the special key with the given name (the given string does not have to
2973 * end with NUL, the name is assumed to end before the first non-idchar).
2974 * If the name starts with "t_" the next two characters are interpreted as a
2975 * termcap name.
2976 * Return the key code, or 0 if not found.
2977 */
2978 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002979get_special_key_code(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980{
2981 char_u *table_name;
2982 char_u string[3];
2983 int i, j;
2984
2985 /*
2986 * If it's <t_xx> we get the code for xx from the termcap
2987 */
2988 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
2989 {
2990 string[0] = name[2];
2991 string[1] = name[3];
2992 string[2] = NUL;
2993 if (add_termcap_entry(string, FALSE) == OK)
2994 return TERMCAP2KEY(name[2], name[3]);
2995 }
2996 else
2997 for (i = 0; key_names_table[i].name != NULL; i++)
2998 {
2999 table_name = key_names_table[i].name;
3000 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
3001 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
3002 break;
3003 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
3004 return key_names_table[i].key;
3005 }
3006 return 0;
3007}
3008
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01003010get_key_name(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011{
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00003012 if (i >= (int)KEY_NAMES_TABLE_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 return NULL;
3014 return key_names_table[i].name;
3015}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017/*
3018 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
3019 */
3020 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003021get_fileformat(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022{
3023 int c = *buf->b_p_ff;
3024
3025 if (buf->b_p_bin || c == 'u')
3026 return EOL_UNIX;
3027 if (c == 'm')
3028 return EOL_MAC;
3029 return EOL_DOS;
3030}
3031
3032/*
3033 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
3034 * argument.
3035 */
3036 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003037get_fileformat_force(
3038 buf_T *buf,
3039 exarg_T *eap) /* can be NULL! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040{
3041 int c;
3042
3043 if (eap != NULL && eap->force_ff != 0)
Bram Moolenaar333b80a2018-04-04 22:57:29 +02003044 c = eap->force_ff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045 else
3046 {
3047 if ((eap != NULL && eap->force_bin != 0)
3048 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
3049 return EOL_UNIX;
3050 c = *buf->b_p_ff;
3051 }
3052 if (c == 'u')
3053 return EOL_UNIX;
3054 if (c == 'm')
3055 return EOL_MAC;
3056 return EOL_DOS;
3057}
3058
3059/*
3060 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
3061 * Sets both 'textmode' and 'fileformat'.
3062 * Note: Does _not_ set global value of 'textmode'!
3063 */
3064 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003065set_fileformat(
3066 int t,
3067 int opt_flags) /* OPT_LOCAL and/or OPT_GLOBAL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068{
3069 char *p = NULL;
3070
3071 switch (t)
3072 {
3073 case EOL_DOS:
3074 p = FF_DOS;
3075 curbuf->b_p_tx = TRUE;
3076 break;
3077 case EOL_UNIX:
3078 p = FF_UNIX;
3079 curbuf->b_p_tx = FALSE;
3080 break;
3081 case EOL_MAC:
3082 p = FF_MAC;
3083 curbuf->b_p_tx = FALSE;
3084 break;
3085 }
3086 if (p != NULL)
3087 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003088 OPT_FREE | opt_flags, 0);
3089
Bram Moolenaarf740b292006-02-16 22:11:02 +00003090 /* This may cause the buffer to become (un)modified. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003091 check_status(curbuf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003092 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093#ifdef FEAT_TITLE
3094 need_maketitle = TRUE; /* set window title later */
3095#endif
3096}
3097
3098/*
3099 * Return the default fileformat from 'fileformats'.
3100 */
3101 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003102default_fileformat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103{
3104 switch (*p_ffs)
3105 {
3106 case 'm': return EOL_MAC;
3107 case 'd': return EOL_DOS;
3108 }
3109 return EOL_UNIX;
3110}
3111
3112/*
3113 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
3114 */
3115 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003116call_shell(char_u *cmd, int opt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117{
3118 char_u *ncmd;
3119 int retval;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003120#ifdef FEAT_PROFILE
3121 proftime_T wait_time;
3122#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123
3124 if (p_verbose > 3)
3125 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003126 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003127 smsg(_("Calling shell to execute: \"%s\""),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128 cmd == NULL ? p_sh : cmd);
3129 out_char('\n');
3130 cursor_on();
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003131 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 }
3133
Bram Moolenaar05159a02005-02-26 23:04:13 +00003134#ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003135 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003136 prof_child_enter(&wait_time);
3137#endif
3138
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139 if (*p_sh == NUL)
3140 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003141 emsg(_(e_shellempty));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142 retval = -1;
3143 }
3144 else
3145 {
3146#ifdef FEAT_GUI_MSWIN
3147 /* Don't hide the pointer while executing a shell command. */
3148 gui_mch_mousehide(FALSE);
3149#endif
3150#ifdef FEAT_GUI
3151 ++hold_gui_events;
3152#endif
3153 /* The external command may update a tags file, clear cached tags. */
3154 tag_freematch();
3155
Bram Moolenaar01257a72019-06-10 14:46:04 +02003156 if (cmd == NULL || *p_sxq == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 retval = mch_call_shell(cmd, opt);
3158 else
3159 {
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003160 char_u *ecmd = cmd;
3161
Bram Moolenaar1a613392019-09-28 15:51:37 +02003162 if (*p_sxe != NUL && *p_sxq == '(')
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003163 {
3164 ecmd = vim_strsave_escaped_ext(cmd, p_sxe, '^', FALSE);
3165 if (ecmd == NULL)
3166 ecmd = cmd;
3167 }
Bram Moolenaar964b3742019-05-24 18:54:09 +02003168 ncmd = alloc(STRLEN(ecmd) + STRLEN(p_sxq) * 2 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169 if (ncmd != NULL)
3170 {
3171 STRCPY(ncmd, p_sxq);
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003172 STRCAT(ncmd, ecmd);
Bram Moolenaar1a613392019-09-28 15:51:37 +02003173 // When 'shellxquote' is ( append ).
3174 // When 'shellxquote' is "( append )".
3175 STRCAT(ncmd, *p_sxq == '(' ? (char_u *)")"
3176 : *p_sxq == '"' && *(p_sxq+1) == '(' ? (char_u *)")\""
3177 : p_sxq);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178 retval = mch_call_shell(ncmd, opt);
3179 vim_free(ncmd);
3180 }
3181 else
3182 retval = -1;
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003183 if (ecmd != cmd)
3184 vim_free(ecmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185 }
3186#ifdef FEAT_GUI
3187 --hold_gui_events;
3188#endif
3189 /*
3190 * Check the window size, in case it changed while executing the
3191 * external command.
3192 */
3193 shell_resized_check();
3194 }
3195
3196#ifdef FEAT_EVAL
3197 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003198# ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003199 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003200 prof_child_exit(&wait_time);
3201# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202#endif
3203
3204 return retval;
3205}
3206
3207/*
Bram Moolenaar01265852006-03-20 21:50:15 +00003208 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3209 * NORMAL State with a condition. This function returns the real State.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210 */
3211 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003212get_real_state(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213{
3214 if (State & NORMAL)
3215 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216 if (VIsual_active)
Bram Moolenaar01265852006-03-20 21:50:15 +00003217 {
3218 if (VIsual_select)
3219 return SELECTMODE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 return VISUAL;
Bram Moolenaar01265852006-03-20 21:50:15 +00003221 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003222 else if (finish_op)
3223 return OP_PENDING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224 }
3225 return State;
3226}
3227
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003228/*
3229 * Return TRUE if "p" points to just after a path separator.
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003230 * Takes care of multi-byte characters.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003231 * "b" must point to the start of the file name
3232 */
3233 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003234after_pathsep(char_u *b, char_u *p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003235{
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003236 return p > b && vim_ispathsep(p[-1])
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003237 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3238}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003239
3240/*
3241 * Return TRUE if file names "f1" and "f2" are in the same directory.
3242 * "f1" may be a short name, "f2" must be a full path.
3243 */
3244 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003245same_directory(char_u *f1, char_u *f2)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003246{
3247 char_u ffname[MAXPATHL];
3248 char_u *t1;
3249 char_u *t2;
3250
3251 /* safety check */
3252 if (f1 == NULL || f2 == NULL)
3253 return FALSE;
3254
3255 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3256 t1 = gettail_sep(ffname);
3257 t2 = gettail_sep(f2);
3258 return (t1 - ffname == t2 - f2
3259 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3260}
3261
Bram Moolenaar7c365fb2018-06-29 20:28:31 +02003262#if defined(FEAT_SESSION) || defined(FEAT_AUTOCHDIR) \
3263 || defined(MSWIN) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK) \
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01003264 || defined(FEAT_NETBEANS_INTG) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 || defined(PROTO)
3266/*
3267 * Change to a file's directory.
3268 * Caller must call shorten_fnames()!
3269 * Return OK or FAIL.
3270 */
3271 int
Bram Moolenaar2caad3f2018-12-16 15:38:02 +01003272vim_chdirfile(char_u *fname, char *trigger_autocmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273{
Bram Moolenaar2caad3f2018-12-16 15:38:02 +01003274 char_u old_dir[MAXPATHL];
3275 char_u new_dir[MAXPATHL];
Bram Moolenaarb5cb65b2018-02-03 18:01:37 +01003276 int res;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277
Bram Moolenaar2caad3f2018-12-16 15:38:02 +01003278 if (mch_dirname(old_dir, MAXPATHL) != OK)
3279 *old_dir = NUL;
3280
3281 vim_strncpy(new_dir, fname, MAXPATHL - 1);
3282 *gettail_sep(new_dir) = NUL;
3283
Bram Moolenaar9eb76af2018-12-16 16:30:21 +01003284 if (pathcmp((char *)old_dir, (char *)new_dir, -1) == 0)
Bram Moolenaar2caad3f2018-12-16 15:38:02 +01003285 // nothing to do
3286 res = OK;
3287 else
3288 {
3289 res = mch_chdir((char *)new_dir) == 0 ? OK : FAIL;
3290
3291 if (res == OK && trigger_autocmd != NULL)
3292 apply_autocmds(EVENT_DIRCHANGED, (char_u *)trigger_autocmd,
3293 new_dir, FALSE, curbuf);
3294 }
Bram Moolenaarb5cb65b2018-02-03 18:01:37 +01003295 return res;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296}
3297#endif
3298
3299#if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3300/*
3301 * Check if "name" ends in a slash and is not a directory.
3302 * Used for systems where stat() ignores a trailing slash on a file name.
3303 * The Vim code assumes a trailing slash is only ignored for a directory.
3304 */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003305 static int
Bram Moolenaard8492792017-03-16 12:22:38 +01003306illegal_slash(const char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307{
3308 if (name[0] == NUL)
3309 return FALSE; /* no file name is not illegal */
3310 if (name[strlen(name) - 1] != '/')
3311 return FALSE; /* no trailing slash */
3312 if (mch_isdir((char_u *)name))
3313 return FALSE; /* trailing slash for a directory */
3314 return TRUE;
3315}
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003316
3317/*
3318 * Special implementation of mch_stat() for Solaris.
3319 */
3320 int
3321vim_stat(const char *name, stat_T *stp)
3322{
3323 /* On Solaris stat() accepts "file/" as if it was "file". Return -1 if
3324 * the name ends in "/" and it's not a directory. */
Bram Moolenaard8492792017-03-16 12:22:38 +01003325 return illegal_slash(name) ? -1 : stat(name, stp);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003326}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327#endif
3328
3329#if defined(CURSOR_SHAPE) || defined(PROTO)
3330
3331/*
3332 * Handling of cursor and mouse pointer shapes in various modes.
3333 */
3334
3335cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3336{
3337 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3338 * defaults when Vim starts.
3339 * Adjust the SHAPE_IDX_ defines when making changes! */
3340 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3341 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3342 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3343 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3344 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3345 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3346 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3347 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3348 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3349 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3350 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3351 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3352 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3353 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3354 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3355 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3356 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3357};
3358
3359#ifdef FEAT_MOUSESHAPE
3360/*
3361 * Table with names for mouse shapes. Keep in sync with all the tables for
3362 * mch_set_mouse_shape()!.
3363 */
3364static char * mshape_names[] =
3365{
3366 "arrow", /* default, must be the first one */
3367 "blank", /* hidden */
3368 "beam",
3369 "updown",
3370 "udsizing",
3371 "leftright",
3372 "lrsizing",
3373 "busy",
3374 "no",
3375 "crosshair",
3376 "hand1",
3377 "hand2",
3378 "pencil",
3379 "question",
3380 "rightup-arrow",
3381 "up-arrow",
3382 NULL
3383};
3384#endif
3385
3386/*
3387 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3388 * ("what" is SHAPE_MOUSE).
3389 * Returns error message for an illegal option, NULL otherwise.
3390 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003391 char *
Bram Moolenaar9b578142016-01-30 19:39:49 +01003392parse_shape_opt(int what)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003393{
3394 char_u *modep;
3395 char_u *colonp;
3396 char_u *commap;
3397 char_u *slashp;
3398 char_u *p, *endp;
3399 int idx = 0; /* init for GCC */
3400 int all_idx;
3401 int len;
3402 int i;
3403 long n;
3404 int found_ve = FALSE; /* found "ve" flag */
3405 int round;
3406
3407 /*
3408 * First round: check for errors; second round: do it for real.
3409 */
3410 for (round = 1; round <= 2; ++round)
3411 {
3412 /*
3413 * Repeat for all comma separated parts.
3414 */
3415#ifdef FEAT_MOUSESHAPE
3416 if (what == SHAPE_MOUSE)
3417 modep = p_mouseshape;
3418 else
3419#endif
3420 modep = p_guicursor;
3421 while (*modep != NUL)
3422 {
3423 colonp = vim_strchr(modep, ':');
Bram Moolenaar24922ec2017-02-23 17:59:22 +01003424 commap = vim_strchr(modep, ',');
3425
3426 if (colonp == NULL || (commap != NULL && commap < colonp))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003427 return N_("E545: Missing colon");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003428 if (colonp == modep)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003429 return N_("E546: Illegal mode");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430
3431 /*
3432 * Repeat for all mode's before the colon.
3433 * For the 'a' mode, we loop to handle all the modes.
3434 */
3435 all_idx = -1;
3436 while (modep < colonp || all_idx >= 0)
3437 {
3438 if (all_idx < 0)
3439 {
3440 /* Find the mode. */
3441 if (modep[1] == '-' || modep[1] == ':')
3442 len = 1;
3443 else
3444 len = 2;
3445 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3446 all_idx = SHAPE_IDX_COUNT - 1;
3447 else
3448 {
3449 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3450 if (STRNICMP(modep, shape_table[idx].name, len)
3451 == 0)
3452 break;
3453 if (idx == SHAPE_IDX_COUNT
3454 || (shape_table[idx].used_for & what) == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003455 return N_("E546: Illegal mode");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3457 found_ve = TRUE;
3458 }
3459 modep += len + 1;
3460 }
3461
3462 if (all_idx >= 0)
3463 idx = all_idx--;
3464 else if (round == 2)
3465 {
3466#ifdef FEAT_MOUSESHAPE
3467 if (what == SHAPE_MOUSE)
3468 {
3469 /* Set the default, for the missing parts */
3470 shape_table[idx].mshape = 0;
3471 }
3472 else
3473#endif
3474 {
3475 /* Set the defaults, for the missing parts */
3476 shape_table[idx].shape = SHAPE_BLOCK;
3477 shape_table[idx].blinkwait = 700L;
3478 shape_table[idx].blinkon = 400L;
3479 shape_table[idx].blinkoff = 250L;
3480 }
3481 }
3482
3483 /* Parse the part after the colon */
3484 for (p = colonp + 1; *p && *p != ','; )
3485 {
3486#ifdef FEAT_MOUSESHAPE
3487 if (what == SHAPE_MOUSE)
3488 {
3489 for (i = 0; ; ++i)
3490 {
3491 if (mshape_names[i] == NULL)
3492 {
3493 if (!VIM_ISDIGIT(*p))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003494 return N_("E547: Illegal mouseshape");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 if (round == 2)
3496 shape_table[idx].mshape =
3497 getdigits(&p) + MSHAPE_NUMBERED;
3498 else
3499 (void)getdigits(&p);
3500 break;
3501 }
3502 len = (int)STRLEN(mshape_names[i]);
3503 if (STRNICMP(p, mshape_names[i], len) == 0)
3504 {
3505 if (round == 2)
3506 shape_table[idx].mshape = i;
3507 p += len;
3508 break;
3509 }
3510 }
3511 }
3512 else /* if (what == SHAPE_MOUSE) */
3513#endif
3514 {
3515 /*
3516 * First handle the ones with a number argument.
3517 */
3518 i = *p;
3519 len = 0;
3520 if (STRNICMP(p, "ver", 3) == 0)
3521 len = 3;
3522 else if (STRNICMP(p, "hor", 3) == 0)
3523 len = 3;
3524 else if (STRNICMP(p, "blinkwait", 9) == 0)
3525 len = 9;
3526 else if (STRNICMP(p, "blinkon", 7) == 0)
3527 len = 7;
3528 else if (STRNICMP(p, "blinkoff", 8) == 0)
3529 len = 8;
3530 if (len != 0)
3531 {
3532 p += len;
3533 if (!VIM_ISDIGIT(*p))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003534 return N_("E548: digit expected");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535 n = getdigits(&p);
3536 if (len == 3) /* "ver" or "hor" */
3537 {
3538 if (n == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003539 return N_("E549: Illegal percentage");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 if (round == 2)
3541 {
3542 if (TOLOWER_ASC(i) == 'v')
3543 shape_table[idx].shape = SHAPE_VER;
3544 else
3545 shape_table[idx].shape = SHAPE_HOR;
3546 shape_table[idx].percentage = n;
3547 }
3548 }
3549 else if (round == 2)
3550 {
3551 if (len == 9)
3552 shape_table[idx].blinkwait = n;
3553 else if (len == 7)
3554 shape_table[idx].blinkon = n;
3555 else
3556 shape_table[idx].blinkoff = n;
3557 }
3558 }
3559 else if (STRNICMP(p, "block", 5) == 0)
3560 {
3561 if (round == 2)
3562 shape_table[idx].shape = SHAPE_BLOCK;
3563 p += 5;
3564 }
3565 else /* must be a highlight group name then */
3566 {
3567 endp = vim_strchr(p, '-');
3568 if (commap == NULL) /* last part */
3569 {
3570 if (endp == NULL)
3571 endp = p + STRLEN(p); /* find end of part */
3572 }
3573 else if (endp > commap || endp == NULL)
3574 endp = commap;
3575 slashp = vim_strchr(p, '/');
3576 if (slashp != NULL && slashp < endp)
3577 {
3578 /* "group/langmap_group" */
3579 i = syn_check_group(p, (int)(slashp - p));
3580 p = slashp + 1;
3581 }
3582 if (round == 2)
3583 {
3584 shape_table[idx].id = syn_check_group(p,
3585 (int)(endp - p));
3586 shape_table[idx].id_lm = shape_table[idx].id;
3587 if (slashp != NULL && slashp < endp)
3588 shape_table[idx].id = i;
3589 }
3590 p = endp;
3591 }
3592 } /* if (what != SHAPE_MOUSE) */
3593
3594 if (*p == '-')
3595 ++p;
3596 }
3597 }
3598 modep = p;
3599 if (*modep == ',')
3600 ++modep;
3601 }
3602 }
3603
3604 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3605 if (!found_ve)
3606 {
3607#ifdef FEAT_MOUSESHAPE
3608 if (what == SHAPE_MOUSE)
3609 {
3610 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3611 }
3612 else
3613#endif
3614 {
3615 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3616 shape_table[SHAPE_IDX_VE].percentage =
3617 shape_table[SHAPE_IDX_V].percentage;
3618 shape_table[SHAPE_IDX_VE].blinkwait =
3619 shape_table[SHAPE_IDX_V].blinkwait;
3620 shape_table[SHAPE_IDX_VE].blinkon =
3621 shape_table[SHAPE_IDX_V].blinkon;
3622 shape_table[SHAPE_IDX_VE].blinkoff =
3623 shape_table[SHAPE_IDX_V].blinkoff;
3624 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3625 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3626 }
3627 }
3628
3629 return NULL;
3630}
3631
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003632# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3633 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634/*
3635 * Return the index into shape_table[] for the current mode.
3636 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3637 */
3638 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003639get_shape_idx(int mouse)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640{
3641#ifdef FEAT_MOUSESHAPE
3642 if (mouse && (State == HITRETURN || State == ASKMORE))
3643 {
3644# ifdef FEAT_GUI
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003645 int x, y;
3646 gui_mch_getmouse(&x, &y);
3647 if (Y_2_ROW(y) == Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648 return SHAPE_IDX_MOREL;
3649# endif
3650 return SHAPE_IDX_MORE;
3651 }
3652 if (mouse && drag_status_line)
3653 return SHAPE_IDX_SDRAG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654 if (mouse && drag_sep_line)
3655 return SHAPE_IDX_VDRAG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656#endif
3657 if (!mouse && State == SHOWMATCH)
3658 return SHAPE_IDX_SM;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 if (State & VREPLACE_FLAG)
3660 return SHAPE_IDX_R;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661 if (State & REPLACE_FLAG)
3662 return SHAPE_IDX_R;
3663 if (State & INSERT)
3664 return SHAPE_IDX_I;
3665 if (State & CMDLINE)
3666 {
3667 if (cmdline_at_end())
3668 return SHAPE_IDX_C;
3669 if (cmdline_overstrike())
3670 return SHAPE_IDX_CR;
3671 return SHAPE_IDX_CI;
3672 }
3673 if (finish_op)
3674 return SHAPE_IDX_O;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675 if (VIsual_active)
3676 {
3677 if (*p_sel == 'e')
3678 return SHAPE_IDX_VE;
3679 else
3680 return SHAPE_IDX_V;
3681 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 return SHAPE_IDX_N;
3683}
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003684#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685
3686# if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3687static int old_mouse_shape = 0;
3688
3689/*
3690 * Set the mouse shape:
3691 * If "shape" is -1, use shape depending on the current mode,
3692 * depending on the current state.
3693 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3694 * when the mouse moves off the status or command line).
3695 */
3696 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003697update_mouseshape(int shape_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698{
3699 int new_mouse_shape;
3700
3701 /* Only works in GUI mode. */
Bram Moolenaar6bb68362005-03-22 23:03:44 +00003702 if (!gui.in_use || gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 return;
3704
3705 /* Postpone the updating when more is to come. Speeds up executing of
3706 * mappings. */
3707 if (shape_idx == -1 && char_avail())
3708 {
3709 postponed_mouseshape = TRUE;
3710 return;
3711 }
3712
Bram Moolenaar14716812006-05-04 21:54:08 +00003713 /* When ignoring the mouse don't change shape on the statusline. */
3714 if (*p_mouse == NUL
3715 && (shape_idx == SHAPE_IDX_CLINE
3716 || shape_idx == SHAPE_IDX_STATUS
3717 || shape_idx == SHAPE_IDX_VSEP))
3718 shape_idx = -2;
3719
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720 if (shape_idx == -2
3721 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3722 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3723 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3724 return;
3725 if (shape_idx < 0)
3726 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3727 else
3728 new_mouse_shape = shape_table[shape_idx].mshape;
3729 if (new_mouse_shape != old_mouse_shape)
3730 {
3731 mch_set_mouse_shape(new_mouse_shape);
3732 old_mouse_shape = new_mouse_shape;
3733 }
3734 postponed_mouseshape = FALSE;
3735}
3736# endif
3737
3738#endif /* CURSOR_SHAPE */
3739
3740
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741/*
3742 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
3743 * 'cdpath' for relative directory names, otherwise just mch_chdir().
3744 */
3745 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003746vim_chdir(char_u *new_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747{
3748#ifndef FEAT_SEARCHPATH
3749 return mch_chdir((char *)new_dir);
3750#else
3751 char_u *dir_name;
3752 int r;
3753
3754 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
3755 FNAME_MESS, curbuf->b_ffname);
3756 if (dir_name == NULL)
3757 return -1;
3758 r = mch_chdir((char *)dir_name);
3759 vim_free(dir_name);
3760 return r;
3761#endif
3762}
3763
3764/*
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003765 * Get user name from machine-specific function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766 * Returns the user name in "buf[len]".
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003767 * Some systems are quite slow in obtaining the user name (Windows NT), thus
3768 * cache the result.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 * Returns OK or FAIL.
3770 */
3771 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003772get_user_name(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003774 if (username == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 {
3776 if (mch_get_user_name(buf, len) == FAIL)
3777 return FAIL;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003778 username = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779 }
3780 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003781 vim_strncpy(buf, username, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782 return OK;
3783}
3784
3785#ifndef HAVE_QSORT
3786/*
3787 * Our own qsort(), for systems that don't have it.
3788 * It's simple and slow. From the K&R C book.
3789 */
3790 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003791qsort(
3792 void *base,
3793 size_t elm_count,
3794 size_t elm_size,
3795 int (*cmp)(const void *, const void *))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796{
3797 char_u *buf;
3798 char_u *p1;
3799 char_u *p2;
3800 int i, j;
3801 int gap;
3802
Bram Moolenaar964b3742019-05-24 18:54:09 +02003803 buf = alloc(elm_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003804 if (buf == NULL)
3805 return;
3806
3807 for (gap = elm_count / 2; gap > 0; gap /= 2)
3808 for (i = gap; i < elm_count; ++i)
3809 for (j = i - gap; j >= 0; j -= gap)
3810 {
3811 /* Compare the elements. */
3812 p1 = (char_u *)base + j * elm_size;
3813 p2 = (char_u *)base + (j + gap) * elm_size;
3814 if ((*cmp)((void *)p1, (void *)p2) <= 0)
3815 break;
Bram Moolenaar21160b92009-11-11 15:56:10 +00003816 /* Exchange the elements. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817 mch_memmove(buf, p1, elm_size);
3818 mch_memmove(p1, p2, elm_size);
3819 mch_memmove(p2, buf, elm_size);
3820 }
3821
3822 vim_free(buf);
3823}
3824#endif
3825
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826/*
3827 * Sort an array of strings.
3828 */
Bram Moolenaareae1b912019-05-09 15:12:55 +02003829static int sort_compare(const void *s1, const void *s2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830
3831 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003832sort_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833{
3834 return STRCMP(*(char **)s1, *(char **)s2);
3835}
3836
3837 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003838sort_strings(
3839 char_u **files,
3840 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841{
3842 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
3843}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845/*
3846 * The putenv() implementation below comes from the "screen" program.
3847 * Included with permission from Juergen Weigert.
3848 * See pty.c for the copyright notice.
3849 */
3850
3851/*
3852 * putenv -- put value into environment
3853 *
3854 * Usage: i = putenv (string)
3855 * int i;
3856 * char *string;
3857 *
3858 * where string is of the form <name>=<value>.
3859 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
3860 *
3861 * Putenv may need to add a new name into the environment, or to
3862 * associate a value longer than the current value with a particular
3863 * name. So, to make life simpler, putenv() copies your entire
3864 * environment into the heap (i.e. malloc()) from the stack
3865 * (i.e. where it resides when your process is initiated) the first
3866 * time you call it.
3867 *
3868 * (history removed, not very interesting. See the "screen" sources.)
3869 */
3870
3871#if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
3872
3873#define EXTRASIZE 5 /* increment to add to env. size */
3874
3875static int envsize = -1; /* current size of environment */
Bram Moolenaard0573012017-10-28 21:11:06 +02003876extern char **environ; /* the global which is your env. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003878static int findenv(char *name); /* look for a name in the env. */
3879static int newenv(void); /* copy env. from stack to heap */
3880static int moreenv(void); /* incr. size of env. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881
3882 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003883putenv(const char *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884{
3885 int i;
3886 char *p;
3887
3888 if (envsize < 0)
3889 { /* first time putenv called */
3890 if (newenv() < 0) /* copy env. to heap */
3891 return -1;
3892 }
3893
3894 i = findenv((char *)string); /* look for name in environment */
3895
3896 if (i < 0)
3897 { /* name must be added */
3898 for (i = 0; environ[i]; i++);
3899 if (i >= (envsize - 1))
3900 { /* need new slot */
3901 if (moreenv() < 0)
3902 return -1;
3903 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003904 p = alloc(strlen(string) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905 if (p == NULL) /* not enough core */
3906 return -1;
3907 environ[i + 1] = 0; /* new end of env. */
3908 }
3909 else
3910 { /* name already in env. */
3911 p = vim_realloc(environ[i], strlen(string) + 1);
3912 if (p == NULL)
3913 return -1;
3914 }
3915 sprintf(p, "%s", string); /* copy into env. */
3916 environ[i] = p;
3917
3918 return 0;
3919}
3920
3921 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003922findenv(char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923{
3924 char *namechar, *envchar;
3925 int i, found;
3926
3927 found = 0;
3928 for (i = 0; environ[i] && !found; i++)
3929 {
3930 envchar = environ[i];
3931 namechar = name;
3932 while (*namechar && *namechar != '=' && (*namechar == *envchar))
3933 {
3934 namechar++;
3935 envchar++;
3936 }
3937 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
3938 }
3939 return found ? i - 1 : -1;
3940}
3941
3942 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003943newenv(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944{
3945 char **env, *elem;
3946 int i, esize;
3947
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 for (i = 0; environ[i]; i++)
3949 ;
Bram Moolenaard0573012017-10-28 21:11:06 +02003950
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 esize = i + EXTRASIZE + 1;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003952 env = ALLOC_MULT(char *, esize);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 if (env == NULL)
3954 return -1;
3955
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 for (i = 0; environ[i]; i++)
3957 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003958 elem = alloc(strlen(environ[i]) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959 if (elem == NULL)
3960 return -1;
3961 env[i] = elem;
3962 strcpy(elem, environ[i]);
3963 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964
3965 env[i] = 0;
3966 environ = env;
3967 envsize = esize;
3968 return 0;
3969}
3970
3971 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003972moreenv(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003973{
3974 int esize;
3975 char **env;
3976
3977 esize = envsize + EXTRASIZE;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003978 env = vim_realloc((char *)environ, esize * sizeof (*env));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979 if (env == 0)
3980 return -1;
3981 environ = env;
3982 envsize = esize;
3983 return 0;
3984}
3985
3986# ifdef USE_VIMPTY_GETENV
Bram Moolenaar613fe7a2017-07-22 21:11:53 +02003987/*
3988 * Used for mch_getenv() for Mac.
3989 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01003991vimpty_getenv(const char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992{
3993 int i;
3994 char_u *p;
3995
3996 if (envsize < 0)
3997 return NULL;
3998
3999 i = findenv((char *)string);
4000
4001 if (i < 0)
4002 return NULL;
4003
4004 p = vim_strchr((char_u *)environ[i], '=');
4005 return (p + 1);
4006}
4007# endif
4008
4009#endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004010
Bram Moolenaarc4956c82006-03-12 21:58:43 +00004011#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004012/*
4013 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
4014 * rights to write into.
4015 */
4016 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004017filewritable(char_u *fname)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004018{
4019 int retval = 0;
4020#if defined(UNIX) || defined(VMS)
4021 int perm = 0;
4022#endif
4023
4024#if defined(UNIX) || defined(VMS)
4025 perm = mch_getperm(fname);
4026#endif
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004027 if (
Bram Moolenaar4f974752019-02-17 17:44:42 +01004028# ifdef MSWIN
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004029 mch_writable(fname) &&
4030# else
4031# if defined(UNIX) || defined(VMS)
4032 (perm & 0222) &&
4033# endif
4034# endif
4035 mch_access((char *)fname, W_OK) == 0
4036 )
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004037 {
4038 ++retval;
4039 if (mch_isdir(fname))
4040 ++retval;
4041 }
4042 return retval;
4043}
4044#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00004045
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004046#if defined(FEAT_SPELL) || defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
4047/*
4048 * Read 2 bytes from "fd" and turn them into an int, MSB first.
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004049 * Returns -1 when encountering EOF.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004050 */
4051 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004052get2c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004053{
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004054 int c, n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004055
4056 n = getc(fd);
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004057 if (n == EOF) return -1;
4058 c = getc(fd);
4059 if (c == EOF) return -1;
4060 return (n << 8) + c;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004061}
4062
4063/*
4064 * Read 3 bytes from "fd" and turn them into an int, MSB first.
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004065 * Returns -1 when encountering EOF.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004066 */
4067 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004068get3c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004069{
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004070 int c, n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004071
4072 n = getc(fd);
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004073 if (n == EOF) return -1;
4074 c = getc(fd);
4075 if (c == EOF) return -1;
4076 n = (n << 8) + c;
4077 c = getc(fd);
4078 if (c == EOF) return -1;
4079 return (n << 8) + c;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004080}
4081
4082/*
4083 * Read 4 bytes from "fd" and turn them into an int, MSB first.
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004084 * Returns -1 when encountering EOF.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004085 */
4086 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004087get4c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004088{
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004089 int c;
Bram Moolenaar95235e62013-09-08 16:07:07 +02004090 /* Use unsigned rather than int otherwise result is undefined
4091 * when left-shift sets the MSB. */
4092 unsigned n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004093
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004094 c = getc(fd);
4095 if (c == EOF) return -1;
4096 n = (unsigned)c;
4097 c = getc(fd);
4098 if (c == EOF) return -1;
4099 n = (n << 8) + (unsigned)c;
4100 c = getc(fd);
4101 if (c == EOF) return -1;
4102 n = (n << 8) + (unsigned)c;
4103 c = getc(fd);
4104 if (c == EOF) return -1;
4105 n = (n << 8) + (unsigned)c;
Bram Moolenaar95235e62013-09-08 16:07:07 +02004106 return (int)n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004107}
4108
4109/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004110 * Read 8 bytes from "fd" and turn them into a time_T, MSB first.
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004111 * Returns -1 when encountering EOF.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004112 */
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004113 time_T
Bram Moolenaar9b578142016-01-30 19:39:49 +01004114get8ctime(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004115{
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004116 int c;
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004117 time_T n = 0;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004118 int i;
4119
4120 for (i = 0; i < 8; ++i)
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004121 {
4122 c = getc(fd);
4123 if (c == EOF) return -1;
4124 n = (n << 8) + c;
4125 }
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004126 return n;
4127}
4128
4129/*
4130 * Read a string of length "cnt" from "fd" into allocated memory.
4131 * Returns NULL when out of memory or unable to read that many bytes.
4132 */
4133 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004134read_string(FILE *fd, int cnt)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004135{
4136 char_u *str;
4137 int i;
4138 int c;
4139
4140 /* allocate memory */
Bram Moolenaar964b3742019-05-24 18:54:09 +02004141 str = alloc(cnt + 1);
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004142 if (str != NULL)
4143 {
4144 /* Read the string. Quit when running into the EOF. */
4145 for (i = 0; i < cnt; ++i)
4146 {
4147 c = getc(fd);
4148 if (c == EOF)
4149 {
4150 vim_free(str);
4151 return NULL;
4152 }
4153 str[i] = c;
4154 }
4155 str[i] = NUL;
4156 }
4157 return str;
4158}
4159
4160/*
4161 * Write a number to file "fd", MSB first, in "len" bytes.
4162 */
4163 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004164put_bytes(FILE *fd, long_u nr, int len)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004165{
4166 int i;
4167
4168 for (i = len - 1; i >= 0; --i)
4169 if (putc((int)(nr >> (i * 8)), fd) == EOF)
4170 return FAIL;
4171 return OK;
4172}
4173
4174#ifdef _MSC_VER
4175# if (_MSC_VER <= 1200)
4176/* This line is required for VC6 without the service pack. Also see the
4177 * matching #pragma below. */
4178 # pragma optimize("", off)
4179# endif
4180#endif
4181
4182/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004183 * Write time_T to file "fd" in 8 bytes.
Bram Moolenaar285bf842016-01-07 22:34:01 +01004184 * Returns FAIL when the write failed.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004185 */
Bram Moolenaar285bf842016-01-07 22:34:01 +01004186 int
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004187put_time(FILE *fd, time_T the_time)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004188{
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004189 char_u buf[8];
4190
4191 time_to_bytes(the_time, buf);
Bram Moolenaar285bf842016-01-07 22:34:01 +01004192 return fwrite(buf, (size_t)8, (size_t)1, fd) == 1 ? OK : FAIL;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004193}
4194
4195/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004196 * Write time_T to "buf[8]".
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004197 */
4198 void
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004199time_to_bytes(time_T the_time, char_u *buf)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004200{
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004201 int c;
4202 int i;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004203 int bi = 0;
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004204 time_T wtime = the_time;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004205
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004206 /* time_T can be up to 8 bytes in size, more than long_u, thus we
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004207 * can't use put_bytes() here.
4208 * Another problem is that ">>" may do an arithmetic shift that keeps the
Bram Moolenaar644fdff2010-05-30 13:26:21 +02004209 * sign. This happens for large values of wtime. A cast to long_u may
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004210 * truncate if time_T is 8 bytes. So only use a cast when it is 4 bytes,
Bram Moolenaar644fdff2010-05-30 13:26:21 +02004211 * it's safe to assume that long_u is 4 bytes or more and when using 8
4212 * bytes the top bit won't be set. */
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004213 for (i = 7; i >= 0; --i)
4214 {
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004215 if (i + 1 > (int)sizeof(time_T))
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004216 /* ">>" doesn't work well when shifting more bits than avail */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004217 buf[bi++] = 0;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004218 else
4219 {
Bram Moolenaar644fdff2010-05-30 13:26:21 +02004220#if defined(SIZEOF_TIME_T) && SIZEOF_TIME_T > 4
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02004221 c = (int)(wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02004222#else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02004223 c = (int)((long_u)wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02004224#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004225 buf[bi++] = c;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004226 }
4227 }
4228}
4229
4230#ifdef _MSC_VER
4231# if (_MSC_VER <= 1200)
4232 # pragma optimize("", on)
4233# endif
4234#endif
4235
4236#endif
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004237
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004238#if defined(FEAT_QUICKFIX) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004239/*
4240 * Return TRUE if string "s" contains a non-ASCII character (128 or higher).
4241 * When "s" is NULL FALSE is returned.
4242 */
4243 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004244has_non_ascii(char_u *s)
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004245{
4246 char_u *p;
4247
4248 if (s != NULL)
4249 for (p = s; *p != NUL; ++p)
4250 if (*p >= 128)
4251 return TRUE;
4252 return FALSE;
4253}
4254#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02004255
Bram Moolenaar51628222016-12-01 23:03:28 +01004256#ifndef PROTO /* proto is defined in vim.h */
4257# ifdef ELAPSED_TIMEVAL
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004258/*
4259 * Return time in msec since "start_tv".
4260 */
4261 long
4262elapsed(struct timeval *start_tv)
4263{
4264 struct timeval now_tv;
4265
4266 gettimeofday(&now_tv, NULL);
4267 return (now_tv.tv_sec - start_tv->tv_sec) * 1000L
4268 + (now_tv.tv_usec - start_tv->tv_usec) / 1000L;
4269}
Bram Moolenaar51628222016-12-01 23:03:28 +01004270# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004271
Bram Moolenaar51628222016-12-01 23:03:28 +01004272# ifdef ELAPSED_TICKCOUNT
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004273/*
4274 * Return time in msec since "start_tick".
4275 */
4276 long
4277elapsed(DWORD start_tick)
4278{
4279 DWORD now = GetTickCount();
4280
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004281 return (long)now - (long)start_tick;
4282}
Bram Moolenaar51628222016-12-01 23:03:28 +01004283# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004284#endif
Bram Moolenaar20608922018-04-21 22:30:08 +02004285
4286#if defined(FEAT_JOB_CHANNEL) \
4287 || (defined(UNIX) && (!defined(USE_SYSTEM) \
4288 || (defined(FEAT_GUI) && defined(FEAT_TERMINAL)))) \
4289 || defined(PROTO)
4290/*
4291 * Parse "cmd" and put the white-separated parts in "argv".
4292 * "argv" is an allocated array with "argc" entries and room for 4 more.
4293 * Returns FAIL when out of memory.
4294 */
4295 int
4296mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc)
4297{
4298 int i;
4299 char_u *p, *d;
4300 int inquote;
4301
4302 /*
4303 * Do this loop twice:
4304 * 1: find number of arguments
4305 * 2: separate them and build argv[]
4306 */
4307 for (i = 0; i < 2; ++i)
4308 {
4309 p = skipwhite(cmd);
4310 inquote = FALSE;
4311 *argc = 0;
4312 for (;;)
4313 {
4314 if (i == 1)
4315 (*argv)[*argc] = (char *)p;
4316 ++*argc;
4317 d = p;
4318 while (*p != NUL && (inquote || (*p != ' ' && *p != TAB)))
4319 {
4320 if (p[0] == '"')
Bram Moolenaar1df2fa42018-10-07 21:36:11 +02004321 // quotes surrounding an argument and are dropped
Bram Moolenaar20608922018-04-21 22:30:08 +02004322 inquote = !inquote;
4323 else
4324 {
Bram Moolenaar1df2fa42018-10-07 21:36:11 +02004325 if (rem_backslash(p))
Bram Moolenaar20608922018-04-21 22:30:08 +02004326 {
Bram Moolenaar1df2fa42018-10-07 21:36:11 +02004327 // First pass: skip over "\ " and "\"".
4328 // Second pass: Remove the backslash.
Bram Moolenaar20608922018-04-21 22:30:08 +02004329 ++p;
4330 }
4331 if (i == 1)
4332 *d++ = *p;
4333 }
4334 ++p;
4335 }
4336 if (*p == NUL)
4337 {
4338 if (i == 1)
4339 *d++ = NUL;
4340 break;
4341 }
4342 if (i == 1)
4343 *d++ = NUL;
4344 p = skipwhite(p + 1);
4345 }
4346 if (*argv == NULL)
4347 {
4348 if (use_shcf)
4349 {
4350 /* Account for possible multiple args in p_shcf. */
4351 p = p_shcf;
4352 for (;;)
4353 {
4354 p = skiptowhite(p);
4355 if (*p == NUL)
4356 break;
4357 ++*argc;
4358 p = skipwhite(p);
4359 }
4360 }
4361
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004362 *argv = ALLOC_MULT(char *, *argc + 4);
Bram Moolenaar20608922018-04-21 22:30:08 +02004363 if (*argv == NULL) /* out of memory */
4364 return FAIL;
4365 }
4366 }
4367 return OK;
4368}
Bram Moolenaarebe74b72018-04-21 23:34:43 +02004369
4370# if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
4371/*
4372 * Build "argv[argc]" from the string "cmd".
4373 * "argv[argc]" is set to NULL;
4374 * Return FAIL when out of memory.
4375 */
4376 int
4377build_argv_from_string(char_u *cmd, char ***argv, int *argc)
4378{
4379 char_u *cmd_copy;
4380 int i;
4381
4382 /* Make a copy, parsing will modify "cmd". */
4383 cmd_copy = vim_strsave(cmd);
4384 if (cmd_copy == NULL
4385 || mch_parse_cmd(cmd_copy, FALSE, argv, argc) == FAIL)
4386 {
4387 vim_free(cmd_copy);
4388 return FAIL;
4389 }
4390 for (i = 0; i < *argc; i++)
4391 (*argv)[i] = (char *)vim_strsave((char_u *)(*argv)[i]);
4392 (*argv)[*argc] = NULL;
4393 vim_free(cmd_copy);
4394 return OK;
4395}
4396
4397/*
4398 * Build "argv[argc]" from the list "l".
4399 * "argv[argc]" is set to NULL;
4400 * Return FAIL when out of memory.
4401 */
4402 int
4403build_argv_from_list(list_T *l, char ***argv, int *argc)
4404{
4405 listitem_T *li;
4406 char_u *s;
4407
4408 /* Pass argv[] to mch_call_shell(). */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004409 *argv = ALLOC_MULT(char *, l->lv_len + 1);
Bram Moolenaarebe74b72018-04-21 23:34:43 +02004410 if (*argv == NULL)
4411 return FAIL;
4412 *argc = 0;
4413 for (li = l->lv_first; li != NULL; li = li->li_next)
4414 {
Bram Moolenaard155d7a2018-12-21 16:04:21 +01004415 s = tv_get_string_chk(&li->li_tv);
Bram Moolenaarebe74b72018-04-21 23:34:43 +02004416 if (s == NULL)
4417 {
4418 int i;
4419
4420 for (i = 0; i < *argc; ++i)
4421 vim_free((*argv)[i]);
4422 return FAIL;
4423 }
4424 (*argv)[*argc] = (char *)vim_strsave(s);
4425 *argc += 1;
4426 }
4427 (*argv)[*argc] = NULL;
4428 return OK;
4429}
4430# endif
Bram Moolenaar20608922018-04-21 22:30:08 +02004431#endif
Bram Moolenaar57da6982019-09-13 22:30:11 +02004432
4433/*
4434 * Change the behavior of vterm.
4435 * 0: As usual.
4436 * 1: Windows 10 version 1809
4437 * The bug causes unstable handling of ambiguous width character.
4438 * 2: Windows 10 version 1903
4439 * Use the wrong result because each result is different.
4440 * 3: Windows 10 insider preview (current latest logic)
4441 */
4442 int
4443get_special_pty_type(void)
4444{
4445#ifdef MSWIN
4446 return get_conpty_type();
4447#else
4448 return 0;
4449#endif
4450}