blob: cb31e201bbcc84668f3a2fcb7b72c821ee26c4c1 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * misc1.c: functions that didn't seem to fit elsewhere
12 */
13
14#include "vim.h"
15#include "version.h"
16
Bram Moolenaar071d4272004-06-13 20:20:40 +000017static char_u *vim_version_dir __ARGS((char_u *vimdir));
18static char_u *remove_tail __ARGS((char_u *p, char_u *pend, char_u *name));
Bram Moolenaar06ae70d2013-06-17 19:26:36 +020019#if defined(FEAT_CMDL_COMPL)
Bram Moolenaar01b626c2013-06-16 22:49:14 +020020static void init_users __ARGS((void));
Bram Moolenaar06ae70d2013-06-17 19:26:36 +020021#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000022static int copy_indent __ARGS((int size, char_u *src));
23
Bram Moolenaar24305862012-08-15 14:05:05 +020024/* All user names (for ~user completion as done by shell). */
25#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
26static garray_T ga_users;
27#endif
28
Bram Moolenaar071d4272004-06-13 20:20:40 +000029/*
30 * Count the size (in window cells) of the indent in the current line.
31 */
32 int
33get_indent()
34{
Bram Moolenaar597a4222014-06-25 14:39:50 +020035 return get_indent_str(ml_get_curline(), (int)curbuf->b_p_ts, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000036}
37
38/*
39 * Count the size (in window cells) of the indent in line "lnum".
40 */
41 int
42get_indent_lnum(lnum)
43 linenr_T lnum;
44{
Bram Moolenaar597a4222014-06-25 14:39:50 +020045 return get_indent_str(ml_get(lnum), (int)curbuf->b_p_ts, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000046}
47
48#if defined(FEAT_FOLDING) || defined(PROTO)
49/*
50 * Count the size (in window cells) of the indent in line "lnum" of buffer
51 * "buf".
52 */
53 int
54get_indent_buf(buf, lnum)
55 buf_T *buf;
56 linenr_T lnum;
57{
Bram Moolenaar597a4222014-06-25 14:39:50 +020058 return get_indent_str(ml_get_buf(buf, lnum, FALSE), (int)buf->b_p_ts, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000059}
60#endif
61
62/*
63 * count the size (in window cells) of the indent in line "ptr", with
64 * 'tabstop' at "ts"
65 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +000066 int
Bram Moolenaar597a4222014-06-25 14:39:50 +020067get_indent_str(ptr, ts, list)
Bram Moolenaar071d4272004-06-13 20:20:40 +000068 char_u *ptr;
69 int ts;
Bram Moolenaar597a4222014-06-25 14:39:50 +020070 int list; /* if TRUE, count only screen size for tabs */
Bram Moolenaar071d4272004-06-13 20:20:40 +000071{
72 int count = 0;
73
74 for ( ; *ptr; ++ptr)
75 {
Bram Moolenaar597a4222014-06-25 14:39:50 +020076 if (*ptr == TAB)
77 {
78 if (!list || lcs_tab1) /* count a tab for what it is worth */
79 count += ts - (count % ts);
80 else
Bram Moolenaare4df1642014-08-29 12:58:44 +020081 /* In list mode, when tab is not set, count screen char width
82 * for Tab, displays: ^I */
Bram Moolenaar597a4222014-06-25 14:39:50 +020083 count += ptr2cells(ptr);
84 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000085 else if (*ptr == ' ')
86 ++count; /* count a space for one */
87 else
88 break;
89 }
Bram Moolenaar4399ef42005-02-12 14:29:27 +000090 return count;
Bram Moolenaar071d4272004-06-13 20:20:40 +000091}
92
93/*
94 * Set the indent of the current line.
95 * Leaves the cursor on the first non-blank in the line.
96 * Caller must take care of undo.
97 * "flags":
98 * SIN_CHANGED: call changed_bytes() if the line was changed.
99 * SIN_INSERT: insert the indent in front of the line.
100 * SIN_UNDO: save line for undo before changing it.
101 * Returns TRUE if the line was changed.
102 */
103 int
104set_indent(size, flags)
Bram Moolenaar5002c292007-07-24 13:26:15 +0000105 int size; /* measured in spaces */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106 int flags;
107{
108 char_u *p;
109 char_u *newline;
110 char_u *oldline;
111 char_u *s;
112 int todo;
Bram Moolenaar5002c292007-07-24 13:26:15 +0000113 int ind_len; /* measured in characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114 int line_len;
115 int doit = FALSE;
Bram Moolenaar5002c292007-07-24 13:26:15 +0000116 int ind_done = 0; /* measured in spaces */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117 int tab_pad;
Bram Moolenaar5409c052005-03-18 20:27:04 +0000118 int retval = FALSE;
Bram Moolenaar4d64b782007-08-14 20:16:42 +0000119 int orig_char_len = -1; /* number of initial whitespace chars when
Bram Moolenaar5002c292007-07-24 13:26:15 +0000120 'et' and 'pi' are both set */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121
122 /*
123 * First check if there is anything to do and compute the number of
124 * characters needed for the indent.
125 */
126 todo = size;
127 ind_len = 0;
128 p = oldline = ml_get_curline();
129
130 /* Calculate the buffer size for the new indent, and check to see if it
131 * isn't already set */
132
Bram Moolenaar5002c292007-07-24 13:26:15 +0000133 /* if 'expandtab' isn't set: use TABs; if both 'expandtab' and
134 * 'preserveindent' are set count the number of characters at the
135 * beginning of the line to be copied */
136 if (!curbuf->b_p_et || (!(flags & SIN_INSERT) && curbuf->b_p_pi))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137 {
138 /* If 'preserveindent' is set then reuse as much as possible of
139 * the existing indent structure for the new indent */
140 if (!(flags & SIN_INSERT) && curbuf->b_p_pi)
141 {
142 ind_done = 0;
143
144 /* count as many characters as we can use */
145 while (todo > 0 && vim_iswhite(*p))
146 {
147 if (*p == TAB)
148 {
149 tab_pad = (int)curbuf->b_p_ts
150 - (ind_done % (int)curbuf->b_p_ts);
151 /* stop if this tab will overshoot the target */
152 if (todo < tab_pad)
153 break;
154 todo -= tab_pad;
155 ++ind_len;
156 ind_done += tab_pad;
157 }
158 else
159 {
160 --todo;
161 ++ind_len;
162 ++ind_done;
163 }
164 ++p;
165 }
166
Bram Moolenaar5002c292007-07-24 13:26:15 +0000167 /* Set initial number of whitespace chars to copy if we are
168 * preserving indent but expandtab is set */
169 if (curbuf->b_p_et)
170 orig_char_len = ind_len;
171
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172 /* Fill to next tabstop with a tab, if possible */
173 tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
Bram Moolenaar4d64b782007-08-14 20:16:42 +0000174 if (todo >= tab_pad && orig_char_len == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175 {
176 doit = TRUE;
177 todo -= tab_pad;
178 ++ind_len;
179 /* ind_done += tab_pad; */
180 }
181 }
182
183 /* count tabs required for indent */
184 while (todo >= (int)curbuf->b_p_ts)
185 {
186 if (*p != TAB)
187 doit = TRUE;
188 else
189 ++p;
190 todo -= (int)curbuf->b_p_ts;
191 ++ind_len;
192 /* ind_done += (int)curbuf->b_p_ts; */
193 }
194 }
195 /* count spaces required for indent */
196 while (todo > 0)
197 {
198 if (*p != ' ')
199 doit = TRUE;
200 else
201 ++p;
202 --todo;
203 ++ind_len;
204 /* ++ind_done; */
205 }
206
207 /* Return if the indent is OK already. */
208 if (!doit && !vim_iswhite(*p) && !(flags & SIN_INSERT))
209 return FALSE;
210
211 /* Allocate memory for the new line. */
212 if (flags & SIN_INSERT)
213 p = oldline;
214 else
215 p = skipwhite(p);
216 line_len = (int)STRLEN(p) + 1;
Bram Moolenaar5002c292007-07-24 13:26:15 +0000217
218 /* If 'preserveindent' and 'expandtab' are both set keep the original
219 * characters and allocate accordingly. We will fill the rest with spaces
220 * after the if (!curbuf->b_p_et) below. */
Bram Moolenaar4d64b782007-08-14 20:16:42 +0000221 if (orig_char_len != -1)
Bram Moolenaar5002c292007-07-24 13:26:15 +0000222 {
223 newline = alloc(orig_char_len + size - ind_done + line_len);
224 if (newline == NULL)
225 return FALSE;
Bram Moolenaar4d64b782007-08-14 20:16:42 +0000226 todo = size - ind_done;
227 ind_len = orig_char_len + todo; /* Set total length of indent in
228 * characters, which may have been
229 * undercounted until now */
Bram Moolenaar5002c292007-07-24 13:26:15 +0000230 p = oldline;
231 s = newline;
232 while (orig_char_len > 0)
233 {
234 *s++ = *p++;
235 orig_char_len--;
236 }
Bram Moolenaar913626c2008-01-03 11:43:42 +0000237
Bram Moolenaar5002c292007-07-24 13:26:15 +0000238 /* Skip over any additional white space (useful when newindent is less
239 * than old) */
240 while (vim_iswhite(*p))
Bram Moolenaar913626c2008-01-03 11:43:42 +0000241 ++p;
Bram Moolenaarcc00b952007-08-11 12:32:57 +0000242
Bram Moolenaar5002c292007-07-24 13:26:15 +0000243 }
244 else
245 {
246 todo = size;
247 newline = alloc(ind_len + line_len);
248 if (newline == NULL)
249 return FALSE;
250 s = newline;
251 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252
253 /* Put the characters in the new line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254 /* if 'expandtab' isn't set: use TABs */
255 if (!curbuf->b_p_et)
256 {
257 /* If 'preserveindent' is set then reuse as much as possible of
258 * the existing indent structure for the new indent */
259 if (!(flags & SIN_INSERT) && curbuf->b_p_pi)
260 {
261 p = oldline;
262 ind_done = 0;
263
264 while (todo > 0 && vim_iswhite(*p))
265 {
266 if (*p == TAB)
267 {
268 tab_pad = (int)curbuf->b_p_ts
269 - (ind_done % (int)curbuf->b_p_ts);
270 /* stop if this tab will overshoot the target */
271 if (todo < tab_pad)
272 break;
273 todo -= tab_pad;
274 ind_done += tab_pad;
275 }
276 else
277 {
278 --todo;
279 ++ind_done;
280 }
281 *s++ = *p++;
282 }
283
284 /* Fill to next tabstop with a tab, if possible */
285 tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
286 if (todo >= tab_pad)
287 {
288 *s++ = TAB;
289 todo -= tab_pad;
290 }
291
292 p = skipwhite(p);
293 }
294
295 while (todo >= (int)curbuf->b_p_ts)
296 {
297 *s++ = TAB;
298 todo -= (int)curbuf->b_p_ts;
299 }
300 }
301 while (todo > 0)
302 {
303 *s++ = ' ';
304 --todo;
305 }
306 mch_memmove(s, p, (size_t)line_len);
307
308 /* Replace the line (unless undo fails). */
309 if (!(flags & SIN_UNDO) || u_savesub(curwin->w_cursor.lnum) == OK)
310 {
311 ml_replace(curwin->w_cursor.lnum, newline, FALSE);
312 if (flags & SIN_CHANGED)
313 changed_bytes(curwin->w_cursor.lnum, 0);
Bram Moolenaar2c019c82013-10-06 17:46:56 +0200314 /* Correct saved cursor position if it is in this line. */
315 if (saved_cursor.lnum == curwin->w_cursor.lnum)
316 {
317 if (saved_cursor.col >= (colnr_T)(p - oldline))
318 /* cursor was after the indent, adjust for the number of
319 * bytes added/removed */
320 saved_cursor.col += ind_len - (colnr_T)(p - oldline);
321 else if (saved_cursor.col >= (colnr_T)(s - newline))
322 /* cursor was in the indent, and is now after it, put it back
323 * at the start of the indent (replacing spaces with TAB) */
324 saved_cursor.col = (colnr_T)(s - newline);
325 }
Bram Moolenaar5409c052005-03-18 20:27:04 +0000326 retval = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327 }
328 else
329 vim_free(newline);
330
331 curwin->w_cursor.col = ind_len;
Bram Moolenaar5409c052005-03-18 20:27:04 +0000332 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333}
334
335/*
336 * Copy the indent from ptr to the current line (and fill to size)
337 * Leaves the cursor on the first non-blank in the line.
338 * Returns TRUE if the line was changed.
339 */
340 static int
341copy_indent(size, src)
342 int size;
343 char_u *src;
344{
345 char_u *p = NULL;
346 char_u *line = NULL;
347 char_u *s;
348 int todo;
349 int ind_len;
350 int line_len = 0;
351 int tab_pad;
352 int ind_done;
353 int round;
354
355 /* Round 1: compute the number of characters needed for the indent
356 * Round 2: copy the characters. */
357 for (round = 1; round <= 2; ++round)
358 {
359 todo = size;
360 ind_len = 0;
361 ind_done = 0;
362 s = src;
363
364 /* Count/copy the usable portion of the source line */
365 while (todo > 0 && vim_iswhite(*s))
366 {
367 if (*s == TAB)
368 {
369 tab_pad = (int)curbuf->b_p_ts
370 - (ind_done % (int)curbuf->b_p_ts);
371 /* Stop if this tab will overshoot the target */
372 if (todo < tab_pad)
373 break;
374 todo -= tab_pad;
375 ind_done += tab_pad;
376 }
377 else
378 {
379 --todo;
380 ++ind_done;
381 }
382 ++ind_len;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000383 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384 *p++ = *s;
385 ++s;
386 }
387
388 /* Fill to next tabstop with a tab, if possible */
389 tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
Bram Moolenaarc42e7ed2011-09-07 19:58:09 +0200390 if (todo >= tab_pad && !curbuf->b_p_et)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 {
392 todo -= tab_pad;
393 ++ind_len;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000394 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395 *p++ = TAB;
396 }
397
398 /* Add tabs required for indent */
Bram Moolenaarc42e7ed2011-09-07 19:58:09 +0200399 while (todo >= (int)curbuf->b_p_ts && !curbuf->b_p_et)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400 {
401 todo -= (int)curbuf->b_p_ts;
402 ++ind_len;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000403 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404 *p++ = TAB;
405 }
406
407 /* Count/add spaces required for indent */
408 while (todo > 0)
409 {
410 --todo;
411 ++ind_len;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000412 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413 *p++ = ' ';
414 }
415
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000416 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417 {
418 /* Allocate memory for the result: the copied indent, new indent
419 * and the rest of the line. */
420 line_len = (int)STRLEN(ml_get_curline()) + 1;
421 line = alloc(ind_len + line_len);
422 if (line == NULL)
423 return FALSE;
424 p = line;
425 }
426 }
427
428 /* Append the original line */
429 mch_memmove(p, ml_get_curline(), (size_t)line_len);
430
431 /* Replace the line */
432 ml_replace(curwin->w_cursor.lnum, line, FALSE);
433
434 /* Put the cursor after the indent. */
435 curwin->w_cursor.col = ind_len;
436 return TRUE;
437}
438
439/*
440 * Return the indent of the current line after a number. Return -1 if no
441 * number was found. Used for 'n' in 'formatoptions': numbered list.
Bram Moolenaar86b68352004-12-27 21:59:20 +0000442 * Since a pattern is used it can actually handle more than numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443 */
444 int
445get_number_indent(lnum)
446 linenr_T lnum;
447{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448 colnr_T col;
449 pos_T pos;
450
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200451 regmatch_T regmatch;
452 int lead_len = 0; /* length of comment leader */
453
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454 if (lnum > curbuf->b_ml.ml_line_count)
455 return -1;
Bram Moolenaar86b68352004-12-27 21:59:20 +0000456 pos.lnum = 0;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200457
458#ifdef FEAT_COMMENTS
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200459 /* In format_lines() (i.e. not insert mode), fo+=q is needed too... */
460 if ((State & INSERT) || has_format_option(FO_Q_COMS))
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200461 lead_len = get_leader_len(ml_get(lnum), NULL, FALSE, TRUE);
Bram Moolenaar86b68352004-12-27 21:59:20 +0000462#endif
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200463 regmatch.regprog = vim_regcomp(curbuf->b_p_flp, RE_MAGIC);
464 if (regmatch.regprog != NULL)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200465 {
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200466 regmatch.rm_ic = FALSE;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200467
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200468 /* vim_regexec() expects a pointer to a line. This lets us
469 * start matching for the flp beyond any comment leader... */
470 if (vim_regexec(&regmatch, ml_get(lnum) + lead_len, (colnr_T)0))
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200471 {
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200472 pos.lnum = lnum;
473 pos.col = (colnr_T)(*regmatch.endp - ml_get(lnum));
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200474#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200475 pos.coladd = 0;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200476#endif
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200477 }
Bram Moolenaar473de612013-06-08 18:19:48 +0200478 vim_regfree(regmatch.regprog);
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200479 }
Bram Moolenaar86b68352004-12-27 21:59:20 +0000480
481 if (pos.lnum == 0 || *ml_get_pos(&pos) == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483 getvcol(curwin, &pos, &col, NULL, NULL);
484 return (int)col;
485}
486
Bram Moolenaar597a4222014-06-25 14:39:50 +0200487#if defined(FEAT_LINEBREAK) || defined(PROTO)
488/*
489 * Return appropriate space number for breakindent, taking influencing
490 * parameters into account. Window must be specified, since it is not
491 * necessarily always the current one.
492 */
493 int
494get_breakindent_win(wp, line)
495 win_T *wp;
496 char_u *line; /* start of the line */
497{
498 static int prev_indent = 0; /* cached indent value */
499 static long prev_ts = 0L; /* cached tabstop value */
500 static char_u *prev_line = NULL; /* cached pointer to line */
Bram Moolenaara40aa762014-06-25 22:55:38 +0200501 static int prev_tick = 0; /* changedtick of cached value */
Bram Moolenaar597a4222014-06-25 14:39:50 +0200502 int bri = 0;
503 /* window width minus window margin space, i.e. what rests for text */
504 const int eff_wwidth = W_WIDTH(wp)
505 - ((wp->w_p_nu || wp->w_p_rnu)
506 && (vim_strchr(p_cpo, CPO_NUMCOL) == NULL)
507 ? number_width(wp) + 1 : 0);
508
509 /* used cached indent, unless pointer or 'tabstop' changed */
Bram Moolenaara40aa762014-06-25 22:55:38 +0200510 if (prev_line != line || prev_ts != wp->w_buffer->b_p_ts
511 || prev_tick != wp->w_buffer->b_changedtick)
Bram Moolenaar597a4222014-06-25 14:39:50 +0200512 {
513 prev_line = line;
514 prev_ts = wp->w_buffer->b_p_ts;
Bram Moolenaara40aa762014-06-25 22:55:38 +0200515 prev_tick = wp->w_buffer->b_changedtick;
Bram Moolenaar597a4222014-06-25 14:39:50 +0200516 prev_indent = get_indent_str(line,
Bram Moolenaar9d7a5922014-06-26 21:24:56 +0200517 (int)wp->w_buffer->b_p_ts, wp->w_p_list);
Bram Moolenaar597a4222014-06-25 14:39:50 +0200518 }
Bram Moolenaar9d7a5922014-06-26 21:24:56 +0200519 bri = prev_indent + wp->w_p_brishift;
Bram Moolenaar597a4222014-06-25 14:39:50 +0200520
521 /* indent minus the length of the showbreak string */
Bram Moolenaar597a4222014-06-25 14:39:50 +0200522 if (wp->w_p_brisbr)
523 bri -= vim_strsize(p_sbr);
524
525 /* Add offset for number column, if 'n' is in 'cpoptions' */
526 bri += win_col_off2(wp);
527
528 /* never indent past left window margin */
529 if (bri < 0)
530 bri = 0;
531 /* always leave at least bri_min characters on the left,
532 * if text width is sufficient */
533 else if (bri > eff_wwidth - wp->w_p_brimin)
534 bri = (eff_wwidth - wp->w_p_brimin < 0)
535 ? 0 : eff_wwidth - wp->w_p_brimin;
536
537 return bri;
538}
539#endif
540
541
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
543
544static int cin_is_cinword __ARGS((char_u *line));
545
546/*
547 * Return TRUE if the string "line" starts with a word from 'cinwords'.
548 */
549 static int
550cin_is_cinword(line)
551 char_u *line;
552{
553 char_u *cinw;
554 char_u *cinw_buf;
555 int cinw_len;
556 int retval = FALSE;
557 int len;
558
559 cinw_len = (int)STRLEN(curbuf->b_p_cinw) + 1;
560 cinw_buf = alloc((unsigned)cinw_len);
561 if (cinw_buf != NULL)
562 {
563 line = skipwhite(line);
564 for (cinw = curbuf->b_p_cinw; *cinw; )
565 {
566 len = copy_option_part(&cinw, cinw_buf, cinw_len, ",");
567 if (STRNCMP(line, cinw_buf, len) == 0
568 && (!vim_iswordc(line[len]) || !vim_iswordc(line[len - 1])))
569 {
570 retval = TRUE;
571 break;
572 }
573 }
574 vim_free(cinw_buf);
575 }
576 return retval;
577}
578#endif
579
580/*
581 * open_line: Add a new line below or above the current line.
582 *
583 * For VREPLACE mode, we only add a new line when we get to the end of the
584 * file, otherwise we just start replacing the next line.
585 *
586 * Caller must take care of undo. Since VREPLACE may affect any number of
587 * lines however, it may call u_save_cursor() again when starting to change a
588 * new line.
589 * "flags": OPENLINE_DELSPACES delete spaces after cursor
590 * OPENLINE_DO_COM format comments
591 * OPENLINE_KEEPTRAIL keep trailing spaces
592 * OPENLINE_MARKFIX adjust mark positions after the line break
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200593 * OPENLINE_COM_LIST format comments with list or 2nd line indent
594 *
595 * "second_line_indent": indent for after ^^D in Insert mode or if flag
596 * OPENLINE_COM_LIST
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 *
598 * Return TRUE for success, FALSE for failure
599 */
600 int
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200601open_line(dir, flags, second_line_indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602 int dir; /* FORWARD or BACKWARD */
603 int flags;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200604 int second_line_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605{
606 char_u *saved_line; /* copy of the original line */
607 char_u *next_line = NULL; /* copy of the next line */
608 char_u *p_extra = NULL; /* what goes to next line */
609 int less_cols = 0; /* less columns for mark in new line */
610 int less_cols_off = 0; /* columns to skip for mark adjust */
611 pos_T old_cursor; /* old cursor position */
612 int newcol = 0; /* new cursor column */
613 int newindent = 0; /* auto-indent of the new line */
614 int n;
615 int trunc_line = FALSE; /* truncate current line afterwards */
616 int retval = FALSE; /* return value, default is FAIL */
617#ifdef FEAT_COMMENTS
618 int extra_len = 0; /* length of p_extra string */
619 int lead_len; /* length of comment leader */
620 char_u *lead_flags; /* position in 'comments' for comment leader */
621 char_u *leader = NULL; /* copy of comment leader */
622#endif
623 char_u *allocated = NULL; /* allocated memory */
624#if defined(FEAT_SMARTINDENT) || defined(FEAT_VREPLACE) || defined(FEAT_LISP) \
625 || defined(FEAT_CINDENT) || defined(FEAT_COMMENTS)
626 char_u *p;
627#endif
628 int saved_char = NUL; /* init for GCC */
629#if defined(FEAT_SMARTINDENT) || defined(FEAT_COMMENTS)
630 pos_T *pos;
631#endif
632#ifdef FEAT_SMARTINDENT
633 int do_si = (!p_paste && curbuf->b_p_si
634# ifdef FEAT_CINDENT
635 && !curbuf->b_p_cin
636# endif
637 );
638 int no_si = FALSE; /* reset did_si afterwards */
639 int first_char = NUL; /* init for GCC */
640#endif
641#if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
642 int vreplace_mode;
643#endif
644 int did_append; /* appended a new line */
645 int saved_pi = curbuf->b_p_pi; /* copy of preserveindent setting */
646
647 /*
648 * make a copy of the current line so we can mess with it
649 */
650 saved_line = vim_strsave(ml_get_curline());
651 if (saved_line == NULL) /* out of memory! */
652 return FALSE;
653
654#ifdef FEAT_VREPLACE
655 if (State & VREPLACE_FLAG)
656 {
657 /*
658 * With VREPLACE we make a copy of the next line, which we will be
659 * starting to replace. First make the new line empty and let vim play
660 * with the indenting and comment leader to its heart's content. Then
661 * we grab what it ended up putting on the new line, put back the
662 * original line, and call ins_char() to put each new character onto
663 * the line, replacing what was there before and pushing the right
664 * stuff onto the replace stack. -- webb.
665 */
666 if (curwin->w_cursor.lnum < orig_line_count)
667 next_line = vim_strsave(ml_get(curwin->w_cursor.lnum + 1));
668 else
669 next_line = vim_strsave((char_u *)"");
670 if (next_line == NULL) /* out of memory! */
671 goto theend;
672
673 /*
674 * In VREPLACE mode, a NL replaces the rest of the line, and starts
675 * replacing the next line, so push all of the characters left on the
676 * line onto the replace stack. We'll push any other characters that
677 * might be replaced at the start of the next line (due to autoindent
678 * etc) a bit later.
679 */
680 replace_push(NUL); /* Call twice because BS over NL expects it */
681 replace_push(NUL);
682 p = saved_line + curwin->w_cursor.col;
683 while (*p != NUL)
Bram Moolenaar2c994e82008-01-02 16:49:36 +0000684 {
685#ifdef FEAT_MBYTE
686 if (has_mbyte)
687 p += replace_push_mb(p);
688 else
689#endif
690 replace_push(*p++);
691 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 saved_line[curwin->w_cursor.col] = NUL;
693 }
694#endif
695
696 if ((State & INSERT)
697#ifdef FEAT_VREPLACE
698 && !(State & VREPLACE_FLAG)
699#endif
700 )
701 {
702 p_extra = saved_line + curwin->w_cursor.col;
703#ifdef FEAT_SMARTINDENT
704 if (do_si) /* need first char after new line break */
705 {
706 p = skipwhite(p_extra);
707 first_char = *p;
708 }
709#endif
710#ifdef FEAT_COMMENTS
711 extra_len = (int)STRLEN(p_extra);
712#endif
713 saved_char = *p_extra;
714 *p_extra = NUL;
715 }
716
717 u_clearline(); /* cannot do "U" command when adding lines */
718#ifdef FEAT_SMARTINDENT
719 did_si = FALSE;
720#endif
721 ai_col = 0;
722
723 /*
724 * If we just did an auto-indent, then we didn't type anything on
725 * the prior line, and it should be truncated. Do this even if 'ai' is not
726 * set because automatically inserting a comment leader also sets did_ai.
727 */
728 if (dir == FORWARD && did_ai)
729 trunc_line = TRUE;
730
731 /*
732 * If 'autoindent' and/or 'smartindent' is set, try to figure out what
733 * indent to use for the new line.
734 */
735 if (curbuf->b_p_ai
736#ifdef FEAT_SMARTINDENT
737 || do_si
738#endif
739 )
740 {
741 /*
742 * count white space on current line
743 */
Bram Moolenaar597a4222014-06-25 14:39:50 +0200744 newindent = get_indent_str(saved_line, (int)curbuf->b_p_ts, FALSE);
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200745 if (newindent == 0 && !(flags & OPENLINE_COM_LIST))
746 newindent = second_line_indent; /* for ^^D command in insert mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747
748#ifdef FEAT_SMARTINDENT
749 /*
750 * Do smart indenting.
751 * In insert/replace mode (only when dir == FORWARD)
752 * we may move some text to the next line. If it starts with '{'
753 * don't add an indent. Fixes inserting a NL before '{' in line
754 * "if (condition) {"
755 */
756 if (!trunc_line && do_si && *saved_line != NUL
757 && (p_extra == NULL || first_char != '{'))
758 {
759 char_u *ptr;
760 char_u last_char;
761
762 old_cursor = curwin->w_cursor;
763 ptr = saved_line;
764# ifdef FEAT_COMMENTS
765 if (flags & OPENLINE_DO_COM)
Bram Moolenaar81340392012-06-06 16:12:59 +0200766 lead_len = get_leader_len(ptr, NULL, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 else
768 lead_len = 0;
769# endif
770 if (dir == FORWARD)
771 {
772 /*
773 * Skip preprocessor directives, unless they are
774 * recognised as comments.
775 */
776 if (
777# ifdef FEAT_COMMENTS
778 lead_len == 0 &&
779# endif
780 ptr[0] == '#')
781 {
782 while (ptr[0] == '#' && curwin->w_cursor.lnum > 1)
783 ptr = ml_get(--curwin->w_cursor.lnum);
784 newindent = get_indent();
785 }
786# ifdef FEAT_COMMENTS
787 if (flags & OPENLINE_DO_COM)
Bram Moolenaar81340392012-06-06 16:12:59 +0200788 lead_len = get_leader_len(ptr, NULL, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 else
790 lead_len = 0;
791 if (lead_len > 0)
792 {
793 /*
794 * This case gets the following right:
795 * \*
796 * * A comment (read '\' as '/').
797 * *\
798 * #define IN_THE_WAY
799 * This should line up here;
800 */
801 p = skipwhite(ptr);
802 if (p[0] == '/' && p[1] == '*')
803 p++;
804 if (p[0] == '*')
805 {
806 for (p++; *p; p++)
807 {
808 if (p[0] == '/' && p[-1] == '*')
809 {
810 /*
811 * End of C comment, indent should line up
812 * with the line containing the start of
813 * the comment
814 */
815 curwin->w_cursor.col = (colnr_T)(p - ptr);
816 if ((pos = findmatch(NULL, NUL)) != NULL)
817 {
818 curwin->w_cursor.lnum = pos->lnum;
819 newindent = get_indent();
820 }
821 }
822 }
823 }
824 }
825 else /* Not a comment line */
826# endif
827 {
828 /* Find last non-blank in line */
829 p = ptr + STRLEN(ptr) - 1;
830 while (p > ptr && vim_iswhite(*p))
831 --p;
832 last_char = *p;
833
834 /*
835 * find the character just before the '{' or ';'
836 */
837 if (last_char == '{' || last_char == ';')
838 {
839 if (p > ptr)
840 --p;
841 while (p > ptr && vim_iswhite(*p))
842 --p;
843 }
844 /*
845 * Try to catch lines that are split over multiple
846 * lines. eg:
847 * if (condition &&
848 * condition) {
849 * Should line up here!
850 * }
851 */
852 if (*p == ')')
853 {
854 curwin->w_cursor.col = (colnr_T)(p - ptr);
855 if ((pos = findmatch(NULL, '(')) != NULL)
856 {
857 curwin->w_cursor.lnum = pos->lnum;
858 newindent = get_indent();
859 ptr = ml_get_curline();
860 }
861 }
862 /*
863 * If last character is '{' do indent, without
864 * checking for "if" and the like.
865 */
866 if (last_char == '{')
867 {
868 did_si = TRUE; /* do indent */
869 no_si = TRUE; /* don't delete it when '{' typed */
870 }
871 /*
872 * Look for "if" and the like, use 'cinwords'.
873 * Don't do this if the previous line ended in ';' or
874 * '}'.
875 */
876 else if (last_char != ';' && last_char != '}'
877 && cin_is_cinword(ptr))
878 did_si = TRUE;
879 }
880 }
881 else /* dir == BACKWARD */
882 {
883 /*
884 * Skip preprocessor directives, unless they are
885 * recognised as comments.
886 */
887 if (
888# ifdef FEAT_COMMENTS
889 lead_len == 0 &&
890# endif
891 ptr[0] == '#')
892 {
893 int was_backslashed = FALSE;
894
895 while ((ptr[0] == '#' || was_backslashed) &&
896 curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
897 {
898 if (*ptr && ptr[STRLEN(ptr) - 1] == '\\')
899 was_backslashed = TRUE;
900 else
901 was_backslashed = FALSE;
902 ptr = ml_get(++curwin->w_cursor.lnum);
903 }
904 if (was_backslashed)
905 newindent = 0; /* Got to end of file */
906 else
907 newindent = get_indent();
908 }
909 p = skipwhite(ptr);
910 if (*p == '}') /* if line starts with '}': do indent */
911 did_si = TRUE;
912 else /* can delete indent when '{' typed */
913 can_si_back = TRUE;
914 }
915 curwin->w_cursor = old_cursor;
916 }
917 if (do_si)
918 can_si = TRUE;
919#endif /* FEAT_SMARTINDENT */
920
921 did_ai = TRUE;
922 }
923
924#ifdef FEAT_COMMENTS
925 /*
926 * Find out if the current line starts with a comment leader.
927 * This may then be inserted in front of the new line.
928 */
929 end_comment_pending = NUL;
930 if (flags & OPENLINE_DO_COM)
Bram Moolenaar81340392012-06-06 16:12:59 +0200931 lead_len = get_leader_len(saved_line, &lead_flags, dir == BACKWARD, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 else
933 lead_len = 0;
934 if (lead_len > 0)
935 {
936 char_u *lead_repl = NULL; /* replaces comment leader */
937 int lead_repl_len = 0; /* length of *lead_repl */
938 char_u lead_middle[COM_MAX_LEN]; /* middle-comment string */
939 char_u lead_end[COM_MAX_LEN]; /* end-comment string */
940 char_u *comment_end = NULL; /* where lead_end has been found */
941 int extra_space = FALSE; /* append extra space */
942 int current_flag;
943 int require_blank = FALSE; /* requires blank after middle */
944 char_u *p2;
945
946 /*
947 * If the comment leader has the start, middle or end flag, it may not
948 * be used or may be replaced with the middle leader.
949 */
950 for (p = lead_flags; *p && *p != ':'; ++p)
951 {
952 if (*p == COM_BLANK)
953 {
954 require_blank = TRUE;
955 continue;
956 }
957 if (*p == COM_START || *p == COM_MIDDLE)
958 {
959 current_flag = *p;
960 if (*p == COM_START)
961 {
962 /*
963 * Doing "O" on a start of comment does not insert leader.
964 */
965 if (dir == BACKWARD)
966 {
967 lead_len = 0;
968 break;
969 }
970
971 /* find start of middle part */
972 (void)copy_option_part(&p, lead_middle, COM_MAX_LEN, ",");
973 require_blank = FALSE;
974 }
975
976 /*
977 * Isolate the strings of the middle and end leader.
978 */
979 while (*p && p[-1] != ':') /* find end of middle flags */
980 {
981 if (*p == COM_BLANK)
982 require_blank = TRUE;
983 ++p;
984 }
985 (void)copy_option_part(&p, lead_middle, COM_MAX_LEN, ",");
986
987 while (*p && p[-1] != ':') /* find end of end flags */
988 {
989 /* Check whether we allow automatic ending of comments */
990 if (*p == COM_AUTO_END)
991 end_comment_pending = -1; /* means we want to set it */
992 ++p;
993 }
994 n = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
995
996 if (end_comment_pending == -1) /* we can set it now */
997 end_comment_pending = lead_end[n - 1];
998
999 /*
1000 * If the end of the comment is in the same line, don't use
1001 * the comment leader.
1002 */
1003 if (dir == FORWARD)
1004 {
1005 for (p = saved_line + lead_len; *p; ++p)
1006 if (STRNCMP(p, lead_end, n) == 0)
1007 {
1008 comment_end = p;
1009 lead_len = 0;
1010 break;
1011 }
1012 }
1013
1014 /*
1015 * Doing "o" on a start of comment inserts the middle leader.
1016 */
1017 if (lead_len > 0)
1018 {
1019 if (current_flag == COM_START)
1020 {
1021 lead_repl = lead_middle;
1022 lead_repl_len = (int)STRLEN(lead_middle);
1023 }
1024
1025 /*
1026 * If we have hit RETURN immediately after the start
1027 * comment leader, then put a space after the middle
1028 * comment leader on the next line.
1029 */
1030 if (!vim_iswhite(saved_line[lead_len - 1])
1031 && ((p_extra != NULL
1032 && (int)curwin->w_cursor.col == lead_len)
1033 || (p_extra == NULL
1034 && saved_line[lead_len] == NUL)
1035 || require_blank))
1036 extra_space = TRUE;
1037 }
1038 break;
1039 }
1040 if (*p == COM_END)
1041 {
1042 /*
1043 * Doing "o" on the end of a comment does not insert leader.
1044 * Remember where the end is, might want to use it to find the
1045 * start (for C-comments).
1046 */
1047 if (dir == FORWARD)
1048 {
1049 comment_end = skipwhite(saved_line);
1050 lead_len = 0;
1051 break;
1052 }
1053
1054 /*
1055 * Doing "O" on the end of a comment inserts the middle leader.
1056 * Find the string for the middle leader, searching backwards.
1057 */
1058 while (p > curbuf->b_p_com && *p != ',')
1059 --p;
1060 for (lead_repl = p; lead_repl > curbuf->b_p_com
1061 && lead_repl[-1] != ':'; --lead_repl)
1062 ;
1063 lead_repl_len = (int)(p - lead_repl);
1064
1065 /* We can probably always add an extra space when doing "O" on
1066 * the comment-end */
1067 extra_space = TRUE;
1068
1069 /* Check whether we allow automatic ending of comments */
1070 for (p2 = p; *p2 && *p2 != ':'; p2++)
1071 {
1072 if (*p2 == COM_AUTO_END)
1073 end_comment_pending = -1; /* means we want to set it */
1074 }
1075 if (end_comment_pending == -1)
1076 {
1077 /* Find last character in end-comment string */
1078 while (*p2 && *p2 != ',')
1079 p2++;
1080 end_comment_pending = p2[-1];
1081 }
1082 break;
1083 }
1084 if (*p == COM_FIRST)
1085 {
1086 /*
1087 * Comment leader for first line only: Don't repeat leader
1088 * when using "O", blank out leader when using "o".
1089 */
1090 if (dir == BACKWARD)
1091 lead_len = 0;
1092 else
1093 {
1094 lead_repl = (char_u *)"";
1095 lead_repl_len = 0;
1096 }
1097 break;
1098 }
1099 }
1100 if (lead_len)
1101 {
Bram Moolenaardc7e85e2012-06-20 12:40:08 +02001102 /* allocate buffer (may concatenate p_extra later) */
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001103 leader = alloc(lead_len + lead_repl_len + extra_space + extra_len
Bram Moolenaardc7e85e2012-06-20 12:40:08 +02001104 + (second_line_indent > 0 ? second_line_indent : 0) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 allocated = leader; /* remember to free it later */
1106
1107 if (leader == NULL)
1108 lead_len = 0;
1109 else
1110 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00001111 vim_strncpy(leader, saved_line, lead_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112
1113 /*
1114 * Replace leader with lead_repl, right or left adjusted
1115 */
1116 if (lead_repl != NULL)
1117 {
1118 int c = 0;
1119 int off = 0;
1120
Bram Moolenaard7d5b472009-11-11 16:30:08 +00001121 for (p = lead_flags; *p != NUL && *p != ':'; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122 {
1123 if (*p == COM_RIGHT || *p == COM_LEFT)
Bram Moolenaard7d5b472009-11-11 16:30:08 +00001124 c = *p++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125 else if (VIM_ISDIGIT(*p) || *p == '-')
1126 off = getdigits(&p);
Bram Moolenaard7d5b472009-11-11 16:30:08 +00001127 else
1128 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 }
1130 if (c == COM_RIGHT) /* right adjusted leader */
1131 {
1132 /* find last non-white in the leader to line up with */
1133 for (p = leader + lead_len - 1; p > leader
1134 && vim_iswhite(*p); --p)
1135 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 ++p;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001137
1138#ifdef FEAT_MBYTE
1139 /* Compute the length of the replaced characters in
1140 * screen characters, not bytes. */
1141 {
1142 int repl_size = vim_strnsize(lead_repl,
1143 lead_repl_len);
1144 int old_size = 0;
1145 char_u *endp = p;
1146 int l;
1147
1148 while (old_size < repl_size && p > leader)
1149 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001150 mb_ptr_back(leader, p);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001151 old_size += ptr2cells(p);
1152 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001153 l = lead_repl_len - (int)(endp - p);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001154 if (l != 0)
1155 mch_memmove(endp + l, endp,
1156 (size_t)((leader + lead_len) - endp));
1157 lead_len += l;
1158 }
1159#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 if (p < leader + lead_repl_len)
1161 p = leader;
1162 else
1163 p -= lead_repl_len;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001164#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 mch_memmove(p, lead_repl, (size_t)lead_repl_len);
1166 if (p + lead_repl_len > leader + lead_len)
1167 p[lead_repl_len] = NUL;
1168
1169 /* blank-out any other chars from the old leader. */
1170 while (--p >= leader)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001171 {
1172#ifdef FEAT_MBYTE
1173 int l = mb_head_off(leader, p);
1174
1175 if (l > 1)
1176 {
1177 p -= l;
1178 if (ptr2cells(p) > 1)
1179 {
1180 p[1] = ' ';
1181 --l;
1182 }
1183 mch_memmove(p + 1, p + l + 1,
1184 (size_t)((leader + lead_len) - (p + l + 1)));
1185 lead_len -= l;
1186 *p = ' ';
1187 }
1188 else
1189#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 if (!vim_iswhite(*p))
1191 *p = ' ';
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001192 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 }
1194 else /* left adjusted leader */
1195 {
1196 p = skipwhite(leader);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001197#ifdef FEAT_MBYTE
1198 /* Compute the length of the replaced characters in
1199 * screen characters, not bytes. Move the part that is
1200 * not to be overwritten. */
1201 {
1202 int repl_size = vim_strnsize(lead_repl,
1203 lead_repl_len);
1204 int i;
1205 int l;
1206
1207 for (i = 0; p[i] != NUL && i < lead_len; i += l)
1208 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001209 l = (*mb_ptr2len)(p + i);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001210 if (vim_strnsize(p, i + l) > repl_size)
1211 break;
1212 }
1213 if (i != lead_repl_len)
1214 {
1215 mch_memmove(p + lead_repl_len, p + i,
Bram Moolenaar2d7ff052009-11-17 15:08:26 +00001216 (size_t)(lead_len - i - (p - leader)));
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001217 lead_len += lead_repl_len - i;
1218 }
1219 }
1220#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 mch_memmove(p, lead_repl, (size_t)lead_repl_len);
1222
1223 /* Replace any remaining non-white chars in the old
1224 * leader by spaces. Keep Tabs, the indent must
1225 * remain the same. */
1226 for (p += lead_repl_len; p < leader + lead_len; ++p)
1227 if (!vim_iswhite(*p))
1228 {
1229 /* Don't put a space before a TAB. */
1230 if (p + 1 < leader + lead_len && p[1] == TAB)
1231 {
1232 --lead_len;
1233 mch_memmove(p, p + 1,
1234 (leader + lead_len) - p);
1235 }
1236 else
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001237 {
1238#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001239 int l = (*mb_ptr2len)(p);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001240
1241 if (l > 1)
1242 {
1243 if (ptr2cells(p) > 1)
1244 {
1245 /* Replace a double-wide char with
1246 * two spaces */
1247 --l;
1248 *p++ = ' ';
1249 }
1250 mch_memmove(p + 1, p + l,
1251 (leader + lead_len) - p);
1252 lead_len -= l - 1;
1253 }
1254#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 *p = ' ';
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001256 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 }
1258 *p = NUL;
1259 }
1260
1261 /* Recompute the indent, it may have changed. */
1262 if (curbuf->b_p_ai
1263#ifdef FEAT_SMARTINDENT
1264 || do_si
1265#endif
1266 )
Bram Moolenaar597a4222014-06-25 14:39:50 +02001267 newindent = get_indent_str(leader, (int)curbuf->b_p_ts, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268
1269 /* Add the indent offset */
1270 if (newindent + off < 0)
1271 {
1272 off = -newindent;
1273 newindent = 0;
1274 }
1275 else
1276 newindent += off;
1277
1278 /* Correct trailing spaces for the shift, so that
1279 * alignment remains equal. */
1280 while (off > 0 && lead_len > 0
1281 && leader[lead_len - 1] == ' ')
1282 {
1283 /* Don't do it when there is a tab before the space */
1284 if (vim_strchr(skipwhite(leader), '\t') != NULL)
1285 break;
1286 --lead_len;
1287 --off;
1288 }
1289
1290 /* If the leader ends in white space, don't add an
1291 * extra space */
1292 if (lead_len > 0 && vim_iswhite(leader[lead_len - 1]))
1293 extra_space = FALSE;
1294 leader[lead_len] = NUL;
1295 }
1296
1297 if (extra_space)
1298 {
1299 leader[lead_len++] = ' ';
1300 leader[lead_len] = NUL;
1301 }
1302
1303 newcol = lead_len;
1304
1305 /*
1306 * if a new indent will be set below, remove the indent that
1307 * is in the comment leader
1308 */
1309 if (newindent
1310#ifdef FEAT_SMARTINDENT
1311 || did_si
1312#endif
1313 )
1314 {
1315 while (lead_len && vim_iswhite(*leader))
1316 {
1317 --lead_len;
1318 --newcol;
1319 ++leader;
1320 }
1321 }
1322
1323 }
1324#ifdef FEAT_SMARTINDENT
1325 did_si = can_si = FALSE;
1326#endif
1327 }
1328 else if (comment_end != NULL)
1329 {
1330 /*
1331 * We have finished a comment, so we don't use the leader.
1332 * If this was a C-comment and 'ai' or 'si' is set do a normal
1333 * indent to align with the line containing the start of the
1334 * comment.
1335 */
1336 if (comment_end[0] == '*' && comment_end[1] == '/' &&
1337 (curbuf->b_p_ai
1338#ifdef FEAT_SMARTINDENT
1339 || do_si
1340#endif
1341 ))
1342 {
1343 old_cursor = curwin->w_cursor;
1344 curwin->w_cursor.col = (colnr_T)(comment_end - saved_line);
1345 if ((pos = findmatch(NULL, NUL)) != NULL)
1346 {
1347 curwin->w_cursor.lnum = pos->lnum;
1348 newindent = get_indent();
1349 }
1350 curwin->w_cursor = old_cursor;
1351 }
1352 }
1353 }
1354#endif
1355
1356 /* (State == INSERT || State == REPLACE), only when dir == FORWARD */
1357 if (p_extra != NULL)
1358 {
1359 *p_extra = saved_char; /* restore char that NUL replaced */
1360
1361 /*
1362 * When 'ai' set or "flags" has OPENLINE_DELSPACES, skip to the first
1363 * non-blank.
1364 *
1365 * When in REPLACE mode, put the deleted blanks on the replace stack,
1366 * preceded by a NUL, so they can be put back when a BS is entered.
1367 */
1368 if (REPLACE_NORMAL(State))
1369 replace_push(NUL); /* end of extra blanks */
1370 if (curbuf->b_p_ai || (flags & OPENLINE_DELSPACES))
1371 {
1372 while ((*p_extra == ' ' || *p_extra == '\t')
1373#ifdef FEAT_MBYTE
1374 && (!enc_utf8
1375 || !utf_iscomposing(utf_ptr2char(p_extra + 1)))
1376#endif
1377 )
1378 {
1379 if (REPLACE_NORMAL(State))
1380 replace_push(*p_extra);
1381 ++p_extra;
1382 ++less_cols_off;
1383 }
1384 }
1385 if (*p_extra != NUL)
1386 did_ai = FALSE; /* append some text, don't truncate now */
1387
1388 /* columns for marks adjusted for removed columns */
1389 less_cols = (int)(p_extra - saved_line);
1390 }
1391
1392 if (p_extra == NULL)
1393 p_extra = (char_u *)""; /* append empty line */
1394
1395#ifdef FEAT_COMMENTS
1396 /* concatenate leader and p_extra, if there is a leader */
1397 if (lead_len)
1398 {
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001399 if (flags & OPENLINE_COM_LIST && second_line_indent > 0)
1400 {
1401 int i;
Bram Moolenaar36105782012-06-14 20:59:25 +02001402 int padding = second_line_indent
1403 - (newindent + (int)STRLEN(leader));
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001404
1405 /* Here whitespace is inserted after the comment char.
1406 * Below, set_indent(newindent, SIN_INSERT) will insert the
1407 * whitespace needed before the comment char. */
1408 for (i = 0; i < padding; i++)
1409 {
1410 STRCAT(leader, " ");
Bram Moolenaar5fb9ec52012-07-25 16:10:03 +02001411 less_cols--;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001412 newcol++;
1413 }
1414 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415 STRCAT(leader, p_extra);
1416 p_extra = leader;
1417 did_ai = TRUE; /* So truncating blanks works with comments */
1418 less_cols -= lead_len;
1419 }
1420 else
1421 end_comment_pending = NUL; /* turns out there was no leader */
1422#endif
1423
1424 old_cursor = curwin->w_cursor;
1425 if (dir == BACKWARD)
1426 --curwin->w_cursor.lnum;
1427#ifdef FEAT_VREPLACE
1428 if (!(State & VREPLACE_FLAG) || old_cursor.lnum >= orig_line_count)
1429#endif
1430 {
1431 if (ml_append(curwin->w_cursor.lnum, p_extra, (colnr_T)0, FALSE)
1432 == FAIL)
1433 goto theend;
1434 /* Postpone calling changed_lines(), because it would mess up folding
1435 * with markers. */
1436 mark_adjust(curwin->w_cursor.lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
1437 did_append = TRUE;
1438 }
1439#ifdef FEAT_VREPLACE
1440 else
1441 {
1442 /*
1443 * In VREPLACE mode we are starting to replace the next line.
1444 */
1445 curwin->w_cursor.lnum++;
1446 if (curwin->w_cursor.lnum >= Insstart.lnum + vr_lines_changed)
1447 {
1448 /* In case we NL to a new line, BS to the previous one, and NL
1449 * again, we don't want to save the new line for undo twice.
1450 */
1451 (void)u_save_cursor(); /* errors are ignored! */
1452 vr_lines_changed++;
1453 }
1454 ml_replace(curwin->w_cursor.lnum, p_extra, TRUE);
1455 changed_bytes(curwin->w_cursor.lnum, 0);
1456 curwin->w_cursor.lnum--;
1457 did_append = FALSE;
1458 }
1459#endif
1460
1461 if (newindent
1462#ifdef FEAT_SMARTINDENT
1463 || did_si
1464#endif
1465 )
1466 {
1467 ++curwin->w_cursor.lnum;
1468#ifdef FEAT_SMARTINDENT
1469 if (did_si)
1470 {
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001471 int sw = (int)get_sw_value(curbuf);
Bram Moolenaar14f24742012-08-08 18:01:05 +02001472
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473 if (p_sr)
Bram Moolenaar14f24742012-08-08 18:01:05 +02001474 newindent -= newindent % sw;
1475 newindent += sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 }
1477#endif
Bram Moolenaar5002c292007-07-24 13:26:15 +00001478 /* Copy the indent */
1479 if (curbuf->b_p_ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480 {
1481 (void)copy_indent(newindent, saved_line);
1482
1483 /*
1484 * Set the 'preserveindent' option so that any further screwing
1485 * with the line doesn't entirely destroy our efforts to preserve
1486 * it. It gets restored at the function end.
1487 */
1488 curbuf->b_p_pi = TRUE;
1489 }
1490 else
1491 (void)set_indent(newindent, SIN_INSERT);
1492 less_cols -= curwin->w_cursor.col;
1493
1494 ai_col = curwin->w_cursor.col;
1495
1496 /*
1497 * In REPLACE mode, for each character in the new indent, there must
1498 * be a NUL on the replace stack, for when it is deleted with BS
1499 */
1500 if (REPLACE_NORMAL(State))
1501 for (n = 0; n < (int)curwin->w_cursor.col; ++n)
1502 replace_push(NUL);
1503 newcol += curwin->w_cursor.col;
1504#ifdef FEAT_SMARTINDENT
1505 if (no_si)
1506 did_si = FALSE;
1507#endif
1508 }
1509
1510#ifdef FEAT_COMMENTS
1511 /*
1512 * In REPLACE mode, for each character in the extra leader, there must be
1513 * a NUL on the replace stack, for when it is deleted with BS.
1514 */
1515 if (REPLACE_NORMAL(State))
1516 while (lead_len-- > 0)
1517 replace_push(NUL);
1518#endif
1519
1520 curwin->w_cursor = old_cursor;
1521
1522 if (dir == FORWARD)
1523 {
1524 if (trunc_line || (State & INSERT))
1525 {
1526 /* truncate current line at cursor */
1527 saved_line[curwin->w_cursor.col] = NUL;
1528 /* Remove trailing white space, unless OPENLINE_KEEPTRAIL used. */
1529 if (trunc_line && !(flags & OPENLINE_KEEPTRAIL))
1530 truncate_spaces(saved_line);
1531 ml_replace(curwin->w_cursor.lnum, saved_line, FALSE);
1532 saved_line = NULL;
1533 if (did_append)
1534 {
1535 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1536 curwin->w_cursor.lnum + 1, 1L);
1537 did_append = FALSE;
1538
1539 /* Move marks after the line break to the new line. */
1540 if (flags & OPENLINE_MARKFIX)
1541 mark_col_adjust(curwin->w_cursor.lnum,
1542 curwin->w_cursor.col + less_cols_off,
1543 1L, (long)-less_cols);
1544 }
1545 else
1546 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
1547 }
1548
1549 /*
1550 * Put the cursor on the new line. Careful: the scrollup() above may
1551 * have moved w_cursor, we must use old_cursor.
1552 */
1553 curwin->w_cursor.lnum = old_cursor.lnum + 1;
1554 }
1555 if (did_append)
1556 changed_lines(curwin->w_cursor.lnum, 0, curwin->w_cursor.lnum, 1L);
1557
1558 curwin->w_cursor.col = newcol;
1559#ifdef FEAT_VIRTUALEDIT
1560 curwin->w_cursor.coladd = 0;
1561#endif
1562
1563#if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
1564 /*
1565 * In VREPLACE mode, we are handling the replace stack ourselves, so stop
1566 * fixthisline() from doing it (via change_indent()) by telling it we're in
1567 * normal INSERT mode.
1568 */
1569 if (State & VREPLACE_FLAG)
1570 {
1571 vreplace_mode = State; /* So we know to put things right later */
1572 State = INSERT;
1573 }
1574 else
1575 vreplace_mode = 0;
1576#endif
1577#ifdef FEAT_LISP
1578 /*
1579 * May do lisp indenting.
1580 */
1581 if (!p_paste
1582# ifdef FEAT_COMMENTS
1583 && leader == NULL
1584# endif
1585 && curbuf->b_p_lisp
1586 && curbuf->b_p_ai)
1587 {
1588 fixthisline(get_lisp_indent);
1589 p = ml_get_curline();
1590 ai_col = (colnr_T)(skipwhite(p) - p);
1591 }
1592#endif
1593#ifdef FEAT_CINDENT
1594 /*
1595 * May do indenting after opening a new line.
1596 */
1597 if (!p_paste
1598 && (curbuf->b_p_cin
1599# ifdef FEAT_EVAL
1600 || *curbuf->b_p_inde != NUL
1601# endif
1602 )
1603 && in_cinkeys(dir == FORWARD
1604 ? KEY_OPEN_FORW
1605 : KEY_OPEN_BACK, ' ', linewhite(curwin->w_cursor.lnum)))
1606 {
1607 do_c_expr_indent();
1608 p = ml_get_curline();
1609 ai_col = (colnr_T)(skipwhite(p) - p);
1610 }
1611#endif
1612#if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
1613 if (vreplace_mode != 0)
1614 State = vreplace_mode;
1615#endif
1616
1617#ifdef FEAT_VREPLACE
1618 /*
1619 * Finally, VREPLACE gets the stuff on the new line, then puts back the
1620 * original line, and inserts the new stuff char by char, pushing old stuff
1621 * onto the replace stack (via ins_char()).
1622 */
1623 if (State & VREPLACE_FLAG)
1624 {
1625 /* Put new line in p_extra */
1626 p_extra = vim_strsave(ml_get_curline());
1627 if (p_extra == NULL)
1628 goto theend;
1629
1630 /* Put back original line */
1631 ml_replace(curwin->w_cursor.lnum, next_line, FALSE);
1632
1633 /* Insert new stuff into line again */
1634 curwin->w_cursor.col = 0;
1635#ifdef FEAT_VIRTUALEDIT
1636 curwin->w_cursor.coladd = 0;
1637#endif
1638 ins_bytes(p_extra); /* will call changed_bytes() */
1639 vim_free(p_extra);
1640 next_line = NULL;
1641 }
1642#endif
1643
1644 retval = TRUE; /* success! */
1645theend:
1646 curbuf->b_p_pi = saved_pi;
1647 vim_free(saved_line);
1648 vim_free(next_line);
1649 vim_free(allocated);
1650 return retval;
1651}
1652
1653#if defined(FEAT_COMMENTS) || defined(PROTO)
1654/*
Bram Moolenaar2c019c82013-10-06 17:46:56 +02001655 * get_leader_len() returns the length in bytes of the prefix of the given
1656 * string which introduces a comment. If this string is not a comment then
1657 * 0 is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658 * When "flags" is not NULL, it is set to point to the flags of the recognized
1659 * comment leader.
1660 * "backward" must be true for the "O" command.
Bram Moolenaar81340392012-06-06 16:12:59 +02001661 * If "include_space" is set, include trailing whitespace while calculating the
1662 * length.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 */
1664 int
Bram Moolenaar81340392012-06-06 16:12:59 +02001665get_leader_len(line, flags, backward, include_space)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 char_u *line;
1667 char_u **flags;
1668 int backward;
Bram Moolenaar81340392012-06-06 16:12:59 +02001669 int include_space;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670{
1671 int i, j;
Bram Moolenaar81340392012-06-06 16:12:59 +02001672 int result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 int got_com = FALSE;
1674 int found_one;
1675 char_u part_buf[COM_MAX_LEN]; /* buffer for one option part */
1676 char_u *string; /* pointer to comment string */
1677 char_u *list;
Bram Moolenaara4271d52011-05-10 13:38:27 +02001678 int middle_match_len = 0;
1679 char_u *prev_list;
Bram Moolenaar05da4282011-05-10 14:44:11 +02001680 char_u *saved_flags = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681
Bram Moolenaar81340392012-06-06 16:12:59 +02001682 result = i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683 while (vim_iswhite(line[i])) /* leading white space is ignored */
1684 ++i;
1685
1686 /*
1687 * Repeat to match several nested comment strings.
1688 */
Bram Moolenaara4271d52011-05-10 13:38:27 +02001689 while (line[i] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690 {
1691 /*
1692 * scan through the 'comments' option for a match
1693 */
1694 found_one = FALSE;
1695 for (list = curbuf->b_p_com; *list; )
1696 {
Bram Moolenaara4271d52011-05-10 13:38:27 +02001697 /* Get one option part into part_buf[]. Advance "list" to next
1698 * one. Put "string" at start of string. */
1699 if (!got_com && flags != NULL)
1700 *flags = list; /* remember where flags started */
1701 prev_list = list;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702 (void)copy_option_part(&list, part_buf, COM_MAX_LEN, ",");
1703 string = vim_strchr(part_buf, ':');
1704 if (string == NULL) /* missing ':', ignore this part */
1705 continue;
1706 *string++ = NUL; /* isolate flags from string */
1707
Bram Moolenaara4271d52011-05-10 13:38:27 +02001708 /* If we found a middle match previously, use that match when this
1709 * is not a middle or end. */
1710 if (middle_match_len != 0
1711 && vim_strchr(part_buf, COM_MIDDLE) == NULL
1712 && vim_strchr(part_buf, COM_END) == NULL)
1713 break;
1714
1715 /* When we already found a nested comment, only accept further
1716 * nested comments. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 if (got_com && vim_strchr(part_buf, COM_NEST) == NULL)
1718 continue;
1719
Bram Moolenaara4271d52011-05-10 13:38:27 +02001720 /* When 'O' flag present and using "O" command skip this one. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 if (backward && vim_strchr(part_buf, COM_NOBACK) != NULL)
1722 continue;
1723
Bram Moolenaara4271d52011-05-10 13:38:27 +02001724 /* Line contents and string must match.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725 * When string starts with white space, must have some white space
1726 * (but the amount does not need to match, there might be a mix of
Bram Moolenaara4271d52011-05-10 13:38:27 +02001727 * TABs and spaces). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728 if (vim_iswhite(string[0]))
1729 {
1730 if (i == 0 || !vim_iswhite(line[i - 1]))
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001731 continue; /* missing white space */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 while (vim_iswhite(string[0]))
1733 ++string;
1734 }
1735 for (j = 0; string[j] != NUL && string[j] == line[i + j]; ++j)
1736 ;
1737 if (string[j] != NUL)
Bram Moolenaara4271d52011-05-10 13:38:27 +02001738 continue; /* string doesn't match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739
Bram Moolenaara4271d52011-05-10 13:38:27 +02001740 /* When 'b' flag used, there must be white space or an
1741 * end-of-line after the string in the line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 if (vim_strchr(part_buf, COM_BLANK) != NULL
1743 && !vim_iswhite(line[i + j]) && line[i + j] != NUL)
1744 continue;
1745
Bram Moolenaara4271d52011-05-10 13:38:27 +02001746 /* We have found a match, stop searching unless this is a middle
1747 * comment. The middle comment can be a substring of the end
1748 * comment in which case it's better to return the length of the
1749 * end comment and its flags. Thus we keep searching with middle
1750 * and end matches and use an end match if it matches better. */
1751 if (vim_strchr(part_buf, COM_MIDDLE) != NULL)
1752 {
1753 if (middle_match_len == 0)
1754 {
1755 middle_match_len = j;
1756 saved_flags = prev_list;
1757 }
1758 continue;
1759 }
1760 if (middle_match_len != 0 && j > middle_match_len)
1761 /* Use this match instead of the middle match, since it's a
1762 * longer thus better match. */
1763 middle_match_len = 0;
1764
1765 if (middle_match_len == 0)
1766 i += j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767 found_one = TRUE;
1768 break;
1769 }
1770
Bram Moolenaara4271d52011-05-10 13:38:27 +02001771 if (middle_match_len != 0)
1772 {
1773 /* Use the previously found middle match after failing to find a
1774 * match with an end. */
1775 if (!got_com && flags != NULL)
1776 *flags = saved_flags;
1777 i += middle_match_len;
1778 found_one = TRUE;
1779 }
1780
1781 /* No match found, stop scanning. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 if (!found_one)
1783 break;
1784
Bram Moolenaar81340392012-06-06 16:12:59 +02001785 result = i;
1786
Bram Moolenaara4271d52011-05-10 13:38:27 +02001787 /* Include any trailing white space. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 while (vim_iswhite(line[i]))
1789 ++i;
1790
Bram Moolenaar81340392012-06-06 16:12:59 +02001791 if (include_space)
1792 result = i;
1793
Bram Moolenaara4271d52011-05-10 13:38:27 +02001794 /* If this comment doesn't nest, stop here. */
1795 got_com = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796 if (vim_strchr(part_buf, COM_NEST) == NULL)
1797 break;
1798 }
Bram Moolenaar81340392012-06-06 16:12:59 +02001799 return result;
1800}
Bram Moolenaara4271d52011-05-10 13:38:27 +02001801
Bram Moolenaar81340392012-06-06 16:12:59 +02001802/*
1803 * Return the offset at which the last comment in line starts. If there is no
1804 * comment in the whole line, -1 is returned.
1805 *
1806 * When "flags" is not null, it is set to point to the flags describing the
1807 * recognized comment leader.
1808 */
1809 int
1810get_last_leader_offset(line, flags)
1811 char_u *line;
1812 char_u **flags;
1813{
1814 int result = -1;
1815 int i, j;
1816 int lower_check_bound = 0;
1817 char_u *string;
1818 char_u *com_leader;
1819 char_u *com_flags;
1820 char_u *list;
1821 int found_one;
1822 char_u part_buf[COM_MAX_LEN]; /* buffer for one option part */
1823
1824 /*
1825 * Repeat to match several nested comment strings.
1826 */
1827 i = (int)STRLEN(line);
1828 while (--i >= lower_check_bound)
1829 {
1830 /*
1831 * scan through the 'comments' option for a match
1832 */
1833 found_one = FALSE;
1834 for (list = curbuf->b_p_com; *list; )
1835 {
1836 char_u *flags_save = list;
1837
1838 /*
1839 * Get one option part into part_buf[]. Advance list to next one.
1840 * put string at start of string.
1841 */
1842 (void)copy_option_part(&list, part_buf, COM_MAX_LEN, ",");
1843 string = vim_strchr(part_buf, ':');
1844 if (string == NULL) /* If everything is fine, this cannot actually
1845 * happen. */
1846 {
1847 continue;
1848 }
1849 *string++ = NUL; /* Isolate flags from string. */
1850 com_leader = string;
1851
1852 /*
1853 * Line contents and string must match.
1854 * When string starts with white space, must have some white space
1855 * (but the amount does not need to match, there might be a mix of
1856 * TABs and spaces).
1857 */
1858 if (vim_iswhite(string[0]))
1859 {
1860 if (i == 0 || !vim_iswhite(line[i - 1]))
1861 continue;
1862 while (vim_iswhite(string[0]))
1863 ++string;
1864 }
1865 for (j = 0; string[j] != NUL && string[j] == line[i + j]; ++j)
1866 /* do nothing */;
1867 if (string[j] != NUL)
1868 continue;
1869
1870 /*
1871 * When 'b' flag used, there must be white space or an
1872 * end-of-line after the string in the line.
1873 */
1874 if (vim_strchr(part_buf, COM_BLANK) != NULL
1875 && !vim_iswhite(line[i + j]) && line[i + j] != NUL)
1876 {
1877 continue;
1878 }
1879
1880 /*
1881 * We have found a match, stop searching.
1882 */
1883 found_one = TRUE;
1884
1885 if (flags)
1886 *flags = flags_save;
1887 com_flags = flags_save;
1888
1889 break;
1890 }
1891
1892 if (found_one)
1893 {
1894 char_u part_buf2[COM_MAX_LEN]; /* buffer for one option part */
1895 int len1, len2, off;
1896
1897 result = i;
1898 /*
1899 * If this comment nests, continue searching.
1900 */
1901 if (vim_strchr(part_buf, COM_NEST) != NULL)
1902 continue;
1903
1904 lower_check_bound = i;
1905
1906 /* Let's verify whether the comment leader found is a substring
1907 * of other comment leaders. If it is, let's adjust the
1908 * lower_check_bound so that we make sure that we have determined
1909 * the comment leader correctly.
1910 */
1911
1912 while (vim_iswhite(*com_leader))
1913 ++com_leader;
1914 len1 = (int)STRLEN(com_leader);
1915
1916 for (list = curbuf->b_p_com; *list; )
1917 {
1918 char_u *flags_save = list;
1919
1920 (void)copy_option_part(&list, part_buf2, COM_MAX_LEN, ",");
1921 if (flags_save == com_flags)
1922 continue;
1923 string = vim_strchr(part_buf2, ':');
1924 ++string;
1925 while (vim_iswhite(*string))
1926 ++string;
1927 len2 = (int)STRLEN(string);
1928 if (len2 == 0)
1929 continue;
1930
1931 /* Now we have to verify whether string ends with a substring
1932 * beginning the com_leader. */
1933 for (off = (len2 > i ? i : len2); off > 0 && off + len1 > len2;)
1934 {
1935 --off;
1936 if (!STRNCMP(string + off, com_leader, len2 - off))
1937 {
1938 if (i - off < lower_check_bound)
1939 lower_check_bound = i - off;
1940 }
1941 }
1942 }
1943 }
1944 }
1945 return result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946}
1947#endif
1948
1949/*
1950 * Return the number of window lines occupied by buffer line "lnum".
1951 */
1952 int
1953plines(lnum)
1954 linenr_T lnum;
1955{
1956 return plines_win(curwin, lnum, TRUE);
1957}
1958
1959 int
1960plines_win(wp, lnum, winheight)
1961 win_T *wp;
1962 linenr_T lnum;
1963 int winheight; /* when TRUE limit to window height */
1964{
1965#if defined(FEAT_DIFF) || defined(PROTO)
1966 /* Check for filler lines above this buffer line. When folded the result
1967 * is one line anyway. */
1968 return plines_win_nofill(wp, lnum, winheight) + diff_check_fill(wp, lnum);
1969}
1970
1971 int
1972plines_nofill(lnum)
1973 linenr_T lnum;
1974{
1975 return plines_win_nofill(curwin, lnum, TRUE);
1976}
1977
1978 int
1979plines_win_nofill(wp, lnum, winheight)
1980 win_T *wp;
1981 linenr_T lnum;
1982 int winheight; /* when TRUE limit to window height */
1983{
1984#endif
1985 int lines;
1986
1987 if (!wp->w_p_wrap)
1988 return 1;
1989
1990#ifdef FEAT_VERTSPLIT
1991 if (wp->w_width == 0)
1992 return 1;
1993#endif
1994
1995#ifdef FEAT_FOLDING
1996 /* A folded lines is handled just like an empty line. */
1997 /* NOTE: Caller must handle lines that are MAYBE folded. */
1998 if (lineFolded(wp, lnum) == TRUE)
1999 return 1;
2000#endif
2001
2002 lines = plines_win_nofold(wp, lnum);
2003 if (winheight > 0 && lines > wp->w_height)
2004 return (int)wp->w_height;
2005 return lines;
2006}
2007
2008/*
2009 * Return number of window lines physical line "lnum" will occupy in window
2010 * "wp". Does not care about folding, 'wrap' or 'diff'.
2011 */
2012 int
2013plines_win_nofold(wp, lnum)
2014 win_T *wp;
2015 linenr_T lnum;
2016{
2017 char_u *s;
2018 long col;
2019 int width;
2020
2021 s = ml_get_buf(wp->w_buffer, lnum, FALSE);
2022 if (*s == NUL) /* empty line */
2023 return 1;
2024 col = win_linetabsize(wp, s, (colnr_T)MAXCOL);
2025
2026 /*
2027 * If list mode is on, then the '$' at the end of the line may take up one
2028 * extra column.
2029 */
2030 if (wp->w_p_list && lcs_eol != NUL)
2031 col += 1;
2032
2033 /*
Bram Moolenaar64486672010-05-16 15:46:46 +02002034 * Add column offset for 'number', 'relativenumber' and 'foldcolumn'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035 */
2036 width = W_WIDTH(wp) - win_col_off(wp);
2037 if (width <= 0)
2038 return 32000;
2039 if (col <= width)
2040 return 1;
2041 col -= width;
2042 width += win_col_off2(wp);
2043 return (col + (width - 1)) / width + 1;
2044}
2045
2046/*
2047 * Like plines_win(), but only reports the number of physical screen lines
2048 * used from the start of the line to the given column number.
2049 */
2050 int
2051plines_win_col(wp, lnum, column)
2052 win_T *wp;
2053 linenr_T lnum;
2054 long column;
2055{
2056 long col;
2057 char_u *s;
2058 int lines = 0;
2059 int width;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002060 char_u *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061
2062#ifdef FEAT_DIFF
2063 /* Check for filler lines above this buffer line. When folded the result
2064 * is one line anyway. */
2065 lines = diff_check_fill(wp, lnum);
2066#endif
2067
2068 if (!wp->w_p_wrap)
2069 return lines + 1;
2070
2071#ifdef FEAT_VERTSPLIT
2072 if (wp->w_width == 0)
2073 return lines + 1;
2074#endif
2075
Bram Moolenaar597a4222014-06-25 14:39:50 +02002076 line = s = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077
2078 col = 0;
2079 while (*s != NUL && --column >= 0)
2080 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02002081 col += win_lbr_chartabsize(wp, line, s, (colnr_T)col, NULL);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002082 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 }
2084
2085 /*
2086 * If *s is a TAB, and the TAB is not displayed as ^I, and we're not in
2087 * INSERT mode, then col must be adjusted so that it represents the last
2088 * screen position of the TAB. This only fixes an error when the TAB wraps
2089 * from one screen line to the next (when 'columns' is not a multiple of
2090 * 'ts') -- webb.
2091 */
2092 if (*s == TAB && (State & NORMAL) && (!wp->w_p_list || lcs_tab1))
Bram Moolenaar597a4222014-06-25 14:39:50 +02002093 col += win_lbr_chartabsize(wp, line, s, (colnr_T)col, NULL) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094
2095 /*
Bram Moolenaar64486672010-05-16 15:46:46 +02002096 * Add column offset for 'number', 'relativenumber', 'foldcolumn', etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097 */
2098 width = W_WIDTH(wp) - win_col_off(wp);
Bram Moolenaar26470632006-10-24 19:12:40 +00002099 if (width <= 0)
2100 return 9999;
2101
2102 lines += 1;
2103 if (col > width)
2104 lines += (col - width) / (width + win_col_off2(wp)) + 1;
2105 return lines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106}
2107
2108 int
2109plines_m_win(wp, first, last)
2110 win_T *wp;
2111 linenr_T first, last;
2112{
2113 int count = 0;
2114
2115 while (first <= last)
2116 {
2117#ifdef FEAT_FOLDING
2118 int x;
2119
2120 /* Check if there are any really folded lines, but also included lines
2121 * that are maybe folded. */
2122 x = foldedCount(wp, first, NULL);
2123 if (x > 0)
2124 {
2125 ++count; /* count 1 for "+-- folded" line */
2126 first += x;
2127 }
2128 else
2129#endif
2130 {
2131#ifdef FEAT_DIFF
2132 if (first == wp->w_topline)
2133 count += plines_win_nofill(wp, first, TRUE) + wp->w_topfill;
2134 else
2135#endif
2136 count += plines_win(wp, first, TRUE);
2137 ++first;
2138 }
2139 }
2140 return (count);
2141}
2142
2143#if defined(FEAT_VREPLACE) || defined(FEAT_INS_EXPAND) || defined(PROTO)
2144/*
2145 * Insert string "p" at the cursor position. Stops at a NUL byte.
2146 * Handles Replace mode and multi-byte characters.
2147 */
2148 void
2149ins_bytes(p)
2150 char_u *p;
2151{
2152 ins_bytes_len(p, (int)STRLEN(p));
2153}
2154#endif
2155
2156#if defined(FEAT_VREPLACE) || defined(FEAT_INS_EXPAND) \
2157 || defined(FEAT_COMMENTS) || defined(FEAT_MBYTE) || defined(PROTO)
2158/*
2159 * Insert string "p" with length "len" at the cursor position.
2160 * Handles Replace mode and multi-byte characters.
2161 */
2162 void
2163ins_bytes_len(p, len)
2164 char_u *p;
2165 int len;
2166{
2167 int i;
2168# ifdef FEAT_MBYTE
2169 int n;
2170
Bram Moolenaar176dd1e2008-06-21 14:30:28 +00002171 if (has_mbyte)
2172 for (i = 0; i < len; i += n)
2173 {
2174 if (enc_utf8)
2175 /* avoid reading past p[len] */
2176 n = utfc_ptr2len_len(p + i, len - i);
2177 else
2178 n = (*mb_ptr2len)(p + i);
2179 ins_char_bytes(p + i, n);
2180 }
2181 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182# endif
Bram Moolenaar176dd1e2008-06-21 14:30:28 +00002183 for (i = 0; i < len; ++i)
2184 ins_char(p[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185}
2186#endif
2187
2188/*
2189 * Insert or replace a single character at the cursor position.
2190 * When in REPLACE or VREPLACE mode, replace any existing character.
2191 * Caller must have prepared for undo.
2192 * For multi-byte characters we get the whole character, the caller must
2193 * convert bytes to a character.
2194 */
2195 void
2196ins_char(c)
2197 int c;
2198{
2199#if defined(FEAT_MBYTE) || defined(PROTO)
Bram Moolenaar9a920d82012-06-01 15:21:02 +02002200 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201 int n;
2202
2203 n = (*mb_char2bytes)(c, buf);
2204
2205 /* When "c" is 0x100, 0x200, etc. we don't want to insert a NUL byte.
2206 * Happens for CTRL-Vu9900. */
2207 if (buf[0] == 0)
2208 buf[0] = '\n';
2209
2210 ins_char_bytes(buf, n);
2211}
2212
2213 void
2214ins_char_bytes(buf, charlen)
2215 char_u *buf;
2216 int charlen;
2217{
2218 int c = buf[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219#endif
2220 int newlen; /* nr of bytes inserted */
2221 int oldlen; /* nr of bytes deleted (0 when not replacing) */
2222 char_u *p;
2223 char_u *newp;
2224 char_u *oldp;
2225 int linelen; /* length of old line including NUL */
2226 colnr_T col;
2227 linenr_T lnum = curwin->w_cursor.lnum;
2228 int i;
2229
2230#ifdef FEAT_VIRTUALEDIT
2231 /* Break tabs if needed. */
2232 if (virtual_active() && curwin->w_cursor.coladd > 0)
2233 coladvance_force(getviscol());
2234#endif
2235
2236 col = curwin->w_cursor.col;
2237 oldp = ml_get(lnum);
2238 linelen = (int)STRLEN(oldp) + 1;
2239
2240 /* The lengths default to the values for when not replacing. */
2241 oldlen = 0;
2242#ifdef FEAT_MBYTE
2243 newlen = charlen;
2244#else
2245 newlen = 1;
2246#endif
2247
2248 if (State & REPLACE_FLAG)
2249 {
2250#ifdef FEAT_VREPLACE
2251 if (State & VREPLACE_FLAG)
2252 {
2253 colnr_T new_vcol = 0; /* init for GCC */
2254 colnr_T vcol;
2255 int old_list;
2256#ifndef FEAT_MBYTE
2257 char_u buf[2];
2258#endif
2259
2260 /*
2261 * Disable 'list' temporarily, unless 'cpo' contains the 'L' flag.
2262 * Returns the old value of list, so when finished,
2263 * curwin->w_p_list should be set back to this.
2264 */
2265 old_list = curwin->w_p_list;
2266 if (old_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
2267 curwin->w_p_list = FALSE;
2268
2269 /*
2270 * In virtual replace mode each character may replace one or more
2271 * characters (zero if it's a TAB). Count the number of bytes to
2272 * be deleted to make room for the new character, counting screen
2273 * cells. May result in adding spaces to fill a gap.
2274 */
2275 getvcol(curwin, &curwin->w_cursor, NULL, &vcol, NULL);
2276#ifndef FEAT_MBYTE
2277 buf[0] = c;
2278 buf[1] = NUL;
2279#endif
2280 new_vcol = vcol + chartabsize(buf, vcol);
2281 while (oldp[col + oldlen] != NUL && vcol < new_vcol)
2282 {
2283 vcol += chartabsize(oldp + col + oldlen, vcol);
2284 /* Don't need to remove a TAB that takes us to the right
2285 * position. */
2286 if (vcol > new_vcol && oldp[col + oldlen] == TAB)
2287 break;
2288#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002289 oldlen += (*mb_ptr2len)(oldp + col + oldlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290#else
2291 ++oldlen;
2292#endif
2293 /* Deleted a bit too much, insert spaces. */
2294 if (vcol > new_vcol)
2295 newlen += vcol - new_vcol;
2296 }
2297 curwin->w_p_list = old_list;
2298 }
2299 else
2300#endif
2301 if (oldp[col] != NUL)
2302 {
2303 /* normal replace */
2304#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002305 oldlen = (*mb_ptr2len)(oldp + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306#else
2307 oldlen = 1;
2308#endif
2309 }
2310
2311
2312 /* Push the replaced bytes onto the replace stack, so that they can be
2313 * put back when BS is used. The bytes of a multi-byte character are
2314 * done the other way around, so that the first byte is popped off
2315 * first (it tells the byte length of the character). */
2316 replace_push(NUL);
2317 for (i = 0; i < oldlen; ++i)
2318 {
2319#ifdef FEAT_MBYTE
Bram Moolenaar2c994e82008-01-02 16:49:36 +00002320 if (has_mbyte)
2321 i += replace_push_mb(oldp + col + i) - 1;
2322 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323#endif
Bram Moolenaar2c994e82008-01-02 16:49:36 +00002324 replace_push(oldp[col + i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325 }
2326 }
2327
2328 newp = alloc_check((unsigned)(linelen + newlen - oldlen));
2329 if (newp == NULL)
2330 return;
2331
2332 /* Copy bytes before the cursor. */
2333 if (col > 0)
2334 mch_memmove(newp, oldp, (size_t)col);
2335
2336 /* Copy bytes after the changed character(s). */
2337 p = newp + col;
2338 mch_memmove(p + newlen, oldp + col + oldlen,
2339 (size_t)(linelen - col - oldlen));
2340
2341 /* Insert or overwrite the new character. */
2342#ifdef FEAT_MBYTE
2343 mch_memmove(p, buf, charlen);
2344 i = charlen;
2345#else
2346 *p = c;
2347 i = 1;
2348#endif
2349
2350 /* Fill with spaces when necessary. */
2351 while (i < newlen)
2352 p[i++] = ' ';
2353
2354 /* Replace the line in the buffer. */
2355 ml_replace(lnum, newp, FALSE);
2356
2357 /* mark the buffer as changed and prepare for displaying */
2358 changed_bytes(lnum, col);
2359
2360 /*
2361 * If we're in Insert or Replace mode and 'showmatch' is set, then briefly
2362 * show the match for right parens and braces.
2363 */
2364 if (p_sm && (State & INSERT)
2365 && msg_silent == 0
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002366#ifdef FEAT_INS_EXPAND
2367 && !ins_compl_active()
2368#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369 )
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002370 {
2371#ifdef FEAT_MBYTE
2372 if (has_mbyte)
2373 showmatch(mb_ptr2char(buf));
2374 else
2375#endif
2376 showmatch(c);
2377 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378
2379#ifdef FEAT_RIGHTLEFT
2380 if (!p_ri || (State & REPLACE_FLAG))
2381#endif
2382 {
2383 /* Normal insert: move cursor right */
2384#ifdef FEAT_MBYTE
2385 curwin->w_cursor.col += charlen;
2386#else
2387 ++curwin->w_cursor.col;
2388#endif
2389 }
2390 /*
2391 * TODO: should try to update w_row here, to avoid recomputing it later.
2392 */
2393}
2394
2395/*
2396 * Insert a string at the cursor position.
2397 * Note: Does NOT handle Replace mode.
2398 * Caller must have prepared for undo.
2399 */
2400 void
2401ins_str(s)
2402 char_u *s;
2403{
2404 char_u *oldp, *newp;
2405 int newlen = (int)STRLEN(s);
2406 int oldlen;
2407 colnr_T col;
2408 linenr_T lnum = curwin->w_cursor.lnum;
2409
2410#ifdef FEAT_VIRTUALEDIT
2411 if (virtual_active() && curwin->w_cursor.coladd > 0)
2412 coladvance_force(getviscol());
2413#endif
2414
2415 col = curwin->w_cursor.col;
2416 oldp = ml_get(lnum);
2417 oldlen = (int)STRLEN(oldp);
2418
2419 newp = alloc_check((unsigned)(oldlen + newlen + 1));
2420 if (newp == NULL)
2421 return;
2422 if (col > 0)
2423 mch_memmove(newp, oldp, (size_t)col);
2424 mch_memmove(newp + col, s, (size_t)newlen);
2425 mch_memmove(newp + col + newlen, oldp + col, (size_t)(oldlen - col + 1));
2426 ml_replace(lnum, newp, FALSE);
2427 changed_bytes(lnum, col);
2428 curwin->w_cursor.col += newlen;
2429}
2430
2431/*
2432 * Delete one character under the cursor.
2433 * If "fixpos" is TRUE, don't leave the cursor on the NUL after the line.
2434 * Caller must have prepared for undo.
2435 *
2436 * return FAIL for failure, OK otherwise
2437 */
2438 int
2439del_char(fixpos)
2440 int fixpos;
2441{
2442#ifdef FEAT_MBYTE
2443 if (has_mbyte)
2444 {
2445 /* Make sure the cursor is at the start of a character. */
2446 mb_adjust_cursor();
2447 if (*ml_get_cursor() == NUL)
2448 return FAIL;
2449 return del_chars(1L, fixpos);
2450 }
2451#endif
Bram Moolenaare3226be2005-12-18 22:10:00 +00002452 return del_bytes(1L, fixpos, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453}
2454
2455#if defined(FEAT_MBYTE) || defined(PROTO)
2456/*
2457 * Like del_bytes(), but delete characters instead of bytes.
2458 */
2459 int
2460del_chars(count, fixpos)
2461 long count;
2462 int fixpos;
2463{
2464 long bytes = 0;
2465 long i;
2466 char_u *p;
2467 int l;
2468
2469 p = ml_get_cursor();
2470 for (i = 0; i < count && *p != NUL; ++i)
2471 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002472 l = (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473 bytes += l;
2474 p += l;
2475 }
Bram Moolenaare3226be2005-12-18 22:10:00 +00002476 return del_bytes(bytes, fixpos, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477}
2478#endif
2479
2480/*
2481 * Delete "count" bytes under the cursor.
2482 * If "fixpos" is TRUE, don't leave the cursor on the NUL after the line.
2483 * Caller must have prepared for undo.
2484 *
2485 * return FAIL for failure, OK otherwise
2486 */
2487 int
Bram Moolenaarca003e12006-03-17 23:19:38 +00002488del_bytes(count, fixpos_arg, use_delcombine)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 long count;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002490 int fixpos_arg;
Bram Moolenaar78a15312009-05-15 19:33:18 +00002491 int use_delcombine UNUSED; /* 'delcombine' option applies */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492{
2493 char_u *oldp, *newp;
2494 colnr_T oldlen;
2495 linenr_T lnum = curwin->w_cursor.lnum;
2496 colnr_T col = curwin->w_cursor.col;
2497 int was_alloced;
2498 long movelen;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002499 int fixpos = fixpos_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500
2501 oldp = ml_get(lnum);
2502 oldlen = (int)STRLEN(oldp);
2503
2504 /*
2505 * Can't do anything when the cursor is on the NUL after the line.
2506 */
2507 if (col >= oldlen)
2508 return FAIL;
2509
2510#ifdef FEAT_MBYTE
2511 /* If 'delcombine' is set and deleting (less than) one character, only
2512 * delete the last combining character. */
Bram Moolenaare3226be2005-12-18 22:10:00 +00002513 if (p_deco && use_delcombine && enc_utf8
2514 && utfc_ptr2len(oldp + col) >= count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002516 int cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 int n;
2518
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002519 (void)utfc_ptr2char(oldp + col, cc);
2520 if (cc[0] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002521 {
2522 /* Find the last composing char, there can be several. */
2523 n = col;
2524 do
2525 {
2526 col = n;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002527 count = utf_ptr2len(oldp + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528 n += count;
2529 } while (UTF_COMPOSINGLIKE(oldp + col, oldp + n));
2530 fixpos = 0;
2531 }
2532 }
2533#endif
2534
2535 /*
2536 * When count is too big, reduce it.
2537 */
2538 movelen = (long)oldlen - (long)col - count + 1; /* includes trailing NUL */
2539 if (movelen <= 1)
2540 {
2541 /*
2542 * If we just took off the last character of a non-blank line, and
Bram Moolenaarca003e12006-03-17 23:19:38 +00002543 * fixpos is TRUE, we don't want to end up positioned at the NUL,
2544 * unless "restart_edit" is set or 'virtualedit' contains "onemore".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 */
Bram Moolenaarca003e12006-03-17 23:19:38 +00002546 if (col > 0 && fixpos && restart_edit == 0
2547#ifdef FEAT_VIRTUALEDIT
2548 && (ve_flags & VE_ONEMORE) == 0
2549#endif
2550 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551 {
2552 --curwin->w_cursor.col;
2553#ifdef FEAT_VIRTUALEDIT
2554 curwin->w_cursor.coladd = 0;
2555#endif
2556#ifdef FEAT_MBYTE
2557 if (has_mbyte)
2558 curwin->w_cursor.col -=
2559 (*mb_head_off)(oldp, oldp + curwin->w_cursor.col);
2560#endif
2561 }
2562 count = oldlen - col;
2563 movelen = 1;
2564 }
2565
2566 /*
2567 * If the old line has been allocated the deletion can be done in the
2568 * existing line. Otherwise a new line has to be allocated
Bram Moolenaare21877a2008-02-13 09:58:14 +00002569 * Can't do this when using Netbeans, because we would need to invoke
2570 * netbeans_removed(), which deallocates the line. Let ml_replace() take
Bram Moolenaar1a509df2010-08-01 17:59:57 +02002571 * care of notifying Netbeans.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002574 if (netbeans_active())
Bram Moolenaare21877a2008-02-13 09:58:14 +00002575 was_alloced = FALSE;
2576 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577#endif
Bram Moolenaare21877a2008-02-13 09:58:14 +00002578 was_alloced = ml_line_alloced(); /* check if oldp was allocated */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 if (was_alloced)
2580 newp = oldp; /* use same allocated memory */
2581 else
2582 { /* need to allocate a new line */
2583 newp = alloc((unsigned)(oldlen + 1 - count));
2584 if (newp == NULL)
2585 return FAIL;
2586 mch_memmove(newp, oldp, (size_t)col);
2587 }
2588 mch_memmove(newp + col, oldp + col + count, (size_t)movelen);
2589 if (!was_alloced)
2590 ml_replace(lnum, newp, FALSE);
2591
2592 /* mark the buffer as changed and prepare for displaying */
2593 changed_bytes(lnum, curwin->w_cursor.col);
2594
2595 return OK;
2596}
2597
2598/*
2599 * Delete from cursor to end of line.
2600 * Caller must have prepared for undo.
2601 *
2602 * return FAIL for failure, OK otherwise
2603 */
2604 int
2605truncate_line(fixpos)
2606 int fixpos; /* if TRUE fix the cursor position when done */
2607{
2608 char_u *newp;
2609 linenr_T lnum = curwin->w_cursor.lnum;
2610 colnr_T col = curwin->w_cursor.col;
2611
2612 if (col == 0)
2613 newp = vim_strsave((char_u *)"");
2614 else
2615 newp = vim_strnsave(ml_get(lnum), col);
2616
2617 if (newp == NULL)
2618 return FAIL;
2619
2620 ml_replace(lnum, newp, FALSE);
2621
2622 /* mark the buffer as changed and prepare for displaying */
2623 changed_bytes(lnum, curwin->w_cursor.col);
2624
2625 /*
2626 * If "fixpos" is TRUE we don't want to end up positioned at the NUL.
2627 */
2628 if (fixpos && curwin->w_cursor.col > 0)
2629 --curwin->w_cursor.col;
2630
2631 return OK;
2632}
2633
2634/*
2635 * Delete "nlines" lines at the cursor.
2636 * Saves the lines for undo first if "undo" is TRUE.
2637 */
2638 void
2639del_lines(nlines, undo)
2640 long nlines; /* number of lines to delete */
2641 int undo; /* if TRUE, prepare for undo */
2642{
2643 long n;
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002644 linenr_T first = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645
2646 if (nlines <= 0)
2647 return;
2648
2649 /* save the deleted lines for undo */
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002650 if (undo && u_savedel(first, nlines) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 return;
2652
2653 for (n = 0; n < nlines; )
2654 {
2655 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
2656 break;
2657
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002658 ml_delete(first, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 ++n;
2660
2661 /* If we delete the last line in the file, stop */
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002662 if (first > curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663 break;
2664 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002666 /* Correct the cursor position before calling deleted_lines_mark(), it may
2667 * trigger a callback to display the cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 curwin->w_cursor.col = 0;
2669 check_cursor_lnum();
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002670
2671 /* adjust marks, mark the buffer as changed and prepare for displaying */
2672 deleted_lines_mark(first, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673}
2674
2675 int
2676gchar_pos(pos)
2677 pos_T *pos;
2678{
2679 char_u *ptr = ml_get_pos(pos);
2680
2681#ifdef FEAT_MBYTE
2682 if (has_mbyte)
2683 return (*mb_ptr2char)(ptr);
2684#endif
2685 return (int)*ptr;
2686}
2687
2688 int
2689gchar_cursor()
2690{
2691#ifdef FEAT_MBYTE
2692 if (has_mbyte)
2693 return (*mb_ptr2char)(ml_get_cursor());
2694#endif
2695 return (int)*ml_get_cursor();
2696}
2697
2698/*
2699 * Write a character at the current cursor position.
2700 * It is directly written into the block.
2701 */
2702 void
2703pchar_cursor(c)
2704 int c;
2705{
2706 *(ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE)
2707 + curwin->w_cursor.col) = c;
2708}
2709
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710/*
2711 * When extra == 0: Return TRUE if the cursor is before or on the first
2712 * non-blank in the line.
2713 * When extra == 1: Return TRUE if the cursor is before the first non-blank in
2714 * the line.
2715 */
2716 int
2717inindent(extra)
2718 int extra;
2719{
2720 char_u *ptr;
2721 colnr_T col;
2722
2723 for (col = 0, ptr = ml_get_curline(); vim_iswhite(*ptr); ++col)
2724 ++ptr;
2725 if (col >= curwin->w_cursor.col + extra)
2726 return TRUE;
2727 else
2728 return FALSE;
2729}
2730
2731/*
2732 * Skip to next part of an option argument: Skip space and comma.
2733 */
2734 char_u *
2735skip_to_option_part(p)
2736 char_u *p;
2737{
2738 if (*p == ',')
2739 ++p;
2740 while (*p == ' ')
2741 ++p;
2742 return p;
2743}
2744
2745/*
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002746 * Call this function when something in the current buffer is changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747 *
2748 * Most often called through changed_bytes() and changed_lines(), which also
2749 * mark the area of the display to be redrawn.
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002750 *
2751 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752 */
2753 void
2754changed()
2755{
2756#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2757 /* The text of the preediting area is inserted, but this doesn't
2758 * mean a change of the buffer yet. That is delayed until the
2759 * text is committed. (this means preedit becomes empty) */
2760 if (im_is_preediting() && !xim_changed_while_preediting)
2761 return;
2762 xim_changed_while_preediting = FALSE;
2763#endif
2764
2765 if (!curbuf->b_changed)
2766 {
2767 int save_msg_scroll = msg_scroll;
2768
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002769 /* Give a warning about changing a read-only file. This may also
2770 * check-out the file, thus change "curbuf"! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 change_warning(0);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002772
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773 /* Create a swap file if that is wanted.
2774 * Don't do this for "nofile" and "nowrite" buffer types. */
2775 if (curbuf->b_may_swap
2776#ifdef FEAT_QUICKFIX
2777 && !bt_dontwrite(curbuf)
2778#endif
2779 )
2780 {
2781 ml_open_file(curbuf);
2782
2783 /* The ml_open_file() can cause an ATTENTION message.
2784 * Wait two seconds, to make sure the user reads this unexpected
2785 * message. Since we could be anywhere, call wait_return() now,
2786 * and don't let the emsg() set msg_scroll. */
2787 if (need_wait_return && emsg_silent == 0)
2788 {
2789 out_flush();
2790 ui_delay(2000L, TRUE);
2791 wait_return(TRUE);
2792 msg_scroll = save_msg_scroll;
2793 }
2794 }
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02002795 changed_int();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796 }
2797 ++curbuf->b_changedtick;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798}
2799
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02002800/*
2801 * Internal part of changed(), no user interaction.
2802 */
2803 void
2804changed_int()
2805{
2806 curbuf->b_changed = TRUE;
2807 ml_setflags(curbuf);
2808#ifdef FEAT_WINDOWS
2809 check_status(curbuf);
2810 redraw_tabline = TRUE;
2811#endif
2812#ifdef FEAT_TITLE
2813 need_maketitle = TRUE; /* set window title later */
2814#endif
2815}
2816
Bram Moolenaardba8a912005-04-24 22:08:39 +00002817static void changedOneline __ARGS((buf_T *buf, linenr_T lnum));
2818static void changed_lines_buf __ARGS((buf_T *buf, linenr_T lnum, linenr_T lnume, long xtra));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819static void changed_common __ARGS((linenr_T lnum, colnr_T col, linenr_T lnume, long xtra));
2820
2821/*
2822 * Changed bytes within a single line for the current buffer.
2823 * - marks the windows on this buffer to be redisplayed
2824 * - marks the buffer changed by calling changed()
2825 * - invalidates cached values
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002826 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 */
2828 void
2829changed_bytes(lnum, col)
2830 linenr_T lnum;
2831 colnr_T col;
2832{
Bram Moolenaardba8a912005-04-24 22:08:39 +00002833 changedOneline(curbuf, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002834 changed_common(lnum, col, lnum + 1, 0L);
Bram Moolenaardba8a912005-04-24 22:08:39 +00002835
2836#ifdef FEAT_DIFF
2837 /* Diff highlighting in other diff windows may need to be updated too. */
2838 if (curwin->w_p_diff)
2839 {
2840 win_T *wp;
2841 linenr_T wlnum;
2842
2843 for (wp = firstwin; wp != NULL; wp = wp->w_next)
2844 if (wp->w_p_diff && wp != curwin)
2845 {
2846 redraw_win_later(wp, VALID);
2847 wlnum = diff_lnum_win(lnum, wp);
2848 if (wlnum > 0)
2849 changedOneline(wp->w_buffer, wlnum);
2850 }
2851 }
2852#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853}
2854
2855 static void
Bram Moolenaardba8a912005-04-24 22:08:39 +00002856changedOneline(buf, lnum)
2857 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 linenr_T lnum;
2859{
Bram Moolenaardba8a912005-04-24 22:08:39 +00002860 if (buf->b_mod_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861 {
2862 /* find the maximum area that must be redisplayed */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002863 if (lnum < buf->b_mod_top)
2864 buf->b_mod_top = lnum;
2865 else if (lnum >= buf->b_mod_bot)
2866 buf->b_mod_bot = lnum + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 }
2868 else
2869 {
2870 /* set the area that must be redisplayed to one line */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002871 buf->b_mod_set = TRUE;
2872 buf->b_mod_top = lnum;
2873 buf->b_mod_bot = lnum + 1;
2874 buf->b_mod_xlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875 }
2876}
2877
2878/*
2879 * Appended "count" lines below line "lnum" in the current buffer.
2880 * Must be called AFTER the change and after mark_adjust().
2881 * Takes care of marking the buffer to be redrawn and sets the changed flag.
2882 */
2883 void
2884appended_lines(lnum, count)
2885 linenr_T lnum;
2886 long count;
2887{
2888 changed_lines(lnum + 1, 0, lnum + 1, count);
2889}
2890
2891/*
2892 * Like appended_lines(), but adjust marks first.
2893 */
2894 void
2895appended_lines_mark(lnum, count)
2896 linenr_T lnum;
2897 long count;
2898{
2899 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, count, 0L);
2900 changed_lines(lnum + 1, 0, lnum + 1, count);
2901}
2902
2903/*
2904 * Deleted "count" lines at line "lnum" in the current buffer.
2905 * Must be called AFTER the change and after mark_adjust().
2906 * Takes care of marking the buffer to be redrawn and sets the changed flag.
2907 */
2908 void
2909deleted_lines(lnum, count)
2910 linenr_T lnum;
2911 long count;
2912{
2913 changed_lines(lnum, 0, lnum + count, -count);
2914}
2915
2916/*
2917 * Like deleted_lines(), but adjust marks first.
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002918 * Make sure the cursor is on a valid line before calling, a GUI callback may
2919 * be triggered to display the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 */
2921 void
2922deleted_lines_mark(lnum, count)
2923 linenr_T lnum;
2924 long count;
2925{
2926 mark_adjust(lnum, (linenr_T)(lnum + count - 1), (long)MAXLNUM, -count);
2927 changed_lines(lnum, 0, lnum + count, -count);
2928}
2929
2930/*
2931 * Changed lines for the current buffer.
2932 * Must be called AFTER the change and after mark_adjust().
2933 * - mark the buffer changed by calling changed()
2934 * - mark the windows on this buffer to be redisplayed
2935 * - invalidate cached values
2936 * "lnum" is the first line that needs displaying, "lnume" the first line
2937 * below the changed lines (BEFORE the change).
2938 * When only inserting lines, "lnum" and "lnume" are equal.
2939 * Takes care of calling changed() and updating b_mod_*.
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002940 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 */
2942 void
2943changed_lines(lnum, col, lnume, xtra)
2944 linenr_T lnum; /* first line with change */
2945 colnr_T col; /* column in first line with change */
2946 linenr_T lnume; /* line below last changed line */
2947 long xtra; /* number of extra lines (negative when deleting) */
2948{
Bram Moolenaardba8a912005-04-24 22:08:39 +00002949 changed_lines_buf(curbuf, lnum, lnume, xtra);
2950
2951#ifdef FEAT_DIFF
2952 if (xtra == 0 && curwin->w_p_diff)
2953 {
2954 /* When the number of lines doesn't change then mark_adjust() isn't
2955 * called and other diff buffers still need to be marked for
2956 * displaying. */
2957 win_T *wp;
2958 linenr_T wlnum;
2959
2960 for (wp = firstwin; wp != NULL; wp = wp->w_next)
2961 if (wp->w_p_diff && wp != curwin)
2962 {
2963 redraw_win_later(wp, VALID);
2964 wlnum = diff_lnum_win(lnum, wp);
2965 if (wlnum > 0)
2966 changed_lines_buf(wp->w_buffer, wlnum,
2967 lnume - lnum + wlnum, 0L);
2968 }
2969 }
2970#endif
2971
2972 changed_common(lnum, col, lnume, xtra);
2973}
2974
2975 static void
2976changed_lines_buf(buf, lnum, lnume, xtra)
2977 buf_T *buf;
2978 linenr_T lnum; /* first line with change */
2979 linenr_T lnume; /* line below last changed line */
2980 long xtra; /* number of extra lines (negative when deleting) */
2981{
2982 if (buf->b_mod_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983 {
2984 /* find the maximum area that must be redisplayed */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002985 if (lnum < buf->b_mod_top)
2986 buf->b_mod_top = lnum;
2987 if (lnum < buf->b_mod_bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988 {
2989 /* adjust old bot position for xtra lines */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002990 buf->b_mod_bot += xtra;
2991 if (buf->b_mod_bot < lnum)
2992 buf->b_mod_bot = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993 }
Bram Moolenaardba8a912005-04-24 22:08:39 +00002994 if (lnume + xtra > buf->b_mod_bot)
2995 buf->b_mod_bot = lnume + xtra;
2996 buf->b_mod_xlines += xtra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 }
2998 else
2999 {
3000 /* set the area that must be redisplayed */
Bram Moolenaardba8a912005-04-24 22:08:39 +00003001 buf->b_mod_set = TRUE;
3002 buf->b_mod_top = lnum;
3003 buf->b_mod_bot = lnume + xtra;
3004 buf->b_mod_xlines = xtra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003006}
3007
Bram Moolenaarb0b50882010-07-07 18:26:28 +02003008/*
3009 * Common code for when a change is was made.
3010 * See changed_lines() for the arguments.
3011 * Careful: may trigger autocommands that reload the buffer.
3012 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 static void
3014changed_common(lnum, col, lnume, xtra)
3015 linenr_T lnum;
3016 colnr_T col;
3017 linenr_T lnume;
3018 long xtra;
3019{
3020 win_T *wp;
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00003021#ifdef FEAT_WINDOWS
3022 tabpage_T *tp;
3023#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 int i;
3025#ifdef FEAT_JUMPLIST
3026 int cols;
3027 pos_T *p;
3028 int add;
3029#endif
3030
3031 /* mark the buffer as modified */
3032 changed();
3033
3034 /* set the '. mark */
3035 if (!cmdmod.keepjumps)
3036 {
3037 curbuf->b_last_change.lnum = lnum;
3038 curbuf->b_last_change.col = col;
3039
3040#ifdef FEAT_JUMPLIST
3041 /* Create a new entry if a new undo-able change was started or we
3042 * don't have an entry yet. */
3043 if (curbuf->b_new_change || curbuf->b_changelistlen == 0)
3044 {
3045 if (curbuf->b_changelistlen == 0)
3046 add = TRUE;
3047 else
3048 {
3049 /* Don't create a new entry when the line number is the same
3050 * as the last one and the column is not too far away. Avoids
3051 * creating many entries for typing "xxxxx". */
3052 p = &curbuf->b_changelist[curbuf->b_changelistlen - 1];
3053 if (p->lnum != lnum)
3054 add = TRUE;
3055 else
3056 {
3057 cols = comp_textwidth(FALSE);
3058 if (cols == 0)
3059 cols = 79;
3060 add = (p->col + cols < col || col + cols < p->col);
3061 }
3062 }
3063 if (add)
3064 {
3065 /* This is the first of a new sequence of undo-able changes
3066 * and it's at some distance of the last change. Use a new
3067 * position in the changelist. */
3068 curbuf->b_new_change = FALSE;
3069
3070 if (curbuf->b_changelistlen == JUMPLISTSIZE)
3071 {
3072 /* changelist is full: remove oldest entry */
3073 curbuf->b_changelistlen = JUMPLISTSIZE - 1;
3074 mch_memmove(curbuf->b_changelist, curbuf->b_changelist + 1,
3075 sizeof(pos_T) * (JUMPLISTSIZE - 1));
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00003076 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077 {
3078 /* Correct position in changelist for other windows on
3079 * this buffer. */
3080 if (wp->w_buffer == curbuf && wp->w_changelistidx > 0)
3081 --wp->w_changelistidx;
3082 }
3083 }
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00003084 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085 {
3086 /* For other windows, if the position in the changelist is
3087 * at the end it stays at the end. */
3088 if (wp->w_buffer == curbuf
3089 && wp->w_changelistidx == curbuf->b_changelistlen)
3090 ++wp->w_changelistidx;
3091 }
3092 ++curbuf->b_changelistlen;
3093 }
3094 }
3095 curbuf->b_changelist[curbuf->b_changelistlen - 1] =
3096 curbuf->b_last_change;
3097 /* The current window is always after the last change, so that "g,"
3098 * takes you back to it. */
3099 curwin->w_changelistidx = curbuf->b_changelistlen;
3100#endif
3101 }
3102
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00003103 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003104 {
3105 if (wp->w_buffer == curbuf)
3106 {
3107 /* Mark this window to be redrawn later. */
3108 if (wp->w_redr_type < VALID)
3109 wp->w_redr_type = VALID;
3110
3111 /* Check if a change in the buffer has invalidated the cached
3112 * values for the cursor. */
3113#ifdef FEAT_FOLDING
3114 /*
3115 * Update the folds for this window. Can't postpone this, because
3116 * a following operator might work on the whole fold: ">>dd".
3117 */
3118 foldUpdate(wp, lnum, lnume + xtra - 1);
3119
3120 /* The change may cause lines above or below the change to become
3121 * included in a fold. Set lnum/lnume to the first/last line that
3122 * might be displayed differently.
3123 * Set w_cline_folded here as an efficient way to update it when
3124 * inserting lines just above a closed fold. */
3125 i = hasFoldingWin(wp, lnum, &lnum, NULL, FALSE, NULL);
3126 if (wp->w_cursor.lnum == lnum)
3127 wp->w_cline_folded = i;
3128 i = hasFoldingWin(wp, lnume, NULL, &lnume, FALSE, NULL);
3129 if (wp->w_cursor.lnum == lnume)
3130 wp->w_cline_folded = i;
3131
3132 /* If the changed line is in a range of previously folded lines,
3133 * compare with the first line in that range. */
3134 if (wp->w_cursor.lnum <= lnum)
3135 {
3136 i = find_wl_entry(wp, lnum);
3137 if (i >= 0 && wp->w_cursor.lnum > wp->w_lines[i].wl_lnum)
3138 changed_line_abv_curs_win(wp);
3139 }
3140#endif
3141
3142 if (wp->w_cursor.lnum > lnum)
3143 changed_line_abv_curs_win(wp);
3144 else if (wp->w_cursor.lnum == lnum && wp->w_cursor.col >= col)
3145 changed_cline_bef_curs_win(wp);
3146 if (wp->w_botline >= lnum)
3147 {
3148 /* Assume that botline doesn't change (inserted lines make
3149 * other lines scroll down below botline). */
3150 approximate_botline_win(wp);
3151 }
3152
3153 /* Check if any w_lines[] entries have become invalid.
3154 * For entries below the change: Correct the lnums for
3155 * inserted/deleted lines. Makes it possible to stop displaying
3156 * after the change. */
3157 for (i = 0; i < wp->w_lines_valid; ++i)
3158 if (wp->w_lines[i].wl_valid)
3159 {
3160 if (wp->w_lines[i].wl_lnum >= lnum)
3161 {
3162 if (wp->w_lines[i].wl_lnum < lnume)
3163 {
3164 /* line included in change */
3165 wp->w_lines[i].wl_valid = FALSE;
3166 }
3167 else if (xtra != 0)
3168 {
3169 /* line below change */
3170 wp->w_lines[i].wl_lnum += xtra;
3171#ifdef FEAT_FOLDING
3172 wp->w_lines[i].wl_lastlnum += xtra;
3173#endif
3174 }
3175 }
3176#ifdef FEAT_FOLDING
3177 else if (wp->w_lines[i].wl_lastlnum >= lnum)
3178 {
3179 /* change somewhere inside this range of folded lines,
3180 * may need to be redrawn */
3181 wp->w_lines[i].wl_valid = FALSE;
3182 }
3183#endif
3184 }
Bram Moolenaar3234cc62009-11-03 17:47:12 +00003185
3186#ifdef FEAT_FOLDING
3187 /* Take care of side effects for setting w_topline when folds have
3188 * changed. Esp. when the buffer was changed in another window. */
3189 if (hasAnyFolding(wp))
3190 set_topline(wp, wp->w_topline);
3191#endif
Bram Moolenaarfd859c92014-05-13 12:44:24 +02003192 /* relative numbering may require updating more */
3193 if (wp->w_p_rnu)
3194 redraw_win_later(wp, SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 }
3196 }
3197
3198 /* Call update_screen() later, which checks out what needs to be redrawn,
3199 * since it notices b_mod_set and then uses b_mod_*. */
3200 if (must_redraw < VALID)
3201 must_redraw = VALID;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003202
3203#ifdef FEAT_AUTOCMD
3204 /* when the cursor line is changed always trigger CursorMoved */
Bram Moolenaare163f1c2006-10-17 09:12:21 +00003205 if (lnum <= curwin->w_cursor.lnum
3206 && lnume + (xtra < 0 ? -xtra : xtra) > curwin->w_cursor.lnum)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003207 last_cursormoved.lnum = 0;
3208#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209}
3210
3211/*
3212 * unchanged() is called when the changed flag must be reset for buffer 'buf'
3213 */
3214 void
3215unchanged(buf, ff)
3216 buf_T *buf;
3217 int ff; /* also reset 'fileformat' */
3218{
Bram Moolenaar164c60f2011-01-22 00:11:50 +01003219 if (buf->b_changed || (ff && file_ff_differs(buf, FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 {
3221 buf->b_changed = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003222 ml_setflags(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 if (ff)
3224 save_file_ff(buf);
3225#ifdef FEAT_WINDOWS
3226 check_status(buf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003227 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228#endif
3229#ifdef FEAT_TITLE
3230 need_maketitle = TRUE; /* set window title later */
3231#endif
3232 }
3233 ++buf->b_changedtick;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003234#ifdef FEAT_NETBEANS_INTG
3235 netbeans_unmodified(buf);
3236#endif
3237}
3238
3239#if defined(FEAT_WINDOWS) || defined(PROTO)
3240/*
3241 * check_status: called when the status bars for the buffer 'buf'
3242 * need to be updated
3243 */
3244 void
3245check_status(buf)
3246 buf_T *buf;
3247{
3248 win_T *wp;
3249
3250 for (wp = firstwin; wp != NULL; wp = wp->w_next)
3251 if (wp->w_buffer == buf && wp->w_status_height)
3252 {
3253 wp->w_redr_status = TRUE;
3254 if (must_redraw < VALID)
3255 must_redraw = VALID;
3256 }
3257}
3258#endif
3259
3260/*
3261 * If the file is readonly, give a warning message with the first change.
3262 * Don't do this for autocommands.
3263 * Don't use emsg(), because it flushes the macro buffer.
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00003264 * If we have undone all changes b_changed will be FALSE, but "b_did_warn"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 * will be TRUE.
Bram Moolenaarb0b50882010-07-07 18:26:28 +02003266 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267 */
3268 void
3269change_warning(col)
3270 int col; /* column for message; non-zero when in insert
3271 mode and 'showmode' is on */
3272{
Bram Moolenaar496c5262009-03-18 14:42:00 +00003273 static char *w_readonly = N_("W10: Warning: Changing a readonly file");
3274
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275 if (curbuf->b_did_warn == FALSE
3276 && curbufIsChanged() == 0
3277#ifdef FEAT_AUTOCMD
3278 && !autocmd_busy
3279#endif
3280 && curbuf->b_p_ro)
3281 {
3282#ifdef FEAT_AUTOCMD
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003283 ++curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284 apply_autocmds(EVENT_FILECHANGEDRO, NULL, NULL, FALSE, curbuf);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003285 --curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003286 if (!curbuf->b_p_ro)
3287 return;
3288#endif
3289 /*
3290 * Do what msg() does, but with a column offset if the warning should
3291 * be after the mode message.
3292 */
3293 msg_start();
3294 if (msg_row == Rows - 1)
3295 msg_col = col;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00003296 msg_source(hl_attr(HLF_W));
Bram Moolenaar496c5262009-03-18 14:42:00 +00003297 MSG_PUTS_ATTR(_(w_readonly), hl_attr(HLF_W) | MSG_HIST);
3298#ifdef FEAT_EVAL
3299 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_readonly), -1);
3300#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301 msg_clr_eos();
3302 (void)msg_end();
3303 if (msg_silent == 0 && !silent_mode)
3304 {
3305 out_flush();
3306 ui_delay(1000L, TRUE); /* give the user time to think about it */
3307 }
3308 curbuf->b_did_warn = TRUE;
3309 redraw_cmdline = FALSE; /* don't redraw and erase the message */
3310 if (msg_row < Rows - 1)
3311 showmode();
3312 }
3313}
3314
3315/*
3316 * Ask for a reply from the user, a 'y' or a 'n'.
3317 * No other characters are accepted, the message is repeated until a valid
3318 * reply is entered or CTRL-C is hit.
3319 * If direct is TRUE, don't use vgetc() but ui_inchar(), don't get characters
3320 * from any buffers but directly from the user.
3321 *
3322 * return the 'y' or 'n'
3323 */
3324 int
3325ask_yesno(str, direct)
3326 char_u *str;
3327 int direct;
3328{
3329 int r = ' ';
3330 int save_State = State;
3331
3332 if (exiting) /* put terminal in raw mode for this question */
3333 settmode(TMODE_RAW);
3334 ++no_wait_return;
3335#ifdef USE_ON_FLY_SCROLL
3336 dont_scroll = TRUE; /* disallow scrolling here */
3337#endif
3338 State = CONFIRM; /* mouse behaves like with :confirm */
3339#ifdef FEAT_MOUSE
3340 setmouse(); /* disables mouse for xterm */
3341#endif
3342 ++no_mapping;
3343 ++allow_keys; /* no mapping here, but recognize keys */
3344
3345 while (r != 'y' && r != 'n')
3346 {
3347 /* same highlighting as for wait_return */
3348 smsg_attr(hl_attr(HLF_R), (char_u *)"%s (y/n)?", str);
3349 if (direct)
3350 r = get_keystroke();
3351 else
Bram Moolenaar913626c2008-01-03 11:43:42 +00003352 r = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003353 if (r == Ctrl_C || r == ESC)
3354 r = 'n';
3355 msg_putchar(r); /* show what you typed */
3356 out_flush();
3357 }
3358 --no_wait_return;
3359 State = save_State;
3360#ifdef FEAT_MOUSE
3361 setmouse();
3362#endif
3363 --no_mapping;
3364 --allow_keys;
3365
3366 return r;
3367}
3368
Bram Moolenaar2526ef22013-03-16 14:20:51 +01003369#if defined(FEAT_MOUSE) || defined(PROTO)
3370/*
3371 * Return TRUE if "c" is a mouse key.
3372 */
3373 int
3374is_mouse_key(c)
3375 int c;
3376{
3377 return c == K_LEFTMOUSE
3378 || c == K_LEFTMOUSE_NM
3379 || c == K_LEFTDRAG
3380 || c == K_LEFTRELEASE
3381 || c == K_LEFTRELEASE_NM
3382 || c == K_MIDDLEMOUSE
3383 || c == K_MIDDLEDRAG
3384 || c == K_MIDDLERELEASE
3385 || c == K_RIGHTMOUSE
3386 || c == K_RIGHTDRAG
3387 || c == K_RIGHTRELEASE
3388 || c == K_MOUSEDOWN
3389 || c == K_MOUSEUP
3390 || c == K_MOUSELEFT
3391 || c == K_MOUSERIGHT
3392 || c == K_X1MOUSE
3393 || c == K_X1DRAG
3394 || c == K_X1RELEASE
3395 || c == K_X2MOUSE
3396 || c == K_X2DRAG
3397 || c == K_X2RELEASE;
3398}
3399#endif
3400
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401/*
3402 * Get a key stroke directly from the user.
3403 * Ignores mouse clicks and scrollbar events, except a click for the left
3404 * button (used at the more prompt).
3405 * Doesn't use vgetc(), because it syncs undo and eats mapped characters.
3406 * Disadvantage: typeahead is ignored.
3407 * Translates the interrupt character for unix to ESC.
3408 */
3409 int
3410get_keystroke()
3411{
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003412 char_u *buf = NULL;
3413 int buflen = 150;
3414 int maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 int len = 0;
3416 int n;
3417 int save_mapped_ctrl_c = mapped_ctrl_c;
Bram Moolenaar4395a712006-09-05 18:57:57 +00003418 int waited = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419
3420 mapped_ctrl_c = FALSE; /* mappings are not used here */
3421 for (;;)
3422 {
3423 cursor_on();
3424 out_flush();
3425
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003426 /* Leave some room for check_termcode() to insert a key code into (max
3427 * 5 chars plus NUL). And fix_input_buffer() can triple the number of
3428 * bytes. */
3429 maxlen = (buflen - 6 - len) / 3;
3430 if (buf == NULL)
3431 buf = alloc(buflen);
3432 else if (maxlen < 10)
3433 {
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003434 char_u *t_buf = buf;
3435
Bram Moolenaardc7e85e2012-06-20 12:40:08 +02003436 /* Need some more space. This might happen when receiving a long
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003437 * escape sequence. */
3438 buflen += 100;
3439 buf = vim_realloc(buf, buflen);
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01003440 if (buf == NULL)
3441 vim_free(t_buf);
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003442 maxlen = (buflen - 6 - len) / 3;
3443 }
3444 if (buf == NULL)
3445 {
3446 do_outofmem_msg((long_u)buflen);
3447 return ESC; /* panic! */
3448 }
3449
Bram Moolenaar071d4272004-06-13 20:20:40 +00003450 /* First time: blocking wait. Second time: wait up to 100ms for a
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003451 * terminal code to complete. */
3452 n = ui_inchar(buf + len, maxlen, len == 0 ? -1L : 100L, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 if (n > 0)
3454 {
3455 /* Replace zero and CSI by a special key code. */
3456 n = fix_input_buffer(buf + len, n, FALSE);
3457 len += n;
Bram Moolenaar4395a712006-09-05 18:57:57 +00003458 waited = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459 }
Bram Moolenaar4395a712006-09-05 18:57:57 +00003460 else if (len > 0)
3461 ++waited; /* keep track of the waiting time */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462
Bram Moolenaar4395a712006-09-05 18:57:57 +00003463 /* Incomplete termcode and not timed out yet: get more characters */
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003464 if ((n = check_termcode(1, buf, buflen, &len)) < 0
Bram Moolenaar4395a712006-09-05 18:57:57 +00003465 && (!p_ttimeout || waited * 100L < (p_ttm < 0 ? p_tm : p_ttm)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466 continue;
Bram Moolenaar4395a712006-09-05 18:57:57 +00003467
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003468 if (n == KEYLEN_REMOVED) /* key code removed */
Bram Moolenaar6eb634e2011-03-03 15:04:08 +01003469 {
Bram Moolenaarfd30cd42011-03-22 13:07:26 +01003470 if (must_redraw != 0 && !need_wait_return && (State & CMDLINE) == 0)
Bram Moolenaar6eb634e2011-03-03 15:04:08 +01003471 {
3472 /* Redrawing was postponed, do it now. */
3473 update_screen(0);
3474 setcursor(); /* put cursor back where it belongs */
3475 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003476 continue;
Bram Moolenaar6eb634e2011-03-03 15:04:08 +01003477 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003478 if (n > 0) /* found a termcode: adjust length */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479 len = n;
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003480 if (len == 0) /* nothing typed yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481 continue;
3482
3483 /* Handle modifier and/or special key code. */
3484 n = buf[0];
3485 if (n == K_SPECIAL)
3486 {
3487 n = TO_SPECIAL(buf[1], buf[2]);
3488 if (buf[1] == KS_MODIFIER
3489 || n == K_IGNORE
Bram Moolenaara5be25e2013-03-16 21:35:33 +01003490#ifdef FEAT_MOUSE
Bram Moolenaar2526ef22013-03-16 14:20:51 +01003491 || (is_mouse_key(n) && n != K_LEFTMOUSE)
Bram Moolenaara5be25e2013-03-16 21:35:33 +01003492#endif
Bram Moolenaar2526ef22013-03-16 14:20:51 +01003493#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494 || n == K_VER_SCROLLBAR
3495 || n == K_HOR_SCROLLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496#endif
3497 )
3498 {
3499 if (buf[1] == KS_MODIFIER)
3500 mod_mask = buf[2];
3501 len -= 3;
3502 if (len > 0)
3503 mch_memmove(buf, buf + 3, (size_t)len);
3504 continue;
3505 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00003506 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507 }
3508#ifdef FEAT_MBYTE
3509 if (has_mbyte)
3510 {
3511 if (MB_BYTE2LEN(n) > len)
3512 continue; /* more bytes to get */
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003513 buf[len >= buflen ? buflen - 1 : len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514 n = (*mb_ptr2char)(buf);
3515 }
3516#endif
3517#ifdef UNIX
3518 if (n == intr_char)
3519 n = ESC;
3520#endif
3521 break;
3522 }
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003523 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524
3525 mapped_ctrl_c = save_mapped_ctrl_c;
3526 return n;
3527}
3528
3529/*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003530 * Get a number from the user.
3531 * When "mouse_used" is not NULL allow using the mouse.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003532 */
3533 int
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003534get_number(colon, mouse_used)
3535 int colon; /* allow colon to abort */
3536 int *mouse_used;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537{
3538 int n = 0;
3539 int c;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00003540 int typed = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003542 if (mouse_used != NULL)
3543 *mouse_used = FALSE;
3544
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545 /* When not printing messages, the user won't know what to type, return a
3546 * zero (as if CR was hit). */
3547 if (msg_silent != 0)
3548 return 0;
3549
3550#ifdef USE_ON_FLY_SCROLL
3551 dont_scroll = TRUE; /* disallow scrolling here */
3552#endif
3553 ++no_mapping;
3554 ++allow_keys; /* no mapping here, but recognize keys */
3555 for (;;)
3556 {
3557 windgoto(msg_row, msg_col);
3558 c = safe_vgetc();
3559 if (VIM_ISDIGIT(c))
3560 {
3561 n = n * 10 + c - '0';
3562 msg_putchar(c);
Bram Moolenaar3991dab2006-03-27 17:01:56 +00003563 ++typed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564 }
3565 else if (c == K_DEL || c == K_KDEL || c == K_BS || c == Ctrl_H)
3566 {
Bram Moolenaar3991dab2006-03-27 17:01:56 +00003567 if (typed > 0)
3568 {
3569 MSG_PUTS("\b \b");
3570 --typed;
3571 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 n /= 10;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573 }
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003574#ifdef FEAT_MOUSE
3575 else if (mouse_used != NULL && c == K_LEFTMOUSE)
3576 {
3577 *mouse_used = TRUE;
3578 n = mouse_row + 1;
3579 break;
3580 }
3581#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582 else if (n == 0 && c == ':' && colon)
3583 {
3584 stuffcharReadbuff(':');
3585 if (!exmode_active)
3586 cmdline_row = msg_row;
3587 skip_redraw = TRUE; /* skip redraw once */
3588 do_redraw = FALSE;
3589 break;
3590 }
3591 else if (c == CAR || c == NL || c == Ctrl_C || c == ESC)
3592 break;
3593 }
3594 --no_mapping;
3595 --allow_keys;
3596 return n;
3597}
3598
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003599/*
3600 * Ask the user to enter a number.
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003601 * When "mouse_used" is not NULL allow using the mouse and in that case return
3602 * the line number.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003603 */
3604 int
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003605prompt_for_number(mouse_used)
3606 int *mouse_used;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003607{
3608 int i;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003609 int save_cmdline_row;
3610 int save_State;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003611
3612 /* When using ":silent" assume that <CR> was entered. */
Bram Moolenaar42eeac32005-06-29 22:40:58 +00003613 if (mouse_used != NULL)
Bram Moolenaard812df62008-11-09 12:46:09 +00003614 MSG_PUTS(_("Type number and <Enter> or click with mouse (empty cancels): "));
Bram Moolenaar42eeac32005-06-29 22:40:58 +00003615 else
Bram Moolenaard812df62008-11-09 12:46:09 +00003616 MSG_PUTS(_("Type number and <Enter> (empty cancels): "));
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003617
Bram Moolenaar203335e2006-09-03 14:35:42 +00003618 /* Set the state such that text can be selected/copied/pasted and we still
3619 * get mouse events. */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003620 save_cmdline_row = cmdline_row;
Bram Moolenaar203335e2006-09-03 14:35:42 +00003621 cmdline_row = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003622 save_State = State;
Bram Moolenaar203335e2006-09-03 14:35:42 +00003623 State = CMDLINE;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003624
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003625 i = get_number(TRUE, mouse_used);
3626 if (KeyTyped)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003627 {
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003628 /* don't call wait_return() now */
3629 /* msg_putchar('\n'); */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003630 cmdline_row = msg_row - 1;
3631 need_wait_return = FALSE;
3632 msg_didany = FALSE;
Bram Moolenaarb2450162009-07-22 09:04:20 +00003633 msg_didout = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003634 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003635 else
3636 cmdline_row = save_cmdline_row;
3637 State = save_State;
3638
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003639 return i;
3640}
3641
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 void
3643msgmore(n)
3644 long n;
3645{
3646 long pn;
3647
3648 if (global_busy /* no messages now, wait until global is finished */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 || !messaging()) /* 'lazyredraw' set, don't do messages now */
3650 return;
3651
Bram Moolenaar7df2d662005-01-25 22:18:08 +00003652 /* We don't want to overwrite another important message, but do overwrite
3653 * a previous "more lines" or "fewer lines" message, so that "5dd" and
3654 * then "put" reports the last action. */
3655 if (keep_msg != NULL && !keep_msg_more)
3656 return;
3657
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658 if (n > 0)
3659 pn = n;
3660 else
3661 pn = -n;
3662
3663 if (pn > p_report)
3664 {
3665 if (pn == 1)
3666 {
3667 if (n > 0)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003668 vim_strncpy(msg_buf, (char_u *)_("1 more line"),
3669 MSG_BUF_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670 else
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003671 vim_strncpy(msg_buf, (char_u *)_("1 line less"),
3672 MSG_BUF_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673 }
3674 else
3675 {
3676 if (n > 0)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003677 vim_snprintf((char *)msg_buf, MSG_BUF_LEN,
3678 _("%ld more lines"), pn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679 else
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003680 vim_snprintf((char *)msg_buf, MSG_BUF_LEN,
3681 _("%ld fewer lines"), pn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 }
3683 if (got_int)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003684 vim_strcat(msg_buf, (char_u *)_(" (Interrupted)"), MSG_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685 if (msg(msg_buf))
3686 {
Bram Moolenaar238a5642006-02-21 22:12:05 +00003687 set_keep_msg(msg_buf, 0);
Bram Moolenaar7df2d662005-01-25 22:18:08 +00003688 keep_msg_more = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689 }
3690 }
3691}
3692
3693/*
3694 * flush map and typeahead buffers and give a warning for an error
3695 */
3696 void
3697beep_flush()
3698{
3699 if (emsg_silent == 0)
3700 {
3701 flush_buffers(FALSE);
Bram Moolenaar165bc692015-07-21 17:53:25 +02003702 vim_beep(BO_ERROR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 }
3704}
3705
3706/*
Bram Moolenaar165bc692015-07-21 17:53:25 +02003707 * Give a warning for an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708 */
3709 void
Bram Moolenaar165bc692015-07-21 17:53:25 +02003710vim_beep(val)
3711 unsigned val; /* one of the BO_ values, e.g., BO_OPER */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712{
3713 if (emsg_silent == 0)
3714 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02003715 if (!((bo_flags & val) || (bo_flags & BO_ALL)))
3716 {
3717 if (p_vb
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718#ifdef FEAT_GUI
Bram Moolenaar165bc692015-07-21 17:53:25 +02003719 /* While the GUI is starting up the termcap is set for the
3720 * GUI but the output still goes to a terminal. */
3721 && !(gui.in_use && gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722#endif
Bram Moolenaar165bc692015-07-21 17:53:25 +02003723 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02003725 out_str(T_VB);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726 }
3727 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02003728 {
3729#ifdef MSDOS
3730 /*
3731 * The number of beeps outputted is reduced to avoid having to
3732 * wait for all the beeps to finish. This is only a problem on
3733 * systems where the beeps don't overlap.
3734 */
3735 if (beep_count == 0 || beep_count == 10)
3736 {
3737 out_char(BELL);
3738 beep_count = 1;
3739 }
3740 else
3741 ++beep_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742#else
Bram Moolenaar165bc692015-07-21 17:53:25 +02003743 out_char(BELL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744#endif
Bram Moolenaar165bc692015-07-21 17:53:25 +02003745 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003747
3748 /* When 'verbose' is set and we are sourcing a script or executing a
3749 * function give the user a hint where the beep comes from. */
3750 if (vim_strchr(p_debug, 'e') != NULL)
3751 {
3752 msg_source(hl_attr(HLF_W));
3753 msg_attr((char_u *)_("Beep!"), hl_attr(HLF_W));
3754 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755 }
3756}
3757
3758/*
3759 * To get the "real" home directory:
3760 * - get value of $HOME
3761 * For Unix:
3762 * - go to that directory
3763 * - do mch_dirname() to get the real name of that directory.
3764 * This also works with mounts and links.
3765 * Don't do this for MS-DOS, it will change the "current dir" for a drive.
3766 */
3767static char_u *homedir = NULL;
3768
3769 void
3770init_homedir()
3771{
3772 char_u *var;
3773
Bram Moolenaar05159a02005-02-26 23:04:13 +00003774 /* In case we are called a second time (when 'encoding' changes). */
3775 vim_free(homedir);
3776 homedir = NULL;
3777
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778#ifdef VMS
3779 var = mch_getenv((char_u *)"SYS$LOGIN");
3780#else
3781 var = mch_getenv((char_u *)"HOME");
3782#endif
3783
3784 if (var != NULL && *var == NUL) /* empty is same as not set */
3785 var = NULL;
3786
3787#ifdef WIN3264
3788 /*
3789 * Weird but true: $HOME may contain an indirect reference to another
3790 * variable, esp. "%USERPROFILE%". Happens when $USERPROFILE isn't set
3791 * when $HOME is being set.
3792 */
3793 if (var != NULL && *var == '%')
3794 {
3795 char_u *p;
3796 char_u *exp;
3797
3798 p = vim_strchr(var + 1, '%');
3799 if (p != NULL)
3800 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003801 vim_strncpy(NameBuff, var + 1, p - (var + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 exp = mch_getenv(NameBuff);
3803 if (exp != NULL && *exp != NUL
3804 && STRLEN(exp) + STRLEN(p) < MAXPATHL)
3805 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00003806 vim_snprintf((char *)NameBuff, MAXPATHL, "%s%s", exp, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003807 var = NameBuff;
3808 /* Also set $HOME, it's needed for _viminfo. */
3809 vim_setenv((char_u *)"HOME", NameBuff);
3810 }
3811 }
3812 }
3813
3814 /*
3815 * Typically, $HOME is not defined on Windows, unless the user has
3816 * specifically defined it for Vim's sake. However, on Windows NT
3817 * platforms, $HOMEDRIVE and $HOMEPATH are automatically defined for
3818 * each user. Try constructing $HOME from these.
3819 */
3820 if (var == NULL)
3821 {
3822 char_u *homedrive, *homepath;
3823
3824 homedrive = mch_getenv((char_u *)"HOMEDRIVE");
3825 homepath = mch_getenv((char_u *)"HOMEPATH");
Bram Moolenaar6f977012010-01-06 17:53:38 +01003826 if (homepath == NULL || *homepath == NUL)
3827 homepath = "\\";
3828 if (homedrive != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003829 && STRLEN(homedrive) + STRLEN(homepath) < MAXPATHL)
3830 {
3831 sprintf((char *)NameBuff, "%s%s", homedrive, homepath);
3832 if (NameBuff[0] != NUL)
3833 {
3834 var = NameBuff;
3835 /* Also set $HOME, it's needed for _viminfo. */
3836 vim_setenv((char_u *)"HOME", NameBuff);
3837 }
3838 }
3839 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00003840
3841# if defined(FEAT_MBYTE)
3842 if (enc_utf8 && var != NULL)
3843 {
3844 int len;
Bram Moolenaarb453a532011-04-28 17:48:44 +02003845 char_u *pp = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003846
3847 /* Convert from active codepage to UTF-8. Other conversions are
3848 * not done, because they would fail for non-ASCII characters. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003849 acp_to_enc(var, (int)STRLEN(var), &pp, &len);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003850 if (pp != NULL)
3851 {
3852 homedir = pp;
3853 return;
3854 }
3855 }
3856# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857#endif
3858
3859#if defined(OS2) || defined(MSDOS) || defined(MSWIN)
3860 /*
3861 * Default home dir is C:/
3862 * Best assumption we can make in such a situation.
3863 */
3864 if (var == NULL)
3865 var = "C:/";
3866#endif
3867 if (var != NULL)
3868 {
3869#ifdef UNIX
3870 /*
3871 * Change to the directory and get the actual path. This resolves
3872 * links. Don't do it when we can't return.
3873 */
3874 if (mch_dirname(NameBuff, MAXPATHL) == OK
3875 && mch_chdir((char *)NameBuff) == 0)
3876 {
3877 if (!mch_chdir((char *)var) && mch_dirname(IObuff, IOSIZE) == OK)
3878 var = IObuff;
3879 if (mch_chdir((char *)NameBuff) != 0)
3880 EMSG(_(e_prev_dir));
3881 }
3882#endif
3883 homedir = vim_strsave(var);
3884 }
3885}
3886
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003887#if defined(EXITFREE) || defined(PROTO)
3888 void
3889free_homedir()
3890{
3891 vim_free(homedir);
3892}
Bram Moolenaar24305862012-08-15 14:05:05 +02003893
3894# ifdef FEAT_CMDL_COMPL
3895 void
3896free_users()
3897{
3898 ga_clear_strings(&ga_users);
3899}
3900# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003901#endif
3902
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903/*
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003904 * Call expand_env() and store the result in an allocated string.
3905 * This is not very memory efficient, this expects the result to be freed
3906 * again soon.
3907 */
3908 char_u *
3909expand_env_save(src)
3910 char_u *src;
3911{
3912 return expand_env_save_opt(src, FALSE);
3913}
3914
3915/*
3916 * Idem, but when "one" is TRUE handle the string as one file name, only
3917 * expand "~" at the start.
3918 */
3919 char_u *
3920expand_env_save_opt(src, one)
3921 char_u *src;
3922 int one;
3923{
3924 char_u *p;
3925
3926 p = alloc(MAXPATHL);
3927 if (p != NULL)
3928 expand_env_esc(src, p, MAXPATHL, FALSE, one, NULL);
3929 return p;
3930}
3931
3932/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933 * Expand environment variable with path name.
3934 * "~/" is also expanded, using $HOME. For Unix "~user/" is expanded.
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003935 * Skips over "\ ", "\~" and "\$" (not for Win32 though).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936 * If anything fails no expansion is done and dst equals src.
3937 */
3938 void
3939expand_env(src, dst, dstlen)
3940 char_u *src; /* input string e.g. "$HOME/vim.hlp" */
3941 char_u *dst; /* where to put the result */
3942 int dstlen; /* maximum length of the result */
3943{
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003944 expand_env_esc(src, dst, dstlen, FALSE, FALSE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945}
3946
3947 void
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003948expand_env_esc(srcp, dst, dstlen, esc, one, startstr)
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003949 char_u *srcp; /* input string e.g. "$HOME/vim.hlp" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950 char_u *dst; /* where to put the result */
3951 int dstlen; /* maximum length of the result */
3952 int esc; /* escape spaces in expanded variables */
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003953 int one; /* "srcp" is one file name */
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003954 char_u *startstr; /* start again after this (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955{
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003956 char_u *src;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 char_u *tail;
3958 int c;
3959 char_u *var;
3960 int copy_char;
3961 int mustfree; /* var was allocated, need to free it later */
3962 int at_start = TRUE; /* at start of a name */
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003963 int startstr_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003965 if (startstr != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003966 startstr_len = (int)STRLEN(startstr);
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003967
3968 src = skipwhite(srcp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969 --dstlen; /* leave one char space for "\," */
3970 while (*src && dstlen > 0)
3971 {
3972 copy_char = TRUE;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003973 if ((*src == '$'
3974#ifdef VMS
3975 && at_start
3976#endif
3977 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3979 || *src == '%'
3980#endif
3981 || (*src == '~' && at_start))
3982 {
3983 mustfree = FALSE;
3984
3985 /*
3986 * The variable name is copied into dst temporarily, because it may
3987 * be a string in read-only memory and a NUL needs to be appended.
3988 */
3989 if (*src != '~') /* environment var */
3990 {
3991 tail = src + 1;
3992 var = dst;
3993 c = dstlen - 1;
3994
3995#ifdef UNIX
3996 /* Unix has ${var-name} type environment vars */
3997 if (*tail == '{' && !vim_isIDc('{'))
3998 {
3999 tail++; /* ignore '{' */
4000 while (c-- > 0 && *tail && *tail != '}')
4001 *var++ = *tail++;
4002 }
4003 else
4004#endif
4005 {
4006 while (c-- > 0 && *tail != NUL && ((vim_isIDc(*tail))
4007#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
4008 || (*src == '%' && *tail != '%')
4009#endif
4010 ))
4011 {
4012#ifdef OS2 /* env vars only in uppercase */
4013 *var++ = TOUPPER_LOC(*tail);
4014 tail++; /* toupper() may be a macro! */
4015#else
4016 *var++ = *tail++;
4017#endif
4018 }
4019 }
4020
4021#if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(UNIX)
4022# ifdef UNIX
4023 if (src[1] == '{' && *tail != '}')
4024# else
4025 if (*src == '%' && *tail != '%')
4026# endif
4027 var = NULL;
4028 else
4029 {
4030# ifdef UNIX
4031 if (src[1] == '{')
4032# else
4033 if (*src == '%')
4034#endif
4035 ++tail;
4036#endif
4037 *var = NUL;
4038 var = vim_getenv(dst, &mustfree);
4039#if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(UNIX)
4040 }
4041#endif
4042 }
4043 /* home directory */
4044 else if ( src[1] == NUL
4045 || vim_ispathsep(src[1])
4046 || vim_strchr((char_u *)" ,\t\n", src[1]) != NULL)
4047 {
4048 var = homedir;
4049 tail = src + 1;
4050 }
4051 else /* user directory */
4052 {
4053#if defined(UNIX) || (defined(VMS) && defined(USER_HOME))
4054 /*
4055 * Copy ~user to dst[], so we can put a NUL after it.
4056 */
4057 tail = src;
4058 var = dst;
4059 c = dstlen - 1;
4060 while ( c-- > 0
4061 && *tail
4062 && vim_isfilec(*tail)
4063 && !vim_ispathsep(*tail))
4064 *var++ = *tail++;
4065 *var = NUL;
4066# ifdef UNIX
4067 /*
4068 * If the system supports getpwnam(), use it.
4069 * Otherwise, or if getpwnam() fails, the shell is used to
4070 * expand ~user. This is slower and may fail if the shell
4071 * does not support ~user (old versions of /bin/sh).
4072 */
4073# if defined(HAVE_GETPWNAM) && defined(HAVE_PWD_H)
4074 {
4075 struct passwd *pw;
4076
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00004077 /* Note: memory allocated by getpwnam() is never freed.
4078 * Calling endpwent() apparently doesn't help. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 pw = getpwnam((char *)dst + 1);
4080 if (pw != NULL)
4081 var = (char_u *)pw->pw_dir;
4082 else
4083 var = NULL;
4084 }
4085 if (var == NULL)
4086# endif
4087 {
4088 expand_T xpc;
4089
4090 ExpandInit(&xpc);
4091 xpc.xp_context = EXPAND_FILES;
4092 var = ExpandOne(&xpc, dst, NULL,
4093 WILD_ADD_SLASH|WILD_SILENT, WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094 mustfree = TRUE;
4095 }
4096
4097# else /* !UNIX, thus VMS */
4098 /*
4099 * USER_HOME is a comma-separated list of
4100 * directories to search for the user account in.
4101 */
4102 {
4103 char_u test[MAXPATHL], paths[MAXPATHL];
4104 char_u *path, *next_path, *ptr;
4105 struct stat st;
4106
4107 STRCPY(paths, USER_HOME);
4108 next_path = paths;
4109 while (*next_path)
4110 {
4111 for (path = next_path; *next_path && *next_path != ',';
4112 next_path++);
4113 if (*next_path)
4114 *next_path++ = NUL;
4115 STRCPY(test, path);
4116 STRCAT(test, "/");
4117 STRCAT(test, dst + 1);
4118 if (mch_stat(test, &st) == 0)
4119 {
4120 var = alloc(STRLEN(test) + 1);
4121 STRCPY(var, test);
4122 mustfree = TRUE;
4123 break;
4124 }
4125 }
4126 }
4127# endif /* UNIX */
4128#else
4129 /* cannot expand user's home directory, so don't try */
4130 var = NULL;
4131 tail = (char_u *)""; /* for gcc */
4132#endif /* UNIX || VMS */
4133 }
4134
4135#ifdef BACKSLASH_IN_FILENAME
4136 /* If 'shellslash' is set change backslashes to forward slashes.
4137 * Can't use slash_adjust(), p_ssl may be set temporarily. */
4138 if (p_ssl && var != NULL && vim_strchr(var, '\\') != NULL)
4139 {
4140 char_u *p = vim_strsave(var);
4141
4142 if (p != NULL)
4143 {
4144 if (mustfree)
4145 vim_free(var);
4146 var = p;
4147 mustfree = TRUE;
4148 forward_slash(var);
4149 }
4150 }
4151#endif
4152
4153 /* If "var" contains white space, escape it with a backslash.
4154 * Required for ":e ~/tt" when $HOME includes a space. */
4155 if (esc && var != NULL && vim_strpbrk(var, (char_u *)" \t") != NULL)
4156 {
4157 char_u *p = vim_strsave_escaped(var, (char_u *)" \t");
4158
4159 if (p != NULL)
4160 {
4161 if (mustfree)
4162 vim_free(var);
4163 var = p;
4164 mustfree = TRUE;
4165 }
4166 }
4167
4168 if (var != NULL && *var != NUL
4169 && (STRLEN(var) + STRLEN(tail) + 1 < (unsigned)dstlen))
4170 {
4171 STRCPY(dst, var);
4172 dstlen -= (int)STRLEN(var);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004173 c = (int)STRLEN(var);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174 /* if var[] ends in a path separator and tail[] starts
4175 * with it, skip a character */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004176 if (*var != NUL && after_pathsep(dst, dst + c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA)
4178 && dst[-1] != ':'
4179#endif
4180 && vim_ispathsep(*tail))
4181 ++tail;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004182 dst += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004183 src = tail;
4184 copy_char = FALSE;
4185 }
4186 if (mustfree)
4187 vim_free(var);
4188 }
4189
4190 if (copy_char) /* copy at least one char */
4191 {
4192 /*
Bram Moolenaar25394022007-05-10 19:06:20 +00004193 * Recognize the start of a new name, for '~'.
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00004194 * Don't do this when "one" is TRUE, to avoid expanding "~" in
4195 * ":edit foo ~ foo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196 */
4197 at_start = FALSE;
4198 if (src[0] == '\\' && src[1] != NUL)
4199 {
4200 *dst++ = *src++;
4201 --dstlen;
4202 }
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00004203 else if ((src[0] == ' ' || src[0] == ',') && !one)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204 at_start = TRUE;
4205 *dst++ = *src++;
4206 --dstlen;
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00004207
4208 if (startstr != NULL && src - startstr_len >= srcp
4209 && STRNCMP(src - startstr_len, startstr, startstr_len) == 0)
4210 at_start = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211 }
4212 }
4213 *dst = NUL;
4214}
4215
4216/*
4217 * Vim's version of getenv().
4218 * Special handling of $HOME, $VIM and $VIMRUNTIME.
Bram Moolenaar2f6b0b82005-03-08 22:43:10 +00004219 * Also does ACP to 'enc' conversion for Win32.
Bram Moolenaarb453a532011-04-28 17:48:44 +02004220 * "mustfree" is set to TRUE when returned is allocated, it must be
4221 * initialized to FALSE by the caller.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004222 */
4223 char_u *
4224vim_getenv(name, mustfree)
4225 char_u *name;
Bram Moolenaarb453a532011-04-28 17:48:44 +02004226 int *mustfree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004227{
4228 char_u *p;
4229 char_u *pend;
4230 int vimruntime;
4231
4232#if defined(OS2) || defined(MSDOS) || defined(MSWIN)
4233 /* use "C:/" when $HOME is not set */
4234 if (STRCMP(name, "HOME") == 0)
4235 return homedir;
4236#endif
4237
4238 p = mch_getenv(name);
4239 if (p != NULL && *p == NUL) /* empty is the same as not set */
4240 p = NULL;
4241
4242 if (p != NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00004243 {
4244#if defined(FEAT_MBYTE) && defined(WIN3264)
4245 if (enc_utf8)
4246 {
4247 int len;
Bram Moolenaarb453a532011-04-28 17:48:44 +02004248 char_u *pp = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004249
4250 /* Convert from active codepage to UTF-8. Other conversions are
4251 * not done, because they would fail for non-ASCII characters. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004252 acp_to_enc(p, (int)STRLEN(p), &pp, &len);
Bram Moolenaar05159a02005-02-26 23:04:13 +00004253 if (pp != NULL)
4254 {
4255 p = pp;
4256 *mustfree = TRUE;
4257 }
4258 }
4259#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260 return p;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004261 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262
4263 vimruntime = (STRCMP(name, "VIMRUNTIME") == 0);
4264 if (!vimruntime && STRCMP(name, "VIM") != 0)
4265 return NULL;
4266
4267 /*
4268 * When expanding $VIMRUNTIME fails, try using $VIM/vim<version> or $VIM.
4269 * Don't do this when default_vimruntime_dir is non-empty.
4270 */
4271 if (vimruntime
4272#ifdef HAVE_PATHDEF
4273 && *default_vimruntime_dir == NUL
4274#endif
4275 )
4276 {
4277 p = mch_getenv((char_u *)"VIM");
4278 if (p != NULL && *p == NUL) /* empty is the same as not set */
4279 p = NULL;
4280 if (p != NULL)
4281 {
4282 p = vim_version_dir(p);
4283 if (p != NULL)
4284 *mustfree = TRUE;
4285 else
4286 p = mch_getenv((char_u *)"VIM");
Bram Moolenaar05159a02005-02-26 23:04:13 +00004287
4288#if defined(FEAT_MBYTE) && defined(WIN3264)
4289 if (enc_utf8)
4290 {
4291 int len;
Bram Moolenaarb453a532011-04-28 17:48:44 +02004292 char_u *pp = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004293
4294 /* Convert from active codepage to UTF-8. Other conversions
4295 * are not done, because they would fail for non-ASCII
4296 * characters. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004297 acp_to_enc(p, (int)STRLEN(p), &pp, &len);
Bram Moolenaar05159a02005-02-26 23:04:13 +00004298 if (pp != NULL)
4299 {
Bram Moolenaarb453a532011-04-28 17:48:44 +02004300 if (*mustfree)
Bram Moolenaar05159a02005-02-26 23:04:13 +00004301 vim_free(p);
4302 p = pp;
4303 *mustfree = TRUE;
4304 }
4305 }
4306#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004307 }
4308 }
4309
4310 /*
4311 * When expanding $VIM or $VIMRUNTIME fails, try using:
4312 * - the directory name from 'helpfile' (unless it contains '$')
4313 * - the executable name from argv[0]
4314 */
4315 if (p == NULL)
4316 {
4317 if (p_hf != NULL && vim_strchr(p_hf, '$') == NULL)
4318 p = p_hf;
4319#ifdef USE_EXE_NAME
4320 /*
4321 * Use the name of the executable, obtained from argv[0].
4322 */
4323 else
4324 p = exe_name;
4325#endif
4326 if (p != NULL)
4327 {
4328 /* remove the file name */
4329 pend = gettail(p);
4330
4331 /* remove "doc/" from 'helpfile', if present */
4332 if (p == p_hf)
4333 pend = remove_tail(p, pend, (char_u *)"doc");
4334
4335#ifdef USE_EXE_NAME
4336# ifdef MACOS_X
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004337 /* remove "MacOS" from exe_name and add "Resources/vim" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338 if (p == exe_name)
4339 {
4340 char_u *pend1;
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004341 char_u *pnew;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004342
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004343 pend1 = remove_tail(p, pend, (char_u *)"MacOS");
4344 if (pend1 != pend)
4345 {
4346 pnew = alloc((unsigned)(pend1 - p) + 15);
4347 if (pnew != NULL)
4348 {
4349 STRNCPY(pnew, p, (pend1 - p));
4350 STRCPY(pnew + (pend1 - p), "Resources/vim");
4351 p = pnew;
4352 pend = p + STRLEN(p);
4353 }
4354 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355 }
4356# endif
4357 /* remove "src/" from exe_name, if present */
4358 if (p == exe_name)
4359 pend = remove_tail(p, pend, (char_u *)"src");
4360#endif
4361
4362 /* for $VIM, remove "runtime/" or "vim54/", if present */
4363 if (!vimruntime)
4364 {
4365 pend = remove_tail(p, pend, (char_u *)RUNTIME_DIRNAME);
4366 pend = remove_tail(p, pend, (char_u *)VIM_VERSION_NODOT);
4367 }
4368
4369 /* remove trailing path separator */
4370#ifndef MACOS_CLASSIC
4371 /* With MacOS path (with colons) the final colon is required */
Bram Moolenaare21877a2008-02-13 09:58:14 +00004372 /* to avoid confusion between absolute and relative path */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004373 if (pend > p && after_pathsep(p, pend))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374 --pend;
4375#endif
4376
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004377#ifdef MACOS_X
4378 if (p == exe_name || p == p_hf)
4379#endif
4380 /* check that the result is a directory name */
4381 p = vim_strnsave(p, (int)(pend - p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382
4383 if (p != NULL && !mch_isdir(p))
4384 {
4385 vim_free(p);
4386 p = NULL;
4387 }
4388 else
4389 {
4390#ifdef USE_EXE_NAME
4391 /* may add "/vim54" or "/runtime" if it exists */
4392 if (vimruntime && (pend = vim_version_dir(p)) != NULL)
4393 {
4394 vim_free(p);
4395 p = pend;
4396 }
4397#endif
4398 *mustfree = TRUE;
4399 }
4400 }
4401 }
4402
4403#ifdef HAVE_PATHDEF
4404 /* When there is a pathdef.c file we can use default_vim_dir and
4405 * default_vimruntime_dir */
4406 if (p == NULL)
4407 {
4408 /* Only use default_vimruntime_dir when it is not empty */
4409 if (vimruntime && *default_vimruntime_dir != NUL)
4410 {
4411 p = default_vimruntime_dir;
4412 *mustfree = FALSE;
4413 }
4414 else if (*default_vim_dir != NUL)
4415 {
4416 if (vimruntime && (p = vim_version_dir(default_vim_dir)) != NULL)
4417 *mustfree = TRUE;
4418 else
4419 {
4420 p = default_vim_dir;
4421 *mustfree = FALSE;
4422 }
4423 }
4424 }
4425#endif
4426
4427 /*
4428 * Set the environment variable, so that the new value can be found fast
4429 * next time, and others can also use it (e.g. Perl).
4430 */
4431 if (p != NULL)
4432 {
4433 if (vimruntime)
4434 {
4435 vim_setenv((char_u *)"VIMRUNTIME", p);
4436 didset_vimruntime = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 }
4438 else
4439 {
4440 vim_setenv((char_u *)"VIM", p);
4441 didset_vim = TRUE;
4442 }
4443 }
4444 return p;
4445}
4446
4447/*
4448 * Check if the directory "vimdir/<version>" or "vimdir/runtime" exists.
4449 * Return NULL if not, return its name in allocated memory otherwise.
4450 */
4451 static char_u *
4452vim_version_dir(vimdir)
4453 char_u *vimdir;
4454{
4455 char_u *p;
4456
4457 if (vimdir == NULL || *vimdir == NUL)
4458 return NULL;
4459 p = concat_fnames(vimdir, (char_u *)VIM_VERSION_NODOT, TRUE);
4460 if (p != NULL && mch_isdir(p))
4461 return p;
4462 vim_free(p);
4463 p = concat_fnames(vimdir, (char_u *)RUNTIME_DIRNAME, TRUE);
4464 if (p != NULL && mch_isdir(p))
4465 return p;
4466 vim_free(p);
4467 return NULL;
4468}
4469
4470/*
4471 * If the string between "p" and "pend" ends in "name/", return "pend" minus
4472 * the length of "name/". Otherwise return "pend".
4473 */
4474 static char_u *
4475remove_tail(p, pend, name)
4476 char_u *p;
4477 char_u *pend;
4478 char_u *name;
4479{
4480 int len = (int)STRLEN(name) + 1;
4481 char_u *newend = pend - len;
4482
4483 if (newend >= p
4484 && fnamencmp(newend, name, len - 1) == 0
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004485 && (newend == p || after_pathsep(p, newend)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 return newend;
4487 return pend;
4488}
4489
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 * Our portable version of setenv.
4492 */
4493 void
4494vim_setenv(name, val)
4495 char_u *name;
4496 char_u *val;
4497{
4498#ifdef HAVE_SETENV
4499 mch_setenv((char *)name, (char *)val, 1);
4500#else
4501 char_u *envbuf;
4502
4503 /*
4504 * Putenv does not copy the string, it has to remain
4505 * valid. The allocated memory will never be freed.
4506 */
4507 envbuf = alloc((unsigned)(STRLEN(name) + STRLEN(val) + 2));
4508 if (envbuf != NULL)
4509 {
4510 sprintf((char *)envbuf, "%s=%s", name, val);
4511 putenv((char *)envbuf);
4512 }
4513#endif
Bram Moolenaar011a34d2012-02-29 13:49:09 +01004514#ifdef FEAT_GETTEXT
4515 /*
4516 * When setting $VIMRUNTIME adjust the directory to find message
4517 * translations to $VIMRUNTIME/lang.
4518 */
4519 if (*val != NUL && STRICMP(name, "VIMRUNTIME") == 0)
4520 {
4521 char_u *buf = concat_str(val, (char_u *)"/lang");
4522
4523 if (buf != NULL)
4524 {
4525 bindtextdomain(VIMPACKAGE, (char *)buf);
4526 vim_free(buf);
4527 }
4528 }
4529#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530}
4531
4532#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4533/*
4534 * Function given to ExpandGeneric() to obtain an environment variable name.
4535 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 char_u *
4537get_env_name(xp, idx)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004538 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539 int idx;
4540{
4541# if defined(AMIGA) || defined(__MRC__) || defined(__SC__)
4542 /*
4543 * No environ[] on the Amiga and on the Mac (using MPW).
4544 */
4545 return NULL;
4546# else
4547# ifndef __WIN32__
4548 /* Borland C++ 5.2 has this in a header file. */
4549 extern char **environ;
4550# endif
Bram Moolenaar21cf8232004-07-16 20:18:37 +00004551# define ENVNAMELEN 100
4552 static char_u name[ENVNAMELEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553 char_u *str;
4554 int n;
4555
4556 str = (char_u *)environ[idx];
4557 if (str == NULL)
4558 return NULL;
4559
Bram Moolenaar21cf8232004-07-16 20:18:37 +00004560 for (n = 0; n < ENVNAMELEN - 1; ++n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004561 {
4562 if (str[n] == '=' || str[n] == NUL)
4563 break;
4564 name[n] = str[n];
4565 }
4566 name[n] = NUL;
4567 return name;
4568# endif
4569}
Bram Moolenaar24305862012-08-15 14:05:05 +02004570
4571/*
4572 * Find all user names for user completion.
4573 * Done only once and then cached.
4574 */
4575 static void
Bram Moolenaar01b626c2013-06-16 22:49:14 +02004576init_users()
4577{
Bram Moolenaar24305862012-08-15 14:05:05 +02004578 static int lazy_init_done = FALSE;
4579
4580 if (lazy_init_done)
4581 return;
4582
4583 lazy_init_done = TRUE;
4584 ga_init2(&ga_users, sizeof(char_u *), 20);
4585
4586# if defined(HAVE_GETPWENT) && defined(HAVE_PWD_H)
4587 {
4588 char_u* user;
4589 struct passwd* pw;
4590
4591 setpwent();
4592 while ((pw = getpwent()) != NULL)
4593 /* pw->pw_name shouldn't be NULL but just in case... */
4594 if (pw->pw_name != NULL)
4595 {
4596 if (ga_grow(&ga_users, 1) == FAIL)
4597 break;
4598 user = vim_strsave((char_u*)pw->pw_name);
4599 if (user == NULL)
4600 break;
4601 ((char_u **)(ga_users.ga_data))[ga_users.ga_len++] = user;
4602 }
4603 endpwent();
4604 }
4605# endif
4606}
4607
4608/*
4609 * Function given to ExpandGeneric() to obtain an user names.
4610 */
4611 char_u*
4612get_users(xp, idx)
4613 expand_T *xp UNUSED;
4614 int idx;
4615{
4616 init_users();
4617 if (idx < ga_users.ga_len)
4618 return ((char_u **)ga_users.ga_data)[idx];
4619 return NULL;
4620}
4621
4622/*
4623 * Check whether name matches a user name. Return:
4624 * 0 if name does not match any user name.
4625 * 1 if name partially matches the beginning of a user name.
4626 * 2 is name fully matches a user name.
4627 */
4628int match_user(name)
4629 char_u* name;
4630{
4631 int i;
4632 int n = (int)STRLEN(name);
4633 int result = 0;
4634
4635 init_users();
4636 for (i = 0; i < ga_users.ga_len; i++)
4637 {
4638 if (STRCMP(((char_u **)ga_users.ga_data)[i], name) == 0)
4639 return 2; /* full match */
4640 if (STRNCMP(((char_u **)ga_users.ga_data)[i], name, n) == 0)
4641 result = 1; /* partial match */
4642 }
4643 return result;
4644}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645#endif
4646
4647/*
4648 * Replace home directory by "~" in each space or comma separated file name in
4649 * 'src'.
4650 * If anything fails (except when out of space) dst equals src.
4651 */
4652 void
4653home_replace(buf, src, dst, dstlen, one)
4654 buf_T *buf; /* when not NULL, check for help files */
4655 char_u *src; /* input file name */
4656 char_u *dst; /* where to put the result */
4657 int dstlen; /* maximum length of the result */
4658 int one; /* if TRUE, only replace one file name, include
4659 spaces and commas in the file name. */
4660{
4661 size_t dirlen = 0, envlen = 0;
4662 size_t len;
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004663 char_u *homedir_env, *homedir_env_orig;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004664 char_u *p;
4665
4666 if (src == NULL)
4667 {
4668 *dst = NUL;
4669 return;
4670 }
4671
4672 /*
4673 * If the file is a help file, remove the path completely.
4674 */
4675 if (buf != NULL && buf->b_help)
4676 {
4677 STRCPY(dst, gettail(src));
4678 return;
4679 }
4680
4681 /*
4682 * We check both the value of the $HOME environment variable and the
4683 * "real" home directory.
4684 */
4685 if (homedir != NULL)
4686 dirlen = STRLEN(homedir);
4687
4688#ifdef VMS
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004689 homedir_env_orig = homedir_env = mch_getenv((char_u *)"SYS$LOGIN");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690#else
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004691 homedir_env_orig = homedir_env = mch_getenv((char_u *)"HOME");
4692#endif
Bram Moolenaarbef47902012-07-06 16:49:40 +02004693 /* Empty is the same as not set. */
4694 if (homedir_env != NULL && *homedir_env == NUL)
4695 homedir_env = NULL;
4696
Bram Moolenaare60c2e52013-06-05 19:35:38 +02004697#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL)
Bram Moolenaarbef47902012-07-06 16:49:40 +02004698 if (homedir_env != NULL && vim_strchr(homedir_env, '~') != NULL)
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004699 {
4700 int usedlen = 0;
4701 int flen;
4702 char_u *fbuf = NULL;
4703
4704 flen = (int)STRLEN(homedir_env);
Bram Moolenaard12f8112012-06-20 17:56:09 +02004705 (void)modify_fname((char_u *)":p", &usedlen,
4706 &homedir_env, &fbuf, &flen);
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004707 flen = (int)STRLEN(homedir_env);
4708 if (flen > 0 && vim_ispathsep(homedir_env[flen - 1]))
4709 /* Remove the trailing / that is added to a directory. */
4710 homedir_env[flen - 1] = NUL;
4711 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004712#endif
4713
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714 if (homedir_env != NULL)
4715 envlen = STRLEN(homedir_env);
4716
4717 if (!one)
4718 src = skipwhite(src);
4719 while (*src && dstlen > 0)
4720 {
4721 /*
4722 * Here we are at the beginning of a file name.
4723 * First, check to see if the beginning of the file name matches
4724 * $HOME or the "real" home directory. Check that there is a '/'
4725 * after the match (so that if e.g. the file is "/home/pieter/bla",
4726 * and the home directory is "/home/piet", the file does not end up
4727 * as "~er/bla" (which would seem to indicate the file "bla" in user
4728 * er's home directory)).
4729 */
4730 p = homedir;
4731 len = dirlen;
4732 for (;;)
4733 {
4734 if ( len
4735 && fnamencmp(src, p, len) == 0
4736 && (vim_ispathsep(src[len])
4737 || (!one && (src[len] == ',' || src[len] == ' '))
4738 || src[len] == NUL))
4739 {
4740 src += len;
4741 if (--dstlen > 0)
4742 *dst++ = '~';
4743
4744 /*
4745 * If it's just the home directory, add "/".
4746 */
4747 if (!vim_ispathsep(src[0]) && --dstlen > 0)
4748 *dst++ = '/';
4749 break;
4750 }
4751 if (p == homedir_env)
4752 break;
4753 p = homedir_env;
4754 len = envlen;
4755 }
4756
4757 /* if (!one) skip to separator: space or comma */
4758 while (*src && (one || (*src != ',' && *src != ' ')) && --dstlen > 0)
4759 *dst++ = *src++;
4760 /* skip separator */
4761 while ((*src == ' ' || *src == ',') && --dstlen > 0)
4762 *dst++ = *src++;
4763 }
4764 /* if (dstlen == 0) out of space, what to do??? */
4765
4766 *dst = NUL;
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004767
4768 if (homedir_env != homedir_env_orig)
4769 vim_free(homedir_env);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770}
4771
4772/*
4773 * Like home_replace, store the replaced string in allocated memory.
4774 * When something fails, NULL is returned.
4775 */
4776 char_u *
4777home_replace_save(buf, src)
4778 buf_T *buf; /* when not NULL, check for help files */
4779 char_u *src; /* input file name */
4780{
4781 char_u *dst;
4782 unsigned len;
4783
4784 len = 3; /* space for "~/" and trailing NUL */
4785 if (src != NULL) /* just in case */
4786 len += (unsigned)STRLEN(src);
4787 dst = alloc(len);
4788 if (dst != NULL)
4789 home_replace(buf, src, dst, len, TRUE);
4790 return dst;
4791}
4792
4793/*
4794 * Compare two file names and return:
4795 * FPC_SAME if they both exist and are the same file.
4796 * FPC_SAMEX if they both don't exist and have the same file name.
4797 * FPC_DIFF if they both exist and are different files.
4798 * FPC_NOTX if they both don't exist.
4799 * FPC_DIFFX if one of them doesn't exist.
4800 * For the first name environment variables are expanded
4801 */
4802 int
4803fullpathcmp(s1, s2, checkname)
4804 char_u *s1, *s2;
4805 int checkname; /* when both don't exist, check file names */
4806{
4807#ifdef UNIX
4808 char_u exp1[MAXPATHL];
4809 char_u full1[MAXPATHL];
4810 char_u full2[MAXPATHL];
4811 struct stat st1, st2;
4812 int r1, r2;
4813
4814 expand_env(s1, exp1, MAXPATHL);
4815 r1 = mch_stat((char *)exp1, &st1);
4816 r2 = mch_stat((char *)s2, &st2);
4817 if (r1 != 0 && r2 != 0)
4818 {
4819 /* if mch_stat() doesn't work, may compare the names */
4820 if (checkname)
4821 {
4822 if (fnamecmp(exp1, s2) == 0)
4823 return FPC_SAMEX;
4824 r1 = vim_FullName(exp1, full1, MAXPATHL, FALSE);
4825 r2 = vim_FullName(s2, full2, MAXPATHL, FALSE);
4826 if (r1 == OK && r2 == OK && fnamecmp(full1, full2) == 0)
4827 return FPC_SAMEX;
4828 }
4829 return FPC_NOTX;
4830 }
4831 if (r1 != 0 || r2 != 0)
4832 return FPC_DIFFX;
4833 if (st1.st_dev == st2.st_dev && st1.st_ino == st2.st_ino)
4834 return FPC_SAME;
4835 return FPC_DIFF;
4836#else
4837 char_u *exp1; /* expanded s1 */
4838 char_u *full1; /* full path of s1 */
4839 char_u *full2; /* full path of s2 */
4840 int retval = FPC_DIFF;
4841 int r1, r2;
4842
4843 /* allocate one buffer to store three paths (alloc()/free() is slow!) */
4844 if ((exp1 = alloc(MAXPATHL * 3)) != NULL)
4845 {
4846 full1 = exp1 + MAXPATHL;
4847 full2 = full1 + MAXPATHL;
4848
4849 expand_env(s1, exp1, MAXPATHL);
4850 r1 = vim_FullName(exp1, full1, MAXPATHL, FALSE);
4851 r2 = vim_FullName(s2, full2, MAXPATHL, FALSE);
4852
4853 /* If vim_FullName() fails, the file probably doesn't exist. */
4854 if (r1 != OK && r2 != OK)
4855 {
4856 if (checkname && fnamecmp(exp1, s2) == 0)
4857 retval = FPC_SAMEX;
4858 else
4859 retval = FPC_NOTX;
4860 }
4861 else if (r1 != OK || r2 != OK)
4862 retval = FPC_DIFFX;
4863 else if (fnamecmp(full1, full2))
4864 retval = FPC_DIFF;
4865 else
4866 retval = FPC_SAME;
4867 vim_free(exp1);
4868 }
4869 return retval;
4870#endif
4871}
4872
4873/*
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00004874 * Get the tail of a path: the file name.
Bram Moolenaar31710262010-08-13 13:36:15 +02004875 * When the path ends in a path separator the tail is the NUL after it.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00004876 * Fail safe: never returns NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877 */
4878 char_u *
4879gettail(fname)
4880 char_u *fname;
4881{
4882 char_u *p1, *p2;
4883
4884 if (fname == NULL)
4885 return (char_u *)"";
Bram Moolenaar69c35002013-11-04 02:54:12 +01004886 for (p1 = p2 = get_past_head(fname); *p2; ) /* find last part of path */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887 {
Bram Moolenaar69c35002013-11-04 02:54:12 +01004888 if (vim_ispathsep_nocolon(*p2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889 p1 = p2 + 1;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004890 mb_ptr_adv(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004891 }
4892 return p1;
4893}
4894
Bram Moolenaar31710262010-08-13 13:36:15 +02004895#if defined(FEAT_SEARCHPATH)
4896static char_u *gettail_dir __ARGS((char_u *fname));
4897
4898/*
4899 * Return the end of the directory name, on the first path
4900 * separator:
4901 * "/path/file", "/path/dir/", "/path//dir", "/file"
4902 * ^ ^ ^ ^
4903 */
4904 static char_u *
4905gettail_dir(fname)
4906 char_u *fname;
4907{
4908 char_u *dir_end = fname;
4909 char_u *next_dir_end = fname;
4910 int look_for_sep = TRUE;
4911 char_u *p;
4912
4913 for (p = fname; *p != NUL; )
4914 {
4915 if (vim_ispathsep(*p))
4916 {
4917 if (look_for_sep)
4918 {
4919 next_dir_end = p;
4920 look_for_sep = FALSE;
4921 }
4922 }
4923 else
4924 {
4925 if (!look_for_sep)
4926 dir_end = next_dir_end;
4927 look_for_sep = TRUE;
4928 }
4929 mb_ptr_adv(p);
4930 }
4931 return dir_end;
4932}
4933#endif
4934
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004936 * Get pointer to tail of "fname", including path separators. Putting a NUL
4937 * here leaves the directory name. Takes care of "c:/" and "//".
4938 * Always returns a valid pointer.
4939 */
4940 char_u *
4941gettail_sep(fname)
4942 char_u *fname;
4943{
4944 char_u *p;
4945 char_u *t;
4946
4947 p = get_past_head(fname); /* don't remove the '/' from "c:/file" */
4948 t = gettail(fname);
4949 while (t > p && after_pathsep(fname, t))
4950 --t;
4951#ifdef VMS
4952 /* path separator is part of the path */
4953 ++t;
4954#endif
4955 return t;
4956}
4957
4958/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 * get the next path component (just after the next path separator).
4960 */
4961 char_u *
4962getnextcomp(fname)
4963 char_u *fname;
4964{
4965 while (*fname && !vim_ispathsep(*fname))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004966 mb_ptr_adv(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 if (*fname)
4968 ++fname;
4969 return fname;
4970}
4971
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972/*
4973 * Get a pointer to one character past the head of a path name.
4974 * Unix: after "/"; DOS: after "c:\"; Amiga: after "disk:/"; Mac: no head.
4975 * If there is no head, path is returned.
4976 */
4977 char_u *
4978get_past_head(path)
4979 char_u *path;
4980{
4981 char_u *retval;
4982
4983#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
4984 /* may skip "c:" */
4985 if (isalpha(path[0]) && path[1] == ':')
4986 retval = path + 2;
4987 else
4988 retval = path;
4989#else
4990# if defined(AMIGA)
4991 /* may skip "label:" */
4992 retval = vim_strchr(path, ':');
4993 if (retval == NULL)
4994 retval = path;
4995# else /* Unix */
4996 retval = path;
4997# endif
4998#endif
4999
5000 while (vim_ispathsep(*retval))
5001 ++retval;
5002
5003 return retval;
5004}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005
5006/*
Bram Moolenaar69c35002013-11-04 02:54:12 +01005007 * Return TRUE if 'c' is a path separator.
5008 * Note that for MS-Windows this includes the colon.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 */
5010 int
5011vim_ispathsep(c)
5012 int c;
5013{
Bram Moolenaare60acc12011-05-10 16:41:25 +02005014#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 return (c == '/'); /* UNIX has ':' inside file names */
Bram Moolenaare60acc12011-05-10 16:41:25 +02005016#else
5017# ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018 return (c == ':' || c == '/' || c == '\\');
Bram Moolenaare60acc12011-05-10 16:41:25 +02005019# else
5020# ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 /* server"user passwd"::device:[full.path.name]fname.extension;version" */
5022 return (c == ':' || c == '[' || c == ']' || c == '/'
5023 || c == '<' || c == '>' || c == '"' );
Bram Moolenaare60acc12011-05-10 16:41:25 +02005024# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 return (c == ':' || c == '/');
Bram Moolenaare60acc12011-05-10 16:41:25 +02005026# endif /* VMS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027# endif
Bram Moolenaare60acc12011-05-10 16:41:25 +02005028#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029}
5030
Bram Moolenaar69c35002013-11-04 02:54:12 +01005031/*
5032 * Like vim_ispathsep(c), but exclude the colon for MS-Windows.
5033 */
5034 int
5035vim_ispathsep_nocolon(c)
5036 int c;
5037{
5038 return vim_ispathsep(c)
5039#ifdef BACKSLASH_IN_FILENAME
5040 && c != ':'
5041#endif
5042 ;
5043}
5044
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045#if defined(FEAT_SEARCHPATH) || defined(PROTO)
5046/*
5047 * return TRUE if 'c' is a path list separator.
5048 */
5049 int
5050vim_ispathlistsep(c)
5051 int c;
5052{
5053#ifdef UNIX
5054 return (c == ':');
5055#else
Bram Moolenaar25394022007-05-10 19:06:20 +00005056 return (c == ';'); /* might not be right for every system... */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057#endif
5058}
5059#endif
5060
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005061#if defined(FEAT_GUI_TABLINE) || defined(FEAT_WINDOWS) \
5062 || defined(FEAT_EVAL) || defined(PROTO)
5063/*
5064 * Shorten the path of a file from "~/foo/../.bar/fname" to "~/f/../.b/fname"
5065 * It's done in-place.
5066 */
5067 void
5068shorten_dir(str)
5069 char_u *str;
5070{
5071 char_u *tail, *s, *d;
5072 int skip = FALSE;
5073
5074 tail = gettail(str);
5075 d = str;
5076 for (s = str; ; ++s)
5077 {
5078 if (s >= tail) /* copy the whole tail */
5079 {
5080 *d++ = *s;
5081 if (*s == NUL)
5082 break;
5083 }
5084 else if (vim_ispathsep(*s)) /* copy '/' and next char */
5085 {
5086 *d++ = *s;
5087 skip = FALSE;
5088 }
5089 else if (!skip)
5090 {
5091 *d++ = *s; /* copy next char */
5092 if (*s != '~' && *s != '.') /* and leading "~" and "." */
5093 skip = TRUE;
5094# ifdef FEAT_MBYTE
5095 if (has_mbyte)
5096 {
5097 int l = mb_ptr2len(s);
5098
5099 while (--l > 0)
Bram Moolenaarb6baca52006-08-15 20:24:14 +00005100 *d++ = *++s;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005101 }
5102# endif
5103 }
5104 }
5105}
5106#endif
5107
Bram Moolenaar900b4d72005-12-12 22:05:50 +00005108/*
5109 * Return TRUE if the directory of "fname" exists, FALSE otherwise.
5110 * Also returns TRUE if there is no directory name.
5111 * "fname" must be writable!.
5112 */
5113 int
5114dir_of_file_exists(fname)
5115 char_u *fname;
5116{
5117 char_u *p;
5118 int c;
5119 int retval;
5120
5121 p = gettail_sep(fname);
5122 if (p == fname)
5123 return TRUE;
5124 c = *p;
5125 *p = NUL;
5126 retval = mch_isdir(fname);
5127 *p = c;
5128 return retval;
5129}
5130
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131/*
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01005132 * Versions of fnamecmp() and fnamencmp() that handle '/' and '\' equally
5133 * and deal with 'fileignorecase'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 */
5135 int
5136vim_fnamecmp(x, y)
5137 char_u *x, *y;
5138{
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01005139#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140 return vim_fnamencmp(x, y, MAXPATHL);
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01005141#else
5142 if (p_fic)
5143 return MB_STRICMP(x, y);
5144 return STRCMP(x, y);
5145#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146}
5147
5148 int
5149vim_fnamencmp(x, y, len)
5150 char_u *x, *y;
5151 size_t len;
5152{
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01005153#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005154 char_u *px = x;
5155 char_u *py = y;
5156 int cx = NUL;
5157 int cy = NUL;
5158
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005159 while (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160 {
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005161 cx = PTR2CHAR(px);
5162 cy = PTR2CHAR(py);
5163 if (cx == NUL || cy == NUL
5164 || ((p_fic ? MB_TOLOWER(cx) != MB_TOLOWER(cy) : cx != cy)
5165 && !(cx == '/' && cy == '\\')
5166 && !(cx == '\\' && cy == '/')))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167 break;
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005168 len -= MB_PTR2LEN(px);
5169 px += MB_PTR2LEN(px);
5170 py += MB_PTR2LEN(py);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171 }
5172 if (len == 0)
5173 return 0;
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005174 return (cx - cy);
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01005175#else
5176 if (p_fic)
5177 return MB_STRNICMP(x, y, len);
5178 return STRNCMP(x, y, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179#endif
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01005180}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181
5182/*
5183 * Concatenate file names fname1 and fname2 into allocated memory.
Bram Moolenaar25394022007-05-10 19:06:20 +00005184 * Only add a '/' or '\\' when 'sep' is TRUE and it is necessary.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185 */
5186 char_u *
5187concat_fnames(fname1, fname2, sep)
5188 char_u *fname1;
5189 char_u *fname2;
5190 int sep;
5191{
5192 char_u *dest;
5193
5194 dest = alloc((unsigned)(STRLEN(fname1) + STRLEN(fname2) + 3));
5195 if (dest != NULL)
5196 {
5197 STRCPY(dest, fname1);
5198 if (sep)
5199 add_pathsep(dest);
5200 STRCAT(dest, fname2);
5201 }
5202 return dest;
5203}
5204
Bram Moolenaard6754642005-01-17 22:18:45 +00005205/*
5206 * Concatenate two strings and return the result in allocated memory.
5207 * Returns NULL when out of memory.
5208 */
5209 char_u *
5210concat_str(str1, str2)
5211 char_u *str1;
5212 char_u *str2;
5213{
5214 char_u *dest;
5215 size_t l = STRLEN(str1);
5216
5217 dest = alloc((unsigned)(l + STRLEN(str2) + 1L));
5218 if (dest != NULL)
5219 {
5220 STRCPY(dest, str1);
5221 STRCPY(dest + l, str2);
5222 }
5223 return dest;
5224}
Bram Moolenaard6754642005-01-17 22:18:45 +00005225
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226/*
5227 * Add a path separator to a file name, unless it already ends in a path
5228 * separator.
5229 */
5230 void
5231add_pathsep(p)
5232 char_u *p;
5233{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005234 if (*p != NUL && !after_pathsep(p, p + STRLEN(p)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235 STRCAT(p, PATHSEPSTR);
5236}
5237
5238/*
5239 * FullName_save - Make an allocated copy of a full file name.
5240 * Returns NULL when out of memory.
5241 */
5242 char_u *
5243FullName_save(fname, force)
5244 char_u *fname;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005245 int force; /* force expansion, even when it already looks
5246 * like a full path name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005247{
5248 char_u *buf;
5249 char_u *new_fname = NULL;
5250
5251 if (fname == NULL)
5252 return NULL;
5253
5254 buf = alloc((unsigned)MAXPATHL);
5255 if (buf != NULL)
5256 {
5257 if (vim_FullName(fname, buf, MAXPATHL, force) != FAIL)
5258 new_fname = vim_strsave(buf);
5259 else
5260 new_fname = vim_strsave(fname);
5261 vim_free(buf);
5262 }
5263 return new_fname;
5264}
5265
5266#if defined(FEAT_CINDENT) || defined(FEAT_SYN_HL)
5267
5268static char_u *skip_string __ARGS((char_u *p));
Bram Moolenaar84dbb622013-11-06 04:01:36 +01005269static pos_T *ind_find_start_comment __ARGS((void));
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02005270static pos_T *ind_find_start_CORS __ARGS((void));
5271static pos_T *find_start_rawstring __ARGS((int ind_maxcomment));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272
5273/*
5274 * Find the start of a comment, not knowing if we are in a comment right now.
5275 * Search starts at w_cursor.lnum and goes backwards.
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02005276 * Return NULL when not inside a comment.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 */
Bram Moolenaar84dbb622013-11-06 04:01:36 +01005278 static pos_T *
5279ind_find_start_comment() /* XXX */
5280{
5281 return find_start_comment(curbuf->b_ind_maxcomment);
5282}
5283
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 pos_T *
5285find_start_comment(ind_maxcomment) /* XXX */
5286 int ind_maxcomment;
5287{
5288 pos_T *pos;
5289 char_u *line;
5290 char_u *p;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005291 int cur_maxcomment = ind_maxcomment;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005293 for (;;)
5294 {
5295 pos = findmatchlimit(NULL, '*', FM_BACKWARD, cur_maxcomment);
5296 if (pos == NULL)
5297 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005299 /*
5300 * Check if the comment start we found is inside a string.
5301 * If it is then restrict the search to below this line and try again.
5302 */
5303 line = ml_get(pos->lnum);
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005304 for (p = line; *p && (colnr_T)(p - line) < pos->col; ++p)
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005305 p = skip_string(p);
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005306 if ((colnr_T)(p - line) <= pos->col)
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005307 break;
5308 cur_maxcomment = curwin->w_cursor.lnum - pos->lnum - 1;
5309 if (cur_maxcomment <= 0)
5310 {
5311 pos = NULL;
5312 break;
5313 }
5314 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315 return pos;
5316}
5317
5318/*
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02005319 * Find the start of a comment or raw string, not knowing if we are in a
5320 * comment or raw string right now.
5321 * Search starts at w_cursor.lnum and goes backwards.
5322 * Return NULL when not inside a comment or raw string.
5323 * "CORS" -> Comment Or Raw String
5324 */
5325 static pos_T *
5326ind_find_start_CORS() /* XXX */
5327{
5328 pos_T *comment_pos = find_start_comment(curbuf->b_ind_maxcomment);
5329 pos_T *rs_pos = find_start_rawstring(curbuf->b_ind_maxcomment);
5330
5331 /* If comment_pos is before rs_pos the raw string is inside the comment.
5332 * If rs_pos is before comment_pos the comment is inside the raw string. */
5333 if (comment_pos == NULL || (rs_pos != NULL && lt(*rs_pos, *comment_pos)))
5334 return rs_pos;
5335 return comment_pos;
5336}
5337
5338/*
5339 * Find the start of a raw string, not knowing if we are in one right now.
5340 * Search starts at w_cursor.lnum and goes backwards.
5341 * Return NULL when not inside a raw string.
5342 */
5343 static pos_T *
5344find_start_rawstring(ind_maxcomment) /* XXX */
5345 int ind_maxcomment;
5346{
5347 pos_T *pos;
5348 char_u *line;
5349 char_u *p;
5350 int cur_maxcomment = ind_maxcomment;
5351
5352 for (;;)
5353 {
5354 pos = findmatchlimit(NULL, 'R', FM_BACKWARD, cur_maxcomment);
5355 if (pos == NULL)
5356 break;
5357
5358 /*
5359 * Check if the raw string start we found is inside a string.
5360 * If it is then restrict the search to below this line and try again.
5361 */
5362 line = ml_get(pos->lnum);
5363 for (p = line; *p && (colnr_T)(p - line) < pos->col; ++p)
5364 p = skip_string(p);
5365 if ((colnr_T)(p - line) <= pos->col)
5366 break;
5367 cur_maxcomment = curwin->w_cursor.lnum - pos->lnum - 1;
5368 if (cur_maxcomment <= 0)
5369 {
5370 pos = NULL;
5371 break;
5372 }
5373 }
5374 return pos;
5375}
5376
5377/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378 * Skip to the end of a "string" and a 'c' character.
5379 * If there is no string or character, return argument unmodified.
5380 */
5381 static char_u *
5382skip_string(p)
5383 char_u *p;
5384{
5385 int i;
5386
5387 /*
5388 * We loop, because strings may be concatenated: "date""time".
5389 */
5390 for ( ; ; ++p)
5391 {
5392 if (p[0] == '\'') /* 'c' or '\n' or '\000' */
5393 {
5394 if (!p[1]) /* ' at end of line */
5395 break;
5396 i = 2;
5397 if (p[1] == '\\') /* '\n' or '\000' */
5398 {
5399 ++i;
5400 while (vim_isdigit(p[i - 1])) /* '\000' */
5401 ++i;
5402 }
5403 if (p[i] == '\'') /* check for trailing ' */
5404 {
5405 p += i;
5406 continue;
5407 }
5408 }
5409 else if (p[0] == '"') /* start of string */
5410 {
5411 for (++p; p[0]; ++p)
5412 {
5413 if (p[0] == '\\' && p[1] != NUL)
5414 ++p;
5415 else if (p[0] == '"') /* end of string */
5416 break;
5417 }
5418 if (p[0] == '"')
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02005419 continue; /* continue for another string */
5420 }
5421 else if (p[0] == 'R' && p[1] == '"')
5422 {
5423 /* Raw string: R"[delim](...)[delim]" */
5424 char_u *delim = p + 2;
5425 char_u *paren = vim_strchr(delim, '(');
5426
5427 if (paren != NULL)
5428 {
5429 size_t delim_len = paren - delim;
5430
5431 for (p += 3; *p; ++p)
5432 if (p[0] == ')' && STRNCMP(p + 1, delim, delim_len) == 0
5433 && p[delim_len + 1] == '"')
5434 {
5435 p += delim_len + 1;
5436 break;
5437 }
5438 if (p[0] == '"')
5439 continue; /* continue for another string */
5440 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441 }
5442 break; /* no string found */
5443 }
5444 if (!*p)
5445 --p; /* backup from NUL */
5446 return p;
5447}
5448#endif /* FEAT_CINDENT || FEAT_SYN_HL */
5449
5450#if defined(FEAT_CINDENT) || defined(PROTO)
5451
5452/*
5453 * Do C or expression indenting on the current line.
5454 */
5455 void
5456do_c_expr_indent()
5457{
5458# ifdef FEAT_EVAL
5459 if (*curbuf->b_p_inde != NUL)
5460 fixthisline(get_expr_indent);
5461 else
5462# endif
5463 fixthisline(get_c_indent);
5464}
5465
Bram Moolenaar4032cfd2015-05-04 17:50:33 +02005466/* Find result cache for cpp_baseclass */
5467typedef struct {
5468 int found;
5469 lpos_T lpos;
5470} cpp_baseclass_cache_T;
5471
Bram Moolenaar071d4272004-06-13 20:20:40 +00005472/*
5473 * Functions for C-indenting.
5474 * Most of this originally comes from Eric Fischer.
5475 */
5476/*
5477 * Below "XXX" means that this function may unlock the current line.
5478 */
5479
5480static char_u *cin_skipcomment __ARGS((char_u *));
5481static int cin_nocode __ARGS((char_u *));
5482static pos_T *find_line_comment __ARGS((void));
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02005483static int cin_has_js_key __ARGS((char_u *text));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484static int cin_islabel_skip __ARGS((char_u **));
5485static int cin_isdefault __ARGS((char_u *));
5486static char_u *after_label __ARGS((char_u *l));
5487static int get_indent_nolabel __ARGS((linenr_T lnum));
Bram Moolenaar84dbb622013-11-06 04:01:36 +01005488static int skip_label __ARGS((linenr_T, char_u **pp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489static int cin_first_id_amount __ARGS((void));
5490static int cin_get_equal_amount __ARGS((linenr_T lnum));
5491static int cin_ispreproc __ARGS((char_u *));
5492static int cin_ispreproc_cont __ARGS((char_u **pp, linenr_T *lnump));
5493static int cin_iscomment __ARGS((char_u *));
5494static int cin_islinecomment __ARGS((char_u *));
5495static int cin_isterminated __ARGS((char_u *, int, int));
5496static int cin_isinit __ARGS((void));
Bram Moolenaar84dbb622013-11-06 04:01:36 +01005497static int cin_isfuncdecl __ARGS((char_u **, linenr_T, linenr_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498static int cin_isif __ARGS((char_u *));
5499static int cin_iselse __ARGS((char_u *));
5500static int cin_isdo __ARGS((char_u *));
Bram Moolenaar84dbb622013-11-06 04:01:36 +01005501static int cin_iswhileofdo __ARGS((char_u *, linenr_T));
Bram Moolenaarb345d492012-04-09 20:42:26 +02005502static int cin_is_if_for_while_before_offset __ARGS((char_u *line, int *poffset));
Bram Moolenaar84dbb622013-11-06 04:01:36 +01005503static int cin_iswhileofdo_end __ARGS((int terminated));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005504static int cin_isbreak __ARGS((char_u *));
Bram Moolenaar4032cfd2015-05-04 17:50:33 +02005505static int cin_is_cpp_baseclass __ARGS((cpp_baseclass_cache_T *cached));
Bram Moolenaar84dbb622013-11-06 04:01:36 +01005506static int get_baseclass_amount __ARGS((int col));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507static int cin_ends_in __ARGS((char_u *, char_u *, char_u *));
Bram Moolenaar75342212013-03-07 13:13:52 +01005508static int cin_starts_with __ARGS((char_u *s, char *word));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509static int cin_skip2pos __ARGS((pos_T *trypos));
Bram Moolenaar84dbb622013-11-06 04:01:36 +01005510static pos_T *find_start_brace __ARGS((void));
5511static pos_T *find_match_paren __ARGS((int));
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02005512static pos_T *find_match_char __ARGS((int c, int ind_maxparen));
Bram Moolenaar84dbb622013-11-06 04:01:36 +01005513static int corr_ind_maxparen __ARGS((pos_T *startpos));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514static int find_last_paren __ARGS((char_u *l, int start, int end));
Bram Moolenaar84dbb622013-11-06 04:01:36 +01005515static int find_match __ARGS((int lookfor, linenr_T ourscope));
Bram Moolenaared38b0a2011-05-25 15:16:18 +02005516static int cin_is_cpp_namespace __ARGS((char_u *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005517
5518/*
5519 * Skip over white space and C comments within the line.
Bram Moolenaar39353fd2007-03-27 09:02:11 +00005520 * Also skip over Perl/shell comments if desired.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521 */
5522 static char_u *
5523cin_skipcomment(s)
5524 char_u *s;
5525{
5526 while (*s)
5527 {
Bram Moolenaar39353fd2007-03-27 09:02:11 +00005528 char_u *prev_s = s;
5529
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530 s = skipwhite(s);
Bram Moolenaar39353fd2007-03-27 09:02:11 +00005531
5532 /* Perl/shell # comment comment continues until eol. Require a space
5533 * before # to avoid recognizing $#array. */
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01005534 if (curbuf->b_ind_hash_comment != 0 && s != prev_s && *s == '#')
Bram Moolenaar39353fd2007-03-27 09:02:11 +00005535 {
5536 s += STRLEN(s);
5537 break;
5538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005539 if (*s != '/')
5540 break;
5541 ++s;
5542 if (*s == '/') /* slash-slash comment continues till eol */
5543 {
5544 s += STRLEN(s);
5545 break;
5546 }
5547 if (*s != '*')
5548 break;
5549 for (++s; *s; ++s) /* skip slash-star comment */
5550 if (s[0] == '*' && s[1] == '/')
5551 {
5552 s += 2;
5553 break;
5554 }
5555 }
5556 return s;
5557}
5558
5559/*
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005560 * Return TRUE if there is no code at *s. White space and comments are
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561 * not considered code.
5562 */
5563 static int
5564cin_nocode(s)
5565 char_u *s;
5566{
5567 return *cin_skipcomment(s) == NUL;
5568}
5569
5570/*
5571 * Check previous lines for a "//" line comment, skipping over blank lines.
5572 */
5573 static pos_T *
5574find_line_comment() /* XXX */
5575{
5576 static pos_T pos;
5577 char_u *line;
5578 char_u *p;
5579
5580 pos = curwin->w_cursor;
5581 while (--pos.lnum > 0)
5582 {
5583 line = ml_get(pos.lnum);
5584 p = skipwhite(line);
5585 if (cin_islinecomment(p))
5586 {
5587 pos.col = (int)(p - line);
5588 return &pos;
5589 }
5590 if (*p != NUL)
5591 break;
5592 }
5593 return NULL;
5594}
5595
5596/*
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02005597 * Return TRUE if "text" starts with "key:".
5598 */
5599 static int
5600cin_has_js_key(text)
5601 char_u *text;
5602{
5603 char_u *s = skipwhite(text);
Bram Moolenaarece29e82014-08-06 12:49:18 +02005604 int quote = -1;
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02005605
5606 if (*s == '\'' || *s == '"')
5607 {
5608 /* can be 'key': or "key": */
5609 quote = *s;
5610 ++s;
5611 }
5612 if (!vim_isIDc(*s)) /* need at least one ID character */
5613 return FALSE;
5614
5615 while (vim_isIDc(*s))
5616 ++s;
5617 if (*s == quote)
5618 ++s;
5619
5620 s = cin_skipcomment(s);
5621
5622 /* "::" is not a label, it's C++ */
5623 return (*s == ':' && s[1] != ':');
5624}
5625
5626/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627 * Check if string matches "label:"; move to character after ':' if true.
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02005628 * "*s" must point to the start of the label, if there is one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005629 */
5630 static int
5631cin_islabel_skip(s)
5632 char_u **s;
5633{
5634 if (!vim_isIDc(**s)) /* need at least one ID character */
5635 return FALSE;
5636
5637 while (vim_isIDc(**s))
5638 (*s)++;
5639
5640 *s = cin_skipcomment(*s);
5641
5642 /* "::" is not a label, it's C++ */
5643 return (**s == ':' && *++*s != ':');
5644}
5645
5646/*
5647 * Recognize a label: "label:".
5648 * Note: curwin->w_cursor must be where we are looking for the label.
5649 */
5650 int
Bram Moolenaar84dbb622013-11-06 04:01:36 +01005651cin_islabel() /* XXX */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005652{
5653 char_u *s;
5654
5655 s = cin_skipcomment(ml_get_curline());
5656
5657 /*
5658 * Exclude "default" from labels, since it should be indented
5659 * like a switch label. Same for C++ scope declarations.
5660 */
5661 if (cin_isdefault(s))
5662 return FALSE;
5663 if (cin_isscopedecl(s))
5664 return FALSE;
5665
5666 if (cin_islabel_skip(&s))
5667 {
5668 /*
5669 * Only accept a label if the previous line is terminated or is a case
5670 * label.
5671 */
5672 pos_T cursor_save;
5673 pos_T *trypos;
5674 char_u *line;
5675
5676 cursor_save = curwin->w_cursor;
5677 while (curwin->w_cursor.lnum > 1)
5678 {
5679 --curwin->w_cursor.lnum;
5680
5681 /*
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02005682 * If we're in a comment or raw string now, skip to the start of
5683 * it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005684 */
5685 curwin->w_cursor.col = 0;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02005686 if ((trypos = ind_find_start_CORS()) != NULL) /* XXX */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005687 curwin->w_cursor = *trypos;
5688
5689 line = ml_get_curline();
5690 if (cin_ispreproc(line)) /* ignore #defines, #if, etc. */
5691 continue;
5692 if (*(line = cin_skipcomment(line)) == NUL)
5693 continue;
5694
5695 curwin->w_cursor = cursor_save;
5696 if (cin_isterminated(line, TRUE, FALSE)
5697 || cin_isscopedecl(line)
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005698 || cin_iscase(line, TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005699 || (cin_islabel_skip(&line) && cin_nocode(line)))
5700 return TRUE;
5701 return FALSE;
5702 }
5703 curwin->w_cursor = cursor_save;
5704 return TRUE; /* label at start of file??? */
5705 }
5706 return FALSE;
5707}
5708
5709/*
Bram Moolenaar75342212013-03-07 13:13:52 +01005710 * Recognize structure initialization and enumerations:
5711 * "[typedef] [static|public|protected|private] enum"
5712 * "[typedef] [static|public|protected|private] = {"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005713 */
5714 static int
5715cin_isinit(void)
5716{
5717 char_u *s;
Bram Moolenaar75342212013-03-07 13:13:52 +01005718 static char *skip[] = {"static", "public", "protected", "private"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719
5720 s = cin_skipcomment(ml_get_curline());
5721
Bram Moolenaar75342212013-03-07 13:13:52 +01005722 if (cin_starts_with(s, "typedef"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723 s = cin_skipcomment(s + 7);
5724
Bram Moolenaar75342212013-03-07 13:13:52 +01005725 for (;;)
5726 {
5727 int i, l;
Bram Moolenaara5285652011-12-14 20:05:21 +01005728
Bram Moolenaar75342212013-03-07 13:13:52 +01005729 for (i = 0; i < (int)(sizeof(skip) / sizeof(char *)); ++i)
5730 {
Bram Moolenaarb3cb9822013-03-13 17:01:52 +01005731 l = (int)strlen(skip[i]);
Bram Moolenaar75342212013-03-07 13:13:52 +01005732 if (cin_starts_with(s, skip[i]))
5733 {
5734 s = cin_skipcomment(s + l);
5735 l = 0;
5736 break;
5737 }
5738 }
5739 if (l != 0)
5740 break;
5741 }
5742
5743 if (cin_starts_with(s, "enum"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005744 return TRUE;
5745
5746 if (cin_ends_in(s, (char_u *)"=", (char_u *)"{"))
5747 return TRUE;
5748
5749 return FALSE;
5750}
5751
5752/*
5753 * Recognize a switch label: "case .*:" or "default:".
5754 */
5755 int
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005756cin_iscase(s, strict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005757 char_u *s;
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005758 int strict; /* Allow relaxed check of case statement for JS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759{
5760 s = cin_skipcomment(s);
Bram Moolenaar75342212013-03-07 13:13:52 +01005761 if (cin_starts_with(s, "case"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762 {
5763 for (s += 4; *s; ++s)
5764 {
5765 s = cin_skipcomment(s);
5766 if (*s == ':')
5767 {
5768 if (s[1] == ':') /* skip over "::" for C++ */
5769 ++s;
5770 else
5771 return TRUE;
5772 }
5773 if (*s == '\'' && s[1] && s[2] == '\'')
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005774 s += 2; /* skip over ':' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005775 else if (*s == '/' && (s[1] == '*' || s[1] == '/'))
5776 return FALSE; /* stop at comment */
5777 else if (*s == '"')
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005778 {
5779 /* JS etc. */
5780 if (strict)
5781 return FALSE; /* stop at string */
5782 else
5783 return TRUE;
5784 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785 }
5786 return FALSE;
5787 }
5788
5789 if (cin_isdefault(s))
5790 return TRUE;
5791 return FALSE;
5792}
5793
5794/*
5795 * Recognize a "default" switch label.
5796 */
5797 static int
5798cin_isdefault(s)
5799 char_u *s;
5800{
5801 return (STRNCMP(s, "default", 7) == 0
5802 && *(s = cin_skipcomment(s + 7)) == ':'
5803 && s[1] != ':');
5804}
5805
5806/*
Bram Moolenaar1a509df2010-08-01 17:59:57 +02005807 * Recognize a "public/private/protected" scope declaration label.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808 */
5809 int
5810cin_isscopedecl(s)
5811 char_u *s;
5812{
5813 int i;
5814
5815 s = cin_skipcomment(s);
5816 if (STRNCMP(s, "public", 6) == 0)
5817 i = 6;
5818 else if (STRNCMP(s, "protected", 9) == 0)
5819 i = 9;
5820 else if (STRNCMP(s, "private", 7) == 0)
5821 i = 7;
5822 else
5823 return FALSE;
5824 return (*(s = cin_skipcomment(s + i)) == ':' && s[1] != ':');
5825}
5826
Bram Moolenaared38b0a2011-05-25 15:16:18 +02005827/* Maximum number of lines to search back for a "namespace" line. */
5828#define FIND_NAMESPACE_LIM 20
5829
5830/*
5831 * Recognize a "namespace" scope declaration.
5832 */
5833 static int
5834cin_is_cpp_namespace(s)
5835 char_u *s;
5836{
5837 char_u *p;
5838 int has_name = FALSE;
5839
5840 s = cin_skipcomment(s);
5841 if (STRNCMP(s, "namespace", 9) == 0 && (s[9] == NUL || !vim_iswordc(s[9])))
5842 {
5843 p = cin_skipcomment(skipwhite(s + 9));
5844 while (*p != NUL)
5845 {
5846 if (vim_iswhite(*p))
5847 {
5848 has_name = TRUE; /* found end of a name */
5849 p = cin_skipcomment(skipwhite(p));
5850 }
5851 else if (*p == '{')
5852 {
5853 break;
5854 }
5855 else if (vim_iswordc(*p))
5856 {
5857 if (has_name)
5858 return FALSE; /* word character after skipping past name */
5859 ++p;
5860 }
5861 else
5862 {
5863 return FALSE;
5864 }
5865 }
5866 return TRUE;
5867 }
5868 return FALSE;
5869}
5870
Bram Moolenaar071d4272004-06-13 20:20:40 +00005871/*
5872 * Return a pointer to the first non-empty non-comment character after a ':'.
5873 * Return NULL if not found.
5874 * case 234: a = b;
5875 * ^
5876 */
5877 static char_u *
5878after_label(l)
5879 char_u *l;
5880{
5881 for ( ; *l; ++l)
5882 {
5883 if (*l == ':')
5884 {
5885 if (l[1] == ':') /* skip over "::" for C++ */
5886 ++l;
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005887 else if (!cin_iscase(l + 1, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888 break;
5889 }
5890 else if (*l == '\'' && l[1] && l[2] == '\'')
5891 l += 2; /* skip over 'x' */
5892 }
5893 if (*l == NUL)
5894 return NULL;
5895 l = cin_skipcomment(l + 1);
5896 if (*l == NUL)
5897 return NULL;
5898 return l;
5899}
5900
5901/*
5902 * Get indent of line "lnum", skipping a label.
5903 * Return 0 if there is nothing after the label.
5904 */
5905 static int
5906get_indent_nolabel(lnum) /* XXX */
5907 linenr_T lnum;
5908{
5909 char_u *l;
5910 pos_T fp;
5911 colnr_T col;
5912 char_u *p;
5913
5914 l = ml_get(lnum);
5915 p = after_label(l);
5916 if (p == NULL)
5917 return 0;
5918
5919 fp.col = (colnr_T)(p - l);
5920 fp.lnum = lnum;
5921 getvcol(curwin, &fp, &col, NULL, NULL);
5922 return (int)col;
5923}
5924
5925/*
5926 * Find indent for line "lnum", ignoring any case or jump label.
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005927 * Also return a pointer to the text (after the label) in "pp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928 * label: if (asdf && asdfasdf)
5929 * ^
5930 */
5931 static int
Bram Moolenaar84dbb622013-11-06 04:01:36 +01005932skip_label(lnum, pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 linenr_T lnum;
5934 char_u **pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005935{
5936 char_u *l;
5937 int amount;
5938 pos_T cursor_save;
5939
5940 cursor_save = curwin->w_cursor;
5941 curwin->w_cursor.lnum = lnum;
5942 l = ml_get_curline();
5943 /* XXX */
Bram Moolenaar84dbb622013-11-06 04:01:36 +01005944 if (cin_iscase(l, FALSE) || cin_isscopedecl(l) || cin_islabel())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945 {
5946 amount = get_indent_nolabel(lnum);
5947 l = after_label(ml_get_curline());
5948 if (l == NULL) /* just in case */
5949 l = ml_get_curline();
5950 }
5951 else
5952 {
5953 amount = get_indent();
5954 l = ml_get_curline();
5955 }
5956 *pp = l;
5957
5958 curwin->w_cursor = cursor_save;
5959 return amount;
5960}
5961
5962/*
5963 * Return the indent of the first variable name after a type in a declaration.
5964 * int a, indent of "a"
5965 * static struct foo b, indent of "b"
5966 * enum bla c, indent of "c"
5967 * Returns zero when it doesn't look like a declaration.
5968 */
5969 static int
5970cin_first_id_amount()
5971{
5972 char_u *line, *p, *s;
5973 int len;
5974 pos_T fp;
5975 colnr_T col;
5976
5977 line = ml_get_curline();
5978 p = skipwhite(line);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005979 len = (int)(skiptowhite(p) - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005980 if (len == 6 && STRNCMP(p, "static", 6) == 0)
5981 {
5982 p = skipwhite(p + 6);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00005983 len = (int)(skiptowhite(p) - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005984 }
5985 if (len == 6 && STRNCMP(p, "struct", 6) == 0)
5986 p = skipwhite(p + 6);
5987 else if (len == 4 && STRNCMP(p, "enum", 4) == 0)
5988 p = skipwhite(p + 4);
5989 else if ((len == 8 && STRNCMP(p, "unsigned", 8) == 0)
5990 || (len == 6 && STRNCMP(p, "signed", 6) == 0))
5991 {
5992 s = skipwhite(p + len);
5993 if ((STRNCMP(s, "int", 3) == 0 && vim_iswhite(s[3]))
5994 || (STRNCMP(s, "long", 4) == 0 && vim_iswhite(s[4]))
5995 || (STRNCMP(s, "short", 5) == 0 && vim_iswhite(s[5]))
5996 || (STRNCMP(s, "char", 4) == 0 && vim_iswhite(s[4])))
5997 p = s;
5998 }
5999 for (len = 0; vim_isIDc(p[len]); ++len)
6000 ;
6001 if (len == 0 || !vim_iswhite(p[len]) || cin_nocode(p))
6002 return 0;
6003
6004 p = skipwhite(p + len);
6005 fp.lnum = curwin->w_cursor.lnum;
6006 fp.col = (colnr_T)(p - line);
6007 getvcol(curwin, &fp, &col, NULL, NULL);
6008 return (int)col;
6009}
6010
6011/*
6012 * Return the indent of the first non-blank after an equal sign.
6013 * char *foo = "here";
6014 * Return zero if no (useful) equal sign found.
6015 * Return -1 if the line above "lnum" ends in a backslash.
6016 * foo = "asdf\
6017 * asdf\
6018 * here";
6019 */
6020 static int
6021cin_get_equal_amount(lnum)
6022 linenr_T lnum;
6023{
6024 char_u *line;
6025 char_u *s;
6026 colnr_T col;
6027 pos_T fp;
6028
6029 if (lnum > 1)
6030 {
6031 line = ml_get(lnum - 1);
6032 if (*line != NUL && line[STRLEN(line) - 1] == '\\')
6033 return -1;
6034 }
6035
6036 line = s = ml_get(lnum);
6037 while (*s != NUL && vim_strchr((char_u *)"=;{}\"'", *s) == NULL)
6038 {
6039 if (cin_iscomment(s)) /* ignore comments */
6040 s = cin_skipcomment(s);
6041 else
6042 ++s;
6043 }
6044 if (*s != '=')
6045 return 0;
6046
6047 s = skipwhite(s + 1);
6048 if (cin_nocode(s))
6049 return 0;
6050
6051 if (*s == '"') /* nice alignment for continued strings */
6052 ++s;
6053
6054 fp.lnum = lnum;
6055 fp.col = (colnr_T)(s - line);
6056 getvcol(curwin, &fp, &col, NULL, NULL);
6057 return (int)col;
6058}
6059
6060/*
6061 * Recognize a preprocessor statement: Any line that starts with '#'.
6062 */
6063 static int
6064cin_ispreproc(s)
6065 char_u *s;
6066{
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02006067 if (*skipwhite(s) == '#')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068 return TRUE;
6069 return FALSE;
6070}
6071
6072/*
6073 * Return TRUE if line "*pp" at "*lnump" is a preprocessor statement or a
6074 * continuation line of a preprocessor statement. Decrease "*lnump" to the
6075 * start and return the line in "*pp".
6076 */
6077 static int
6078cin_ispreproc_cont(pp, lnump)
6079 char_u **pp;
6080 linenr_T *lnump;
6081{
6082 char_u *line = *pp;
6083 linenr_T lnum = *lnump;
6084 int retval = FALSE;
6085
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00006086 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006087 {
6088 if (cin_ispreproc(line))
6089 {
6090 retval = TRUE;
6091 *lnump = lnum;
6092 break;
6093 }
6094 if (lnum == 1)
6095 break;
6096 line = ml_get(--lnum);
6097 if (*line == NUL || line[STRLEN(line) - 1] != '\\')
6098 break;
6099 }
6100
6101 if (lnum != *lnump)
6102 *pp = ml_get(*lnump);
6103 return retval;
6104}
6105
6106/*
6107 * Recognize the start of a C or C++ comment.
6108 */
6109 static int
6110cin_iscomment(p)
6111 char_u *p;
6112{
6113 return (p[0] == '/' && (p[1] == '*' || p[1] == '/'));
6114}
6115
6116/*
6117 * Recognize the start of a "//" comment.
6118 */
6119 static int
6120cin_islinecomment(p)
6121 char_u *p;
6122{
6123 return (p[0] == '/' && p[1] == '/');
6124}
6125
6126/*
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02006127 * Recognize a line that starts with '{' or '}', or ends with ';', ',', '{' or
6128 * '}'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006129 * Don't consider "} else" a terminated line.
Bram Moolenaar496f9512011-05-19 16:35:09 +02006130 * If a line begins with an "else", only consider it terminated if no unmatched
6131 * opening braces follow (handle "else { foo();" correctly).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132 * Return the character terminating the line (ending char's have precedence if
6133 * both apply in order to determine initializations).
6134 */
6135 static int
6136cin_isterminated(s, incl_open, incl_comma)
6137 char_u *s;
6138 int incl_open; /* include '{' at the end as terminator */
6139 int incl_comma; /* recognize a trailing comma */
6140{
Bram Moolenaar496f9512011-05-19 16:35:09 +02006141 char_u found_start = 0;
6142 unsigned n_open = 0;
6143 int is_else = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006144
6145 s = cin_skipcomment(s);
6146
6147 if (*s == '{' || (*s == '}' && !cin_iselse(s)))
6148 found_start = *s;
6149
Bram Moolenaar496f9512011-05-19 16:35:09 +02006150 if (!found_start)
6151 is_else = cin_iselse(s);
6152
Bram Moolenaar071d4272004-06-13 20:20:40 +00006153 while (*s)
6154 {
6155 /* skip over comments, "" strings and 'c'haracters */
6156 s = skip_string(cin_skipcomment(s));
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02006157 if (*s == '}' && n_open > 0)
6158 --n_open;
Bram Moolenaar496f9512011-05-19 16:35:09 +02006159 if ((!is_else || n_open == 0)
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02006160 && (*s == ';' || *s == '}' || (incl_comma && *s == ','))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161 && cin_nocode(s + 1))
6162 return *s;
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02006163 else if (*s == '{')
6164 {
6165 if (incl_open && cin_nocode(s + 1))
6166 return *s;
6167 else
6168 ++n_open;
6169 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006170
6171 if (*s)
6172 s++;
6173 }
6174 return found_start;
6175}
6176
6177/*
6178 * Recognize the basic picture of a function declaration -- it needs to
6179 * have an open paren somewhere and a close paren at the end of the line and
6180 * no semicolons anywhere.
6181 * When a line ends in a comma we continue looking in the next line.
6182 * "sp" points to a string with the line. When looking at other lines it must
6183 * be restored to the line. When it's NULL fetch lines here.
6184 * "lnum" is where we start looking.
Bram Moolenaarc367faa2011-12-14 20:21:35 +01006185 * "min_lnum" is the line before which we will not be looking.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006186 */
6187 static int
Bram Moolenaar84dbb622013-11-06 04:01:36 +01006188cin_isfuncdecl(sp, first_lnum, min_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189 char_u **sp;
6190 linenr_T first_lnum;
Bram Moolenaarc367faa2011-12-14 20:21:35 +01006191 linenr_T min_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006192{
6193 char_u *s;
6194 linenr_T lnum = first_lnum;
6195 int retval = FALSE;
Bram Moolenaarc367faa2011-12-14 20:21:35 +01006196 pos_T *trypos;
6197 int just_started = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006198
6199 if (sp == NULL)
6200 s = ml_get(lnum);
6201 else
6202 s = *sp;
6203
Bram Moolenaarc367faa2011-12-14 20:21:35 +01006204 if (find_last_paren(s, '(', ')')
Bram Moolenaar84dbb622013-11-06 04:01:36 +01006205 && (trypos = find_match_paren(curbuf->b_ind_maxparen)) != NULL)
Bram Moolenaarc367faa2011-12-14 20:21:35 +01006206 {
6207 lnum = trypos->lnum;
6208 if (lnum < min_lnum)
6209 return FALSE;
6210
6211 s = ml_get(lnum);
6212 }
6213
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02006214 /* Ignore line starting with #. */
6215 if (cin_ispreproc(s))
6216 return FALSE;
6217
Bram Moolenaar071d4272004-06-13 20:20:40 +00006218 while (*s && *s != '(' && *s != ';' && *s != '\'' && *s != '"')
6219 {
6220 if (cin_iscomment(s)) /* ignore comments */
6221 s = cin_skipcomment(s);
6222 else
6223 ++s;
6224 }
6225 if (*s != '(')
6226 return FALSE; /* ';', ' or " before any () or no '(' */
6227
6228 while (*s && *s != ';' && *s != '\'' && *s != '"')
6229 {
6230 if (*s == ')' && cin_nocode(s + 1))
6231 {
6232 /* ')' at the end: may have found a match
6233 * Check for he previous line not to end in a backslash:
6234 * #if defined(x) && \
6235 * defined(y)
6236 */
6237 lnum = first_lnum - 1;
6238 s = ml_get(lnum);
6239 if (*s == NUL || s[STRLEN(s) - 1] != '\\')
6240 retval = TRUE;
6241 goto done;
6242 }
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02006243 if ((*s == ',' && cin_nocode(s + 1)) || s[1] == NUL || cin_nocode(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006244 {
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02006245 int comma = (*s == ',');
6246
6247 /* ',' at the end: continue looking in the next line.
6248 * At the end: check for ',' in the next line, for this style:
6249 * func(arg1
6250 * , arg2) */
6251 for (;;)
6252 {
6253 if (lnum >= curbuf->b_ml.ml_line_count)
6254 break;
6255 s = ml_get(++lnum);
6256 if (!cin_ispreproc(s))
6257 break;
6258 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006259 if (lnum >= curbuf->b_ml.ml_line_count)
6260 break;
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02006261 /* Require a comma at end of the line or a comma or ')' at the
6262 * start of next line. */
6263 s = skipwhite(s);
Bram Moolenaarc367faa2011-12-14 20:21:35 +01006264 if (!just_started && (!comma && *s != ',' && *s != ')'))
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02006265 break;
Bram Moolenaarc367faa2011-12-14 20:21:35 +01006266 just_started = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006267 }
6268 else if (cin_iscomment(s)) /* ignore comments */
6269 s = cin_skipcomment(s);
6270 else
Bram Moolenaarc367faa2011-12-14 20:21:35 +01006271 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006272 ++s;
Bram Moolenaarc367faa2011-12-14 20:21:35 +01006273 just_started = FALSE;
6274 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006275 }
6276
6277done:
6278 if (lnum != first_lnum && sp != NULL)
6279 *sp = ml_get(first_lnum);
6280
6281 return retval;
6282}
6283
6284 static int
6285cin_isif(p)
6286 char_u *p;
6287{
6288 return (STRNCMP(p, "if", 2) == 0 && !vim_isIDc(p[2]));
6289}
6290
6291 static int
6292cin_iselse(p)
6293 char_u *p;
6294{
6295 if (*p == '}') /* accept "} else" */
6296 p = cin_skipcomment(p + 1);
6297 return (STRNCMP(p, "else", 4) == 0 && !vim_isIDc(p[4]));
6298}
6299
6300 static int
6301cin_isdo(p)
6302 char_u *p;
6303{
6304 return (STRNCMP(p, "do", 2) == 0 && !vim_isIDc(p[2]));
6305}
6306
6307/*
6308 * Check if this is a "while" that should have a matching "do".
6309 * We only accept a "while (condition) ;", with only white space between the
6310 * ')' and ';'. The condition may be spread over several lines.
6311 */
6312 static int
Bram Moolenaar84dbb622013-11-06 04:01:36 +01006313cin_iswhileofdo(p, lnum) /* XXX */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006314 char_u *p;
6315 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006316{
6317 pos_T cursor_save;
6318 pos_T *trypos;
6319 int retval = FALSE;
6320
6321 p = cin_skipcomment(p);
6322 if (*p == '}') /* accept "} while (cond);" */
6323 p = cin_skipcomment(p + 1);
Bram Moolenaar75342212013-03-07 13:13:52 +01006324 if (cin_starts_with(p, "while"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006325 {
6326 cursor_save = curwin->w_cursor;
6327 curwin->w_cursor.lnum = lnum;
6328 curwin->w_cursor.col = 0;
6329 p = ml_get_curline();
6330 while (*p && *p != 'w') /* skip any '}', until the 'w' of the "while" */
6331 {
6332 ++p;
6333 ++curwin->w_cursor.col;
6334 }
Bram Moolenaar84dbb622013-11-06 04:01:36 +01006335 if ((trypos = findmatchlimit(NULL, 0, 0,
6336 curbuf->b_ind_maxparen)) != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00006337 && *cin_skipcomment(ml_get_pos(trypos) + 1) == ';')
6338 retval = TRUE;
6339 curwin->w_cursor = cursor_save;
6340 }
6341 return retval;
6342}
6343
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006344/*
Bram Moolenaarb345d492012-04-09 20:42:26 +02006345 * Check whether in "p" there is an "if", "for" or "while" before "*poffset".
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006346 * Return 0 if there is none.
6347 * Otherwise return !0 and update "*poffset" to point to the place where the
6348 * string was found.
6349 */
6350 static int
Bram Moolenaarb345d492012-04-09 20:42:26 +02006351cin_is_if_for_while_before_offset(line, poffset)
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006352 char_u *line;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006353 int *poffset;
6354{
Bram Moolenaarb345d492012-04-09 20:42:26 +02006355 int offset = *poffset;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006356
6357 if (offset-- < 2)
6358 return 0;
6359 while (offset > 2 && vim_iswhite(line[offset]))
6360 --offset;
6361
6362 offset -= 1;
6363 if (!STRNCMP(line + offset, "if", 2))
6364 goto probablyFound;
6365
6366 if (offset >= 1)
6367 {
6368 offset -= 1;
6369 if (!STRNCMP(line + offset, "for", 3))
6370 goto probablyFound;
6371
6372 if (offset >= 2)
6373 {
6374 offset -= 2;
6375 if (!STRNCMP(line + offset, "while", 5))
6376 goto probablyFound;
6377 }
6378 }
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006379 return 0;
Bram Moolenaarb345d492012-04-09 20:42:26 +02006380
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006381probablyFound:
6382 if (!offset || !vim_isIDc(line[offset - 1]))
6383 {
6384 *poffset = offset;
6385 return 1;
6386 }
6387 return 0;
6388}
6389
6390/*
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006391 * Return TRUE if we are at the end of a do-while.
6392 * do
6393 * nothing;
6394 * while (foo
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00006395 * && bar); <-- here
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006396 * Adjust the cursor to the line with "while".
6397 */
6398 static int
Bram Moolenaar84dbb622013-11-06 04:01:36 +01006399cin_iswhileofdo_end(terminated)
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006400 int terminated;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006401{
6402 char_u *line;
6403 char_u *p;
6404 char_u *s;
6405 pos_T *trypos;
6406 int i;
6407
6408 if (terminated != ';') /* there must be a ';' at the end */
6409 return FALSE;
6410
6411 p = line = ml_get_curline();
6412 while (*p != NUL)
6413 {
6414 p = cin_skipcomment(p);
6415 if (*p == ')')
6416 {
6417 s = skipwhite(p + 1);
6418 if (*s == ';' && cin_nocode(s + 1))
6419 {
6420 /* Found ");" at end of the line, now check there is "while"
6421 * before the matching '('. XXX */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006422 i = (int)(p - line);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006423 curwin->w_cursor.col = i;
Bram Moolenaar84dbb622013-11-06 04:01:36 +01006424 trypos = find_match_paren(curbuf->b_ind_maxparen);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006425 if (trypos != NULL)
6426 {
6427 s = cin_skipcomment(ml_get(trypos->lnum));
6428 if (*s == '}') /* accept "} while (cond);" */
6429 s = cin_skipcomment(s + 1);
Bram Moolenaar75342212013-03-07 13:13:52 +01006430 if (cin_starts_with(s, "while"))
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006431 {
6432 curwin->w_cursor.lnum = trypos->lnum;
6433 return TRUE;
6434 }
6435 }
6436
6437 /* Searching may have made "line" invalid, get it again. */
6438 line = ml_get_curline();
6439 p = line + i;
6440 }
6441 }
6442 if (*p != NUL)
6443 ++p;
6444 }
6445 return FALSE;
6446}
6447
Bram Moolenaar071d4272004-06-13 20:20:40 +00006448 static int
6449cin_isbreak(p)
6450 char_u *p;
6451{
6452 return (STRNCMP(p, "break", 5) == 0 && !vim_isIDc(p[5]));
6453}
6454
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006455/*
6456 * Find the position of a C++ base-class declaration or
Bram Moolenaar071d4272004-06-13 20:20:40 +00006457 * constructor-initialization. eg:
6458 *
6459 * class MyClass :
6460 * baseClass <-- here
6461 * class MyClass : public baseClass,
6462 * anotherBaseClass <-- here (should probably lineup ??)
6463 * MyClass::MyClass(...) :
6464 * baseClass(...) <-- here (constructor-initialization)
Bram Moolenaar18144c82006-04-12 21:52:12 +00006465 *
6466 * This is a lot of guessing. Watch out for "cond ? func() : foo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006467 */
6468 static int
Bram Moolenaar4032cfd2015-05-04 17:50:33 +02006469cin_is_cpp_baseclass(cached)
6470 cpp_baseclass_cache_T *cached; /* input and output */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006471{
Bram Moolenaar4032cfd2015-05-04 17:50:33 +02006472 lpos_T *pos = &cached->lpos; /* find position */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006473 char_u *s;
6474 int class_or_struct, lookfor_ctor_init, cpp_base_class;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006475 linenr_T lnum = curwin->w_cursor.lnum;
Bram Moolenaare7c56862007-08-04 10:14:52 +00006476 char_u *line = ml_get_curline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006477
Bram Moolenaar4032cfd2015-05-04 17:50:33 +02006478 if (pos->lnum <= lnum)
6479 return cached->found; /* Use the cached result */
6480
6481 pos->col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006482
Bram Moolenaar21cf8232004-07-16 20:18:37 +00006483 s = skipwhite(line);
6484 if (*s == '#') /* skip #define FOO x ? (x) : x */
6485 return FALSE;
6486 s = cin_skipcomment(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006487 if (*s == NUL)
6488 return FALSE;
6489
6490 cpp_base_class = lookfor_ctor_init = class_or_struct = FALSE;
6491
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006492 /* Search for a line starting with '#', empty, ending in ';' or containing
6493 * '{' or '}' and start below it. This handles the following situations:
6494 * a = cond ?
6495 * func() :
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00006496 * asdf;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006497 * func::foo()
6498 * : something
6499 * {}
6500 * Foo::Foo (int one, int two)
6501 * : something(4),
6502 * somethingelse(3)
6503 * {}
6504 */
6505 while (lnum > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006506 {
Bram Moolenaare7c56862007-08-04 10:14:52 +00006507 line = ml_get(lnum - 1);
6508 s = skipwhite(line);
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006509 if (*s == '#' || *s == NUL)
6510 break;
6511 while (*s != NUL)
6512 {
6513 s = cin_skipcomment(s);
6514 if (*s == '{' || *s == '}'
6515 || (*s == ';' && cin_nocode(s + 1)))
6516 break;
6517 if (*s != NUL)
6518 ++s;
6519 }
6520 if (*s != NUL)
6521 break;
6522 --lnum;
6523 }
6524
Bram Moolenaar4032cfd2015-05-04 17:50:33 +02006525 pos->lnum = lnum;
Bram Moolenaare7c56862007-08-04 10:14:52 +00006526 line = ml_get(lnum);
6527 s = cin_skipcomment(line);
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006528 for (;;)
6529 {
6530 if (*s == NUL)
6531 {
6532 if (lnum == curwin->w_cursor.lnum)
6533 break;
6534 /* Continue in the cursor line. */
Bram Moolenaare7c56862007-08-04 10:14:52 +00006535 line = ml_get(++lnum);
6536 s = cin_skipcomment(line);
6537 if (*s == NUL)
6538 continue;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006539 }
6540
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02006541 if (s[0] == '"' || (s[0] == 'R' && s[1] == '"'))
Bram Moolenaaraede6ce2011-05-10 11:56:30 +02006542 s = skip_string(s) + 1;
6543 else if (s[0] == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006544 {
6545 if (s[1] == ':')
6546 {
6547 /* skip double colon. It can't be a constructor
6548 * initialization any more */
6549 lookfor_ctor_init = FALSE;
6550 s = cin_skipcomment(s + 2);
6551 }
6552 else if (lookfor_ctor_init || class_or_struct)
6553 {
6554 /* we have something found, that looks like the start of
Bram Moolenaare21877a2008-02-13 09:58:14 +00006555 * cpp-base-class-declaration or constructor-initialization */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006556 cpp_base_class = TRUE;
6557 lookfor_ctor_init = class_or_struct = FALSE;
Bram Moolenaar4032cfd2015-05-04 17:50:33 +02006558 pos->col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006559 s = cin_skipcomment(s + 1);
6560 }
6561 else
6562 s = cin_skipcomment(s + 1);
6563 }
6564 else if ((STRNCMP(s, "class", 5) == 0 && !vim_isIDc(s[5]))
6565 || (STRNCMP(s, "struct", 6) == 0 && !vim_isIDc(s[6])))
6566 {
6567 class_or_struct = TRUE;
6568 lookfor_ctor_init = FALSE;
6569
6570 if (*s == 'c')
6571 s = cin_skipcomment(s + 5);
6572 else
6573 s = cin_skipcomment(s + 6);
6574 }
6575 else
6576 {
6577 if (s[0] == '{' || s[0] == '}' || s[0] == ';')
6578 {
6579 cpp_base_class = lookfor_ctor_init = class_or_struct = FALSE;
6580 }
6581 else if (s[0] == ')')
6582 {
6583 /* Constructor-initialization is assumed if we come across
6584 * something like "):" */
6585 class_or_struct = FALSE;
6586 lookfor_ctor_init = TRUE;
6587 }
Bram Moolenaar18144c82006-04-12 21:52:12 +00006588 else if (s[0] == '?')
6589 {
6590 /* Avoid seeing '() :' after '?' as constructor init. */
6591 return FALSE;
6592 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006593 else if (!vim_isIDc(s[0]))
6594 {
6595 /* if it is not an identifier, we are wrong */
6596 class_or_struct = FALSE;
6597 lookfor_ctor_init = FALSE;
6598 }
Bram Moolenaar4032cfd2015-05-04 17:50:33 +02006599 else if (pos->col == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006600 {
6601 /* it can't be a constructor-initialization any more */
6602 lookfor_ctor_init = FALSE;
6603
6604 /* the first statement starts here: lineup with this one... */
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006605 if (cpp_base_class)
Bram Moolenaar4032cfd2015-05-04 17:50:33 +02006606 pos->col = (colnr_T)(s - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006607 }
6608
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006609 /* When the line ends in a comma don't align with it. */
6610 if (lnum == curwin->w_cursor.lnum && *s == ',' && cin_nocode(s + 1))
Bram Moolenaar4032cfd2015-05-04 17:50:33 +02006611 pos->col = 0;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006612
Bram Moolenaar071d4272004-06-13 20:20:40 +00006613 s = cin_skipcomment(s + 1);
6614 }
6615 }
6616
Bram Moolenaar4032cfd2015-05-04 17:50:33 +02006617 cached->found = cpp_base_class;
6618 if (cpp_base_class)
6619 pos->lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006620 return cpp_base_class;
6621}
6622
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006623 static int
Bram Moolenaar84dbb622013-11-06 04:01:36 +01006624get_baseclass_amount(col)
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006625 int col;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006626{
6627 int amount;
6628 colnr_T vcol;
6629 pos_T *trypos;
6630
6631 if (col == 0)
6632 {
6633 amount = get_indent();
6634 if (find_last_paren(ml_get_curline(), '(', ')')
Bram Moolenaar84dbb622013-11-06 04:01:36 +01006635 && (trypos = find_match_paren(curbuf->b_ind_maxparen)) != NULL)
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006636 amount = get_indent_lnum(trypos->lnum); /* XXX */
6637 if (!cin_ends_in(ml_get_curline(), (char_u *)",", NULL))
Bram Moolenaar84dbb622013-11-06 04:01:36 +01006638 amount += curbuf->b_ind_cpp_baseclass;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006639 }
6640 else
6641 {
6642 curwin->w_cursor.col = col;
6643 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
6644 amount = (int)vcol;
6645 }
Bram Moolenaar84dbb622013-11-06 04:01:36 +01006646 if (amount < curbuf->b_ind_cpp_baseclass)
6647 amount = curbuf->b_ind_cpp_baseclass;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006648 return amount;
6649}
6650
Bram Moolenaar071d4272004-06-13 20:20:40 +00006651/*
6652 * Return TRUE if string "s" ends with the string "find", possibly followed by
6653 * white space and comments. Skip strings and comments.
6654 * Ignore "ignore" after "find" if it's not NULL.
6655 */
6656 static int
6657cin_ends_in(s, find, ignore)
6658 char_u *s;
6659 char_u *find;
6660 char_u *ignore;
6661{
6662 char_u *p = s;
6663 char_u *r;
6664 int len = (int)STRLEN(find);
6665
6666 while (*p != NUL)
6667 {
6668 p = cin_skipcomment(p);
6669 if (STRNCMP(p, find, len) == 0)
6670 {
6671 r = skipwhite(p + len);
6672 if (ignore != NULL && STRNCMP(r, ignore, STRLEN(ignore)) == 0)
6673 r = skipwhite(r + STRLEN(ignore));
6674 if (cin_nocode(r))
6675 return TRUE;
6676 }
6677 if (*p != NUL)
6678 ++p;
6679 }
6680 return FALSE;
6681}
6682
6683/*
Bram Moolenaar75342212013-03-07 13:13:52 +01006684 * Return TRUE when "s" starts with "word" and then a non-ID character.
6685 */
6686 static int
6687cin_starts_with(s, word)
6688 char_u *s;
6689 char *word;
6690{
Bram Moolenaarb3cb9822013-03-13 17:01:52 +01006691 int l = (int)STRLEN(word);
Bram Moolenaar75342212013-03-07 13:13:52 +01006692
6693 return (STRNCMP(s, word, l) == 0 && !vim_isIDc(s[l]));
6694}
6695
6696/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006697 * Skip strings, chars and comments until at or past "trypos".
6698 * Return the column found.
6699 */
6700 static int
6701cin_skip2pos(trypos)
6702 pos_T *trypos;
6703{
6704 char_u *line;
6705 char_u *p;
6706
6707 p = line = ml_get(trypos->lnum);
6708 while (*p && (colnr_T)(p - line) < trypos->col)
6709 {
6710 if (cin_iscomment(p))
6711 p = cin_skipcomment(p);
6712 else
6713 {
6714 p = skip_string(p);
6715 ++p;
6716 }
6717 }
6718 return (int)(p - line);
6719}
6720
6721/*
6722 * Find the '{' at the start of the block we are in.
6723 * Return NULL if no match found.
6724 * Ignore a '{' that is in a comment, makes indenting the next three lines
6725 * work. */
6726/* foo() */
6727/* { */
6728/* } */
6729
6730 static pos_T *
Bram Moolenaar84dbb622013-11-06 04:01:36 +01006731find_start_brace() /* XXX */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006732{
6733 pos_T cursor_save;
6734 pos_T *trypos;
6735 pos_T *pos;
6736 static pos_T pos_copy;
6737
6738 cursor_save = curwin->w_cursor;
6739 while ((trypos = findmatchlimit(NULL, '{', FM_BLOCKSTOP, 0)) != NULL)
6740 {
6741 pos_copy = *trypos; /* copy pos_T, next findmatch will change it */
6742 trypos = &pos_copy;
6743 curwin->w_cursor = *trypos;
6744 pos = NULL;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006745 /* ignore the { if it's in a // or / * * / comment */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746 if ((colnr_T)cin_skip2pos(trypos) == trypos->col
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02006747 && (pos = ind_find_start_CORS()) == NULL) /* XXX */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006748 break;
6749 if (pos != NULL)
6750 curwin->w_cursor.lnum = pos->lnum;
6751 }
6752 curwin->w_cursor = cursor_save;
6753 return trypos;
6754}
6755
6756/*
Bram Moolenaar81439a62014-07-02 18:27:48 +02006757 * Find the matching '(', ignoring it if it is in a comment.
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006758 * Return NULL if no match found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006759 */
6760 static pos_T *
Bram Moolenaar84dbb622013-11-06 04:01:36 +01006761find_match_paren(ind_maxparen) /* XXX */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006762 int ind_maxparen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006763{
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02006764 return find_match_char('(', ind_maxparen);
6765}
6766
6767 static pos_T *
6768find_match_char(c, ind_maxparen) /* XXX */
6769 int c;
6770 int ind_maxparen;
6771{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006772 pos_T cursor_save;
6773 pos_T *trypos;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006774 static pos_T pos_copy;
Bram Moolenaardcefba92015-03-20 19:06:06 +01006775 int ind_maxp_wk;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006776
6777 cursor_save = curwin->w_cursor;
Bram Moolenaardcefba92015-03-20 19:06:06 +01006778 ind_maxp_wk = ind_maxparen;
6779retry:
6780 if ((trypos = findmatchlimit(NULL, c, 0, ind_maxp_wk)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006781 {
6782 /* check if the ( is in a // comment */
6783 if ((colnr_T)cin_skip2pos(trypos) > trypos->col)
Bram Moolenaardcefba92015-03-20 19:06:06 +01006784 {
6785 ind_maxp_wk = ind_maxparen - (int)(cursor_save.lnum - trypos->lnum);
6786 if (ind_maxp_wk > 0)
6787 {
6788 curwin->w_cursor = *trypos;
6789 curwin->w_cursor.col = 0; /* XXX */
6790 goto retry;
6791 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006792 trypos = NULL;
Bram Moolenaardcefba92015-03-20 19:06:06 +01006793 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006794 else
6795 {
Bram Moolenaardcefba92015-03-20 19:06:06 +01006796 pos_T *trypos_wk;
6797
Bram Moolenaar071d4272004-06-13 20:20:40 +00006798 pos_copy = *trypos; /* copy trypos, findmatch will change it */
6799 trypos = &pos_copy;
6800 curwin->w_cursor = *trypos;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02006801 if ((trypos_wk = ind_find_start_CORS()) != NULL) /* XXX */
Bram Moolenaardcefba92015-03-20 19:06:06 +01006802 {
6803 ind_maxp_wk = ind_maxparen - (int)(cursor_save.lnum
6804 - trypos_wk->lnum);
6805 if (ind_maxp_wk > 0)
6806 {
6807 curwin->w_cursor = *trypos_wk;
6808 goto retry;
6809 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006810 trypos = NULL;
Bram Moolenaardcefba92015-03-20 19:06:06 +01006811 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006812 }
6813 }
6814 curwin->w_cursor = cursor_save;
6815 return trypos;
6816}
6817
6818/*
Bram Moolenaar81439a62014-07-02 18:27:48 +02006819 * Find the matching '(', ignoring it if it is in a comment or before an
6820 * unmatched {.
6821 * Return NULL if no match found.
6822 */
6823 static pos_T *
6824find_match_paren_after_brace(ind_maxparen) /* XXX */
6825 int ind_maxparen;
6826{
6827 pos_T *trypos = find_match_paren(ind_maxparen);
6828
6829 if (trypos != NULL)
6830 {
6831 pos_T *tryposBrace = find_start_brace();
6832
6833 /* If both an unmatched '(' and '{' is found. Ignore the '('
6834 * position if the '{' is further down. */
6835 if (tryposBrace != NULL
6836 && (trypos->lnum != tryposBrace->lnum
6837 ? trypos->lnum < tryposBrace->lnum
6838 : trypos->col < tryposBrace->col))
6839 trypos = NULL;
6840 }
6841 return trypos;
6842}
6843
6844/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006845 * Return ind_maxparen corrected for the difference in line number between the
6846 * cursor position and "startpos". This makes sure that searching for a
6847 * matching paren above the cursor line doesn't find a match because of
6848 * looking a few lines further.
6849 */
6850 static int
Bram Moolenaar84dbb622013-11-06 04:01:36 +01006851corr_ind_maxparen(startpos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006852 pos_T *startpos;
6853{
6854 long n = (long)startpos->lnum - (long)curwin->w_cursor.lnum;
6855
Bram Moolenaar84dbb622013-11-06 04:01:36 +01006856 if (n > 0 && n < curbuf->b_ind_maxparen / 2)
6857 return curbuf->b_ind_maxparen - (int)n;
6858 return curbuf->b_ind_maxparen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006859}
6860
6861/*
6862 * Set w_cursor.col to the column number of the last unmatched ')' or '{' in
Bram Moolenaar6d8f9c62011-11-30 13:03:28 +01006863 * line "l". "l" must point to the start of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006864 */
6865 static int
6866find_last_paren(l, start, end)
6867 char_u *l;
6868 int start, end;
6869{
6870 int i;
6871 int retval = FALSE;
6872 int open_count = 0;
6873
6874 curwin->w_cursor.col = 0; /* default is start of line */
6875
Bram Moolenaar6d8f9c62011-11-30 13:03:28 +01006876 for (i = 0; l[i] != NUL; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006877 {
6878 i = (int)(cin_skipcomment(l + i) - l); /* ignore parens in comments */
6879 i = (int)(skip_string(l + i) - l); /* ignore parens in quotes */
6880 if (l[i] == start)
6881 ++open_count;
6882 else if (l[i] == end)
6883 {
6884 if (open_count > 0)
6885 --open_count;
6886 else
6887 {
6888 curwin->w_cursor.col = i;
6889 retval = TRUE;
6890 }
6891 }
6892 }
6893 return retval;
6894}
6895
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01006896/*
6897 * Parse 'cinoptions' and set the values in "curbuf".
6898 * Must be called when 'cinoptions', 'shiftwidth' and/or 'tabstop' changes.
6899 */
6900 void
6901parse_cino(buf)
6902 buf_T *buf;
6903{
6904 char_u *p;
6905 char_u *l;
6906 char_u *digits;
6907 int n;
6908 int divider;
6909 int fraction = 0;
6910 int sw = (int)get_sw_value(buf);
6911
6912 /*
6913 * Set the default values.
6914 */
6915 /* Spaces from a block's opening brace the prevailing indent for that
6916 * block should be. */
6917 buf->b_ind_level = sw;
6918
6919 /* Spaces from the edge of the line an open brace that's at the end of a
6920 * line is imagined to be. */
6921 buf->b_ind_open_imag = 0;
6922
6923 /* Spaces from the prevailing indent for a line that is not preceded by
6924 * an opening brace. */
6925 buf->b_ind_no_brace = 0;
6926
6927 /* Column where the first { of a function should be located }. */
6928 buf->b_ind_first_open = 0;
6929
6930 /* Spaces from the prevailing indent a leftmost open brace should be
6931 * located. */
6932 buf->b_ind_open_extra = 0;
6933
6934 /* Spaces from the matching open brace (real location for one at the left
6935 * edge; imaginary location from one that ends a line) the matching close
6936 * brace should be located. */
6937 buf->b_ind_close_extra = 0;
6938
6939 /* Spaces from the edge of the line an open brace sitting in the leftmost
6940 * column is imagined to be. */
6941 buf->b_ind_open_left_imag = 0;
6942
6943 /* Spaces jump labels should be shifted to the left if N is non-negative,
6944 * otherwise the jump label will be put to column 1. */
6945 buf->b_ind_jump_label = -1;
6946
6947 /* Spaces from the switch() indent a "case xx" label should be located. */
6948 buf->b_ind_case = sw;
6949
6950 /* Spaces from the "case xx:" code after a switch() should be located. */
6951 buf->b_ind_case_code = sw;
6952
6953 /* Lineup break at end of case in switch() with case label. */
6954 buf->b_ind_case_break = 0;
6955
6956 /* Spaces from the class declaration indent a scope declaration label
6957 * should be located. */
6958 buf->b_ind_scopedecl = sw;
6959
6960 /* Spaces from the scope declaration label code should be located. */
6961 buf->b_ind_scopedecl_code = sw;
6962
6963 /* Amount K&R-style parameters should be indented. */
6964 buf->b_ind_param = sw;
6965
6966 /* Amount a function type spec should be indented. */
6967 buf->b_ind_func_type = sw;
6968
6969 /* Amount a cpp base class declaration or constructor initialization
6970 * should be indented. */
6971 buf->b_ind_cpp_baseclass = sw;
6972
6973 /* additional spaces beyond the prevailing indent a continuation line
6974 * should be located. */
6975 buf->b_ind_continuation = sw;
6976
6977 /* Spaces from the indent of the line with an unclosed parentheses. */
6978 buf->b_ind_unclosed = sw * 2;
6979
6980 /* Spaces from the indent of the line with an unclosed parentheses, which
6981 * itself is also unclosed. */
6982 buf->b_ind_unclosed2 = sw;
6983
6984 /* Suppress ignoring spaces from the indent of a line starting with an
6985 * unclosed parentheses. */
6986 buf->b_ind_unclosed_noignore = 0;
6987
6988 /* If the opening paren is the last nonwhite character on the line, and
6989 * b_ind_unclosed_wrapped is nonzero, use this indent relative to the outer
6990 * context (for very long lines). */
6991 buf->b_ind_unclosed_wrapped = 0;
6992
6993 /* Suppress ignoring white space when lining up with the character after
6994 * an unclosed parentheses. */
6995 buf->b_ind_unclosed_whiteok = 0;
6996
6997 /* Indent a closing parentheses under the line start of the matching
6998 * opening parentheses. */
6999 buf->b_ind_matching_paren = 0;
7000
7001 /* Indent a closing parentheses under the previous line. */
7002 buf->b_ind_paren_prev = 0;
7003
7004 /* Extra indent for comments. */
7005 buf->b_ind_comment = 0;
7006
7007 /* Spaces from the comment opener when there is nothing after it. */
7008 buf->b_ind_in_comment = 3;
7009
7010 /* Boolean: if non-zero, use b_ind_in_comment even if there is something
7011 * after the comment opener. */
7012 buf->b_ind_in_comment2 = 0;
7013
7014 /* Max lines to search for an open paren. */
7015 buf->b_ind_maxparen = 20;
7016
7017 /* Max lines to search for an open comment. */
7018 buf->b_ind_maxcomment = 70;
7019
7020 /* Handle braces for java code. */
7021 buf->b_ind_java = 0;
7022
7023 /* Not to confuse JS object properties with labels. */
7024 buf->b_ind_js = 0;
7025
7026 /* Handle blocked cases correctly. */
7027 buf->b_ind_keep_case_label = 0;
7028
7029 /* Handle C++ namespace. */
7030 buf->b_ind_cpp_namespace = 0;
7031
7032 /* Handle continuation lines containing conditions of if(), for() and
7033 * while(). */
7034 buf->b_ind_if_for_while = 0;
7035
7036 for (p = buf->b_p_cino; *p; )
7037 {
7038 l = p++;
7039 if (*p == '-')
7040 ++p;
7041 digits = p; /* remember where the digits start */
7042 n = getdigits(&p);
7043 divider = 0;
7044 if (*p == '.') /* ".5s" means a fraction */
7045 {
7046 fraction = atol((char *)++p);
7047 while (VIM_ISDIGIT(*p))
7048 {
7049 ++p;
7050 if (divider)
7051 divider *= 10;
7052 else
7053 divider = 10;
7054 }
7055 }
7056 if (*p == 's') /* "2s" means two times 'shiftwidth' */
7057 {
7058 if (p == digits)
7059 n = sw; /* just "s" is one 'shiftwidth' */
7060 else
7061 {
7062 n *= sw;
7063 if (divider)
7064 n += (sw * fraction + divider / 2) / divider;
7065 }
7066 ++p;
7067 }
7068 if (l[1] == '-')
7069 n = -n;
7070
7071 /* When adding an entry here, also update the default 'cinoptions' in
7072 * doc/indent.txt, and add explanation for it! */
7073 switch (*l)
7074 {
7075 case '>': buf->b_ind_level = n; break;
7076 case 'e': buf->b_ind_open_imag = n; break;
7077 case 'n': buf->b_ind_no_brace = n; break;
7078 case 'f': buf->b_ind_first_open = n; break;
7079 case '{': buf->b_ind_open_extra = n; break;
7080 case '}': buf->b_ind_close_extra = n; break;
7081 case '^': buf->b_ind_open_left_imag = n; break;
7082 case 'L': buf->b_ind_jump_label = n; break;
7083 case ':': buf->b_ind_case = n; break;
7084 case '=': buf->b_ind_case_code = n; break;
7085 case 'b': buf->b_ind_case_break = n; break;
7086 case 'p': buf->b_ind_param = n; break;
7087 case 't': buf->b_ind_func_type = n; break;
7088 case '/': buf->b_ind_comment = n; break;
7089 case 'c': buf->b_ind_in_comment = n; break;
7090 case 'C': buf->b_ind_in_comment2 = n; break;
7091 case 'i': buf->b_ind_cpp_baseclass = n; break;
7092 case '+': buf->b_ind_continuation = n; break;
7093 case '(': buf->b_ind_unclosed = n; break;
7094 case 'u': buf->b_ind_unclosed2 = n; break;
7095 case 'U': buf->b_ind_unclosed_noignore = n; break;
7096 case 'W': buf->b_ind_unclosed_wrapped = n; break;
7097 case 'w': buf->b_ind_unclosed_whiteok = n; break;
7098 case 'm': buf->b_ind_matching_paren = n; break;
7099 case 'M': buf->b_ind_paren_prev = n; break;
7100 case ')': buf->b_ind_maxparen = n; break;
7101 case '*': buf->b_ind_maxcomment = n; break;
7102 case 'g': buf->b_ind_scopedecl = n; break;
7103 case 'h': buf->b_ind_scopedecl_code = n; break;
7104 case 'j': buf->b_ind_java = n; break;
7105 case 'J': buf->b_ind_js = n; break;
7106 case 'l': buf->b_ind_keep_case_label = n; break;
7107 case '#': buf->b_ind_hash_comment = n; break;
7108 case 'N': buf->b_ind_cpp_namespace = n; break;
7109 case 'k': buf->b_ind_if_for_while = n; break;
7110 }
7111 if (*p == ',')
7112 ++p;
7113 }
7114}
7115
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007116/*
7117 * Return the desired indent for C code.
7118 * Return -1 if the indent should be left alone (inside a raw string).
7119 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007120 int
7121get_c_indent()
7122{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007123 pos_T cur_curpos;
7124 int amount;
7125 int scope_amount;
Bram Moolenaarb21e5842006-04-16 18:30:08 +00007126 int cur_amount = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007127 colnr_T col;
7128 char_u *theline;
7129 char_u *linecopy;
7130 pos_T *trypos;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007131 pos_T *comment_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007132 pos_T *tryposBrace = NULL;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007133 pos_T tryposCopy;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007134 pos_T our_paren_pos;
7135 char_u *start;
7136 int start_brace;
Bram Moolenaare21877a2008-02-13 09:58:14 +00007137#define BRACE_IN_COL0 1 /* '{' is in column 0 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007138#define BRACE_AT_START 2 /* '{' is at start of line */
7139#define BRACE_AT_END 3 /* '{' is at end of line */
7140 linenr_T ourscope;
7141 char_u *l;
7142 char_u *look;
7143 char_u terminated;
7144 int lookfor;
7145#define LOOKFOR_INITIAL 0
7146#define LOOKFOR_IF 1
7147#define LOOKFOR_DO 2
7148#define LOOKFOR_CASE 3
7149#define LOOKFOR_ANY 4
7150#define LOOKFOR_TERM 5
7151#define LOOKFOR_UNTERM 6
7152#define LOOKFOR_SCOPEDECL 7
7153#define LOOKFOR_NOBREAK 8
7154#define LOOKFOR_CPP_BASECLASS 9
7155#define LOOKFOR_ENUM_OR_INIT 10
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02007156#define LOOKFOR_JS_KEY 11
Bram Moolenaar4032cfd2015-05-04 17:50:33 +02007157#define LOOKFOR_COMMA 12
Bram Moolenaar071d4272004-06-13 20:20:40 +00007158
7159 int whilelevel;
7160 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007161 int n;
7162 int iscase;
7163 int lookfor_break;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007164 int lookfor_cpp_namespace = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007165 int cont_amount = 0; /* amount for continuation line */
Bram Moolenaar02c707a2010-07-17 17:12:06 +02007166 int original_line_islabel;
Bram Moolenaare79d1532011-10-04 18:03:47 +02007167 int added_to_amount = 0;
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02007168 int js_cur_has_key = 0;
Bram Moolenaar4032cfd2015-05-04 17:50:33 +02007169 cpp_baseclass_cache_T cache_cpp_baseclass = { FALSE, { MAXLNUM, 0 } };
Bram Moolenaar071d4272004-06-13 20:20:40 +00007170
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007171 /* make a copy, value is changed below */
7172 int ind_continuation = curbuf->b_ind_continuation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007173
7174 /* remember where the cursor was when we started */
7175 cur_curpos = curwin->w_cursor;
7176
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007177 /* if we are at line 1 zero indent is fine, right? */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007178 if (cur_curpos.lnum == 1)
7179 return 0;
7180
Bram Moolenaar071d4272004-06-13 20:20:40 +00007181 /* Get a copy of the current contents of the line.
7182 * This is required, because only the most recent line obtained with
7183 * ml_get is valid! */
7184 linecopy = vim_strsave(ml_get(cur_curpos.lnum));
7185 if (linecopy == NULL)
7186 return 0;
7187
7188 /*
7189 * In insert mode and the cursor is on a ')' truncate the line at the
7190 * cursor position. We don't want to line up with the matching '(' when
7191 * inserting new stuff.
7192 * For unknown reasons the cursor might be past the end of the line, thus
7193 * check for that.
7194 */
7195 if ((State & INSERT)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00007196 && curwin->w_cursor.col < (colnr_T)STRLEN(linecopy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007197 && linecopy[curwin->w_cursor.col] == ')')
7198 linecopy[curwin->w_cursor.col] = NUL;
7199
7200 theline = skipwhite(linecopy);
7201
7202 /* move the cursor to the start of the line */
7203
7204 curwin->w_cursor.col = 0;
7205
Bram Moolenaar84dbb622013-11-06 04:01:36 +01007206 original_line_islabel = cin_islabel(); /* XXX */
Bram Moolenaar02c707a2010-07-17 17:12:06 +02007207
Bram Moolenaar071d4272004-06-13 20:20:40 +00007208 /*
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007209 * If we are inside a raw string don't change the indent.
7210 * Ignore a raw string inside a comment.
7211 */
7212 comment_pos = ind_find_start_comment();
7213 if (comment_pos != NULL)
7214 {
7215 /* findmatchlimit() static pos is overwritten, make a copy */
7216 tryposCopy = *comment_pos;
7217 comment_pos = &tryposCopy;
7218 }
7219 trypos = find_start_rawstring(curbuf->b_ind_maxcomment);
7220 if (trypos != NULL && (comment_pos == NULL || lt(*trypos, *comment_pos)))
7221 {
7222 amount = -1;
7223 goto laterend;
7224 }
7225
7226 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007227 * #defines and so on always go at the left when included in 'cinkeys'.
7228 */
7229 if (*theline == '#' && (*linecopy == '#' || in_cinkeys('#', ' ', TRUE)))
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007230 {
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007231 amount = curbuf->b_ind_hash_comment;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007232 goto theend;
7233 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007234
7235 /*
Bram Moolenaar02c707a2010-07-17 17:12:06 +02007236 * Is it a non-case label? Then that goes at the left margin too unless:
7237 * - JS flag is set.
7238 * - 'L' item has a positive value.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007239 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007240 if (original_line_islabel && !curbuf->b_ind_js
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007241 && curbuf->b_ind_jump_label < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007242 {
7243 amount = 0;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007244 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007245 }
7246
7247 /*
7248 * If we're inside a "//" comment and there is a "//" comment in a
7249 * previous line, lineup with that one.
7250 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007251 if (cin_islinecomment(theline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007252 && (trypos = find_line_comment()) != NULL) /* XXX */
7253 {
7254 /* find how indented the line beginning the comment is */
7255 getvcol(curwin, trypos, &col, NULL, NULL);
7256 amount = col;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007257 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007258 }
7259
7260 /*
7261 * If we're inside a comment and not looking at the start of the
7262 * comment, try using the 'comments' option.
7263 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007264 if (!cin_iscomment(theline) && comment_pos != NULL) /* XXX */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007265 {
7266 int lead_start_len = 2;
7267 int lead_middle_len = 1;
7268 char_u lead_start[COM_MAX_LEN]; /* start-comment string */
7269 char_u lead_middle[COM_MAX_LEN]; /* middle-comment string */
7270 char_u lead_end[COM_MAX_LEN]; /* end-comment string */
7271 char_u *p;
7272 int start_align = 0;
7273 int start_off = 0;
7274 int done = FALSE;
7275
7276 /* find how indented the line beginning the comment is */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007277 getvcol(curwin, comment_pos, &col, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007278 amount = col;
Bram Moolenaar4aa97422011-04-11 14:27:38 +02007279 *lead_start = NUL;
7280 *lead_middle = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007281
7282 p = curbuf->b_p_com;
7283 while (*p != NUL)
7284 {
7285 int align = 0;
7286 int off = 0;
7287 int what = 0;
7288
7289 while (*p != NUL && *p != ':')
7290 {
7291 if (*p == COM_START || *p == COM_END || *p == COM_MIDDLE)
7292 what = *p++;
7293 else if (*p == COM_LEFT || *p == COM_RIGHT)
7294 align = *p++;
7295 else if (VIM_ISDIGIT(*p) || *p == '-')
7296 off = getdigits(&p);
7297 else
7298 ++p;
7299 }
7300
7301 if (*p == ':')
7302 ++p;
7303 (void)copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
7304 if (what == COM_START)
7305 {
7306 STRCPY(lead_start, lead_end);
7307 lead_start_len = (int)STRLEN(lead_start);
7308 start_off = off;
7309 start_align = align;
7310 }
7311 else if (what == COM_MIDDLE)
7312 {
7313 STRCPY(lead_middle, lead_end);
7314 lead_middle_len = (int)STRLEN(lead_middle);
7315 }
7316 else if (what == COM_END)
7317 {
7318 /* If our line starts with the middle comment string, line it
7319 * up with the comment opener per the 'comments' option. */
7320 if (STRNCMP(theline, lead_middle, lead_middle_len) == 0
7321 && STRNCMP(theline, lead_end, STRLEN(lead_end)) != 0)
7322 {
7323 done = TRUE;
7324 if (curwin->w_cursor.lnum > 1)
7325 {
7326 /* If the start comment string matches in the previous
Bram Moolenaare21877a2008-02-13 09:58:14 +00007327 * line, use the indent of that line plus offset. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00007328 * the middle comment string matches in the previous
7329 * line, use the indent of that line. XXX */
7330 look = skipwhite(ml_get(curwin->w_cursor.lnum - 1));
7331 if (STRNCMP(look, lead_start, lead_start_len) == 0)
7332 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
7333 else if (STRNCMP(look, lead_middle,
7334 lead_middle_len) == 0)
7335 {
7336 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
7337 break;
7338 }
7339 /* If the start comment string doesn't match with the
7340 * start of the comment, skip this entry. XXX */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007341 else if (STRNCMP(ml_get(comment_pos->lnum) + comment_pos->col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007342 lead_start, lead_start_len) != 0)
7343 continue;
7344 }
7345 if (start_off != 0)
7346 amount += start_off;
7347 else if (start_align == COM_RIGHT)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00007348 amount += vim_strsize(lead_start)
7349 - vim_strsize(lead_middle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007350 break;
7351 }
7352
7353 /* If our line starts with the end comment string, line it up
7354 * with the middle comment */
7355 if (STRNCMP(theline, lead_middle, lead_middle_len) != 0
7356 && STRNCMP(theline, lead_end, STRLEN(lead_end)) == 0)
7357 {
7358 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
7359 /* XXX */
7360 if (off != 0)
7361 amount += off;
7362 else if (align == COM_RIGHT)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00007363 amount += vim_strsize(lead_start)
7364 - vim_strsize(lead_middle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007365 done = TRUE;
7366 break;
7367 }
7368 }
7369 }
7370
7371 /* If our line starts with an asterisk, line up with the
7372 * asterisk in the comment opener; otherwise, line up
7373 * with the first character of the comment text.
7374 */
7375 if (done)
7376 ;
7377 else if (theline[0] == '*')
7378 amount += 1;
7379 else
7380 {
7381 /*
7382 * If we are more than one line away from the comment opener, take
7383 * the indent of the previous non-empty line. If 'cino' has "CO"
7384 * and we are just below the comment opener and there are any
7385 * white characters after it line up with the text after it;
7386 * otherwise, add the amount specified by "c" in 'cino'
7387 */
7388 amount = -1;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007389 for (lnum = cur_curpos.lnum - 1; lnum > comment_pos->lnum; --lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007390 {
7391 if (linewhite(lnum)) /* skip blank lines */
7392 continue;
7393 amount = get_indent_lnum(lnum); /* XXX */
7394 break;
7395 }
7396 if (amount == -1) /* use the comment opener */
7397 {
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007398 if (!curbuf->b_ind_in_comment2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007399 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007400 start = ml_get(comment_pos->lnum);
7401 look = start + comment_pos->col + 2; /* skip / and * */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007402 if (*look != NUL) /* if something after it */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007403 comment_pos->col = (colnr_T)(skipwhite(look) - start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007404 }
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007405 getvcol(curwin, comment_pos, &col, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007406 amount = col;
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007407 if (curbuf->b_ind_in_comment2 || *look == NUL)
7408 amount += curbuf->b_ind_in_comment;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007409 }
7410 }
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007411 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007412 }
7413
7414 /*
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02007415 * Are we looking at a ']' that has a match?
7416 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007417 if (*skipwhite(theline) == ']'
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02007418 && (trypos = find_match_char('[', curbuf->b_ind_maxparen)) != NULL)
7419 {
7420 /* align with the line containing the '['. */
7421 amount = get_indent_lnum(trypos->lnum);
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007422 goto theend;
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02007423 }
7424
7425 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007426 * Are we inside parentheses or braces?
7427 */ /* XXX */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007428 if (((trypos = find_match_paren(curbuf->b_ind_maxparen)) != NULL
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007429 && curbuf->b_ind_java == 0)
Bram Moolenaar84dbb622013-11-06 04:01:36 +01007430 || (tryposBrace = find_start_brace()) != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00007431 || trypos != NULL)
7432 {
7433 if (trypos != NULL && tryposBrace != NULL)
7434 {
7435 /* Both an unmatched '(' and '{' is found. Use the one which is
7436 * closer to the current cursor position, set the other to NULL. */
7437 if (trypos->lnum != tryposBrace->lnum
7438 ? trypos->lnum < tryposBrace->lnum
7439 : trypos->col < tryposBrace->col)
7440 trypos = NULL;
7441 else
7442 tryposBrace = NULL;
7443 }
7444
7445 if (trypos != NULL)
7446 {
7447 /*
7448 * If the matching paren is more than one line away, use the indent of
7449 * a previous non-empty line that matches the same paren.
7450 */
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007451 if (theline[0] == ')' && curbuf->b_ind_paren_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007452 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007453 /* Line up with the start of the matching paren line. */
7454 amount = get_indent_lnum(curwin->w_cursor.lnum - 1); /* XXX */
7455 }
7456 else
7457 {
7458 amount = -1;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007459 our_paren_pos = *trypos;
7460 for (lnum = cur_curpos.lnum - 1; lnum > our_paren_pos.lnum; --lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007461 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007462 l = skipwhite(ml_get(lnum));
7463 if (cin_nocode(l)) /* skip comment lines */
7464 continue;
7465 if (cin_ispreproc_cont(&l, &lnum))
7466 continue; /* ignore #define, #if, etc. */
7467 curwin->w_cursor.lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007468
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007469 /* Skip a comment or raw string. XXX */
7470 if ((trypos = ind_find_start_CORS()) != NULL)
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007471 {
7472 lnum = trypos->lnum + 1;
7473 continue;
7474 }
7475
7476 /* XXX */
7477 if ((trypos = find_match_paren(
Bram Moolenaar84dbb622013-11-06 04:01:36 +01007478 corr_ind_maxparen(&cur_curpos))) != NULL
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007479 && trypos->lnum == our_paren_pos.lnum
7480 && trypos->col == our_paren_pos.col)
7481 {
7482 amount = get_indent_lnum(lnum); /* XXX */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007483
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007484 if (theline[0] == ')')
7485 {
7486 if (our_paren_pos.lnum != lnum
7487 && cur_amount > amount)
7488 cur_amount = amount;
7489 amount = -1;
7490 }
7491 break;
7492 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007493 }
7494 }
7495
7496 /*
7497 * Line up with line where the matching paren is. XXX
7498 * If the line starts with a '(' or the indent for unclosed
7499 * parentheses is zero, line up with the unclosed parentheses.
7500 */
7501 if (amount == -1)
7502 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007503 int ignore_paren_col = 0;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007504 int is_if_for_while = 0;
7505
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007506 if (curbuf->b_ind_if_for_while)
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007507 {
7508 /* Look for the outermost opening parenthesis on this line
7509 * and check whether it belongs to an "if", "for" or "while". */
7510
7511 pos_T cursor_save = curwin->w_cursor;
7512 pos_T outermost;
7513 char_u *line;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007514
7515 trypos = &our_paren_pos;
7516 do {
7517 outermost = *trypos;
7518 curwin->w_cursor.lnum = outermost.lnum;
7519 curwin->w_cursor.col = outermost.col;
7520
Bram Moolenaar84dbb622013-11-06 04:01:36 +01007521 trypos = find_match_paren(curbuf->b_ind_maxparen);
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007522 } while (trypos && trypos->lnum == outermost.lnum);
7523
7524 curwin->w_cursor = cursor_save;
7525
7526 line = ml_get(outermost.lnum);
7527
7528 is_if_for_while =
Bram Moolenaarb345d492012-04-09 20:42:26 +02007529 cin_is_if_for_while_before_offset(line, &outermost.col);
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007530 }
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007531
Bram Moolenaar84dbb622013-11-06 04:01:36 +01007532 amount = skip_label(our_paren_pos.lnum, &look);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007533 look = skipwhite(look);
7534 if (*look == '(')
7535 {
7536 linenr_T save_lnum = curwin->w_cursor.lnum;
7537 char_u *line;
7538 int look_col;
7539
7540 /* Ignore a '(' in front of the line that has a match before
7541 * our matching '('. */
7542 curwin->w_cursor.lnum = our_paren_pos.lnum;
7543 line = ml_get_curline();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007544 look_col = (int)(look - line);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007545 curwin->w_cursor.col = look_col + 1;
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007546 if ((trypos = findmatchlimit(NULL, ')', 0,
7547 curbuf->b_ind_maxparen))
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007548 != NULL
7549 && trypos->lnum == our_paren_pos.lnum
7550 && trypos->col < our_paren_pos.col)
7551 ignore_paren_col = trypos->col + 1;
7552
7553 curwin->w_cursor.lnum = save_lnum;
7554 look = ml_get(our_paren_pos.lnum) + look_col;
7555 }
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007556 if (theline[0] == ')' || (curbuf->b_ind_unclosed == 0
7557 && is_if_for_while == 0)
7558 || (!curbuf->b_ind_unclosed_noignore && *look == '('
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007559 && ignore_paren_col == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007560 {
7561 /*
7562 * If we're looking at a close paren, line up right there;
7563 * otherwise, line up with the next (non-white) character.
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007564 * When b_ind_unclosed_wrapped is set and the matching paren is
Bram Moolenaar071d4272004-06-13 20:20:40 +00007565 * the last nonwhite character of the line, use either the
7566 * indent of the current line or the indentation of the next
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007567 * outer paren and add b_ind_unclosed_wrapped (for very long
Bram Moolenaar071d4272004-06-13 20:20:40 +00007568 * lines).
7569 */
7570 if (theline[0] != ')')
7571 {
7572 cur_amount = MAXCOL;
7573 l = ml_get(our_paren_pos.lnum);
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007574 if (curbuf->b_ind_unclosed_wrapped
Bram Moolenaar071d4272004-06-13 20:20:40 +00007575 && cin_ends_in(l, (char_u *)"(", NULL))
7576 {
7577 /* look for opening unmatched paren, indent one level
7578 * for each additional level */
7579 n = 1;
7580 for (col = 0; col < our_paren_pos.col; ++col)
7581 {
7582 switch (l[col])
7583 {
7584 case '(':
7585 case '{': ++n;
7586 break;
7587
7588 case ')':
7589 case '}': if (n > 1)
7590 --n;
7591 break;
7592 }
7593 }
7594
7595 our_paren_pos.col = 0;
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007596 amount += n * curbuf->b_ind_unclosed_wrapped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007597 }
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007598 else if (curbuf->b_ind_unclosed_whiteok)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007599 our_paren_pos.col++;
7600 else
7601 {
7602 col = our_paren_pos.col + 1;
7603 while (vim_iswhite(l[col]))
7604 col++;
7605 if (l[col] != NUL) /* In case of trailing space */
7606 our_paren_pos.col = col;
7607 else
7608 our_paren_pos.col++;
7609 }
7610 }
7611
7612 /*
7613 * Find how indented the paren is, or the character after it
7614 * if we did the above "if".
7615 */
7616 if (our_paren_pos.col > 0)
7617 {
7618 getvcol(curwin, &our_paren_pos, &col, NULL, NULL);
7619 if (cur_amount > (int)col)
7620 cur_amount = col;
7621 }
7622 }
7623
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007624 if (theline[0] == ')' && curbuf->b_ind_matching_paren)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007625 {
7626 /* Line up with the start of the matching paren line. */
7627 }
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007628 else if ((curbuf->b_ind_unclosed == 0 && is_if_for_while == 0)
7629 || (!curbuf->b_ind_unclosed_noignore
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007630 && *look == '(' && ignore_paren_col == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007631 {
7632 if (cur_amount != MAXCOL)
7633 amount = cur_amount;
7634 }
7635 else
7636 {
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007637 /* Add b_ind_unclosed2 for each '(' before our matching one,
7638 * but ignore (void) before the line (ignore_paren_col). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007639 col = our_paren_pos.col;
Bram Moolenaarb21e5842006-04-16 18:30:08 +00007640 while ((int)our_paren_pos.col > ignore_paren_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007641 {
7642 --our_paren_pos.col;
7643 switch (*ml_get_pos(&our_paren_pos))
7644 {
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007645 case '(': amount += curbuf->b_ind_unclosed2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007646 col = our_paren_pos.col;
7647 break;
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007648 case ')': amount -= curbuf->b_ind_unclosed2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007649 col = MAXCOL;
7650 break;
7651 }
7652 }
7653
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007654 /* Use b_ind_unclosed once, when the first '(' is not inside
Bram Moolenaar071d4272004-06-13 20:20:40 +00007655 * braces */
7656 if (col == MAXCOL)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007657 amount += curbuf->b_ind_unclosed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007658 else
7659 {
7660 curwin->w_cursor.lnum = our_paren_pos.lnum;
7661 curwin->w_cursor.col = col;
Bram Moolenaar81439a62014-07-02 18:27:48 +02007662 if (find_match_paren_after_brace(curbuf->b_ind_maxparen)
7663 != NULL)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007664 amount += curbuf->b_ind_unclosed2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007665 else
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007666 {
7667 if (is_if_for_while)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007668 amount += curbuf->b_ind_if_for_while;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007669 else
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007670 amount += curbuf->b_ind_unclosed;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007671 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007672 }
7673 /*
7674 * For a line starting with ')' use the minimum of the two
7675 * positions, to avoid giving it more indent than the previous
7676 * lines:
7677 * func_long_name( if (x
7678 * arg && yy
7679 * ) ^ not here ) ^ not here
7680 */
7681 if (cur_amount < amount)
7682 amount = cur_amount;
7683 }
7684 }
7685
7686 /* add extra indent for a comment */
7687 if (cin_iscomment(theline))
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007688 amount += curbuf->b_ind_comment;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007689 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007690 else
7691 {
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02007692 /*
7693 * We are inside braces, there is a { before this line at the position
7694 * stored in tryposBrace.
Bram Moolenaar04d17ae2014-08-06 17:44:14 +02007695 * Make a copy of tryposBrace, it may point to pos_copy inside
7696 * find_start_brace(), which may be changed somewhere.
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02007697 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007698 tryposCopy = *tryposBrace;
7699 tryposBrace = &tryposCopy;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007700 trypos = tryposBrace;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007701 ourscope = trypos->lnum;
7702 start = ml_get(ourscope);
7703
7704 /*
7705 * Now figure out how indented the line is in general.
7706 * If the brace was at the start of the line, we use that;
7707 * otherwise, check out the indentation of the line as
7708 * a whole and then add the "imaginary indent" to that.
7709 */
7710 look = skipwhite(start);
7711 if (*look == '{')
7712 {
7713 getvcol(curwin, trypos, &col, NULL, NULL);
7714 amount = col;
7715 if (*start == '{')
7716 start_brace = BRACE_IN_COL0;
7717 else
7718 start_brace = BRACE_AT_START;
7719 }
7720 else
7721 {
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02007722 /* That opening brace might have been on a continuation
7723 * line. if so, find the start of the line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007724 curwin->w_cursor.lnum = ourscope;
7725
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02007726 /* Position the cursor over the rightmost paren, so that
7727 * matching it will take us back to the start of the line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007728 lnum = ourscope;
7729 if (find_last_paren(start, '(', ')')
Bram Moolenaar84dbb622013-11-06 04:01:36 +01007730 && (trypos = find_match_paren(curbuf->b_ind_maxparen))
7731 != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007732 lnum = trypos->lnum;
7733
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02007734 /* It could have been something like
Bram Moolenaar071d4272004-06-13 20:20:40 +00007735 * case 1: if (asdf &&
7736 * ldfd) {
7737 * }
7738 */
Bram Moolenaare7eb7892014-07-02 17:02:36 +02007739 if ((curbuf->b_ind_js || curbuf->b_ind_keep_case_label)
7740 && cin_iscase(skipwhite(ml_get_curline()), FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007741 amount = get_indent();
Bram Moolenaare7eb7892014-07-02 17:02:36 +02007742 else if (curbuf->b_ind_js)
7743 amount = get_indent_lnum(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007744 else
Bram Moolenaar84dbb622013-11-06 04:01:36 +01007745 amount = skip_label(lnum, &l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007746
7747 start_brace = BRACE_AT_END;
7748 }
7749
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02007750 /* For Javascript check if the line starts with "key:". */
7751 if (curbuf->b_ind_js)
7752 js_cur_has_key = cin_has_js_key(theline);
7753
Bram Moolenaar071d4272004-06-13 20:20:40 +00007754 /*
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02007755 * If we're looking at a closing brace, that's where
Bram Moolenaar071d4272004-06-13 20:20:40 +00007756 * we want to be. otherwise, add the amount of room
7757 * that an indent is supposed to be.
7758 */
7759 if (theline[0] == '}')
7760 {
7761 /*
7762 * they may want closing braces to line up with something
7763 * other than the open brace. indulge them, if so.
7764 */
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007765 amount += curbuf->b_ind_close_extra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007766 }
7767 else
7768 {
7769 /*
7770 * If we're looking at an "else", try to find an "if"
7771 * to match it with.
7772 * If we're looking at a "while", try to find a "do"
7773 * to match it with.
7774 */
7775 lookfor = LOOKFOR_INITIAL;
7776 if (cin_iselse(theline))
7777 lookfor = LOOKFOR_IF;
Bram Moolenaar84dbb622013-11-06 04:01:36 +01007778 else if (cin_iswhileofdo(theline, cur_curpos.lnum)) /* XXX */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007779 lookfor = LOOKFOR_DO;
7780 if (lookfor != LOOKFOR_INITIAL)
7781 {
7782 curwin->w_cursor.lnum = cur_curpos.lnum;
Bram Moolenaar84dbb622013-11-06 04:01:36 +01007783 if (find_match(lookfor, ourscope) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007784 {
7785 amount = get_indent(); /* XXX */
7786 goto theend;
7787 }
7788 }
7789
7790 /*
7791 * We get here if we are not on an "while-of-do" or "else" (or
7792 * failed to find a matching "if").
7793 * Search backwards for something to line up with.
7794 * First set amount for when we don't find anything.
7795 */
7796
7797 /*
7798 * if the '{' is _really_ at the left margin, use the imaginary
7799 * location of a left-margin brace. Otherwise, correct the
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007800 * location for b_ind_open_extra.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007801 */
7802
7803 if (start_brace == BRACE_IN_COL0) /* '{' is in column 0 */
7804 {
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007805 amount = curbuf->b_ind_open_left_imag;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007806 lookfor_cpp_namespace = TRUE;
7807 }
7808 else if (start_brace == BRACE_AT_START &&
7809 lookfor_cpp_namespace) /* '{' is at start */
7810 {
7811
7812 lookfor_cpp_namespace = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007813 }
7814 else
7815 {
7816 if (start_brace == BRACE_AT_END) /* '{' is at end of line */
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007817 {
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007818 amount += curbuf->b_ind_open_imag;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007819
7820 l = skipwhite(ml_get_curline());
7821 if (cin_is_cpp_namespace(l))
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007822 amount += curbuf->b_ind_cpp_namespace;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007823 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007824 else
7825 {
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007826 /* Compensate for adding b_ind_open_extra later. */
7827 amount -= curbuf->b_ind_open_extra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007828 if (amount < 0)
7829 amount = 0;
7830 }
7831 }
7832
7833 lookfor_break = FALSE;
7834
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007835 if (cin_iscase(theline, FALSE)) /* it's a switch() label */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007836 {
7837 lookfor = LOOKFOR_CASE; /* find a previous switch() label */
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007838 amount += curbuf->b_ind_case;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007839 }
7840 else if (cin_isscopedecl(theline)) /* private:, ... */
7841 {
7842 lookfor = LOOKFOR_SCOPEDECL; /* class decl is this block */
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007843 amount += curbuf->b_ind_scopedecl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007844 }
7845 else
7846 {
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007847 if (curbuf->b_ind_case_break && cin_isbreak(theline))
7848 /* break; ... */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007849 lookfor_break = TRUE;
7850
7851 lookfor = LOOKFOR_INITIAL;
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007852 /* b_ind_level from start of block */
7853 amount += curbuf->b_ind_level;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007854 }
7855 scope_amount = amount;
7856 whilelevel = 0;
7857
7858 /*
7859 * Search backwards. If we find something we recognize, line up
7860 * with that.
7861 *
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02007862 * If we're looking at an open brace, indent
Bram Moolenaar071d4272004-06-13 20:20:40 +00007863 * the usual amount relative to the conditional
7864 * that opens the block.
7865 */
7866 curwin->w_cursor = cur_curpos;
7867 for (;;)
7868 {
7869 curwin->w_cursor.lnum--;
7870 curwin->w_cursor.col = 0;
7871
7872 /*
7873 * If we went all the way back to the start of our scope, line
7874 * up with it.
7875 */
7876 if (curwin->w_cursor.lnum <= ourscope)
7877 {
7878 /* we reached end of scope:
7879 * if looking for a enum or structure initialization
7880 * go further back:
7881 * if it is an initializer (enum xxx or xxx =), then
7882 * don't add ind_continuation, otherwise it is a variable
7883 * declaration:
7884 * int x,
7885 * here; <-- add ind_continuation
7886 */
7887 if (lookfor == LOOKFOR_ENUM_OR_INIT)
7888 {
7889 if (curwin->w_cursor.lnum == 0
7890 || curwin->w_cursor.lnum
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007891 < ourscope - curbuf->b_ind_maxparen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007892 {
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007893 /* nothing found (abuse curbuf->b_ind_maxparen as
7894 * limit) assume terminated line (i.e. a variable
Bram Moolenaar071d4272004-06-13 20:20:40 +00007895 * initialization) */
7896 if (cont_amount > 0)
7897 amount = cont_amount;
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007898 else if (!curbuf->b_ind_js)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007899 amount += ind_continuation;
7900 break;
7901 }
7902
7903 l = ml_get_curline();
7904
7905 /*
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007906 * If we're in a comment or raw string now, skip to
7907 * the start of it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007908 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007909 trypos = ind_find_start_CORS();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007910 if (trypos != NULL)
7911 {
7912 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007913 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007914 continue;
7915 }
7916
7917 /*
7918 * Skip preprocessor directives and blank lines.
7919 */
7920 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
7921 continue;
7922
7923 if (cin_nocode(l))
7924 continue;
7925
7926 terminated = cin_isterminated(l, FALSE, TRUE);
7927
7928 /*
7929 * If we are at top level and the line looks like a
7930 * function declaration, we are done
7931 * (it's a variable declaration).
7932 */
7933 if (start_brace != BRACE_IN_COL0
Bram Moolenaar84dbb622013-11-06 04:01:36 +01007934 || !cin_isfuncdecl(&l, curwin->w_cursor.lnum, 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007935 {
7936 /* if the line is terminated with another ','
7937 * it is a continued variable initialization.
7938 * don't add extra indent.
7939 * TODO: does not work, if a function
7940 * declaration is split over multiple lines:
7941 * cin_isfuncdecl returns FALSE then.
7942 */
7943 if (terminated == ',')
7944 break;
7945
7946 /* if it es a enum declaration or an assignment,
7947 * we are done.
7948 */
7949 if (terminated != ';' && cin_isinit())
7950 break;
7951
7952 /* nothing useful found */
7953 if (terminated == 0 || terminated == '{')
7954 continue;
7955 }
7956
7957 if (terminated != ';')
7958 {
7959 /* Skip parens and braces. Position the cursor
7960 * over the rightmost paren, so that matching it
7961 * will take us back to the start of the line.
7962 */ /* XXX */
7963 trypos = NULL;
7964 if (find_last_paren(l, '(', ')'))
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01007965 trypos = find_match_paren(
Bram Moolenaar84dbb622013-11-06 04:01:36 +01007966 curbuf->b_ind_maxparen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007967
7968 if (trypos == NULL && find_last_paren(l, '{', '}'))
Bram Moolenaar84dbb622013-11-06 04:01:36 +01007969 trypos = find_start_brace();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007970
7971 if (trypos != NULL)
7972 {
7973 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007974 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007975 continue;
7976 }
7977 }
7978
7979 /* it's a variable declaration, add indentation
7980 * like in
7981 * int a,
7982 * b;
7983 */
7984 if (cont_amount > 0)
7985 amount = cont_amount;
7986 else
7987 amount += ind_continuation;
7988 }
7989 else if (lookfor == LOOKFOR_UNTERM)
7990 {
7991 if (cont_amount > 0)
7992 amount = cont_amount;
7993 else
7994 amount += ind_continuation;
7995 }
Bram Moolenaare79d1532011-10-04 18:03:47 +02007996 else
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007997 {
Bram Moolenaare79d1532011-10-04 18:03:47 +02007998 if (lookfor != LOOKFOR_TERM
Bram Moolenaardcefba92015-03-20 19:06:06 +01007999 && lookfor != LOOKFOR_CPP_BASECLASS
8000 && lookfor != LOOKFOR_COMMA)
Bram Moolenaare79d1532011-10-04 18:03:47 +02008001 {
8002 amount = scope_amount;
8003 if (theline[0] == '{')
8004 {
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008005 amount += curbuf->b_ind_open_extra;
8006 added_to_amount = curbuf->b_ind_open_extra;
Bram Moolenaare79d1532011-10-04 18:03:47 +02008007 }
8008 }
8009
8010 if (lookfor_cpp_namespace)
8011 {
8012 /*
8013 * Looking for C++ namespace, need to look further
8014 * back.
8015 */
8016 if (curwin->w_cursor.lnum == ourscope)
8017 continue;
8018
8019 if (curwin->w_cursor.lnum == 0
8020 || curwin->w_cursor.lnum
8021 < ourscope - FIND_NAMESPACE_LIM)
8022 break;
8023
8024 l = ml_get_curline();
8025
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02008026 /* If we're in a comment or raw string now, skip
8027 * to the start of it. */
8028 trypos = ind_find_start_CORS();
Bram Moolenaare79d1532011-10-04 18:03:47 +02008029 if (trypos != NULL)
8030 {
8031 curwin->w_cursor.lnum = trypos->lnum + 1;
8032 curwin->w_cursor.col = 0;
8033 continue;
8034 }
8035
8036 /* Skip preprocessor directives and blank lines. */
8037 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
8038 continue;
8039
8040 /* Finally the actual check for "namespace". */
8041 if (cin_is_cpp_namespace(l))
8042 {
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008043 amount += curbuf->b_ind_cpp_namespace
8044 - added_to_amount;
Bram Moolenaare79d1532011-10-04 18:03:47 +02008045 break;
8046 }
8047
8048 if (cin_nocode(l))
8049 continue;
8050 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008051 }
8052 break;
8053 }
8054
8055 /*
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02008056 * If we're in a comment or raw string now, skip to the start
8057 * of it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008058 */ /* XXX */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02008059 if ((trypos = ind_find_start_CORS()) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008060 {
8061 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008062 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008063 continue;
8064 }
8065
8066 l = ml_get_curline();
8067
8068 /*
8069 * If this is a switch() label, may line up relative to that.
Bram Moolenaar18144c82006-04-12 21:52:12 +00008070 * If this is a C++ scope declaration, do the same.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008071 */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02008072 iscase = cin_iscase(l, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008073 if (iscase || cin_isscopedecl(l))
8074 {
8075 /* we are only looking for cpp base class
8076 * declaration/initialization any longer */
8077 if (lookfor == LOOKFOR_CPP_BASECLASS)
8078 break;
8079
8080 /* When looking for a "do" we are not interested in
8081 * labels. */
8082 if (whilelevel > 0)
8083 continue;
8084
8085 /*
8086 * case xx:
8087 * c = 99 + <- this indent plus continuation
8088 *-> here;
8089 */
8090 if (lookfor == LOOKFOR_UNTERM
8091 || lookfor == LOOKFOR_ENUM_OR_INIT)
8092 {
8093 if (cont_amount > 0)
8094 amount = cont_amount;
8095 else
8096 amount += ind_continuation;
8097 break;
8098 }
8099
8100 /*
8101 * case xx: <- line up with this case
8102 * x = 333;
8103 * case yy:
8104 */
8105 if ( (iscase && lookfor == LOOKFOR_CASE)
8106 || (iscase && lookfor_break)
8107 || (!iscase && lookfor == LOOKFOR_SCOPEDECL))
8108 {
8109 /*
8110 * Check that this case label is not for another
8111 * switch()
8112 */ /* XXX */
Bram Moolenaar84dbb622013-11-06 04:01:36 +01008113 if ((trypos = find_start_brace()) == NULL
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008114 || trypos->lnum == ourscope)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008115 {
8116 amount = get_indent(); /* XXX */
8117 break;
8118 }
8119 continue;
8120 }
8121
8122 n = get_indent_nolabel(curwin->w_cursor.lnum); /* XXX */
8123
8124 /*
8125 * case xx: if (cond) <- line up with this if
8126 * y = y + 1;
8127 * -> s = 99;
8128 *
8129 * case xx:
8130 * if (cond) <- line up with this line
8131 * y = y + 1;
8132 * -> s = 99;
8133 */
8134 if (lookfor == LOOKFOR_TERM)
8135 {
8136 if (n)
8137 amount = n;
8138
8139 if (!lookfor_break)
8140 break;
8141 }
8142
8143 /*
8144 * case xx: x = x + 1; <- line up with this x
8145 * -> y = y + 1;
8146 *
8147 * case xx: if (cond) <- line up with this if
8148 * -> y = y + 1;
8149 */
8150 if (n)
8151 {
8152 amount = n;
8153 l = after_label(ml_get_curline());
8154 if (l != NULL && cin_is_cinword(l))
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00008155 {
8156 if (theline[0] == '{')
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008157 amount += curbuf->b_ind_open_extra;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00008158 else
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008159 amount += curbuf->b_ind_level
8160 + curbuf->b_ind_no_brace;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00008161 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008162 break;
8163 }
8164
8165 /*
8166 * Try to get the indent of a statement before the switch
8167 * label. If nothing is found, line up relative to the
8168 * switch label.
8169 * break; <- may line up with this line
8170 * case xx:
8171 * -> y = 1;
8172 */
8173 scope_amount = get_indent() + (iscase /* XXX */
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008174 ? curbuf->b_ind_case_code
8175 : curbuf->b_ind_scopedecl_code);
8176 lookfor = curbuf->b_ind_case_break
8177 ? LOOKFOR_NOBREAK : LOOKFOR_ANY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008178 continue;
8179 }
8180
8181 /*
8182 * Looking for a switch() label or C++ scope declaration,
8183 * ignore other lines, skip {}-blocks.
8184 */
8185 if (lookfor == LOOKFOR_CASE || lookfor == LOOKFOR_SCOPEDECL)
8186 {
Bram Moolenaar84dbb622013-11-06 04:01:36 +01008187 if (find_last_paren(l, '{', '}')
8188 && (trypos = find_start_brace()) != NULL)
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008189 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008190 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008191 curwin->w_cursor.col = 0;
8192 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008193 continue;
8194 }
8195
8196 /*
8197 * Ignore jump labels with nothing after them.
8198 */
Bram Moolenaar84dbb622013-11-06 04:01:36 +01008199 if (!curbuf->b_ind_js && cin_islabel())
Bram Moolenaar071d4272004-06-13 20:20:40 +00008200 {
8201 l = after_label(ml_get_curline());
8202 if (l == NULL || cin_nocode(l))
8203 continue;
8204 }
8205
8206 /*
8207 * Ignore #defines, #if, etc.
8208 * Ignore comment and empty lines.
8209 * (need to get the line again, cin_islabel() may have
8210 * unlocked it)
8211 */
8212 l = ml_get_curline();
8213 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum)
8214 || cin_nocode(l))
8215 continue;
8216
8217 /*
8218 * Are we at the start of a cpp base class declaration or
8219 * constructor initialization?
8220 */ /* XXX */
Bram Moolenaar18144c82006-04-12 21:52:12 +00008221 n = FALSE;
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008222 if (lookfor != LOOKFOR_TERM && curbuf->b_ind_cpp_baseclass > 0)
Bram Moolenaar18144c82006-04-12 21:52:12 +00008223 {
Bram Moolenaar4032cfd2015-05-04 17:50:33 +02008224 n = cin_is_cpp_baseclass(&cache_cpp_baseclass);
Bram Moolenaar18144c82006-04-12 21:52:12 +00008225 l = ml_get_curline();
8226 }
8227 if (n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008228 {
8229 if (lookfor == LOOKFOR_UNTERM)
8230 {
8231 if (cont_amount > 0)
8232 amount = cont_amount;
8233 else
8234 amount += ind_continuation;
8235 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00008236 else if (theline[0] == '{')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008237 {
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00008238 /* Need to find start of the declaration. */
8239 lookfor = LOOKFOR_UNTERM;
8240 ind_continuation = 0;
8241 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008242 }
8243 else
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00008244 /* XXX */
Bram Moolenaar4032cfd2015-05-04 17:50:33 +02008245 amount = get_baseclass_amount(
8246 cache_cpp_baseclass.lpos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008247 break;
8248 }
8249 else if (lookfor == LOOKFOR_CPP_BASECLASS)
8250 {
8251 /* only look, whether there is a cpp base class
Bram Moolenaar18144c82006-04-12 21:52:12 +00008252 * declaration or initialization before the opening brace.
8253 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008254 if (cin_isterminated(l, TRUE, FALSE))
8255 break;
8256 else
8257 continue;
8258 }
8259
8260 /*
8261 * What happens next depends on the line being terminated.
8262 * If terminated with a ',' only consider it terminating if
Bram Moolenaar25394022007-05-10 19:06:20 +00008263 * there is another unterminated statement behind, eg:
Bram Moolenaar071d4272004-06-13 20:20:40 +00008264 * 123,
8265 * sizeof
8266 * here
8267 * Otherwise check whether it is a enumeration or structure
8268 * initialisation (not indented) or a variable declaration
8269 * (indented).
8270 */
8271 terminated = cin_isterminated(l, FALSE, TRUE);
8272
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02008273 if (js_cur_has_key)
8274 {
8275 js_cur_has_key = 0; /* only check the first line */
8276 if (curbuf->b_ind_js && terminated == ',')
8277 {
8278 /* For Javascript we might be inside an object:
8279 * key: something, <- align with this
8280 * key: something
8281 * or:
8282 * key: something + <- align with this
8283 * something,
8284 * key: something
8285 */
8286 lookfor = LOOKFOR_JS_KEY;
8287 }
8288 }
8289 if (lookfor == LOOKFOR_JS_KEY && cin_has_js_key(l))
8290 {
8291 amount = get_indent();
8292 break;
8293 }
Bram Moolenaardcefba92015-03-20 19:06:06 +01008294 if (lookfor == LOOKFOR_COMMA)
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02008295 {
Bram Moolenaardcefba92015-03-20 19:06:06 +01008296 if (tryposBrace != NULL && tryposBrace->lnum
8297 >= curwin->w_cursor.lnum)
8298 break;
8299 if (terminated == ',')
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02008300 /* line below current line is the one that starts a
8301 * (possibly broken) line ending in a comma. */
8302 break;
Bram Moolenaardcefba92015-03-20 19:06:06 +01008303 else
8304 {
8305 amount = get_indent();
8306 if (curwin->w_cursor.lnum - 1 == ourscope)
8307 /* line above is start of the scope, thus current
8308 * line is the one that stars a (possibly broken)
8309 * line ending in a comma. */
8310 break;
8311 }
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02008312 }
8313
Bram Moolenaar071d4272004-06-13 20:20:40 +00008314 if (terminated == 0 || (lookfor != LOOKFOR_UNTERM
8315 && terminated == ','))
8316 {
Bram Moolenaardcefba92015-03-20 19:06:06 +01008317 if (*skipwhite(l) == '[' || l[STRLEN(l) - 1] == '[')
8318 amount += ind_continuation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008319 /*
8320 * if we're in the middle of a paren thing,
8321 * go back to the line that starts it so
8322 * we can get the right prevailing indent
8323 * if ( foo &&
8324 * bar )
8325 */
8326 /*
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02008327 * Position the cursor over the rightmost paren, so that
Bram Moolenaar071d4272004-06-13 20:20:40 +00008328 * matching it will take us back to the start of the line.
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02008329 * Ignore a match before the start of the block.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008330 */
8331 (void)find_last_paren(l, '(', ')');
Bram Moolenaar84dbb622013-11-06 04:01:36 +01008332 trypos = find_match_paren(corr_ind_maxparen(&cur_curpos));
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02008333 if (trypos != NULL && (trypos->lnum < tryposBrace->lnum
8334 || (trypos->lnum == tryposBrace->lnum
8335 && trypos->col < tryposBrace->col)))
8336 trypos = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008337
8338 /*
8339 * If we are looking for ',', we also look for matching
8340 * braces.
8341 */
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00008342 if (trypos == NULL && terminated == ','
8343 && find_last_paren(l, '{', '}'))
Bram Moolenaar84dbb622013-11-06 04:01:36 +01008344 trypos = find_start_brace();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008345
8346 if (trypos != NULL)
8347 {
8348 /*
8349 * Check if we are on a case label now. This is
8350 * handled above.
8351 * case xx: if ( asdf &&
8352 * asdf)
8353 */
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008354 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008355 l = ml_get_curline();
Bram Moolenaar3acfc302010-07-11 17:23:02 +02008356 if (cin_iscase(l, FALSE) || cin_isscopedecl(l))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008357 {
8358 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008359 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008360 continue;
8361 }
8362 }
8363
8364 /*
8365 * Skip over continuation lines to find the one to get the
8366 * indent from
8367 * char *usethis = "bla\
8368 * bla",
8369 * here;
8370 */
8371 if (terminated == ',')
8372 {
8373 while (curwin->w_cursor.lnum > 1)
8374 {
8375 l = ml_get(curwin->w_cursor.lnum - 1);
8376 if (*l == NUL || l[STRLEN(l) - 1] != '\\')
8377 break;
8378 --curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008379 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008380 }
8381 }
8382
8383 /*
8384 * Get indent and pointer to text for current line,
8385 * ignoring any jump label. XXX
8386 */
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02008387 if (curbuf->b_ind_js)
Bram Moolenaar3acfc302010-07-11 17:23:02 +02008388 cur_amount = get_indent();
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02008389 else
8390 cur_amount = skip_label(curwin->w_cursor.lnum, &l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008391 /*
8392 * If this is just above the line we are indenting, and it
8393 * starts with a '{', line it up with this line.
8394 * while (not)
8395 * -> {
8396 * }
8397 */
8398 if (terminated != ',' && lookfor != LOOKFOR_TERM
8399 && theline[0] == '{')
8400 {
8401 amount = cur_amount;
8402 /*
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008403 * Only add b_ind_open_extra when the current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00008404 * doesn't start with a '{', which must have a match
8405 * in the same line (scope is the same). Probably:
8406 * { 1, 2 },
8407 * -> { 3, 4 }
8408 */
8409 if (*skipwhite(l) != '{')
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008410 amount += curbuf->b_ind_open_extra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008411
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02008412 if (curbuf->b_ind_cpp_baseclass && !curbuf->b_ind_js)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008413 {
8414 /* have to look back, whether it is a cpp base
8415 * class declaration or initialization */
8416 lookfor = LOOKFOR_CPP_BASECLASS;
8417 continue;
8418 }
8419 break;
8420 }
8421
8422 /*
8423 * Check if we are after an "if", "while", etc.
8424 * Also allow " } else".
8425 */
8426 if (cin_is_cinword(l) || cin_iselse(skipwhite(l)))
8427 {
8428 /*
8429 * Found an unterminated line after an if (), line up
8430 * with the last one.
8431 * if (cond)
8432 * 100 +
8433 * -> here;
8434 */
8435 if (lookfor == LOOKFOR_UNTERM
8436 || lookfor == LOOKFOR_ENUM_OR_INIT)
8437 {
8438 if (cont_amount > 0)
8439 amount = cont_amount;
8440 else
8441 amount += ind_continuation;
8442 break;
8443 }
8444
8445 /*
8446 * If this is just above the line we are indenting, we
8447 * are finished.
8448 * while (not)
8449 * -> here;
8450 * Otherwise this indent can be used when the line
8451 * before this is terminated.
8452 * yyy;
8453 * if (stat)
8454 * while (not)
8455 * xxx;
8456 * -> here;
8457 */
8458 amount = cur_amount;
8459 if (theline[0] == '{')
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008460 amount += curbuf->b_ind_open_extra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008461 if (lookfor != LOOKFOR_TERM)
8462 {
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008463 amount += curbuf->b_ind_level
8464 + curbuf->b_ind_no_brace;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008465 break;
8466 }
8467
8468 /*
8469 * Special trick: when expecting the while () after a
8470 * do, line up with the while()
8471 * do
8472 * x = 1;
8473 * -> here
8474 */
8475 l = skipwhite(ml_get_curline());
8476 if (cin_isdo(l))
8477 {
8478 if (whilelevel == 0)
8479 break;
8480 --whilelevel;
8481 }
8482
8483 /*
8484 * When searching for a terminated line, don't use the
Bram Moolenaar334adf02011-05-25 13:34:04 +02008485 * one between the "if" and the matching "else".
Bram Moolenaar071d4272004-06-13 20:20:40 +00008486 * Need to use the scope of this "else". XXX
8487 * If whilelevel != 0 continue looking for a "do {".
8488 */
Bram Moolenaar334adf02011-05-25 13:34:04 +02008489 if (cin_iselse(l) && whilelevel == 0)
8490 {
8491 /* If we're looking at "} else", let's make sure we
8492 * find the opening brace of the enclosing scope,
8493 * not the one from "if () {". */
8494 if (*l == '}')
8495 curwin->w_cursor.col =
Bram Moolenaar9b83c2f2011-05-25 17:29:44 +02008496 (colnr_T)(l - ml_get_curline()) + 1;
Bram Moolenaar334adf02011-05-25 13:34:04 +02008497
Bram Moolenaar84dbb622013-11-06 04:01:36 +01008498 if ((trypos = find_start_brace()) == NULL
8499 || find_match(LOOKFOR_IF, trypos->lnum)
8500 == FAIL)
Bram Moolenaar334adf02011-05-25 13:34:04 +02008501 break;
8502 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008503 }
8504
8505 /*
8506 * If we're below an unterminated line that is not an
8507 * "if" or something, we may line up with this line or
Bram Moolenaar25394022007-05-10 19:06:20 +00008508 * add something for a continuation line, depending on
Bram Moolenaar071d4272004-06-13 20:20:40 +00008509 * the line before this one.
8510 */
8511 else
8512 {
8513 /*
8514 * Found two unterminated lines on a row, line up with
8515 * the last one.
8516 * c = 99 +
8517 * 100 +
8518 * -> here;
8519 */
8520 if (lookfor == LOOKFOR_UNTERM)
8521 {
8522 /* When line ends in a comma add extra indent */
8523 if (terminated == ',')
8524 amount += ind_continuation;
8525 break;
8526 }
8527
8528 if (lookfor == LOOKFOR_ENUM_OR_INIT)
8529 {
8530 /* Found two lines ending in ',', lineup with the
8531 * lowest one, but check for cpp base class
8532 * declaration/initialization, if it is an
8533 * opening brace or we are looking just for
8534 * enumerations/initializations. */
8535 if (terminated == ',')
8536 {
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008537 if (curbuf->b_ind_cpp_baseclass == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008538 break;
8539
8540 lookfor = LOOKFOR_CPP_BASECLASS;
8541 continue;
8542 }
8543
8544 /* Ignore unterminated lines in between, but
8545 * reduce indent. */
8546 if (amount > cur_amount)
8547 amount = cur_amount;
8548 }
8549 else
8550 {
8551 /*
8552 * Found first unterminated line on a row, may
8553 * line up with this line, remember its indent
8554 * 100 +
8555 * -> here;
8556 */
Bram Moolenaardcefba92015-03-20 19:06:06 +01008557 l = ml_get_curline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008558 amount = cur_amount;
Bram Moolenaardcefba92015-03-20 19:06:06 +01008559 if (*skipwhite(l) == ']' || l[STRLEN(l) - 1] == ']')
8560 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008561
8562 /*
8563 * If previous line ends in ',', check whether we
8564 * are in an initialization or enum
8565 * struct xxx =
8566 * {
8567 * sizeof a,
8568 * 124 };
8569 * or a normal possible continuation line.
8570 * but only, of no other statement has been found
8571 * yet.
8572 */
8573 if (lookfor == LOOKFOR_INITIAL && terminated == ',')
8574 {
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02008575 if (curbuf->b_ind_js)
8576 {
8577 /* Search for a line ending in a comma
8578 * and line up with the line below it
8579 * (could be the current line).
8580 * some = [
8581 * 1, <- line up here
8582 * 2,
8583 * some = [
8584 * 3 + <- line up here
8585 * 4 *
8586 * 5,
8587 * 6,
8588 */
Bram Moolenaardcefba92015-03-20 19:06:06 +01008589 if (cin_iscomment(skipwhite(l)))
8590 break;
8591 lookfor = LOOKFOR_COMMA;
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02008592 trypos = find_match_char('[',
8593 curbuf->b_ind_maxparen);
8594 if (trypos != NULL)
8595 {
8596 if (trypos->lnum
8597 == curwin->w_cursor.lnum - 1)
8598 {
8599 /* Current line is first inside
8600 * [], line up with it. */
8601 break;
8602 }
8603 ourscope = trypos->lnum;
8604 }
8605 }
8606 else
8607 {
8608 lookfor = LOOKFOR_ENUM_OR_INIT;
8609 cont_amount = cin_first_id_amount();
8610 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008611 }
8612 else
8613 {
8614 if (lookfor == LOOKFOR_INITIAL
8615 && *l != NUL
8616 && l[STRLEN(l) - 1] == '\\')
8617 /* XXX */
8618 cont_amount = cin_get_equal_amount(
8619 curwin->w_cursor.lnum);
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02008620 if (lookfor != LOOKFOR_TERM
Bram Moolenaardcefba92015-03-20 19:06:06 +01008621 && lookfor != LOOKFOR_JS_KEY
8622 && lookfor != LOOKFOR_COMMA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008623 lookfor = LOOKFOR_UNTERM;
8624 }
8625 }
8626 }
8627 }
8628
8629 /*
8630 * Check if we are after a while (cond);
8631 * If so: Ignore until the matching "do".
8632 */
Bram Moolenaar9f4fe7c2014-07-03 22:57:55 +02008633 else if (cin_iswhileofdo_end(terminated)) /* XXX */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008634 {
8635 /*
8636 * Found an unterminated line after a while ();, line up
8637 * with the last one.
8638 * while (cond);
8639 * 100 + <- line up with this one
8640 * -> here;
8641 */
8642 if (lookfor == LOOKFOR_UNTERM
8643 || lookfor == LOOKFOR_ENUM_OR_INIT)
8644 {
8645 if (cont_amount > 0)
8646 amount = cont_amount;
8647 else
8648 amount += ind_continuation;
8649 break;
8650 }
8651
8652 if (whilelevel == 0)
8653 {
8654 lookfor = LOOKFOR_TERM;
8655 amount = get_indent(); /* XXX */
8656 if (theline[0] == '{')
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008657 amount += curbuf->b_ind_open_extra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008658 }
8659 ++whilelevel;
8660 }
8661
8662 /*
8663 * We are after a "normal" statement.
8664 * If we had another statement we can stop now and use the
8665 * indent of that other statement.
8666 * Otherwise the indent of the current statement may be used,
8667 * search backwards for the next "normal" statement.
8668 */
8669 else
8670 {
8671 /*
8672 * Skip single break line, if before a switch label. It
8673 * may be lined up with the case label.
8674 */
8675 if (lookfor == LOOKFOR_NOBREAK
8676 && cin_isbreak(skipwhite(ml_get_curline())))
8677 {
8678 lookfor = LOOKFOR_ANY;
8679 continue;
8680 }
8681
8682 /*
8683 * Handle "do {" line.
8684 */
8685 if (whilelevel > 0)
8686 {
8687 l = cin_skipcomment(ml_get_curline());
8688 if (cin_isdo(l))
8689 {
8690 amount = get_indent(); /* XXX */
8691 --whilelevel;
8692 continue;
8693 }
8694 }
8695
8696 /*
8697 * Found a terminated line above an unterminated line. Add
8698 * the amount for a continuation line.
8699 * x = 1;
8700 * y = foo +
8701 * -> here;
8702 * or
8703 * int x = 1;
8704 * int foo,
8705 * -> here;
8706 */
8707 if (lookfor == LOOKFOR_UNTERM
8708 || lookfor == LOOKFOR_ENUM_OR_INIT)
8709 {
8710 if (cont_amount > 0)
8711 amount = cont_amount;
8712 else
8713 amount += ind_continuation;
8714 break;
8715 }
8716
8717 /*
8718 * Found a terminated line above a terminated line or "if"
8719 * etc. line. Use the amount of the line below us.
8720 * x = 1; x = 1;
8721 * if (asdf) y = 2;
8722 * while (asdf) ->here;
8723 * here;
8724 * ->foo;
8725 */
8726 if (lookfor == LOOKFOR_TERM)
8727 {
8728 if (!lookfor_break && whilelevel == 0)
8729 break;
8730 }
8731
8732 /*
8733 * First line above the one we're indenting is terminated.
8734 * To know what needs to be done look further backward for
8735 * a terminated line.
8736 */
8737 else
8738 {
8739 /*
8740 * position the cursor over the rightmost paren, so
8741 * that matching it will take us back to the start of
8742 * the line. Helps for:
8743 * func(asdr,
8744 * asdfasdf);
8745 * here;
8746 */
8747term_again:
8748 l = ml_get_curline();
8749 if (find_last_paren(l, '(', ')')
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008750 && (trypos = find_match_paren(
Bram Moolenaar84dbb622013-11-06 04:01:36 +01008751 curbuf->b_ind_maxparen)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008752 {
8753 /*
8754 * Check if we are on a case label now. This is
8755 * handled above.
8756 * case xx: if ( asdf &&
8757 * asdf)
8758 */
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008759 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008760 l = ml_get_curline();
Bram Moolenaar3acfc302010-07-11 17:23:02 +02008761 if (cin_iscase(l, FALSE) || cin_isscopedecl(l))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008762 {
8763 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008764 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008765 continue;
8766 }
8767 }
8768
8769 /* When aligning with the case statement, don't align
8770 * with a statement after it.
8771 * case 1: { <-- don't use this { position
8772 * stat;
8773 * }
8774 * case 2:
8775 * stat;
8776 * }
8777 */
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008778 iscase = (curbuf->b_ind_keep_case_label
8779 && cin_iscase(l, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008780
8781 /*
8782 * Get indent and pointer to text for current line,
8783 * ignoring any jump label.
8784 */
Bram Moolenaar84dbb622013-11-06 04:01:36 +01008785 amount = skip_label(curwin->w_cursor.lnum, &l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008786
8787 if (theline[0] == '{')
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008788 amount += curbuf->b_ind_open_extra;
8789 /* See remark above: "Only add b_ind_open_extra.." */
Bram Moolenaar18144c82006-04-12 21:52:12 +00008790 l = skipwhite(l);
8791 if (*l == '{')
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008792 amount -= curbuf->b_ind_open_extra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008793 lookfor = iscase ? LOOKFOR_ANY : LOOKFOR_TERM;
8794
8795 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00008796 * When a terminated line starts with "else" skip to
8797 * the matching "if":
8798 * else 3;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008799 * indent this;
Bram Moolenaar18144c82006-04-12 21:52:12 +00008800 * Need to use the scope of this "else". XXX
8801 * If whilelevel != 0 continue looking for a "do {".
8802 */
8803 if (lookfor == LOOKFOR_TERM
8804 && *l != '}'
8805 && cin_iselse(l)
8806 && whilelevel == 0)
8807 {
Bram Moolenaar84dbb622013-11-06 04:01:36 +01008808 if ((trypos = find_start_brace()) == NULL
8809 || find_match(LOOKFOR_IF, trypos->lnum)
8810 == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +00008811 break;
8812 continue;
8813 }
8814
8815 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008816 * If we're at the end of a block, skip to the start of
8817 * that block.
8818 */
Bram Moolenaar6d8f9c62011-11-30 13:03:28 +01008819 l = ml_get_curline();
Bram Moolenaar84dbb622013-11-06 04:01:36 +01008820 if (find_last_paren(l, '{', '}') /* XXX */
8821 && (trypos = find_start_brace()) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008822 {
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008823 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008824 /* if not "else {" check for terminated again */
8825 /* but skip block for "} else {" */
8826 l = cin_skipcomment(ml_get_curline());
8827 if (*l == '}' || !cin_iselse(l))
8828 goto term_again;
8829 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008830 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008831 }
8832 }
8833 }
8834 }
8835 }
8836 }
8837
8838 /* add extra indent for a comment */
8839 if (cin_iscomment(theline))
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008840 amount += curbuf->b_ind_comment;
Bram Moolenaar02c707a2010-07-17 17:12:06 +02008841
8842 /* subtract extra left-shift for jump labels */
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008843 if (curbuf->b_ind_jump_label > 0 && original_line_islabel)
8844 amount -= curbuf->b_ind_jump_label;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02008845
8846 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008847 }
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02008848
8849 /*
8850 * ok -- we're not inside any sort of structure at all!
8851 *
8852 * This means we're at the top level, and everything should
8853 * basically just match where the previous line is, except
8854 * for the lines immediately following a function declaration,
8855 * which are K&R-style parameters and need to be indented.
8856 *
8857 * if our line starts with an open brace, forget about any
8858 * prevailing indent and make sure it looks like the start
8859 * of a function
8860 */
8861
8862 if (theline[0] == '{')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008863 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02008864 amount = curbuf->b_ind_first_open;
8865 goto theend;
8866 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008867
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02008868 /*
8869 * If the NEXT line is a function declaration, the current
8870 * line needs to be indented as a function type spec.
8871 * Don't do this if the current line looks like a comment or if the
8872 * current line is terminated, ie. ends in ';', or if the current line
8873 * contains { or }: "void f() {\n if (1)"
8874 */
8875 if (cur_curpos.lnum < curbuf->b_ml.ml_line_count
8876 && !cin_nocode(theline)
8877 && vim_strchr(theline, '{') == NULL
8878 && vim_strchr(theline, '}') == NULL
8879 && !cin_ends_in(theline, (char_u *)":", NULL)
8880 && !cin_ends_in(theline, (char_u *)",", NULL)
8881 && cin_isfuncdecl(NULL, cur_curpos.lnum + 1,
8882 cur_curpos.lnum + 1)
8883 && !cin_isterminated(theline, FALSE, TRUE))
8884 {
8885 amount = curbuf->b_ind_func_type;
8886 goto theend;
8887 }
8888
8889 /* search backwards until we find something we recognize */
8890 amount = 0;
8891 curwin->w_cursor = cur_curpos;
8892 while (curwin->w_cursor.lnum > 1)
8893 {
8894 curwin->w_cursor.lnum--;
8895 curwin->w_cursor.col = 0;
8896
8897 l = ml_get_curline();
8898
8899 /*
8900 * If we're in a comment or raw string now, skip to the start
8901 * of it.
8902 */ /* XXX */
8903 if ((trypos = ind_find_start_CORS()) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008904 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02008905 curwin->w_cursor.lnum = trypos->lnum + 1;
8906 curwin->w_cursor.col = 0;
8907 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008908 }
8909
8910 /*
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02008911 * Are we at the start of a cpp base class declaration or
8912 * constructor initialization?
8913 */ /* XXX */
8914 n = FALSE;
8915 if (curbuf->b_ind_cpp_baseclass != 0 && theline[0] != '{')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008916 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02008917 n = cin_is_cpp_baseclass(&cache_cpp_baseclass);
8918 l = ml_get_curline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008919 }
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02008920 if (n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008921 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02008922 /* XXX */
8923 amount = get_baseclass_amount(cache_cpp_baseclass.lpos.col);
8924 break;
8925 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008926
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02008927 /*
8928 * Skip preprocessor directives and blank lines.
8929 */
8930 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
8931 continue;
8932
8933 if (cin_nocode(l))
8934 continue;
8935
8936 /*
8937 * If the previous line ends in ',', use one level of
8938 * indentation:
8939 * int foo,
8940 * bar;
8941 * do this before checking for '}' in case of eg.
8942 * enum foobar
8943 * {
8944 * ...
8945 * } foo,
8946 * bar;
8947 */
8948 n = 0;
8949 if (cin_ends_in(l, (char_u *)",", NULL)
8950 || (*l != NUL && (n = l[STRLEN(l) - 1]) == '\\'))
8951 {
8952 /* take us back to opening paren */
8953 if (find_last_paren(l, '(', ')')
8954 && (trypos = find_match_paren(
8955 curbuf->b_ind_maxparen)) != NULL)
8956 curwin->w_cursor = *trypos;
8957
8958 /* For a line ending in ',' that is a continuation line go
8959 * back to the first line with a backslash:
8960 * char *foo = "bla\
8961 * bla",
8962 * here;
8963 */
8964 while (n == 0 && curwin->w_cursor.lnum > 1)
8965 {
8966 l = ml_get(curwin->w_cursor.lnum - 1);
8967 if (*l == NUL || l[STRLEN(l) - 1] != '\\')
8968 break;
8969 --curwin->w_cursor.lnum;
8970 curwin->w_cursor.col = 0;
8971 }
8972
8973 amount = get_indent(); /* XXX */
8974
8975 if (amount == 0)
8976 amount = cin_first_id_amount();
8977 if (amount == 0)
8978 amount = ind_continuation;
8979 break;
8980 }
8981
8982 /*
8983 * If the line looks like a function declaration, and we're
8984 * not in a comment, put it the left margin.
8985 */
8986 if (cin_isfuncdecl(NULL, cur_curpos.lnum, 0)) /* XXX */
8987 break;
8988 l = ml_get_curline();
8989
8990 /*
8991 * Finding the closing '}' of a previous function. Put
8992 * current line at the left margin. For when 'cino' has "fs".
8993 */
8994 if (*skipwhite(l) == '}')
8995 break;
8996
8997 /* (matching {)
8998 * If the previous line ends on '};' (maybe followed by
8999 * comments) align at column 0. For example:
9000 * char *string_array[] = { "foo",
9001 * / * x * / "b};ar" }; / * foobar * /
9002 */
9003 if (cin_ends_in(l, (char_u *)"};", NULL))
9004 break;
9005
9006 /*
9007 * If the previous line ends on '[' we are probably in an
9008 * array constant:
9009 * something = [
9010 * 234, <- extra indent
9011 */
9012 if (cin_ends_in(l, (char_u *)"[", NULL))
9013 {
9014 amount = get_indent() + ind_continuation;
9015 break;
9016 }
9017
9018 /*
9019 * Find a line only has a semicolon that belongs to a previous
9020 * line ending in '}', e.g. before an #endif. Don't increase
9021 * indent then.
9022 */
9023 if (*(look = skipwhite(l)) == ';' && cin_nocode(look + 1))
9024 {
9025 pos_T curpos_save = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009026
9027 while (curwin->w_cursor.lnum > 1)
9028 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02009029 look = ml_get(--curwin->w_cursor.lnum);
9030 if (!(cin_nocode(look) || cin_ispreproc_cont(
9031 &look, &curwin->w_cursor.lnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009032 break;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02009033 }
9034 if (curwin->w_cursor.lnum > 0
9035 && cin_ends_in(look, (char_u *)"}", NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009036 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009037
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02009038 curwin->w_cursor = curpos_save;
9039 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009040
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02009041 /*
9042 * If the PREVIOUS line is a function declaration, the current
9043 * line (and the ones that follow) needs to be indented as
9044 * parameters.
9045 */
9046 if (cin_isfuncdecl(&l, curwin->w_cursor.lnum, 0))
9047 {
9048 amount = curbuf->b_ind_param;
9049 break;
9050 }
9051
9052 /*
9053 * If the previous line ends in ';' and the line before the
9054 * previous line ends in ',' or '\', ident to column zero:
9055 * int foo,
9056 * bar;
9057 * indent_to_0 here;
9058 */
9059 if (cin_ends_in(l, (char_u *)";", NULL))
9060 {
9061 l = ml_get(curwin->w_cursor.lnum - 1);
9062 if (cin_ends_in(l, (char_u *)",", NULL)
9063 || (*l != NUL && l[STRLEN(l) - 1] == '\\'))
9064 break;
9065 l = ml_get_curline();
9066 }
9067
9068 /*
9069 * Doesn't look like anything interesting -- so just
9070 * use the indent of this line.
9071 *
9072 * Position the cursor over the rightmost paren, so that
9073 * matching it will take us back to the start of the line.
9074 */
9075 find_last_paren(l, '(', ')');
9076
9077 if ((trypos = find_match_paren(curbuf->b_ind_maxparen)) != NULL)
9078 curwin->w_cursor = *trypos;
9079 amount = get_indent(); /* XXX */
9080 break;
9081 }
9082
9083 /* add extra indent for a comment */
9084 if (cin_iscomment(theline))
9085 amount += curbuf->b_ind_comment;
9086
9087 /* add extra indent if the previous line ended in a backslash:
9088 * "asdfasdf\
9089 * here";
9090 * char *foo = "asdf\
9091 * here";
9092 */
9093 if (cur_curpos.lnum > 1)
9094 {
9095 l = ml_get(cur_curpos.lnum - 1);
9096 if (*l != NUL && l[STRLEN(l) - 1] == '\\')
9097 {
9098 cur_amount = cin_get_equal_amount(cur_curpos.lnum - 1);
9099 if (cur_amount > 0)
9100 amount = cur_amount;
9101 else if (cur_amount == 0)
9102 amount += ind_continuation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009103 }
9104 }
9105
9106theend:
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02009107 if (amount < 0)
9108 amount = 0;
9109
9110laterend:
Bram Moolenaar071d4272004-06-13 20:20:40 +00009111 /* put the cursor back where it belongs */
9112 curwin->w_cursor = cur_curpos;
9113
9114 vim_free(linecopy);
9115
Bram Moolenaar071d4272004-06-13 20:20:40 +00009116 return amount;
9117}
9118
9119 static int
Bram Moolenaar84dbb622013-11-06 04:01:36 +01009120find_match(lookfor, ourscope)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009121 int lookfor;
9122 linenr_T ourscope;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009123{
9124 char_u *look;
9125 pos_T *theirscope;
9126 char_u *mightbeif;
9127 int elselevel;
9128 int whilelevel;
9129
9130 if (lookfor == LOOKFOR_IF)
9131 {
9132 elselevel = 1;
9133 whilelevel = 0;
9134 }
9135 else
9136 {
9137 elselevel = 0;
9138 whilelevel = 1;
9139 }
9140
9141 curwin->w_cursor.col = 0;
9142
9143 while (curwin->w_cursor.lnum > ourscope + 1)
9144 {
9145 curwin->w_cursor.lnum--;
9146 curwin->w_cursor.col = 0;
9147
9148 look = cin_skipcomment(ml_get_curline());
9149 if (cin_iselse(look)
9150 || cin_isif(look)
9151 || cin_isdo(look) /* XXX */
Bram Moolenaar84dbb622013-11-06 04:01:36 +01009152 || cin_iswhileofdo(look, curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009153 {
9154 /*
9155 * if we've gone outside the braces entirely,
9156 * we must be out of scope...
9157 */
Bram Moolenaar84dbb622013-11-06 04:01:36 +01009158 theirscope = find_start_brace(); /* XXX */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009159 if (theirscope == NULL)
9160 break;
9161
9162 /*
9163 * and if the brace enclosing this is further
9164 * back than the one enclosing the else, we're
9165 * out of luck too.
9166 */
9167 if (theirscope->lnum < ourscope)
9168 break;
9169
9170 /*
9171 * and if they're enclosed in a *deeper* brace,
9172 * then we can ignore it because it's in a
9173 * different scope...
9174 */
9175 if (theirscope->lnum > ourscope)
9176 continue;
9177
9178 /*
9179 * if it was an "else" (that's not an "else if")
9180 * then we need to go back to another if, so
9181 * increment elselevel
9182 */
9183 look = cin_skipcomment(ml_get_curline());
9184 if (cin_iselse(look))
9185 {
9186 mightbeif = cin_skipcomment(look + 4);
9187 if (!cin_isif(mightbeif))
9188 ++elselevel;
9189 continue;
9190 }
9191
9192 /*
9193 * if it was a "while" then we need to go back to
9194 * another "do", so increment whilelevel. XXX
9195 */
Bram Moolenaar84dbb622013-11-06 04:01:36 +01009196 if (cin_iswhileofdo(look, curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009197 {
9198 ++whilelevel;
9199 continue;
9200 }
9201
9202 /* If it's an "if" decrement elselevel */
9203 look = cin_skipcomment(ml_get_curline());
9204 if (cin_isif(look))
9205 {
9206 elselevel--;
9207 /*
9208 * When looking for an "if" ignore "while"s that
9209 * get in the way.
9210 */
9211 if (elselevel == 0 && lookfor == LOOKFOR_IF)
9212 whilelevel = 0;
9213 }
9214
9215 /* If it's a "do" decrement whilelevel */
9216 if (cin_isdo(look))
9217 whilelevel--;
9218
9219 /*
9220 * if we've used up all the elses, then
9221 * this must be the if that we want!
9222 * match the indent level of that if.
9223 */
9224 if (elselevel <= 0 && whilelevel <= 0)
9225 {
9226 return OK;
9227 }
9228 }
9229 }
9230 return FAIL;
9231}
9232
9233# if defined(FEAT_EVAL) || defined(PROTO)
9234/*
9235 * Get indent level from 'indentexpr'.
9236 */
9237 int
9238get_expr_indent()
9239{
9240 int indent;
Bram Moolenaar8fe8d9e2013-02-13 16:10:17 +01009241 pos_T save_pos;
9242 colnr_T save_curswant;
9243 int save_set_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009244 int save_State;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00009245 int use_sandbox = was_set_insecurely((char_u *)"indentexpr",
9246 OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009247
Bram Moolenaar8fe8d9e2013-02-13 16:10:17 +01009248 /* Save and restore cursor position and curswant, in case it was changed
9249 * via :normal commands */
9250 save_pos = curwin->w_cursor;
9251 save_curswant = curwin->w_curswant;
9252 save_set_curswant = curwin->w_set_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009253 set_vim_var_nr(VV_LNUM, curwin->w_cursor.lnum);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00009254 if (use_sandbox)
9255 ++sandbox;
9256 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009257 indent = eval_to_number(curbuf->b_p_inde);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00009258 if (use_sandbox)
9259 --sandbox;
9260 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009261
9262 /* Restore the cursor position so that 'indentexpr' doesn't need to.
9263 * Pretend to be in Insert mode, allow cursor past end of line for "o"
9264 * command. */
9265 save_State = State;
9266 State = INSERT;
Bram Moolenaar8fe8d9e2013-02-13 16:10:17 +01009267 curwin->w_cursor = save_pos;
9268 curwin->w_curswant = save_curswant;
9269 curwin->w_set_curswant = save_set_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009270 check_cursor();
9271 State = save_State;
9272
9273 /* If there is an error, just keep the current indent. */
9274 if (indent < 0)
9275 indent = get_indent();
9276
9277 return indent;
9278}
9279# endif
9280
9281#endif /* FEAT_CINDENT */
9282
9283#if defined(FEAT_LISP) || defined(PROTO)
9284
9285static int lisp_match __ARGS((char_u *p));
9286
9287 static int
9288lisp_match(p)
9289 char_u *p;
9290{
9291 char_u buf[LSIZE];
9292 int len;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01009293 char_u *word = *curbuf->b_p_lw != NUL ? curbuf->b_p_lw : p_lispwords;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009294
9295 while (*word != NUL)
9296 {
9297 (void)copy_option_part(&word, buf, LSIZE, ",");
9298 len = (int)STRLEN(buf);
9299 if (STRNCMP(buf, p, len) == 0 && p[len] == ' ')
9300 return TRUE;
9301 }
9302 return FALSE;
9303}
9304
9305/*
9306 * When 'p' is present in 'cpoptions, a Vi compatible method is used.
9307 * The incompatible newer method is quite a bit better at indenting
9308 * code in lisp-like languages than the traditional one; it's still
9309 * mostly heuristics however -- Dirk van Deun, dirk@rave.org
9310 *
9311 * TODO:
9312 * Findmatch() should be adapted for lisp, also to make showmatch
9313 * work correctly: now (v5.3) it seems all C/C++ oriented:
9314 * - it does not recognize the #\( and #\) notations as character literals
9315 * - it doesn't know about comments starting with a semicolon
9316 * - it incorrectly interprets '(' as a character literal
9317 * All this messes up get_lisp_indent in some rare cases.
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009318 * Update from Sergey Khorev:
9319 * I tried to fix the first two issues.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009320 */
9321 int
9322get_lisp_indent()
9323{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009324 pos_T *pos, realpos, paren;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009325 int amount;
9326 char_u *that;
9327 colnr_T col;
9328 colnr_T firsttry;
9329 int parencount, quotecount;
9330 int vi_lisp;
9331
9332 /* Set vi_lisp to use the vi-compatible method */
9333 vi_lisp = (vim_strchr(p_cpo, CPO_LISP) != NULL);
9334
9335 realpos = curwin->w_cursor;
9336 curwin->w_cursor.col = 0;
9337
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009338 if ((pos = findmatch(NULL, '(')) == NULL)
9339 pos = findmatch(NULL, '[');
9340 else
9341 {
9342 paren = *pos;
9343 pos = findmatch(NULL, '[');
9344 if (pos == NULL || ltp(pos, &paren))
9345 pos = &paren;
9346 }
9347 if (pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009348 {
9349 /* Extra trick: Take the indent of the first previous non-white
9350 * line that is at the same () level. */
9351 amount = -1;
9352 parencount = 0;
9353
9354 while (--curwin->w_cursor.lnum >= pos->lnum)
9355 {
9356 if (linewhite(curwin->w_cursor.lnum))
9357 continue;
9358 for (that = ml_get_curline(); *that != NUL; ++that)
9359 {
9360 if (*that == ';')
9361 {
9362 while (*(that + 1) != NUL)
9363 ++that;
9364 continue;
9365 }
9366 if (*that == '\\')
9367 {
9368 if (*(that + 1) != NUL)
9369 ++that;
9370 continue;
9371 }
9372 if (*that == '"' && *(that + 1) != NUL)
9373 {
Bram Moolenaar15ff6c12006-09-15 18:18:09 +00009374 while (*++that && *that != '"')
9375 {
9376 /* skipping escaped characters in the string */
9377 if (*that == '\\')
9378 {
9379 if (*++that == NUL)
9380 break;
9381 if (that[1] == NUL)
9382 {
9383 ++that;
9384 break;
9385 }
9386 }
9387 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009388 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009389 if (*that == '(' || *that == '[')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009390 ++parencount;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009391 else if (*that == ')' || *that == ']')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009392 --parencount;
9393 }
9394 if (parencount == 0)
9395 {
9396 amount = get_indent();
9397 break;
9398 }
9399 }
9400
9401 if (amount == -1)
9402 {
9403 curwin->w_cursor.lnum = pos->lnum;
9404 curwin->w_cursor.col = pos->col;
9405 col = pos->col;
9406
9407 that = ml_get_curline();
9408
9409 if (vi_lisp && get_indent() == 0)
9410 amount = 2;
9411 else
9412 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02009413 char_u *line = that;
9414
Bram Moolenaar071d4272004-06-13 20:20:40 +00009415 amount = 0;
9416 while (*that && col)
9417 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02009418 amount += lbr_chartabsize_adv(line, &that, (colnr_T)amount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009419 col--;
9420 }
9421
9422 /*
9423 * Some keywords require "body" indenting rules (the
9424 * non-standard-lisp ones are Scheme special forms):
9425 *
9426 * (let ((a 1)) instead (let ((a 1))
9427 * (...)) of (...))
9428 */
9429
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009430 if (!vi_lisp && (*that == '(' || *that == '[')
9431 && lisp_match(that + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009432 amount += 2;
9433 else
9434 {
9435 that++;
9436 amount++;
9437 firsttry = amount;
9438
9439 while (vim_iswhite(*that))
9440 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02009441 amount += lbr_chartabsize(line, that, (colnr_T)amount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009442 ++that;
9443 }
9444
9445 if (*that && *that != ';') /* not a comment line */
9446 {
Bram Moolenaare21877a2008-02-13 09:58:14 +00009447 /* test *that != '(' to accommodate first let/do
Bram Moolenaar071d4272004-06-13 20:20:40 +00009448 * argument if it is more than one line */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009449 if (!vi_lisp && *that != '(' && *that != '[')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009450 firsttry++;
9451
9452 parencount = 0;
9453 quotecount = 0;
9454
9455 if (vi_lisp
9456 || (*that != '"'
9457 && *that != '\''
9458 && *that != '#'
9459 && (*that < '0' || *that > '9')))
9460 {
9461 while (*that
9462 && (!vim_iswhite(*that)
9463 || quotecount
9464 || parencount)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009465 && (!((*that == '(' || *that == '[')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009466 && !quotecount
9467 && !parencount
9468 && vi_lisp)))
9469 {
9470 if (*that == '"')
9471 quotecount = !quotecount;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009472 if ((*that == '(' || *that == '[')
9473 && !quotecount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009474 ++parencount;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009475 if ((*that == ')' || *that == ']')
9476 && !quotecount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009477 --parencount;
9478 if (*that == '\\' && *(that+1) != NUL)
Bram Moolenaar597a4222014-06-25 14:39:50 +02009479 amount += lbr_chartabsize_adv(
9480 line, &that, (colnr_T)amount);
9481 amount += lbr_chartabsize_adv(
9482 line, &that, (colnr_T)amount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009483 }
9484 }
9485 while (vim_iswhite(*that))
9486 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02009487 amount += lbr_chartabsize(
9488 line, that, (colnr_T)amount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009489 that++;
9490 }
9491 if (!*that || *that == ';')
9492 amount = firsttry;
9493 }
9494 }
9495 }
9496 }
9497 }
9498 else
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009499 amount = 0; /* no matching '(' or '[' found, use zero indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009500
9501 curwin->w_cursor = realpos;
9502
9503 return amount;
9504}
9505#endif /* FEAT_LISP */
9506
9507 void
9508prepare_to_exit()
9509{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00009510#if defined(SIGHUP) && defined(SIG_IGN)
9511 /* Ignore SIGHUP, because a dropped connection causes a read error, which
9512 * makes Vim exit and then handling SIGHUP causes various reentrance
9513 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009514 signal(SIGHUP, SIG_IGN);
9515#endif
9516
Bram Moolenaar071d4272004-06-13 20:20:40 +00009517#ifdef FEAT_GUI
9518 if (gui.in_use)
9519 {
9520 gui.dying = TRUE;
9521 out_trash(); /* trash any pending output */
9522 }
9523 else
9524#endif
9525 {
9526 windgoto((int)Rows - 1, 0);
9527
9528 /*
9529 * Switch terminal mode back now, so messages end up on the "normal"
9530 * screen (if there are two screens).
9531 */
9532 settmode(TMODE_COOK);
9533#ifdef WIN3264
9534 if (can_end_termcap_mode(FALSE) == TRUE)
9535#endif
9536 stoptermcap();
9537 out_flush();
9538 }
9539}
9540
9541/*
9542 * Preserve files and exit.
9543 * When called IObuff must contain a message.
Bram Moolenaarbec9c202013-09-05 21:41:39 +02009544 * NOTE: This may be called from deathtrap() in a signal handler, avoid unsafe
9545 * functions, such as allocating memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009546 */
9547 void
9548preserve_exit()
9549{
9550 buf_T *buf;
9551
9552 prepare_to_exit();
9553
Bram Moolenaar4770d092006-01-12 23:22:24 +00009554 /* Setting this will prevent free() calls. That avoids calling free()
9555 * recursively when free() was invoked with a bad pointer. */
9556 really_exiting = TRUE;
9557
Bram Moolenaar071d4272004-06-13 20:20:40 +00009558 out_str(IObuff);
9559 screen_start(); /* don't know where cursor is now */
9560 out_flush();
9561
9562 ml_close_notmod(); /* close all not-modified buffers */
9563
9564 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
9565 {
9566 if (buf->b_ml.ml_mfp != NULL && buf->b_ml.ml_mfp->mf_fname != NULL)
9567 {
Bram Moolenaarbec9c202013-09-05 21:41:39 +02009568 OUT_STR("Vim: preserving files...\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00009569 screen_start(); /* don't know where cursor is now */
9570 out_flush();
9571 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
9572 break;
9573 }
9574 }
9575
9576 ml_close_all(FALSE); /* close all memfiles, without deleting */
9577
Bram Moolenaarbec9c202013-09-05 21:41:39 +02009578 OUT_STR("Vim: Finished.\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00009579
9580 getout(1);
9581}
9582
9583/*
9584 * return TRUE if "fname" exists.
9585 */
9586 int
9587vim_fexists(fname)
9588 char_u *fname;
9589{
9590 struct stat st;
9591
9592 if (mch_stat((char *)fname, &st))
9593 return FALSE;
9594 return TRUE;
9595}
9596
9597/*
9598 * Check for CTRL-C pressed, but only once in a while.
9599 * Should be used instead of ui_breakcheck() for functions that check for
9600 * each line in the file. Calling ui_breakcheck() each time takes too much
9601 * time, because it can be a system call.
9602 */
9603
9604#ifndef BREAKCHECK_SKIP
9605# ifdef FEAT_GUI /* assume the GUI only runs on fast computers */
9606# define BREAKCHECK_SKIP 200
9607# else
9608# define BREAKCHECK_SKIP 32
9609# endif
9610#endif
9611
9612static int breakcheck_count = 0;
9613
9614 void
9615line_breakcheck()
9616{
9617 if (++breakcheck_count >= BREAKCHECK_SKIP)
9618 {
9619 breakcheck_count = 0;
9620 ui_breakcheck();
9621 }
9622}
9623
9624/*
9625 * Like line_breakcheck() but check 10 times less often.
9626 */
9627 void
9628fast_breakcheck()
9629{
9630 if (++breakcheck_count >= BREAKCHECK_SKIP * 10)
9631 {
9632 breakcheck_count = 0;
9633 ui_breakcheck();
9634 }
9635}
9636
9637/*
Bram Moolenaard7834d32009-12-02 16:14:36 +00009638 * Invoke expand_wildcards() for one pattern.
9639 * Expand items like "%:h" before the expansion.
9640 * Returns OK or FAIL.
9641 */
9642 int
9643expand_wildcards_eval(pat, num_file, file, flags)
9644 char_u **pat; /* pointer to input pattern */
9645 int *num_file; /* resulting number of files */
9646 char_u ***file; /* array of resulting files */
9647 int flags; /* EW_DIR, etc. */
9648{
9649 int ret = FAIL;
9650 char_u *eval_pat = NULL;
9651 char_u *exp_pat = *pat;
9652 char_u *ignored_msg;
9653 int usedlen;
9654
9655 if (*exp_pat == '%' || *exp_pat == '#' || *exp_pat == '<')
9656 {
9657 ++emsg_off;
9658 eval_pat = eval_vars(exp_pat, exp_pat, &usedlen,
9659 NULL, &ignored_msg, NULL);
9660 --emsg_off;
9661 if (eval_pat != NULL)
9662 exp_pat = concat_str(eval_pat, exp_pat + usedlen);
9663 }
9664
9665 if (exp_pat != NULL)
9666 ret = expand_wildcards(1, &exp_pat, num_file, file, flags);
9667
9668 if (eval_pat != NULL)
9669 {
9670 vim_free(exp_pat);
9671 vim_free(eval_pat);
9672 }
9673
9674 return ret;
9675}
9676
9677/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009678 * Expand wildcards. Calls gen_expand_wildcards() and removes files matching
9679 * 'wildignore'.
Bram Moolenaar9e193ac2010-07-19 23:11:27 +02009680 * Returns OK or FAIL. When FAIL then "num_file" won't be set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009681 */
9682 int
9683expand_wildcards(num_pat, pat, num_file, file, flags)
9684 int num_pat; /* number of input patterns */
9685 char_u **pat; /* array of input patterns */
9686 int *num_file; /* resulting number of files */
9687 char_u ***file; /* array of resulting files */
9688 int flags; /* EW_DIR, etc. */
9689{
9690 int retval;
9691 int i, j;
9692 char_u *p;
9693 int non_suf_match; /* number without matching suffix */
9694
9695 retval = gen_expand_wildcards(num_pat, pat, num_file, file, flags);
9696
9697 /* When keeping all matches, return here */
Bram Moolenaar9e193ac2010-07-19 23:11:27 +02009698 if ((flags & EW_KEEPALL) || retval == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009699 return retval;
9700
9701#ifdef FEAT_WILDIGN
9702 /*
9703 * Remove names that match 'wildignore'.
9704 */
9705 if (*p_wig)
9706 {
9707 char_u *ffname;
9708
9709 /* check all files in (*file)[] */
9710 for (i = 0; i < *num_file; ++i)
9711 {
9712 ffname = FullName_save((*file)[i], FALSE);
9713 if (ffname == NULL) /* out of memory */
9714 break;
9715# ifdef VMS
9716 vms_remove_version(ffname);
9717# endif
9718 if (match_file_list(p_wig, (*file)[i], ffname))
9719 {
9720 /* remove this matching file from the list */
9721 vim_free((*file)[i]);
9722 for (j = i; j + 1 < *num_file; ++j)
9723 (*file)[j] = (*file)[j + 1];
9724 --*num_file;
9725 --i;
9726 }
9727 vim_free(ffname);
9728 }
9729 }
9730#endif
9731
9732 /*
9733 * Move the names where 'suffixes' match to the end.
9734 */
9735 if (*num_file > 1)
9736 {
9737 non_suf_match = 0;
9738 for (i = 0; i < *num_file; ++i)
9739 {
9740 if (!match_suffix((*file)[i]))
9741 {
9742 /*
9743 * Move the name without matching suffix to the front
9744 * of the list.
9745 */
9746 p = (*file)[i];
9747 for (j = i; j > non_suf_match; --j)
9748 (*file)[j] = (*file)[j - 1];
9749 (*file)[non_suf_match++] = p;
9750 }
9751 }
9752 }
9753
9754 return retval;
9755}
9756
9757/*
9758 * Return TRUE if "fname" matches with an entry in 'suffixes'.
9759 */
9760 int
9761match_suffix(fname)
9762 char_u *fname;
9763{
9764 int fnamelen, setsuflen;
9765 char_u *setsuf;
9766#define MAXSUFLEN 30 /* maximum length of a file suffix */
9767 char_u suf_buf[MAXSUFLEN];
9768
9769 fnamelen = (int)STRLEN(fname);
9770 setsuflen = 0;
9771 for (setsuf = p_su; *setsuf; )
9772 {
9773 setsuflen = copy_option_part(&setsuf, suf_buf, MAXSUFLEN, ".,");
Bram Moolenaar055a2ba2009-07-14 19:40:21 +00009774 if (setsuflen == 0)
9775 {
9776 char_u *tail = gettail(fname);
9777
9778 /* empty entry: match name without a '.' */
9779 if (vim_strchr(tail, '.') == NULL)
9780 {
9781 setsuflen = 1;
9782 break;
9783 }
9784 }
9785 else
9786 {
9787 if (fnamelen >= setsuflen
9788 && fnamencmp(suf_buf, fname + fnamelen - setsuflen,
9789 (size_t)setsuflen) == 0)
9790 break;
9791 setsuflen = 0;
9792 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009793 }
9794 return (setsuflen != 0);
9795}
9796
9797#if !defined(NO_EXPANDPATH) || defined(PROTO)
9798
9799# ifdef VIM_BACKTICK
9800static int vim_backtick __ARGS((char_u *p));
9801static int expand_backtick __ARGS((garray_T *gap, char_u *pat, int flags));
9802# endif
9803
9804# if defined(MSDOS) || defined(FEAT_GUI_W16) || defined(WIN3264)
9805/*
9806 * File name expansion code for MS-DOS, Win16 and Win32. It's here because
9807 * it's shared between these systems.
9808 */
9809# if defined(DJGPP) || defined(PROTO)
9810# define _cdecl /* DJGPP doesn't have this */
9811# else
9812# ifdef __BORLANDC__
9813# define _cdecl _RTLENTRYF
9814# endif
9815# endif
9816
9817/*
9818 * comparison function for qsort in dos_expandpath()
9819 */
9820 static int _cdecl
9821pstrcmp(const void *a, const void *b)
9822{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00009823 return (pathcmp(*(char **)a, *(char **)b, -1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009824}
9825
9826# ifndef WIN3264
9827 static void
9828namelowcpy(
9829 char_u *d,
9830 char_u *s)
9831{
9832# ifdef DJGPP
9833 if (USE_LONG_FNAME) /* don't lower case on Windows 95/NT systems */
9834 while (*s)
9835 *d++ = *s++;
9836 else
9837# endif
9838 while (*s)
9839 *d++ = TOLOWER_LOC(*s++);
9840 *d = NUL;
9841}
9842# endif
9843
9844/*
Bram Moolenaar231334e2005-07-25 20:46:57 +00009845 * Recursively expand one path component into all matching files and/or
9846 * directories. Adds matches to "gap". Handles "*", "?", "[a-z]", "**", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009847 * Return the number of matches found.
9848 * "path" has backslashes before chars that are not to be expanded, starting
9849 * at "path[wildoff]".
Bram Moolenaar231334e2005-07-25 20:46:57 +00009850 * Return the number of matches found.
9851 * NOTE: much of this is identical to unix_expandpath(), keep in sync!
Bram Moolenaar071d4272004-06-13 20:20:40 +00009852 */
9853 static int
9854dos_expandpath(
9855 garray_T *gap,
9856 char_u *path,
9857 int wildoff,
Bram Moolenaar231334e2005-07-25 20:46:57 +00009858 int flags, /* EW_* flags */
Bram Moolenaar25394022007-05-10 19:06:20 +00009859 int didstar) /* expanded "**" once already */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009860{
Bram Moolenaar231334e2005-07-25 20:46:57 +00009861 char_u *buf;
9862 char_u *path_end;
9863 char_u *p, *s, *e;
9864 int start_len = gap->ga_len;
9865 char_u *pat;
9866 regmatch_T regmatch;
9867 int starts_with_dot;
9868 int matches;
9869 int len;
9870 int starstar = FALSE;
9871 static int stardepth = 0; /* depth for "**" expansion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009872#ifdef WIN3264
9873 WIN32_FIND_DATA fb;
9874 HANDLE hFind = (HANDLE)0;
9875# ifdef FEAT_MBYTE
9876 WIN32_FIND_DATAW wfb;
9877 WCHAR *wn = NULL; /* UCS-2 name, NULL when not used. */
9878# endif
9879#else
9880 struct ffblk fb;
9881#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009882 char_u *matchname;
Bram Moolenaar231334e2005-07-25 20:46:57 +00009883 int ok;
9884
9885 /* Expanding "**" may take a long time, check for CTRL-C. */
9886 if (stardepth > 0)
9887 {
9888 ui_breakcheck();
9889 if (got_int)
9890 return 0;
9891 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009892
9893 /* make room for file name */
Bram Moolenaar231334e2005-07-25 20:46:57 +00009894 buf = alloc((int)STRLEN(path) + BASENAMELEN + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009895 if (buf == NULL)
9896 return 0;
9897
9898 /*
9899 * Find the first part in the path name that contains a wildcard or a ~1.
9900 * Copy it into buf, including the preceding characters.
9901 */
9902 p = buf;
9903 s = buf;
9904 e = NULL;
9905 path_end = path;
9906 while (*path_end != NUL)
9907 {
9908 /* May ignore a wildcard that has a backslash before it; it will
9909 * be removed by rem_backslash() or file_pat_to_reg_pat() below. */
9910 if (path_end >= path + wildoff && rem_backslash(path_end))
9911 *p++ = *path_end++;
9912 else if (*path_end == '\\' || *path_end == ':' || *path_end == '/')
9913 {
9914 if (e != NULL)
9915 break;
9916 s = p + 1;
9917 }
9918 else if (path_end >= path + wildoff
9919 && vim_strchr((char_u *)"*?[~", *path_end) != NULL)
9920 e = p;
9921#ifdef FEAT_MBYTE
9922 if (has_mbyte)
9923 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009924 len = (*mb_ptr2len)(path_end);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009925 STRNCPY(p, path_end, len);
9926 p += len;
9927 path_end += len;
9928 }
9929 else
9930#endif
9931 *p++ = *path_end++;
9932 }
9933 e = p;
9934 *e = NUL;
9935
9936 /* now we have one wildcard component between s and e */
9937 /* Remove backslashes between "wildoff" and the start of the wildcard
9938 * component. */
9939 for (p = buf + wildoff; p < s; ++p)
9940 if (rem_backslash(p))
9941 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009942 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009943 --e;
9944 --s;
9945 }
9946
Bram Moolenaar231334e2005-07-25 20:46:57 +00009947 /* Check for "**" between "s" and "e". */
9948 for (p = s; p < e; ++p)
9949 if (p[0] == '*' && p[1] == '*')
9950 starstar = TRUE;
9951
Bram Moolenaar071d4272004-06-13 20:20:40 +00009952 starts_with_dot = (*s == '.');
9953 pat = file_pat_to_reg_pat(s, e, NULL, FALSE);
9954 if (pat == NULL)
9955 {
9956 vim_free(buf);
9957 return 0;
9958 }
9959
9960 /* compile the regexp into a program */
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009961 if (flags & (EW_NOERROR | EW_NOTWILD))
Bram Moolenaarb5609832011-07-20 15:04:58 +02009962 ++emsg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009963 regmatch.rm_ic = TRUE; /* Always ignore case */
9964 regmatch.regprog = vim_regcomp(pat, RE_MAGIC);
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009965 if (flags & (EW_NOERROR | EW_NOTWILD))
Bram Moolenaarb5609832011-07-20 15:04:58 +02009966 --emsg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009967 vim_free(pat);
9968
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009969 if (regmatch.regprog == NULL && (flags & EW_NOTWILD) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009970 {
9971 vim_free(buf);
9972 return 0;
9973 }
9974
9975 /* remember the pattern or file name being looked for */
9976 matchname = vim_strsave(s);
9977
Bram Moolenaar231334e2005-07-25 20:46:57 +00009978 /* If "**" is by itself, this is the first time we encounter it and more
9979 * is following then find matches without any directory. */
9980 if (!didstar && stardepth < 100 && starstar && e - s == 2
9981 && *path_end == '/')
9982 {
9983 STRCPY(s, path_end + 1);
9984 ++stardepth;
9985 (void)dos_expandpath(gap, buf, (int)(s - buf), flags, TRUE);
9986 --stardepth;
9987 }
9988
Bram Moolenaar071d4272004-06-13 20:20:40 +00009989 /* Scan all files in the directory with "dir/ *.*" */
9990 STRCPY(s, "*.*");
9991#ifdef WIN3264
9992# ifdef FEAT_MBYTE
9993 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
9994 {
9995 /* The active codepage differs from 'encoding'. Attempt using the
9996 * wide function. If it fails because it is not implemented fall back
9997 * to the non-wide version (for Windows 98) */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00009998 wn = enc_to_utf16(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009999 if (wn != NULL)
10000 {
10001 hFind = FindFirstFileW(wn, &wfb);
10002 if (hFind == INVALID_HANDLE_VALUE
10003 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
10004 {
10005 vim_free(wn);
10006 wn = NULL;
10007 }
10008 }
10009 }
10010
10011 if (wn == NULL)
10012# endif
10013 hFind = FindFirstFile(buf, &fb);
10014 ok = (hFind != INVALID_HANDLE_VALUE);
10015#else
10016 /* If we are expanding wildcards we try both files and directories */
10017 ok = (findfirst((char *)buf, &fb,
10018 (*path_end != NUL || (flags & EW_DIR)) ? FA_DIREC : 0) == 0);
10019#endif
10020
10021 while (ok)
10022 {
10023#ifdef WIN3264
10024# ifdef FEAT_MBYTE
10025 if (wn != NULL)
Bram Moolenaar36f692d2008-11-20 16:10:17 +000010026 p = utf16_to_enc(wfb.cFileName, NULL); /* p is allocated here */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010027 else
10028# endif
10029 p = (char_u *)fb.cFileName;
10030#else
10031 p = (char_u *)fb.ff_name;
10032#endif
10033 /* Ignore entries starting with a dot, unless when asked for. Accept
10034 * all entries found with "matchname". */
10035 if ((p[0] != '.' || starts_with_dot)
10036 && (matchname == NULL
Bram Moolenaar1f5965b2012-01-10 18:37:58 +010010037 || (regmatch.regprog != NULL
10038 && vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaar0b573a52011-07-27 17:31:47 +020010039 || ((flags & EW_NOTWILD)
10040 && fnamencmp(path + (s - buf), p, e - s) == 0)))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010041 {
10042#ifdef WIN3264
10043 STRCPY(s, p);
10044#else
10045 namelowcpy(s, p);
10046#endif
10047 len = (int)STRLEN(buf);
Bram Moolenaar231334e2005-07-25 20:46:57 +000010048
10049 if (starstar && stardepth < 100)
10050 {
10051 /* For "**" in the pattern first go deeper in the tree to
10052 * find matches. */
10053 STRCPY(buf + len, "/**");
10054 STRCPY(buf + len + 3, path_end);
10055 ++stardepth;
10056 (void)dos_expandpath(gap, buf, len + 1, flags, TRUE);
10057 --stardepth;
10058 }
10059
Bram Moolenaar071d4272004-06-13 20:20:40 +000010060 STRCPY(buf + len, path_end);
10061 if (mch_has_exp_wildcard(path_end))
10062 {
10063 /* need to expand another component of the path */
10064 /* remove backslashes for the remaining components only */
Bram Moolenaar231334e2005-07-25 20:46:57 +000010065 (void)dos_expandpath(gap, buf, len + 1, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010066 }
10067 else
10068 {
10069 /* no more wildcards, check if there is a match */
10070 /* remove backslashes for the remaining components only */
10071 if (*path_end != 0)
10072 backslash_halve(buf + len + 1);
10073 if (mch_getperm(buf) >= 0) /* add existing file */
10074 addfile(gap, buf, flags);
10075 }
10076 }
10077
10078#ifdef WIN3264
10079# ifdef FEAT_MBYTE
10080 if (wn != NULL)
10081 {
10082 vim_free(p);
10083 ok = FindNextFileW(hFind, &wfb);
10084 }
10085 else
10086# endif
10087 ok = FindNextFile(hFind, &fb);
10088#else
10089 ok = (findnext(&fb) == 0);
10090#endif
10091
10092 /* If no more matches and no match was used, try expanding the name
10093 * itself. Finds the long name of a short filename. */
10094 if (!ok && matchname != NULL && gap->ga_len == start_len)
10095 {
10096 STRCPY(s, matchname);
10097#ifdef WIN3264
10098 FindClose(hFind);
10099# ifdef FEAT_MBYTE
10100 if (wn != NULL)
10101 {
10102 vim_free(wn);
Bram Moolenaar36f692d2008-11-20 16:10:17 +000010103 wn = enc_to_utf16(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010104 if (wn != NULL)
10105 hFind = FindFirstFileW(wn, &wfb);
10106 }
10107 if (wn == NULL)
10108# endif
10109 hFind = FindFirstFile(buf, &fb);
10110 ok = (hFind != INVALID_HANDLE_VALUE);
10111#else
10112 ok = (findfirst((char *)buf, &fb,
10113 (*path_end != NUL || (flags & EW_DIR)) ? FA_DIREC : 0) == 0);
10114#endif
10115 vim_free(matchname);
10116 matchname = NULL;
10117 }
10118 }
10119
10120#ifdef WIN3264
10121 FindClose(hFind);
10122# ifdef FEAT_MBYTE
10123 vim_free(wn);
10124# endif
10125#endif
10126 vim_free(buf);
Bram Moolenaar473de612013-06-08 18:19:48 +020010127 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010128 vim_free(matchname);
10129
10130 matches = gap->ga_len - start_len;
10131 if (matches > 0)
10132 qsort(((char_u **)gap->ga_data) + start_len, (size_t)matches,
10133 sizeof(char_u *), pstrcmp);
10134 return matches;
10135}
10136
10137 int
10138mch_expandpath(
10139 garray_T *gap,
10140 char_u *path,
10141 int flags) /* EW_* flags */
10142{
Bram Moolenaar231334e2005-07-25 20:46:57 +000010143 return dos_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010144}
10145# endif /* MSDOS || FEAT_GUI_W16 || WIN3264 */
10146
Bram Moolenaar231334e2005-07-25 20:46:57 +000010147#if (defined(UNIX) && !defined(VMS)) || defined(USE_UNIXFILENAME) \
10148 || defined(PROTO)
10149/*
10150 * Unix style wildcard expansion code.
10151 * It's here because it's used both for Unix and Mac.
10152 */
10153static int pstrcmp __ARGS((const void *, const void *));
10154
10155 static int
10156pstrcmp(a, b)
10157 const void *a, *b;
10158{
10159 return (pathcmp(*(char **)a, *(char **)b, -1));
10160}
10161
10162/*
10163 * Recursively expand one path component into all matching files and/or
10164 * directories. Adds matches to "gap". Handles "*", "?", "[a-z]", "**", etc.
10165 * "path" has backslashes before chars that are not to be expanded, starting
10166 * at "path + wildoff".
10167 * Return the number of matches found.
10168 * NOTE: much of this is identical to dos_expandpath(), keep in sync!
10169 */
10170 int
10171unix_expandpath(gap, path, wildoff, flags, didstar)
10172 garray_T *gap;
10173 char_u *path;
10174 int wildoff;
10175 int flags; /* EW_* flags */
10176 int didstar; /* expanded "**" once already */
10177{
10178 char_u *buf;
10179 char_u *path_end;
10180 char_u *p, *s, *e;
10181 int start_len = gap->ga_len;
10182 char_u *pat;
10183 regmatch_T regmatch;
10184 int starts_with_dot;
10185 int matches;
10186 int len;
10187 int starstar = FALSE;
10188 static int stardepth = 0; /* depth for "**" expansion */
10189
10190 DIR *dirp;
10191 struct dirent *dp;
10192
10193 /* Expanding "**" may take a long time, check for CTRL-C. */
10194 if (stardepth > 0)
10195 {
10196 ui_breakcheck();
10197 if (got_int)
10198 return 0;
10199 }
10200
10201 /* make room for file name */
10202 buf = alloc((int)STRLEN(path) + BASENAMELEN + 5);
10203 if (buf == NULL)
10204 return 0;
10205
10206 /*
10207 * Find the first part in the path name that contains a wildcard.
Bram Moolenaar2d0b92f2012-04-30 21:09:43 +020010208 * When EW_ICASE is set every letter is considered to be a wildcard.
Bram Moolenaar231334e2005-07-25 20:46:57 +000010209 * Copy it into "buf", including the preceding characters.
10210 */
10211 p = buf;
10212 s = buf;
10213 e = NULL;
10214 path_end = path;
10215 while (*path_end != NUL)
10216 {
10217 /* May ignore a wildcard that has a backslash before it; it will
10218 * be removed by rem_backslash() or file_pat_to_reg_pat() below. */
10219 if (path_end >= path + wildoff && rem_backslash(path_end))
10220 *p++ = *path_end++;
10221 else if (*path_end == '/')
10222 {
10223 if (e != NULL)
10224 break;
10225 s = p + 1;
10226 }
10227 else if (path_end >= path + wildoff
Bram Moolenaar2d0b92f2012-04-30 21:09:43 +020010228 && (vim_strchr((char_u *)"*?[{~$", *path_end) != NULL
Bram Moolenaar71afbfe2013-03-19 16:49:16 +010010229 || (!p_fic && (flags & EW_ICASE)
10230 && isalpha(PTR2CHAR(path_end)))))
Bram Moolenaar231334e2005-07-25 20:46:57 +000010231 e = p;
10232#ifdef FEAT_MBYTE
10233 if (has_mbyte)
10234 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010235 len = (*mb_ptr2len)(path_end);
Bram Moolenaar231334e2005-07-25 20:46:57 +000010236 STRNCPY(p, path_end, len);
10237 p += len;
10238 path_end += len;
10239 }
10240 else
10241#endif
10242 *p++ = *path_end++;
10243 }
10244 e = p;
10245 *e = NUL;
10246
Bram Moolenaar0b573a52011-07-27 17:31:47 +020010247 /* Now we have one wildcard component between "s" and "e". */
Bram Moolenaar231334e2005-07-25 20:46:57 +000010248 /* Remove backslashes between "wildoff" and the start of the wildcard
10249 * component. */
10250 for (p = buf + wildoff; p < s; ++p)
10251 if (rem_backslash(p))
10252 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000010253 STRMOVE(p, p + 1);
Bram Moolenaar231334e2005-07-25 20:46:57 +000010254 --e;
10255 --s;
10256 }
10257
10258 /* Check for "**" between "s" and "e". */
10259 for (p = s; p < e; ++p)
10260 if (p[0] == '*' && p[1] == '*')
10261 starstar = TRUE;
10262
10263 /* convert the file pattern to a regexp pattern */
10264 starts_with_dot = (*s == '.');
10265 pat = file_pat_to_reg_pat(s, e, NULL, FALSE);
10266 if (pat == NULL)
10267 {
10268 vim_free(buf);
10269 return 0;
10270 }
10271
10272 /* compile the regexp into a program */
Bram Moolenaar94950a92010-12-02 16:01:29 +010010273 if (flags & EW_ICASE)
10274 regmatch.rm_ic = TRUE; /* 'wildignorecase' set */
10275 else
Bram Moolenaar71afbfe2013-03-19 16:49:16 +010010276 regmatch.rm_ic = p_fic; /* ignore case when 'fileignorecase' is set */
Bram Moolenaar1f5965b2012-01-10 18:37:58 +010010277 if (flags & (EW_NOERROR | EW_NOTWILD))
10278 ++emsg_silent;
Bram Moolenaar231334e2005-07-25 20:46:57 +000010279 regmatch.regprog = vim_regcomp(pat, RE_MAGIC);
Bram Moolenaar1f5965b2012-01-10 18:37:58 +010010280 if (flags & (EW_NOERROR | EW_NOTWILD))
10281 --emsg_silent;
Bram Moolenaar231334e2005-07-25 20:46:57 +000010282 vim_free(pat);
10283
Bram Moolenaar1f5965b2012-01-10 18:37:58 +010010284 if (regmatch.regprog == NULL && (flags & EW_NOTWILD) == 0)
Bram Moolenaar231334e2005-07-25 20:46:57 +000010285 {
10286 vim_free(buf);
10287 return 0;
10288 }
10289
10290 /* If "**" is by itself, this is the first time we encounter it and more
10291 * is following then find matches without any directory. */
10292 if (!didstar && stardepth < 100 && starstar && e - s == 2
10293 && *path_end == '/')
10294 {
10295 STRCPY(s, path_end + 1);
10296 ++stardepth;
10297 (void)unix_expandpath(gap, buf, (int)(s - buf), flags, TRUE);
10298 --stardepth;
10299 }
10300
10301 /* open the directory for scanning */
10302 *s = NUL;
10303 dirp = opendir(*buf == NUL ? "." : (char *)buf);
10304
10305 /* Find all matching entries */
10306 if (dirp != NULL)
10307 {
10308 for (;;)
10309 {
10310 dp = readdir(dirp);
10311 if (dp == NULL)
10312 break;
10313 if ((dp->d_name[0] != '.' || starts_with_dot)
Bram Moolenaar1f5965b2012-01-10 18:37:58 +010010314 && ((regmatch.regprog != NULL && vim_regexec(&regmatch,
10315 (char_u *)dp->d_name, (colnr_T)0))
Bram Moolenaar0b573a52011-07-27 17:31:47 +020010316 || ((flags & EW_NOTWILD)
10317 && fnamencmp(path + (s - buf), dp->d_name, e - s) == 0)))
Bram Moolenaar231334e2005-07-25 20:46:57 +000010318 {
10319 STRCPY(s, dp->d_name);
10320 len = STRLEN(buf);
10321
10322 if (starstar && stardepth < 100)
10323 {
10324 /* For "**" in the pattern first go deeper in the tree to
10325 * find matches. */
10326 STRCPY(buf + len, "/**");
10327 STRCPY(buf + len + 3, path_end);
10328 ++stardepth;
10329 (void)unix_expandpath(gap, buf, len + 1, flags, TRUE);
10330 --stardepth;
10331 }
10332
10333 STRCPY(buf + len, path_end);
10334 if (mch_has_exp_wildcard(path_end)) /* handle more wildcards */
10335 {
10336 /* need to expand another component of the path */
10337 /* remove backslashes for the remaining components only */
10338 (void)unix_expandpath(gap, buf, len + 1, flags, FALSE);
10339 }
10340 else
10341 {
Bram Moolenaard8b77f72015-03-05 21:21:19 +010010342 struct stat sb;
10343
Bram Moolenaar231334e2005-07-25 20:46:57 +000010344 /* no more wildcards, check if there is a match */
10345 /* remove backslashes for the remaining components only */
10346 if (*path_end != NUL)
10347 backslash_halve(buf + len + 1);
Bram Moolenaard8b77f72015-03-05 21:21:19 +010010348 /* add existing file or symbolic link */
Bram Moolenaarab11a592015-03-06 22:00:11 +010010349 if ((flags & EW_ALLLINKS) ? mch_lstat((char *)buf, &sb) >= 0
Bram Moolenaard8b77f72015-03-05 21:21:19 +010010350 : mch_getperm(buf) >= 0)
Bram Moolenaar231334e2005-07-25 20:46:57 +000010351 {
Bram Moolenaar95e9b492006-03-15 23:04:43 +000010352#ifdef MACOS_CONVERT
Bram Moolenaar231334e2005-07-25 20:46:57 +000010353 size_t precomp_len = STRLEN(buf)+1;
10354 char_u *precomp_buf =
10355 mac_precompose_path(buf, precomp_len, &precomp_len);
Bram Moolenaar95e9b492006-03-15 23:04:43 +000010356
Bram Moolenaar231334e2005-07-25 20:46:57 +000010357 if (precomp_buf)
10358 {
10359 mch_memmove(buf, precomp_buf, precomp_len);
10360 vim_free(precomp_buf);
10361 }
10362#endif
10363 addfile(gap, buf, flags);
10364 }
10365 }
10366 }
10367 }
10368
10369 closedir(dirp);
10370 }
10371
10372 vim_free(buf);
Bram Moolenaar473de612013-06-08 18:19:48 +020010373 vim_regfree(regmatch.regprog);
Bram Moolenaar231334e2005-07-25 20:46:57 +000010374
10375 matches = gap->ga_len - start_len;
10376 if (matches > 0)
10377 qsort(((char_u **)gap->ga_data) + start_len, matches,
10378 sizeof(char_u *), pstrcmp);
10379 return matches;
10380}
10381#endif
10382
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010383#if defined(FEAT_SEARCHPATH)
10384static int find_previous_pathsep __ARGS((char_u *path, char_u **psep));
10385static int is_unique __ARGS((char_u *maybe_unique, garray_T *gap, int i));
Bram Moolenaar162bd912010-07-28 22:29:10 +020010386static void expand_path_option __ARGS((char_u *curdir, garray_T *gap));
10387static char_u *get_path_cutoff __ARGS((char_u *fname, garray_T *gap));
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010388static void uniquefy_paths __ARGS((garray_T *gap, char_u *pattern));
10389static int expand_in_path __ARGS((garray_T *gap, char_u *pattern, int flags));
10390
10391/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010392 * Moves "*psep" back to the previous path separator in "path".
10393 * Returns FAIL is "*psep" ends up at the beginning of "path".
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010394 */
10395 static int
10396find_previous_pathsep(path, psep)
10397 char_u *path;
10398 char_u **psep;
10399{
10400 /* skip the current separator */
10401 if (*psep > path && vim_ispathsep(**psep))
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010402 --*psep;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010403
10404 /* find the previous separator */
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010405 while (*psep > path)
10406 {
10407 if (vim_ispathsep(**psep))
10408 return OK;
10409 mb_ptr_back(path, *psep);
10410 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010411
10412 return FAIL;
10413}
10414
10415/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010416 * Returns TRUE if "maybe_unique" is unique wrt other_paths in "gap".
10417 * "maybe_unique" is the end portion of "((char_u **)gap->ga_data)[i]".
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010418 */
10419 static int
10420is_unique(maybe_unique, gap, i)
10421 char_u *maybe_unique;
10422 garray_T *gap;
10423 int i;
10424{
10425 int j;
10426 int candidate_len;
10427 int other_path_len;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010428 char_u **other_paths = (char_u **)gap->ga_data;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010429 char_u *rival;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010430
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010431 for (j = 0; j < gap->ga_len; j++)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010432 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010433 if (j == i)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010434 continue; /* don't compare it with itself */
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010435
Bram Moolenaar624c7aa2010-07-16 20:38:52 +020010436 candidate_len = (int)STRLEN(maybe_unique);
10437 other_path_len = (int)STRLEN(other_paths[j]);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010438 if (other_path_len < candidate_len)
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010439 continue; /* it's different when it's shorter */
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010440
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010441 rival = other_paths[j] + other_path_len - candidate_len;
Bram Moolenaarda9836c2010-08-16 21:53:27 +020010442 if (fnamecmp(maybe_unique, rival) == 0
10443 && (rival == other_paths[j] || vim_ispathsep(*(rival - 1))))
Bram Moolenaar162bd912010-07-28 22:29:10 +020010444 return FALSE; /* match */
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010445 }
10446
Bram Moolenaar162bd912010-07-28 22:29:10 +020010447 return TRUE; /* no match found */
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010448}
10449
10450/*
Bram Moolenaar1a509df2010-08-01 17:59:57 +020010451 * Split the 'path' option into an array of strings in garray_T. Relative
Bram Moolenaar162bd912010-07-28 22:29:10 +020010452 * paths are expanded to their equivalent fullpath. This includes the "."
10453 * (relative to current buffer directory) and empty path (relative to current
10454 * directory) notations.
10455 *
10456 * TODO: handle upward search (;) and path limiter (**N) notations by
10457 * expanding each into their equivalent path(s).
10458 */
10459 static void
10460expand_path_option(curdir, gap)
10461 char_u *curdir;
10462 garray_T *gap;
10463{
10464 char_u *path_option = *curbuf->b_p_path == NUL
10465 ? p_path : curbuf->b_p_path;
10466 char_u *buf;
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010467 char_u *p;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010468 int len;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010469
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010470 if ((buf = alloc((int)MAXPATHL)) == NULL)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010471 return;
10472
10473 while (*path_option != NUL)
10474 {
10475 copy_option_part(&path_option, buf, MAXPATHL, " ,");
10476
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010477 if (buf[0] == '.' && (buf[1] == NUL || vim_ispathsep(buf[1])))
Bram Moolenaar162bd912010-07-28 22:29:10 +020010478 {
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010479 /* Relative to current buffer:
10480 * "/path/file" + "." -> "/path/"
10481 * "/path/file" + "./subdir" -> "/path/subdir" */
Bram Moolenaar162bd912010-07-28 22:29:10 +020010482 if (curbuf->b_ffname == NULL)
10483 continue;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010484 p = gettail(curbuf->b_ffname);
10485 len = (int)(p - curbuf->b_ffname);
10486 if (len + (int)STRLEN(buf) >= MAXPATHL)
10487 continue;
10488 if (buf[1] == NUL)
10489 buf[len] = NUL;
10490 else
10491 STRMOVE(buf + len, buf + 2);
10492 mch_memmove(buf, curbuf->b_ffname, len);
10493 simplify_filename(buf);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010494 }
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010495 else if (buf[0] == NUL)
10496 /* relative to current directory */
Bram Moolenaar162bd912010-07-28 22:29:10 +020010497 STRCPY(buf, curdir);
Bram Moolenaar84f888a2010-08-05 21:40:16 +020010498 else if (path_with_url(buf))
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010499 /* URL can't be used here */
Bram Moolenaar84f888a2010-08-05 21:40:16 +020010500 continue;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010501 else if (!mch_isFullName(buf))
10502 {
10503 /* Expand relative path to their full path equivalent */
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010504 len = (int)STRLEN(curdir);
10505 if (len + (int)STRLEN(buf) + 3 > MAXPATHL)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010506 continue;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010507 STRMOVE(buf + len + 1, buf);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010508 STRCPY(buf, curdir);
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010509 buf[len] = PATHSEP;
Bram Moolenaar57adda12010-08-03 22:11:29 +020010510 simplify_filename(buf);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010511 }
10512
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010513 if (ga_grow(gap, 1) == FAIL)
10514 break;
Bram Moolenaar811fe632013-04-24 17:34:20 +020010515
10516# if defined(MSWIN) || defined(MSDOS)
10517 /* Avoid the path ending in a backslash, it fails when a comma is
10518 * appended. */
Bram Moolenaar4e0d9742013-05-04 03:40:27 +020010519 len = (int)STRLEN(buf);
Bram Moolenaar811fe632013-04-24 17:34:20 +020010520 if (buf[len - 1] == '\\')
10521 buf[len - 1] = '/';
10522# endif
10523
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010524 p = vim_strsave(buf);
10525 if (p == NULL)
10526 break;
10527 ((char_u **)gap->ga_data)[gap->ga_len++] = p;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010528 }
10529
10530 vim_free(buf);
10531}
10532
10533/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010534 * Returns a pointer to the file or directory name in "fname" that matches the
10535 * longest path in "ga"p, or NULL if there is no match. For example:
Bram Moolenaar162bd912010-07-28 22:29:10 +020010536 *
10537 * path: /foo/bar/baz
10538 * fname: /foo/bar/baz/quux.txt
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010539 * returns: ^this
Bram Moolenaar162bd912010-07-28 22:29:10 +020010540 */
10541 static char_u *
10542get_path_cutoff(fname, gap)
10543 char_u *fname;
10544 garray_T *gap;
10545{
10546 int i;
10547 int maxlen = 0;
10548 char_u **path_part = (char_u **)gap->ga_data;
10549 char_u *cutoff = NULL;
10550
10551 for (i = 0; i < gap->ga_len; i++)
10552 {
10553 int j = 0;
10554
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010555 while ((fname[j] == path_part[i][j]
Bram Moolenaar2d7c47d2010-08-10 19:50:26 +020010556# if defined(MSWIN) || defined(MSDOS)
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010557 || (vim_ispathsep(fname[j]) && vim_ispathsep(path_part[i][j]))
10558#endif
10559 ) && fname[j] != NUL && path_part[i][j] != NUL)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010560 j++;
10561 if (j > maxlen)
10562 {
10563 maxlen = j;
10564 cutoff = &fname[j];
10565 }
10566 }
10567
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010568 /* skip to the file or directory name */
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010569 if (cutoff != NULL)
Bram Moolenaar31710262010-08-13 13:36:15 +020010570 while (vim_ispathsep(*cutoff))
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010571 mb_ptr_adv(cutoff);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010572
10573 return cutoff;
10574}
10575
10576/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010577 * Sorts, removes duplicates and modifies all the fullpath names in "gap" so
10578 * that they are unique with respect to each other while conserving the part
10579 * that matches the pattern. Beware, this is at least O(n^2) wrt "gap->ga_len".
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010580 */
10581 static void
10582uniquefy_paths(gap, pattern)
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +020010583 garray_T *gap;
10584 char_u *pattern;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010585{
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +020010586 int i;
10587 int len;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010588 char_u **fnames = (char_u **)gap->ga_data;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010589 int sort_again = FALSE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010590 char_u *pat;
10591 char_u *file_pattern;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010592 char_u *curdir;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010593 regmatch_T regmatch;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010594 garray_T path_ga;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010595 char_u **in_curdir = NULL;
10596 char_u *short_name;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010597
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +020010598 remove_duplicates(gap);
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010599 ga_init2(&path_ga, (int)sizeof(char_u *), 1);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010600
10601 /*
10602 * We need to prepend a '*' at the beginning of file_pattern so that the
10603 * regex matches anywhere in the path. FIXME: is this valid for all
Bram Moolenaarb31e4382010-07-24 16:01:56 +020010604 * possible patterns?
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010605 */
Bram Moolenaar624c7aa2010-07-16 20:38:52 +020010606 len = (int)STRLEN(pattern);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010607 file_pattern = alloc(len + 2);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010608 if (file_pattern == NULL)
10609 return;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010610 file_pattern[0] = '*';
Bram Moolenaar162bd912010-07-28 22:29:10 +020010611 file_pattern[1] = NUL;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010612 STRCAT(file_pattern, pattern);
10613 pat = file_pat_to_reg_pat(file_pattern, NULL, NULL, TRUE);
10614 vim_free(file_pattern);
Bram Moolenaarb31e4382010-07-24 16:01:56 +020010615 if (pat == NULL)
10616 return;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010617
Bram Moolenaarb31e4382010-07-24 16:01:56 +020010618 regmatch.rm_ic = TRUE; /* always ignore case */
10619 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
10620 vim_free(pat);
10621 if (regmatch.regprog == NULL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010622 return;
10623
Bram Moolenaar162bd912010-07-28 22:29:10 +020010624 if ((curdir = alloc((int)(MAXPATHL))) == NULL)
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010625 goto theend;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010626 mch_dirname(curdir, MAXPATHL);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010627 expand_path_option(curdir, &path_ga);
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010628
10629 in_curdir = (char_u **)alloc_clear(gap->ga_len * sizeof(char_u *));
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010630 if (in_curdir == NULL)
10631 goto theend;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010632
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010633 for (i = 0; i < gap->ga_len && !got_int; i++)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010634 {
Bram Moolenaar162bd912010-07-28 22:29:10 +020010635 char_u *path = fnames[i];
10636 int is_in_curdir;
Bram Moolenaar31710262010-08-13 13:36:15 +020010637 char_u *dir_end = gettail_dir(path);
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010638 char_u *pathsep_p;
10639 char_u *path_cutoff;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010640
Bram Moolenaar624c7aa2010-07-16 20:38:52 +020010641 len = (int)STRLEN(path);
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010642 is_in_curdir = fnamencmp(curdir, path, dir_end - path) == 0
Bram Moolenaar162bd912010-07-28 22:29:10 +020010643 && curdir[dir_end - path] == NUL;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010644 if (is_in_curdir)
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010645 in_curdir[i] = vim_strsave(path);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010646
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010647 /* Shorten the filename while maintaining its uniqueness */
10648 path_cutoff = get_path_cutoff(path, &path_ga);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010649
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010650 /* we start at the end of the path */
10651 pathsep_p = path + len - 1;
10652
10653 while (find_previous_pathsep(path, &pathsep_p))
10654 if (vim_regexec(&regmatch, pathsep_p + 1, (colnr_T)0)
10655 && is_unique(pathsep_p + 1, gap, i)
10656 && path_cutoff != NULL && pathsep_p + 1 >= path_cutoff)
10657 {
10658 sort_again = TRUE;
10659 mch_memmove(path, pathsep_p + 1, STRLEN(pathsep_p));
10660 break;
10661 }
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010662
10663 if (mch_isFullName(path))
10664 {
10665 /*
10666 * Last resort: shorten relative to curdir if possible.
10667 * 'possible' means:
10668 * 1. It is under the current directory.
10669 * 2. The result is actually shorter than the original.
10670 *
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010671 * Before curdir After
10672 * /foo/bar/file.txt /foo/bar ./file.txt
10673 * c:\foo\bar\file.txt c:\foo\bar .\file.txt
10674 * /file.txt / /file.txt
10675 * c:\file.txt c:\ .\file.txt
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010676 */
10677 short_name = shorten_fname(path, curdir);
Bram Moolenaar31710262010-08-13 13:36:15 +020010678 if (short_name != NULL && short_name > path + 1
10679#if defined(MSWIN) || defined(MSDOS)
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010680 /* On windows,
Bram Moolenaar31710262010-08-13 13:36:15 +020010681 * shorten_fname("c:\a\a.txt", "c:\a\b")
Bram Moolenaar31710262010-08-13 13:36:15 +020010682 * returns "\a\a.txt", which is not really the short
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010683 * name, hence: */
Bram Moolenaar31710262010-08-13 13:36:15 +020010684 && !vim_ispathsep(*short_name)
10685#endif
10686 )
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010687 {
10688 STRCPY(path, ".");
10689 add_pathsep(path);
Bram Moolenaarcda000e2010-08-14 13:34:39 +020010690 STRMOVE(path + STRLEN(path), short_name);
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010691 }
10692 }
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010693 ui_breakcheck();
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010694 }
10695
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010696 /* Shorten filenames in /in/current/directory/{filename} */
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010697 for (i = 0; i < gap->ga_len && !got_int; i++)
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010698 {
10699 char_u *rel_path;
10700 char_u *path = in_curdir[i];
10701
10702 if (path == NULL)
10703 continue;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010704
10705 /* If the {filename} is not unique, change it to ./{filename}.
10706 * Else reduce it to {filename} */
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010707 short_name = shorten_fname(path, curdir);
10708 if (short_name == NULL)
10709 short_name = path;
10710 if (is_unique(short_name, gap, i))
10711 {
10712 STRCPY(fnames[i], short_name);
10713 continue;
10714 }
10715
10716 rel_path = alloc((int)(STRLEN(short_name) + STRLEN(PATHSEPSTR) + 2));
10717 if (rel_path == NULL)
10718 goto theend;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010719 STRCPY(rel_path, ".");
10720 add_pathsep(rel_path);
10721 STRCAT(rel_path, short_name);
10722
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010723 vim_free(fnames[i]);
10724 fnames[i] = rel_path;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010725 sort_again = TRUE;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010726 ui_breakcheck();
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010727 }
10728
Bram Moolenaar162bd912010-07-28 22:29:10 +020010729theend:
10730 vim_free(curdir);
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010731 if (in_curdir != NULL)
10732 {
10733 for (i = 0; i < gap->ga_len; i++)
10734 vim_free(in_curdir[i]);
10735 vim_free(in_curdir);
10736 }
Bram Moolenaar162bd912010-07-28 22:29:10 +020010737 ga_clear_strings(&path_ga);
Bram Moolenaar473de612013-06-08 18:19:48 +020010738 vim_regfree(regmatch.regprog);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010739
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010740 if (sort_again)
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +020010741 remove_duplicates(gap);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010742}
10743
10744/*
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010745 * Calls globpath() with 'path' values for the given pattern and stores the
10746 * result in "gap".
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010747 * Returns the total number of matches.
10748 */
10749 static int
10750expand_in_path(gap, pattern, flags)
10751 garray_T *gap;
10752 char_u *pattern;
10753 int flags; /* EW_* flags */
10754{
Bram Moolenaar162bd912010-07-28 22:29:10 +020010755 char_u *curdir;
10756 garray_T path_ga;
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010757 char_u *paths = NULL;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010758
Bram Moolenaar7f0f6212010-08-03 22:21:00 +020010759 if ((curdir = alloc((unsigned)MAXPATHL)) == NULL)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010760 return 0;
10761 mch_dirname(curdir, MAXPATHL);
10762
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010763 ga_init2(&path_ga, (int)sizeof(char_u *), 1);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010764 expand_path_option(curdir, &path_ga);
10765 vim_free(curdir);
Bram Moolenaar006d2b02010-08-04 12:39:44 +020010766 if (path_ga.ga_len == 0)
10767 return 0;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010768
Bram Moolenaar1b1063a2014-05-07 18:35:30 +020010769 paths = ga_concat_strings(&path_ga, ",");
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010770 ga_clear_strings(&path_ga);
10771 if (paths == NULL)
Bram Moolenaar7f0f6212010-08-03 22:21:00 +020010772 return 0;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010773
Bram Moolenaar1b1063a2014-05-07 18:35:30 +020010774 globpath(paths, pattern, gap, (flags & EW_ICASE) ? WILD_ICASE : 0);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010775 vim_free(paths);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010776
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010777 return gap->ga_len;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010778}
10779#endif
10780
Bram Moolenaar1587a1e2010-07-29 20:59:59 +020010781#if defined(FEAT_SEARCHPATH) || defined(FEAT_CMDL_COMPL) || defined(PROTO)
10782/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010783 * Sort "gap" and remove duplicate entries. "gap" is expected to contain a
10784 * list of file names in allocated memory.
Bram Moolenaar1587a1e2010-07-29 20:59:59 +020010785 */
10786 void
10787remove_duplicates(gap)
10788 garray_T *gap;
10789{
10790 int i;
10791 int j;
10792 char_u **fnames = (char_u **)gap->ga_data;
10793
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010794 sort_strings(fnames, gap->ga_len);
Bram Moolenaar1587a1e2010-07-29 20:59:59 +020010795 for (i = gap->ga_len - 1; i > 0; --i)
10796 if (fnamecmp(fnames[i - 1], fnames[i]) == 0)
10797 {
10798 vim_free(fnames[i]);
10799 for (j = i + 1; j < gap->ga_len; ++j)
10800 fnames[j - 1] = fnames[j];
10801 --gap->ga_len;
10802 }
10803}
10804#endif
10805
Bram Moolenaarf4e11432013-07-03 16:53:03 +020010806static int has_env_var __ARGS((char_u *p));
10807
10808/*
10809 * Return TRUE if "p" contains what looks like an environment variable.
10810 * Allowing for escaping.
10811 */
10812 static int
10813has_env_var(p)
10814 char_u *p;
10815{
10816 for ( ; *p; mb_ptr_adv(p))
10817 {
10818 if (*p == '\\' && p[1] != NUL)
10819 ++p;
10820 else if (vim_strchr((char_u *)
10821#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
10822 "$%"
10823#else
10824 "$"
10825#endif
10826 , *p) != NULL)
10827 return TRUE;
10828 }
10829 return FALSE;
10830}
10831
10832#ifdef SPECIAL_WILDCHAR
10833static int has_special_wildchar __ARGS((char_u *p));
10834
10835/*
10836 * Return TRUE if "p" contains a special wildcard character.
10837 * Allowing for escaping.
10838 */
10839 static int
10840has_special_wildchar(p)
10841 char_u *p;
10842{
10843 for ( ; *p; mb_ptr_adv(p))
10844 {
10845 if (*p == '\\' && p[1] != NUL)
10846 ++p;
10847 else if (vim_strchr((char_u *)SPECIAL_WILDCHAR, *p) != NULL)
10848 return TRUE;
10849 }
10850 return FALSE;
10851}
10852#endif
10853
Bram Moolenaar071d4272004-06-13 20:20:40 +000010854/*
10855 * Generic wildcard expansion code.
10856 *
10857 * Characters in "pat" that should not be expanded must be preceded with a
10858 * backslash. E.g., "/path\ with\ spaces/my\*star*"
10859 *
10860 * Return FAIL when no single file was found. In this case "num_file" is not
10861 * set, and "file" may contain an error message.
10862 * Return OK when some files found. "num_file" is set to the number of
10863 * matches, "file" to the array of matches. Call FreeWild() later.
10864 */
10865 int
10866gen_expand_wildcards(num_pat, pat, num_file, file, flags)
10867 int num_pat; /* number of input patterns */
10868 char_u **pat; /* array of input patterns */
10869 int *num_file; /* resulting number of files */
10870 char_u ***file; /* array of resulting files */
10871 int flags; /* EW_* flags */
10872{
10873 int i;
10874 garray_T ga;
10875 char_u *p;
10876 static int recursive = FALSE;
10877 int add_pat;
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010878#if defined(FEAT_SEARCHPATH)
10879 int did_expand_in_path = FALSE;
10880#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010881
10882 /*
10883 * expand_env() is called to expand things like "~user". If this fails,
10884 * it calls ExpandOne(), which brings us back here. In this case, always
10885 * call the machine specific expansion function, if possible. Otherwise,
10886 * return FAIL.
10887 */
10888 if (recursive)
10889#ifdef SPECIAL_WILDCHAR
10890 return mch_expand_wildcards(num_pat, pat, num_file, file, flags);
10891#else
10892 return FAIL;
10893#endif
10894
10895#ifdef SPECIAL_WILDCHAR
10896 /*
10897 * If there are any special wildcard characters which we cannot handle
10898 * here, call machine specific function for all the expansion. This
10899 * avoids starting the shell for each argument separately.
10900 * For `=expr` do use the internal function.
10901 */
10902 for (i = 0; i < num_pat; i++)
10903 {
Bram Moolenaarf4e11432013-07-03 16:53:03 +020010904 if (has_special_wildchar(pat[i])
Bram Moolenaar071d4272004-06-13 20:20:40 +000010905# ifdef VIM_BACKTICK
10906 && !(vim_backtick(pat[i]) && pat[i][1] == '=')
10907# endif
10908 )
10909 return mch_expand_wildcards(num_pat, pat, num_file, file, flags);
10910 }
10911#endif
10912
10913 recursive = TRUE;
10914
10915 /*
10916 * The matching file names are stored in a growarray. Init it empty.
10917 */
10918 ga_init2(&ga, (int)sizeof(char_u *), 30);
10919
10920 for (i = 0; i < num_pat; ++i)
10921 {
10922 add_pat = -1;
10923 p = pat[i];
10924
10925#ifdef VIM_BACKTICK
10926 if (vim_backtick(p))
10927 add_pat = expand_backtick(&ga, p, flags);
10928 else
10929#endif
10930 {
10931 /*
10932 * First expand environment variables, "~/" and "~user/".
10933 */
Bram Moolenaarf4e11432013-07-03 16:53:03 +020010934 if (has_env_var(p) || *p == '~')
Bram Moolenaar071d4272004-06-13 20:20:40 +000010935 {
Bram Moolenaar9f0545d2007-09-26 20:36:32 +000010936 p = expand_env_save_opt(p, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010937 if (p == NULL)
10938 p = pat[i];
10939#ifdef UNIX
10940 /*
10941 * On Unix, if expand_env() can't expand an environment
10942 * variable, use the shell to do that. Discard previously
10943 * found file names and start all over again.
10944 */
Bram Moolenaarf4e11432013-07-03 16:53:03 +020010945 else if (has_env_var(p) || *p == '~')
Bram Moolenaar071d4272004-06-13 20:20:40 +000010946 {
10947 vim_free(p);
Bram Moolenaar782027e2009-06-24 14:25:49 +000010948 ga_clear_strings(&ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010949 i = mch_expand_wildcards(num_pat, pat, num_file, file,
Bram Moolenaare4df1642014-08-29 12:58:44 +020010950 flags|EW_KEEPDOLLAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010951 recursive = FALSE;
10952 return i;
10953 }
10954#endif
10955 }
10956
10957 /*
10958 * If there are wildcards: Expand file names and add each match to
10959 * the list. If there is no match, and EW_NOTFOUND is given, add
10960 * the pattern.
10961 * If there are no wildcards: Add the file name if it exists or
10962 * when EW_NOTFOUND is given.
10963 */
10964 if (mch_has_exp_wildcard(p))
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010965 {
10966#if defined(FEAT_SEARCHPATH)
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010967 if ((flags & EW_PATH)
10968 && !mch_isFullName(p)
10969 && !(p[0] == '.'
10970 && (vim_ispathsep(p[1])
10971 || (p[1] == '.' && vim_ispathsep(p[2]))))
10972 )
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010973 {
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010974 /* :find completion where 'path' is used.
10975 * Recursiveness is OK here. */
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010976 recursive = FALSE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010977 add_pat = expand_in_path(&ga, p, flags);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010978 recursive = TRUE;
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010979 did_expand_in_path = TRUE;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010980 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010981 else
10982#endif
10983 add_pat = mch_expandpath(&ga, p, flags);
10984 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010985 }
10986
10987 if (add_pat == -1 || (add_pat == 0 && (flags & EW_NOTFOUND)))
10988 {
10989 char_u *t = backslash_halve_save(p);
10990
10991#if defined(MACOS_CLASSIC)
10992 slash_to_colon(t);
10993#endif
10994 /* When EW_NOTFOUND is used, always add files and dirs. Makes
10995 * "vim c:/" work. */
10996 if (flags & EW_NOTFOUND)
10997 addfile(&ga, t, flags | EW_DIR | EW_FILE);
10998 else if (mch_getperm(t) >= 0)
10999 addfile(&ga, t, flags);
11000 vim_free(t);
11001 }
11002
Bram Moolenaarb28ebbc2010-07-14 16:59:57 +020011003#if defined(FEAT_SEARCHPATH)
Bram Moolenaard732f9a2010-08-15 13:29:11 +020011004 if (did_expand_in_path && ga.ga_len > 0 && (flags & EW_PATH))
Bram Moolenaarb28ebbc2010-07-14 16:59:57 +020011005 uniquefy_paths(&ga, p);
11006#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011007 if (p != pat[i])
11008 vim_free(p);
11009 }
11010
11011 *num_file = ga.ga_len;
11012 *file = (ga.ga_data != NULL) ? (char_u **)ga.ga_data : (char_u **)"";
11013
11014 recursive = FALSE;
11015
11016 return (ga.ga_data != NULL) ? OK : FAIL;
11017}
11018
11019# ifdef VIM_BACKTICK
11020
11021/*
11022 * Return TRUE if we can expand this backtick thing here.
11023 */
11024 static int
11025vim_backtick(p)
11026 char_u *p;
11027{
11028 return (*p == '`' && *(p + 1) != NUL && *(p + STRLEN(p) - 1) == '`');
11029}
11030
11031/*
11032 * Expand an item in `backticks` by executing it as a command.
11033 * Currently only works when pat[] starts and ends with a `.
11034 * Returns number of file names found.
11035 */
11036 static int
11037expand_backtick(gap, pat, flags)
11038 garray_T *gap;
11039 char_u *pat;
11040 int flags; /* EW_* flags */
11041{
11042 char_u *p;
11043 char_u *cmd;
11044 char_u *buffer;
11045 int cnt = 0;
11046 int i;
11047
11048 /* Create the command: lop off the backticks. */
11049 cmd = vim_strnsave(pat + 1, (int)STRLEN(pat) - 2);
11050 if (cmd == NULL)
11051 return 0;
11052
11053#ifdef FEAT_EVAL
11054 if (*cmd == '=') /* `={expr}`: Expand expression */
Bram Moolenaar362e1a32006-03-06 23:29:24 +000011055 buffer = eval_to_string(cmd + 1, &p, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011056 else
11057#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +000011058 buffer = get_cmd_output(cmd, NULL,
Bram Moolenaar39c29ed2014-04-05 19:44:40 +020011059 (flags & EW_SILENT) ? SHELL_SILENT : 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011060 vim_free(cmd);
11061 if (buffer == NULL)
11062 return 0;
11063
11064 cmd = buffer;
11065 while (*cmd != NUL)
11066 {
11067 cmd = skipwhite(cmd); /* skip over white space */
11068 p = cmd;
11069 while (*p != NUL && *p != '\r' && *p != '\n') /* skip over entry */
11070 ++p;
11071 /* add an entry if it is not empty */
11072 if (p > cmd)
11073 {
11074 i = *p;
11075 *p = NUL;
11076 addfile(gap, cmd, flags);
11077 *p = i;
11078 ++cnt;
11079 }
11080 cmd = p;
11081 while (*cmd != NUL && (*cmd == '\r' || *cmd == '\n'))
11082 ++cmd;
11083 }
11084
11085 vim_free(buffer);
11086 return cnt;
11087}
11088# endif /* VIM_BACKTICK */
11089
11090/*
11091 * Add a file to a file list. Accepted flags:
11092 * EW_DIR add directories
11093 * EW_FILE add files
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000011094 * EW_EXEC add executable files
Bram Moolenaar071d4272004-06-13 20:20:40 +000011095 * EW_NOTFOUND add even when it doesn't exist
11096 * EW_ADDSLASH add slash after directory name
Bram Moolenaard8b77f72015-03-05 21:21:19 +010011097 * EW_ALLLINKS add symlink also when the referred file does not exist
Bram Moolenaar071d4272004-06-13 20:20:40 +000011098 */
11099 void
11100addfile(gap, f, flags)
11101 garray_T *gap;
11102 char_u *f; /* filename */
11103 int flags;
11104{
11105 char_u *p;
11106 int isdir;
Bram Moolenaard8b77f72015-03-05 21:21:19 +010011107 struct stat sb;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011108
Bram Moolenaard8b77f72015-03-05 21:21:19 +010011109 /* if the file/dir/link doesn't exist, may not add it */
11110 if (!(flags & EW_NOTFOUND) && ((flags & EW_ALLLINKS)
Bram Moolenaarab11a592015-03-06 22:00:11 +010011111 ? mch_lstat((char *)f, &sb) < 0 : mch_getperm(f) < 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +000011112 return;
11113
11114#ifdef FNAME_ILLEGAL
11115 /* if the file/dir contains illegal characters, don't add it */
11116 if (vim_strpbrk(f, (char_u *)FNAME_ILLEGAL) != NULL)
11117 return;
11118#endif
11119
11120 isdir = mch_isdir(f);
11121 if ((isdir && !(flags & EW_DIR)) || (!isdir && !(flags & EW_FILE)))
11122 return;
11123
Bram Moolenaarb5971142015-03-21 17:32:19 +010011124 /* If the file isn't executable, may not add it. Do accept directories.
11125 * When invoked from expand_shellcmd() do not use $PATH. */
11126 if (!isdir && (flags & EW_EXEC)
11127 && !mch_can_exe(f, NULL, !(flags & EW_SHELLCMD)))
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000011128 return;
11129
Bram Moolenaar071d4272004-06-13 20:20:40 +000011130 /* Make room for another item in the file list. */
11131 if (ga_grow(gap, 1) == FAIL)
11132 return;
11133
11134 p = alloc((unsigned)(STRLEN(f) + 1 + isdir));
11135 if (p == NULL)
11136 return;
11137
11138 STRCPY(p, f);
11139#ifdef BACKSLASH_IN_FILENAME
11140 slash_adjust(p);
11141#endif
11142 /*
11143 * Append a slash or backslash after directory names if none is present.
11144 */
11145#ifndef DONT_ADD_PATHSEP_TO_DIR
11146 if (isdir && (flags & EW_ADDSLASH))
11147 add_pathsep(p);
11148#endif
11149 ((char_u **)gap->ga_data)[gap->ga_len++] = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011150}
11151#endif /* !NO_EXPANDPATH */
11152
11153#if defined(VIM_BACKTICK) || defined(FEAT_EVAL) || defined(PROTO)
11154
11155#ifndef SEEK_SET
11156# define SEEK_SET 0
11157#endif
11158#ifndef SEEK_END
11159# define SEEK_END 2
11160#endif
11161
11162/*
11163 * Get the stdout of an external command.
Bram Moolenaar39c29ed2014-04-05 19:44:40 +020011164 * If "ret_len" is NULL replace NUL characters with NL. When "ret_len" is not
11165 * NULL store the length there.
Bram Moolenaar071d4272004-06-13 20:20:40 +000011166 * Returns an allocated string, or NULL for error.
11167 */
11168 char_u *
Bram Moolenaar39c29ed2014-04-05 19:44:40 +020011169get_cmd_output(cmd, infile, flags, ret_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011170 char_u *cmd;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000011171 char_u *infile; /* optional input file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011172 int flags; /* can be SHELL_SILENT */
Bram Moolenaar39c29ed2014-04-05 19:44:40 +020011173 int *ret_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011174{
11175 char_u *tempname;
11176 char_u *command;
11177 char_u *buffer = NULL;
11178 int len;
11179 int i = 0;
11180 FILE *fd;
11181
11182 if (check_restricted() || check_secure())
11183 return NULL;
11184
11185 /* get a name for the temp file */
Bram Moolenaare5c421c2015-03-31 13:33:08 +020011186 if ((tempname = vim_tempname('o', FALSE)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011187 {
11188 EMSG(_(e_notmp));
11189 return NULL;
11190 }
11191
11192 /* Add the redirection stuff */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000011193 command = make_filter_cmd(cmd, infile, tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011194 if (command == NULL)
11195 goto done;
11196
11197 /*
11198 * Call the shell to execute the command (errors are ignored).
11199 * Don't check timestamps here.
11200 */
11201 ++no_check_timestamps;
11202 call_shell(command, SHELL_DOOUT | SHELL_EXPAND | flags);
11203 --no_check_timestamps;
11204
11205 vim_free(command);
11206
11207 /*
11208 * read the names from the file into memory
11209 */
11210# ifdef VMS
Bram Moolenaar25394022007-05-10 19:06:20 +000011211 /* created temporary file is not always readable as binary */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011212 fd = mch_fopen((char *)tempname, "r");
11213# else
11214 fd = mch_fopen((char *)tempname, READBIN);
11215# endif
11216
11217 if (fd == NULL)
11218 {
11219 EMSG2(_(e_notopen), tempname);
11220 goto done;
11221 }
11222
11223 fseek(fd, 0L, SEEK_END);
11224 len = ftell(fd); /* get size of temp file */
11225 fseek(fd, 0L, SEEK_SET);
11226
11227 buffer = alloc(len + 1);
11228 if (buffer != NULL)
11229 i = (int)fread((char *)buffer, (size_t)1, (size_t)len, fd);
11230 fclose(fd);
11231 mch_remove(tempname);
11232 if (buffer == NULL)
11233 goto done;
11234#ifdef VMS
11235 len = i; /* VMS doesn't give us what we asked for... */
11236#endif
11237 if (i != len)
11238 {
11239 EMSG2(_(e_notread), tempname);
11240 vim_free(buffer);
11241 buffer = NULL;
11242 }
Bram Moolenaar39c29ed2014-04-05 19:44:40 +020011243 else if (ret_len == NULL)
Bram Moolenaarfb332a22013-08-03 14:10:50 +020011244 {
11245 /* Change NUL into SOH, otherwise the string is truncated. */
11246 for (i = 0; i < len; ++i)
Bram Moolenaarf40f4ab2013-08-03 17:31:28 +020011247 if (buffer[i] == NUL)
11248 buffer[i] = 1;
Bram Moolenaarfb332a22013-08-03 14:10:50 +020011249
Bram Moolenaar162bd912010-07-28 22:29:10 +020011250 buffer[len] = NUL; /* make sure the buffer is terminated */
Bram Moolenaarfb332a22013-08-03 14:10:50 +020011251 }
Bram Moolenaar39c29ed2014-04-05 19:44:40 +020011252 else
11253 *ret_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011254
11255done:
11256 vim_free(tempname);
11257 return buffer;
11258}
11259#endif
11260
11261/*
11262 * Free the list of files returned by expand_wildcards() or other expansion
11263 * functions.
11264 */
11265 void
11266FreeWild(count, files)
11267 int count;
11268 char_u **files;
11269{
Bram Moolenaarfc1421e2006-04-20 22:17:20 +000011270 if (count <= 0 || files == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011271 return;
11272#if defined(__EMX__) && defined(__ALWAYS_HAS_TRAILING_NULL_POINTER) /* XXX */
11273 /*
11274 * Is this still OK for when other functions than expand_wildcards() have
11275 * been used???
11276 */
11277 _fnexplodefree((char **)files);
11278#else
11279 while (count--)
11280 vim_free(files[count]);
11281 vim_free(files);
11282#endif
11283}
11284
11285/*
Bram Moolenaara9dc3752010-07-11 20:46:53 +020011286 * Return TRUE when need to go to Insert mode because of 'insertmode'.
Bram Moolenaar071d4272004-06-13 20:20:40 +000011287 * Don't do this when still processing a command or a mapping.
11288 * Don't do this when inside a ":normal" command.
11289 */
11290 int
11291goto_im()
11292{
11293 return (p_im && stuff_empty() && typebuf_typed());
11294}
Bram Moolenaar75a8d742014-05-07 15:10:21 +020011295
11296/*
Bram Moolenaar050fe7e2014-05-22 14:00:16 +020011297 * Returns the isolated name of the shell in allocated memory:
Bram Moolenaar75a8d742014-05-07 15:10:21 +020011298 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
11299 * - Remove any argument. E.g., "csh -f" -> "csh".
11300 * But don't allow a space in the path, so that this works:
11301 * "/usr/bin/csh --rcfile ~/.cshrc"
11302 * But don't do that for Windows, it's common to have a space in the path.
11303 */
11304 char_u *
11305get_isolated_shell_name()
11306{
11307 char_u *p;
11308
11309#ifdef WIN3264
11310 p = gettail(p_sh);
11311 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
11312#else
11313 p = skiptowhite(p_sh);
11314 if (*p == NUL)
11315 {
11316 /* No white space, use the tail. */
11317 p = vim_strsave(gettail(p_sh));
11318 }
11319 else
11320 {
11321 char_u *p1, *p2;
11322
11323 /* Find the last path separator before the space. */
11324 p1 = p_sh;
11325 for (p2 = p_sh; p2 < p; mb_ptr_adv(p2))
11326 if (vim_ispathsep(*p2))
11327 p1 = p2 + 1;
11328 p = vim_strnsave(p1, (int)(p - p1));
11329 }
11330#endif
11331 return p;
11332}