blob: 0ab6caffaf334235383d95383582c1c69a776999 [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 Moolenaar85a20022019-12-21 18:25:54 +010015static char_u *username = NULL; // cached result of mch_get_user_name()
Bram Moolenaarf461c8e2005-06-25 23:04:51 +000016
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{
Bram Moolenaar85a20022019-12-21 18:25:54 +010025 // 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.
Bram Moolenaar071d4272004-06-13 20:20:40 +000028 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 {
Bram Moolenaar85a20022019-12-21 18:25:54 +010061 // Virtcol is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +000062 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 Moolenaar85a20022019-12-21 18:25:54 +0100102 // 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 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100171 // In case of line wrapping don't move the cursor beyond the
172 // 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 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100182 // Count a tab for what it's worth (if list mode not on)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183#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
Bram Moolenaar85a20022019-12-21 18:25:54 +0100202 // Don't count the chars from 'showbreak'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203 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 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100213 // 'virtualedit' is set: The difference between wcol and col is
214 // filled with spaces.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215
216 if (line[idx] == NUL)
217 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100218 // Append spaces
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219 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 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100241 // Break a tab
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242 int linelen = (int)STRLEN(line);
Bram Moolenaar85a20022019-12-21 18:25:54 +0100243 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 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100285 // The width of the last character is used to set coladd.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286 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
Bram Moolenaar85a20022019-12-21 18:25:54 +0100298 // 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 Moolenaar85a20022019-12-21 18:25:54 +0100306 // 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 Moolenaar85a20022019-12-21 18:25:54 +0100336 // when searching position may be set to end of a line
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100337 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);
Bram Moolenaar85a20022019-12-21 18:25:54 +0100340 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 }
Bram Moolenaar85a20022019-12-21 18:25:54 +0100354 if (lp->lnum != curbuf->b_ml.ml_line_count) // there is a next line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355 {
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 Moolenaar85a20022019-12-21 18:25:54 +0100397 // past end of line
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100398 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 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100407 // 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 Moolenaar85a20022019-12-21 18:25:54 +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
Bram Moolenaar85a20022019-12-21 18:25:54 +0100428 // at start of file
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100429 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,
Bram Moolenaar85a20022019-12-21 18:25:54 +0100453 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 Moolenaar85a20022019-12-21 18:25:54 +0100466 // if lnum and cursor are in the same fold,
467 // now lnum <= cursor
Bram Moolenaar64486672010-05-16 15:46:46 +0200468 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 Moolenaar85a20022019-12-21 18:25:54 +0100478 // if lnum and cursor are in the same fold,
479 // now lnum >= cursor
Bram Moolenaar64486672010-05-16 15:46:46 +0200480 if (lnum < cursor)
481 retval--;
482 lnum++;
483 }
484 }
Bram Moolenaar85a20022019-12-21 18:25:54 +0100485 // else if (lnum == cursor)
486 // retval = 0;
Bram Moolenaar64486672010-05-16 15:46:46 +0200487 }
488 else
489#endif
490 retval = lnum - cursor;
491
492 return retval;
493}
494
495/*
Bram Moolenaard5824ce2016-09-04 20:35:01 +0200496 * Make sure "pos.lnum" and "pos.col" are valid in "buf".
497 * This allows for the col to be on the NUL byte.
498 */
499 void
500check_pos(buf_T *buf, pos_T *pos)
501{
502 char_u *line;
503 colnr_T len;
504
505 if (pos->lnum > buf->b_ml.ml_line_count)
506 pos->lnum = buf->b_ml.ml_line_count;
507
508 if (pos->col > 0)
509 {
510 line = ml_get_buf(buf, pos->lnum, FALSE);
511 len = (colnr_T)STRLEN(line);
512 if (pos->col > len)
513 pos->col = len;
514 }
515}
516
517/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 * Make sure curwin->w_cursor.lnum is valid.
519 */
520 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100521check_cursor_lnum(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522{
523 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
524 {
525#ifdef FEAT_FOLDING
Bram Moolenaar85a20022019-12-21 18:25:54 +0100526 // If there is a closed fold at the end of the file, put the cursor in
527 // its first line. Otherwise in the last line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000528 if (!hasFolding(curbuf->b_ml.ml_line_count,
529 &curwin->w_cursor.lnum, NULL))
530#endif
531 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
532 }
533 if (curwin->w_cursor.lnum <= 0)
534 curwin->w_cursor.lnum = 1;
535}
536
537/*
538 * Make sure curwin->w_cursor.col is valid.
539 */
540 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100541check_cursor_col(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542{
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200543 check_cursor_col_win(curwin);
544}
545
546/*
547 * Make sure win->w_cursor.col is valid.
548 */
549 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100550check_cursor_col_win(win_T *win)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200551{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 colnr_T len;
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200553 colnr_T oldcol = win->w_cursor.col;
554 colnr_T oldcoladd = win->w_cursor.col + win->w_cursor.coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200556 len = (colnr_T)STRLEN(ml_get_buf(win->w_buffer, win->w_cursor.lnum, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557 if (len == 0)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200558 win->w_cursor.col = 0;
559 else if (win->w_cursor.col >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100561 // Allow cursor past end-of-line when:
562 // - in Insert mode or restarting Insert mode
563 // - in Visual mode and 'selection' isn't "old"
564 // - 'virtualedit' is set
Bram Moolenaarebefac62005-12-28 22:39:57 +0000565 if ((State & INSERT) || restart_edit
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 || (VIsual_active && *p_sel != 'o')
Bram Moolenaar33f54432008-01-04 20:25:44 +0000567 || (ve_flags & VE_ONEMORE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568 || virtual_active())
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200569 win->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 else
Bram Moolenaar87c19962007-04-26 08:54:21 +0000571 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200572 win->w_cursor.col = len - 1;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100573 // Move the cursor to the head byte.
Bram Moolenaar87c19962007-04-26 08:54:21 +0000574 if (has_mbyte)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200575 mb_adjustpos(win->w_buffer, &win->w_cursor);
Bram Moolenaar87c19962007-04-26 08:54:21 +0000576 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577 }
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200578 else if (win->w_cursor.col < 0)
579 win->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580
Bram Moolenaar85a20022019-12-21 18:25:54 +0100581 // If virtual editing is on, we can leave the cursor on the old position,
582 // only we must set it to virtual. But don't do it when at the end of the
583 // line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584 if (oldcol == MAXCOL)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200585 win->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 else if (ve_flags == VE_ALL)
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000587 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200588 if (oldcoladd > win->w_cursor.col)
Bram Moolenaar9aa15692017-08-19 15:05:32 +0200589 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200590 win->w_cursor.coladd = oldcoladd - win->w_cursor.col;
Bram Moolenaard41babe2017-08-30 17:01:35 +0200591
Bram Moolenaar85a20022019-12-21 18:25:54 +0100592 // Make sure that coladd is not more than the char width.
593 // Not for the last character, coladd is then used when the cursor
594 // is actually after the last character.
Bram Moolenaard41babe2017-08-30 17:01:35 +0200595 if (win->w_cursor.col + 1 < len && win->w_cursor.coladd > 0)
Bram Moolenaar9aa15692017-08-19 15:05:32 +0200596 {
597 int cs, ce;
598
Bram Moolenaar9aa15692017-08-19 15:05:32 +0200599 getvcol(win, &win->w_cursor, &cs, NULL, &ce);
600 if (win->w_cursor.coladd > ce - cs)
601 win->w_cursor.coladd = ce - cs;
602 }
603 }
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000604 else
Bram Moolenaar85a20022019-12-21 18:25:54 +0100605 // avoid weird number when there is a miscalculation or overflow
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200606 win->w_cursor.coladd = 0;
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000607 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608}
609
610/*
611 * make sure curwin->w_cursor in on a valid character
612 */
613 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100614check_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615{
616 check_cursor_lnum();
617 check_cursor_col();
618}
619
620#if defined(FEAT_TEXTOBJ) || defined(PROTO)
621/*
622 * Make sure curwin->w_cursor is not on the NUL at the end of the line.
623 * Allow it when in Visual mode and 'selection' is not "old".
624 */
625 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100626adjust_cursor_col(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627{
628 if (curwin->w_cursor.col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629 && (!VIsual_active || *p_sel == 'o')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 && gchar_cursor() == NUL)
631 --curwin->w_cursor.col;
632}
633#endif
634
635/*
636 * When curwin->w_leftcol has changed, adjust the cursor position.
637 * Return TRUE if the cursor was moved.
638 */
639 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100640leftcol_changed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641{
642 long lastcol;
643 colnr_T s, e;
644 int retval = FALSE;
Bram Moolenaar375e3392019-01-31 18:26:10 +0100645 long siso = get_sidescrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646
647 changed_cline_bef_curs();
Bram Moolenaar02631462017-09-22 15:20:32 +0200648 lastcol = curwin->w_leftcol + curwin->w_width - curwin_col_off() - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 validate_virtcol();
650
651 /*
652 * If the cursor is right or left of the screen, move it to last or first
653 * character.
654 */
Bram Moolenaar375e3392019-01-31 18:26:10 +0100655 if (curwin->w_virtcol > (colnr_T)(lastcol - siso))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 {
657 retval = TRUE;
Bram Moolenaar375e3392019-01-31 18:26:10 +0100658 coladvance((colnr_T)(lastcol - siso));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659 }
Bram Moolenaar375e3392019-01-31 18:26:10 +0100660 else if (curwin->w_virtcol < curwin->w_leftcol + siso)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661 {
662 retval = TRUE;
Bram Moolenaar375e3392019-01-31 18:26:10 +0100663 (void)coladvance((colnr_T)(curwin->w_leftcol + siso));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664 }
665
666 /*
667 * If the start of the character under the cursor is not on the screen,
668 * advance the cursor one more char. If this fails (last char of the
669 * line) adjust the scrolling.
670 */
671 getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e);
672 if (e > (colnr_T)lastcol)
673 {
674 retval = TRUE;
675 coladvance(s - 1);
676 }
677 else if (s < curwin->w_leftcol)
678 {
679 retval = TRUE;
Bram Moolenaar85a20022019-12-21 18:25:54 +0100680 if (coladvance(e + 1) == FAIL) // there isn't another character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100682 curwin->w_leftcol = s; // adjust w_leftcol instead
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683 changed_cline_bef_curs();
684 }
685 }
686
687 if (retval)
688 curwin->w_set_curswant = TRUE;
689 redraw_later(NOT_VALID);
690 return retval;
691}
692
693/**********************************************************************
694 * Various routines dealing with allocation and deallocation of memory.
695 */
696
697#if defined(MEM_PROFILE) || defined(PROTO)
698
699# define MEM_SIZES 8200
700static long_u mem_allocs[MEM_SIZES];
701static long_u mem_frees[MEM_SIZES];
702static long_u mem_allocated;
703static long_u mem_freed;
704static long_u mem_peak;
705static long_u num_alloc;
706static long_u num_freed;
707
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100709mem_pre_alloc_s(size_t *sizep)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710{
711 *sizep += sizeof(size_t);
712}
713
714 static void
Bram Moolenaar964b3742019-05-24 18:54:09 +0200715mem_pre_alloc_l(size_t *sizep)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716{
717 *sizep += sizeof(size_t);
718}
719
720 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100721mem_post_alloc(
722 void **pp,
723 size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724{
725 if (*pp == NULL)
726 return;
727 size -= sizeof(size_t);
728 *(long_u *)*pp = size;
729 if (size <= MEM_SIZES-1)
730 mem_allocs[size-1]++;
731 else
732 mem_allocs[MEM_SIZES-1]++;
733 mem_allocated += size;
734 if (mem_allocated - mem_freed > mem_peak)
735 mem_peak = mem_allocated - mem_freed;
736 num_alloc++;
737 *pp = (void *)((char *)*pp + sizeof(size_t));
738}
739
740 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100741mem_pre_free(void **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742{
743 long_u size;
744
745 *pp = (void *)((char *)*pp - sizeof(size_t));
746 size = *(size_t *)*pp;
747 if (size <= MEM_SIZES-1)
748 mem_frees[size-1]++;
749 else
750 mem_frees[MEM_SIZES-1]++;
751 mem_freed += size;
752 num_freed++;
753}
754
755/*
756 * called on exit via atexit()
757 */
758 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100759vim_mem_profile_dump(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760{
761 int i, j;
762
763 printf("\r\n");
764 j = 0;
765 for (i = 0; i < MEM_SIZES - 1; i++)
766 {
767 if (mem_allocs[i] || mem_frees[i])
768 {
769 if (mem_frees[i] > mem_allocs[i])
770 printf("\r\n%s", _("ERROR: "));
771 printf("[%4d / %4lu-%-4lu] ", i + 1, mem_allocs[i], mem_frees[i]);
772 j++;
773 if (j > 3)
774 {
775 j = 0;
776 printf("\r\n");
777 }
778 }
779 }
780
781 i = MEM_SIZES - 1;
782 if (mem_allocs[i])
783 {
784 printf("\r\n");
785 if (mem_frees[i] > mem_allocs[i])
Bram Moolenaar2f1e0502010-08-13 11:18:02 +0200786 puts(_("ERROR: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787 printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]);
788 }
789
790 printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"),
791 mem_allocated, mem_freed, mem_allocated - mem_freed, mem_peak);
792 printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"),
793 num_alloc, num_freed);
794}
795
Bram Moolenaar85a20022019-12-21 18:25:54 +0100796#endif // MEM_PROFILE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100798#ifdef FEAT_EVAL
Bram Moolenaarf49cc602018-11-11 15:21:05 +0100799 int
Bram Moolenaar964b3742019-05-24 18:54:09 +0200800alloc_does_fail(size_t size)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100801{
802 if (alloc_fail_countdown == 0)
803 {
804 if (--alloc_fail_repeat <= 0)
805 alloc_fail_id = 0;
Bram Moolenaara260b872016-01-15 20:48:22 +0100806 do_outofmem_msg(size);
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100807 return TRUE;
808 }
809 --alloc_fail_countdown;
810 return FALSE;
811}
812#endif
813
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814/*
815 * Some memory is reserved for error messages and for being able to
816 * call mf_release_all(), which needs some memory for mf_trans_add().
817 */
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100818#define KEEP_ROOM (2 * 8192L)
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200819#define KEEP_ROOM_KB (KEEP_ROOM / 1024L)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820
821/*
Bram Moolenaar964b3742019-05-24 18:54:09 +0200822 * The normal way to allocate memory. This handles an out-of-memory situation
823 * as well as possible, still returns NULL when we're completely out.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200825 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200826alloc(size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827{
Bram Moolenaar964b3742019-05-24 18:54:09 +0200828 return lalloc(size, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829}
830
831/*
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100832 * alloc() with an ID for alloc_fail().
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100833 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200834 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200835alloc_id(size_t size, alloc_id_T id UNUSED)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100836{
837#ifdef FEAT_EVAL
Bram Moolenaar964b3742019-05-24 18:54:09 +0200838 if (alloc_fail_id == id && alloc_does_fail(size))
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100839 return NULL;
840#endif
Bram Moolenaar964b3742019-05-24 18:54:09 +0200841 return lalloc(size, TRUE);
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100842}
843
844/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 * Allocate memory and set all bytes to zero.
846 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200847 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200848alloc_clear(size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849{
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200850 void *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851
Bram Moolenaar964b3742019-05-24 18:54:09 +0200852 p = lalloc(size, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 if (p != NULL)
Bram Moolenaar964b3742019-05-24 18:54:09 +0200854 (void)vim_memset(p, 0, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855 return p;
856}
857
858/*
Bram Moolenaar162b7142018-12-21 15:17:36 +0100859 * Same as alloc_clear() but with allocation id for testing
860 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200861 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200862alloc_clear_id(size_t size, alloc_id_T id UNUSED)
Bram Moolenaar162b7142018-12-21 15:17:36 +0100863{
864#ifdef FEAT_EVAL
Bram Moolenaar964b3742019-05-24 18:54:09 +0200865 if (alloc_fail_id == id && alloc_does_fail(size))
Bram Moolenaar162b7142018-12-21 15:17:36 +0100866 return NULL;
867#endif
868 return alloc_clear(size);
869}
870
871/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872 * Allocate memory like lalloc() and set all bytes to zero.
873 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200874 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200875lalloc_clear(size_t size, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876{
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200877 void *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200879 p = lalloc(size, message);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 if (p != NULL)
Bram Moolenaar964b3742019-05-24 18:54:09 +0200881 (void)vim_memset(p, 0, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882 return p;
883}
884
885/*
886 * Low level memory allocation function.
887 * This is used often, KEEP IT FAST!
888 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200889 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200890lalloc(size_t size, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891{
Bram Moolenaar85a20022019-12-21 18:25:54 +0100892 void *p; // pointer to new storage space
893 static int releasing = FALSE; // don't do mf_release_all() recursive
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894 int try_again;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100895#if defined(HAVE_AVAIL_MEM)
Bram Moolenaar85a20022019-12-21 18:25:54 +0100896 static size_t allocated = 0; // allocated since last avail check
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897#endif
898
Bram Moolenaar964b3742019-05-24 18:54:09 +0200899 // Safety check for allocating zero bytes
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 if (size == 0)
901 {
Bram Moolenaar964b3742019-05-24 18:54:09 +0200902 // Don't hide this message
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 emsg_silent = 0;
Bram Moolenaar964b3742019-05-24 18:54:09 +0200904 iemsg(_("E341: Internal error: lalloc(0, )"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 return NULL;
906 }
907
908#ifdef MEM_PROFILE
909 mem_pre_alloc_l(&size);
910#endif
911
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 /*
913 * Loop when out of memory: Try to release some memfile blocks and
914 * if some blocks are released call malloc again.
915 */
916 for (;;)
917 {
918 /*
919 * Handle three kind of systems:
920 * 1. No check for available memory: Just return.
921 * 2. Slow check for available memory: call mch_avail_mem() after
922 * allocating KEEP_ROOM amount of memory.
923 * 3. Strict check for available memory: call mch_avail_mem()
924 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200925 if ((p = malloc(size)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 {
927#ifndef HAVE_AVAIL_MEM
Bram Moolenaar85a20022019-12-21 18:25:54 +0100928 // 1. No check for available memory: Just return.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929 goto theend;
930#else
Bram Moolenaar85a20022019-12-21 18:25:54 +0100931 // 2. Slow check for available memory: call mch_avail_mem() after
932 // allocating (KEEP_ROOM / 2) amount of memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933 allocated += size;
934 if (allocated < KEEP_ROOM / 2)
935 goto theend;
936 allocated = 0;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100937
Bram Moolenaar85a20022019-12-21 18:25:54 +0100938 // 3. check for available memory: call mch_avail_mem()
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200939 if (mch_avail_mem(TRUE) < KEEP_ROOM_KB && !releasing)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 {
Bram Moolenaar85a20022019-12-21 18:25:54 +0100941 free(p); // System is low... no go!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942 p = NULL;
943 }
944 else
945 goto theend;
946#endif
947 }
948 /*
949 * Remember that mf_release_all() is being called to avoid an endless
950 * loop, because mf_release_all() may call alloc() recursively.
951 */
952 if (releasing)
953 break;
954 releasing = TRUE;
Bram Moolenaar661b1822005-07-28 22:36:45 +0000955
Bram Moolenaar85a20022019-12-21 18:25:54 +0100956 clear_sb_text(TRUE); // free any scrollback text
957 try_again = mf_release_all(); // release as many blocks as possible
Bram Moolenaar661b1822005-07-28 22:36:45 +0000958
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 releasing = FALSE;
960 if (!try_again)
961 break;
962 }
963
964 if (message && p == NULL)
965 do_outofmem_msg(size);
966
967theend:
968#ifdef MEM_PROFILE
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200969 mem_post_alloc(&p, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970#endif
971 return p;
972}
973
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100974/*
975 * lalloc() with an ID for alloc_fail().
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100976 */
Bram Moolenaar113e1072019-01-20 15:30:40 +0100977#if defined(FEAT_SIGNS) || defined(PROTO)
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200978 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200979lalloc_id(size_t size, int message, alloc_id_T id UNUSED)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100980{
981#ifdef FEAT_EVAL
Bram Moolenaara260b872016-01-15 20:48:22 +0100982 if (alloc_fail_id == id && alloc_does_fail(size))
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100983 return NULL;
984#endif
Bram Moolenaar964b3742019-05-24 18:54:09 +0200985 return (lalloc(size, message));
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100986}
Bram Moolenaar113e1072019-01-20 15:30:40 +0100987#endif
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100988
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989#if defined(MEM_PROFILE) || defined(PROTO)
990/*
991 * realloc() with memory profiling.
992 */
993 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100994mem_realloc(void *ptr, size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995{
996 void *p;
997
998 mem_pre_free(&ptr);
999 mem_pre_alloc_s(&size);
1000
1001 p = realloc(ptr, size);
1002
1003 mem_post_alloc(&p, size);
1004
1005 return p;
1006}
1007#endif
1008
1009/*
1010* Avoid repeating the error message many times (they take 1 second each).
1011* Did_outofmem_msg is reset when a character is read.
1012*/
1013 void
Bram Moolenaar964b3742019-05-24 18:54:09 +02001014do_outofmem_msg(size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015{
1016 if (!did_outofmem_msg)
1017 {
Bram Moolenaar4dc8f492019-08-21 13:06:55 +02001018 // Don't hide this message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019 emsg_silent = 0;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001020
Bram Moolenaar4dc8f492019-08-21 13:06:55 +02001021 // Must come first to avoid coming back here when printing the error
1022 // message fails, e.g. when setting v:errmsg.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023 did_outofmem_msg = TRUE;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001024
Bram Moolenaar964b3742019-05-24 18:54:09 +02001025 semsg(_("E342: Out of memory! (allocating %lu bytes)"), (long_u)size);
Bram Moolenaar4dc8f492019-08-21 13:06:55 +02001026
1027 if (starting == NO_SCREEN)
1028 // Not even finished with initializations and already out of
1029 // memory? Then nothing is going to work, exit.
1030 mch_exit(123);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 }
1032}
1033
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001034#if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001035
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001036/*
1037 * Free everything that we allocated.
1038 * Can be used to detect memory leaks, e.g., with ccmalloc.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001039 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
1040 * surprised if Vim crashes...
1041 * Some things can't be freed, esp. things local to a library function.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001042 */
1043 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001044free_all_mem(void)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001045{
1046 buf_T *buf, *nextbuf;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001047
Bram Moolenaar85a20022019-12-21 18:25:54 +01001048 // When we cause a crash here it is caught and Vim tries to exit cleanly.
1049 // Don't try freeing everything again.
Bram Moolenaarb89a25f2016-06-01 23:08:39 +02001050 if (entered_free_all_mem)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001051 return;
Bram Moolenaarb89a25f2016-06-01 23:08:39 +02001052 entered_free_all_mem = TRUE;
Bram Moolenaara9673212016-06-01 22:21:06 +02001053
Bram Moolenaar85a20022019-12-21 18:25:54 +01001054 // Don't want to trigger autocommands from here on.
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02001055 block_autocmds();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001056
Bram Moolenaar85a20022019-12-21 18:25:54 +01001057 // Close all tabs and windows. Reset 'equalalways' to avoid redraws.
Bram Moolenaar5bedfc62010-07-20 22:30:01 +02001058 p_ea = FALSE;
Bram Moolenaare5c83282019-05-03 23:15:37 +02001059 if (first_tabpage != NULL && first_tabpage->tp_next != NULL)
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001060 do_cmdline_cmd((char_u *)"tabonly!");
Bram Moolenaar95f09602016-11-10 20:01:45 +01001061 if (!ONE_WINDOW)
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001062 do_cmdline_cmd((char_u *)"only!");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001063
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001064# if defined(FEAT_SPELL)
Bram Moolenaar85a20022019-12-21 18:25:54 +01001065 // Free all spell info.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001066 spell_free_all();
1067# endif
1068
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001069# if defined(FEAT_BEVAL_TERM)
Bram Moolenaarb301f6b2018-02-10 15:38:35 +01001070 ui_remove_balloon();
1071# endif
Bram Moolenaar06f08532020-05-12 23:45:16 +02001072# if defined(FEAT_PROP_POPUP)
1073 if (curwin != NULL)
1074 {
1075 while (popup_is_popup(curwin))
1076 popup_close_with_retval(curwin, 0);
1077 close_all_popups();
1078 }
1079# endif
Bram Moolenaarb301f6b2018-02-10 15:38:35 +01001080
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001081 // Clear user commands (before deleting buffers).
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001082 ex_comclear(NULL);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001083
Bram Moolenaare5c83282019-05-03 23:15:37 +02001084 // When exiting from mainerr_arg_missing curbuf has not been initialized,
1085 // and not much else.
1086 if (curbuf != NULL)
1087 {
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001088# ifdef FEAT_MENU
Bram Moolenaare5c83282019-05-03 23:15:37 +02001089 // Clear menus.
1090 do_cmdline_cmd((char_u *)"aunmenu *");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001091# ifdef FEAT_MULTI_LANG
Bram Moolenaare5c83282019-05-03 23:15:37 +02001092 do_cmdline_cmd((char_u *)"menutranslate clear");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001093# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001094# endif
Bram Moolenaare5c83282019-05-03 23:15:37 +02001095 // Clear mappings, abbreviations, breakpoints.
1096 do_cmdline_cmd((char_u *)"lmapclear");
1097 do_cmdline_cmd((char_u *)"xmapclear");
1098 do_cmdline_cmd((char_u *)"mapclear");
1099 do_cmdline_cmd((char_u *)"mapclear!");
1100 do_cmdline_cmd((char_u *)"abclear");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001101# if defined(FEAT_EVAL)
Bram Moolenaare5c83282019-05-03 23:15:37 +02001102 do_cmdline_cmd((char_u *)"breakdel *");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001103# endif
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001104# if defined(FEAT_PROFILE)
Bram Moolenaare5c83282019-05-03 23:15:37 +02001105 do_cmdline_cmd((char_u *)"profdel *");
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001106# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001107# if defined(FEAT_KEYMAP)
Bram Moolenaare5c83282019-05-03 23:15:37 +02001108 do_cmdline_cmd((char_u *)"set keymap=");
Bram Moolenaar48ac6712019-07-04 20:26:21 +02001109# endif
Bram Moolenaare5c83282019-05-03 23:15:37 +02001110 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001111
1112# ifdef FEAT_TITLE
1113 free_titles();
1114# endif
1115# if defined(FEAT_SEARCHPATH)
1116 free_findfile();
1117# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001118
Bram Moolenaar85a20022019-12-21 18:25:54 +01001119 // Obviously named calls.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001120 free_all_autocmds();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001121 clear_termcodes();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001122 free_all_marks();
1123 alist_clear(&global_alist);
1124 free_homedir();
Bram Moolenaar24305862012-08-15 14:05:05 +02001125 free_users();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001126 free_search_patterns();
1127 free_old_sub();
1128 free_last_insert();
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001129 free_insexpand_stuff();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001130 free_prev_shellcmd();
1131 free_regexp_stuff();
1132 free_tag_stuff();
1133 free_cd_dir();
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001134# ifdef FEAT_SIGNS
1135 free_signs();
1136# endif
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001137# ifdef FEAT_EVAL
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001138 set_expr_line(NULL);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001139# endif
1140# ifdef FEAT_DIFF
Bram Moolenaare5c83282019-05-03 23:15:37 +02001141 if (curtab != NULL)
1142 diff_clear(curtab);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001143# endif
Bram Moolenaar85a20022019-12-21 18:25:54 +01001144 clear_sb_text(TRUE); // free any scrollback text
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001145
Bram Moolenaar85a20022019-12-21 18:25:54 +01001146 // Free some global vars.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001147 vim_free(username);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001148# ifdef FEAT_CLIPBOARD
Bram Moolenaar473de612013-06-08 18:19:48 +02001149 vim_regfree(clip_exclude_prog);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001150# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001151 vim_free(last_cmdline);
1152 vim_free(new_last_cmdline);
Bram Moolenaar238a5642006-02-21 22:12:05 +00001153 set_keep_msg(NULL, 0);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001154
Bram Moolenaar85a20022019-12-21 18:25:54 +01001155 // Clear cmdline history.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001156 p_hi = 0;
1157 init_history();
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001158# ifdef FEAT_PROP_POPUP
Bram Moolenaar98aefe72018-12-13 22:20:09 +01001159 clear_global_prop_types();
Bram Moolenaar48ac6712019-07-04 20:26:21 +02001160# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001161
Bram Moolenaar48ac6712019-07-04 20:26:21 +02001162# ifdef FEAT_QUICKFIX
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001163 {
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001164 win_T *win;
1165 tabpage_T *tab;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001166
1167 qf_free_all(NULL);
Bram Moolenaare5c83282019-05-03 23:15:37 +02001168 // Free all location lists
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001169 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001170 qf_free_all(win);
1171 }
Bram Moolenaar48ac6712019-07-04 20:26:21 +02001172# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001173
Bram Moolenaare5c83282019-05-03 23:15:37 +02001174 // Close all script inputs.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001175 close_all_scripts();
1176
Bram Moolenaare5c83282019-05-03 23:15:37 +02001177 if (curwin != NULL)
1178 // Destroy all windows. Must come before freeing buffers.
1179 win_free_all();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001180
Bram Moolenaar85a20022019-12-21 18:25:54 +01001181 // Free all option values. Must come after closing windows.
Bram Moolenaar4f198282017-10-23 21:53:30 +02001182 free_all_options();
1183
Bram Moolenaar85a20022019-12-21 18:25:54 +01001184 // Free all buffers. Reset 'autochdir' to avoid accessing things that
1185 // were freed already.
Bram Moolenaar48ac6712019-07-04 20:26:21 +02001186# ifdef FEAT_AUTOCHDIR
Bram Moolenaar2a329742008-04-01 12:53:43 +00001187 p_acd = FALSE;
Bram Moolenaar48ac6712019-07-04 20:26:21 +02001188# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001189 for (buf = firstbuf; buf != NULL; )
1190 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001191 bufref_T bufref;
1192
1193 set_bufref(&bufref, buf);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001194 nextbuf = buf->b_next;
Bram Moolenaara6e8f882019-12-14 16:18:15 +01001195 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001196 if (bufref_valid(&bufref))
Bram Moolenaar85a20022019-12-21 18:25:54 +01001197 buf = nextbuf; // didn't work, try next one
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001198 else
1199 buf = firstbuf;
1200 }
1201
Bram Moolenaar48ac6712019-07-04 20:26:21 +02001202# ifdef FEAT_ARABIC
1203 free_arshape_buf();
1204# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001205
Bram Moolenaar85a20022019-12-21 18:25:54 +01001206 // Clear registers.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001207 clear_registers();
1208 ResetRedobuff();
1209 ResetRedobuff();
1210
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001211# if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001212 vim_free(serverDelayedStartName);
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001213# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001214
Bram Moolenaar85a20022019-12-21 18:25:54 +01001215 // highlight info
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001216 free_highlight();
1217
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001218 reset_last_sourcing();
1219
Bram Moolenaare5c83282019-05-03 23:15:37 +02001220 if (first_tabpage != NULL)
1221 {
1222 free_tabpage(first_tabpage);
1223 first_tabpage = NULL;
1224 }
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001225
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001226# ifdef UNIX
Bram Moolenaar85a20022019-12-21 18:25:54 +01001227 // Machine-specific free.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001228 mch_free_mem();
1229# endif
1230
Bram Moolenaar85a20022019-12-21 18:25:54 +01001231 // message history
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001232 for (;;)
1233 if (delete_first_msg() == FAIL)
1234 break;
1235
Bram Moolenaar655da312016-05-28 22:22:34 +02001236# ifdef FEAT_JOB_CHANNEL
1237 channel_free_all();
Bram Moolenaar655da312016-05-28 22:22:34 +02001238# endif
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001239# ifdef FEAT_TIMERS
Bram Moolenaar623e2632016-07-30 22:47:56 +02001240 timer_free_all();
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001241# endif
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001242# ifdef FEAT_EVAL
Bram Moolenaar85a20022019-12-21 18:25:54 +01001243 // must be after channel_free_all() with unrefs partials
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001244 eval_clear();
1245# endif
1246# ifdef FEAT_JOB_CHANNEL
Bram Moolenaar85a20022019-12-21 18:25:54 +01001247 // must be after eval_clear() with unrefs jobs
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001248 job_free_all();
1249# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001250
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001251 free_termoptions();
1252
Bram Moolenaar85a20022019-12-21 18:25:54 +01001253 // screenlines (can't display anything now!)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001254 free_screenlines();
1255
Bram Moolenaar82febc12019-06-10 14:48:59 +02001256# if defined(FEAT_SOUND)
1257 sound_free();
1258# endif
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001259# if defined(USE_XSMP)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001260 xsmp_close();
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001261# endif
1262# ifdef FEAT_GUI_GTK
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001263 gui_mch_free_all();
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001264# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001265 clear_hl_tables();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001266
1267 vim_free(IObuff);
1268 vim_free(NameBuff);
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001269# ifdef FEAT_QUICKFIX
1270 check_quickfix_busy();
1271# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001272}
1273#endif
1274
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275/*
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001276 * Copy "string" into newly allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 */
1278 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001279vim_strsave(char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280{
1281 char_u *p;
Bram Moolenaar964b3742019-05-24 18:54:09 +02001282 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283
Bram Moolenaar964b3742019-05-24 18:54:09 +02001284 len = STRLEN(string) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 p = alloc(len);
1286 if (p != NULL)
Bram Moolenaar964b3742019-05-24 18:54:09 +02001287 mch_memmove(p, string, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001288 return p;
1289}
1290
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001291/*
1292 * Copy up to "len" bytes of "string" into newly allocated memory and
1293 * terminate with a NUL.
1294 * The allocated memory always has size "len + 1", also when "string" is
1295 * shorter.
1296 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001298vim_strnsave(char_u *string, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299{
1300 char_u *p;
1301
Bram Moolenaar51e14382019-05-25 20:21:28 +02001302 p = alloc(len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 if (p != NULL)
1304 {
1305 STRNCPY(p, string, len);
1306 p[len] = NUL;
1307 }
1308 return p;
1309}
1310
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01001312 * Copy "p[len]" into allocated memory, ignoring NUL characters.
1313 * Returns NULL when out of memory.
1314 */
1315 char_u *
Bram Moolenaar964b3742019-05-24 18:54:09 +02001316vim_memsave(char_u *p, size_t len)
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01001317{
Bram Moolenaar964b3742019-05-24 18:54:09 +02001318 char_u *ret = alloc(len);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01001319
1320 if (ret != NULL)
Bram Moolenaar964b3742019-05-24 18:54:09 +02001321 mch_memmove(ret, p, len);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01001322 return ret;
1323}
1324
1325/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1327 * by a backslash.
1328 */
1329 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001330vim_strsave_escaped(char_u *string, char_u *esc_chars)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331{
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001332 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333}
1334
1335/*
1336 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1337 * characters where rem_backslash() would remove the backslash.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001338 * Escape the characters with "cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 */
1340 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001341vim_strsave_escaped_ext(
1342 char_u *string,
1343 char_u *esc_chars,
1344 int cc,
1345 int bsl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346{
1347 char_u *p;
1348 char_u *p2;
1349 char_u *escaped_string;
1350 unsigned length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352
1353 /*
1354 * First count the number of backslashes required.
1355 * Then allocate the memory and insert them.
1356 */
Bram Moolenaar85a20022019-12-21 18:25:54 +01001357 length = 1; // count the trailing NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 for (p = string; *p; p++)
1359 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001360 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001362 length += l; // count a multibyte char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 p += l - 1;
1364 continue;
1365 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
Bram Moolenaar85a20022019-12-21 18:25:54 +01001367 ++length; // count a backslash
1368 ++length; // count an ordinary char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 }
1370 escaped_string = alloc(length);
1371 if (escaped_string != NULL)
1372 {
1373 p2 = escaped_string;
1374 for (p = string; *p; p++)
1375 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001376 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 {
1378 mch_memmove(p2, p, (size_t)l);
1379 p2 += l;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001380 p += l - 1; // skip multibyte char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 continue;
1382 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001384 *p2++ = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 *p2++ = *p;
1386 }
1387 *p2 = NUL;
1388 }
1389 return escaped_string;
1390}
1391
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001392/*
1393 * Return TRUE when 'shell' has "csh" in the tail.
1394 */
1395 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001396csh_like_shell(void)
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001397{
1398 return (strstr((char *)gettail(p_sh), "csh") != NULL);
1399}
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001400
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001401/*
1402 * Escape "string" for use as a shell argument with system().
Bram Moolenaar21160b92009-11-11 15:56:10 +00001403 * This uses single quotes, except when we know we need to use double quotes
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001404 * (MS-DOS and MS-Windows without 'shellslash' set).
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001405 * Escape a newline, depending on the 'shell' option.
1406 * When "do_special" is TRUE also replace "!", "%", "#" and things starting
1407 * with "<" like "<cfile>".
Bram Moolenaar26df0922014-02-23 23:39:13 +01001408 * When "do_newline" is FALSE do not escape newline unless it is csh shell.
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001409 * Returns the result in allocated memory, NULL if we have run out.
1410 */
1411 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001412vim_strsave_shellescape(char_u *string, int do_special, int do_newline)
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001413{
1414 unsigned length;
1415 char_u *p;
1416 char_u *d;
1417 char_u *escaped_string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001418 int l;
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001419 int csh_like;
1420
Bram Moolenaar85a20022019-12-21 18:25:54 +01001421 // Only csh and similar shells expand '!' within single quotes. For sh and
1422 // the like we must not put a backslash before it, it will be taken
1423 // literally. If do_special is set the '!' will be escaped twice.
1424 // Csh also needs to have "\n" escaped twice when do_special is set.
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001425 csh_like = csh_like_shell();
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001426
Bram Moolenaar85a20022019-12-21 18:25:54 +01001427 // First count the number of extra bytes required.
1428 length = (unsigned)STRLEN(string) + 3; // two quotes and a trailing NUL
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001429 for (p = string; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001430 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001431# ifdef MSWIN
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001432 if (!p_ssl)
1433 {
1434 if (*p == '"')
Bram Moolenaar85a20022019-12-21 18:25:54 +01001435 ++length; // " -> ""
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001436 }
1437 else
1438# endif
1439 if (*p == '\'')
Bram Moolenaar85a20022019-12-21 18:25:54 +01001440 length += 3; // ' => '\''
Bram Moolenaar26df0922014-02-23 23:39:13 +01001441 if ((*p == '\n' && (csh_like || do_newline))
1442 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001443 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001444 ++length; // insert backslash
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001445 if (csh_like && do_special)
Bram Moolenaar85a20022019-12-21 18:25:54 +01001446 ++length; // insert backslash
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001447 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001448 if (do_special && find_cmdline_var(p, &l) >= 0)
1449 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001450 ++length; // insert backslash
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001451 p += l - 1;
1452 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001453 }
1454
Bram Moolenaar85a20022019-12-21 18:25:54 +01001455 // Allocate memory for the result and fill it.
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001456 escaped_string = alloc(length);
1457 if (escaped_string != NULL)
1458 {
1459 d = escaped_string;
1460
Bram Moolenaar85a20022019-12-21 18:25:54 +01001461 // add opening quote
Bram Moolenaar4f974752019-02-17 17:44:42 +01001462# ifdef MSWIN
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001463 if (!p_ssl)
1464 *d++ = '"';
1465 else
1466# endif
1467 *d++ = '\'';
1468
1469 for (p = string; *p != NUL; )
1470 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001471# ifdef MSWIN
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001472 if (!p_ssl)
1473 {
1474 if (*p == '"')
1475 {
1476 *d++ = '"';
1477 *d++ = '"';
1478 ++p;
1479 continue;
1480 }
1481 }
1482 else
1483# endif
1484 if (*p == '\'')
1485 {
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001486 *d++ = '\'';
1487 *d++ = '\\';
1488 *d++ = '\'';
1489 *d++ = '\'';
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001490 ++p;
1491 continue;
1492 }
Bram Moolenaar26df0922014-02-23 23:39:13 +01001493 if ((*p == '\n' && (csh_like || do_newline))
1494 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001495 {
1496 *d++ = '\\';
1497 if (csh_like && do_special)
1498 *d++ = '\\';
1499 *d++ = *p++;
1500 continue;
1501 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001502 if (do_special && find_cmdline_var(p, &l) >= 0)
1503 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001504 *d++ = '\\'; // insert backslash
1505 while (--l >= 0) // copy the var
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001506 *d++ = *p++;
Bram Moolenaar099d01d2009-11-25 16:14:45 +00001507 continue;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001508 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001509
1510 MB_COPY_CHAR(p, d);
1511 }
1512
Bram Moolenaar85a20022019-12-21 18:25:54 +01001513 // add terminating quote and finish with a NUL
Bram Moolenaar4f974752019-02-17 17:44:42 +01001514# ifdef MSWIN
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001515 if (!p_ssl)
1516 *d++ = '"';
1517 else
1518# endif
1519 *d++ = '\'';
1520 *d = NUL;
1521 }
1522
1523 return escaped_string;
1524}
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001525
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526/*
1527 * Like vim_strsave(), but make all characters uppercase.
1528 * This uses ASCII lower-to-upper case translation, language independent.
1529 */
1530 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001531vim_strsave_up(char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532{
1533 char_u *p1;
1534
1535 p1 = vim_strsave(string);
1536 vim_strup(p1);
1537 return p1;
1538}
1539
1540/*
1541 * Like vim_strnsave(), but make all characters uppercase.
1542 * This uses ASCII lower-to-upper case translation, language independent.
1543 */
1544 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001545vim_strnsave_up(char_u *string, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546{
1547 char_u *p1;
1548
1549 p1 = vim_strnsave(string, len);
1550 vim_strup(p1);
1551 return p1;
1552}
1553
1554/*
1555 * ASCII lower-to-upper case translation, language independent.
1556 */
1557 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001558vim_strup(
1559 char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560{
1561 char_u *p2;
1562 int c;
1563
1564 if (p != NULL)
1565 {
1566 p2 = p;
1567 while ((c = *p2) != NUL)
1568#ifdef EBCDIC
1569 *p2++ = isalpha(c) ? toupper(c) : c;
1570#else
1571 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1572#endif
1573 }
1574}
1575
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001576#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001577/*
1578 * Make string "s" all upper-case and return it in allocated memory.
1579 * Handles multi-byte characters as well as possible.
1580 * Returns NULL when out of memory.
1581 */
1582 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001583strup_save(char_u *orig)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001584{
1585 char_u *p;
1586 char_u *res;
1587
1588 res = p = vim_strsave(orig);
1589
1590 if (res != NULL)
1591 while (*p != NUL)
1592 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001593 int l;
1594
1595 if (enc_utf8)
1596 {
1597 int c, uc;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001598 int newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001599 char_u *s;
1600
1601 c = utf_ptr2char(p);
Bram Moolenaare6640ad2017-12-22 21:06:56 +01001602 l = utf_ptr2len(p);
1603 if (c == 0)
1604 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001605 // overlong sequence, use only the first byte
Bram Moolenaare6640ad2017-12-22 21:06:56 +01001606 c = *p;
1607 l = 1;
1608 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001609 uc = utf_toupper(c);
1610
Bram Moolenaar85a20022019-12-21 18:25:54 +01001611 // Reallocate string when byte count changes. This is rare,
1612 // thus it's OK to do another malloc()/free().
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001613 newl = utf_char2len(uc);
1614 if (newl != l)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001615 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02001616 s = alloc(STRLEN(res) + 1 + newl - l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001617 if (s == NULL)
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001618 {
1619 vim_free(res);
1620 return NULL;
1621 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001622 mch_memmove(s, res, p - res);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001623 STRCPY(s + (p - res) + newl, p + l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001624 p = s + (p - res);
1625 vim_free(res);
1626 res = s;
1627 }
1628
1629 utf_char2bytes(uc, p);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001630 p += newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001631 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001632 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar85a20022019-12-21 18:25:54 +01001633 p += l; // skip multi-byte character
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001634 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001635 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001636 *p = TOUPPER_LOC(*p); // note that toupper() can be a macro
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001637 p++;
1638 }
1639 }
1640
1641 return res;
1642}
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001643
1644/*
1645 * Make string "s" all lower-case and return it in allocated memory.
1646 * Handles multi-byte characters as well as possible.
1647 * Returns NULL when out of memory.
1648 */
1649 char_u *
1650strlow_save(char_u *orig)
1651{
1652 char_u *p;
1653 char_u *res;
1654
1655 res = p = vim_strsave(orig);
1656
1657 if (res != NULL)
1658 while (*p != NUL)
1659 {
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001660 int l;
1661
1662 if (enc_utf8)
1663 {
1664 int c, lc;
1665 int newl;
1666 char_u *s;
1667
1668 c = utf_ptr2char(p);
Bram Moolenaare6640ad2017-12-22 21:06:56 +01001669 l = utf_ptr2len(p);
1670 if (c == 0)
1671 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001672 // overlong sequence, use only the first byte
Bram Moolenaare6640ad2017-12-22 21:06:56 +01001673 c = *p;
1674 l = 1;
1675 }
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001676 lc = utf_tolower(c);
1677
Bram Moolenaar85a20022019-12-21 18:25:54 +01001678 // Reallocate string when byte count changes. This is rare,
1679 // thus it's OK to do another malloc()/free().
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001680 newl = utf_char2len(lc);
1681 if (newl != l)
1682 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02001683 s = alloc(STRLEN(res) + 1 + newl - l);
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001684 if (s == NULL)
1685 {
1686 vim_free(res);
1687 return NULL;
1688 }
1689 mch_memmove(s, res, p - res);
1690 STRCPY(s + (p - res) + newl, p + l);
1691 p = s + (p - res);
1692 vim_free(res);
1693 res = s;
1694 }
1695
1696 utf_char2bytes(lc, p);
1697 p += newl;
1698 }
1699 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar85a20022019-12-21 18:25:54 +01001700 p += l; // skip multi-byte character
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001701 else
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001702 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01001703 *p = TOLOWER_LOC(*p); // note that tolower() can be a macro
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001704 p++;
1705 }
1706 }
1707
1708 return res;
1709}
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001710#endif
1711
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 * delete spaces at the end of a string
1714 */
1715 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001716del_trailing_spaces(char_u *ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717{
1718 char_u *q;
1719
1720 q = ptr + STRLEN(ptr);
Bram Moolenaar1c465442017-03-12 20:10:05 +01001721 while (--q > ptr && VIM_ISWHITE(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 *q = NUL;
1723}
1724
1725/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001726 * Like strncpy(), but always terminate the result with one NUL.
Bram Moolenaard042c562005-06-30 22:04:15 +00001727 * "to" must be "len + 1" long!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728 */
1729 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001730vim_strncpy(char_u *to, char_u *from, size_t len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001732 STRNCPY(to, from, len);
1733 to[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734}
1735
1736/*
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001737 * Like strcat(), but make sure the result fits in "tosize" bytes and is
Bram Moolenaar45600ce2017-01-27 21:54:07 +01001738 * always NUL terminated. "from" and "to" may overlap.
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001739 */
1740 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001741vim_strcat(char_u *to, char_u *from, size_t tosize)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001742{
1743 size_t tolen = STRLEN(to);
1744 size_t fromlen = STRLEN(from);
1745
1746 if (tolen + fromlen + 1 > tosize)
1747 {
1748 mch_memmove(to + tolen, from, tosize - tolen - 1);
1749 to[tosize - 1] = NUL;
1750 }
1751 else
Bram Moolenaar45600ce2017-01-27 21:54:07 +01001752 mch_memmove(to + tolen, from, fromlen + 1);
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001753}
1754
1755/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 * Isolate one part of a string option where parts are separated with
1757 * "sep_chars".
Bram Moolenaar83bab712005-08-01 21:58:57 +00001758 * The part is copied into "buf[maxlen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 * "*option" is advanced to the next part.
1760 * The length is returned.
1761 */
1762 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001763copy_option_part(
1764 char_u **option,
1765 char_u *buf,
1766 int maxlen,
1767 char *sep_chars)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768{
1769 int len = 0;
1770 char_u *p = *option;
1771
Bram Moolenaar85a20022019-12-21 18:25:54 +01001772 // skip '.' at start of option part, for 'suffixes'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 if (*p == '.')
1774 buf[len++] = *p++;
1775 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1776 {
1777 /*
1778 * Skip backslash before a separator character and space.
1779 */
1780 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1781 ++p;
1782 if (len < maxlen - 1)
1783 buf[len++] = *p;
1784 ++p;
1785 }
1786 buf[len] = NUL;
1787
Bram Moolenaar85a20022019-12-21 18:25:54 +01001788 if (*p != NUL && *p != ',') // skip non-standard separator
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 ++p;
Bram Moolenaar85a20022019-12-21 18:25:54 +01001790 p = skip_to_option_part(p); // p points to next file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001791
1792 *option = p;
1793 return len;
1794}
1795
1796/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001797 * Replacement for free() that ignores NULL pointers.
1798 * Also skip free() when exiting for sure, this helps when we caught a deadly
1799 * signal that was caused by a crash in free().
Bram Moolenaard23a8232018-02-10 18:45:26 +01001800 * If you want to set NULL after calling this function, you should use
1801 * VIM_CLEAR() instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 */
1803 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001804vim_free(void *x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805{
Bram Moolenaar4770d092006-01-12 23:22:24 +00001806 if (x != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 {
1808#ifdef MEM_PROFILE
1809 mem_pre_free(&x);
1810#endif
1811 free(x);
1812 }
1813}
1814
1815#ifndef HAVE_MEMSET
1816 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001817vim_memset(void *ptr, int c, size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818{
1819 char *p = ptr;
1820
1821 while (size-- > 0)
1822 *p++ = c;
1823 return ptr;
1824}
1825#endif
1826
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827#if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1828/*
1829 * Compare two strings, ignoring case, using current locale.
1830 * Doesn't work for multi-byte characters.
1831 * return 0 for match, < 0 for smaller, > 0 for bigger
1832 */
1833 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001834vim_stricmp(char *s1, char *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835{
1836 int i;
1837
1838 for (;;)
1839 {
1840 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1841 if (i != 0)
Bram Moolenaar85a20022019-12-21 18:25:54 +01001842 return i; // this character different
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 if (*s1 == NUL)
Bram Moolenaar85a20022019-12-21 18:25:54 +01001844 break; // strings match until NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 ++s1;
1846 ++s2;
1847 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01001848 return 0; // strings match
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849}
1850#endif
1851
1852#if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1853/*
1854 * Compare two strings, for length "len", ignoring case, using current locale.
1855 * Doesn't work for multi-byte characters.
1856 * return 0 for match, < 0 for smaller, > 0 for bigger
1857 */
1858 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001859vim_strnicmp(char *s1, char *s2, size_t len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860{
1861 int i;
1862
1863 while (len > 0)
1864 {
1865 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1866 if (i != 0)
Bram Moolenaar85a20022019-12-21 18:25:54 +01001867 return i; // this character different
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 if (*s1 == NUL)
Bram Moolenaar85a20022019-12-21 18:25:54 +01001869 break; // strings match until NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870 ++s1;
1871 ++s2;
1872 --len;
1873 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01001874 return 0; // strings match
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875}
1876#endif
1877
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878/*
1879 * Version of strchr() and strrchr() that handle unsigned char strings
Bram Moolenaar05159a02005-02-26 23:04:13 +00001880 * with characters from 128 to 255 correctly. It also doesn't return a
1881 * pointer to the NUL at the end of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 */
1883 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001884vim_strchr(char_u *string, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885{
1886 char_u *p;
1887 int b;
1888
1889 p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 if (enc_utf8 && c >= 0x80)
1891 {
1892 while (*p != NUL)
1893 {
Bram Moolenaarace95982017-03-29 17:30:27 +02001894 int l = utfc_ptr2len(p);
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001895
Bram Moolenaar85a20022019-12-21 18:25:54 +01001896 // Avoid matching an illegal byte here.
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001897 if (utf_ptr2char(p) == c && l > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898 return p;
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001899 p += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900 }
1901 return NULL;
1902 }
1903 if (enc_dbcs != 0 && c > 255)
1904 {
1905 int n2 = c & 0xff;
1906
1907 c = ((unsigned)c >> 8) & 0xff;
1908 while ((b = *p) != NUL)
1909 {
1910 if (b == c && p[1] == n2)
1911 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001912 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 }
1914 return NULL;
1915 }
1916 if (has_mbyte)
1917 {
1918 while ((b = *p) != NUL)
1919 {
1920 if (b == c)
1921 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001922 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 }
1924 return NULL;
1925 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 while ((b = *p) != NUL)
1927 {
1928 if (b == c)
1929 return p;
1930 ++p;
1931 }
1932 return NULL;
1933}
1934
1935/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001936 * Version of strchr() that only works for bytes and handles unsigned char
1937 * strings with characters above 128 correctly. It also doesn't return a
1938 * pointer to the NUL at the end of the string.
1939 */
1940 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001941vim_strbyte(char_u *string, int c)
Bram Moolenaar05159a02005-02-26 23:04:13 +00001942{
1943 char_u *p = string;
1944
1945 while (*p != NUL)
1946 {
1947 if (*p == c)
1948 return p;
1949 ++p;
1950 }
1951 return NULL;
1952}
1953
1954/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 * Search for last occurrence of "c" in "string".
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001956 * Return NULL if not found.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001957 * Does not handle multi-byte char for "c"!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958 */
1959 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001960vim_strrchr(char_u *string, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961{
1962 char_u *retval = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001963 char_u *p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964
Bram Moolenaar05159a02005-02-26 23:04:13 +00001965 while (*p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00001967 if (*p == c)
1968 retval = p;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001969 MB_PTR_ADV(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970 }
1971 return retval;
1972}
1973
1974/*
1975 * Vim's version of strpbrk(), in case it's missing.
1976 * Don't generate a prototype for this, causes problems when it's not used.
1977 */
1978#ifndef PROTO
1979# ifndef HAVE_STRPBRK
1980# ifdef vim_strpbrk
1981# undef vim_strpbrk
1982# endif
1983 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001984vim_strpbrk(char_u *s, char_u *charset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985{
1986 while (*s)
1987 {
1988 if (vim_strchr(charset, *s) != NULL)
1989 return s;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001990 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 }
1992 return NULL;
1993}
1994# endif
1995#endif
1996
1997/*
1998 * Vim has its own isspace() function, because on some machines isspace()
1999 * can't handle characters above 128.
2000 */
2001 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002002vim_isspace(int x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003{
2004 return ((x >= 9 && x <= 13) || x == ' ');
2005}
2006
2007/************************************************************************
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002008 * Functions for handling growing arrays.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 */
2010
2011/*
2012 * Clear an allocated growing array.
2013 */
2014 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002015ga_clear(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016{
2017 vim_free(gap->ga_data);
2018 ga_init(gap);
2019}
2020
2021/*
2022 * Clear a growing array that contains a list of strings.
2023 */
2024 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002025ga_clear_strings(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026{
2027 int i;
2028
2029 for (i = 0; i < gap->ga_len; ++i)
2030 vim_free(((char_u **)(gap->ga_data))[i]);
2031 ga_clear(gap);
2032}
2033
2034/*
2035 * Initialize a growing array. Don't forget to set ga_itemsize and
2036 * ga_growsize! Or use ga_init2().
2037 */
2038 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002039ga_init(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040{
2041 gap->ga_data = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002042 gap->ga_maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043 gap->ga_len = 0;
2044}
2045
2046 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002047ga_init2(garray_T *gap, int itemsize, int growsize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048{
2049 ga_init(gap);
2050 gap->ga_itemsize = itemsize;
2051 gap->ga_growsize = growsize;
2052}
2053
2054/*
2055 * Make room in growing array "gap" for at least "n" items.
2056 * Return FAIL for failure, OK otherwise.
2057 */
2058 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002059ga_grow(garray_T *gap, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060{
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002061 size_t old_len;
2062 size_t new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 char_u *pp;
2064
Bram Moolenaar86b68352004-12-27 21:59:20 +00002065 if (gap->ga_maxlen - gap->ga_len < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 {
2067 if (n < gap->ga_growsize)
2068 n = gap->ga_growsize;
Bram Moolenaarc47ed442019-06-01 14:36:26 +02002069
2070 // A linear growth is very inefficient when the array grows big. This
2071 // is a compromise between allocating memory that won't be used and too
2072 // many copy operations. A factor of 1.5 seems reasonable.
2073 if (n < gap->ga_len / 2)
2074 n = gap->ga_len / 2;
2075
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002076 new_len = gap->ga_itemsize * (gap->ga_len + n);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002077 pp = vim_realloc(gap->ga_data, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 if (pp == NULL)
2079 return FAIL;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002080 old_len = gap->ga_itemsize * gap->ga_maxlen;
2081 vim_memset(pp + old_len, 0, new_len - old_len);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002082 gap->ga_maxlen = gap->ga_len + n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 gap->ga_data = pp;
2084 }
2085 return OK;
2086}
2087
Bram Moolenaar113e1072019-01-20 15:30:40 +01002088#if defined(FEAT_EVAL) || defined(FEAT_SEARCHPATH) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089/*
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002090 * For a growing array that contains a list of strings: concatenate all the
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002091 * strings with a separating "sep".
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002092 * Returns NULL when out of memory.
2093 */
2094 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002095ga_concat_strings(garray_T *gap, char *sep)
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002096{
2097 int i;
2098 int len = 0;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002099 int sep_len = (int)STRLEN(sep);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002100 char_u *s;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002101 char_u *p;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002102
2103 for (i = 0; i < gap->ga_len; ++i)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002104 len += (int)STRLEN(((char_u **)(gap->ga_data))[i]) + sep_len;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002105
2106 s = alloc(len + 1);
2107 if (s != NULL)
2108 {
2109 *s = NUL;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002110 p = s;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002111 for (i = 0; i < gap->ga_len; ++i)
2112 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002113 if (p != s)
2114 {
2115 STRCPY(p, sep);
2116 p += sep_len;
2117 }
2118 STRCPY(p, ((char_u **)(gap->ga_data))[i]);
2119 p += STRLEN(p);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002120 }
2121 }
2122 return s;
2123}
Bram Moolenaar113e1072019-01-20 15:30:40 +01002124#endif
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002125
Bram Moolenaar5a66dfb2017-03-01 20:40:39 +01002126#if defined(FEAT_VIMINFO) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002127/*
2128 * Make a copy of string "p" and add it to "gap".
2129 * When out of memory nothing changes.
2130 */
2131 void
2132ga_add_string(garray_T *gap, char_u *p)
2133{
2134 char_u *cp = vim_strsave(p);
2135
2136 if (cp != NULL)
2137 {
2138 if (ga_grow(gap, 1) == OK)
2139 ((char_u **)(gap->ga_data))[gap->ga_len++] = cp;
2140 else
2141 vim_free(cp);
2142 }
2143}
2144#endif
2145
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002146/*
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002147 * Concatenate a string to a growarray which contains bytes.
Bram Moolenaar43345542015-11-29 17:35:35 +01002148 * When "s" is NULL does not do anything.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 * Note: Does NOT copy the NUL at the end!
2150 */
2151 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002152ga_concat(garray_T *gap, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153{
Bram Moolenaar43345542015-11-29 17:35:35 +01002154 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155
Bram Moolenaar478af672017-04-10 22:22:42 +02002156 if (s == NULL || *s == NUL)
Bram Moolenaar43345542015-11-29 17:35:35 +01002157 return;
2158 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 if (ga_grow(gap, len) == OK)
2160 {
2161 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
2162 gap->ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 }
2164}
2165
2166/*
2167 * Append one byte to a growarray which contains bytes.
2168 */
2169 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002170ga_append(garray_T *gap, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171{
2172 if (ga_grow(gap, 1) == OK)
2173 {
2174 *((char *)gap->ga_data + gap->ga_len) = c;
2175 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176 }
2177}
2178
Bram Moolenaar4f974752019-02-17 17:44:42 +01002179#if (defined(UNIX) && !defined(USE_SYSTEM)) || defined(MSWIN) \
Bram Moolenaar597a4222014-06-25 14:39:50 +02002180 || defined(PROTO)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002181/*
2182 * Append the text in "gap" below the cursor line and clear "gap".
2183 */
2184 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002185append_ga_line(garray_T *gap)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002186{
Bram Moolenaar85a20022019-12-21 18:25:54 +01002187 // Remove trailing CR.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002188 if (gap->ga_len > 0
2189 && !curbuf->b_p_bin
2190 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
2191 --gap->ga_len;
2192 ga_append(gap, NUL);
2193 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
2194 gap->ga_len = 0;
2195}
2196#endif
2197
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198/************************************************************************
2199 * functions that use lookup tables for various things, generally to do with
2200 * special key codes.
2201 */
2202
2203/*
2204 * Some useful tables.
2205 */
2206
2207static struct modmasktable
2208{
Bram Moolenaar85a20022019-12-21 18:25:54 +01002209 short mod_mask; // Bit-mask for particular key modifier
2210 short mod_flag; // Bit(s) for particular key modifier
2211 char_u name; // Single letter name of modifier
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212} mod_mask_table[] =
2213{
2214 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002215 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
2217 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
2218 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
2219 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
2220 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
Bram Moolenaard0573012017-10-28 21:11:06 +02002221#ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
2223#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +01002224 // 'A' must be the last one
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
2226 {0, 0, NUL}
Bram Moolenaar85a20022019-12-21 18:25:54 +01002227 // NOTE: when adding an entry, update MAX_KEY_NAME_LEN!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228};
2229
2230/*
2231 * Shifted key terminal codes and their unshifted equivalent.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002232 * Don't add mouse codes here, they are handled separately!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 */
2234#define MOD_KEYS_ENTRY_SIZE 5
2235
2236static char_u modifier_keys_table[] =
2237{
Bram Moolenaar85a20022019-12-21 18:25:54 +01002238// mod mask with modifier without modifier
2239 MOD_MASK_SHIFT, '&', '9', '@', '1', // begin
2240 MOD_MASK_SHIFT, '&', '0', '@', '2', // cancel
2241 MOD_MASK_SHIFT, '*', '1', '@', '4', // command
2242 MOD_MASK_SHIFT, '*', '2', '@', '5', // copy
2243 MOD_MASK_SHIFT, '*', '3', '@', '6', // create
2244 MOD_MASK_SHIFT, '*', '4', 'k', 'D', // delete char
2245 MOD_MASK_SHIFT, '*', '5', 'k', 'L', // delete line
2246 MOD_MASK_SHIFT, '*', '7', '@', '7', // end
2247 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', // end
2248 MOD_MASK_SHIFT, '*', '9', '@', '9', // exit
2249 MOD_MASK_SHIFT, '*', '0', '@', '0', // find
2250 MOD_MASK_SHIFT, '#', '1', '%', '1', // help
2251 MOD_MASK_SHIFT, '#', '2', 'k', 'h', // home
2252 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', // home
2253 MOD_MASK_SHIFT, '#', '3', 'k', 'I', // insert
2254 MOD_MASK_SHIFT, '#', '4', 'k', 'l', // left arrow
2255 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', // left arrow
2256 MOD_MASK_SHIFT, '%', 'a', '%', '3', // message
2257 MOD_MASK_SHIFT, '%', 'b', '%', '4', // move
2258 MOD_MASK_SHIFT, '%', 'c', '%', '5', // next
2259 MOD_MASK_SHIFT, '%', 'd', '%', '7', // options
2260 MOD_MASK_SHIFT, '%', 'e', '%', '8', // previous
2261 MOD_MASK_SHIFT, '%', 'f', '%', '9', // print
2262 MOD_MASK_SHIFT, '%', 'g', '%', '0', // redo
2263 MOD_MASK_SHIFT, '%', 'h', '&', '3', // replace
2264 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', // right arr.
2265 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', // right arr.
2266 MOD_MASK_SHIFT, '%', 'j', '&', '5', // resume
2267 MOD_MASK_SHIFT, '!', '1', '&', '6', // save
2268 MOD_MASK_SHIFT, '!', '2', '&', '7', // suspend
2269 MOD_MASK_SHIFT, '!', '3', '&', '8', // undo
2270 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', // up arrow
2271 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', // down arrow
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272
Bram Moolenaar85a20022019-12-21 18:25:54 +01002273 // vt100 F1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2275 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2276 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2277 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2278
Bram Moolenaar85a20022019-12-21 18:25:54 +01002279 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', // F1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2281 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2282 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2283 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2284 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2285 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2286 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2287 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
Bram Moolenaar85a20022019-12-21 18:25:54 +01002288 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', // F10
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289
2290 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2291 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2292 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2293 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2294 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2295 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2296 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2297 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2298 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2299 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2300
2301 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2302 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2303 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2304 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2305 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2306 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2307 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2308 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2309 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2310 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2311
2312 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2313 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2314 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2315 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2316 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2317 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2318 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2319
Bram Moolenaar85a20022019-12-21 18:25:54 +01002320 // TAB pseudo code
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2322
2323 NUL
2324};
2325
2326static struct key_name_entry
2327{
Bram Moolenaar85a20022019-12-21 18:25:54 +01002328 int key; // Special key code or ascii value
2329 char_u *name; // Name of key
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330} key_names_table[] =
2331{
2332 {' ', (char_u *)"Space"},
2333 {TAB, (char_u *)"Tab"},
2334 {K_TAB, (char_u *)"Tab"},
2335 {NL, (char_u *)"NL"},
Bram Moolenaar85a20022019-12-21 18:25:54 +01002336 {NL, (char_u *)"NewLine"}, // Alternative name
2337 {NL, (char_u *)"LineFeed"}, // Alternative name
2338 {NL, (char_u *)"LF"}, // Alternative name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 {CAR, (char_u *)"CR"},
Bram Moolenaar85a20022019-12-21 18:25:54 +01002340 {CAR, (char_u *)"Return"}, // Alternative name
2341 {CAR, (char_u *)"Enter"}, // Alternative name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 {K_BS, (char_u *)"BS"},
Bram Moolenaar85a20022019-12-21 18:25:54 +01002343 {K_BS, (char_u *)"BackSpace"}, // Alternative name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 {ESC, (char_u *)"Esc"},
2345 {CSI, (char_u *)"CSI"},
2346 {K_CSI, (char_u *)"xCSI"},
2347 {'|', (char_u *)"Bar"},
2348 {'\\', (char_u *)"Bslash"},
2349 {K_DEL, (char_u *)"Del"},
Bram Moolenaar85a20022019-12-21 18:25:54 +01002350 {K_DEL, (char_u *)"Delete"}, // Alternative name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 {K_KDEL, (char_u *)"kDel"},
2352 {K_UP, (char_u *)"Up"},
2353 {K_DOWN, (char_u *)"Down"},
2354 {K_LEFT, (char_u *)"Left"},
2355 {K_RIGHT, (char_u *)"Right"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002356 {K_XUP, (char_u *)"xUp"},
2357 {K_XDOWN, (char_u *)"xDown"},
2358 {K_XLEFT, (char_u *)"xLeft"},
2359 {K_XRIGHT, (char_u *)"xRight"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01002360 {K_PS, (char_u *)"PasteStart"},
2361 {K_PE, (char_u *)"PasteEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362
2363 {K_F1, (char_u *)"F1"},
2364 {K_F2, (char_u *)"F2"},
2365 {K_F3, (char_u *)"F3"},
2366 {K_F4, (char_u *)"F4"},
2367 {K_F5, (char_u *)"F5"},
2368 {K_F6, (char_u *)"F6"},
2369 {K_F7, (char_u *)"F7"},
2370 {K_F8, (char_u *)"F8"},
2371 {K_F9, (char_u *)"F9"},
2372 {K_F10, (char_u *)"F10"},
2373
2374 {K_F11, (char_u *)"F11"},
2375 {K_F12, (char_u *)"F12"},
2376 {K_F13, (char_u *)"F13"},
2377 {K_F14, (char_u *)"F14"},
2378 {K_F15, (char_u *)"F15"},
2379 {K_F16, (char_u *)"F16"},
2380 {K_F17, (char_u *)"F17"},
2381 {K_F18, (char_u *)"F18"},
2382 {K_F19, (char_u *)"F19"},
2383 {K_F20, (char_u *)"F20"},
2384
2385 {K_F21, (char_u *)"F21"},
2386 {K_F22, (char_u *)"F22"},
2387 {K_F23, (char_u *)"F23"},
2388 {K_F24, (char_u *)"F24"},
2389 {K_F25, (char_u *)"F25"},
2390 {K_F26, (char_u *)"F26"},
2391 {K_F27, (char_u *)"F27"},
2392 {K_F28, (char_u *)"F28"},
2393 {K_F29, (char_u *)"F29"},
2394 {K_F30, (char_u *)"F30"},
2395
2396 {K_F31, (char_u *)"F31"},
2397 {K_F32, (char_u *)"F32"},
2398 {K_F33, (char_u *)"F33"},
2399 {K_F34, (char_u *)"F34"},
2400 {K_F35, (char_u *)"F35"},
2401 {K_F36, (char_u *)"F36"},
2402 {K_F37, (char_u *)"F37"},
2403
2404 {K_XF1, (char_u *)"xF1"},
2405 {K_XF2, (char_u *)"xF2"},
2406 {K_XF3, (char_u *)"xF3"},
2407 {K_XF4, (char_u *)"xF4"},
2408
2409 {K_HELP, (char_u *)"Help"},
2410 {K_UNDO, (char_u *)"Undo"},
2411 {K_INS, (char_u *)"Insert"},
Bram Moolenaar85a20022019-12-21 18:25:54 +01002412 {K_INS, (char_u *)"Ins"}, // Alternative name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 {K_KINS, (char_u *)"kInsert"},
2414 {K_HOME, (char_u *)"Home"},
2415 {K_KHOME, (char_u *)"kHome"},
2416 {K_XHOME, (char_u *)"xHome"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002417 {K_ZHOME, (char_u *)"zHome"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 {K_END, (char_u *)"End"},
2419 {K_KEND, (char_u *)"kEnd"},
2420 {K_XEND, (char_u *)"xEnd"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002421 {K_ZEND, (char_u *)"zEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 {K_PAGEUP, (char_u *)"PageUp"},
2423 {K_PAGEDOWN, (char_u *)"PageDown"},
2424 {K_KPAGEUP, (char_u *)"kPageUp"},
2425 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2426
2427 {K_KPLUS, (char_u *)"kPlus"},
2428 {K_KMINUS, (char_u *)"kMinus"},
2429 {K_KDIVIDE, (char_u *)"kDivide"},
2430 {K_KMULTIPLY, (char_u *)"kMultiply"},
2431 {K_KENTER, (char_u *)"kEnter"},
2432 {K_KPOINT, (char_u *)"kPoint"},
2433
2434 {K_K0, (char_u *)"k0"},
2435 {K_K1, (char_u *)"k1"},
2436 {K_K2, (char_u *)"k2"},
2437 {K_K3, (char_u *)"k3"},
2438 {K_K4, (char_u *)"k4"},
2439 {K_K5, (char_u *)"k5"},
2440 {K_K6, (char_u *)"k6"},
2441 {K_K7, (char_u *)"k7"},
2442 {K_K8, (char_u *)"k8"},
2443 {K_K9, (char_u *)"k9"},
2444
2445 {'<', (char_u *)"lt"},
2446
2447 {K_MOUSE, (char_u *)"Mouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002448#ifdef FEAT_MOUSE_NET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002450#endif
2451#ifdef FEAT_MOUSE_DEC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452 {K_DEC_MOUSE, (char_u *)"DecMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002453#endif
2454#ifdef FEAT_MOUSE_JSB
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002456#endif
2457#ifdef FEAT_MOUSE_PTERM
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002459#endif
2460#ifdef FEAT_MOUSE_URXVT
2461 {K_URXVT_MOUSE, (char_u *)"UrxvtMouse"},
2462#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002463 {K_SGR_MOUSE, (char_u *)"SgrMouse"},
Bram Moolenaara529ce02017-06-22 22:37:57 +02002464 {K_SGR_MOUSERELEASE, (char_u *)"SgrMouseRelelase"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2466 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2467 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2468 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2469 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
Bram Moolenaar51b0f372017-11-18 18:52:04 +01002470 {K_MOUSEMOVE, (char_u *)"MouseMove"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2472 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2473 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2474 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2475 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2476 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002477 {K_MOUSEDOWN, (char_u *)"ScrollWheelUp"},
2478 {K_MOUSEUP, (char_u *)"ScrollWheelDown"},
2479 {K_MOUSELEFT, (char_u *)"ScrollWheelRight"},
2480 {K_MOUSERIGHT, (char_u *)"ScrollWheelLeft"},
Bram Moolenaar85a20022019-12-21 18:25:54 +01002481 {K_MOUSEDOWN, (char_u *)"MouseDown"}, // OBSOLETE: Use
2482 {K_MOUSEUP, (char_u *)"MouseUp"}, // ScrollWheelXXX instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 {K_X1MOUSE, (char_u *)"X1Mouse"},
2484 {K_X1DRAG, (char_u *)"X1Drag"},
2485 {K_X1RELEASE, (char_u *)"X1Release"},
2486 {K_X2MOUSE, (char_u *)"X2Mouse"},
2487 {K_X2DRAG, (char_u *)"X2Drag"},
2488 {K_X2RELEASE, (char_u *)"X2Release"},
2489 {K_DROP, (char_u *)"Drop"},
2490 {K_ZERO, (char_u *)"Nul"},
2491#ifdef FEAT_EVAL
2492 {K_SNR, (char_u *)"SNR"},
2493#endif
2494 {K_PLUG, (char_u *)"Plug"},
Bram Moolenaar1db60c42014-09-23 16:49:46 +02002495 {K_CURSORHOLD, (char_u *)"CursorHold"},
Bram Moolenaar2f106582019-05-08 21:59:25 +02002496 {K_IGNORE, (char_u *)"Ignore"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497 {0, NULL}
Bram Moolenaar85a20022019-12-21 18:25:54 +01002498 // NOTE: When adding a long name update MAX_KEY_NAME_LEN.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499};
2500
2501#define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2502
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503/*
2504 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2505 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2506 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002507 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002508name_to_mod_mask(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509{
2510 int i;
2511
2512 c = TOUPPER_ASC(c);
2513 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2514 if (c == mod_mask_table[i].name)
2515 return mod_mask_table[i].mod_flag;
2516 return 0;
2517}
2518
Bram Moolenaar071d4272004-06-13 20:20:40 +00002519/*
2520 * Check if if there is a special key code for "key" that includes the
2521 * modifiers specified.
2522 */
2523 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002524simplify_key(int key, int *modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525{
2526 int i;
2527 int key0;
2528 int key1;
2529
2530 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2531 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002532 // TAB is a special case
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2534 {
2535 *modifiers &= ~MOD_MASK_SHIFT;
2536 return K_S_TAB;
2537 }
2538 key0 = KEY2TERMCAP0(key);
2539 key1 = KEY2TERMCAP1(key);
2540 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2541 if (key0 == modifier_keys_table[i + 3]
2542 && key1 == modifier_keys_table[i + 4]
2543 && (*modifiers & modifier_keys_table[i]))
2544 {
2545 *modifiers &= ~modifier_keys_table[i];
2546 return TERMCAP2KEY(modifier_keys_table[i + 1],
2547 modifier_keys_table[i + 2]);
2548 }
2549 }
2550 return key;
2551}
2552
2553/*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002554 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002555 */
2556 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002557handle_x_keys(int key)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002558{
2559 switch (key)
2560 {
2561 case K_XUP: return K_UP;
2562 case K_XDOWN: return K_DOWN;
2563 case K_XLEFT: return K_LEFT;
2564 case K_XRIGHT: return K_RIGHT;
2565 case K_XHOME: return K_HOME;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002566 case K_ZHOME: return K_HOME;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002567 case K_XEND: return K_END;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002568 case K_ZEND: return K_END;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002569 case K_XF1: return K_F1;
2570 case K_XF2: return K_F2;
2571 case K_XF3: return K_F3;
2572 case K_XF4: return K_F4;
2573 case K_S_XF1: return K_S_F1;
2574 case K_S_XF2: return K_S_F2;
2575 case K_S_XF3: return K_S_F3;
2576 case K_S_XF4: return K_S_F4;
2577 }
2578 return key;
2579}
2580
2581/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 * Return a string which contains the name of the given key when the given
2583 * modifiers are down.
2584 */
2585 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002586get_special_key_name(int c, int modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587{
2588 static char_u string[MAX_KEY_NAME_LEN + 1];
2589
2590 int i, idx;
2591 int table_idx;
2592 char_u *s;
2593
2594 string[0] = '<';
2595 idx = 1;
2596
Bram Moolenaar85a20022019-12-21 18:25:54 +01002597 // Key that stands for a normal character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2599 c = KEY2TERMCAP1(c);
2600
2601 /*
2602 * Translate shifted special keys into unshifted keys and set modifier.
2603 * Same for CTRL and ALT modifiers.
2604 */
2605 if (IS_SPECIAL(c))
2606 {
2607 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2608 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2609 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2610 {
2611 modifiers |= modifier_keys_table[i];
2612 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2613 modifier_keys_table[i + 4]);
2614 break;
2615 }
2616 }
2617
Bram Moolenaar85a20022019-12-21 18:25:54 +01002618 // try to find the key in the special key table
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 table_idx = find_special_key_in_table(c);
2620
2621 /*
2622 * When not a known special key, and not a printable character, try to
2623 * extract modifiers.
2624 */
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002625 if (c > 0 && (*mb_char2len)(c) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626 {
2627 if (table_idx < 0
2628 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2629 && (c & 0x80))
2630 {
2631 c &= 0x7f;
2632 modifiers |= MOD_MASK_ALT;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002633 // try again, to find the un-alted key in the special key table
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634 table_idx = find_special_key_in_table(c);
2635 }
2636 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2637 {
2638#ifdef EBCDIC
2639 c = CtrlChar(c);
2640#else
2641 c += '@';
2642#endif
2643 modifiers |= MOD_MASK_CTRL;
2644 }
2645 }
2646
Bram Moolenaar85a20022019-12-21 18:25:54 +01002647 // translate the modifier into a string
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2649 if ((modifiers & mod_mask_table[i].mod_mask)
2650 == mod_mask_table[i].mod_flag)
2651 {
2652 string[idx++] = mod_mask_table[i].name;
2653 string[idx++] = (char_u)'-';
2654 }
2655
Bram Moolenaar85a20022019-12-21 18:25:54 +01002656 if (table_idx < 0) // unknown special key, may output t_xx
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 {
2658 if (IS_SPECIAL(c))
2659 {
2660 string[idx++] = 't';
2661 string[idx++] = '_';
2662 string[idx++] = KEY2TERMCAP0(c);
2663 string[idx++] = KEY2TERMCAP1(c);
2664 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01002665 // Not a special key, only modifiers, output directly
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 else
2667 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 if (has_mbyte && (*mb_char2len)(c) > 1)
2669 idx += (*mb_char2bytes)(c, string + idx);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002670 else if (vim_isprintc(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671 string[idx++] = c;
2672 else
2673 {
2674 s = transchar(c);
2675 while (*s)
2676 string[idx++] = *s++;
2677 }
2678 }
2679 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01002680 else // use name of special key
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681 {
Bram Moolenaar423977d2017-01-22 15:05:12 +01002682 size_t len = STRLEN(key_names_table[table_idx].name);
2683
2684 if (len + idx + 2 <= MAX_KEY_NAME_LEN)
2685 {
2686 STRCPY(string + idx, key_names_table[table_idx].name);
2687 idx += (int)len;
2688 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689 }
2690 string[idx++] = '>';
2691 string[idx] = NUL;
2692 return string;
2693}
2694
2695/*
2696 * Try translating a <> name at (*srcp)[] to dst[].
2697 * Return the number of characters added to dst[], zero for no match.
2698 * If there is a match, srcp is advanced to after the <> name.
2699 * dst[] must be big enough to hold the result (up to six characters)!
2700 */
2701 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002702trans_special(
2703 char_u **srcp,
2704 char_u *dst,
Bram Moolenaarbf0eff02019-06-01 17:13:36 +02002705 int keycode, // prefer key code, e.g. K_DEL instead of DEL
Bram Moolenaar459fd782019-10-13 16:43:39 +02002706 int in_string, // TRUE when inside a double quoted string
2707 int simplify, // simplify <C-H> and <A-x>
2708 int *did_simplify) // found <C-H> or <A-x>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709{
2710 int modifiers = 0;
2711 int key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712
Bram Moolenaar459fd782019-10-13 16:43:39 +02002713 key = find_special_key(srcp, &modifiers, keycode, FALSE, in_string,
2714 simplify, did_simplify);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715 if (key == 0)
2716 return 0;
2717
Bram Moolenaarbf0eff02019-06-01 17:13:36 +02002718 return special_to_buf(key, modifiers, keycode, dst);
2719}
2720
2721/*
2722 * Put the character sequence for "key" with "modifiers" into "dst" and return
2723 * the resulting length.
2724 * When "keycode" is TRUE prefer key code, e.g. K_DEL instead of DEL.
2725 * The sequence is not NUL terminated.
2726 * This is how characters in a string are encoded.
2727 */
2728 int
2729special_to_buf(int key, int modifiers, int keycode, char_u *dst)
2730{
2731 int dlen = 0;
2732
Bram Moolenaar85a20022019-12-21 18:25:54 +01002733 // Put the appropriate modifier in a string
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734 if (modifiers != 0)
2735 {
2736 dst[dlen++] = K_SPECIAL;
2737 dst[dlen++] = KS_MODIFIER;
2738 dst[dlen++] = modifiers;
2739 }
2740
2741 if (IS_SPECIAL(key))
2742 {
2743 dst[dlen++] = K_SPECIAL;
2744 dst[dlen++] = KEY2TERMCAP0(key);
2745 dst[dlen++] = KEY2TERMCAP1(key);
2746 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747 else if (has_mbyte && !keycode)
2748 dlen += (*mb_char2bytes)(key, dst + dlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749 else if (keycode)
2750 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2751 else
2752 dst[dlen++] = key;
2753
2754 return dlen;
2755}
2756
2757/*
2758 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2759 * srcp is advanced to after the <> name.
2760 * returns 0 if there is no match.
2761 */
2762 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002763find_special_key(
2764 char_u **srcp,
2765 int *modp,
Bram Moolenaar459fd782019-10-13 16:43:39 +02002766 int keycode, // prefer key code, e.g. K_DEL instead of DEL
2767 int keep_x_key, // don't translate xHome to Home key
2768 int in_string, // TRUE in string, double quote is escaped
2769 int simplify, // simplify <C-H> and <A-x>
2770 int *did_simplify) // found <C-H> or <A-x>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771{
2772 char_u *last_dash;
2773 char_u *end_of_name;
2774 char_u *src;
2775 char_u *bp;
2776 int modifiers;
2777 int bit;
2778 int key;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02002779 uvarnumber_T n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002780 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781
2782 src = *srcp;
2783 if (src[0] != '<')
2784 return 0;
2785
Bram Moolenaar85a20022019-12-21 18:25:54 +01002786 // Find end of modifier list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 last_dash = src;
2788 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2789 {
2790 if (*bp == '-')
2791 {
2792 last_dash = bp;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002793 if (bp[1] != NUL)
2794 {
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002795 if (has_mbyte)
2796 l = mb_ptr2len(bp + 1);
2797 else
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002798 l = 1;
Bram Moolenaarc8fd33d2019-08-16 20:33:05 +02002799 // Anything accepted, like <C-?>.
2800 // <C-"> or <M-"> are not special in strings as " is
2801 // the string delimiter. With a backslash it works: <M-\">
2802 if (!(in_string && bp[1] == '"') && bp[l + 1] == '>')
Bram Moolenaar1d90a5a2016-07-01 11:59:47 +02002803 bp += l;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002804 else if (in_string && bp[1] == '\\' && bp[2] == '"'
2805 && bp[3] == '>')
2806 bp += 2;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002807 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 }
2809 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
Bram Moolenaar85a20022019-12-21 18:25:54 +01002810 bp += 3; // skip t_xx, xx may be '-' or '>'
Bram Moolenaar792826c2011-08-19 22:29:02 +02002811 else if (STRNICMP(bp, "char-", 5) == 0)
2812 {
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002813 vim_str2nr(bp + 5, NULL, &l, STR2NR_ALL, NULL, NULL, 0, TRUE);
2814 if (l == 0)
2815 {
2816 emsg(_(e_invarg));
2817 return 0;
2818 }
Bram Moolenaar792826c2011-08-19 22:29:02 +02002819 bp += l + 5;
2820 break;
2821 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822 }
2823
Bram Moolenaar85a20022019-12-21 18:25:54 +01002824 if (*bp == '>') // found matching '>'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825 {
2826 end_of_name = bp + 1;
2827
Bram Moolenaar85a20022019-12-21 18:25:54 +01002828 // Which modifiers are given?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829 modifiers = 0x0;
2830 for (bp = src + 1; bp < last_dash; bp++)
2831 {
2832 if (*bp != '-')
2833 {
2834 bit = name_to_mod_mask(*bp);
2835 if (bit == 0x0)
Bram Moolenaar85a20022019-12-21 18:25:54 +01002836 break; // Illegal modifier name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 modifiers |= bit;
2838 }
2839 }
2840
2841 /*
2842 * Legal modifier name.
2843 */
2844 if (bp >= last_dash)
2845 {
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002846 if (STRNICMP(last_dash + 1, "char-", 5) == 0
2847 && VIM_ISDIGIT(last_dash[6]))
2848 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002849 // <Char-123> or <Char-033> or <Char-0x33>
Bram Moolenaar459fd782019-10-13 16:43:39 +02002850 vim_str2nr(last_dash + 6, NULL, &l, STR2NR_ALL, NULL,
2851 &n, 0, TRUE);
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002852 if (l == 0)
2853 {
2854 emsg(_(e_invarg));
2855 return 0;
2856 }
Bram Moolenaar792826c2011-08-19 22:29:02 +02002857 key = (int)n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002858 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002860 {
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002861 int off = 1;
2862
Bram Moolenaar85a20022019-12-21 18:25:54 +01002863 // Modifier with single letter, or special key name.
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002864 if (in_string && last_dash[1] == '\\' && last_dash[2] == '"')
2865 off = 2;
Bram Moolenaar792826c2011-08-19 22:29:02 +02002866 if (has_mbyte)
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002867 l = mb_ptr2len(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002868 else
Bram Moolenaar792826c2011-08-19 22:29:02 +02002869 l = 1;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002870 if (modifiers != 0 && last_dash[l + off] == '>')
2871 key = PTR2CHAR(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002872 else
2873 {
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002874 key = get_special_key_code(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002875 if (!keep_x_key)
2876 key = handle_x_keys(key);
2877 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002878 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879
2880 /*
2881 * get_special_key_code() may return NUL for invalid
2882 * special key name.
2883 */
2884 if (key != NUL)
2885 {
2886 /*
2887 * Only use a modifier when there is no special key code that
2888 * includes the modifier.
2889 */
2890 key = simplify_key(key, &modifiers);
2891
2892 if (!keycode)
2893 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01002894 // don't want keycode, use single byte code
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895 if (key == K_BS)
2896 key = BS;
2897 else if (key == K_DEL || key == K_KDEL)
2898 key = DEL;
2899 }
2900
Bram Moolenaar459fd782019-10-13 16:43:39 +02002901 // Normal Key with modifier: Try to make a single byte code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902 if (!IS_SPECIAL(key))
Bram Moolenaar459fd782019-10-13 16:43:39 +02002903 key = extract_modifiers(key, &modifiers,
2904 simplify, did_simplify);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905
2906 *modp = modifiers;
2907 *srcp = end_of_name;
2908 return key;
2909 }
2910 }
2911 }
2912 return 0;
2913}
2914
2915/*
2916 * Try to include modifiers in the key.
2917 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
Bram Moolenaar459fd782019-10-13 16:43:39 +02002918 * When "simplify" is FALSE don't do Ctrl and Alt.
2919 * When "simplify" is TRUE and Ctrl or Alt is removed from modifiers set
2920 * "did_simplify" when it's not NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 */
2922 int
Bram Moolenaar459fd782019-10-13 16:43:39 +02002923extract_modifiers(int key, int *modp, int simplify, int *did_simplify)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924{
2925 int modifiers = *modp;
2926
Bram Moolenaard0573012017-10-28 21:11:06 +02002927#ifdef MACOS_X
Bram Moolenaar459fd782019-10-13 16:43:39 +02002928 // Command-key really special, no fancynest
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929 if (!(modifiers & MOD_MASK_CMD))
2930#endif
2931 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2932 {
2933 key = TOUPPER_ASC(key);
Bram Moolenaar459fd782019-10-13 16:43:39 +02002934 // With <C-S-a> and <A-S-a> we keep the shift modifier.
2935 // With <S-a> and <S-A> we don't keep the shift modifier.
2936 if (simplify || modifiers == MOD_MASK_SHIFT)
2937 modifiers &= ~MOD_MASK_SHIFT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002938 }
Bram Moolenaar459fd782019-10-13 16:43:39 +02002939
2940 // <C-H> and <C-h> mean the same thing, always use "H"
2941 if ((modifiers & MOD_MASK_CTRL) && ASCII_ISALPHA(key))
2942 key = TOUPPER_ASC(key);
2943
2944 if (simplify && (modifiers & MOD_MASK_CTRL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945#ifdef EBCDIC
Bram Moolenaar459fd782019-10-13 16:43:39 +02002946 // TODO: EBCDIC Better use:
2947 // && (Ctrl_chr(key) || key == '?')
2948 // ???
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2950 != NULL
2951#else
2952 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2953#endif
2954 )
2955 {
2956 key = Ctrl_chr(key);
2957 modifiers &= ~MOD_MASK_CTRL;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002958 // <C-@> is <Nul>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959 if (key == 0)
2960 key = K_ZERO;
Bram Moolenaar459fd782019-10-13 16:43:39 +02002961 if (did_simplify != NULL)
2962 *did_simplify = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963 }
Bram Moolenaar459fd782019-10-13 16:43:39 +02002964
Bram Moolenaard0573012017-10-28 21:11:06 +02002965#ifdef MACOS_X
Bram Moolenaar85a20022019-12-21 18:25:54 +01002966 // Command-key really special, no fancynest
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 if (!(modifiers & MOD_MASK_CMD))
2968#endif
Bram Moolenaar459fd782019-10-13 16:43:39 +02002969 if (simplify && (modifiers & MOD_MASK_ALT) && key < 0x80
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002970 && !enc_dbcs) // avoid creating a lead byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971 {
2972 key |= 0x80;
Bram Moolenaar85a20022019-12-21 18:25:54 +01002973 modifiers &= ~MOD_MASK_ALT; // remove the META modifier
Bram Moolenaar459fd782019-10-13 16:43:39 +02002974 if (did_simplify != NULL)
2975 *did_simplify = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976 }
2977
2978 *modp = modifiers;
2979 return key;
2980}
2981
2982/*
2983 * Try to find key "c" in the special key table.
2984 * Return the index when found, -1 when not found.
2985 */
2986 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002987find_special_key_in_table(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988{
2989 int i;
2990
2991 for (i = 0; key_names_table[i].name != NULL; i++)
2992 if (c == key_names_table[i].key)
2993 break;
2994 if (key_names_table[i].name == NULL)
2995 i = -1;
2996 return i;
2997}
2998
2999/*
3000 * Find the special key with the given name (the given string does not have to
3001 * end with NUL, the name is assumed to end before the first non-idchar).
3002 * If the name starts with "t_" the next two characters are interpreted as a
3003 * termcap name.
3004 * Return the key code, or 0 if not found.
3005 */
3006 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003007get_special_key_code(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008{
3009 char_u *table_name;
3010 char_u string[3];
3011 int i, j;
3012
3013 /*
3014 * If it's <t_xx> we get the code for xx from the termcap
3015 */
3016 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
3017 {
3018 string[0] = name[2];
3019 string[1] = name[3];
3020 string[2] = NUL;
3021 if (add_termcap_entry(string, FALSE) == OK)
3022 return TERMCAP2KEY(name[2], name[3]);
3023 }
3024 else
3025 for (i = 0; key_names_table[i].name != NULL; i++)
3026 {
3027 table_name = key_names_table[i].name;
3028 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
3029 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
3030 break;
3031 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
3032 return key_names_table[i].key;
3033 }
3034 return 0;
3035}
3036
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01003038get_key_name(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039{
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00003040 if (i >= (int)KEY_NAMES_TABLE_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 return NULL;
3042 return key_names_table[i].name;
3043}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045/*
3046 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
3047 */
3048 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003049get_fileformat(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050{
3051 int c = *buf->b_p_ff;
3052
3053 if (buf->b_p_bin || c == 'u')
3054 return EOL_UNIX;
3055 if (c == 'm')
3056 return EOL_MAC;
3057 return EOL_DOS;
3058}
3059
3060/*
3061 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
3062 * argument.
3063 */
3064 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003065get_fileformat_force(
3066 buf_T *buf,
Bram Moolenaar85a20022019-12-21 18:25:54 +01003067 exarg_T *eap) // can be NULL!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068{
3069 int c;
3070
3071 if (eap != NULL && eap->force_ff != 0)
Bram Moolenaar333b80a2018-04-04 22:57:29 +02003072 c = eap->force_ff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 else
3074 {
3075 if ((eap != NULL && eap->force_bin != 0)
3076 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
3077 return EOL_UNIX;
3078 c = *buf->b_p_ff;
3079 }
3080 if (c == 'u')
3081 return EOL_UNIX;
3082 if (c == 'm')
3083 return EOL_MAC;
3084 return EOL_DOS;
3085}
3086
3087/*
3088 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
3089 * Sets both 'textmode' and 'fileformat'.
3090 * Note: Does _not_ set global value of 'textmode'!
3091 */
3092 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003093set_fileformat(
3094 int t,
Bram Moolenaar85a20022019-12-21 18:25:54 +01003095 int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096{
3097 char *p = NULL;
3098
3099 switch (t)
3100 {
3101 case EOL_DOS:
3102 p = FF_DOS;
3103 curbuf->b_p_tx = TRUE;
3104 break;
3105 case EOL_UNIX:
3106 p = FF_UNIX;
3107 curbuf->b_p_tx = FALSE;
3108 break;
3109 case EOL_MAC:
3110 p = FF_MAC;
3111 curbuf->b_p_tx = FALSE;
3112 break;
3113 }
3114 if (p != NULL)
3115 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003116 OPT_FREE | opt_flags, 0);
3117
Bram Moolenaar85a20022019-12-21 18:25:54 +01003118 // This may cause the buffer to become (un)modified.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119 check_status(curbuf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003120 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121#ifdef FEAT_TITLE
Bram Moolenaar85a20022019-12-21 18:25:54 +01003122 need_maketitle = TRUE; // set window title later
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123#endif
3124}
3125
3126/*
3127 * Return the default fileformat from 'fileformats'.
3128 */
3129 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003130default_fileformat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131{
3132 switch (*p_ffs)
3133 {
3134 case 'm': return EOL_MAC;
3135 case 'd': return EOL_DOS;
3136 }
3137 return EOL_UNIX;
3138}
3139
3140/*
3141 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
3142 */
3143 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003144call_shell(char_u *cmd, int opt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145{
3146 char_u *ncmd;
3147 int retval;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003148#ifdef FEAT_PROFILE
3149 proftime_T wait_time;
3150#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151
3152 if (p_verbose > 3)
3153 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003154 verbose_enter();
Bram Moolenaar06f08532020-05-12 23:45:16 +02003155 smsg(_("Calling shell to execute: \"%s\""), cmd == NULL ? p_sh : cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 out_char('\n');
3157 cursor_on();
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003158 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159 }
3160
Bram Moolenaar05159a02005-02-26 23:04:13 +00003161#ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003162 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003163 prof_child_enter(&wait_time);
3164#endif
3165
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166 if (*p_sh == NUL)
3167 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003168 emsg(_(e_shellempty));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169 retval = -1;
3170 }
3171 else
3172 {
3173#ifdef FEAT_GUI_MSWIN
Bram Moolenaar85a20022019-12-21 18:25:54 +01003174 // Don't hide the pointer while executing a shell command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175 gui_mch_mousehide(FALSE);
3176#endif
3177#ifdef FEAT_GUI
3178 ++hold_gui_events;
3179#endif
Bram Moolenaar85a20022019-12-21 18:25:54 +01003180 // The external command may update a tags file, clear cached tags.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181 tag_freematch();
3182
Bram Moolenaar01257a72019-06-10 14:46:04 +02003183 if (cmd == NULL || *p_sxq == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184 retval = mch_call_shell(cmd, opt);
3185 else
3186 {
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003187 char_u *ecmd = cmd;
3188
Bram Moolenaar1a613392019-09-28 15:51:37 +02003189 if (*p_sxe != NUL && *p_sxq == '(')
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003190 {
3191 ecmd = vim_strsave_escaped_ext(cmd, p_sxe, '^', FALSE);
3192 if (ecmd == NULL)
3193 ecmd = cmd;
3194 }
Bram Moolenaar964b3742019-05-24 18:54:09 +02003195 ncmd = alloc(STRLEN(ecmd) + STRLEN(p_sxq) * 2 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196 if (ncmd != NULL)
3197 {
3198 STRCPY(ncmd, p_sxq);
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003199 STRCAT(ncmd, ecmd);
Bram Moolenaar1a613392019-09-28 15:51:37 +02003200 // When 'shellxquote' is ( append ).
3201 // When 'shellxquote' is "( append )".
3202 STRCAT(ncmd, *p_sxq == '(' ? (char_u *)")"
3203 : *p_sxq == '"' && *(p_sxq+1) == '(' ? (char_u *)")\""
3204 : p_sxq);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 retval = mch_call_shell(ncmd, opt);
3206 vim_free(ncmd);
3207 }
3208 else
3209 retval = -1;
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003210 if (ecmd != cmd)
3211 vim_free(ecmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212 }
3213#ifdef FEAT_GUI
3214 --hold_gui_events;
3215#endif
3216 /*
3217 * Check the window size, in case it changed while executing the
3218 * external command.
3219 */
3220 shell_resized_check();
3221 }
3222
3223#ifdef FEAT_EVAL
3224 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003225# ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003226 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003227 prof_child_exit(&wait_time);
3228# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229#endif
3230
3231 return retval;
3232}
3233
3234/*
Bram Moolenaar01265852006-03-20 21:50:15 +00003235 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3236 * NORMAL State with a condition. This function returns the real State.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237 */
3238 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003239get_real_state(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003240{
3241 if (State & NORMAL)
3242 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243 if (VIsual_active)
Bram Moolenaar01265852006-03-20 21:50:15 +00003244 {
3245 if (VIsual_select)
3246 return SELECTMODE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247 return VISUAL;
Bram Moolenaar01265852006-03-20 21:50:15 +00003248 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003249 else if (finish_op)
3250 return OP_PENDING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251 }
3252 return State;
3253}
3254
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003255/*
3256 * Return TRUE if "p" points to just after a path separator.
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003257 * Takes care of multi-byte characters.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003258 * "b" must point to the start of the file name
3259 */
3260 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003261after_pathsep(char_u *b, char_u *p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003262{
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003263 return p > b && vim_ispathsep(p[-1])
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003264 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3265}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003266
3267/*
3268 * Return TRUE if file names "f1" and "f2" are in the same directory.
3269 * "f1" may be a short name, "f2" must be a full path.
3270 */
3271 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003272same_directory(char_u *f1, char_u *f2)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003273{
3274 char_u ffname[MAXPATHL];
3275 char_u *t1;
3276 char_u *t2;
3277
Bram Moolenaar85a20022019-12-21 18:25:54 +01003278 // safety check
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003279 if (f1 == NULL || f2 == NULL)
3280 return FALSE;
3281
3282 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3283 t1 = gettail_sep(ffname);
3284 t2 = gettail_sep(f2);
3285 return (t1 - ffname == t2 - f2
3286 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3287}
3288
Bram Moolenaar7c365fb2018-06-29 20:28:31 +02003289#if defined(FEAT_SESSION) || defined(FEAT_AUTOCHDIR) \
3290 || defined(MSWIN) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK) \
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01003291 || defined(FEAT_NETBEANS_INTG) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292 || defined(PROTO)
3293/*
3294 * Change to a file's directory.
3295 * Caller must call shorten_fnames()!
3296 * Return OK or FAIL.
3297 */
3298 int
Bram Moolenaar2caad3f2018-12-16 15:38:02 +01003299vim_chdirfile(char_u *fname, char *trigger_autocmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300{
Bram Moolenaar2caad3f2018-12-16 15:38:02 +01003301 char_u old_dir[MAXPATHL];
3302 char_u new_dir[MAXPATHL];
Bram Moolenaarb5cb65b2018-02-03 18:01:37 +01003303 int res;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304
Bram Moolenaar2caad3f2018-12-16 15:38:02 +01003305 if (mch_dirname(old_dir, MAXPATHL) != OK)
3306 *old_dir = NUL;
3307
3308 vim_strncpy(new_dir, fname, MAXPATHL - 1);
3309 *gettail_sep(new_dir) = NUL;
3310
Bram Moolenaar9eb76af2018-12-16 16:30:21 +01003311 if (pathcmp((char *)old_dir, (char *)new_dir, -1) == 0)
Bram Moolenaar2caad3f2018-12-16 15:38:02 +01003312 // nothing to do
3313 res = OK;
3314 else
3315 {
3316 res = mch_chdir((char *)new_dir) == 0 ? OK : FAIL;
3317
3318 if (res == OK && trigger_autocmd != NULL)
3319 apply_autocmds(EVENT_DIRCHANGED, (char_u *)trigger_autocmd,
3320 new_dir, FALSE, curbuf);
3321 }
Bram Moolenaarb5cb65b2018-02-03 18:01:37 +01003322 return res;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323}
3324#endif
3325
3326#if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3327/*
3328 * Check if "name" ends in a slash and is not a directory.
3329 * Used for systems where stat() ignores a trailing slash on a file name.
3330 * The Vim code assumes a trailing slash is only ignored for a directory.
3331 */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003332 static int
Bram Moolenaard8492792017-03-16 12:22:38 +01003333illegal_slash(const char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334{
3335 if (name[0] == NUL)
Bram Moolenaar85a20022019-12-21 18:25:54 +01003336 return FALSE; // no file name is not illegal
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337 if (name[strlen(name) - 1] != '/')
Bram Moolenaar85a20022019-12-21 18:25:54 +01003338 return FALSE; // no trailing slash
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339 if (mch_isdir((char_u *)name))
Bram Moolenaar85a20022019-12-21 18:25:54 +01003340 return FALSE; // trailing slash for a directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341 return TRUE;
3342}
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003343
3344/*
3345 * Special implementation of mch_stat() for Solaris.
3346 */
3347 int
3348vim_stat(const char *name, stat_T *stp)
3349{
Bram Moolenaar85a20022019-12-21 18:25:54 +01003350 // On Solaris stat() accepts "file/" as if it was "file". Return -1 if
3351 // the name ends in "/" and it's not a directory.
Bram Moolenaard8492792017-03-16 12:22:38 +01003352 return illegal_slash(name) ? -1 : stat(name, stp);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003353}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003354#endif
3355
3356#if defined(CURSOR_SHAPE) || defined(PROTO)
3357
3358/*
3359 * Handling of cursor and mouse pointer shapes in various modes.
3360 */
3361
3362cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3363{
Bram Moolenaar85a20022019-12-21 18:25:54 +01003364 // The values will be filled in from the 'guicursor' and 'mouseshape'
3365 // defaults when Vim starts.
3366 // Adjust the SHAPE_IDX_ defines when making changes!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3368 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3369 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3370 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3371 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3372 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3373 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3374 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3375 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3376 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3377 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3378 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3379 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3380 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3381 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3382 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3383 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3384};
3385
3386#ifdef FEAT_MOUSESHAPE
3387/*
3388 * Table with names for mouse shapes. Keep in sync with all the tables for
3389 * mch_set_mouse_shape()!.
3390 */
3391static char * mshape_names[] =
3392{
Bram Moolenaar85a20022019-12-21 18:25:54 +01003393 "arrow", // default, must be the first one
3394 "blank", // hidden
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395 "beam",
3396 "updown",
3397 "udsizing",
3398 "leftright",
3399 "lrsizing",
3400 "busy",
3401 "no",
3402 "crosshair",
3403 "hand1",
3404 "hand2",
3405 "pencil",
3406 "question",
3407 "rightup-arrow",
3408 "up-arrow",
3409 NULL
3410};
3411#endif
3412
3413/*
3414 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3415 * ("what" is SHAPE_MOUSE).
3416 * Returns error message for an illegal option, NULL otherwise.
3417 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003418 char *
Bram Moolenaar9b578142016-01-30 19:39:49 +01003419parse_shape_opt(int what)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420{
3421 char_u *modep;
3422 char_u *colonp;
3423 char_u *commap;
3424 char_u *slashp;
3425 char_u *p, *endp;
Bram Moolenaar85a20022019-12-21 18:25:54 +01003426 int idx = 0; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427 int all_idx;
3428 int len;
3429 int i;
3430 long n;
Bram Moolenaar85a20022019-12-21 18:25:54 +01003431 int found_ve = FALSE; // found "ve" flag
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 int round;
3433
3434 /*
3435 * First round: check for errors; second round: do it for real.
3436 */
3437 for (round = 1; round <= 2; ++round)
3438 {
3439 /*
3440 * Repeat for all comma separated parts.
3441 */
3442#ifdef FEAT_MOUSESHAPE
3443 if (what == SHAPE_MOUSE)
3444 modep = p_mouseshape;
3445 else
3446#endif
3447 modep = p_guicursor;
3448 while (*modep != NUL)
3449 {
3450 colonp = vim_strchr(modep, ':');
Bram Moolenaar24922ec2017-02-23 17:59:22 +01003451 commap = vim_strchr(modep, ',');
3452
3453 if (colonp == NULL || (commap != NULL && commap < colonp))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003454 return N_("E545: Missing colon");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 if (colonp == modep)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003456 return N_("E546: Illegal mode");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457
3458 /*
3459 * Repeat for all mode's before the colon.
3460 * For the 'a' mode, we loop to handle all the modes.
3461 */
3462 all_idx = -1;
3463 while (modep < colonp || all_idx >= 0)
3464 {
3465 if (all_idx < 0)
3466 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01003467 // Find the mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 if (modep[1] == '-' || modep[1] == ':')
3469 len = 1;
3470 else
3471 len = 2;
3472 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3473 all_idx = SHAPE_IDX_COUNT - 1;
3474 else
3475 {
3476 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3477 if (STRNICMP(modep, shape_table[idx].name, len)
3478 == 0)
3479 break;
3480 if (idx == SHAPE_IDX_COUNT
3481 || (shape_table[idx].used_for & what) == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003482 return N_("E546: Illegal mode");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3484 found_ve = TRUE;
3485 }
3486 modep += len + 1;
3487 }
3488
3489 if (all_idx >= 0)
3490 idx = all_idx--;
3491 else if (round == 2)
3492 {
3493#ifdef FEAT_MOUSESHAPE
3494 if (what == SHAPE_MOUSE)
3495 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01003496 // Set the default, for the missing parts
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497 shape_table[idx].mshape = 0;
3498 }
3499 else
3500#endif
3501 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01003502 // Set the defaults, for the missing parts
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503 shape_table[idx].shape = SHAPE_BLOCK;
3504 shape_table[idx].blinkwait = 700L;
3505 shape_table[idx].blinkon = 400L;
3506 shape_table[idx].blinkoff = 250L;
3507 }
3508 }
3509
Bram Moolenaar85a20022019-12-21 18:25:54 +01003510 // Parse the part after the colon
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511 for (p = colonp + 1; *p && *p != ','; )
3512 {
3513#ifdef FEAT_MOUSESHAPE
3514 if (what == SHAPE_MOUSE)
3515 {
3516 for (i = 0; ; ++i)
3517 {
3518 if (mshape_names[i] == NULL)
3519 {
3520 if (!VIM_ISDIGIT(*p))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003521 return N_("E547: Illegal mouseshape");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003522 if (round == 2)
3523 shape_table[idx].mshape =
3524 getdigits(&p) + MSHAPE_NUMBERED;
3525 else
3526 (void)getdigits(&p);
3527 break;
3528 }
3529 len = (int)STRLEN(mshape_names[i]);
3530 if (STRNICMP(p, mshape_names[i], len) == 0)
3531 {
3532 if (round == 2)
3533 shape_table[idx].mshape = i;
3534 p += len;
3535 break;
3536 }
3537 }
3538 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01003539 else // if (what == SHAPE_MOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540#endif
3541 {
3542 /*
3543 * First handle the ones with a number argument.
3544 */
3545 i = *p;
3546 len = 0;
3547 if (STRNICMP(p, "ver", 3) == 0)
3548 len = 3;
3549 else if (STRNICMP(p, "hor", 3) == 0)
3550 len = 3;
3551 else if (STRNICMP(p, "blinkwait", 9) == 0)
3552 len = 9;
3553 else if (STRNICMP(p, "blinkon", 7) == 0)
3554 len = 7;
3555 else if (STRNICMP(p, "blinkoff", 8) == 0)
3556 len = 8;
3557 if (len != 0)
3558 {
3559 p += len;
3560 if (!VIM_ISDIGIT(*p))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003561 return N_("E548: digit expected");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 n = getdigits(&p);
Bram Moolenaar85a20022019-12-21 18:25:54 +01003563 if (len == 3) // "ver" or "hor"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564 {
3565 if (n == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003566 return N_("E549: Illegal percentage");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567 if (round == 2)
3568 {
3569 if (TOLOWER_ASC(i) == 'v')
3570 shape_table[idx].shape = SHAPE_VER;
3571 else
3572 shape_table[idx].shape = SHAPE_HOR;
3573 shape_table[idx].percentage = n;
3574 }
3575 }
3576 else if (round == 2)
3577 {
3578 if (len == 9)
3579 shape_table[idx].blinkwait = n;
3580 else if (len == 7)
3581 shape_table[idx].blinkon = n;
3582 else
3583 shape_table[idx].blinkoff = n;
3584 }
3585 }
3586 else if (STRNICMP(p, "block", 5) == 0)
3587 {
3588 if (round == 2)
3589 shape_table[idx].shape = SHAPE_BLOCK;
3590 p += 5;
3591 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01003592 else // must be a highlight group name then
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593 {
3594 endp = vim_strchr(p, '-');
Bram Moolenaar85a20022019-12-21 18:25:54 +01003595 if (commap == NULL) // last part
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596 {
3597 if (endp == NULL)
Bram Moolenaar85a20022019-12-21 18:25:54 +01003598 endp = p + STRLEN(p); // find end of part
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599 }
3600 else if (endp > commap || endp == NULL)
3601 endp = commap;
3602 slashp = vim_strchr(p, '/');
3603 if (slashp != NULL && slashp < endp)
3604 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01003605 // "group/langmap_group"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003606 i = syn_check_group(p, (int)(slashp - p));
3607 p = slashp + 1;
3608 }
3609 if (round == 2)
3610 {
3611 shape_table[idx].id = syn_check_group(p,
3612 (int)(endp - p));
3613 shape_table[idx].id_lm = shape_table[idx].id;
3614 if (slashp != NULL && slashp < endp)
3615 shape_table[idx].id = i;
3616 }
3617 p = endp;
3618 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01003619 } // if (what != SHAPE_MOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620
3621 if (*p == '-')
3622 ++p;
3623 }
3624 }
3625 modep = p;
3626 if (*modep == ',')
3627 ++modep;
3628 }
3629 }
3630
Bram Moolenaar85a20022019-12-21 18:25:54 +01003631 // If the 's' flag is not given, use the 'v' cursor for 's'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003632 if (!found_ve)
3633 {
3634#ifdef FEAT_MOUSESHAPE
3635 if (what == SHAPE_MOUSE)
3636 {
3637 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3638 }
3639 else
3640#endif
3641 {
3642 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3643 shape_table[SHAPE_IDX_VE].percentage =
3644 shape_table[SHAPE_IDX_V].percentage;
3645 shape_table[SHAPE_IDX_VE].blinkwait =
3646 shape_table[SHAPE_IDX_V].blinkwait;
3647 shape_table[SHAPE_IDX_VE].blinkon =
3648 shape_table[SHAPE_IDX_V].blinkon;
3649 shape_table[SHAPE_IDX_VE].blinkoff =
3650 shape_table[SHAPE_IDX_V].blinkoff;
3651 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3652 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3653 }
3654 }
3655
3656 return NULL;
3657}
3658
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003659# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3660 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661/*
3662 * Return the index into shape_table[] for the current mode.
3663 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3664 */
3665 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003666get_shape_idx(int mouse)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667{
3668#ifdef FEAT_MOUSESHAPE
3669 if (mouse && (State == HITRETURN || State == ASKMORE))
3670 {
3671# ifdef FEAT_GUI
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003672 int x, y;
3673 gui_mch_getmouse(&x, &y);
3674 if (Y_2_ROW(y) == Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675 return SHAPE_IDX_MOREL;
3676# endif
3677 return SHAPE_IDX_MORE;
3678 }
3679 if (mouse && drag_status_line)
3680 return SHAPE_IDX_SDRAG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681 if (mouse && drag_sep_line)
3682 return SHAPE_IDX_VDRAG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683#endif
3684 if (!mouse && State == SHOWMATCH)
3685 return SHAPE_IDX_SM;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 if (State & VREPLACE_FLAG)
3687 return SHAPE_IDX_R;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688 if (State & REPLACE_FLAG)
3689 return SHAPE_IDX_R;
3690 if (State & INSERT)
3691 return SHAPE_IDX_I;
3692 if (State & CMDLINE)
3693 {
3694 if (cmdline_at_end())
3695 return SHAPE_IDX_C;
3696 if (cmdline_overstrike())
3697 return SHAPE_IDX_CR;
3698 return SHAPE_IDX_CI;
3699 }
3700 if (finish_op)
3701 return SHAPE_IDX_O;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 if (VIsual_active)
3703 {
3704 if (*p_sel == 'e')
3705 return SHAPE_IDX_VE;
3706 else
3707 return SHAPE_IDX_V;
3708 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709 return SHAPE_IDX_N;
3710}
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003711#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712
3713# if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3714static int old_mouse_shape = 0;
3715
3716/*
3717 * Set the mouse shape:
3718 * If "shape" is -1, use shape depending on the current mode,
3719 * depending on the current state.
3720 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3721 * when the mouse moves off the status or command line).
3722 */
3723 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003724update_mouseshape(int shape_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725{
3726 int new_mouse_shape;
3727
Bram Moolenaar85a20022019-12-21 18:25:54 +01003728 // Only works in GUI mode.
Bram Moolenaar6bb68362005-03-22 23:03:44 +00003729 if (!gui.in_use || gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730 return;
3731
Bram Moolenaar85a20022019-12-21 18:25:54 +01003732 // Postpone the updating when more is to come. Speeds up executing of
3733 // mappings.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734 if (shape_idx == -1 && char_avail())
3735 {
3736 postponed_mouseshape = TRUE;
3737 return;
3738 }
3739
Bram Moolenaar85a20022019-12-21 18:25:54 +01003740 // When ignoring the mouse don't change shape on the statusline.
Bram Moolenaar14716812006-05-04 21:54:08 +00003741 if (*p_mouse == NUL
3742 && (shape_idx == SHAPE_IDX_CLINE
3743 || shape_idx == SHAPE_IDX_STATUS
3744 || shape_idx == SHAPE_IDX_VSEP))
3745 shape_idx = -2;
3746
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747 if (shape_idx == -2
3748 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3749 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3750 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3751 return;
3752 if (shape_idx < 0)
3753 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3754 else
3755 new_mouse_shape = shape_table[shape_idx].mshape;
3756 if (new_mouse_shape != old_mouse_shape)
3757 {
3758 mch_set_mouse_shape(new_mouse_shape);
3759 old_mouse_shape = new_mouse_shape;
3760 }
3761 postponed_mouseshape = FALSE;
3762}
3763# endif
3764
Bram Moolenaar85a20022019-12-21 18:25:54 +01003765#endif // CURSOR_SHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766
3767
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768/*
3769 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
3770 * 'cdpath' for relative directory names, otherwise just mch_chdir().
3771 */
3772 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003773vim_chdir(char_u *new_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774{
3775#ifndef FEAT_SEARCHPATH
3776 return mch_chdir((char *)new_dir);
3777#else
3778 char_u *dir_name;
3779 int r;
3780
3781 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
3782 FNAME_MESS, curbuf->b_ffname);
3783 if (dir_name == NULL)
3784 return -1;
3785 r = mch_chdir((char *)dir_name);
3786 vim_free(dir_name);
3787 return r;
3788#endif
3789}
3790
3791/*
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003792 * Get user name from machine-specific function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 * Returns the user name in "buf[len]".
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003794 * Some systems are quite slow in obtaining the user name (Windows NT), thus
3795 * cache the result.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796 * Returns OK or FAIL.
3797 */
3798 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003799get_user_name(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003801 if (username == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 {
3803 if (mch_get_user_name(buf, len) == FAIL)
3804 return FAIL;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003805 username = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 }
3807 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003808 vim_strncpy(buf, username, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809 return OK;
3810}
3811
3812#ifndef HAVE_QSORT
3813/*
3814 * Our own qsort(), for systems that don't have it.
3815 * It's simple and slow. From the K&R C book.
3816 */
3817 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003818qsort(
3819 void *base,
3820 size_t elm_count,
3821 size_t elm_size,
3822 int (*cmp)(const void *, const void *))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823{
3824 char_u *buf;
3825 char_u *p1;
3826 char_u *p2;
3827 int i, j;
3828 int gap;
3829
Bram Moolenaar964b3742019-05-24 18:54:09 +02003830 buf = alloc(elm_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831 if (buf == NULL)
3832 return;
3833
3834 for (gap = elm_count / 2; gap > 0; gap /= 2)
3835 for (i = gap; i < elm_count; ++i)
3836 for (j = i - gap; j >= 0; j -= gap)
3837 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01003838 // Compare the elements.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839 p1 = (char_u *)base + j * elm_size;
3840 p2 = (char_u *)base + (j + gap) * elm_size;
3841 if ((*cmp)((void *)p1, (void *)p2) <= 0)
3842 break;
Bram Moolenaar85a20022019-12-21 18:25:54 +01003843 // Exchange the elements.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844 mch_memmove(buf, p1, elm_size);
3845 mch_memmove(p1, p2, elm_size);
3846 mch_memmove(p2, buf, elm_size);
3847 }
3848
3849 vim_free(buf);
3850}
3851#endif
3852
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853/*
3854 * Sort an array of strings.
3855 */
Bram Moolenaareae1b912019-05-09 15:12:55 +02003856static int sort_compare(const void *s1, const void *s2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857
3858 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003859sort_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860{
3861 return STRCMP(*(char **)s1, *(char **)s2);
3862}
3863
3864 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003865sort_strings(
3866 char_u **files,
3867 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868{
3869 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
3870}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872/*
3873 * The putenv() implementation below comes from the "screen" program.
3874 * Included with permission from Juergen Weigert.
3875 * See pty.c for the copyright notice.
3876 */
3877
3878/*
3879 * putenv -- put value into environment
3880 *
3881 * Usage: i = putenv (string)
3882 * int i;
3883 * char *string;
3884 *
3885 * where string is of the form <name>=<value>.
3886 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
3887 *
3888 * Putenv may need to add a new name into the environment, or to
3889 * associate a value longer than the current value with a particular
3890 * name. So, to make life simpler, putenv() copies your entire
3891 * environment into the heap (i.e. malloc()) from the stack
3892 * (i.e. where it resides when your process is initiated) the first
3893 * time you call it.
3894 *
3895 * (history removed, not very interesting. See the "screen" sources.)
3896 */
3897
3898#if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
3899
Bram Moolenaar85a20022019-12-21 18:25:54 +01003900#define EXTRASIZE 5 // increment to add to env. size
Bram Moolenaar071d4272004-06-13 20:20:40 +00003901
Bram Moolenaar85a20022019-12-21 18:25:54 +01003902static int envsize = -1; // current size of environment
3903extern char **environ; // the global which is your env.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904
Bram Moolenaar85a20022019-12-21 18:25:54 +01003905static int findenv(char *name); // look for a name in the env.
3906static int newenv(void); // copy env. from stack to heap
3907static int moreenv(void); // incr. size of env.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908
3909 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003910putenv(const char *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911{
3912 int i;
3913 char *p;
3914
3915 if (envsize < 0)
Bram Moolenaar85a20022019-12-21 18:25:54 +01003916 { // first time putenv called
3917 if (newenv() < 0) // copy env. to heap
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918 return -1;
3919 }
3920
Bram Moolenaar85a20022019-12-21 18:25:54 +01003921 i = findenv((char *)string); // look for name in environment
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922
3923 if (i < 0)
Bram Moolenaar85a20022019-12-21 18:25:54 +01003924 { // name must be added
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 for (i = 0; environ[i]; i++);
3926 if (i >= (envsize - 1))
Bram Moolenaar85a20022019-12-21 18:25:54 +01003927 { // need new slot
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928 if (moreenv() < 0)
3929 return -1;
3930 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003931 p = alloc(strlen(string) + 1);
Bram Moolenaar85a20022019-12-21 18:25:54 +01003932 if (p == NULL) // not enough core
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933 return -1;
Bram Moolenaar85a20022019-12-21 18:25:54 +01003934 environ[i + 1] = 0; // new end of env.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935 }
3936 else
Bram Moolenaar85a20022019-12-21 18:25:54 +01003937 { // name already in env.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 p = vim_realloc(environ[i], strlen(string) + 1);
3939 if (p == NULL)
3940 return -1;
3941 }
Bram Moolenaar85a20022019-12-21 18:25:54 +01003942 sprintf(p, "%s", string); // copy into env.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943 environ[i] = p;
3944
3945 return 0;
3946}
3947
3948 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003949findenv(char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950{
3951 char *namechar, *envchar;
3952 int i, found;
3953
3954 found = 0;
3955 for (i = 0; environ[i] && !found; i++)
3956 {
3957 envchar = environ[i];
3958 namechar = name;
3959 while (*namechar && *namechar != '=' && (*namechar == *envchar))
3960 {
3961 namechar++;
3962 envchar++;
3963 }
3964 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
3965 }
3966 return found ? i - 1 : -1;
3967}
3968
3969 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003970newenv(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971{
3972 char **env, *elem;
3973 int i, esize;
3974
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975 for (i = 0; environ[i]; i++)
3976 ;
Bram Moolenaard0573012017-10-28 21:11:06 +02003977
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 esize = i + EXTRASIZE + 1;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003979 env = ALLOC_MULT(char *, esize);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 if (env == NULL)
3981 return -1;
3982
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 for (i = 0; environ[i]; i++)
3984 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003985 elem = alloc(strlen(environ[i]) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 if (elem == NULL)
3987 return -1;
3988 env[i] = elem;
3989 strcpy(elem, environ[i]);
3990 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991
3992 env[i] = 0;
3993 environ = env;
3994 envsize = esize;
3995 return 0;
3996}
3997
3998 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003999moreenv(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004000{
4001 int esize;
4002 char **env;
4003
4004 esize = envsize + EXTRASIZE;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004005 env = vim_realloc((char *)environ, esize * sizeof (*env));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006 if (env == 0)
4007 return -1;
4008 environ = env;
4009 envsize = esize;
4010 return 0;
4011}
4012
4013# ifdef USE_VIMPTY_GETENV
Bram Moolenaar613fe7a2017-07-22 21:11:53 +02004014/*
4015 * Used for mch_getenv() for Mac.
4016 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004018vimpty_getenv(const char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019{
4020 int i;
4021 char_u *p;
4022
4023 if (envsize < 0)
4024 return NULL;
4025
4026 i = findenv((char *)string);
4027
4028 if (i < 0)
4029 return NULL;
4030
4031 p = vim_strchr((char_u *)environ[i], '=');
4032 return (p + 1);
4033}
4034# endif
4035
Bram Moolenaar85a20022019-12-21 18:25:54 +01004036#endif // !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004037
Bram Moolenaarc4956c82006-03-12 21:58:43 +00004038#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004039/*
4040 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
4041 * rights to write into.
4042 */
4043 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004044filewritable(char_u *fname)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004045{
4046 int retval = 0;
4047#if defined(UNIX) || defined(VMS)
4048 int perm = 0;
4049#endif
4050
4051#if defined(UNIX) || defined(VMS)
4052 perm = mch_getperm(fname);
4053#endif
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004054 if (
Bram Moolenaar4f974752019-02-17 17:44:42 +01004055# ifdef MSWIN
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004056 mch_writable(fname) &&
4057# else
4058# if defined(UNIX) || defined(VMS)
4059 (perm & 0222) &&
4060# endif
4061# endif
4062 mch_access((char *)fname, W_OK) == 0
4063 )
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004064 {
4065 ++retval;
4066 if (mch_isdir(fname))
4067 ++retval;
4068 }
4069 return retval;
4070}
4071#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00004072
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004073#if defined(FEAT_SPELL) || defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
4074/*
4075 * Read 2 bytes from "fd" and turn them into an int, MSB first.
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004076 * Returns -1 when encountering EOF.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004077 */
4078 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004079get2c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004080{
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004081 int c, n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004082
4083 n = getc(fd);
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004084 if (n == EOF) return -1;
4085 c = getc(fd);
4086 if (c == EOF) return -1;
4087 return (n << 8) + c;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004088}
4089
4090/*
4091 * Read 3 bytes from "fd" and turn them into an int, MSB first.
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004092 * Returns -1 when encountering EOF.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004093 */
4094 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004095get3c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004096{
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004097 int c, n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004098
4099 n = getc(fd);
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004100 if (n == EOF) return -1;
4101 c = getc(fd);
4102 if (c == EOF) return -1;
4103 n = (n << 8) + c;
4104 c = getc(fd);
4105 if (c == EOF) return -1;
4106 return (n << 8) + c;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004107}
4108
4109/*
4110 * Read 4 bytes from "fd" and turn them into an int, MSB first.
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004111 * Returns -1 when encountering EOF.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004112 */
4113 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004114get4c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004115{
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004116 int c;
Bram Moolenaar85a20022019-12-21 18:25:54 +01004117 // Use unsigned rather than int otherwise result is undefined
4118 // when left-shift sets the MSB.
Bram Moolenaar95235e62013-09-08 16:07:07 +02004119 unsigned n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004120
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004121 c = getc(fd);
4122 if (c == EOF) return -1;
4123 n = (unsigned)c;
4124 c = getc(fd);
4125 if (c == EOF) return -1;
4126 n = (n << 8) + (unsigned)c;
4127 c = getc(fd);
4128 if (c == EOF) return -1;
4129 n = (n << 8) + (unsigned)c;
4130 c = getc(fd);
4131 if (c == EOF) return -1;
4132 n = (n << 8) + (unsigned)c;
Bram Moolenaar95235e62013-09-08 16:07:07 +02004133 return (int)n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004134}
4135
4136/*
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004137 * Read a string of length "cnt" from "fd" into allocated memory.
4138 * Returns NULL when out of memory or unable to read that many bytes.
4139 */
4140 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004141read_string(FILE *fd, int cnt)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004142{
4143 char_u *str;
4144 int i;
4145 int c;
4146
Bram Moolenaar85a20022019-12-21 18:25:54 +01004147 // allocate memory
Bram Moolenaar964b3742019-05-24 18:54:09 +02004148 str = alloc(cnt + 1);
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004149 if (str != NULL)
4150 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01004151 // Read the string. Quit when running into the EOF.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004152 for (i = 0; i < cnt; ++i)
4153 {
4154 c = getc(fd);
4155 if (c == EOF)
4156 {
4157 vim_free(str);
4158 return NULL;
4159 }
4160 str[i] = c;
4161 }
4162 str[i] = NUL;
4163 }
4164 return str;
4165}
4166
4167/*
4168 * Write a number to file "fd", MSB first, in "len" bytes.
4169 */
4170 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004171put_bytes(FILE *fd, long_u nr, int len)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004172{
4173 int i;
4174
4175 for (i = len - 1; i >= 0; --i)
4176 if (putc((int)(nr >> (i * 8)), fd) == EOF)
4177 return FAIL;
4178 return OK;
4179}
4180
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004181#endif
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004182
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004183#if defined(FEAT_QUICKFIX) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004184/*
4185 * Return TRUE if string "s" contains a non-ASCII character (128 or higher).
4186 * When "s" is NULL FALSE is returned.
4187 */
4188 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004189has_non_ascii(char_u *s)
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004190{
4191 char_u *p;
4192
4193 if (s != NULL)
4194 for (p = s; *p != NUL; ++p)
4195 if (*p >= 128)
4196 return TRUE;
4197 return FALSE;
4198}
4199#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02004200
Bram Moolenaar85a20022019-12-21 18:25:54 +01004201#ifndef PROTO // proto is defined in vim.h
Bram Moolenaar51628222016-12-01 23:03:28 +01004202# ifdef ELAPSED_TIMEVAL
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004203/*
4204 * Return time in msec since "start_tv".
4205 */
4206 long
4207elapsed(struct timeval *start_tv)
4208{
4209 struct timeval now_tv;
4210
4211 gettimeofday(&now_tv, NULL);
4212 return (now_tv.tv_sec - start_tv->tv_sec) * 1000L
4213 + (now_tv.tv_usec - start_tv->tv_usec) / 1000L;
4214}
Bram Moolenaar51628222016-12-01 23:03:28 +01004215# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004216
Bram Moolenaar51628222016-12-01 23:03:28 +01004217# ifdef ELAPSED_TICKCOUNT
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004218/*
4219 * Return time in msec since "start_tick".
4220 */
4221 long
4222elapsed(DWORD start_tick)
4223{
4224 DWORD now = GetTickCount();
4225
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004226 return (long)now - (long)start_tick;
4227}
Bram Moolenaar51628222016-12-01 23:03:28 +01004228# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004229#endif
Bram Moolenaar20608922018-04-21 22:30:08 +02004230
4231#if defined(FEAT_JOB_CHANNEL) \
4232 || (defined(UNIX) && (!defined(USE_SYSTEM) \
4233 || (defined(FEAT_GUI) && defined(FEAT_TERMINAL)))) \
4234 || defined(PROTO)
4235/*
4236 * Parse "cmd" and put the white-separated parts in "argv".
4237 * "argv" is an allocated array with "argc" entries and room for 4 more.
4238 * Returns FAIL when out of memory.
4239 */
4240 int
4241mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc)
4242{
4243 int i;
4244 char_u *p, *d;
4245 int inquote;
4246
4247 /*
4248 * Do this loop twice:
4249 * 1: find number of arguments
4250 * 2: separate them and build argv[]
4251 */
Bram Moolenaar7851b1c2020-03-26 16:27:38 +01004252 for (i = 1; i <= 2; ++i)
Bram Moolenaar20608922018-04-21 22:30:08 +02004253 {
4254 p = skipwhite(cmd);
4255 inquote = FALSE;
4256 *argc = 0;
Bram Moolenaar7851b1c2020-03-26 16:27:38 +01004257 while (*p != NUL)
Bram Moolenaar20608922018-04-21 22:30:08 +02004258 {
Bram Moolenaar7851b1c2020-03-26 16:27:38 +01004259 if (i == 2)
Bram Moolenaar20608922018-04-21 22:30:08 +02004260 (*argv)[*argc] = (char *)p;
4261 ++*argc;
4262 d = p;
4263 while (*p != NUL && (inquote || (*p != ' ' && *p != TAB)))
4264 {
4265 if (p[0] == '"')
Bram Moolenaar1df2fa42018-10-07 21:36:11 +02004266 // quotes surrounding an argument and are dropped
Bram Moolenaar20608922018-04-21 22:30:08 +02004267 inquote = !inquote;
4268 else
4269 {
Bram Moolenaar1df2fa42018-10-07 21:36:11 +02004270 if (rem_backslash(p))
Bram Moolenaar20608922018-04-21 22:30:08 +02004271 {
Bram Moolenaar1df2fa42018-10-07 21:36:11 +02004272 // First pass: skip over "\ " and "\"".
4273 // Second pass: Remove the backslash.
Bram Moolenaar20608922018-04-21 22:30:08 +02004274 ++p;
4275 }
Bram Moolenaar7851b1c2020-03-26 16:27:38 +01004276 if (i == 2)
Bram Moolenaar20608922018-04-21 22:30:08 +02004277 *d++ = *p;
4278 }
4279 ++p;
4280 }
4281 if (*p == NUL)
4282 {
Bram Moolenaar7851b1c2020-03-26 16:27:38 +01004283 if (i == 2)
Bram Moolenaar20608922018-04-21 22:30:08 +02004284 *d++ = NUL;
4285 break;
4286 }
Bram Moolenaar7851b1c2020-03-26 16:27:38 +01004287 if (i == 2)
Bram Moolenaar20608922018-04-21 22:30:08 +02004288 *d++ = NUL;
4289 p = skipwhite(p + 1);
4290 }
4291 if (*argv == NULL)
4292 {
4293 if (use_shcf)
4294 {
Bram Moolenaar85a20022019-12-21 18:25:54 +01004295 // Account for possible multiple args in p_shcf.
Bram Moolenaar20608922018-04-21 22:30:08 +02004296 p = p_shcf;
4297 for (;;)
4298 {
4299 p = skiptowhite(p);
4300 if (*p == NUL)
4301 break;
4302 ++*argc;
4303 p = skipwhite(p);
4304 }
4305 }
4306
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004307 *argv = ALLOC_MULT(char *, *argc + 4);
Bram Moolenaar85a20022019-12-21 18:25:54 +01004308 if (*argv == NULL) // out of memory
Bram Moolenaar20608922018-04-21 22:30:08 +02004309 return FAIL;
4310 }
4311 }
4312 return OK;
4313}
Bram Moolenaarebe74b72018-04-21 23:34:43 +02004314
4315# if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
4316/*
4317 * Build "argv[argc]" from the string "cmd".
4318 * "argv[argc]" is set to NULL;
4319 * Return FAIL when out of memory.
4320 */
4321 int
4322build_argv_from_string(char_u *cmd, char ***argv, int *argc)
4323{
4324 char_u *cmd_copy;
4325 int i;
4326
Bram Moolenaar85a20022019-12-21 18:25:54 +01004327 // Make a copy, parsing will modify "cmd".
Bram Moolenaarebe74b72018-04-21 23:34:43 +02004328 cmd_copy = vim_strsave(cmd);
4329 if (cmd_copy == NULL
4330 || mch_parse_cmd(cmd_copy, FALSE, argv, argc) == FAIL)
4331 {
4332 vim_free(cmd_copy);
4333 return FAIL;
4334 }
4335 for (i = 0; i < *argc; i++)
4336 (*argv)[i] = (char *)vim_strsave((char_u *)(*argv)[i]);
4337 (*argv)[*argc] = NULL;
4338 vim_free(cmd_copy);
4339 return OK;
4340}
4341
4342/*
4343 * Build "argv[argc]" from the list "l".
4344 * "argv[argc]" is set to NULL;
4345 * Return FAIL when out of memory.
4346 */
4347 int
4348build_argv_from_list(list_T *l, char ***argv, int *argc)
4349{
4350 listitem_T *li;
4351 char_u *s;
4352
Bram Moolenaar85a20022019-12-21 18:25:54 +01004353 // Pass argv[] to mch_call_shell().
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004354 *argv = ALLOC_MULT(char *, l->lv_len + 1);
Bram Moolenaarebe74b72018-04-21 23:34:43 +02004355 if (*argv == NULL)
4356 return FAIL;
4357 *argc = 0;
Bram Moolenaaraeea7212020-04-02 18:50:46 +02004358 FOR_ALL_LIST_ITEMS(l, li)
Bram Moolenaarebe74b72018-04-21 23:34:43 +02004359 {
Bram Moolenaard155d7a2018-12-21 16:04:21 +01004360 s = tv_get_string_chk(&li->li_tv);
Bram Moolenaarebe74b72018-04-21 23:34:43 +02004361 if (s == NULL)
4362 {
4363 int i;
4364
4365 for (i = 0; i < *argc; ++i)
Bram Moolenaardf195602020-04-13 18:13:33 +02004366 VIM_CLEAR((*argv)[i]);
Bram Moolenaarebe74b72018-04-21 23:34:43 +02004367 return FAIL;
4368 }
4369 (*argv)[*argc] = (char *)vim_strsave(s);
4370 *argc += 1;
4371 }
4372 (*argv)[*argc] = NULL;
4373 return OK;
4374}
4375# endif
Bram Moolenaar20608922018-04-21 22:30:08 +02004376#endif
Bram Moolenaar57da6982019-09-13 22:30:11 +02004377
4378/*
4379 * Change the behavior of vterm.
4380 * 0: As usual.
4381 * 1: Windows 10 version 1809
4382 * The bug causes unstable handling of ambiguous width character.
Bram Moolenaar36e7a822019-11-13 21:49:24 +01004383 * 2: Windows 10 version 1903 & 1909
Bram Moolenaar57da6982019-09-13 22:30:11 +02004384 * Use the wrong result because each result is different.
4385 * 3: Windows 10 insider preview (current latest logic)
4386 */
4387 int
4388get_special_pty_type(void)
4389{
4390#ifdef MSWIN
4391 return get_conpty_type();
4392#else
4393 return 0;
4394#endif
4395}