blob: 1cad0f53b15cceeb57d6c398d6aa3785df249685 [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 Moolenaar071d4272004-06-13 20:20:40 +000019static int copy_indent __ARGS((int size, char_u *src));
20
Bram Moolenaar24305862012-08-15 14:05:05 +020021/* All user names (for ~user completion as done by shell). */
22#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
23static garray_T ga_users;
24#endif
25
Bram Moolenaar071d4272004-06-13 20:20:40 +000026/*
27 * Count the size (in window cells) of the indent in the current line.
28 */
29 int
30get_indent()
31{
32 return get_indent_str(ml_get_curline(), (int)curbuf->b_p_ts);
33}
34
35/*
36 * Count the size (in window cells) of the indent in line "lnum".
37 */
38 int
39get_indent_lnum(lnum)
40 linenr_T lnum;
41{
42 return get_indent_str(ml_get(lnum), (int)curbuf->b_p_ts);
43}
44
45#if defined(FEAT_FOLDING) || defined(PROTO)
46/*
47 * Count the size (in window cells) of the indent in line "lnum" of buffer
48 * "buf".
49 */
50 int
51get_indent_buf(buf, lnum)
52 buf_T *buf;
53 linenr_T lnum;
54{
55 return get_indent_str(ml_get_buf(buf, lnum, FALSE), (int)buf->b_p_ts);
56}
57#endif
58
59/*
60 * count the size (in window cells) of the indent in line "ptr", with
61 * 'tabstop' at "ts"
62 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +000063 int
Bram Moolenaar071d4272004-06-13 20:20:40 +000064get_indent_str(ptr, ts)
65 char_u *ptr;
66 int ts;
67{
68 int count = 0;
69
70 for ( ; *ptr; ++ptr)
71 {
72 if (*ptr == TAB) /* count a tab for what it is worth */
73 count += ts - (count % ts);
74 else if (*ptr == ' ')
75 ++count; /* count a space for one */
76 else
77 break;
78 }
Bram Moolenaar4399ef42005-02-12 14:29:27 +000079 return count;
Bram Moolenaar071d4272004-06-13 20:20:40 +000080}
81
82/*
83 * Set the indent of the current line.
84 * Leaves the cursor on the first non-blank in the line.
85 * Caller must take care of undo.
86 * "flags":
87 * SIN_CHANGED: call changed_bytes() if the line was changed.
88 * SIN_INSERT: insert the indent in front of the line.
89 * SIN_UNDO: save line for undo before changing it.
90 * Returns TRUE if the line was changed.
91 */
92 int
93set_indent(size, flags)
Bram Moolenaar5002c292007-07-24 13:26:15 +000094 int size; /* measured in spaces */
Bram Moolenaar071d4272004-06-13 20:20:40 +000095 int flags;
96{
97 char_u *p;
98 char_u *newline;
99 char_u *oldline;
100 char_u *s;
101 int todo;
Bram Moolenaar5002c292007-07-24 13:26:15 +0000102 int ind_len; /* measured in characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103 int line_len;
104 int doit = FALSE;
Bram Moolenaar5002c292007-07-24 13:26:15 +0000105 int ind_done = 0; /* measured in spaces */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106 int tab_pad;
Bram Moolenaar5409c052005-03-18 20:27:04 +0000107 int retval = FALSE;
Bram Moolenaar4d64b782007-08-14 20:16:42 +0000108 int orig_char_len = -1; /* number of initial whitespace chars when
Bram Moolenaar5002c292007-07-24 13:26:15 +0000109 'et' and 'pi' are both set */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000110
111 /*
112 * First check if there is anything to do and compute the number of
113 * characters needed for the indent.
114 */
115 todo = size;
116 ind_len = 0;
117 p = oldline = ml_get_curline();
118
119 /* Calculate the buffer size for the new indent, and check to see if it
120 * isn't already set */
121
Bram Moolenaar5002c292007-07-24 13:26:15 +0000122 /* if 'expandtab' isn't set: use TABs; if both 'expandtab' and
123 * 'preserveindent' are set count the number of characters at the
124 * beginning of the line to be copied */
125 if (!curbuf->b_p_et || (!(flags & SIN_INSERT) && curbuf->b_p_pi))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126 {
127 /* If 'preserveindent' is set then reuse as much as possible of
128 * the existing indent structure for the new indent */
129 if (!(flags & SIN_INSERT) && curbuf->b_p_pi)
130 {
131 ind_done = 0;
132
133 /* count as many characters as we can use */
134 while (todo > 0 && vim_iswhite(*p))
135 {
136 if (*p == TAB)
137 {
138 tab_pad = (int)curbuf->b_p_ts
139 - (ind_done % (int)curbuf->b_p_ts);
140 /* stop if this tab will overshoot the target */
141 if (todo < tab_pad)
142 break;
143 todo -= tab_pad;
144 ++ind_len;
145 ind_done += tab_pad;
146 }
147 else
148 {
149 --todo;
150 ++ind_len;
151 ++ind_done;
152 }
153 ++p;
154 }
155
Bram Moolenaar5002c292007-07-24 13:26:15 +0000156 /* Set initial number of whitespace chars to copy if we are
157 * preserving indent but expandtab is set */
158 if (curbuf->b_p_et)
159 orig_char_len = ind_len;
160
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 /* Fill to next tabstop with a tab, if possible */
162 tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
Bram Moolenaar4d64b782007-08-14 20:16:42 +0000163 if (todo >= tab_pad && orig_char_len == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164 {
165 doit = TRUE;
166 todo -= tab_pad;
167 ++ind_len;
168 /* ind_done += tab_pad; */
169 }
170 }
171
172 /* count tabs required for indent */
173 while (todo >= (int)curbuf->b_p_ts)
174 {
175 if (*p != TAB)
176 doit = TRUE;
177 else
178 ++p;
179 todo -= (int)curbuf->b_p_ts;
180 ++ind_len;
181 /* ind_done += (int)curbuf->b_p_ts; */
182 }
183 }
184 /* count spaces required for indent */
185 while (todo > 0)
186 {
187 if (*p != ' ')
188 doit = TRUE;
189 else
190 ++p;
191 --todo;
192 ++ind_len;
193 /* ++ind_done; */
194 }
195
196 /* Return if the indent is OK already. */
197 if (!doit && !vim_iswhite(*p) && !(flags & SIN_INSERT))
198 return FALSE;
199
200 /* Allocate memory for the new line. */
201 if (flags & SIN_INSERT)
202 p = oldline;
203 else
204 p = skipwhite(p);
205 line_len = (int)STRLEN(p) + 1;
Bram Moolenaar5002c292007-07-24 13:26:15 +0000206
207 /* If 'preserveindent' and 'expandtab' are both set keep the original
208 * characters and allocate accordingly. We will fill the rest with spaces
209 * after the if (!curbuf->b_p_et) below. */
Bram Moolenaar4d64b782007-08-14 20:16:42 +0000210 if (orig_char_len != -1)
Bram Moolenaar5002c292007-07-24 13:26:15 +0000211 {
212 newline = alloc(orig_char_len + size - ind_done + line_len);
213 if (newline == NULL)
214 return FALSE;
Bram Moolenaar4d64b782007-08-14 20:16:42 +0000215 todo = size - ind_done;
216 ind_len = orig_char_len + todo; /* Set total length of indent in
217 * characters, which may have been
218 * undercounted until now */
Bram Moolenaar5002c292007-07-24 13:26:15 +0000219 p = oldline;
220 s = newline;
221 while (orig_char_len > 0)
222 {
223 *s++ = *p++;
224 orig_char_len--;
225 }
Bram Moolenaar913626c2008-01-03 11:43:42 +0000226
Bram Moolenaar5002c292007-07-24 13:26:15 +0000227 /* Skip over any additional white space (useful when newindent is less
228 * than old) */
229 while (vim_iswhite(*p))
Bram Moolenaar913626c2008-01-03 11:43:42 +0000230 ++p;
Bram Moolenaarcc00b952007-08-11 12:32:57 +0000231
Bram Moolenaar5002c292007-07-24 13:26:15 +0000232 }
233 else
234 {
235 todo = size;
236 newline = alloc(ind_len + line_len);
237 if (newline == NULL)
238 return FALSE;
239 s = newline;
240 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241
242 /* Put the characters in the new line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243 /* if 'expandtab' isn't set: use TABs */
244 if (!curbuf->b_p_et)
245 {
246 /* If 'preserveindent' is set then reuse as much as possible of
247 * the existing indent structure for the new indent */
248 if (!(flags & SIN_INSERT) && curbuf->b_p_pi)
249 {
250 p = oldline;
251 ind_done = 0;
252
253 while (todo > 0 && vim_iswhite(*p))
254 {
255 if (*p == TAB)
256 {
257 tab_pad = (int)curbuf->b_p_ts
258 - (ind_done % (int)curbuf->b_p_ts);
259 /* stop if this tab will overshoot the target */
260 if (todo < tab_pad)
261 break;
262 todo -= tab_pad;
263 ind_done += tab_pad;
264 }
265 else
266 {
267 --todo;
268 ++ind_done;
269 }
270 *s++ = *p++;
271 }
272
273 /* Fill to next tabstop with a tab, if possible */
274 tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
275 if (todo >= tab_pad)
276 {
277 *s++ = TAB;
278 todo -= tab_pad;
279 }
280
281 p = skipwhite(p);
282 }
283
284 while (todo >= (int)curbuf->b_p_ts)
285 {
286 *s++ = TAB;
287 todo -= (int)curbuf->b_p_ts;
288 }
289 }
290 while (todo > 0)
291 {
292 *s++ = ' ';
293 --todo;
294 }
295 mch_memmove(s, p, (size_t)line_len);
296
297 /* Replace the line (unless undo fails). */
298 if (!(flags & SIN_UNDO) || u_savesub(curwin->w_cursor.lnum) == OK)
299 {
300 ml_replace(curwin->w_cursor.lnum, newline, FALSE);
301 if (flags & SIN_CHANGED)
302 changed_bytes(curwin->w_cursor.lnum, 0);
303 /* Correct saved cursor position if it's after the indent. */
304 if (saved_cursor.lnum == curwin->w_cursor.lnum
305 && saved_cursor.col >= (colnr_T)(p - oldline))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000306 saved_cursor.col += ind_len - (colnr_T)(p - oldline);
Bram Moolenaar5409c052005-03-18 20:27:04 +0000307 retval = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308 }
309 else
310 vim_free(newline);
311
312 curwin->w_cursor.col = ind_len;
Bram Moolenaar5409c052005-03-18 20:27:04 +0000313 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314}
315
316/*
317 * Copy the indent from ptr to the current line (and fill to size)
318 * Leaves the cursor on the first non-blank in the line.
319 * Returns TRUE if the line was changed.
320 */
321 static int
322copy_indent(size, src)
323 int size;
324 char_u *src;
325{
326 char_u *p = NULL;
327 char_u *line = NULL;
328 char_u *s;
329 int todo;
330 int ind_len;
331 int line_len = 0;
332 int tab_pad;
333 int ind_done;
334 int round;
335
336 /* Round 1: compute the number of characters needed for the indent
337 * Round 2: copy the characters. */
338 for (round = 1; round <= 2; ++round)
339 {
340 todo = size;
341 ind_len = 0;
342 ind_done = 0;
343 s = src;
344
345 /* Count/copy the usable portion of the source line */
346 while (todo > 0 && vim_iswhite(*s))
347 {
348 if (*s == TAB)
349 {
350 tab_pad = (int)curbuf->b_p_ts
351 - (ind_done % (int)curbuf->b_p_ts);
352 /* Stop if this tab will overshoot the target */
353 if (todo < tab_pad)
354 break;
355 todo -= tab_pad;
356 ind_done += tab_pad;
357 }
358 else
359 {
360 --todo;
361 ++ind_done;
362 }
363 ++ind_len;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000364 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365 *p++ = *s;
366 ++s;
367 }
368
369 /* Fill to next tabstop with a tab, if possible */
370 tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
Bram Moolenaarc42e7ed2011-09-07 19:58:09 +0200371 if (todo >= tab_pad && !curbuf->b_p_et)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372 {
373 todo -= tab_pad;
374 ++ind_len;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000375 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 *p++ = TAB;
377 }
378
379 /* Add tabs required for indent */
Bram Moolenaarc42e7ed2011-09-07 19:58:09 +0200380 while (todo >= (int)curbuf->b_p_ts && !curbuf->b_p_et)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381 {
382 todo -= (int)curbuf->b_p_ts;
383 ++ind_len;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000384 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385 *p++ = TAB;
386 }
387
388 /* Count/add spaces required for indent */
389 while (todo > 0)
390 {
391 --todo;
392 ++ind_len;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000393 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 *p++ = ' ';
395 }
396
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000397 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398 {
399 /* Allocate memory for the result: the copied indent, new indent
400 * and the rest of the line. */
401 line_len = (int)STRLEN(ml_get_curline()) + 1;
402 line = alloc(ind_len + line_len);
403 if (line == NULL)
404 return FALSE;
405 p = line;
406 }
407 }
408
409 /* Append the original line */
410 mch_memmove(p, ml_get_curline(), (size_t)line_len);
411
412 /* Replace the line */
413 ml_replace(curwin->w_cursor.lnum, line, FALSE);
414
415 /* Put the cursor after the indent. */
416 curwin->w_cursor.col = ind_len;
417 return TRUE;
418}
419
420/*
421 * Return the indent of the current line after a number. Return -1 if no
422 * number was found. Used for 'n' in 'formatoptions': numbered list.
Bram Moolenaar86b68352004-12-27 21:59:20 +0000423 * Since a pattern is used it can actually handle more than numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 */
425 int
426get_number_indent(lnum)
427 linenr_T lnum;
428{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429 colnr_T col;
430 pos_T pos;
431
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200432 regmatch_T regmatch;
433 int lead_len = 0; /* length of comment leader */
434
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435 if (lnum > curbuf->b_ml.ml_line_count)
436 return -1;
Bram Moolenaar86b68352004-12-27 21:59:20 +0000437 pos.lnum = 0;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200438
439#ifdef FEAT_COMMENTS
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200440 /* In format_lines() (i.e. not insert mode), fo+=q is needed too... */
441 if ((State & INSERT) || has_format_option(FO_Q_COMS))
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200442 lead_len = get_leader_len(ml_get(lnum), NULL, FALSE, TRUE);
Bram Moolenaar86b68352004-12-27 21:59:20 +0000443#endif
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200444 regmatch.regprog = vim_regcomp(curbuf->b_p_flp, RE_MAGIC);
445 if (regmatch.regprog != NULL)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200446 {
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200447 regmatch.rm_ic = FALSE;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200448
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200449 /* vim_regexec() expects a pointer to a line. This lets us
450 * start matching for the flp beyond any comment leader... */
451 if (vim_regexec(&regmatch, ml_get(lnum) + lead_len, (colnr_T)0))
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200452 {
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200453 pos.lnum = lnum;
454 pos.col = (colnr_T)(*regmatch.endp - ml_get(lnum));
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200455#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200456 pos.coladd = 0;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200457#endif
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200458 }
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200459 }
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200460 vim_free(regmatch.regprog);
Bram Moolenaar86b68352004-12-27 21:59:20 +0000461
462 if (pos.lnum == 0 || *ml_get_pos(&pos) == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464 getvcol(curwin, &pos, &col, NULL, NULL);
465 return (int)col;
466}
467
468#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
469
470static int cin_is_cinword __ARGS((char_u *line));
471
472/*
473 * Return TRUE if the string "line" starts with a word from 'cinwords'.
474 */
475 static int
476cin_is_cinword(line)
477 char_u *line;
478{
479 char_u *cinw;
480 char_u *cinw_buf;
481 int cinw_len;
482 int retval = FALSE;
483 int len;
484
485 cinw_len = (int)STRLEN(curbuf->b_p_cinw) + 1;
486 cinw_buf = alloc((unsigned)cinw_len);
487 if (cinw_buf != NULL)
488 {
489 line = skipwhite(line);
490 for (cinw = curbuf->b_p_cinw; *cinw; )
491 {
492 len = copy_option_part(&cinw, cinw_buf, cinw_len, ",");
493 if (STRNCMP(line, cinw_buf, len) == 0
494 && (!vim_iswordc(line[len]) || !vim_iswordc(line[len - 1])))
495 {
496 retval = TRUE;
497 break;
498 }
499 }
500 vim_free(cinw_buf);
501 }
502 return retval;
503}
504#endif
505
506/*
507 * open_line: Add a new line below or above the current line.
508 *
509 * For VREPLACE mode, we only add a new line when we get to the end of the
510 * file, otherwise we just start replacing the next line.
511 *
512 * Caller must take care of undo. Since VREPLACE may affect any number of
513 * lines however, it may call u_save_cursor() again when starting to change a
514 * new line.
515 * "flags": OPENLINE_DELSPACES delete spaces after cursor
516 * OPENLINE_DO_COM format comments
517 * OPENLINE_KEEPTRAIL keep trailing spaces
518 * OPENLINE_MARKFIX adjust mark positions after the line break
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200519 * OPENLINE_COM_LIST format comments with list or 2nd line indent
520 *
521 * "second_line_indent": indent for after ^^D in Insert mode or if flag
522 * OPENLINE_COM_LIST
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 *
524 * Return TRUE for success, FALSE for failure
525 */
526 int
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200527open_line(dir, flags, second_line_indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000528 int dir; /* FORWARD or BACKWARD */
529 int flags;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200530 int second_line_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531{
532 char_u *saved_line; /* copy of the original line */
533 char_u *next_line = NULL; /* copy of the next line */
534 char_u *p_extra = NULL; /* what goes to next line */
535 int less_cols = 0; /* less columns for mark in new line */
536 int less_cols_off = 0; /* columns to skip for mark adjust */
537 pos_T old_cursor; /* old cursor position */
538 int newcol = 0; /* new cursor column */
539 int newindent = 0; /* auto-indent of the new line */
540 int n;
541 int trunc_line = FALSE; /* truncate current line afterwards */
542 int retval = FALSE; /* return value, default is FAIL */
543#ifdef FEAT_COMMENTS
544 int extra_len = 0; /* length of p_extra string */
545 int lead_len; /* length of comment leader */
546 char_u *lead_flags; /* position in 'comments' for comment leader */
547 char_u *leader = NULL; /* copy of comment leader */
548#endif
549 char_u *allocated = NULL; /* allocated memory */
550#if defined(FEAT_SMARTINDENT) || defined(FEAT_VREPLACE) || defined(FEAT_LISP) \
551 || defined(FEAT_CINDENT) || defined(FEAT_COMMENTS)
552 char_u *p;
553#endif
554 int saved_char = NUL; /* init for GCC */
555#if defined(FEAT_SMARTINDENT) || defined(FEAT_COMMENTS)
556 pos_T *pos;
557#endif
558#ifdef FEAT_SMARTINDENT
559 int do_si = (!p_paste && curbuf->b_p_si
560# ifdef FEAT_CINDENT
561 && !curbuf->b_p_cin
562# endif
563 );
564 int no_si = FALSE; /* reset did_si afterwards */
565 int first_char = NUL; /* init for GCC */
566#endif
567#if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
568 int vreplace_mode;
569#endif
570 int did_append; /* appended a new line */
571 int saved_pi = curbuf->b_p_pi; /* copy of preserveindent setting */
572
573 /*
574 * make a copy of the current line so we can mess with it
575 */
576 saved_line = vim_strsave(ml_get_curline());
577 if (saved_line == NULL) /* out of memory! */
578 return FALSE;
579
580#ifdef FEAT_VREPLACE
581 if (State & VREPLACE_FLAG)
582 {
583 /*
584 * With VREPLACE we make a copy of the next line, which we will be
585 * starting to replace. First make the new line empty and let vim play
586 * with the indenting and comment leader to its heart's content. Then
587 * we grab what it ended up putting on the new line, put back the
588 * original line, and call ins_char() to put each new character onto
589 * the line, replacing what was there before and pushing the right
590 * stuff onto the replace stack. -- webb.
591 */
592 if (curwin->w_cursor.lnum < orig_line_count)
593 next_line = vim_strsave(ml_get(curwin->w_cursor.lnum + 1));
594 else
595 next_line = vim_strsave((char_u *)"");
596 if (next_line == NULL) /* out of memory! */
597 goto theend;
598
599 /*
600 * In VREPLACE mode, a NL replaces the rest of the line, and starts
601 * replacing the next line, so push all of the characters left on the
602 * line onto the replace stack. We'll push any other characters that
603 * might be replaced at the start of the next line (due to autoindent
604 * etc) a bit later.
605 */
606 replace_push(NUL); /* Call twice because BS over NL expects it */
607 replace_push(NUL);
608 p = saved_line + curwin->w_cursor.col;
609 while (*p != NUL)
Bram Moolenaar2c994e82008-01-02 16:49:36 +0000610 {
611#ifdef FEAT_MBYTE
612 if (has_mbyte)
613 p += replace_push_mb(p);
614 else
615#endif
616 replace_push(*p++);
617 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618 saved_line[curwin->w_cursor.col] = NUL;
619 }
620#endif
621
622 if ((State & INSERT)
623#ifdef FEAT_VREPLACE
624 && !(State & VREPLACE_FLAG)
625#endif
626 )
627 {
628 p_extra = saved_line + curwin->w_cursor.col;
629#ifdef FEAT_SMARTINDENT
630 if (do_si) /* need first char after new line break */
631 {
632 p = skipwhite(p_extra);
633 first_char = *p;
634 }
635#endif
636#ifdef FEAT_COMMENTS
637 extra_len = (int)STRLEN(p_extra);
638#endif
639 saved_char = *p_extra;
640 *p_extra = NUL;
641 }
642
643 u_clearline(); /* cannot do "U" command when adding lines */
644#ifdef FEAT_SMARTINDENT
645 did_si = FALSE;
646#endif
647 ai_col = 0;
648
649 /*
650 * If we just did an auto-indent, then we didn't type anything on
651 * the prior line, and it should be truncated. Do this even if 'ai' is not
652 * set because automatically inserting a comment leader also sets did_ai.
653 */
654 if (dir == FORWARD && did_ai)
655 trunc_line = TRUE;
656
657 /*
658 * If 'autoindent' and/or 'smartindent' is set, try to figure out what
659 * indent to use for the new line.
660 */
661 if (curbuf->b_p_ai
662#ifdef FEAT_SMARTINDENT
663 || do_si
664#endif
665 )
666 {
667 /*
668 * count white space on current line
669 */
670 newindent = get_indent_str(saved_line, (int)curbuf->b_p_ts);
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200671 if (newindent == 0 && !(flags & OPENLINE_COM_LIST))
672 newindent = second_line_indent; /* for ^^D command in insert mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673
674#ifdef FEAT_SMARTINDENT
675 /*
676 * Do smart indenting.
677 * In insert/replace mode (only when dir == FORWARD)
678 * we may move some text to the next line. If it starts with '{'
679 * don't add an indent. Fixes inserting a NL before '{' in line
680 * "if (condition) {"
681 */
682 if (!trunc_line && do_si && *saved_line != NUL
683 && (p_extra == NULL || first_char != '{'))
684 {
685 char_u *ptr;
686 char_u last_char;
687
688 old_cursor = curwin->w_cursor;
689 ptr = saved_line;
690# ifdef FEAT_COMMENTS
691 if (flags & OPENLINE_DO_COM)
Bram Moolenaar81340392012-06-06 16:12:59 +0200692 lead_len = get_leader_len(ptr, NULL, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 else
694 lead_len = 0;
695# endif
696 if (dir == FORWARD)
697 {
698 /*
699 * Skip preprocessor directives, unless they are
700 * recognised as comments.
701 */
702 if (
703# ifdef FEAT_COMMENTS
704 lead_len == 0 &&
705# endif
706 ptr[0] == '#')
707 {
708 while (ptr[0] == '#' && curwin->w_cursor.lnum > 1)
709 ptr = ml_get(--curwin->w_cursor.lnum);
710 newindent = get_indent();
711 }
712# ifdef FEAT_COMMENTS
713 if (flags & OPENLINE_DO_COM)
Bram Moolenaar81340392012-06-06 16:12:59 +0200714 lead_len = get_leader_len(ptr, NULL, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715 else
716 lead_len = 0;
717 if (lead_len > 0)
718 {
719 /*
720 * This case gets the following right:
721 * \*
722 * * A comment (read '\' as '/').
723 * *\
724 * #define IN_THE_WAY
725 * This should line up here;
726 */
727 p = skipwhite(ptr);
728 if (p[0] == '/' && p[1] == '*')
729 p++;
730 if (p[0] == '*')
731 {
732 for (p++; *p; p++)
733 {
734 if (p[0] == '/' && p[-1] == '*')
735 {
736 /*
737 * End of C comment, indent should line up
738 * with the line containing the start of
739 * the comment
740 */
741 curwin->w_cursor.col = (colnr_T)(p - ptr);
742 if ((pos = findmatch(NULL, NUL)) != NULL)
743 {
744 curwin->w_cursor.lnum = pos->lnum;
745 newindent = get_indent();
746 }
747 }
748 }
749 }
750 }
751 else /* Not a comment line */
752# endif
753 {
754 /* Find last non-blank in line */
755 p = ptr + STRLEN(ptr) - 1;
756 while (p > ptr && vim_iswhite(*p))
757 --p;
758 last_char = *p;
759
760 /*
761 * find the character just before the '{' or ';'
762 */
763 if (last_char == '{' || last_char == ';')
764 {
765 if (p > ptr)
766 --p;
767 while (p > ptr && vim_iswhite(*p))
768 --p;
769 }
770 /*
771 * Try to catch lines that are split over multiple
772 * lines. eg:
773 * if (condition &&
774 * condition) {
775 * Should line up here!
776 * }
777 */
778 if (*p == ')')
779 {
780 curwin->w_cursor.col = (colnr_T)(p - ptr);
781 if ((pos = findmatch(NULL, '(')) != NULL)
782 {
783 curwin->w_cursor.lnum = pos->lnum;
784 newindent = get_indent();
785 ptr = ml_get_curline();
786 }
787 }
788 /*
789 * If last character is '{' do indent, without
790 * checking for "if" and the like.
791 */
792 if (last_char == '{')
793 {
794 did_si = TRUE; /* do indent */
795 no_si = TRUE; /* don't delete it when '{' typed */
796 }
797 /*
798 * Look for "if" and the like, use 'cinwords'.
799 * Don't do this if the previous line ended in ';' or
800 * '}'.
801 */
802 else if (last_char != ';' && last_char != '}'
803 && cin_is_cinword(ptr))
804 did_si = TRUE;
805 }
806 }
807 else /* dir == BACKWARD */
808 {
809 /*
810 * Skip preprocessor directives, unless they are
811 * recognised as comments.
812 */
813 if (
814# ifdef FEAT_COMMENTS
815 lead_len == 0 &&
816# endif
817 ptr[0] == '#')
818 {
819 int was_backslashed = FALSE;
820
821 while ((ptr[0] == '#' || was_backslashed) &&
822 curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
823 {
824 if (*ptr && ptr[STRLEN(ptr) - 1] == '\\')
825 was_backslashed = TRUE;
826 else
827 was_backslashed = FALSE;
828 ptr = ml_get(++curwin->w_cursor.lnum);
829 }
830 if (was_backslashed)
831 newindent = 0; /* Got to end of file */
832 else
833 newindent = get_indent();
834 }
835 p = skipwhite(ptr);
836 if (*p == '}') /* if line starts with '}': do indent */
837 did_si = TRUE;
838 else /* can delete indent when '{' typed */
839 can_si_back = TRUE;
840 }
841 curwin->w_cursor = old_cursor;
842 }
843 if (do_si)
844 can_si = TRUE;
845#endif /* FEAT_SMARTINDENT */
846
847 did_ai = TRUE;
848 }
849
850#ifdef FEAT_COMMENTS
851 /*
852 * Find out if the current line starts with a comment leader.
853 * This may then be inserted in front of the new line.
854 */
855 end_comment_pending = NUL;
856 if (flags & OPENLINE_DO_COM)
Bram Moolenaar81340392012-06-06 16:12:59 +0200857 lead_len = get_leader_len(saved_line, &lead_flags, dir == BACKWARD, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 else
859 lead_len = 0;
860 if (lead_len > 0)
861 {
862 char_u *lead_repl = NULL; /* replaces comment leader */
863 int lead_repl_len = 0; /* length of *lead_repl */
864 char_u lead_middle[COM_MAX_LEN]; /* middle-comment string */
865 char_u lead_end[COM_MAX_LEN]; /* end-comment string */
866 char_u *comment_end = NULL; /* where lead_end has been found */
867 int extra_space = FALSE; /* append extra space */
868 int current_flag;
869 int require_blank = FALSE; /* requires blank after middle */
870 char_u *p2;
871
872 /*
873 * If the comment leader has the start, middle or end flag, it may not
874 * be used or may be replaced with the middle leader.
875 */
876 for (p = lead_flags; *p && *p != ':'; ++p)
877 {
878 if (*p == COM_BLANK)
879 {
880 require_blank = TRUE;
881 continue;
882 }
883 if (*p == COM_START || *p == COM_MIDDLE)
884 {
885 current_flag = *p;
886 if (*p == COM_START)
887 {
888 /*
889 * Doing "O" on a start of comment does not insert leader.
890 */
891 if (dir == BACKWARD)
892 {
893 lead_len = 0;
894 break;
895 }
896
897 /* find start of middle part */
898 (void)copy_option_part(&p, lead_middle, COM_MAX_LEN, ",");
899 require_blank = FALSE;
900 }
901
902 /*
903 * Isolate the strings of the middle and end leader.
904 */
905 while (*p && p[-1] != ':') /* find end of middle flags */
906 {
907 if (*p == COM_BLANK)
908 require_blank = TRUE;
909 ++p;
910 }
911 (void)copy_option_part(&p, lead_middle, COM_MAX_LEN, ",");
912
913 while (*p && p[-1] != ':') /* find end of end flags */
914 {
915 /* Check whether we allow automatic ending of comments */
916 if (*p == COM_AUTO_END)
917 end_comment_pending = -1; /* means we want to set it */
918 ++p;
919 }
920 n = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
921
922 if (end_comment_pending == -1) /* we can set it now */
923 end_comment_pending = lead_end[n - 1];
924
925 /*
926 * If the end of the comment is in the same line, don't use
927 * the comment leader.
928 */
929 if (dir == FORWARD)
930 {
931 for (p = saved_line + lead_len; *p; ++p)
932 if (STRNCMP(p, lead_end, n) == 0)
933 {
934 comment_end = p;
935 lead_len = 0;
936 break;
937 }
938 }
939
940 /*
941 * Doing "o" on a start of comment inserts the middle leader.
942 */
943 if (lead_len > 0)
944 {
945 if (current_flag == COM_START)
946 {
947 lead_repl = lead_middle;
948 lead_repl_len = (int)STRLEN(lead_middle);
949 }
950
951 /*
952 * If we have hit RETURN immediately after the start
953 * comment leader, then put a space after the middle
954 * comment leader on the next line.
955 */
956 if (!vim_iswhite(saved_line[lead_len - 1])
957 && ((p_extra != NULL
958 && (int)curwin->w_cursor.col == lead_len)
959 || (p_extra == NULL
960 && saved_line[lead_len] == NUL)
961 || require_blank))
962 extra_space = TRUE;
963 }
964 break;
965 }
966 if (*p == COM_END)
967 {
968 /*
969 * Doing "o" on the end of a comment does not insert leader.
970 * Remember where the end is, might want to use it to find the
971 * start (for C-comments).
972 */
973 if (dir == FORWARD)
974 {
975 comment_end = skipwhite(saved_line);
976 lead_len = 0;
977 break;
978 }
979
980 /*
981 * Doing "O" on the end of a comment inserts the middle leader.
982 * Find the string for the middle leader, searching backwards.
983 */
984 while (p > curbuf->b_p_com && *p != ',')
985 --p;
986 for (lead_repl = p; lead_repl > curbuf->b_p_com
987 && lead_repl[-1] != ':'; --lead_repl)
988 ;
989 lead_repl_len = (int)(p - lead_repl);
990
991 /* We can probably always add an extra space when doing "O" on
992 * the comment-end */
993 extra_space = TRUE;
994
995 /* Check whether we allow automatic ending of comments */
996 for (p2 = p; *p2 && *p2 != ':'; p2++)
997 {
998 if (*p2 == COM_AUTO_END)
999 end_comment_pending = -1; /* means we want to set it */
1000 }
1001 if (end_comment_pending == -1)
1002 {
1003 /* Find last character in end-comment string */
1004 while (*p2 && *p2 != ',')
1005 p2++;
1006 end_comment_pending = p2[-1];
1007 }
1008 break;
1009 }
1010 if (*p == COM_FIRST)
1011 {
1012 /*
1013 * Comment leader for first line only: Don't repeat leader
1014 * when using "O", blank out leader when using "o".
1015 */
1016 if (dir == BACKWARD)
1017 lead_len = 0;
1018 else
1019 {
1020 lead_repl = (char_u *)"";
1021 lead_repl_len = 0;
1022 }
1023 break;
1024 }
1025 }
1026 if (lead_len)
1027 {
Bram Moolenaardc7e85e2012-06-20 12:40:08 +02001028 /* allocate buffer (may concatenate p_extra later) */
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001029 leader = alloc(lead_len + lead_repl_len + extra_space + extra_len
Bram Moolenaardc7e85e2012-06-20 12:40:08 +02001030 + (second_line_indent > 0 ? second_line_indent : 0) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 allocated = leader; /* remember to free it later */
1032
1033 if (leader == NULL)
1034 lead_len = 0;
1035 else
1036 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00001037 vim_strncpy(leader, saved_line, lead_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038
1039 /*
1040 * Replace leader with lead_repl, right or left adjusted
1041 */
1042 if (lead_repl != NULL)
1043 {
1044 int c = 0;
1045 int off = 0;
1046
Bram Moolenaard7d5b472009-11-11 16:30:08 +00001047 for (p = lead_flags; *p != NUL && *p != ':'; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 {
1049 if (*p == COM_RIGHT || *p == COM_LEFT)
Bram Moolenaard7d5b472009-11-11 16:30:08 +00001050 c = *p++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 else if (VIM_ISDIGIT(*p) || *p == '-')
1052 off = getdigits(&p);
Bram Moolenaard7d5b472009-11-11 16:30:08 +00001053 else
1054 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055 }
1056 if (c == COM_RIGHT) /* right adjusted leader */
1057 {
1058 /* find last non-white in the leader to line up with */
1059 for (p = leader + lead_len - 1; p > leader
1060 && vim_iswhite(*p); --p)
1061 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062 ++p;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001063
1064#ifdef FEAT_MBYTE
1065 /* Compute the length of the replaced characters in
1066 * screen characters, not bytes. */
1067 {
1068 int repl_size = vim_strnsize(lead_repl,
1069 lead_repl_len);
1070 int old_size = 0;
1071 char_u *endp = p;
1072 int l;
1073
1074 while (old_size < repl_size && p > leader)
1075 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001076 mb_ptr_back(leader, p);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001077 old_size += ptr2cells(p);
1078 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001079 l = lead_repl_len - (int)(endp - p);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001080 if (l != 0)
1081 mch_memmove(endp + l, endp,
1082 (size_t)((leader + lead_len) - endp));
1083 lead_len += l;
1084 }
1085#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086 if (p < leader + lead_repl_len)
1087 p = leader;
1088 else
1089 p -= lead_repl_len;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001090#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 mch_memmove(p, lead_repl, (size_t)lead_repl_len);
1092 if (p + lead_repl_len > leader + lead_len)
1093 p[lead_repl_len] = NUL;
1094
1095 /* blank-out any other chars from the old leader. */
1096 while (--p >= leader)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001097 {
1098#ifdef FEAT_MBYTE
1099 int l = mb_head_off(leader, p);
1100
1101 if (l > 1)
1102 {
1103 p -= l;
1104 if (ptr2cells(p) > 1)
1105 {
1106 p[1] = ' ';
1107 --l;
1108 }
1109 mch_memmove(p + 1, p + l + 1,
1110 (size_t)((leader + lead_len) - (p + l + 1)));
1111 lead_len -= l;
1112 *p = ' ';
1113 }
1114 else
1115#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 if (!vim_iswhite(*p))
1117 *p = ' ';
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001118 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119 }
1120 else /* left adjusted leader */
1121 {
1122 p = skipwhite(leader);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001123#ifdef FEAT_MBYTE
1124 /* Compute the length of the replaced characters in
1125 * screen characters, not bytes. Move the part that is
1126 * not to be overwritten. */
1127 {
1128 int repl_size = vim_strnsize(lead_repl,
1129 lead_repl_len);
1130 int i;
1131 int l;
1132
1133 for (i = 0; p[i] != NUL && i < lead_len; i += l)
1134 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001135 l = (*mb_ptr2len)(p + i);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001136 if (vim_strnsize(p, i + l) > repl_size)
1137 break;
1138 }
1139 if (i != lead_repl_len)
1140 {
1141 mch_memmove(p + lead_repl_len, p + i,
Bram Moolenaar2d7ff052009-11-17 15:08:26 +00001142 (size_t)(lead_len - i - (p - leader)));
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001143 lead_len += lead_repl_len - i;
1144 }
1145 }
1146#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147 mch_memmove(p, lead_repl, (size_t)lead_repl_len);
1148
1149 /* Replace any remaining non-white chars in the old
1150 * leader by spaces. Keep Tabs, the indent must
1151 * remain the same. */
1152 for (p += lead_repl_len; p < leader + lead_len; ++p)
1153 if (!vim_iswhite(*p))
1154 {
1155 /* Don't put a space before a TAB. */
1156 if (p + 1 < leader + lead_len && p[1] == TAB)
1157 {
1158 --lead_len;
1159 mch_memmove(p, p + 1,
1160 (leader + lead_len) - p);
1161 }
1162 else
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001163 {
1164#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001165 int l = (*mb_ptr2len)(p);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001166
1167 if (l > 1)
1168 {
1169 if (ptr2cells(p) > 1)
1170 {
1171 /* Replace a double-wide char with
1172 * two spaces */
1173 --l;
1174 *p++ = ' ';
1175 }
1176 mch_memmove(p + 1, p + l,
1177 (leader + lead_len) - p);
1178 lead_len -= l - 1;
1179 }
1180#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 *p = ' ';
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001182 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 }
1184 *p = NUL;
1185 }
1186
1187 /* Recompute the indent, it may have changed. */
1188 if (curbuf->b_p_ai
1189#ifdef FEAT_SMARTINDENT
1190 || do_si
1191#endif
1192 )
1193 newindent = get_indent_str(leader, (int)curbuf->b_p_ts);
1194
1195 /* Add the indent offset */
1196 if (newindent + off < 0)
1197 {
1198 off = -newindent;
1199 newindent = 0;
1200 }
1201 else
1202 newindent += off;
1203
1204 /* Correct trailing spaces for the shift, so that
1205 * alignment remains equal. */
1206 while (off > 0 && lead_len > 0
1207 && leader[lead_len - 1] == ' ')
1208 {
1209 /* Don't do it when there is a tab before the space */
1210 if (vim_strchr(skipwhite(leader), '\t') != NULL)
1211 break;
1212 --lead_len;
1213 --off;
1214 }
1215
1216 /* If the leader ends in white space, don't add an
1217 * extra space */
1218 if (lead_len > 0 && vim_iswhite(leader[lead_len - 1]))
1219 extra_space = FALSE;
1220 leader[lead_len] = NUL;
1221 }
1222
1223 if (extra_space)
1224 {
1225 leader[lead_len++] = ' ';
1226 leader[lead_len] = NUL;
1227 }
1228
1229 newcol = lead_len;
1230
1231 /*
1232 * if a new indent will be set below, remove the indent that
1233 * is in the comment leader
1234 */
1235 if (newindent
1236#ifdef FEAT_SMARTINDENT
1237 || did_si
1238#endif
1239 )
1240 {
1241 while (lead_len && vim_iswhite(*leader))
1242 {
1243 --lead_len;
1244 --newcol;
1245 ++leader;
1246 }
1247 }
1248
1249 }
1250#ifdef FEAT_SMARTINDENT
1251 did_si = can_si = FALSE;
1252#endif
1253 }
1254 else if (comment_end != NULL)
1255 {
1256 /*
1257 * We have finished a comment, so we don't use the leader.
1258 * If this was a C-comment and 'ai' or 'si' is set do a normal
1259 * indent to align with the line containing the start of the
1260 * comment.
1261 */
1262 if (comment_end[0] == '*' && comment_end[1] == '/' &&
1263 (curbuf->b_p_ai
1264#ifdef FEAT_SMARTINDENT
1265 || do_si
1266#endif
1267 ))
1268 {
1269 old_cursor = curwin->w_cursor;
1270 curwin->w_cursor.col = (colnr_T)(comment_end - saved_line);
1271 if ((pos = findmatch(NULL, NUL)) != NULL)
1272 {
1273 curwin->w_cursor.lnum = pos->lnum;
1274 newindent = get_indent();
1275 }
1276 curwin->w_cursor = old_cursor;
1277 }
1278 }
1279 }
1280#endif
1281
1282 /* (State == INSERT || State == REPLACE), only when dir == FORWARD */
1283 if (p_extra != NULL)
1284 {
1285 *p_extra = saved_char; /* restore char that NUL replaced */
1286
1287 /*
1288 * When 'ai' set or "flags" has OPENLINE_DELSPACES, skip to the first
1289 * non-blank.
1290 *
1291 * When in REPLACE mode, put the deleted blanks on the replace stack,
1292 * preceded by a NUL, so they can be put back when a BS is entered.
1293 */
1294 if (REPLACE_NORMAL(State))
1295 replace_push(NUL); /* end of extra blanks */
1296 if (curbuf->b_p_ai || (flags & OPENLINE_DELSPACES))
1297 {
1298 while ((*p_extra == ' ' || *p_extra == '\t')
1299#ifdef FEAT_MBYTE
1300 && (!enc_utf8
1301 || !utf_iscomposing(utf_ptr2char(p_extra + 1)))
1302#endif
1303 )
1304 {
1305 if (REPLACE_NORMAL(State))
1306 replace_push(*p_extra);
1307 ++p_extra;
1308 ++less_cols_off;
1309 }
1310 }
1311 if (*p_extra != NUL)
1312 did_ai = FALSE; /* append some text, don't truncate now */
1313
1314 /* columns for marks adjusted for removed columns */
1315 less_cols = (int)(p_extra - saved_line);
1316 }
1317
1318 if (p_extra == NULL)
1319 p_extra = (char_u *)""; /* append empty line */
1320
1321#ifdef FEAT_COMMENTS
1322 /* concatenate leader and p_extra, if there is a leader */
1323 if (lead_len)
1324 {
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001325 if (flags & OPENLINE_COM_LIST && second_line_indent > 0)
1326 {
1327 int i;
Bram Moolenaar36105782012-06-14 20:59:25 +02001328 int padding = second_line_indent
1329 - (newindent + (int)STRLEN(leader));
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001330
1331 /* Here whitespace is inserted after the comment char.
1332 * Below, set_indent(newindent, SIN_INSERT) will insert the
1333 * whitespace needed before the comment char. */
1334 for (i = 0; i < padding; i++)
1335 {
1336 STRCAT(leader, " ");
Bram Moolenaar5fb9ec52012-07-25 16:10:03 +02001337 less_cols--;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001338 newcol++;
1339 }
1340 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 STRCAT(leader, p_extra);
1342 p_extra = leader;
1343 did_ai = TRUE; /* So truncating blanks works with comments */
1344 less_cols -= lead_len;
1345 }
1346 else
1347 end_comment_pending = NUL; /* turns out there was no leader */
1348#endif
1349
1350 old_cursor = curwin->w_cursor;
1351 if (dir == BACKWARD)
1352 --curwin->w_cursor.lnum;
1353#ifdef FEAT_VREPLACE
1354 if (!(State & VREPLACE_FLAG) || old_cursor.lnum >= orig_line_count)
1355#endif
1356 {
1357 if (ml_append(curwin->w_cursor.lnum, p_extra, (colnr_T)0, FALSE)
1358 == FAIL)
1359 goto theend;
1360 /* Postpone calling changed_lines(), because it would mess up folding
1361 * with markers. */
1362 mark_adjust(curwin->w_cursor.lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
1363 did_append = TRUE;
1364 }
1365#ifdef FEAT_VREPLACE
1366 else
1367 {
1368 /*
1369 * In VREPLACE mode we are starting to replace the next line.
1370 */
1371 curwin->w_cursor.lnum++;
1372 if (curwin->w_cursor.lnum >= Insstart.lnum + vr_lines_changed)
1373 {
1374 /* In case we NL to a new line, BS to the previous one, and NL
1375 * again, we don't want to save the new line for undo twice.
1376 */
1377 (void)u_save_cursor(); /* errors are ignored! */
1378 vr_lines_changed++;
1379 }
1380 ml_replace(curwin->w_cursor.lnum, p_extra, TRUE);
1381 changed_bytes(curwin->w_cursor.lnum, 0);
1382 curwin->w_cursor.lnum--;
1383 did_append = FALSE;
1384 }
1385#endif
1386
1387 if (newindent
1388#ifdef FEAT_SMARTINDENT
1389 || did_si
1390#endif
1391 )
1392 {
1393 ++curwin->w_cursor.lnum;
1394#ifdef FEAT_SMARTINDENT
1395 if (did_si)
1396 {
Bram Moolenaar14f24742012-08-08 18:01:05 +02001397 int sw = (int)get_sw_value();
1398
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 if (p_sr)
Bram Moolenaar14f24742012-08-08 18:01:05 +02001400 newindent -= newindent % sw;
1401 newindent += sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 }
1403#endif
Bram Moolenaar5002c292007-07-24 13:26:15 +00001404 /* Copy the indent */
1405 if (curbuf->b_p_ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406 {
1407 (void)copy_indent(newindent, saved_line);
1408
1409 /*
1410 * Set the 'preserveindent' option so that any further screwing
1411 * with the line doesn't entirely destroy our efforts to preserve
1412 * it. It gets restored at the function end.
1413 */
1414 curbuf->b_p_pi = TRUE;
1415 }
1416 else
1417 (void)set_indent(newindent, SIN_INSERT);
1418 less_cols -= curwin->w_cursor.col;
1419
1420 ai_col = curwin->w_cursor.col;
1421
1422 /*
1423 * In REPLACE mode, for each character in the new indent, there must
1424 * be a NUL on the replace stack, for when it is deleted with BS
1425 */
1426 if (REPLACE_NORMAL(State))
1427 for (n = 0; n < (int)curwin->w_cursor.col; ++n)
1428 replace_push(NUL);
1429 newcol += curwin->w_cursor.col;
1430#ifdef FEAT_SMARTINDENT
1431 if (no_si)
1432 did_si = FALSE;
1433#endif
1434 }
1435
1436#ifdef FEAT_COMMENTS
1437 /*
1438 * In REPLACE mode, for each character in the extra leader, there must be
1439 * a NUL on the replace stack, for when it is deleted with BS.
1440 */
1441 if (REPLACE_NORMAL(State))
1442 while (lead_len-- > 0)
1443 replace_push(NUL);
1444#endif
1445
1446 curwin->w_cursor = old_cursor;
1447
1448 if (dir == FORWARD)
1449 {
1450 if (trunc_line || (State & INSERT))
1451 {
1452 /* truncate current line at cursor */
1453 saved_line[curwin->w_cursor.col] = NUL;
1454 /* Remove trailing white space, unless OPENLINE_KEEPTRAIL used. */
1455 if (trunc_line && !(flags & OPENLINE_KEEPTRAIL))
1456 truncate_spaces(saved_line);
1457 ml_replace(curwin->w_cursor.lnum, saved_line, FALSE);
1458 saved_line = NULL;
1459 if (did_append)
1460 {
1461 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1462 curwin->w_cursor.lnum + 1, 1L);
1463 did_append = FALSE;
1464
1465 /* Move marks after the line break to the new line. */
1466 if (flags & OPENLINE_MARKFIX)
1467 mark_col_adjust(curwin->w_cursor.lnum,
1468 curwin->w_cursor.col + less_cols_off,
1469 1L, (long)-less_cols);
1470 }
1471 else
1472 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
1473 }
1474
1475 /*
1476 * Put the cursor on the new line. Careful: the scrollup() above may
1477 * have moved w_cursor, we must use old_cursor.
1478 */
1479 curwin->w_cursor.lnum = old_cursor.lnum + 1;
1480 }
1481 if (did_append)
1482 changed_lines(curwin->w_cursor.lnum, 0, curwin->w_cursor.lnum, 1L);
1483
1484 curwin->w_cursor.col = newcol;
1485#ifdef FEAT_VIRTUALEDIT
1486 curwin->w_cursor.coladd = 0;
1487#endif
1488
1489#if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
1490 /*
1491 * In VREPLACE mode, we are handling the replace stack ourselves, so stop
1492 * fixthisline() from doing it (via change_indent()) by telling it we're in
1493 * normal INSERT mode.
1494 */
1495 if (State & VREPLACE_FLAG)
1496 {
1497 vreplace_mode = State; /* So we know to put things right later */
1498 State = INSERT;
1499 }
1500 else
1501 vreplace_mode = 0;
1502#endif
1503#ifdef FEAT_LISP
1504 /*
1505 * May do lisp indenting.
1506 */
1507 if (!p_paste
1508# ifdef FEAT_COMMENTS
1509 && leader == NULL
1510# endif
1511 && curbuf->b_p_lisp
1512 && curbuf->b_p_ai)
1513 {
1514 fixthisline(get_lisp_indent);
1515 p = ml_get_curline();
1516 ai_col = (colnr_T)(skipwhite(p) - p);
1517 }
1518#endif
1519#ifdef FEAT_CINDENT
1520 /*
1521 * May do indenting after opening a new line.
1522 */
1523 if (!p_paste
1524 && (curbuf->b_p_cin
1525# ifdef FEAT_EVAL
1526 || *curbuf->b_p_inde != NUL
1527# endif
1528 )
1529 && in_cinkeys(dir == FORWARD
1530 ? KEY_OPEN_FORW
1531 : KEY_OPEN_BACK, ' ', linewhite(curwin->w_cursor.lnum)))
1532 {
1533 do_c_expr_indent();
1534 p = ml_get_curline();
1535 ai_col = (colnr_T)(skipwhite(p) - p);
1536 }
1537#endif
1538#if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
1539 if (vreplace_mode != 0)
1540 State = vreplace_mode;
1541#endif
1542
1543#ifdef FEAT_VREPLACE
1544 /*
1545 * Finally, VREPLACE gets the stuff on the new line, then puts back the
1546 * original line, and inserts the new stuff char by char, pushing old stuff
1547 * onto the replace stack (via ins_char()).
1548 */
1549 if (State & VREPLACE_FLAG)
1550 {
1551 /* Put new line in p_extra */
1552 p_extra = vim_strsave(ml_get_curline());
1553 if (p_extra == NULL)
1554 goto theend;
1555
1556 /* Put back original line */
1557 ml_replace(curwin->w_cursor.lnum, next_line, FALSE);
1558
1559 /* Insert new stuff into line again */
1560 curwin->w_cursor.col = 0;
1561#ifdef FEAT_VIRTUALEDIT
1562 curwin->w_cursor.coladd = 0;
1563#endif
1564 ins_bytes(p_extra); /* will call changed_bytes() */
1565 vim_free(p_extra);
1566 next_line = NULL;
1567 }
1568#endif
1569
1570 retval = TRUE; /* success! */
1571theend:
1572 curbuf->b_p_pi = saved_pi;
1573 vim_free(saved_line);
1574 vim_free(next_line);
1575 vim_free(allocated);
1576 return retval;
1577}
1578
1579#if defined(FEAT_COMMENTS) || defined(PROTO)
1580/*
1581 * get_leader_len() returns the length of the prefix of the given string
1582 * which introduces a comment. If this string is not a comment then 0 is
1583 * returned.
1584 * When "flags" is not NULL, it is set to point to the flags of the recognized
1585 * comment leader.
1586 * "backward" must be true for the "O" command.
Bram Moolenaar81340392012-06-06 16:12:59 +02001587 * If "include_space" is set, include trailing whitespace while calculating the
1588 * length.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 */
1590 int
Bram Moolenaar81340392012-06-06 16:12:59 +02001591get_leader_len(line, flags, backward, include_space)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592 char_u *line;
1593 char_u **flags;
1594 int backward;
Bram Moolenaar81340392012-06-06 16:12:59 +02001595 int include_space;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596{
1597 int i, j;
Bram Moolenaar81340392012-06-06 16:12:59 +02001598 int result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 int got_com = FALSE;
1600 int found_one;
1601 char_u part_buf[COM_MAX_LEN]; /* buffer for one option part */
1602 char_u *string; /* pointer to comment string */
1603 char_u *list;
Bram Moolenaara4271d52011-05-10 13:38:27 +02001604 int middle_match_len = 0;
1605 char_u *prev_list;
Bram Moolenaar05da4282011-05-10 14:44:11 +02001606 char_u *saved_flags = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607
Bram Moolenaar81340392012-06-06 16:12:59 +02001608 result = i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609 while (vim_iswhite(line[i])) /* leading white space is ignored */
1610 ++i;
1611
1612 /*
1613 * Repeat to match several nested comment strings.
1614 */
Bram Moolenaara4271d52011-05-10 13:38:27 +02001615 while (line[i] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 {
1617 /*
1618 * scan through the 'comments' option for a match
1619 */
1620 found_one = FALSE;
1621 for (list = curbuf->b_p_com; *list; )
1622 {
Bram Moolenaara4271d52011-05-10 13:38:27 +02001623 /* Get one option part into part_buf[]. Advance "list" to next
1624 * one. Put "string" at start of string. */
1625 if (!got_com && flags != NULL)
1626 *flags = list; /* remember where flags started */
1627 prev_list = list;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 (void)copy_option_part(&list, part_buf, COM_MAX_LEN, ",");
1629 string = vim_strchr(part_buf, ':');
1630 if (string == NULL) /* missing ':', ignore this part */
1631 continue;
1632 *string++ = NUL; /* isolate flags from string */
1633
Bram Moolenaara4271d52011-05-10 13:38:27 +02001634 /* If we found a middle match previously, use that match when this
1635 * is not a middle or end. */
1636 if (middle_match_len != 0
1637 && vim_strchr(part_buf, COM_MIDDLE) == NULL
1638 && vim_strchr(part_buf, COM_END) == NULL)
1639 break;
1640
1641 /* When we already found a nested comment, only accept further
1642 * nested comments. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 if (got_com && vim_strchr(part_buf, COM_NEST) == NULL)
1644 continue;
1645
Bram Moolenaara4271d52011-05-10 13:38:27 +02001646 /* When 'O' flag present and using "O" command skip this one. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 if (backward && vim_strchr(part_buf, COM_NOBACK) != NULL)
1648 continue;
1649
Bram Moolenaara4271d52011-05-10 13:38:27 +02001650 /* Line contents and string must match.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651 * When string starts with white space, must have some white space
1652 * (but the amount does not need to match, there might be a mix of
Bram Moolenaara4271d52011-05-10 13:38:27 +02001653 * TABs and spaces). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 if (vim_iswhite(string[0]))
1655 {
1656 if (i == 0 || !vim_iswhite(line[i - 1]))
Bram Moolenaara4271d52011-05-10 13:38:27 +02001657 continue; /* missing shite space */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658 while (vim_iswhite(string[0]))
1659 ++string;
1660 }
1661 for (j = 0; string[j] != NUL && string[j] == line[i + j]; ++j)
1662 ;
1663 if (string[j] != NUL)
Bram Moolenaara4271d52011-05-10 13:38:27 +02001664 continue; /* string doesn't match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665
Bram Moolenaara4271d52011-05-10 13:38:27 +02001666 /* When 'b' flag used, there must be white space or an
1667 * end-of-line after the string in the line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 if (vim_strchr(part_buf, COM_BLANK) != NULL
1669 && !vim_iswhite(line[i + j]) && line[i + j] != NUL)
1670 continue;
1671
Bram Moolenaara4271d52011-05-10 13:38:27 +02001672 /* We have found a match, stop searching unless this is a middle
1673 * comment. The middle comment can be a substring of the end
1674 * comment in which case it's better to return the length of the
1675 * end comment and its flags. Thus we keep searching with middle
1676 * and end matches and use an end match if it matches better. */
1677 if (vim_strchr(part_buf, COM_MIDDLE) != NULL)
1678 {
1679 if (middle_match_len == 0)
1680 {
1681 middle_match_len = j;
1682 saved_flags = prev_list;
1683 }
1684 continue;
1685 }
1686 if (middle_match_len != 0 && j > middle_match_len)
1687 /* Use this match instead of the middle match, since it's a
1688 * longer thus better match. */
1689 middle_match_len = 0;
1690
1691 if (middle_match_len == 0)
1692 i += j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 found_one = TRUE;
1694 break;
1695 }
1696
Bram Moolenaara4271d52011-05-10 13:38:27 +02001697 if (middle_match_len != 0)
1698 {
1699 /* Use the previously found middle match after failing to find a
1700 * match with an end. */
1701 if (!got_com && flags != NULL)
1702 *flags = saved_flags;
1703 i += middle_match_len;
1704 found_one = TRUE;
1705 }
1706
1707 /* No match found, stop scanning. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708 if (!found_one)
1709 break;
1710
Bram Moolenaar81340392012-06-06 16:12:59 +02001711 result = i;
1712
Bram Moolenaara4271d52011-05-10 13:38:27 +02001713 /* Include any trailing white space. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 while (vim_iswhite(line[i]))
1715 ++i;
1716
Bram Moolenaar81340392012-06-06 16:12:59 +02001717 if (include_space)
1718 result = i;
1719
Bram Moolenaara4271d52011-05-10 13:38:27 +02001720 /* If this comment doesn't nest, stop here. */
1721 got_com = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 if (vim_strchr(part_buf, COM_NEST) == NULL)
1723 break;
1724 }
Bram Moolenaar81340392012-06-06 16:12:59 +02001725 return result;
1726}
Bram Moolenaara4271d52011-05-10 13:38:27 +02001727
Bram Moolenaar81340392012-06-06 16:12:59 +02001728/*
1729 * Return the offset at which the last comment in line starts. If there is no
1730 * comment in the whole line, -1 is returned.
1731 *
1732 * When "flags" is not null, it is set to point to the flags describing the
1733 * recognized comment leader.
1734 */
1735 int
1736get_last_leader_offset(line, flags)
1737 char_u *line;
1738 char_u **flags;
1739{
1740 int result = -1;
1741 int i, j;
1742 int lower_check_bound = 0;
1743 char_u *string;
1744 char_u *com_leader;
1745 char_u *com_flags;
1746 char_u *list;
1747 int found_one;
1748 char_u part_buf[COM_MAX_LEN]; /* buffer for one option part */
1749
1750 /*
1751 * Repeat to match several nested comment strings.
1752 */
1753 i = (int)STRLEN(line);
1754 while (--i >= lower_check_bound)
1755 {
1756 /*
1757 * scan through the 'comments' option for a match
1758 */
1759 found_one = FALSE;
1760 for (list = curbuf->b_p_com; *list; )
1761 {
1762 char_u *flags_save = list;
1763
1764 /*
1765 * Get one option part into part_buf[]. Advance list to next one.
1766 * put string at start of string.
1767 */
1768 (void)copy_option_part(&list, part_buf, COM_MAX_LEN, ",");
1769 string = vim_strchr(part_buf, ':');
1770 if (string == NULL) /* If everything is fine, this cannot actually
1771 * happen. */
1772 {
1773 continue;
1774 }
1775 *string++ = NUL; /* Isolate flags from string. */
1776 com_leader = string;
1777
1778 /*
1779 * Line contents and string must match.
1780 * When string starts with white space, must have some white space
1781 * (but the amount does not need to match, there might be a mix of
1782 * TABs and spaces).
1783 */
1784 if (vim_iswhite(string[0]))
1785 {
1786 if (i == 0 || !vim_iswhite(line[i - 1]))
1787 continue;
1788 while (vim_iswhite(string[0]))
1789 ++string;
1790 }
1791 for (j = 0; string[j] != NUL && string[j] == line[i + j]; ++j)
1792 /* do nothing */;
1793 if (string[j] != NUL)
1794 continue;
1795
1796 /*
1797 * When 'b' flag used, there must be white space or an
1798 * end-of-line after the string in the line.
1799 */
1800 if (vim_strchr(part_buf, COM_BLANK) != NULL
1801 && !vim_iswhite(line[i + j]) && line[i + j] != NUL)
1802 {
1803 continue;
1804 }
1805
1806 /*
1807 * We have found a match, stop searching.
1808 */
1809 found_one = TRUE;
1810
1811 if (flags)
1812 *flags = flags_save;
1813 com_flags = flags_save;
1814
1815 break;
1816 }
1817
1818 if (found_one)
1819 {
1820 char_u part_buf2[COM_MAX_LEN]; /* buffer for one option part */
1821 int len1, len2, off;
1822
1823 result = i;
1824 /*
1825 * If this comment nests, continue searching.
1826 */
1827 if (vim_strchr(part_buf, COM_NEST) != NULL)
1828 continue;
1829
1830 lower_check_bound = i;
1831
1832 /* Let's verify whether the comment leader found is a substring
1833 * of other comment leaders. If it is, let's adjust the
1834 * lower_check_bound so that we make sure that we have determined
1835 * the comment leader correctly.
1836 */
1837
1838 while (vim_iswhite(*com_leader))
1839 ++com_leader;
1840 len1 = (int)STRLEN(com_leader);
1841
1842 for (list = curbuf->b_p_com; *list; )
1843 {
1844 char_u *flags_save = list;
1845
1846 (void)copy_option_part(&list, part_buf2, COM_MAX_LEN, ",");
1847 if (flags_save == com_flags)
1848 continue;
1849 string = vim_strchr(part_buf2, ':');
1850 ++string;
1851 while (vim_iswhite(*string))
1852 ++string;
1853 len2 = (int)STRLEN(string);
1854 if (len2 == 0)
1855 continue;
1856
1857 /* Now we have to verify whether string ends with a substring
1858 * beginning the com_leader. */
1859 for (off = (len2 > i ? i : len2); off > 0 && off + len1 > len2;)
1860 {
1861 --off;
1862 if (!STRNCMP(string + off, com_leader, len2 - off))
1863 {
1864 if (i - off < lower_check_bound)
1865 lower_check_bound = i - off;
1866 }
1867 }
1868 }
1869 }
1870 }
1871 return result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872}
1873#endif
1874
1875/*
1876 * Return the number of window lines occupied by buffer line "lnum".
1877 */
1878 int
1879plines(lnum)
1880 linenr_T lnum;
1881{
1882 return plines_win(curwin, lnum, TRUE);
1883}
1884
1885 int
1886plines_win(wp, lnum, winheight)
1887 win_T *wp;
1888 linenr_T lnum;
1889 int winheight; /* when TRUE limit to window height */
1890{
1891#if defined(FEAT_DIFF) || defined(PROTO)
1892 /* Check for filler lines above this buffer line. When folded the result
1893 * is one line anyway. */
1894 return plines_win_nofill(wp, lnum, winheight) + diff_check_fill(wp, lnum);
1895}
1896
1897 int
1898plines_nofill(lnum)
1899 linenr_T lnum;
1900{
1901 return plines_win_nofill(curwin, lnum, TRUE);
1902}
1903
1904 int
1905plines_win_nofill(wp, lnum, winheight)
1906 win_T *wp;
1907 linenr_T lnum;
1908 int winheight; /* when TRUE limit to window height */
1909{
1910#endif
1911 int lines;
1912
1913 if (!wp->w_p_wrap)
1914 return 1;
1915
1916#ifdef FEAT_VERTSPLIT
1917 if (wp->w_width == 0)
1918 return 1;
1919#endif
1920
1921#ifdef FEAT_FOLDING
1922 /* A folded lines is handled just like an empty line. */
1923 /* NOTE: Caller must handle lines that are MAYBE folded. */
1924 if (lineFolded(wp, lnum) == TRUE)
1925 return 1;
1926#endif
1927
1928 lines = plines_win_nofold(wp, lnum);
1929 if (winheight > 0 && lines > wp->w_height)
1930 return (int)wp->w_height;
1931 return lines;
1932}
1933
1934/*
1935 * Return number of window lines physical line "lnum" will occupy in window
1936 * "wp". Does not care about folding, 'wrap' or 'diff'.
1937 */
1938 int
1939plines_win_nofold(wp, lnum)
1940 win_T *wp;
1941 linenr_T lnum;
1942{
1943 char_u *s;
1944 long col;
1945 int width;
1946
1947 s = ml_get_buf(wp->w_buffer, lnum, FALSE);
1948 if (*s == NUL) /* empty line */
1949 return 1;
1950 col = win_linetabsize(wp, s, (colnr_T)MAXCOL);
1951
1952 /*
1953 * If list mode is on, then the '$' at the end of the line may take up one
1954 * extra column.
1955 */
1956 if (wp->w_p_list && lcs_eol != NUL)
1957 col += 1;
1958
1959 /*
Bram Moolenaar64486672010-05-16 15:46:46 +02001960 * Add column offset for 'number', 'relativenumber' and 'foldcolumn'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 */
1962 width = W_WIDTH(wp) - win_col_off(wp);
1963 if (width <= 0)
1964 return 32000;
1965 if (col <= width)
1966 return 1;
1967 col -= width;
1968 width += win_col_off2(wp);
1969 return (col + (width - 1)) / width + 1;
1970}
1971
1972/*
1973 * Like plines_win(), but only reports the number of physical screen lines
1974 * used from the start of the line to the given column number.
1975 */
1976 int
1977plines_win_col(wp, lnum, column)
1978 win_T *wp;
1979 linenr_T lnum;
1980 long column;
1981{
1982 long col;
1983 char_u *s;
1984 int lines = 0;
1985 int width;
1986
1987#ifdef FEAT_DIFF
1988 /* Check for filler lines above this buffer line. When folded the result
1989 * is one line anyway. */
1990 lines = diff_check_fill(wp, lnum);
1991#endif
1992
1993 if (!wp->w_p_wrap)
1994 return lines + 1;
1995
1996#ifdef FEAT_VERTSPLIT
1997 if (wp->w_width == 0)
1998 return lines + 1;
1999#endif
2000
2001 s = ml_get_buf(wp->w_buffer, lnum, FALSE);
2002
2003 col = 0;
2004 while (*s != NUL && --column >= 0)
2005 {
2006 col += win_lbr_chartabsize(wp, s, (colnr_T)col, NULL);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002007 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008 }
2009
2010 /*
2011 * If *s is a TAB, and the TAB is not displayed as ^I, and we're not in
2012 * INSERT mode, then col must be adjusted so that it represents the last
2013 * screen position of the TAB. This only fixes an error when the TAB wraps
2014 * from one screen line to the next (when 'columns' is not a multiple of
2015 * 'ts') -- webb.
2016 */
2017 if (*s == TAB && (State & NORMAL) && (!wp->w_p_list || lcs_tab1))
2018 col += win_lbr_chartabsize(wp, s, (colnr_T)col, NULL) - 1;
2019
2020 /*
Bram Moolenaar64486672010-05-16 15:46:46 +02002021 * Add column offset for 'number', 'relativenumber', 'foldcolumn', etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022 */
2023 width = W_WIDTH(wp) - win_col_off(wp);
Bram Moolenaar26470632006-10-24 19:12:40 +00002024 if (width <= 0)
2025 return 9999;
2026
2027 lines += 1;
2028 if (col > width)
2029 lines += (col - width) / (width + win_col_off2(wp)) + 1;
2030 return lines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031}
2032
2033 int
2034plines_m_win(wp, first, last)
2035 win_T *wp;
2036 linenr_T first, last;
2037{
2038 int count = 0;
2039
2040 while (first <= last)
2041 {
2042#ifdef FEAT_FOLDING
2043 int x;
2044
2045 /* Check if there are any really folded lines, but also included lines
2046 * that are maybe folded. */
2047 x = foldedCount(wp, first, NULL);
2048 if (x > 0)
2049 {
2050 ++count; /* count 1 for "+-- folded" line */
2051 first += x;
2052 }
2053 else
2054#endif
2055 {
2056#ifdef FEAT_DIFF
2057 if (first == wp->w_topline)
2058 count += plines_win_nofill(wp, first, TRUE) + wp->w_topfill;
2059 else
2060#endif
2061 count += plines_win(wp, first, TRUE);
2062 ++first;
2063 }
2064 }
2065 return (count);
2066}
2067
2068#if defined(FEAT_VREPLACE) || defined(FEAT_INS_EXPAND) || defined(PROTO)
2069/*
2070 * Insert string "p" at the cursor position. Stops at a NUL byte.
2071 * Handles Replace mode and multi-byte characters.
2072 */
2073 void
2074ins_bytes(p)
2075 char_u *p;
2076{
2077 ins_bytes_len(p, (int)STRLEN(p));
2078}
2079#endif
2080
2081#if defined(FEAT_VREPLACE) || defined(FEAT_INS_EXPAND) \
2082 || defined(FEAT_COMMENTS) || defined(FEAT_MBYTE) || defined(PROTO)
2083/*
2084 * Insert string "p" with length "len" at the cursor position.
2085 * Handles Replace mode and multi-byte characters.
2086 */
2087 void
2088ins_bytes_len(p, len)
2089 char_u *p;
2090 int len;
2091{
2092 int i;
2093# ifdef FEAT_MBYTE
2094 int n;
2095
Bram Moolenaar176dd1e2008-06-21 14:30:28 +00002096 if (has_mbyte)
2097 for (i = 0; i < len; i += n)
2098 {
2099 if (enc_utf8)
2100 /* avoid reading past p[len] */
2101 n = utfc_ptr2len_len(p + i, len - i);
2102 else
2103 n = (*mb_ptr2len)(p + i);
2104 ins_char_bytes(p + i, n);
2105 }
2106 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107# endif
Bram Moolenaar176dd1e2008-06-21 14:30:28 +00002108 for (i = 0; i < len; ++i)
2109 ins_char(p[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110}
2111#endif
2112
2113/*
2114 * Insert or replace a single character at the cursor position.
2115 * When in REPLACE or VREPLACE mode, replace any existing character.
2116 * Caller must have prepared for undo.
2117 * For multi-byte characters we get the whole character, the caller must
2118 * convert bytes to a character.
2119 */
2120 void
2121ins_char(c)
2122 int c;
2123{
2124#if defined(FEAT_MBYTE) || defined(PROTO)
Bram Moolenaar9a920d82012-06-01 15:21:02 +02002125 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126 int n;
2127
2128 n = (*mb_char2bytes)(c, buf);
2129
2130 /* When "c" is 0x100, 0x200, etc. we don't want to insert a NUL byte.
2131 * Happens for CTRL-Vu9900. */
2132 if (buf[0] == 0)
2133 buf[0] = '\n';
2134
2135 ins_char_bytes(buf, n);
2136}
2137
2138 void
2139ins_char_bytes(buf, charlen)
2140 char_u *buf;
2141 int charlen;
2142{
2143 int c = buf[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144#endif
2145 int newlen; /* nr of bytes inserted */
2146 int oldlen; /* nr of bytes deleted (0 when not replacing) */
2147 char_u *p;
2148 char_u *newp;
2149 char_u *oldp;
2150 int linelen; /* length of old line including NUL */
2151 colnr_T col;
2152 linenr_T lnum = curwin->w_cursor.lnum;
2153 int i;
2154
2155#ifdef FEAT_VIRTUALEDIT
2156 /* Break tabs if needed. */
2157 if (virtual_active() && curwin->w_cursor.coladd > 0)
2158 coladvance_force(getviscol());
2159#endif
2160
2161 col = curwin->w_cursor.col;
2162 oldp = ml_get(lnum);
2163 linelen = (int)STRLEN(oldp) + 1;
2164
2165 /* The lengths default to the values for when not replacing. */
2166 oldlen = 0;
2167#ifdef FEAT_MBYTE
2168 newlen = charlen;
2169#else
2170 newlen = 1;
2171#endif
2172
2173 if (State & REPLACE_FLAG)
2174 {
2175#ifdef FEAT_VREPLACE
2176 if (State & VREPLACE_FLAG)
2177 {
2178 colnr_T new_vcol = 0; /* init for GCC */
2179 colnr_T vcol;
2180 int old_list;
2181#ifndef FEAT_MBYTE
2182 char_u buf[2];
2183#endif
2184
2185 /*
2186 * Disable 'list' temporarily, unless 'cpo' contains the 'L' flag.
2187 * Returns the old value of list, so when finished,
2188 * curwin->w_p_list should be set back to this.
2189 */
2190 old_list = curwin->w_p_list;
2191 if (old_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
2192 curwin->w_p_list = FALSE;
2193
2194 /*
2195 * In virtual replace mode each character may replace one or more
2196 * characters (zero if it's a TAB). Count the number of bytes to
2197 * be deleted to make room for the new character, counting screen
2198 * cells. May result in adding spaces to fill a gap.
2199 */
2200 getvcol(curwin, &curwin->w_cursor, NULL, &vcol, NULL);
2201#ifndef FEAT_MBYTE
2202 buf[0] = c;
2203 buf[1] = NUL;
2204#endif
2205 new_vcol = vcol + chartabsize(buf, vcol);
2206 while (oldp[col + oldlen] != NUL && vcol < new_vcol)
2207 {
2208 vcol += chartabsize(oldp + col + oldlen, vcol);
2209 /* Don't need to remove a TAB that takes us to the right
2210 * position. */
2211 if (vcol > new_vcol && oldp[col + oldlen] == TAB)
2212 break;
2213#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002214 oldlen += (*mb_ptr2len)(oldp + col + oldlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215#else
2216 ++oldlen;
2217#endif
2218 /* Deleted a bit too much, insert spaces. */
2219 if (vcol > new_vcol)
2220 newlen += vcol - new_vcol;
2221 }
2222 curwin->w_p_list = old_list;
2223 }
2224 else
2225#endif
2226 if (oldp[col] != NUL)
2227 {
2228 /* normal replace */
2229#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002230 oldlen = (*mb_ptr2len)(oldp + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231#else
2232 oldlen = 1;
2233#endif
2234 }
2235
2236
2237 /* Push the replaced bytes onto the replace stack, so that they can be
2238 * put back when BS is used. The bytes of a multi-byte character are
2239 * done the other way around, so that the first byte is popped off
2240 * first (it tells the byte length of the character). */
2241 replace_push(NUL);
2242 for (i = 0; i < oldlen; ++i)
2243 {
2244#ifdef FEAT_MBYTE
Bram Moolenaar2c994e82008-01-02 16:49:36 +00002245 if (has_mbyte)
2246 i += replace_push_mb(oldp + col + i) - 1;
2247 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248#endif
Bram Moolenaar2c994e82008-01-02 16:49:36 +00002249 replace_push(oldp[col + i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 }
2251 }
2252
2253 newp = alloc_check((unsigned)(linelen + newlen - oldlen));
2254 if (newp == NULL)
2255 return;
2256
2257 /* Copy bytes before the cursor. */
2258 if (col > 0)
2259 mch_memmove(newp, oldp, (size_t)col);
2260
2261 /* Copy bytes after the changed character(s). */
2262 p = newp + col;
2263 mch_memmove(p + newlen, oldp + col + oldlen,
2264 (size_t)(linelen - col - oldlen));
2265
2266 /* Insert or overwrite the new character. */
2267#ifdef FEAT_MBYTE
2268 mch_memmove(p, buf, charlen);
2269 i = charlen;
2270#else
2271 *p = c;
2272 i = 1;
2273#endif
2274
2275 /* Fill with spaces when necessary. */
2276 while (i < newlen)
2277 p[i++] = ' ';
2278
2279 /* Replace the line in the buffer. */
2280 ml_replace(lnum, newp, FALSE);
2281
2282 /* mark the buffer as changed and prepare for displaying */
2283 changed_bytes(lnum, col);
2284
2285 /*
2286 * If we're in Insert or Replace mode and 'showmatch' is set, then briefly
2287 * show the match for right parens and braces.
2288 */
2289 if (p_sm && (State & INSERT)
2290 && msg_silent == 0
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002291#ifdef FEAT_INS_EXPAND
2292 && !ins_compl_active()
2293#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294 )
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002295 {
2296#ifdef FEAT_MBYTE
2297 if (has_mbyte)
2298 showmatch(mb_ptr2char(buf));
2299 else
2300#endif
2301 showmatch(c);
2302 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303
2304#ifdef FEAT_RIGHTLEFT
2305 if (!p_ri || (State & REPLACE_FLAG))
2306#endif
2307 {
2308 /* Normal insert: move cursor right */
2309#ifdef FEAT_MBYTE
2310 curwin->w_cursor.col += charlen;
2311#else
2312 ++curwin->w_cursor.col;
2313#endif
2314 }
2315 /*
2316 * TODO: should try to update w_row here, to avoid recomputing it later.
2317 */
2318}
2319
2320/*
2321 * Insert a string at the cursor position.
2322 * Note: Does NOT handle Replace mode.
2323 * Caller must have prepared for undo.
2324 */
2325 void
2326ins_str(s)
2327 char_u *s;
2328{
2329 char_u *oldp, *newp;
2330 int newlen = (int)STRLEN(s);
2331 int oldlen;
2332 colnr_T col;
2333 linenr_T lnum = curwin->w_cursor.lnum;
2334
2335#ifdef FEAT_VIRTUALEDIT
2336 if (virtual_active() && curwin->w_cursor.coladd > 0)
2337 coladvance_force(getviscol());
2338#endif
2339
2340 col = curwin->w_cursor.col;
2341 oldp = ml_get(lnum);
2342 oldlen = (int)STRLEN(oldp);
2343
2344 newp = alloc_check((unsigned)(oldlen + newlen + 1));
2345 if (newp == NULL)
2346 return;
2347 if (col > 0)
2348 mch_memmove(newp, oldp, (size_t)col);
2349 mch_memmove(newp + col, s, (size_t)newlen);
2350 mch_memmove(newp + col + newlen, oldp + col, (size_t)(oldlen - col + 1));
2351 ml_replace(lnum, newp, FALSE);
2352 changed_bytes(lnum, col);
2353 curwin->w_cursor.col += newlen;
2354}
2355
2356/*
2357 * Delete one character under the cursor.
2358 * If "fixpos" is TRUE, don't leave the cursor on the NUL after the line.
2359 * Caller must have prepared for undo.
2360 *
2361 * return FAIL for failure, OK otherwise
2362 */
2363 int
2364del_char(fixpos)
2365 int fixpos;
2366{
2367#ifdef FEAT_MBYTE
2368 if (has_mbyte)
2369 {
2370 /* Make sure the cursor is at the start of a character. */
2371 mb_adjust_cursor();
2372 if (*ml_get_cursor() == NUL)
2373 return FAIL;
2374 return del_chars(1L, fixpos);
2375 }
2376#endif
Bram Moolenaare3226be2005-12-18 22:10:00 +00002377 return del_bytes(1L, fixpos, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378}
2379
2380#if defined(FEAT_MBYTE) || defined(PROTO)
2381/*
2382 * Like del_bytes(), but delete characters instead of bytes.
2383 */
2384 int
2385del_chars(count, fixpos)
2386 long count;
2387 int fixpos;
2388{
2389 long bytes = 0;
2390 long i;
2391 char_u *p;
2392 int l;
2393
2394 p = ml_get_cursor();
2395 for (i = 0; i < count && *p != NUL; ++i)
2396 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002397 l = (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 bytes += l;
2399 p += l;
2400 }
Bram Moolenaare3226be2005-12-18 22:10:00 +00002401 return del_bytes(bytes, fixpos, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402}
2403#endif
2404
2405/*
2406 * Delete "count" bytes under the cursor.
2407 * If "fixpos" is TRUE, don't leave the cursor on the NUL after the line.
2408 * Caller must have prepared for undo.
2409 *
2410 * return FAIL for failure, OK otherwise
2411 */
2412 int
Bram Moolenaarca003e12006-03-17 23:19:38 +00002413del_bytes(count, fixpos_arg, use_delcombine)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 long count;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002415 int fixpos_arg;
Bram Moolenaar78a15312009-05-15 19:33:18 +00002416 int use_delcombine UNUSED; /* 'delcombine' option applies */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417{
2418 char_u *oldp, *newp;
2419 colnr_T oldlen;
2420 linenr_T lnum = curwin->w_cursor.lnum;
2421 colnr_T col = curwin->w_cursor.col;
2422 int was_alloced;
2423 long movelen;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002424 int fixpos = fixpos_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425
2426 oldp = ml_get(lnum);
2427 oldlen = (int)STRLEN(oldp);
2428
2429 /*
2430 * Can't do anything when the cursor is on the NUL after the line.
2431 */
2432 if (col >= oldlen)
2433 return FAIL;
2434
2435#ifdef FEAT_MBYTE
2436 /* If 'delcombine' is set and deleting (less than) one character, only
2437 * delete the last combining character. */
Bram Moolenaare3226be2005-12-18 22:10:00 +00002438 if (p_deco && use_delcombine && enc_utf8
2439 && utfc_ptr2len(oldp + col) >= count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002441 int cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 int n;
2443
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002444 (void)utfc_ptr2char(oldp + col, cc);
2445 if (cc[0] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446 {
2447 /* Find the last composing char, there can be several. */
2448 n = col;
2449 do
2450 {
2451 col = n;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002452 count = utf_ptr2len(oldp + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 n += count;
2454 } while (UTF_COMPOSINGLIKE(oldp + col, oldp + n));
2455 fixpos = 0;
2456 }
2457 }
2458#endif
2459
2460 /*
2461 * When count is too big, reduce it.
2462 */
2463 movelen = (long)oldlen - (long)col - count + 1; /* includes trailing NUL */
2464 if (movelen <= 1)
2465 {
2466 /*
2467 * If we just took off the last character of a non-blank line, and
Bram Moolenaarca003e12006-03-17 23:19:38 +00002468 * fixpos is TRUE, we don't want to end up positioned at the NUL,
2469 * unless "restart_edit" is set or 'virtualedit' contains "onemore".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 */
Bram Moolenaarca003e12006-03-17 23:19:38 +00002471 if (col > 0 && fixpos && restart_edit == 0
2472#ifdef FEAT_VIRTUALEDIT
2473 && (ve_flags & VE_ONEMORE) == 0
2474#endif
2475 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476 {
2477 --curwin->w_cursor.col;
2478#ifdef FEAT_VIRTUALEDIT
2479 curwin->w_cursor.coladd = 0;
2480#endif
2481#ifdef FEAT_MBYTE
2482 if (has_mbyte)
2483 curwin->w_cursor.col -=
2484 (*mb_head_off)(oldp, oldp + curwin->w_cursor.col);
2485#endif
2486 }
2487 count = oldlen - col;
2488 movelen = 1;
2489 }
2490
2491 /*
2492 * If the old line has been allocated the deletion can be done in the
2493 * existing line. Otherwise a new line has to be allocated
Bram Moolenaare21877a2008-02-13 09:58:14 +00002494 * Can't do this when using Netbeans, because we would need to invoke
2495 * netbeans_removed(), which deallocates the line. Let ml_replace() take
Bram Moolenaar1a509df2010-08-01 17:59:57 +02002496 * care of notifying Netbeans.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002499 if (netbeans_active())
Bram Moolenaare21877a2008-02-13 09:58:14 +00002500 was_alloced = FALSE;
2501 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502#endif
Bram Moolenaare21877a2008-02-13 09:58:14 +00002503 was_alloced = ml_line_alloced(); /* check if oldp was allocated */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 if (was_alloced)
2505 newp = oldp; /* use same allocated memory */
2506 else
2507 { /* need to allocate a new line */
2508 newp = alloc((unsigned)(oldlen + 1 - count));
2509 if (newp == NULL)
2510 return FAIL;
2511 mch_memmove(newp, oldp, (size_t)col);
2512 }
2513 mch_memmove(newp + col, oldp + col + count, (size_t)movelen);
2514 if (!was_alloced)
2515 ml_replace(lnum, newp, FALSE);
2516
2517 /* mark the buffer as changed and prepare for displaying */
2518 changed_bytes(lnum, curwin->w_cursor.col);
2519
2520 return OK;
2521}
2522
2523/*
2524 * Delete from cursor to end of line.
2525 * Caller must have prepared for undo.
2526 *
2527 * return FAIL for failure, OK otherwise
2528 */
2529 int
2530truncate_line(fixpos)
2531 int fixpos; /* if TRUE fix the cursor position when done */
2532{
2533 char_u *newp;
2534 linenr_T lnum = curwin->w_cursor.lnum;
2535 colnr_T col = curwin->w_cursor.col;
2536
2537 if (col == 0)
2538 newp = vim_strsave((char_u *)"");
2539 else
2540 newp = vim_strnsave(ml_get(lnum), col);
2541
2542 if (newp == NULL)
2543 return FAIL;
2544
2545 ml_replace(lnum, newp, FALSE);
2546
2547 /* mark the buffer as changed and prepare for displaying */
2548 changed_bytes(lnum, curwin->w_cursor.col);
2549
2550 /*
2551 * If "fixpos" is TRUE we don't want to end up positioned at the NUL.
2552 */
2553 if (fixpos && curwin->w_cursor.col > 0)
2554 --curwin->w_cursor.col;
2555
2556 return OK;
2557}
2558
2559/*
2560 * Delete "nlines" lines at the cursor.
2561 * Saves the lines for undo first if "undo" is TRUE.
2562 */
2563 void
2564del_lines(nlines, undo)
2565 long nlines; /* number of lines to delete */
2566 int undo; /* if TRUE, prepare for undo */
2567{
2568 long n;
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002569 linenr_T first = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570
2571 if (nlines <= 0)
2572 return;
2573
2574 /* save the deleted lines for undo */
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002575 if (undo && u_savedel(first, nlines) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 return;
2577
2578 for (n = 0; n < nlines; )
2579 {
2580 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
2581 break;
2582
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002583 ml_delete(first, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 ++n;
2585
2586 /* If we delete the last line in the file, stop */
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002587 if (first > curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 break;
2589 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002591 /* Correct the cursor position before calling deleted_lines_mark(), it may
2592 * trigger a callback to display the cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593 curwin->w_cursor.col = 0;
2594 check_cursor_lnum();
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002595
2596 /* adjust marks, mark the buffer as changed and prepare for displaying */
2597 deleted_lines_mark(first, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598}
2599
2600 int
2601gchar_pos(pos)
2602 pos_T *pos;
2603{
2604 char_u *ptr = ml_get_pos(pos);
2605
2606#ifdef FEAT_MBYTE
2607 if (has_mbyte)
2608 return (*mb_ptr2char)(ptr);
2609#endif
2610 return (int)*ptr;
2611}
2612
2613 int
2614gchar_cursor()
2615{
2616#ifdef FEAT_MBYTE
2617 if (has_mbyte)
2618 return (*mb_ptr2char)(ml_get_cursor());
2619#endif
2620 return (int)*ml_get_cursor();
2621}
2622
2623/*
2624 * Write a character at the current cursor position.
2625 * It is directly written into the block.
2626 */
2627 void
2628pchar_cursor(c)
2629 int c;
2630{
2631 *(ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE)
2632 + curwin->w_cursor.col) = c;
2633}
2634
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635/*
2636 * When extra == 0: Return TRUE if the cursor is before or on the first
2637 * non-blank in the line.
2638 * When extra == 1: Return TRUE if the cursor is before the first non-blank in
2639 * the line.
2640 */
2641 int
2642inindent(extra)
2643 int extra;
2644{
2645 char_u *ptr;
2646 colnr_T col;
2647
2648 for (col = 0, ptr = ml_get_curline(); vim_iswhite(*ptr); ++col)
2649 ++ptr;
2650 if (col >= curwin->w_cursor.col + extra)
2651 return TRUE;
2652 else
2653 return FALSE;
2654}
2655
2656/*
2657 * Skip to next part of an option argument: Skip space and comma.
2658 */
2659 char_u *
2660skip_to_option_part(p)
2661 char_u *p;
2662{
2663 if (*p == ',')
2664 ++p;
2665 while (*p == ' ')
2666 ++p;
2667 return p;
2668}
2669
2670/*
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002671 * Call this function when something in the current buffer is changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 *
2673 * Most often called through changed_bytes() and changed_lines(), which also
2674 * mark the area of the display to be redrawn.
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002675 *
2676 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 */
2678 void
2679changed()
2680{
2681#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2682 /* The text of the preediting area is inserted, but this doesn't
2683 * mean a change of the buffer yet. That is delayed until the
2684 * text is committed. (this means preedit becomes empty) */
2685 if (im_is_preediting() && !xim_changed_while_preediting)
2686 return;
2687 xim_changed_while_preediting = FALSE;
2688#endif
2689
2690 if (!curbuf->b_changed)
2691 {
2692 int save_msg_scroll = msg_scroll;
2693
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002694 /* Give a warning about changing a read-only file. This may also
2695 * check-out the file, thus change "curbuf"! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696 change_warning(0);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002697
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 /* Create a swap file if that is wanted.
2699 * Don't do this for "nofile" and "nowrite" buffer types. */
2700 if (curbuf->b_may_swap
2701#ifdef FEAT_QUICKFIX
2702 && !bt_dontwrite(curbuf)
2703#endif
2704 )
2705 {
2706 ml_open_file(curbuf);
2707
2708 /* The ml_open_file() can cause an ATTENTION message.
2709 * Wait two seconds, to make sure the user reads this unexpected
2710 * message. Since we could be anywhere, call wait_return() now,
2711 * and don't let the emsg() set msg_scroll. */
2712 if (need_wait_return && emsg_silent == 0)
2713 {
2714 out_flush();
2715 ui_delay(2000L, TRUE);
2716 wait_return(TRUE);
2717 msg_scroll = save_msg_scroll;
2718 }
2719 }
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02002720 changed_int();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721 }
2722 ++curbuf->b_changedtick;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723}
2724
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02002725/*
2726 * Internal part of changed(), no user interaction.
2727 */
2728 void
2729changed_int()
2730{
2731 curbuf->b_changed = TRUE;
2732 ml_setflags(curbuf);
2733#ifdef FEAT_WINDOWS
2734 check_status(curbuf);
2735 redraw_tabline = TRUE;
2736#endif
2737#ifdef FEAT_TITLE
2738 need_maketitle = TRUE; /* set window title later */
2739#endif
2740}
2741
Bram Moolenaardba8a912005-04-24 22:08:39 +00002742static void changedOneline __ARGS((buf_T *buf, linenr_T lnum));
2743static void changed_lines_buf __ARGS((buf_T *buf, linenr_T lnum, linenr_T lnume, long xtra));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744static void changed_common __ARGS((linenr_T lnum, colnr_T col, linenr_T lnume, long xtra));
2745
2746/*
2747 * Changed bytes within a single line for the current buffer.
2748 * - marks the windows on this buffer to be redisplayed
2749 * - marks the buffer changed by calling changed()
2750 * - invalidates cached values
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002751 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752 */
2753 void
2754changed_bytes(lnum, col)
2755 linenr_T lnum;
2756 colnr_T col;
2757{
Bram Moolenaardba8a912005-04-24 22:08:39 +00002758 changedOneline(curbuf, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 changed_common(lnum, col, lnum + 1, 0L);
Bram Moolenaardba8a912005-04-24 22:08:39 +00002760
2761#ifdef FEAT_DIFF
2762 /* Diff highlighting in other diff windows may need to be updated too. */
2763 if (curwin->w_p_diff)
2764 {
2765 win_T *wp;
2766 linenr_T wlnum;
2767
2768 for (wp = firstwin; wp != NULL; wp = wp->w_next)
2769 if (wp->w_p_diff && wp != curwin)
2770 {
2771 redraw_win_later(wp, VALID);
2772 wlnum = diff_lnum_win(lnum, wp);
2773 if (wlnum > 0)
2774 changedOneline(wp->w_buffer, wlnum);
2775 }
2776 }
2777#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778}
2779
2780 static void
Bram Moolenaardba8a912005-04-24 22:08:39 +00002781changedOneline(buf, lnum)
2782 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 linenr_T lnum;
2784{
Bram Moolenaardba8a912005-04-24 22:08:39 +00002785 if (buf->b_mod_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786 {
2787 /* find the maximum area that must be redisplayed */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002788 if (lnum < buf->b_mod_top)
2789 buf->b_mod_top = lnum;
2790 else if (lnum >= buf->b_mod_bot)
2791 buf->b_mod_bot = lnum + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792 }
2793 else
2794 {
2795 /* set the area that must be redisplayed to one line */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002796 buf->b_mod_set = TRUE;
2797 buf->b_mod_top = lnum;
2798 buf->b_mod_bot = lnum + 1;
2799 buf->b_mod_xlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 }
2801}
2802
2803/*
2804 * Appended "count" lines below line "lnum" in the current buffer.
2805 * Must be called AFTER the change and after mark_adjust().
2806 * Takes care of marking the buffer to be redrawn and sets the changed flag.
2807 */
2808 void
2809appended_lines(lnum, count)
2810 linenr_T lnum;
2811 long count;
2812{
2813 changed_lines(lnum + 1, 0, lnum + 1, count);
2814}
2815
2816/*
2817 * Like appended_lines(), but adjust marks first.
2818 */
2819 void
2820appended_lines_mark(lnum, count)
2821 linenr_T lnum;
2822 long count;
2823{
2824 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, count, 0L);
2825 changed_lines(lnum + 1, 0, lnum + 1, count);
2826}
2827
2828/*
2829 * Deleted "count" lines at line "lnum" in the current buffer.
2830 * Must be called AFTER the change and after mark_adjust().
2831 * Takes care of marking the buffer to be redrawn and sets the changed flag.
2832 */
2833 void
2834deleted_lines(lnum, count)
2835 linenr_T lnum;
2836 long count;
2837{
2838 changed_lines(lnum, 0, lnum + count, -count);
2839}
2840
2841/*
2842 * Like deleted_lines(), but adjust marks first.
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002843 * Make sure the cursor is on a valid line before calling, a GUI callback may
2844 * be triggered to display the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845 */
2846 void
2847deleted_lines_mark(lnum, count)
2848 linenr_T lnum;
2849 long count;
2850{
2851 mark_adjust(lnum, (linenr_T)(lnum + count - 1), (long)MAXLNUM, -count);
2852 changed_lines(lnum, 0, lnum + count, -count);
2853}
2854
2855/*
2856 * Changed lines for the current buffer.
2857 * Must be called AFTER the change and after mark_adjust().
2858 * - mark the buffer changed by calling changed()
2859 * - mark the windows on this buffer to be redisplayed
2860 * - invalidate cached values
2861 * "lnum" is the first line that needs displaying, "lnume" the first line
2862 * below the changed lines (BEFORE the change).
2863 * When only inserting lines, "lnum" and "lnume" are equal.
2864 * Takes care of calling changed() and updating b_mod_*.
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002865 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 */
2867 void
2868changed_lines(lnum, col, lnume, xtra)
2869 linenr_T lnum; /* first line with change */
2870 colnr_T col; /* column in first line with change */
2871 linenr_T lnume; /* line below last changed line */
2872 long xtra; /* number of extra lines (negative when deleting) */
2873{
Bram Moolenaardba8a912005-04-24 22:08:39 +00002874 changed_lines_buf(curbuf, lnum, lnume, xtra);
2875
2876#ifdef FEAT_DIFF
2877 if (xtra == 0 && curwin->w_p_diff)
2878 {
2879 /* When the number of lines doesn't change then mark_adjust() isn't
2880 * called and other diff buffers still need to be marked for
2881 * displaying. */
2882 win_T *wp;
2883 linenr_T wlnum;
2884
2885 for (wp = firstwin; wp != NULL; wp = wp->w_next)
2886 if (wp->w_p_diff && wp != curwin)
2887 {
2888 redraw_win_later(wp, VALID);
2889 wlnum = diff_lnum_win(lnum, wp);
2890 if (wlnum > 0)
2891 changed_lines_buf(wp->w_buffer, wlnum,
2892 lnume - lnum + wlnum, 0L);
2893 }
2894 }
2895#endif
2896
2897 changed_common(lnum, col, lnume, xtra);
2898}
2899
2900 static void
2901changed_lines_buf(buf, lnum, lnume, xtra)
2902 buf_T *buf;
2903 linenr_T lnum; /* first line with change */
2904 linenr_T lnume; /* line below last changed line */
2905 long xtra; /* number of extra lines (negative when deleting) */
2906{
2907 if (buf->b_mod_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908 {
2909 /* find the maximum area that must be redisplayed */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002910 if (lnum < buf->b_mod_top)
2911 buf->b_mod_top = lnum;
2912 if (lnum < buf->b_mod_bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913 {
2914 /* adjust old bot position for xtra lines */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002915 buf->b_mod_bot += xtra;
2916 if (buf->b_mod_bot < lnum)
2917 buf->b_mod_bot = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918 }
Bram Moolenaardba8a912005-04-24 22:08:39 +00002919 if (lnume + xtra > buf->b_mod_bot)
2920 buf->b_mod_bot = lnume + xtra;
2921 buf->b_mod_xlines += xtra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922 }
2923 else
2924 {
2925 /* set the area that must be redisplayed */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002926 buf->b_mod_set = TRUE;
2927 buf->b_mod_top = lnum;
2928 buf->b_mod_bot = lnume + xtra;
2929 buf->b_mod_xlines = xtra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931}
2932
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002933/*
2934 * Common code for when a change is was made.
2935 * See changed_lines() for the arguments.
2936 * Careful: may trigger autocommands that reload the buffer.
2937 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002938 static void
2939changed_common(lnum, col, lnume, xtra)
2940 linenr_T lnum;
2941 colnr_T col;
2942 linenr_T lnume;
2943 long xtra;
2944{
2945 win_T *wp;
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00002946#ifdef FEAT_WINDOWS
2947 tabpage_T *tp;
2948#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949 int i;
2950#ifdef FEAT_JUMPLIST
2951 int cols;
2952 pos_T *p;
2953 int add;
2954#endif
2955
2956 /* mark the buffer as modified */
2957 changed();
2958
2959 /* set the '. mark */
2960 if (!cmdmod.keepjumps)
2961 {
2962 curbuf->b_last_change.lnum = lnum;
2963 curbuf->b_last_change.col = col;
2964
2965#ifdef FEAT_JUMPLIST
2966 /* Create a new entry if a new undo-able change was started or we
2967 * don't have an entry yet. */
2968 if (curbuf->b_new_change || curbuf->b_changelistlen == 0)
2969 {
2970 if (curbuf->b_changelistlen == 0)
2971 add = TRUE;
2972 else
2973 {
2974 /* Don't create a new entry when the line number is the same
2975 * as the last one and the column is not too far away. Avoids
2976 * creating many entries for typing "xxxxx". */
2977 p = &curbuf->b_changelist[curbuf->b_changelistlen - 1];
2978 if (p->lnum != lnum)
2979 add = TRUE;
2980 else
2981 {
2982 cols = comp_textwidth(FALSE);
2983 if (cols == 0)
2984 cols = 79;
2985 add = (p->col + cols < col || col + cols < p->col);
2986 }
2987 }
2988 if (add)
2989 {
2990 /* This is the first of a new sequence of undo-able changes
2991 * and it's at some distance of the last change. Use a new
2992 * position in the changelist. */
2993 curbuf->b_new_change = FALSE;
2994
2995 if (curbuf->b_changelistlen == JUMPLISTSIZE)
2996 {
2997 /* changelist is full: remove oldest entry */
2998 curbuf->b_changelistlen = JUMPLISTSIZE - 1;
2999 mch_memmove(curbuf->b_changelist, curbuf->b_changelist + 1,
3000 sizeof(pos_T) * (JUMPLISTSIZE - 1));
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00003001 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002 {
3003 /* Correct position in changelist for other windows on
3004 * this buffer. */
3005 if (wp->w_buffer == curbuf && wp->w_changelistidx > 0)
3006 --wp->w_changelistidx;
3007 }
3008 }
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00003009 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010 {
3011 /* For other windows, if the position in the changelist is
3012 * at the end it stays at the end. */
3013 if (wp->w_buffer == curbuf
3014 && wp->w_changelistidx == curbuf->b_changelistlen)
3015 ++wp->w_changelistidx;
3016 }
3017 ++curbuf->b_changelistlen;
3018 }
3019 }
3020 curbuf->b_changelist[curbuf->b_changelistlen - 1] =
3021 curbuf->b_last_change;
3022 /* The current window is always after the last change, so that "g,"
3023 * takes you back to it. */
3024 curwin->w_changelistidx = curbuf->b_changelistlen;
3025#endif
3026 }
3027
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00003028 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 {
3030 if (wp->w_buffer == curbuf)
3031 {
3032 /* Mark this window to be redrawn later. */
3033 if (wp->w_redr_type < VALID)
3034 wp->w_redr_type = VALID;
3035
3036 /* Check if a change in the buffer has invalidated the cached
3037 * values for the cursor. */
3038#ifdef FEAT_FOLDING
3039 /*
3040 * Update the folds for this window. Can't postpone this, because
3041 * a following operator might work on the whole fold: ">>dd".
3042 */
3043 foldUpdate(wp, lnum, lnume + xtra - 1);
3044
3045 /* The change may cause lines above or below the change to become
3046 * included in a fold. Set lnum/lnume to the first/last line that
3047 * might be displayed differently.
3048 * Set w_cline_folded here as an efficient way to update it when
3049 * inserting lines just above a closed fold. */
3050 i = hasFoldingWin(wp, lnum, &lnum, NULL, FALSE, NULL);
3051 if (wp->w_cursor.lnum == lnum)
3052 wp->w_cline_folded = i;
3053 i = hasFoldingWin(wp, lnume, NULL, &lnume, FALSE, NULL);
3054 if (wp->w_cursor.lnum == lnume)
3055 wp->w_cline_folded = i;
3056
3057 /* If the changed line is in a range of previously folded lines,
3058 * compare with the first line in that range. */
3059 if (wp->w_cursor.lnum <= lnum)
3060 {
3061 i = find_wl_entry(wp, lnum);
3062 if (i >= 0 && wp->w_cursor.lnum > wp->w_lines[i].wl_lnum)
3063 changed_line_abv_curs_win(wp);
3064 }
3065#endif
3066
3067 if (wp->w_cursor.lnum > lnum)
3068 changed_line_abv_curs_win(wp);
3069 else if (wp->w_cursor.lnum == lnum && wp->w_cursor.col >= col)
3070 changed_cline_bef_curs_win(wp);
3071 if (wp->w_botline >= lnum)
3072 {
3073 /* Assume that botline doesn't change (inserted lines make
3074 * other lines scroll down below botline). */
3075 approximate_botline_win(wp);
3076 }
3077
3078 /* Check if any w_lines[] entries have become invalid.
3079 * For entries below the change: Correct the lnums for
3080 * inserted/deleted lines. Makes it possible to stop displaying
3081 * after the change. */
3082 for (i = 0; i < wp->w_lines_valid; ++i)
3083 if (wp->w_lines[i].wl_valid)
3084 {
3085 if (wp->w_lines[i].wl_lnum >= lnum)
3086 {
3087 if (wp->w_lines[i].wl_lnum < lnume)
3088 {
3089 /* line included in change */
3090 wp->w_lines[i].wl_valid = FALSE;
3091 }
3092 else if (xtra != 0)
3093 {
3094 /* line below change */
3095 wp->w_lines[i].wl_lnum += xtra;
3096#ifdef FEAT_FOLDING
3097 wp->w_lines[i].wl_lastlnum += xtra;
3098#endif
3099 }
3100 }
3101#ifdef FEAT_FOLDING
3102 else if (wp->w_lines[i].wl_lastlnum >= lnum)
3103 {
3104 /* change somewhere inside this range of folded lines,
3105 * may need to be redrawn */
3106 wp->w_lines[i].wl_valid = FALSE;
3107 }
3108#endif
3109 }
Bram Moolenaar3234cc62009-11-03 17:47:12 +00003110
3111#ifdef FEAT_FOLDING
3112 /* Take care of side effects for setting w_topline when folds have
3113 * changed. Esp. when the buffer was changed in another window. */
3114 if (hasAnyFolding(wp))
3115 set_topline(wp, wp->w_topline);
3116#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117 }
3118 }
3119
3120 /* Call update_screen() later, which checks out what needs to be redrawn,
3121 * since it notices b_mod_set and then uses b_mod_*. */
3122 if (must_redraw < VALID)
3123 must_redraw = VALID;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003124
3125#ifdef FEAT_AUTOCMD
3126 /* when the cursor line is changed always trigger CursorMoved */
Bram Moolenaare163f1c2006-10-17 09:12:21 +00003127 if (lnum <= curwin->w_cursor.lnum
3128 && lnume + (xtra < 0 ? -xtra : xtra) > curwin->w_cursor.lnum)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003129 last_cursormoved.lnum = 0;
3130#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131}
3132
3133/*
3134 * unchanged() is called when the changed flag must be reset for buffer 'buf'
3135 */
3136 void
3137unchanged(buf, ff)
3138 buf_T *buf;
3139 int ff; /* also reset 'fileformat' */
3140{
Bram Moolenaar164c60f2011-01-22 00:11:50 +01003141 if (buf->b_changed || (ff && file_ff_differs(buf, FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142 {
3143 buf->b_changed = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003144 ml_setflags(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 if (ff)
3146 save_file_ff(buf);
3147#ifdef FEAT_WINDOWS
3148 check_status(buf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003149 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150#endif
3151#ifdef FEAT_TITLE
3152 need_maketitle = TRUE; /* set window title later */
3153#endif
3154 }
3155 ++buf->b_changedtick;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156#ifdef FEAT_NETBEANS_INTG
3157 netbeans_unmodified(buf);
3158#endif
3159}
3160
3161#if defined(FEAT_WINDOWS) || defined(PROTO)
3162/*
3163 * check_status: called when the status bars for the buffer 'buf'
3164 * need to be updated
3165 */
3166 void
3167check_status(buf)
3168 buf_T *buf;
3169{
3170 win_T *wp;
3171
3172 for (wp = firstwin; wp != NULL; wp = wp->w_next)
3173 if (wp->w_buffer == buf && wp->w_status_height)
3174 {
3175 wp->w_redr_status = TRUE;
3176 if (must_redraw < VALID)
3177 must_redraw = VALID;
3178 }
3179}
3180#endif
3181
3182/*
3183 * If the file is readonly, give a warning message with the first change.
3184 * Don't do this for autocommands.
3185 * Don't use emsg(), because it flushes the macro buffer.
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00003186 * If we have undone all changes b_changed will be FALSE, but "b_did_warn"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187 * will be TRUE.
Bram Moolenaarb0b50882010-07-07 18:26:28 +02003188 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 */
3190 void
3191change_warning(col)
3192 int col; /* column for message; non-zero when in insert
3193 mode and 'showmode' is on */
3194{
Bram Moolenaar496c5262009-03-18 14:42:00 +00003195 static char *w_readonly = N_("W10: Warning: Changing a readonly file");
3196
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 if (curbuf->b_did_warn == FALSE
3198 && curbufIsChanged() == 0
3199#ifdef FEAT_AUTOCMD
3200 && !autocmd_busy
3201#endif
3202 && curbuf->b_p_ro)
3203 {
3204#ifdef FEAT_AUTOCMD
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003205 ++curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206 apply_autocmds(EVENT_FILECHANGEDRO, NULL, NULL, FALSE, curbuf);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003207 --curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 if (!curbuf->b_p_ro)
3209 return;
3210#endif
3211 /*
3212 * Do what msg() does, but with a column offset if the warning should
3213 * be after the mode message.
3214 */
3215 msg_start();
3216 if (msg_row == Rows - 1)
3217 msg_col = col;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00003218 msg_source(hl_attr(HLF_W));
Bram Moolenaar496c5262009-03-18 14:42:00 +00003219 MSG_PUTS_ATTR(_(w_readonly), hl_attr(HLF_W) | MSG_HIST);
3220#ifdef FEAT_EVAL
3221 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_readonly), -1);
3222#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 msg_clr_eos();
3224 (void)msg_end();
3225 if (msg_silent == 0 && !silent_mode)
3226 {
3227 out_flush();
3228 ui_delay(1000L, TRUE); /* give the user time to think about it */
3229 }
3230 curbuf->b_did_warn = TRUE;
3231 redraw_cmdline = FALSE; /* don't redraw and erase the message */
3232 if (msg_row < Rows - 1)
3233 showmode();
3234 }
3235}
3236
3237/*
3238 * Ask for a reply from the user, a 'y' or a 'n'.
3239 * No other characters are accepted, the message is repeated until a valid
3240 * reply is entered or CTRL-C is hit.
3241 * If direct is TRUE, don't use vgetc() but ui_inchar(), don't get characters
3242 * from any buffers but directly from the user.
3243 *
3244 * return the 'y' or 'n'
3245 */
3246 int
3247ask_yesno(str, direct)
3248 char_u *str;
3249 int direct;
3250{
3251 int r = ' ';
3252 int save_State = State;
3253
3254 if (exiting) /* put terminal in raw mode for this question */
3255 settmode(TMODE_RAW);
3256 ++no_wait_return;
3257#ifdef USE_ON_FLY_SCROLL
3258 dont_scroll = TRUE; /* disallow scrolling here */
3259#endif
3260 State = CONFIRM; /* mouse behaves like with :confirm */
3261#ifdef FEAT_MOUSE
3262 setmouse(); /* disables mouse for xterm */
3263#endif
3264 ++no_mapping;
3265 ++allow_keys; /* no mapping here, but recognize keys */
3266
3267 while (r != 'y' && r != 'n')
3268 {
3269 /* same highlighting as for wait_return */
3270 smsg_attr(hl_attr(HLF_R), (char_u *)"%s (y/n)?", str);
3271 if (direct)
3272 r = get_keystroke();
3273 else
Bram Moolenaar913626c2008-01-03 11:43:42 +00003274 r = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275 if (r == Ctrl_C || r == ESC)
3276 r = 'n';
3277 msg_putchar(r); /* show what you typed */
3278 out_flush();
3279 }
3280 --no_wait_return;
3281 State = save_State;
3282#ifdef FEAT_MOUSE
3283 setmouse();
3284#endif
3285 --no_mapping;
3286 --allow_keys;
3287
3288 return r;
3289}
3290
Bram Moolenaar2526ef22013-03-16 14:20:51 +01003291#if defined(FEAT_MOUSE) || defined(PROTO)
3292/*
3293 * Return TRUE if "c" is a mouse key.
3294 */
3295 int
3296is_mouse_key(c)
3297 int c;
3298{
3299 return c == K_LEFTMOUSE
3300 || c == K_LEFTMOUSE_NM
3301 || c == K_LEFTDRAG
3302 || c == K_LEFTRELEASE
3303 || c == K_LEFTRELEASE_NM
3304 || c == K_MIDDLEMOUSE
3305 || c == K_MIDDLEDRAG
3306 || c == K_MIDDLERELEASE
3307 || c == K_RIGHTMOUSE
3308 || c == K_RIGHTDRAG
3309 || c == K_RIGHTRELEASE
3310 || c == K_MOUSEDOWN
3311 || c == K_MOUSEUP
3312 || c == K_MOUSELEFT
3313 || c == K_MOUSERIGHT
3314 || c == K_X1MOUSE
3315 || c == K_X1DRAG
3316 || c == K_X1RELEASE
3317 || c == K_X2MOUSE
3318 || c == K_X2DRAG
3319 || c == K_X2RELEASE;
3320}
3321#endif
3322
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323/*
3324 * Get a key stroke directly from the user.
3325 * Ignores mouse clicks and scrollbar events, except a click for the left
3326 * button (used at the more prompt).
3327 * Doesn't use vgetc(), because it syncs undo and eats mapped characters.
3328 * Disadvantage: typeahead is ignored.
3329 * Translates the interrupt character for unix to ESC.
3330 */
3331 int
3332get_keystroke()
3333{
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003334 char_u *buf = NULL;
3335 int buflen = 150;
3336 int maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337 int len = 0;
3338 int n;
3339 int save_mapped_ctrl_c = mapped_ctrl_c;
Bram Moolenaar4395a712006-09-05 18:57:57 +00003340 int waited = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341
3342 mapped_ctrl_c = FALSE; /* mappings are not used here */
3343 for (;;)
3344 {
3345 cursor_on();
3346 out_flush();
3347
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003348 /* Leave some room for check_termcode() to insert a key code into (max
3349 * 5 chars plus NUL). And fix_input_buffer() can triple the number of
3350 * bytes. */
3351 maxlen = (buflen - 6 - len) / 3;
3352 if (buf == NULL)
3353 buf = alloc(buflen);
3354 else if (maxlen < 10)
3355 {
Bram Moolenaardc7e85e2012-06-20 12:40:08 +02003356 /* Need some more space. This might happen when receiving a long
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003357 * escape sequence. */
3358 buflen += 100;
3359 buf = vim_realloc(buf, buflen);
3360 maxlen = (buflen - 6 - len) / 3;
3361 }
3362 if (buf == NULL)
3363 {
3364 do_outofmem_msg((long_u)buflen);
3365 return ESC; /* panic! */
3366 }
3367
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368 /* First time: blocking wait. Second time: wait up to 100ms for a
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003369 * terminal code to complete. */
3370 n = ui_inchar(buf + len, maxlen, len == 0 ? -1L : 100L, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 if (n > 0)
3372 {
3373 /* Replace zero and CSI by a special key code. */
3374 n = fix_input_buffer(buf + len, n, FALSE);
3375 len += n;
Bram Moolenaar4395a712006-09-05 18:57:57 +00003376 waited = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377 }
Bram Moolenaar4395a712006-09-05 18:57:57 +00003378 else if (len > 0)
3379 ++waited; /* keep track of the waiting time */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380
Bram Moolenaar4395a712006-09-05 18:57:57 +00003381 /* Incomplete termcode and not timed out yet: get more characters */
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003382 if ((n = check_termcode(1, buf, buflen, &len)) < 0
Bram Moolenaar4395a712006-09-05 18:57:57 +00003383 && (!p_ttimeout || waited * 100L < (p_ttm < 0 ? p_tm : p_ttm)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 continue;
Bram Moolenaar4395a712006-09-05 18:57:57 +00003385
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003386 if (n == KEYLEN_REMOVED) /* key code removed */
Bram Moolenaar6eb634e2011-03-03 15:04:08 +01003387 {
Bram Moolenaarfd30cd42011-03-22 13:07:26 +01003388 if (must_redraw != 0 && !need_wait_return && (State & CMDLINE) == 0)
Bram Moolenaar6eb634e2011-03-03 15:04:08 +01003389 {
3390 /* Redrawing was postponed, do it now. */
3391 update_screen(0);
3392 setcursor(); /* put cursor back where it belongs */
3393 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003394 continue;
Bram Moolenaar6eb634e2011-03-03 15:04:08 +01003395 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003396 if (n > 0) /* found a termcode: adjust length */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397 len = n;
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003398 if (len == 0) /* nothing typed yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 continue;
3400
3401 /* Handle modifier and/or special key code. */
3402 n = buf[0];
3403 if (n == K_SPECIAL)
3404 {
3405 n = TO_SPECIAL(buf[1], buf[2]);
3406 if (buf[1] == KS_MODIFIER
3407 || n == K_IGNORE
Bram Moolenaara5be25e2013-03-16 21:35:33 +01003408#ifdef FEAT_MOUSE
Bram Moolenaar2526ef22013-03-16 14:20:51 +01003409 || (is_mouse_key(n) && n != K_LEFTMOUSE)
Bram Moolenaara5be25e2013-03-16 21:35:33 +01003410#endif
Bram Moolenaar2526ef22013-03-16 14:20:51 +01003411#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412 || n == K_VER_SCROLLBAR
3413 || n == K_HOR_SCROLLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414#endif
3415 )
3416 {
3417 if (buf[1] == KS_MODIFIER)
3418 mod_mask = buf[2];
3419 len -= 3;
3420 if (len > 0)
3421 mch_memmove(buf, buf + 3, (size_t)len);
3422 continue;
3423 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00003424 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425 }
3426#ifdef FEAT_MBYTE
3427 if (has_mbyte)
3428 {
3429 if (MB_BYTE2LEN(n) > len)
3430 continue; /* more bytes to get */
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003431 buf[len >= buflen ? buflen - 1 : len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 n = (*mb_ptr2char)(buf);
3433 }
3434#endif
3435#ifdef UNIX
3436 if (n == intr_char)
3437 n = ESC;
3438#endif
3439 break;
3440 }
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003441 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442
3443 mapped_ctrl_c = save_mapped_ctrl_c;
3444 return n;
3445}
3446
3447/*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003448 * Get a number from the user.
3449 * When "mouse_used" is not NULL allow using the mouse.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003450 */
3451 int
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003452get_number(colon, mouse_used)
3453 int colon; /* allow colon to abort */
3454 int *mouse_used;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455{
3456 int n = 0;
3457 int c;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00003458 int typed = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003460 if (mouse_used != NULL)
3461 *mouse_used = FALSE;
3462
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 /* When not printing messages, the user won't know what to type, return a
3464 * zero (as if CR was hit). */
3465 if (msg_silent != 0)
3466 return 0;
3467
3468#ifdef USE_ON_FLY_SCROLL
3469 dont_scroll = TRUE; /* disallow scrolling here */
3470#endif
3471 ++no_mapping;
3472 ++allow_keys; /* no mapping here, but recognize keys */
3473 for (;;)
3474 {
3475 windgoto(msg_row, msg_col);
3476 c = safe_vgetc();
3477 if (VIM_ISDIGIT(c))
3478 {
3479 n = n * 10 + c - '0';
3480 msg_putchar(c);
Bram Moolenaar3991dab2006-03-27 17:01:56 +00003481 ++typed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482 }
3483 else if (c == K_DEL || c == K_KDEL || c == K_BS || c == Ctrl_H)
3484 {
Bram Moolenaar3991dab2006-03-27 17:01:56 +00003485 if (typed > 0)
3486 {
3487 MSG_PUTS("\b \b");
3488 --typed;
3489 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490 n /= 10;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003491 }
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003492#ifdef FEAT_MOUSE
3493 else if (mouse_used != NULL && c == K_LEFTMOUSE)
3494 {
3495 *mouse_used = TRUE;
3496 n = mouse_row + 1;
3497 break;
3498 }
3499#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500 else if (n == 0 && c == ':' && colon)
3501 {
3502 stuffcharReadbuff(':');
3503 if (!exmode_active)
3504 cmdline_row = msg_row;
3505 skip_redraw = TRUE; /* skip redraw once */
3506 do_redraw = FALSE;
3507 break;
3508 }
3509 else if (c == CAR || c == NL || c == Ctrl_C || c == ESC)
3510 break;
3511 }
3512 --no_mapping;
3513 --allow_keys;
3514 return n;
3515}
3516
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003517/*
3518 * Ask the user to enter a number.
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003519 * When "mouse_used" is not NULL allow using the mouse and in that case return
3520 * the line number.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003521 */
3522 int
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003523prompt_for_number(mouse_used)
3524 int *mouse_used;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003525{
3526 int i;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003527 int save_cmdline_row;
3528 int save_State;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003529
3530 /* When using ":silent" assume that <CR> was entered. */
Bram Moolenaar42eeac32005-06-29 22:40:58 +00003531 if (mouse_used != NULL)
Bram Moolenaard812df62008-11-09 12:46:09 +00003532 MSG_PUTS(_("Type number and <Enter> or click with mouse (empty cancels): "));
Bram Moolenaar42eeac32005-06-29 22:40:58 +00003533 else
Bram Moolenaard812df62008-11-09 12:46:09 +00003534 MSG_PUTS(_("Type number and <Enter> (empty cancels): "));
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003535
Bram Moolenaar203335e2006-09-03 14:35:42 +00003536 /* Set the state such that text can be selected/copied/pasted and we still
3537 * get mouse events. */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003538 save_cmdline_row = cmdline_row;
Bram Moolenaar203335e2006-09-03 14:35:42 +00003539 cmdline_row = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003540 save_State = State;
Bram Moolenaar203335e2006-09-03 14:35:42 +00003541 State = CMDLINE;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003542
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003543 i = get_number(TRUE, mouse_used);
3544 if (KeyTyped)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003545 {
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003546 /* don't call wait_return() now */
3547 /* msg_putchar('\n'); */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003548 cmdline_row = msg_row - 1;
3549 need_wait_return = FALSE;
3550 msg_didany = FALSE;
Bram Moolenaarb2450162009-07-22 09:04:20 +00003551 msg_didout = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003552 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003553 else
3554 cmdline_row = save_cmdline_row;
3555 State = save_State;
3556
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003557 return i;
3558}
3559
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560 void
3561msgmore(n)
3562 long n;
3563{
3564 long pn;
3565
3566 if (global_busy /* no messages now, wait until global is finished */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567 || !messaging()) /* 'lazyredraw' set, don't do messages now */
3568 return;
3569
Bram Moolenaar7df2d662005-01-25 22:18:08 +00003570 /* We don't want to overwrite another important message, but do overwrite
3571 * a previous "more lines" or "fewer lines" message, so that "5dd" and
3572 * then "put" reports the last action. */
3573 if (keep_msg != NULL && !keep_msg_more)
3574 return;
3575
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576 if (n > 0)
3577 pn = n;
3578 else
3579 pn = -n;
3580
3581 if (pn > p_report)
3582 {
3583 if (pn == 1)
3584 {
3585 if (n > 0)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003586 vim_strncpy(msg_buf, (char_u *)_("1 more line"),
3587 MSG_BUF_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588 else
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003589 vim_strncpy(msg_buf, (char_u *)_("1 line less"),
3590 MSG_BUF_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591 }
3592 else
3593 {
3594 if (n > 0)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003595 vim_snprintf((char *)msg_buf, MSG_BUF_LEN,
3596 _("%ld more lines"), pn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597 else
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003598 vim_snprintf((char *)msg_buf, MSG_BUF_LEN,
3599 _("%ld fewer lines"), pn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600 }
3601 if (got_int)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003602 vim_strcat(msg_buf, (char_u *)_(" (Interrupted)"), MSG_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603 if (msg(msg_buf))
3604 {
Bram Moolenaar238a5642006-02-21 22:12:05 +00003605 set_keep_msg(msg_buf, 0);
Bram Moolenaar7df2d662005-01-25 22:18:08 +00003606 keep_msg_more = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607 }
3608 }
3609}
3610
3611/*
3612 * flush map and typeahead buffers and give a warning for an error
3613 */
3614 void
3615beep_flush()
3616{
3617 if (emsg_silent == 0)
3618 {
3619 flush_buffers(FALSE);
3620 vim_beep();
3621 }
3622}
3623
3624/*
3625 * give a warning for an error
3626 */
3627 void
3628vim_beep()
3629{
3630 if (emsg_silent == 0)
3631 {
3632 if (p_vb
3633#ifdef FEAT_GUI
3634 /* While the GUI is starting up the termcap is set for the GUI
3635 * but the output still goes to a terminal. */
3636 && !(gui.in_use && gui.starting)
3637#endif
3638 )
3639 {
3640 out_str(T_VB);
3641 }
3642 else
3643 {
3644#ifdef MSDOS
3645 /*
3646 * The number of beeps outputted is reduced to avoid having to wait
3647 * for all the beeps to finish. This is only a problem on systems
3648 * where the beeps don't overlap.
3649 */
3650 if (beep_count == 0 || beep_count == 10)
3651 {
3652 out_char(BELL);
3653 beep_count = 1;
3654 }
3655 else
3656 ++beep_count;
3657#else
3658 out_char(BELL);
3659#endif
3660 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003661
3662 /* When 'verbose' is set and we are sourcing a script or executing a
3663 * function give the user a hint where the beep comes from. */
3664 if (vim_strchr(p_debug, 'e') != NULL)
3665 {
3666 msg_source(hl_attr(HLF_W));
3667 msg_attr((char_u *)_("Beep!"), hl_attr(HLF_W));
3668 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669 }
3670}
3671
3672/*
3673 * To get the "real" home directory:
3674 * - get value of $HOME
3675 * For Unix:
3676 * - go to that directory
3677 * - do mch_dirname() to get the real name of that directory.
3678 * This also works with mounts and links.
3679 * Don't do this for MS-DOS, it will change the "current dir" for a drive.
3680 */
3681static char_u *homedir = NULL;
3682
3683 void
3684init_homedir()
3685{
3686 char_u *var;
3687
Bram Moolenaar05159a02005-02-26 23:04:13 +00003688 /* In case we are called a second time (when 'encoding' changes). */
3689 vim_free(homedir);
3690 homedir = NULL;
3691
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692#ifdef VMS
3693 var = mch_getenv((char_u *)"SYS$LOGIN");
3694#else
3695 var = mch_getenv((char_u *)"HOME");
3696#endif
3697
3698 if (var != NULL && *var == NUL) /* empty is same as not set */
3699 var = NULL;
3700
3701#ifdef WIN3264
3702 /*
3703 * Weird but true: $HOME may contain an indirect reference to another
3704 * variable, esp. "%USERPROFILE%". Happens when $USERPROFILE isn't set
3705 * when $HOME is being set.
3706 */
3707 if (var != NULL && *var == '%')
3708 {
3709 char_u *p;
3710 char_u *exp;
3711
3712 p = vim_strchr(var + 1, '%');
3713 if (p != NULL)
3714 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003715 vim_strncpy(NameBuff, var + 1, p - (var + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716 exp = mch_getenv(NameBuff);
3717 if (exp != NULL && *exp != NUL
3718 && STRLEN(exp) + STRLEN(p) < MAXPATHL)
3719 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00003720 vim_snprintf((char *)NameBuff, MAXPATHL, "%s%s", exp, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 var = NameBuff;
3722 /* Also set $HOME, it's needed for _viminfo. */
3723 vim_setenv((char_u *)"HOME", NameBuff);
3724 }
3725 }
3726 }
3727
3728 /*
3729 * Typically, $HOME is not defined on Windows, unless the user has
3730 * specifically defined it for Vim's sake. However, on Windows NT
3731 * platforms, $HOMEDRIVE and $HOMEPATH are automatically defined for
3732 * each user. Try constructing $HOME from these.
3733 */
3734 if (var == NULL)
3735 {
3736 char_u *homedrive, *homepath;
3737
3738 homedrive = mch_getenv((char_u *)"HOMEDRIVE");
3739 homepath = mch_getenv((char_u *)"HOMEPATH");
Bram Moolenaar6f977012010-01-06 17:53:38 +01003740 if (homepath == NULL || *homepath == NUL)
3741 homepath = "\\";
3742 if (homedrive != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743 && STRLEN(homedrive) + STRLEN(homepath) < MAXPATHL)
3744 {
3745 sprintf((char *)NameBuff, "%s%s", homedrive, homepath);
3746 if (NameBuff[0] != NUL)
3747 {
3748 var = NameBuff;
3749 /* Also set $HOME, it's needed for _viminfo. */
3750 vim_setenv((char_u *)"HOME", NameBuff);
3751 }
3752 }
3753 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00003754
3755# if defined(FEAT_MBYTE)
3756 if (enc_utf8 && var != NULL)
3757 {
3758 int len;
Bram Moolenaarb453a532011-04-28 17:48:44 +02003759 char_u *pp = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003760
3761 /* Convert from active codepage to UTF-8. Other conversions are
3762 * not done, because they would fail for non-ASCII characters. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003763 acp_to_enc(var, (int)STRLEN(var), &pp, &len);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003764 if (pp != NULL)
3765 {
3766 homedir = pp;
3767 return;
3768 }
3769 }
3770# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771#endif
3772
3773#if defined(OS2) || defined(MSDOS) || defined(MSWIN)
3774 /*
3775 * Default home dir is C:/
3776 * Best assumption we can make in such a situation.
3777 */
3778 if (var == NULL)
3779 var = "C:/";
3780#endif
3781 if (var != NULL)
3782 {
3783#ifdef UNIX
3784 /*
3785 * Change to the directory and get the actual path. This resolves
3786 * links. Don't do it when we can't return.
3787 */
3788 if (mch_dirname(NameBuff, MAXPATHL) == OK
3789 && mch_chdir((char *)NameBuff) == 0)
3790 {
3791 if (!mch_chdir((char *)var) && mch_dirname(IObuff, IOSIZE) == OK)
3792 var = IObuff;
3793 if (mch_chdir((char *)NameBuff) != 0)
3794 EMSG(_(e_prev_dir));
3795 }
3796#endif
3797 homedir = vim_strsave(var);
3798 }
3799}
3800
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003801#if defined(EXITFREE) || defined(PROTO)
3802 void
3803free_homedir()
3804{
3805 vim_free(homedir);
3806}
Bram Moolenaar24305862012-08-15 14:05:05 +02003807
3808# ifdef FEAT_CMDL_COMPL
3809 void
3810free_users()
3811{
3812 ga_clear_strings(&ga_users);
3813}
3814# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003815#endif
3816
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817/*
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003818 * Call expand_env() and store the result in an allocated string.
3819 * This is not very memory efficient, this expects the result to be freed
3820 * again soon.
3821 */
3822 char_u *
3823expand_env_save(src)
3824 char_u *src;
3825{
3826 return expand_env_save_opt(src, FALSE);
3827}
3828
3829/*
3830 * Idem, but when "one" is TRUE handle the string as one file name, only
3831 * expand "~" at the start.
3832 */
3833 char_u *
3834expand_env_save_opt(src, one)
3835 char_u *src;
3836 int one;
3837{
3838 char_u *p;
3839
3840 p = alloc(MAXPATHL);
3841 if (p != NULL)
3842 expand_env_esc(src, p, MAXPATHL, FALSE, one, NULL);
3843 return p;
3844}
3845
3846/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847 * Expand environment variable with path name.
3848 * "~/" is also expanded, using $HOME. For Unix "~user/" is expanded.
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003849 * Skips over "\ ", "\~" and "\$" (not for Win32 though).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003850 * If anything fails no expansion is done and dst equals src.
3851 */
3852 void
3853expand_env(src, dst, dstlen)
3854 char_u *src; /* input string e.g. "$HOME/vim.hlp" */
3855 char_u *dst; /* where to put the result */
3856 int dstlen; /* maximum length of the result */
3857{
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003858 expand_env_esc(src, dst, dstlen, FALSE, FALSE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859}
3860
3861 void
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003862expand_env_esc(srcp, dst, dstlen, esc, one, startstr)
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003863 char_u *srcp; /* input string e.g. "$HOME/vim.hlp" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864 char_u *dst; /* where to put the result */
3865 int dstlen; /* maximum length of the result */
3866 int esc; /* escape spaces in expanded variables */
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003867 int one; /* "srcp" is one file name */
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003868 char_u *startstr; /* start again after this (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869{
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003870 char_u *src;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871 char_u *tail;
3872 int c;
3873 char_u *var;
3874 int copy_char;
3875 int mustfree; /* var was allocated, need to free it later */
3876 int at_start = TRUE; /* at start of a name */
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003877 int startstr_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003879 if (startstr != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003880 startstr_len = (int)STRLEN(startstr);
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003881
3882 src = skipwhite(srcp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883 --dstlen; /* leave one char space for "\," */
3884 while (*src && dstlen > 0)
3885 {
3886 copy_char = TRUE;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003887 if ((*src == '$'
3888#ifdef VMS
3889 && at_start
3890#endif
3891 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3893 || *src == '%'
3894#endif
3895 || (*src == '~' && at_start))
3896 {
3897 mustfree = FALSE;
3898
3899 /*
3900 * The variable name is copied into dst temporarily, because it may
3901 * be a string in read-only memory and a NUL needs to be appended.
3902 */
3903 if (*src != '~') /* environment var */
3904 {
3905 tail = src + 1;
3906 var = dst;
3907 c = dstlen - 1;
3908
3909#ifdef UNIX
3910 /* Unix has ${var-name} type environment vars */
3911 if (*tail == '{' && !vim_isIDc('{'))
3912 {
3913 tail++; /* ignore '{' */
3914 while (c-- > 0 && *tail && *tail != '}')
3915 *var++ = *tail++;
3916 }
3917 else
3918#endif
3919 {
3920 while (c-- > 0 && *tail != NUL && ((vim_isIDc(*tail))
3921#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3922 || (*src == '%' && *tail != '%')
3923#endif
3924 ))
3925 {
3926#ifdef OS2 /* env vars only in uppercase */
3927 *var++ = TOUPPER_LOC(*tail);
3928 tail++; /* toupper() may be a macro! */
3929#else
3930 *var++ = *tail++;
3931#endif
3932 }
3933 }
3934
3935#if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(UNIX)
3936# ifdef UNIX
3937 if (src[1] == '{' && *tail != '}')
3938# else
3939 if (*src == '%' && *tail != '%')
3940# endif
3941 var = NULL;
3942 else
3943 {
3944# ifdef UNIX
3945 if (src[1] == '{')
3946# else
3947 if (*src == '%')
3948#endif
3949 ++tail;
3950#endif
3951 *var = NUL;
3952 var = vim_getenv(dst, &mustfree);
3953#if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(UNIX)
3954 }
3955#endif
3956 }
3957 /* home directory */
3958 else if ( src[1] == NUL
3959 || vim_ispathsep(src[1])
3960 || vim_strchr((char_u *)" ,\t\n", src[1]) != NULL)
3961 {
3962 var = homedir;
3963 tail = src + 1;
3964 }
3965 else /* user directory */
3966 {
3967#if defined(UNIX) || (defined(VMS) && defined(USER_HOME))
3968 /*
3969 * Copy ~user to dst[], so we can put a NUL after it.
3970 */
3971 tail = src;
3972 var = dst;
3973 c = dstlen - 1;
3974 while ( c-- > 0
3975 && *tail
3976 && vim_isfilec(*tail)
3977 && !vim_ispathsep(*tail))
3978 *var++ = *tail++;
3979 *var = NUL;
3980# ifdef UNIX
3981 /*
3982 * If the system supports getpwnam(), use it.
3983 * Otherwise, or if getpwnam() fails, the shell is used to
3984 * expand ~user. This is slower and may fail if the shell
3985 * does not support ~user (old versions of /bin/sh).
3986 */
3987# if defined(HAVE_GETPWNAM) && defined(HAVE_PWD_H)
3988 {
3989 struct passwd *pw;
3990
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003991 /* Note: memory allocated by getpwnam() is never freed.
3992 * Calling endpwent() apparently doesn't help. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993 pw = getpwnam((char *)dst + 1);
3994 if (pw != NULL)
3995 var = (char_u *)pw->pw_dir;
3996 else
3997 var = NULL;
3998 }
3999 if (var == NULL)
4000# endif
4001 {
4002 expand_T xpc;
4003
4004 ExpandInit(&xpc);
4005 xpc.xp_context = EXPAND_FILES;
4006 var = ExpandOne(&xpc, dst, NULL,
4007 WILD_ADD_SLASH|WILD_SILENT, WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008 mustfree = TRUE;
4009 }
4010
4011# else /* !UNIX, thus VMS */
4012 /*
4013 * USER_HOME is a comma-separated list of
4014 * directories to search for the user account in.
4015 */
4016 {
4017 char_u test[MAXPATHL], paths[MAXPATHL];
4018 char_u *path, *next_path, *ptr;
4019 struct stat st;
4020
4021 STRCPY(paths, USER_HOME);
4022 next_path = paths;
4023 while (*next_path)
4024 {
4025 for (path = next_path; *next_path && *next_path != ',';
4026 next_path++);
4027 if (*next_path)
4028 *next_path++ = NUL;
4029 STRCPY(test, path);
4030 STRCAT(test, "/");
4031 STRCAT(test, dst + 1);
4032 if (mch_stat(test, &st) == 0)
4033 {
4034 var = alloc(STRLEN(test) + 1);
4035 STRCPY(var, test);
4036 mustfree = TRUE;
4037 break;
4038 }
4039 }
4040 }
4041# endif /* UNIX */
4042#else
4043 /* cannot expand user's home directory, so don't try */
4044 var = NULL;
4045 tail = (char_u *)""; /* for gcc */
4046#endif /* UNIX || VMS */
4047 }
4048
4049#ifdef BACKSLASH_IN_FILENAME
4050 /* If 'shellslash' is set change backslashes to forward slashes.
4051 * Can't use slash_adjust(), p_ssl may be set temporarily. */
4052 if (p_ssl && var != NULL && vim_strchr(var, '\\') != NULL)
4053 {
4054 char_u *p = vim_strsave(var);
4055
4056 if (p != NULL)
4057 {
4058 if (mustfree)
4059 vim_free(var);
4060 var = p;
4061 mustfree = TRUE;
4062 forward_slash(var);
4063 }
4064 }
4065#endif
4066
4067 /* If "var" contains white space, escape it with a backslash.
4068 * Required for ":e ~/tt" when $HOME includes a space. */
4069 if (esc && var != NULL && vim_strpbrk(var, (char_u *)" \t") != NULL)
4070 {
4071 char_u *p = vim_strsave_escaped(var, (char_u *)" \t");
4072
4073 if (p != NULL)
4074 {
4075 if (mustfree)
4076 vim_free(var);
4077 var = p;
4078 mustfree = TRUE;
4079 }
4080 }
4081
4082 if (var != NULL && *var != NUL
4083 && (STRLEN(var) + STRLEN(tail) + 1 < (unsigned)dstlen))
4084 {
4085 STRCPY(dst, var);
4086 dstlen -= (int)STRLEN(var);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004087 c = (int)STRLEN(var);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 /* if var[] ends in a path separator and tail[] starts
4089 * with it, skip a character */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004090 if (*var != NUL && after_pathsep(dst, dst + c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA)
4092 && dst[-1] != ':'
4093#endif
4094 && vim_ispathsep(*tail))
4095 ++tail;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004096 dst += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097 src = tail;
4098 copy_char = FALSE;
4099 }
4100 if (mustfree)
4101 vim_free(var);
4102 }
4103
4104 if (copy_char) /* copy at least one char */
4105 {
4106 /*
Bram Moolenaar25394022007-05-10 19:06:20 +00004107 * Recognize the start of a new name, for '~'.
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00004108 * Don't do this when "one" is TRUE, to avoid expanding "~" in
4109 * ":edit foo ~ foo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110 */
4111 at_start = FALSE;
4112 if (src[0] == '\\' && src[1] != NUL)
4113 {
4114 *dst++ = *src++;
4115 --dstlen;
4116 }
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00004117 else if ((src[0] == ' ' || src[0] == ',') && !one)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004118 at_start = TRUE;
4119 *dst++ = *src++;
4120 --dstlen;
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00004121
4122 if (startstr != NULL && src - startstr_len >= srcp
4123 && STRNCMP(src - startstr_len, startstr, startstr_len) == 0)
4124 at_start = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125 }
4126 }
4127 *dst = NUL;
4128}
4129
4130/*
4131 * Vim's version of getenv().
4132 * Special handling of $HOME, $VIM and $VIMRUNTIME.
Bram Moolenaar2f6b0b82005-03-08 22:43:10 +00004133 * Also does ACP to 'enc' conversion for Win32.
Bram Moolenaarb453a532011-04-28 17:48:44 +02004134 * "mustfree" is set to TRUE when returned is allocated, it must be
4135 * initialized to FALSE by the caller.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004136 */
4137 char_u *
4138vim_getenv(name, mustfree)
4139 char_u *name;
Bram Moolenaarb453a532011-04-28 17:48:44 +02004140 int *mustfree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004141{
4142 char_u *p;
4143 char_u *pend;
4144 int vimruntime;
4145
4146#if defined(OS2) || defined(MSDOS) || defined(MSWIN)
4147 /* use "C:/" when $HOME is not set */
4148 if (STRCMP(name, "HOME") == 0)
4149 return homedir;
4150#endif
4151
4152 p = mch_getenv(name);
4153 if (p != NULL && *p == NUL) /* empty is the same as not set */
4154 p = NULL;
4155
4156 if (p != NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00004157 {
4158#if defined(FEAT_MBYTE) && defined(WIN3264)
4159 if (enc_utf8)
4160 {
4161 int len;
Bram Moolenaarb453a532011-04-28 17:48:44 +02004162 char_u *pp = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004163
4164 /* Convert from active codepage to UTF-8. Other conversions are
4165 * not done, because they would fail for non-ASCII characters. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004166 acp_to_enc(p, (int)STRLEN(p), &pp, &len);
Bram Moolenaar05159a02005-02-26 23:04:13 +00004167 if (pp != NULL)
4168 {
4169 p = pp;
4170 *mustfree = TRUE;
4171 }
4172 }
4173#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174 return p;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004175 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176
4177 vimruntime = (STRCMP(name, "VIMRUNTIME") == 0);
4178 if (!vimruntime && STRCMP(name, "VIM") != 0)
4179 return NULL;
4180
4181 /*
4182 * When expanding $VIMRUNTIME fails, try using $VIM/vim<version> or $VIM.
4183 * Don't do this when default_vimruntime_dir is non-empty.
4184 */
4185 if (vimruntime
4186#ifdef HAVE_PATHDEF
4187 && *default_vimruntime_dir == NUL
4188#endif
4189 )
4190 {
4191 p = mch_getenv((char_u *)"VIM");
4192 if (p != NULL && *p == NUL) /* empty is the same as not set */
4193 p = NULL;
4194 if (p != NULL)
4195 {
4196 p = vim_version_dir(p);
4197 if (p != NULL)
4198 *mustfree = TRUE;
4199 else
4200 p = mch_getenv((char_u *)"VIM");
Bram Moolenaar05159a02005-02-26 23:04:13 +00004201
4202#if defined(FEAT_MBYTE) && defined(WIN3264)
4203 if (enc_utf8)
4204 {
4205 int len;
Bram Moolenaarb453a532011-04-28 17:48:44 +02004206 char_u *pp = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004207
4208 /* Convert from active codepage to UTF-8. Other conversions
4209 * are not done, because they would fail for non-ASCII
4210 * characters. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004211 acp_to_enc(p, (int)STRLEN(p), &pp, &len);
Bram Moolenaar05159a02005-02-26 23:04:13 +00004212 if (pp != NULL)
4213 {
Bram Moolenaarb453a532011-04-28 17:48:44 +02004214 if (*mustfree)
Bram Moolenaar05159a02005-02-26 23:04:13 +00004215 vim_free(p);
4216 p = pp;
4217 *mustfree = TRUE;
4218 }
4219 }
4220#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 }
4222 }
4223
4224 /*
4225 * When expanding $VIM or $VIMRUNTIME fails, try using:
4226 * - the directory name from 'helpfile' (unless it contains '$')
4227 * - the executable name from argv[0]
4228 */
4229 if (p == NULL)
4230 {
4231 if (p_hf != NULL && vim_strchr(p_hf, '$') == NULL)
4232 p = p_hf;
4233#ifdef USE_EXE_NAME
4234 /*
4235 * Use the name of the executable, obtained from argv[0].
4236 */
4237 else
4238 p = exe_name;
4239#endif
4240 if (p != NULL)
4241 {
4242 /* remove the file name */
4243 pend = gettail(p);
4244
4245 /* remove "doc/" from 'helpfile', if present */
4246 if (p == p_hf)
4247 pend = remove_tail(p, pend, (char_u *)"doc");
4248
4249#ifdef USE_EXE_NAME
4250# ifdef MACOS_X
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004251 /* remove "MacOS" from exe_name and add "Resources/vim" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252 if (p == exe_name)
4253 {
4254 char_u *pend1;
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004255 char_u *pnew;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004257 pend1 = remove_tail(p, pend, (char_u *)"MacOS");
4258 if (pend1 != pend)
4259 {
4260 pnew = alloc((unsigned)(pend1 - p) + 15);
4261 if (pnew != NULL)
4262 {
4263 STRNCPY(pnew, p, (pend1 - p));
4264 STRCPY(pnew + (pend1 - p), "Resources/vim");
4265 p = pnew;
4266 pend = p + STRLEN(p);
4267 }
4268 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269 }
4270# endif
4271 /* remove "src/" from exe_name, if present */
4272 if (p == exe_name)
4273 pend = remove_tail(p, pend, (char_u *)"src");
4274#endif
4275
4276 /* for $VIM, remove "runtime/" or "vim54/", if present */
4277 if (!vimruntime)
4278 {
4279 pend = remove_tail(p, pend, (char_u *)RUNTIME_DIRNAME);
4280 pend = remove_tail(p, pend, (char_u *)VIM_VERSION_NODOT);
4281 }
4282
4283 /* remove trailing path separator */
4284#ifndef MACOS_CLASSIC
4285 /* With MacOS path (with colons) the final colon is required */
Bram Moolenaare21877a2008-02-13 09:58:14 +00004286 /* to avoid confusion between absolute and relative path */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004287 if (pend > p && after_pathsep(p, pend))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288 --pend;
4289#endif
4290
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004291#ifdef MACOS_X
4292 if (p == exe_name || p == p_hf)
4293#endif
4294 /* check that the result is a directory name */
4295 p = vim_strnsave(p, (int)(pend - p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004296
4297 if (p != NULL && !mch_isdir(p))
4298 {
4299 vim_free(p);
4300 p = NULL;
4301 }
4302 else
4303 {
4304#ifdef USE_EXE_NAME
4305 /* may add "/vim54" or "/runtime" if it exists */
4306 if (vimruntime && (pend = vim_version_dir(p)) != NULL)
4307 {
4308 vim_free(p);
4309 p = pend;
4310 }
4311#endif
4312 *mustfree = TRUE;
4313 }
4314 }
4315 }
4316
4317#ifdef HAVE_PATHDEF
4318 /* When there is a pathdef.c file we can use default_vim_dir and
4319 * default_vimruntime_dir */
4320 if (p == NULL)
4321 {
4322 /* Only use default_vimruntime_dir when it is not empty */
4323 if (vimruntime && *default_vimruntime_dir != NUL)
4324 {
4325 p = default_vimruntime_dir;
4326 *mustfree = FALSE;
4327 }
4328 else if (*default_vim_dir != NUL)
4329 {
4330 if (vimruntime && (p = vim_version_dir(default_vim_dir)) != NULL)
4331 *mustfree = TRUE;
4332 else
4333 {
4334 p = default_vim_dir;
4335 *mustfree = FALSE;
4336 }
4337 }
4338 }
4339#endif
4340
4341 /*
4342 * Set the environment variable, so that the new value can be found fast
4343 * next time, and others can also use it (e.g. Perl).
4344 */
4345 if (p != NULL)
4346 {
4347 if (vimruntime)
4348 {
4349 vim_setenv((char_u *)"VIMRUNTIME", p);
4350 didset_vimruntime = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351 }
4352 else
4353 {
4354 vim_setenv((char_u *)"VIM", p);
4355 didset_vim = TRUE;
4356 }
4357 }
4358 return p;
4359}
4360
4361/*
4362 * Check if the directory "vimdir/<version>" or "vimdir/runtime" exists.
4363 * Return NULL if not, return its name in allocated memory otherwise.
4364 */
4365 static char_u *
4366vim_version_dir(vimdir)
4367 char_u *vimdir;
4368{
4369 char_u *p;
4370
4371 if (vimdir == NULL || *vimdir == NUL)
4372 return NULL;
4373 p = concat_fnames(vimdir, (char_u *)VIM_VERSION_NODOT, TRUE);
4374 if (p != NULL && mch_isdir(p))
4375 return p;
4376 vim_free(p);
4377 p = concat_fnames(vimdir, (char_u *)RUNTIME_DIRNAME, TRUE);
4378 if (p != NULL && mch_isdir(p))
4379 return p;
4380 vim_free(p);
4381 return NULL;
4382}
4383
4384/*
4385 * If the string between "p" and "pend" ends in "name/", return "pend" minus
4386 * the length of "name/". Otherwise return "pend".
4387 */
4388 static char_u *
4389remove_tail(p, pend, name)
4390 char_u *p;
4391 char_u *pend;
4392 char_u *name;
4393{
4394 int len = (int)STRLEN(name) + 1;
4395 char_u *newend = pend - len;
4396
4397 if (newend >= p
4398 && fnamencmp(newend, name, len - 1) == 0
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004399 && (newend == p || after_pathsep(p, newend)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400 return newend;
4401 return pend;
4402}
4403
Bram Moolenaar071d4272004-06-13 20:20:40 +00004404/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405 * Our portable version of setenv.
4406 */
4407 void
4408vim_setenv(name, val)
4409 char_u *name;
4410 char_u *val;
4411{
4412#ifdef HAVE_SETENV
4413 mch_setenv((char *)name, (char *)val, 1);
4414#else
4415 char_u *envbuf;
4416
4417 /*
4418 * Putenv does not copy the string, it has to remain
4419 * valid. The allocated memory will never be freed.
4420 */
4421 envbuf = alloc((unsigned)(STRLEN(name) + STRLEN(val) + 2));
4422 if (envbuf != NULL)
4423 {
4424 sprintf((char *)envbuf, "%s=%s", name, val);
4425 putenv((char *)envbuf);
4426 }
4427#endif
Bram Moolenaar011a34d2012-02-29 13:49:09 +01004428#ifdef FEAT_GETTEXT
4429 /*
4430 * When setting $VIMRUNTIME adjust the directory to find message
4431 * translations to $VIMRUNTIME/lang.
4432 */
4433 if (*val != NUL && STRICMP(name, "VIMRUNTIME") == 0)
4434 {
4435 char_u *buf = concat_str(val, (char_u *)"/lang");
4436
4437 if (buf != NULL)
4438 {
4439 bindtextdomain(VIMPACKAGE, (char *)buf);
4440 vim_free(buf);
4441 }
4442 }
4443#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444}
4445
4446#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4447/*
4448 * Function given to ExpandGeneric() to obtain an environment variable name.
4449 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 char_u *
4451get_env_name(xp, idx)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004452 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 int idx;
4454{
4455# if defined(AMIGA) || defined(__MRC__) || defined(__SC__)
4456 /*
4457 * No environ[] on the Amiga and on the Mac (using MPW).
4458 */
4459 return NULL;
4460# else
4461# ifndef __WIN32__
4462 /* Borland C++ 5.2 has this in a header file. */
4463 extern char **environ;
4464# endif
Bram Moolenaar21cf8232004-07-16 20:18:37 +00004465# define ENVNAMELEN 100
4466 static char_u name[ENVNAMELEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 char_u *str;
4468 int n;
4469
4470 str = (char_u *)environ[idx];
4471 if (str == NULL)
4472 return NULL;
4473
Bram Moolenaar21cf8232004-07-16 20:18:37 +00004474 for (n = 0; n < ENVNAMELEN - 1; ++n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 {
4476 if (str[n] == '=' || str[n] == NUL)
4477 break;
4478 name[n] = str[n];
4479 }
4480 name[n] = NUL;
4481 return name;
4482# endif
4483}
Bram Moolenaar24305862012-08-15 14:05:05 +02004484
4485/*
4486 * Find all user names for user completion.
4487 * Done only once and then cached.
4488 */
4489 static void
4490init_users() {
4491 static int lazy_init_done = FALSE;
4492
4493 if (lazy_init_done)
4494 return;
4495
4496 lazy_init_done = TRUE;
4497 ga_init2(&ga_users, sizeof(char_u *), 20);
4498
4499# if defined(HAVE_GETPWENT) && defined(HAVE_PWD_H)
4500 {
4501 char_u* user;
4502 struct passwd* pw;
4503
4504 setpwent();
4505 while ((pw = getpwent()) != NULL)
4506 /* pw->pw_name shouldn't be NULL but just in case... */
4507 if (pw->pw_name != NULL)
4508 {
4509 if (ga_grow(&ga_users, 1) == FAIL)
4510 break;
4511 user = vim_strsave((char_u*)pw->pw_name);
4512 if (user == NULL)
4513 break;
4514 ((char_u **)(ga_users.ga_data))[ga_users.ga_len++] = user;
4515 }
4516 endpwent();
4517 }
4518# endif
4519}
4520
4521/*
4522 * Function given to ExpandGeneric() to obtain an user names.
4523 */
4524 char_u*
4525get_users(xp, idx)
4526 expand_T *xp UNUSED;
4527 int idx;
4528{
4529 init_users();
4530 if (idx < ga_users.ga_len)
4531 return ((char_u **)ga_users.ga_data)[idx];
4532 return NULL;
4533}
4534
4535/*
4536 * Check whether name matches a user name. Return:
4537 * 0 if name does not match any user name.
4538 * 1 if name partially matches the beginning of a user name.
4539 * 2 is name fully matches a user name.
4540 */
4541int match_user(name)
4542 char_u* name;
4543{
4544 int i;
4545 int n = (int)STRLEN(name);
4546 int result = 0;
4547
4548 init_users();
4549 for (i = 0; i < ga_users.ga_len; i++)
4550 {
4551 if (STRCMP(((char_u **)ga_users.ga_data)[i], name) == 0)
4552 return 2; /* full match */
4553 if (STRNCMP(((char_u **)ga_users.ga_data)[i], name, n) == 0)
4554 result = 1; /* partial match */
4555 }
4556 return result;
4557}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558#endif
4559
4560/*
4561 * Replace home directory by "~" in each space or comma separated file name in
4562 * 'src'.
4563 * If anything fails (except when out of space) dst equals src.
4564 */
4565 void
4566home_replace(buf, src, dst, dstlen, one)
4567 buf_T *buf; /* when not NULL, check for help files */
4568 char_u *src; /* input file name */
4569 char_u *dst; /* where to put the result */
4570 int dstlen; /* maximum length of the result */
4571 int one; /* if TRUE, only replace one file name, include
4572 spaces and commas in the file name. */
4573{
4574 size_t dirlen = 0, envlen = 0;
4575 size_t len;
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004576 char_u *homedir_env, *homedir_env_orig;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577 char_u *p;
4578
4579 if (src == NULL)
4580 {
4581 *dst = NUL;
4582 return;
4583 }
4584
4585 /*
4586 * If the file is a help file, remove the path completely.
4587 */
4588 if (buf != NULL && buf->b_help)
4589 {
4590 STRCPY(dst, gettail(src));
4591 return;
4592 }
4593
4594 /*
4595 * We check both the value of the $HOME environment variable and the
4596 * "real" home directory.
4597 */
4598 if (homedir != NULL)
4599 dirlen = STRLEN(homedir);
4600
4601#ifdef VMS
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004602 homedir_env_orig = homedir_env = mch_getenv((char_u *)"SYS$LOGIN");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004603#else
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004604 homedir_env_orig = homedir_env = mch_getenv((char_u *)"HOME");
4605#endif
Bram Moolenaarbef47902012-07-06 16:49:40 +02004606 /* Empty is the same as not set. */
4607 if (homedir_env != NULL && *homedir_env == NUL)
4608 homedir_env = NULL;
4609
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004610#if defined(FEAT_MODIFY_FNAME) || defined(WIN3264)
Bram Moolenaarbef47902012-07-06 16:49:40 +02004611 if (homedir_env != NULL && vim_strchr(homedir_env, '~') != NULL)
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004612 {
4613 int usedlen = 0;
4614 int flen;
4615 char_u *fbuf = NULL;
4616
4617 flen = (int)STRLEN(homedir_env);
Bram Moolenaard12f8112012-06-20 17:56:09 +02004618 (void)modify_fname((char_u *)":p", &usedlen,
4619 &homedir_env, &fbuf, &flen);
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004620 flen = (int)STRLEN(homedir_env);
4621 if (flen > 0 && vim_ispathsep(homedir_env[flen - 1]))
4622 /* Remove the trailing / that is added to a directory. */
4623 homedir_env[flen - 1] = NUL;
4624 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625#endif
4626
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627 if (homedir_env != NULL)
4628 envlen = STRLEN(homedir_env);
4629
4630 if (!one)
4631 src = skipwhite(src);
4632 while (*src && dstlen > 0)
4633 {
4634 /*
4635 * Here we are at the beginning of a file name.
4636 * First, check to see if the beginning of the file name matches
4637 * $HOME or the "real" home directory. Check that there is a '/'
4638 * after the match (so that if e.g. the file is "/home/pieter/bla",
4639 * and the home directory is "/home/piet", the file does not end up
4640 * as "~er/bla" (which would seem to indicate the file "bla" in user
4641 * er's home directory)).
4642 */
4643 p = homedir;
4644 len = dirlen;
4645 for (;;)
4646 {
4647 if ( len
4648 && fnamencmp(src, p, len) == 0
4649 && (vim_ispathsep(src[len])
4650 || (!one && (src[len] == ',' || src[len] == ' '))
4651 || src[len] == NUL))
4652 {
4653 src += len;
4654 if (--dstlen > 0)
4655 *dst++ = '~';
4656
4657 /*
4658 * If it's just the home directory, add "/".
4659 */
4660 if (!vim_ispathsep(src[0]) && --dstlen > 0)
4661 *dst++ = '/';
4662 break;
4663 }
4664 if (p == homedir_env)
4665 break;
4666 p = homedir_env;
4667 len = envlen;
4668 }
4669
4670 /* if (!one) skip to separator: space or comma */
4671 while (*src && (one || (*src != ',' && *src != ' ')) && --dstlen > 0)
4672 *dst++ = *src++;
4673 /* skip separator */
4674 while ((*src == ' ' || *src == ',') && --dstlen > 0)
4675 *dst++ = *src++;
4676 }
4677 /* if (dstlen == 0) out of space, what to do??? */
4678
4679 *dst = NUL;
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004680
4681 if (homedir_env != homedir_env_orig)
4682 vim_free(homedir_env);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683}
4684
4685/*
4686 * Like home_replace, store the replaced string in allocated memory.
4687 * When something fails, NULL is returned.
4688 */
4689 char_u *
4690home_replace_save(buf, src)
4691 buf_T *buf; /* when not NULL, check for help files */
4692 char_u *src; /* input file name */
4693{
4694 char_u *dst;
4695 unsigned len;
4696
4697 len = 3; /* space for "~/" and trailing NUL */
4698 if (src != NULL) /* just in case */
4699 len += (unsigned)STRLEN(src);
4700 dst = alloc(len);
4701 if (dst != NULL)
4702 home_replace(buf, src, dst, len, TRUE);
4703 return dst;
4704}
4705
4706/*
4707 * Compare two file names and return:
4708 * FPC_SAME if they both exist and are the same file.
4709 * FPC_SAMEX if they both don't exist and have the same file name.
4710 * FPC_DIFF if they both exist and are different files.
4711 * FPC_NOTX if they both don't exist.
4712 * FPC_DIFFX if one of them doesn't exist.
4713 * For the first name environment variables are expanded
4714 */
4715 int
4716fullpathcmp(s1, s2, checkname)
4717 char_u *s1, *s2;
4718 int checkname; /* when both don't exist, check file names */
4719{
4720#ifdef UNIX
4721 char_u exp1[MAXPATHL];
4722 char_u full1[MAXPATHL];
4723 char_u full2[MAXPATHL];
4724 struct stat st1, st2;
4725 int r1, r2;
4726
4727 expand_env(s1, exp1, MAXPATHL);
4728 r1 = mch_stat((char *)exp1, &st1);
4729 r2 = mch_stat((char *)s2, &st2);
4730 if (r1 != 0 && r2 != 0)
4731 {
4732 /* if mch_stat() doesn't work, may compare the names */
4733 if (checkname)
4734 {
4735 if (fnamecmp(exp1, s2) == 0)
4736 return FPC_SAMEX;
4737 r1 = vim_FullName(exp1, full1, MAXPATHL, FALSE);
4738 r2 = vim_FullName(s2, full2, MAXPATHL, FALSE);
4739 if (r1 == OK && r2 == OK && fnamecmp(full1, full2) == 0)
4740 return FPC_SAMEX;
4741 }
4742 return FPC_NOTX;
4743 }
4744 if (r1 != 0 || r2 != 0)
4745 return FPC_DIFFX;
4746 if (st1.st_dev == st2.st_dev && st1.st_ino == st2.st_ino)
4747 return FPC_SAME;
4748 return FPC_DIFF;
4749#else
4750 char_u *exp1; /* expanded s1 */
4751 char_u *full1; /* full path of s1 */
4752 char_u *full2; /* full path of s2 */
4753 int retval = FPC_DIFF;
4754 int r1, r2;
4755
4756 /* allocate one buffer to store three paths (alloc()/free() is slow!) */
4757 if ((exp1 = alloc(MAXPATHL * 3)) != NULL)
4758 {
4759 full1 = exp1 + MAXPATHL;
4760 full2 = full1 + MAXPATHL;
4761
4762 expand_env(s1, exp1, MAXPATHL);
4763 r1 = vim_FullName(exp1, full1, MAXPATHL, FALSE);
4764 r2 = vim_FullName(s2, full2, MAXPATHL, FALSE);
4765
4766 /* If vim_FullName() fails, the file probably doesn't exist. */
4767 if (r1 != OK && r2 != OK)
4768 {
4769 if (checkname && fnamecmp(exp1, s2) == 0)
4770 retval = FPC_SAMEX;
4771 else
4772 retval = FPC_NOTX;
4773 }
4774 else if (r1 != OK || r2 != OK)
4775 retval = FPC_DIFFX;
4776 else if (fnamecmp(full1, full2))
4777 retval = FPC_DIFF;
4778 else
4779 retval = FPC_SAME;
4780 vim_free(exp1);
4781 }
4782 return retval;
4783#endif
4784}
4785
4786/*
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00004787 * Get the tail of a path: the file name.
Bram Moolenaar31710262010-08-13 13:36:15 +02004788 * When the path ends in a path separator the tail is the NUL after it.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00004789 * Fail safe: never returns NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 */
4791 char_u *
4792gettail(fname)
4793 char_u *fname;
4794{
4795 char_u *p1, *p2;
4796
4797 if (fname == NULL)
4798 return (char_u *)"";
4799 for (p1 = p2 = fname; *p2; ) /* find last part of path */
4800 {
4801 if (vim_ispathsep(*p2))
4802 p1 = p2 + 1;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004803 mb_ptr_adv(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804 }
4805 return p1;
4806}
4807
Bram Moolenaar31710262010-08-13 13:36:15 +02004808#if defined(FEAT_SEARCHPATH)
4809static char_u *gettail_dir __ARGS((char_u *fname));
4810
4811/*
4812 * Return the end of the directory name, on the first path
4813 * separator:
4814 * "/path/file", "/path/dir/", "/path//dir", "/file"
4815 * ^ ^ ^ ^
4816 */
4817 static char_u *
4818gettail_dir(fname)
4819 char_u *fname;
4820{
4821 char_u *dir_end = fname;
4822 char_u *next_dir_end = fname;
4823 int look_for_sep = TRUE;
4824 char_u *p;
4825
4826 for (p = fname; *p != NUL; )
4827 {
4828 if (vim_ispathsep(*p))
4829 {
4830 if (look_for_sep)
4831 {
4832 next_dir_end = p;
4833 look_for_sep = FALSE;
4834 }
4835 }
4836 else
4837 {
4838 if (!look_for_sep)
4839 dir_end = next_dir_end;
4840 look_for_sep = TRUE;
4841 }
4842 mb_ptr_adv(p);
4843 }
4844 return dir_end;
4845}
4846#endif
4847
Bram Moolenaar071d4272004-06-13 20:20:40 +00004848/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004849 * Get pointer to tail of "fname", including path separators. Putting a NUL
4850 * here leaves the directory name. Takes care of "c:/" and "//".
4851 * Always returns a valid pointer.
4852 */
4853 char_u *
4854gettail_sep(fname)
4855 char_u *fname;
4856{
4857 char_u *p;
4858 char_u *t;
4859
4860 p = get_past_head(fname); /* don't remove the '/' from "c:/file" */
4861 t = gettail(fname);
4862 while (t > p && after_pathsep(fname, t))
4863 --t;
4864#ifdef VMS
4865 /* path separator is part of the path */
4866 ++t;
4867#endif
4868 return t;
4869}
4870
4871/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872 * get the next path component (just after the next path separator).
4873 */
4874 char_u *
4875getnextcomp(fname)
4876 char_u *fname;
4877{
4878 while (*fname && !vim_ispathsep(*fname))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004879 mb_ptr_adv(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880 if (*fname)
4881 ++fname;
4882 return fname;
4883}
4884
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885/*
4886 * Get a pointer to one character past the head of a path name.
4887 * Unix: after "/"; DOS: after "c:\"; Amiga: after "disk:/"; Mac: no head.
4888 * If there is no head, path is returned.
4889 */
4890 char_u *
4891get_past_head(path)
4892 char_u *path;
4893{
4894 char_u *retval;
4895
4896#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
4897 /* may skip "c:" */
4898 if (isalpha(path[0]) && path[1] == ':')
4899 retval = path + 2;
4900 else
4901 retval = path;
4902#else
4903# if defined(AMIGA)
4904 /* may skip "label:" */
4905 retval = vim_strchr(path, ':');
4906 if (retval == NULL)
4907 retval = path;
4908# else /* Unix */
4909 retval = path;
4910# endif
4911#endif
4912
4913 while (vim_ispathsep(*retval))
4914 ++retval;
4915
4916 return retval;
4917}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918
4919/*
4920 * return TRUE if 'c' is a path separator.
4921 */
4922 int
4923vim_ispathsep(c)
4924 int c;
4925{
Bram Moolenaare60acc12011-05-10 16:41:25 +02004926#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 return (c == '/'); /* UNIX has ':' inside file names */
Bram Moolenaare60acc12011-05-10 16:41:25 +02004928#else
4929# ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930 return (c == ':' || c == '/' || c == '\\');
Bram Moolenaare60acc12011-05-10 16:41:25 +02004931# else
4932# ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933 /* server"user passwd"::device:[full.path.name]fname.extension;version" */
4934 return (c == ':' || c == '[' || c == ']' || c == '/'
4935 || c == '<' || c == '>' || c == '"' );
Bram Moolenaare60acc12011-05-10 16:41:25 +02004936# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 return (c == ':' || c == '/');
Bram Moolenaare60acc12011-05-10 16:41:25 +02004938# endif /* VMS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939# endif
Bram Moolenaare60acc12011-05-10 16:41:25 +02004940#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941}
4942
4943#if defined(FEAT_SEARCHPATH) || defined(PROTO)
4944/*
4945 * return TRUE if 'c' is a path list separator.
4946 */
4947 int
4948vim_ispathlistsep(c)
4949 int c;
4950{
4951#ifdef UNIX
4952 return (c == ':');
4953#else
Bram Moolenaar25394022007-05-10 19:06:20 +00004954 return (c == ';'); /* might not be right for every system... */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955#endif
4956}
4957#endif
4958
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004959#if defined(FEAT_GUI_TABLINE) || defined(FEAT_WINDOWS) \
4960 || defined(FEAT_EVAL) || defined(PROTO)
4961/*
4962 * Shorten the path of a file from "~/foo/../.bar/fname" to "~/f/../.b/fname"
4963 * It's done in-place.
4964 */
4965 void
4966shorten_dir(str)
4967 char_u *str;
4968{
4969 char_u *tail, *s, *d;
4970 int skip = FALSE;
4971
4972 tail = gettail(str);
4973 d = str;
4974 for (s = str; ; ++s)
4975 {
4976 if (s >= tail) /* copy the whole tail */
4977 {
4978 *d++ = *s;
4979 if (*s == NUL)
4980 break;
4981 }
4982 else if (vim_ispathsep(*s)) /* copy '/' and next char */
4983 {
4984 *d++ = *s;
4985 skip = FALSE;
4986 }
4987 else if (!skip)
4988 {
4989 *d++ = *s; /* copy next char */
4990 if (*s != '~' && *s != '.') /* and leading "~" and "." */
4991 skip = TRUE;
4992# ifdef FEAT_MBYTE
4993 if (has_mbyte)
4994 {
4995 int l = mb_ptr2len(s);
4996
4997 while (--l > 0)
Bram Moolenaarb6baca52006-08-15 20:24:14 +00004998 *d++ = *++s;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004999 }
5000# endif
5001 }
5002 }
5003}
5004#endif
5005
Bram Moolenaar900b4d72005-12-12 22:05:50 +00005006/*
5007 * Return TRUE if the directory of "fname" exists, FALSE otherwise.
5008 * Also returns TRUE if there is no directory name.
5009 * "fname" must be writable!.
5010 */
5011 int
5012dir_of_file_exists(fname)
5013 char_u *fname;
5014{
5015 char_u *p;
5016 int c;
5017 int retval;
5018
5019 p = gettail_sep(fname);
5020 if (p == fname)
5021 return TRUE;
5022 c = *p;
5023 *p = NUL;
5024 retval = mch_isdir(fname);
5025 *p = c;
5026 return retval;
5027}
5028
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029/*
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01005030 * Versions of fnamecmp() and fnamencmp() that handle '/' and '\' equally
5031 * and deal with 'fileignorecase'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005032 */
5033 int
5034vim_fnamecmp(x, y)
5035 char_u *x, *y;
5036{
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01005037#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038 return vim_fnamencmp(x, y, MAXPATHL);
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01005039#else
5040 if (p_fic)
5041 return MB_STRICMP(x, y);
5042 return STRCMP(x, y);
5043#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044}
5045
5046 int
5047vim_fnamencmp(x, y, len)
5048 char_u *x, *y;
5049 size_t len;
5050{
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01005051#ifdef BACKSLASH_IN_FILENAME
5052 /* TODO: multi-byte characters. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 while (len > 0 && *x && *y)
5054 {
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01005055 if ((p_fic ? TOLOWER_LOC(*x) != TOLOWER_LOC(*y) : *x != *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056 && !(*x == '/' && *y == '\\')
5057 && !(*x == '\\' && *y == '/'))
5058 break;
5059 ++x;
5060 ++y;
5061 --len;
5062 }
5063 if (len == 0)
5064 return 0;
5065 return (*x - *y);
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01005066#else
5067 if (p_fic)
5068 return MB_STRNICMP(x, y, len);
5069 return STRNCMP(x, y, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070#endif
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01005071}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072
5073/*
5074 * Concatenate file names fname1 and fname2 into allocated memory.
Bram Moolenaar25394022007-05-10 19:06:20 +00005075 * Only add a '/' or '\\' when 'sep' is TRUE and it is necessary.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 */
5077 char_u *
5078concat_fnames(fname1, fname2, sep)
5079 char_u *fname1;
5080 char_u *fname2;
5081 int sep;
5082{
5083 char_u *dest;
5084
5085 dest = alloc((unsigned)(STRLEN(fname1) + STRLEN(fname2) + 3));
5086 if (dest != NULL)
5087 {
5088 STRCPY(dest, fname1);
5089 if (sep)
5090 add_pathsep(dest);
5091 STRCAT(dest, fname2);
5092 }
5093 return dest;
5094}
5095
Bram Moolenaard6754642005-01-17 22:18:45 +00005096/*
5097 * Concatenate two strings and return the result in allocated memory.
5098 * Returns NULL when out of memory.
5099 */
5100 char_u *
5101concat_str(str1, str2)
5102 char_u *str1;
5103 char_u *str2;
5104{
5105 char_u *dest;
5106 size_t l = STRLEN(str1);
5107
5108 dest = alloc((unsigned)(l + STRLEN(str2) + 1L));
5109 if (dest != NULL)
5110 {
5111 STRCPY(dest, str1);
5112 STRCPY(dest + l, str2);
5113 }
5114 return dest;
5115}
Bram Moolenaard6754642005-01-17 22:18:45 +00005116
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117/*
5118 * Add a path separator to a file name, unless it already ends in a path
5119 * separator.
5120 */
5121 void
5122add_pathsep(p)
5123 char_u *p;
5124{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005125 if (*p != NUL && !after_pathsep(p, p + STRLEN(p)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005126 STRCAT(p, PATHSEPSTR);
5127}
5128
5129/*
5130 * FullName_save - Make an allocated copy of a full file name.
5131 * Returns NULL when out of memory.
5132 */
5133 char_u *
5134FullName_save(fname, force)
5135 char_u *fname;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005136 int force; /* force expansion, even when it already looks
5137 * like a full path name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138{
5139 char_u *buf;
5140 char_u *new_fname = NULL;
5141
5142 if (fname == NULL)
5143 return NULL;
5144
5145 buf = alloc((unsigned)MAXPATHL);
5146 if (buf != NULL)
5147 {
5148 if (vim_FullName(fname, buf, MAXPATHL, force) != FAIL)
5149 new_fname = vim_strsave(buf);
5150 else
5151 new_fname = vim_strsave(fname);
5152 vim_free(buf);
5153 }
5154 return new_fname;
5155}
5156
5157#if defined(FEAT_CINDENT) || defined(FEAT_SYN_HL)
5158
5159static char_u *skip_string __ARGS((char_u *p));
5160
5161/*
5162 * Find the start of a comment, not knowing if we are in a comment right now.
5163 * Search starts at w_cursor.lnum and goes backwards.
5164 */
5165 pos_T *
5166find_start_comment(ind_maxcomment) /* XXX */
5167 int ind_maxcomment;
5168{
5169 pos_T *pos;
5170 char_u *line;
5171 char_u *p;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005172 int cur_maxcomment = ind_maxcomment;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005174 for (;;)
5175 {
5176 pos = findmatchlimit(NULL, '*', FM_BACKWARD, cur_maxcomment);
5177 if (pos == NULL)
5178 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005180 /*
5181 * Check if the comment start we found is inside a string.
5182 * If it is then restrict the search to below this line and try again.
5183 */
5184 line = ml_get(pos->lnum);
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005185 for (p = line; *p && (colnr_T)(p - line) < pos->col; ++p)
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005186 p = skip_string(p);
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005187 if ((colnr_T)(p - line) <= pos->col)
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005188 break;
5189 cur_maxcomment = curwin->w_cursor.lnum - pos->lnum - 1;
5190 if (cur_maxcomment <= 0)
5191 {
5192 pos = NULL;
5193 break;
5194 }
5195 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196 return pos;
5197}
5198
5199/*
5200 * Skip to the end of a "string" and a 'c' character.
5201 * If there is no string or character, return argument unmodified.
5202 */
5203 static char_u *
5204skip_string(p)
5205 char_u *p;
5206{
5207 int i;
5208
5209 /*
5210 * We loop, because strings may be concatenated: "date""time".
5211 */
5212 for ( ; ; ++p)
5213 {
5214 if (p[0] == '\'') /* 'c' or '\n' or '\000' */
5215 {
5216 if (!p[1]) /* ' at end of line */
5217 break;
5218 i = 2;
5219 if (p[1] == '\\') /* '\n' or '\000' */
5220 {
5221 ++i;
5222 while (vim_isdigit(p[i - 1])) /* '\000' */
5223 ++i;
5224 }
5225 if (p[i] == '\'') /* check for trailing ' */
5226 {
5227 p += i;
5228 continue;
5229 }
5230 }
5231 else if (p[0] == '"') /* start of string */
5232 {
5233 for (++p; p[0]; ++p)
5234 {
5235 if (p[0] == '\\' && p[1] != NUL)
5236 ++p;
5237 else if (p[0] == '"') /* end of string */
5238 break;
5239 }
5240 if (p[0] == '"')
5241 continue;
5242 }
5243 break; /* no string found */
5244 }
5245 if (!*p)
5246 --p; /* backup from NUL */
5247 return p;
5248}
5249#endif /* FEAT_CINDENT || FEAT_SYN_HL */
5250
5251#if defined(FEAT_CINDENT) || defined(PROTO)
5252
5253/*
5254 * Do C or expression indenting on the current line.
5255 */
5256 void
5257do_c_expr_indent()
5258{
5259# ifdef FEAT_EVAL
5260 if (*curbuf->b_p_inde != NUL)
5261 fixthisline(get_expr_indent);
5262 else
5263# endif
5264 fixthisline(get_c_indent);
5265}
5266
5267/*
5268 * Functions for C-indenting.
5269 * Most of this originally comes from Eric Fischer.
5270 */
5271/*
5272 * Below "XXX" means that this function may unlock the current line.
5273 */
5274
5275static char_u *cin_skipcomment __ARGS((char_u *));
5276static int cin_nocode __ARGS((char_u *));
5277static pos_T *find_line_comment __ARGS((void));
5278static int cin_islabel_skip __ARGS((char_u **));
5279static int cin_isdefault __ARGS((char_u *));
5280static char_u *after_label __ARGS((char_u *l));
5281static int get_indent_nolabel __ARGS((linenr_T lnum));
5282static int skip_label __ARGS((linenr_T, char_u **pp, int ind_maxcomment));
5283static int cin_first_id_amount __ARGS((void));
5284static int cin_get_equal_amount __ARGS((linenr_T lnum));
5285static int cin_ispreproc __ARGS((char_u *));
5286static int cin_ispreproc_cont __ARGS((char_u **pp, linenr_T *lnump));
5287static int cin_iscomment __ARGS((char_u *));
5288static int cin_islinecomment __ARGS((char_u *));
5289static int cin_isterminated __ARGS((char_u *, int, int));
5290static int cin_isinit __ARGS((void));
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005291static int cin_isfuncdecl __ARGS((char_u **, linenr_T, linenr_T, int, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292static int cin_isif __ARGS((char_u *));
5293static int cin_iselse __ARGS((char_u *));
5294static int cin_isdo __ARGS((char_u *));
5295static int cin_iswhileofdo __ARGS((char_u *, linenr_T, int));
Bram Moolenaarb345d492012-04-09 20:42:26 +02005296static int cin_is_if_for_while_before_offset __ARGS((char_u *line, int *poffset));
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005297static int cin_iswhileofdo_end __ARGS((int terminated, int ind_maxparen, int ind_maxcomment));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298static int cin_isbreak __ARGS((char_u *));
Bram Moolenaare7c56862007-08-04 10:14:52 +00005299static int cin_is_cpp_baseclass __ARGS((colnr_T *col));
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005300static int get_baseclass_amount __ARGS((int col, int ind_maxparen, int ind_maxcomment, int ind_cpp_baseclass));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301static int cin_ends_in __ARGS((char_u *, char_u *, char_u *));
Bram Moolenaar75342212013-03-07 13:13:52 +01005302static int cin_starts_with __ARGS((char_u *s, char *word));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303static int cin_skip2pos __ARGS((pos_T *trypos));
5304static pos_T *find_start_brace __ARGS((int));
5305static pos_T *find_match_paren __ARGS((int, int));
5306static int corr_ind_maxparen __ARGS((int ind_maxparen, pos_T *startpos));
5307static int find_last_paren __ARGS((char_u *l, int start, int end));
5308static int find_match __ARGS((int lookfor, linenr_T ourscope, int ind_maxparen, int ind_maxcomment));
Bram Moolenaared38b0a2011-05-25 15:16:18 +02005309static int cin_is_cpp_namespace __ARGS((char_u *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310
Bram Moolenaar39353fd2007-03-27 09:02:11 +00005311static int ind_hash_comment = 0; /* # starts a comment */
5312
Bram Moolenaar071d4272004-06-13 20:20:40 +00005313/*
5314 * Skip over white space and C comments within the line.
Bram Moolenaar39353fd2007-03-27 09:02:11 +00005315 * Also skip over Perl/shell comments if desired.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316 */
5317 static char_u *
5318cin_skipcomment(s)
5319 char_u *s;
5320{
5321 while (*s)
5322 {
Bram Moolenaar39353fd2007-03-27 09:02:11 +00005323 char_u *prev_s = s;
5324
Bram Moolenaar071d4272004-06-13 20:20:40 +00005325 s = skipwhite(s);
Bram Moolenaar39353fd2007-03-27 09:02:11 +00005326
5327 /* Perl/shell # comment comment continues until eol. Require a space
5328 * before # to avoid recognizing $#array. */
5329 if (ind_hash_comment != 0 && s != prev_s && *s == '#')
5330 {
5331 s += STRLEN(s);
5332 break;
5333 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334 if (*s != '/')
5335 break;
5336 ++s;
5337 if (*s == '/') /* slash-slash comment continues till eol */
5338 {
5339 s += STRLEN(s);
5340 break;
5341 }
5342 if (*s != '*')
5343 break;
5344 for (++s; *s; ++s) /* skip slash-star comment */
5345 if (s[0] == '*' && s[1] == '/')
5346 {
5347 s += 2;
5348 break;
5349 }
5350 }
5351 return s;
5352}
5353
5354/*
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005355 * Return TRUE if there is no code at *s. White space and comments are
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356 * not considered code.
5357 */
5358 static int
5359cin_nocode(s)
5360 char_u *s;
5361{
5362 return *cin_skipcomment(s) == NUL;
5363}
5364
5365/*
5366 * Check previous lines for a "//" line comment, skipping over blank lines.
5367 */
5368 static pos_T *
5369find_line_comment() /* XXX */
5370{
5371 static pos_T pos;
5372 char_u *line;
5373 char_u *p;
5374
5375 pos = curwin->w_cursor;
5376 while (--pos.lnum > 0)
5377 {
5378 line = ml_get(pos.lnum);
5379 p = skipwhite(line);
5380 if (cin_islinecomment(p))
5381 {
5382 pos.col = (int)(p - line);
5383 return &pos;
5384 }
5385 if (*p != NUL)
5386 break;
5387 }
5388 return NULL;
5389}
5390
5391/*
5392 * Check if string matches "label:"; move to character after ':' if true.
5393 */
5394 static int
5395cin_islabel_skip(s)
5396 char_u **s;
5397{
5398 if (!vim_isIDc(**s)) /* need at least one ID character */
5399 return FALSE;
5400
5401 while (vim_isIDc(**s))
5402 (*s)++;
5403
5404 *s = cin_skipcomment(*s);
5405
5406 /* "::" is not a label, it's C++ */
5407 return (**s == ':' && *++*s != ':');
5408}
5409
5410/*
5411 * Recognize a label: "label:".
5412 * Note: curwin->w_cursor must be where we are looking for the label.
5413 */
5414 int
5415cin_islabel(ind_maxcomment) /* XXX */
5416 int ind_maxcomment;
5417{
5418 char_u *s;
5419
5420 s = cin_skipcomment(ml_get_curline());
5421
5422 /*
5423 * Exclude "default" from labels, since it should be indented
5424 * like a switch label. Same for C++ scope declarations.
5425 */
5426 if (cin_isdefault(s))
5427 return FALSE;
5428 if (cin_isscopedecl(s))
5429 return FALSE;
5430
5431 if (cin_islabel_skip(&s))
5432 {
5433 /*
5434 * Only accept a label if the previous line is terminated or is a case
5435 * label.
5436 */
5437 pos_T cursor_save;
5438 pos_T *trypos;
5439 char_u *line;
5440
5441 cursor_save = curwin->w_cursor;
5442 while (curwin->w_cursor.lnum > 1)
5443 {
5444 --curwin->w_cursor.lnum;
5445
5446 /*
5447 * If we're in a comment now, skip to the start of the comment.
5448 */
5449 curwin->w_cursor.col = 0;
5450 if ((trypos = find_start_comment(ind_maxcomment)) != NULL) /* XXX */
5451 curwin->w_cursor = *trypos;
5452
5453 line = ml_get_curline();
5454 if (cin_ispreproc(line)) /* ignore #defines, #if, etc. */
5455 continue;
5456 if (*(line = cin_skipcomment(line)) == NUL)
5457 continue;
5458
5459 curwin->w_cursor = cursor_save;
5460 if (cin_isterminated(line, TRUE, FALSE)
5461 || cin_isscopedecl(line)
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005462 || cin_iscase(line, TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005463 || (cin_islabel_skip(&line) && cin_nocode(line)))
5464 return TRUE;
5465 return FALSE;
5466 }
5467 curwin->w_cursor = cursor_save;
5468 return TRUE; /* label at start of file??? */
5469 }
5470 return FALSE;
5471}
5472
5473/*
Bram Moolenaar75342212013-03-07 13:13:52 +01005474 * Recognize structure initialization and enumerations:
5475 * "[typedef] [static|public|protected|private] enum"
5476 * "[typedef] [static|public|protected|private] = {"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005477 */
5478 static int
5479cin_isinit(void)
5480{
5481 char_u *s;
Bram Moolenaar75342212013-03-07 13:13:52 +01005482 static char *skip[] = {"static", "public", "protected", "private"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483
5484 s = cin_skipcomment(ml_get_curline());
5485
Bram Moolenaar75342212013-03-07 13:13:52 +01005486 if (cin_starts_with(s, "typedef"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005487 s = cin_skipcomment(s + 7);
5488
Bram Moolenaar75342212013-03-07 13:13:52 +01005489 for (;;)
5490 {
5491 int i, l;
Bram Moolenaara5285652011-12-14 20:05:21 +01005492
Bram Moolenaar75342212013-03-07 13:13:52 +01005493 for (i = 0; i < (int)(sizeof(skip) / sizeof(char *)); ++i)
5494 {
Bram Moolenaarb3cb9822013-03-13 17:01:52 +01005495 l = (int)strlen(skip[i]);
Bram Moolenaar75342212013-03-07 13:13:52 +01005496 if (cin_starts_with(s, skip[i]))
5497 {
5498 s = cin_skipcomment(s + l);
5499 l = 0;
5500 break;
5501 }
5502 }
5503 if (l != 0)
5504 break;
5505 }
5506
5507 if (cin_starts_with(s, "enum"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508 return TRUE;
5509
5510 if (cin_ends_in(s, (char_u *)"=", (char_u *)"{"))
5511 return TRUE;
5512
5513 return FALSE;
5514}
5515
5516/*
5517 * Recognize a switch label: "case .*:" or "default:".
5518 */
5519 int
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005520cin_iscase(s, strict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521 char_u *s;
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005522 int strict; /* Allow relaxed check of case statement for JS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523{
5524 s = cin_skipcomment(s);
Bram Moolenaar75342212013-03-07 13:13:52 +01005525 if (cin_starts_with(s, "case"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005526 {
5527 for (s += 4; *s; ++s)
5528 {
5529 s = cin_skipcomment(s);
5530 if (*s == ':')
5531 {
5532 if (s[1] == ':') /* skip over "::" for C++ */
5533 ++s;
5534 else
5535 return TRUE;
5536 }
5537 if (*s == '\'' && s[1] && s[2] == '\'')
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005538 s += 2; /* skip over ':' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005539 else if (*s == '/' && (s[1] == '*' || s[1] == '/'))
5540 return FALSE; /* stop at comment */
5541 else if (*s == '"')
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005542 {
5543 /* JS etc. */
5544 if (strict)
5545 return FALSE; /* stop at string */
5546 else
5547 return TRUE;
5548 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005549 }
5550 return FALSE;
5551 }
5552
5553 if (cin_isdefault(s))
5554 return TRUE;
5555 return FALSE;
5556}
5557
5558/*
5559 * Recognize a "default" switch label.
5560 */
5561 static int
5562cin_isdefault(s)
5563 char_u *s;
5564{
5565 return (STRNCMP(s, "default", 7) == 0
5566 && *(s = cin_skipcomment(s + 7)) == ':'
5567 && s[1] != ':');
5568}
5569
5570/*
Bram Moolenaar1a509df2010-08-01 17:59:57 +02005571 * Recognize a "public/private/protected" scope declaration label.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572 */
5573 int
5574cin_isscopedecl(s)
5575 char_u *s;
5576{
5577 int i;
5578
5579 s = cin_skipcomment(s);
5580 if (STRNCMP(s, "public", 6) == 0)
5581 i = 6;
5582 else if (STRNCMP(s, "protected", 9) == 0)
5583 i = 9;
5584 else if (STRNCMP(s, "private", 7) == 0)
5585 i = 7;
5586 else
5587 return FALSE;
5588 return (*(s = cin_skipcomment(s + i)) == ':' && s[1] != ':');
5589}
5590
Bram Moolenaared38b0a2011-05-25 15:16:18 +02005591/* Maximum number of lines to search back for a "namespace" line. */
5592#define FIND_NAMESPACE_LIM 20
5593
5594/*
5595 * Recognize a "namespace" scope declaration.
5596 */
5597 static int
5598cin_is_cpp_namespace(s)
5599 char_u *s;
5600{
5601 char_u *p;
5602 int has_name = FALSE;
5603
5604 s = cin_skipcomment(s);
5605 if (STRNCMP(s, "namespace", 9) == 0 && (s[9] == NUL || !vim_iswordc(s[9])))
5606 {
5607 p = cin_skipcomment(skipwhite(s + 9));
5608 while (*p != NUL)
5609 {
5610 if (vim_iswhite(*p))
5611 {
5612 has_name = TRUE; /* found end of a name */
5613 p = cin_skipcomment(skipwhite(p));
5614 }
5615 else if (*p == '{')
5616 {
5617 break;
5618 }
5619 else if (vim_iswordc(*p))
5620 {
5621 if (has_name)
5622 return FALSE; /* word character after skipping past name */
5623 ++p;
5624 }
5625 else
5626 {
5627 return FALSE;
5628 }
5629 }
5630 return TRUE;
5631 }
5632 return FALSE;
5633}
5634
Bram Moolenaar071d4272004-06-13 20:20:40 +00005635/*
5636 * Return a pointer to the first non-empty non-comment character after a ':'.
5637 * Return NULL if not found.
5638 * case 234: a = b;
5639 * ^
5640 */
5641 static char_u *
5642after_label(l)
5643 char_u *l;
5644{
5645 for ( ; *l; ++l)
5646 {
5647 if (*l == ':')
5648 {
5649 if (l[1] == ':') /* skip over "::" for C++ */
5650 ++l;
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005651 else if (!cin_iscase(l + 1, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005652 break;
5653 }
5654 else if (*l == '\'' && l[1] && l[2] == '\'')
5655 l += 2; /* skip over 'x' */
5656 }
5657 if (*l == NUL)
5658 return NULL;
5659 l = cin_skipcomment(l + 1);
5660 if (*l == NUL)
5661 return NULL;
5662 return l;
5663}
5664
5665/*
5666 * Get indent of line "lnum", skipping a label.
5667 * Return 0 if there is nothing after the label.
5668 */
5669 static int
5670get_indent_nolabel(lnum) /* XXX */
5671 linenr_T lnum;
5672{
5673 char_u *l;
5674 pos_T fp;
5675 colnr_T col;
5676 char_u *p;
5677
5678 l = ml_get(lnum);
5679 p = after_label(l);
5680 if (p == NULL)
5681 return 0;
5682
5683 fp.col = (colnr_T)(p - l);
5684 fp.lnum = lnum;
5685 getvcol(curwin, &fp, &col, NULL, NULL);
5686 return (int)col;
5687}
5688
5689/*
5690 * Find indent for line "lnum", ignoring any case or jump label.
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005691 * Also return a pointer to the text (after the label) in "pp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005692 * label: if (asdf && asdfasdf)
5693 * ^
5694 */
5695 static int
5696skip_label(lnum, pp, ind_maxcomment)
5697 linenr_T lnum;
5698 char_u **pp;
5699 int ind_maxcomment;
5700{
5701 char_u *l;
5702 int amount;
5703 pos_T cursor_save;
5704
5705 cursor_save = curwin->w_cursor;
5706 curwin->w_cursor.lnum = lnum;
5707 l = ml_get_curline();
5708 /* XXX */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005709 if (cin_iscase(l, FALSE) || cin_isscopedecl(l)
5710 || cin_islabel(ind_maxcomment))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005711 {
5712 amount = get_indent_nolabel(lnum);
5713 l = after_label(ml_get_curline());
5714 if (l == NULL) /* just in case */
5715 l = ml_get_curline();
5716 }
5717 else
5718 {
5719 amount = get_indent();
5720 l = ml_get_curline();
5721 }
5722 *pp = l;
5723
5724 curwin->w_cursor = cursor_save;
5725 return amount;
5726}
5727
5728/*
5729 * Return the indent of the first variable name after a type in a declaration.
5730 * int a, indent of "a"
5731 * static struct foo b, indent of "b"
5732 * enum bla c, indent of "c"
5733 * Returns zero when it doesn't look like a declaration.
5734 */
5735 static int
5736cin_first_id_amount()
5737{
5738 char_u *line, *p, *s;
5739 int len;
5740 pos_T fp;
5741 colnr_T col;
5742
5743 line = ml_get_curline();
5744 p = skipwhite(line);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005745 len = (int)(skiptowhite(p) - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005746 if (len == 6 && STRNCMP(p, "static", 6) == 0)
5747 {
5748 p = skipwhite(p + 6);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00005749 len = (int)(skiptowhite(p) - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750 }
5751 if (len == 6 && STRNCMP(p, "struct", 6) == 0)
5752 p = skipwhite(p + 6);
5753 else if (len == 4 && STRNCMP(p, "enum", 4) == 0)
5754 p = skipwhite(p + 4);
5755 else if ((len == 8 && STRNCMP(p, "unsigned", 8) == 0)
5756 || (len == 6 && STRNCMP(p, "signed", 6) == 0))
5757 {
5758 s = skipwhite(p + len);
5759 if ((STRNCMP(s, "int", 3) == 0 && vim_iswhite(s[3]))
5760 || (STRNCMP(s, "long", 4) == 0 && vim_iswhite(s[4]))
5761 || (STRNCMP(s, "short", 5) == 0 && vim_iswhite(s[5]))
5762 || (STRNCMP(s, "char", 4) == 0 && vim_iswhite(s[4])))
5763 p = s;
5764 }
5765 for (len = 0; vim_isIDc(p[len]); ++len)
5766 ;
5767 if (len == 0 || !vim_iswhite(p[len]) || cin_nocode(p))
5768 return 0;
5769
5770 p = skipwhite(p + len);
5771 fp.lnum = curwin->w_cursor.lnum;
5772 fp.col = (colnr_T)(p - line);
5773 getvcol(curwin, &fp, &col, NULL, NULL);
5774 return (int)col;
5775}
5776
5777/*
5778 * Return the indent of the first non-blank after an equal sign.
5779 * char *foo = "here";
5780 * Return zero if no (useful) equal sign found.
5781 * Return -1 if the line above "lnum" ends in a backslash.
5782 * foo = "asdf\
5783 * asdf\
5784 * here";
5785 */
5786 static int
5787cin_get_equal_amount(lnum)
5788 linenr_T lnum;
5789{
5790 char_u *line;
5791 char_u *s;
5792 colnr_T col;
5793 pos_T fp;
5794
5795 if (lnum > 1)
5796 {
5797 line = ml_get(lnum - 1);
5798 if (*line != NUL && line[STRLEN(line) - 1] == '\\')
5799 return -1;
5800 }
5801
5802 line = s = ml_get(lnum);
5803 while (*s != NUL && vim_strchr((char_u *)"=;{}\"'", *s) == NULL)
5804 {
5805 if (cin_iscomment(s)) /* ignore comments */
5806 s = cin_skipcomment(s);
5807 else
5808 ++s;
5809 }
5810 if (*s != '=')
5811 return 0;
5812
5813 s = skipwhite(s + 1);
5814 if (cin_nocode(s))
5815 return 0;
5816
5817 if (*s == '"') /* nice alignment for continued strings */
5818 ++s;
5819
5820 fp.lnum = lnum;
5821 fp.col = (colnr_T)(s - line);
5822 getvcol(curwin, &fp, &col, NULL, NULL);
5823 return (int)col;
5824}
5825
5826/*
5827 * Recognize a preprocessor statement: Any line that starts with '#'.
5828 */
5829 static int
5830cin_ispreproc(s)
5831 char_u *s;
5832{
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02005833 if (*skipwhite(s) == '#')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005834 return TRUE;
5835 return FALSE;
5836}
5837
5838/*
5839 * Return TRUE if line "*pp" at "*lnump" is a preprocessor statement or a
5840 * continuation line of a preprocessor statement. Decrease "*lnump" to the
5841 * start and return the line in "*pp".
5842 */
5843 static int
5844cin_ispreproc_cont(pp, lnump)
5845 char_u **pp;
5846 linenr_T *lnump;
5847{
5848 char_u *line = *pp;
5849 linenr_T lnum = *lnump;
5850 int retval = FALSE;
5851
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00005852 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005853 {
5854 if (cin_ispreproc(line))
5855 {
5856 retval = TRUE;
5857 *lnump = lnum;
5858 break;
5859 }
5860 if (lnum == 1)
5861 break;
5862 line = ml_get(--lnum);
5863 if (*line == NUL || line[STRLEN(line) - 1] != '\\')
5864 break;
5865 }
5866
5867 if (lnum != *lnump)
5868 *pp = ml_get(*lnump);
5869 return retval;
5870}
5871
5872/*
5873 * Recognize the start of a C or C++ comment.
5874 */
5875 static int
5876cin_iscomment(p)
5877 char_u *p;
5878{
5879 return (p[0] == '/' && (p[1] == '*' || p[1] == '/'));
5880}
5881
5882/*
5883 * Recognize the start of a "//" comment.
5884 */
5885 static int
5886cin_islinecomment(p)
5887 char_u *p;
5888{
5889 return (p[0] == '/' && p[1] == '/');
5890}
5891
5892/*
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005893 * Recognize a line that starts with '{' or '}', or ends with ';', ',', '{' or
5894 * '}'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005895 * Don't consider "} else" a terminated line.
Bram Moolenaar496f9512011-05-19 16:35:09 +02005896 * If a line begins with an "else", only consider it terminated if no unmatched
5897 * opening braces follow (handle "else { foo();" correctly).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898 * Return the character terminating the line (ending char's have precedence if
5899 * both apply in order to determine initializations).
5900 */
5901 static int
5902cin_isterminated(s, incl_open, incl_comma)
5903 char_u *s;
5904 int incl_open; /* include '{' at the end as terminator */
5905 int incl_comma; /* recognize a trailing comma */
5906{
Bram Moolenaar496f9512011-05-19 16:35:09 +02005907 char_u found_start = 0;
5908 unsigned n_open = 0;
5909 int is_else = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910
5911 s = cin_skipcomment(s);
5912
5913 if (*s == '{' || (*s == '}' && !cin_iselse(s)))
5914 found_start = *s;
5915
Bram Moolenaar496f9512011-05-19 16:35:09 +02005916 if (!found_start)
5917 is_else = cin_iselse(s);
5918
Bram Moolenaar071d4272004-06-13 20:20:40 +00005919 while (*s)
5920 {
5921 /* skip over comments, "" strings and 'c'haracters */
5922 s = skip_string(cin_skipcomment(s));
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005923 if (*s == '}' && n_open > 0)
5924 --n_open;
Bram Moolenaar496f9512011-05-19 16:35:09 +02005925 if ((!is_else || n_open == 0)
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005926 && (*s == ';' || *s == '}' || (incl_comma && *s == ','))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927 && cin_nocode(s + 1))
5928 return *s;
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005929 else if (*s == '{')
5930 {
5931 if (incl_open && cin_nocode(s + 1))
5932 return *s;
5933 else
5934 ++n_open;
5935 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005936
5937 if (*s)
5938 s++;
5939 }
5940 return found_start;
5941}
5942
5943/*
5944 * Recognize the basic picture of a function declaration -- it needs to
5945 * have an open paren somewhere and a close paren at the end of the line and
5946 * no semicolons anywhere.
5947 * When a line ends in a comma we continue looking in the next line.
5948 * "sp" points to a string with the line. When looking at other lines it must
5949 * be restored to the line. When it's NULL fetch lines here.
5950 * "lnum" is where we start looking.
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005951 * "min_lnum" is the line before which we will not be looking.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005952 */
5953 static int
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005954cin_isfuncdecl(sp, first_lnum, min_lnum, ind_maxparen, ind_maxcomment)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955 char_u **sp;
5956 linenr_T first_lnum;
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005957 linenr_T min_lnum;
5958 int ind_maxparen;
5959 int ind_maxcomment;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005960{
5961 char_u *s;
5962 linenr_T lnum = first_lnum;
5963 int retval = FALSE;
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005964 pos_T *trypos;
5965 int just_started = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966
5967 if (sp == NULL)
5968 s = ml_get(lnum);
5969 else
5970 s = *sp;
5971
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005972 if (find_last_paren(s, '(', ')')
5973 && (trypos = find_match_paren(ind_maxparen, ind_maxcomment)) != NULL)
5974 {
5975 lnum = trypos->lnum;
5976 if (lnum < min_lnum)
5977 return FALSE;
5978
5979 s = ml_get(lnum);
5980 }
5981
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02005982 /* Ignore line starting with #. */
5983 if (cin_ispreproc(s))
5984 return FALSE;
5985
Bram Moolenaar071d4272004-06-13 20:20:40 +00005986 while (*s && *s != '(' && *s != ';' && *s != '\'' && *s != '"')
5987 {
5988 if (cin_iscomment(s)) /* ignore comments */
5989 s = cin_skipcomment(s);
5990 else
5991 ++s;
5992 }
5993 if (*s != '(')
5994 return FALSE; /* ';', ' or " before any () or no '(' */
5995
5996 while (*s && *s != ';' && *s != '\'' && *s != '"')
5997 {
5998 if (*s == ')' && cin_nocode(s + 1))
5999 {
6000 /* ')' at the end: may have found a match
6001 * Check for he previous line not to end in a backslash:
6002 * #if defined(x) && \
6003 * defined(y)
6004 */
6005 lnum = first_lnum - 1;
6006 s = ml_get(lnum);
6007 if (*s == NUL || s[STRLEN(s) - 1] != '\\')
6008 retval = TRUE;
6009 goto done;
6010 }
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02006011 if ((*s == ',' && cin_nocode(s + 1)) || s[1] == NUL || cin_nocode(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006012 {
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02006013 int comma = (*s == ',');
6014
6015 /* ',' at the end: continue looking in the next line.
6016 * At the end: check for ',' in the next line, for this style:
6017 * func(arg1
6018 * , arg2) */
6019 for (;;)
6020 {
6021 if (lnum >= curbuf->b_ml.ml_line_count)
6022 break;
6023 s = ml_get(++lnum);
6024 if (!cin_ispreproc(s))
6025 break;
6026 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006027 if (lnum >= curbuf->b_ml.ml_line_count)
6028 break;
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02006029 /* Require a comma at end of the line or a comma or ')' at the
6030 * start of next line. */
6031 s = skipwhite(s);
Bram Moolenaarc367faa2011-12-14 20:21:35 +01006032 if (!just_started && (!comma && *s != ',' && *s != ')'))
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02006033 break;
Bram Moolenaarc367faa2011-12-14 20:21:35 +01006034 just_started = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006035 }
6036 else if (cin_iscomment(s)) /* ignore comments */
6037 s = cin_skipcomment(s);
6038 else
Bram Moolenaarc367faa2011-12-14 20:21:35 +01006039 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006040 ++s;
Bram Moolenaarc367faa2011-12-14 20:21:35 +01006041 just_started = FALSE;
6042 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006043 }
6044
6045done:
6046 if (lnum != first_lnum && sp != NULL)
6047 *sp = ml_get(first_lnum);
6048
6049 return retval;
6050}
6051
6052 static int
6053cin_isif(p)
6054 char_u *p;
6055{
6056 return (STRNCMP(p, "if", 2) == 0 && !vim_isIDc(p[2]));
6057}
6058
6059 static int
6060cin_iselse(p)
6061 char_u *p;
6062{
6063 if (*p == '}') /* accept "} else" */
6064 p = cin_skipcomment(p + 1);
6065 return (STRNCMP(p, "else", 4) == 0 && !vim_isIDc(p[4]));
6066}
6067
6068 static int
6069cin_isdo(p)
6070 char_u *p;
6071{
6072 return (STRNCMP(p, "do", 2) == 0 && !vim_isIDc(p[2]));
6073}
6074
6075/*
6076 * Check if this is a "while" that should have a matching "do".
6077 * We only accept a "while (condition) ;", with only white space between the
6078 * ')' and ';'. The condition may be spread over several lines.
6079 */
6080 static int
6081cin_iswhileofdo(p, lnum, ind_maxparen) /* XXX */
6082 char_u *p;
6083 linenr_T lnum;
6084 int ind_maxparen;
6085{
6086 pos_T cursor_save;
6087 pos_T *trypos;
6088 int retval = FALSE;
6089
6090 p = cin_skipcomment(p);
6091 if (*p == '}') /* accept "} while (cond);" */
6092 p = cin_skipcomment(p + 1);
Bram Moolenaar75342212013-03-07 13:13:52 +01006093 if (cin_starts_with(p, "while"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006094 {
6095 cursor_save = curwin->w_cursor;
6096 curwin->w_cursor.lnum = lnum;
6097 curwin->w_cursor.col = 0;
6098 p = ml_get_curline();
6099 while (*p && *p != 'w') /* skip any '}', until the 'w' of the "while" */
6100 {
6101 ++p;
6102 ++curwin->w_cursor.col;
6103 }
6104 if ((trypos = findmatchlimit(NULL, 0, 0, ind_maxparen)) != NULL
6105 && *cin_skipcomment(ml_get_pos(trypos) + 1) == ';')
6106 retval = TRUE;
6107 curwin->w_cursor = cursor_save;
6108 }
6109 return retval;
6110}
6111
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006112/*
Bram Moolenaarb345d492012-04-09 20:42:26 +02006113 * Check whether in "p" there is an "if", "for" or "while" before "*poffset".
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006114 * Return 0 if there is none.
6115 * Otherwise return !0 and update "*poffset" to point to the place where the
6116 * string was found.
6117 */
6118 static int
Bram Moolenaarb345d492012-04-09 20:42:26 +02006119cin_is_if_for_while_before_offset(line, poffset)
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006120 char_u *line;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006121 int *poffset;
6122{
Bram Moolenaarb345d492012-04-09 20:42:26 +02006123 int offset = *poffset;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006124
6125 if (offset-- < 2)
6126 return 0;
6127 while (offset > 2 && vim_iswhite(line[offset]))
6128 --offset;
6129
6130 offset -= 1;
6131 if (!STRNCMP(line + offset, "if", 2))
6132 goto probablyFound;
6133
6134 if (offset >= 1)
6135 {
6136 offset -= 1;
6137 if (!STRNCMP(line + offset, "for", 3))
6138 goto probablyFound;
6139
6140 if (offset >= 2)
6141 {
6142 offset -= 2;
6143 if (!STRNCMP(line + offset, "while", 5))
6144 goto probablyFound;
6145 }
6146 }
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006147 return 0;
Bram Moolenaarb345d492012-04-09 20:42:26 +02006148
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006149probablyFound:
6150 if (!offset || !vim_isIDc(line[offset - 1]))
6151 {
6152 *poffset = offset;
6153 return 1;
6154 }
6155 return 0;
6156}
6157
6158/*
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006159 * Return TRUE if we are at the end of a do-while.
6160 * do
6161 * nothing;
6162 * while (foo
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00006163 * && bar); <-- here
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006164 * Adjust the cursor to the line with "while".
6165 */
6166 static int
6167cin_iswhileofdo_end(terminated, ind_maxparen, ind_maxcomment)
6168 int terminated;
6169 int ind_maxparen;
6170 int ind_maxcomment;
6171{
6172 char_u *line;
6173 char_u *p;
6174 char_u *s;
6175 pos_T *trypos;
6176 int i;
6177
6178 if (terminated != ';') /* there must be a ';' at the end */
6179 return FALSE;
6180
6181 p = line = ml_get_curline();
6182 while (*p != NUL)
6183 {
6184 p = cin_skipcomment(p);
6185 if (*p == ')')
6186 {
6187 s = skipwhite(p + 1);
6188 if (*s == ';' && cin_nocode(s + 1))
6189 {
6190 /* Found ");" at end of the line, now check there is "while"
6191 * before the matching '('. XXX */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006192 i = (int)(p - line);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006193 curwin->w_cursor.col = i;
6194 trypos = find_match_paren(ind_maxparen, ind_maxcomment);
6195 if (trypos != NULL)
6196 {
6197 s = cin_skipcomment(ml_get(trypos->lnum));
6198 if (*s == '}') /* accept "} while (cond);" */
6199 s = cin_skipcomment(s + 1);
Bram Moolenaar75342212013-03-07 13:13:52 +01006200 if (cin_starts_with(s, "while"))
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006201 {
6202 curwin->w_cursor.lnum = trypos->lnum;
6203 return TRUE;
6204 }
6205 }
6206
6207 /* Searching may have made "line" invalid, get it again. */
6208 line = ml_get_curline();
6209 p = line + i;
6210 }
6211 }
6212 if (*p != NUL)
6213 ++p;
6214 }
6215 return FALSE;
6216}
6217
Bram Moolenaar071d4272004-06-13 20:20:40 +00006218 static int
6219cin_isbreak(p)
6220 char_u *p;
6221{
6222 return (STRNCMP(p, "break", 5) == 0 && !vim_isIDc(p[5]));
6223}
6224
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006225/*
6226 * Find the position of a C++ base-class declaration or
Bram Moolenaar071d4272004-06-13 20:20:40 +00006227 * constructor-initialization. eg:
6228 *
6229 * class MyClass :
6230 * baseClass <-- here
6231 * class MyClass : public baseClass,
6232 * anotherBaseClass <-- here (should probably lineup ??)
6233 * MyClass::MyClass(...) :
6234 * baseClass(...) <-- here (constructor-initialization)
Bram Moolenaar18144c82006-04-12 21:52:12 +00006235 *
6236 * This is a lot of guessing. Watch out for "cond ? func() : foo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006237 */
6238 static int
Bram Moolenaare7c56862007-08-04 10:14:52 +00006239cin_is_cpp_baseclass(col)
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006240 colnr_T *col; /* return: column to align with */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241{
6242 char_u *s;
6243 int class_or_struct, lookfor_ctor_init, cpp_base_class;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006244 linenr_T lnum = curwin->w_cursor.lnum;
Bram Moolenaare7c56862007-08-04 10:14:52 +00006245 char_u *line = ml_get_curline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006246
6247 *col = 0;
6248
Bram Moolenaar21cf8232004-07-16 20:18:37 +00006249 s = skipwhite(line);
6250 if (*s == '#') /* skip #define FOO x ? (x) : x */
6251 return FALSE;
6252 s = cin_skipcomment(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006253 if (*s == NUL)
6254 return FALSE;
6255
6256 cpp_base_class = lookfor_ctor_init = class_or_struct = FALSE;
6257
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006258 /* Search for a line starting with '#', empty, ending in ';' or containing
6259 * '{' or '}' and start below it. This handles the following situations:
6260 * a = cond ?
6261 * func() :
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00006262 * asdf;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006263 * func::foo()
6264 * : something
6265 * {}
6266 * Foo::Foo (int one, int two)
6267 * : something(4),
6268 * somethingelse(3)
6269 * {}
6270 */
6271 while (lnum > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006272 {
Bram Moolenaare7c56862007-08-04 10:14:52 +00006273 line = ml_get(lnum - 1);
6274 s = skipwhite(line);
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006275 if (*s == '#' || *s == NUL)
6276 break;
6277 while (*s != NUL)
6278 {
6279 s = cin_skipcomment(s);
6280 if (*s == '{' || *s == '}'
6281 || (*s == ';' && cin_nocode(s + 1)))
6282 break;
6283 if (*s != NUL)
6284 ++s;
6285 }
6286 if (*s != NUL)
6287 break;
6288 --lnum;
6289 }
6290
Bram Moolenaare7c56862007-08-04 10:14:52 +00006291 line = ml_get(lnum);
6292 s = cin_skipcomment(line);
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006293 for (;;)
6294 {
6295 if (*s == NUL)
6296 {
6297 if (lnum == curwin->w_cursor.lnum)
6298 break;
6299 /* Continue in the cursor line. */
Bram Moolenaare7c56862007-08-04 10:14:52 +00006300 line = ml_get(++lnum);
6301 s = cin_skipcomment(line);
6302 if (*s == NUL)
6303 continue;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006304 }
6305
Bram Moolenaaraede6ce2011-05-10 11:56:30 +02006306 if (s[0] == '"')
6307 s = skip_string(s) + 1;
6308 else if (s[0] == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006309 {
6310 if (s[1] == ':')
6311 {
6312 /* skip double colon. It can't be a constructor
6313 * initialization any more */
6314 lookfor_ctor_init = FALSE;
6315 s = cin_skipcomment(s + 2);
6316 }
6317 else if (lookfor_ctor_init || class_or_struct)
6318 {
6319 /* we have something found, that looks like the start of
Bram Moolenaare21877a2008-02-13 09:58:14 +00006320 * cpp-base-class-declaration or constructor-initialization */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006321 cpp_base_class = TRUE;
6322 lookfor_ctor_init = class_or_struct = FALSE;
6323 *col = 0;
6324 s = cin_skipcomment(s + 1);
6325 }
6326 else
6327 s = cin_skipcomment(s + 1);
6328 }
6329 else if ((STRNCMP(s, "class", 5) == 0 && !vim_isIDc(s[5]))
6330 || (STRNCMP(s, "struct", 6) == 0 && !vim_isIDc(s[6])))
6331 {
6332 class_or_struct = TRUE;
6333 lookfor_ctor_init = FALSE;
6334
6335 if (*s == 'c')
6336 s = cin_skipcomment(s + 5);
6337 else
6338 s = cin_skipcomment(s + 6);
6339 }
6340 else
6341 {
6342 if (s[0] == '{' || s[0] == '}' || s[0] == ';')
6343 {
6344 cpp_base_class = lookfor_ctor_init = class_or_struct = FALSE;
6345 }
6346 else if (s[0] == ')')
6347 {
6348 /* Constructor-initialization is assumed if we come across
6349 * something like "):" */
6350 class_or_struct = FALSE;
6351 lookfor_ctor_init = TRUE;
6352 }
Bram Moolenaar18144c82006-04-12 21:52:12 +00006353 else if (s[0] == '?')
6354 {
6355 /* Avoid seeing '() :' after '?' as constructor init. */
6356 return FALSE;
6357 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358 else if (!vim_isIDc(s[0]))
6359 {
6360 /* if it is not an identifier, we are wrong */
6361 class_or_struct = FALSE;
6362 lookfor_ctor_init = FALSE;
6363 }
6364 else if (*col == 0)
6365 {
6366 /* it can't be a constructor-initialization any more */
6367 lookfor_ctor_init = FALSE;
6368
6369 /* the first statement starts here: lineup with this one... */
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006370 if (cpp_base_class)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006371 *col = (colnr_T)(s - line);
6372 }
6373
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006374 /* When the line ends in a comma don't align with it. */
6375 if (lnum == curwin->w_cursor.lnum && *s == ',' && cin_nocode(s + 1))
6376 *col = 0;
6377
Bram Moolenaar071d4272004-06-13 20:20:40 +00006378 s = cin_skipcomment(s + 1);
6379 }
6380 }
6381
6382 return cpp_base_class;
6383}
6384
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006385 static int
6386get_baseclass_amount(col, ind_maxparen, ind_maxcomment, ind_cpp_baseclass)
6387 int col;
6388 int ind_maxparen;
6389 int ind_maxcomment;
6390 int ind_cpp_baseclass;
6391{
6392 int amount;
6393 colnr_T vcol;
6394 pos_T *trypos;
6395
6396 if (col == 0)
6397 {
6398 amount = get_indent();
6399 if (find_last_paren(ml_get_curline(), '(', ')')
6400 && (trypos = find_match_paren(ind_maxparen,
6401 ind_maxcomment)) != NULL)
6402 amount = get_indent_lnum(trypos->lnum); /* XXX */
6403 if (!cin_ends_in(ml_get_curline(), (char_u *)",", NULL))
6404 amount += ind_cpp_baseclass;
6405 }
6406 else
6407 {
6408 curwin->w_cursor.col = col;
6409 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
6410 amount = (int)vcol;
6411 }
6412 if (amount < ind_cpp_baseclass)
6413 amount = ind_cpp_baseclass;
6414 return amount;
6415}
6416
Bram Moolenaar071d4272004-06-13 20:20:40 +00006417/*
6418 * Return TRUE if string "s" ends with the string "find", possibly followed by
6419 * white space and comments. Skip strings and comments.
6420 * Ignore "ignore" after "find" if it's not NULL.
6421 */
6422 static int
6423cin_ends_in(s, find, ignore)
6424 char_u *s;
6425 char_u *find;
6426 char_u *ignore;
6427{
6428 char_u *p = s;
6429 char_u *r;
6430 int len = (int)STRLEN(find);
6431
6432 while (*p != NUL)
6433 {
6434 p = cin_skipcomment(p);
6435 if (STRNCMP(p, find, len) == 0)
6436 {
6437 r = skipwhite(p + len);
6438 if (ignore != NULL && STRNCMP(r, ignore, STRLEN(ignore)) == 0)
6439 r = skipwhite(r + STRLEN(ignore));
6440 if (cin_nocode(r))
6441 return TRUE;
6442 }
6443 if (*p != NUL)
6444 ++p;
6445 }
6446 return FALSE;
6447}
6448
6449/*
Bram Moolenaar75342212013-03-07 13:13:52 +01006450 * Return TRUE when "s" starts with "word" and then a non-ID character.
6451 */
6452 static int
6453cin_starts_with(s, word)
6454 char_u *s;
6455 char *word;
6456{
Bram Moolenaarb3cb9822013-03-13 17:01:52 +01006457 int l = (int)STRLEN(word);
Bram Moolenaar75342212013-03-07 13:13:52 +01006458
6459 return (STRNCMP(s, word, l) == 0 && !vim_isIDc(s[l]));
6460}
6461
6462/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006463 * Skip strings, chars and comments until at or past "trypos".
6464 * Return the column found.
6465 */
6466 static int
6467cin_skip2pos(trypos)
6468 pos_T *trypos;
6469{
6470 char_u *line;
6471 char_u *p;
6472
6473 p = line = ml_get(trypos->lnum);
6474 while (*p && (colnr_T)(p - line) < trypos->col)
6475 {
6476 if (cin_iscomment(p))
6477 p = cin_skipcomment(p);
6478 else
6479 {
6480 p = skip_string(p);
6481 ++p;
6482 }
6483 }
6484 return (int)(p - line);
6485}
6486
6487/*
6488 * Find the '{' at the start of the block we are in.
6489 * Return NULL if no match found.
6490 * Ignore a '{' that is in a comment, makes indenting the next three lines
6491 * work. */
6492/* foo() */
6493/* { */
6494/* } */
6495
6496 static pos_T *
6497find_start_brace(ind_maxcomment) /* XXX */
6498 int ind_maxcomment;
6499{
6500 pos_T cursor_save;
6501 pos_T *trypos;
6502 pos_T *pos;
6503 static pos_T pos_copy;
6504
6505 cursor_save = curwin->w_cursor;
6506 while ((trypos = findmatchlimit(NULL, '{', FM_BLOCKSTOP, 0)) != NULL)
6507 {
6508 pos_copy = *trypos; /* copy pos_T, next findmatch will change it */
6509 trypos = &pos_copy;
6510 curwin->w_cursor = *trypos;
6511 pos = NULL;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006512 /* ignore the { if it's in a // or / * * / comment */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006513 if ((colnr_T)cin_skip2pos(trypos) == trypos->col
6514 && (pos = find_start_comment(ind_maxcomment)) == NULL) /* XXX */
6515 break;
6516 if (pos != NULL)
6517 curwin->w_cursor.lnum = pos->lnum;
6518 }
6519 curwin->w_cursor = cursor_save;
6520 return trypos;
6521}
6522
6523/*
6524 * Find the matching '(', failing if it is in a comment.
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006525 * Return NULL if no match found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006526 */
6527 static pos_T *
6528find_match_paren(ind_maxparen, ind_maxcomment) /* XXX */
6529 int ind_maxparen;
6530 int ind_maxcomment;
6531{
6532 pos_T cursor_save;
6533 pos_T *trypos;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006534 static pos_T pos_copy;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006535
6536 cursor_save = curwin->w_cursor;
6537 if ((trypos = findmatchlimit(NULL, '(', 0, ind_maxparen)) != NULL)
6538 {
6539 /* check if the ( is in a // comment */
6540 if ((colnr_T)cin_skip2pos(trypos) > trypos->col)
6541 trypos = NULL;
6542 else
6543 {
6544 pos_copy = *trypos; /* copy trypos, findmatch will change it */
6545 trypos = &pos_copy;
6546 curwin->w_cursor = *trypos;
6547 if (find_start_comment(ind_maxcomment) != NULL) /* XXX */
6548 trypos = NULL;
6549 }
6550 }
6551 curwin->w_cursor = cursor_save;
6552 return trypos;
6553}
6554
6555/*
6556 * Return ind_maxparen corrected for the difference in line number between the
6557 * cursor position and "startpos". This makes sure that searching for a
6558 * matching paren above the cursor line doesn't find a match because of
6559 * looking a few lines further.
6560 */
6561 static int
6562corr_ind_maxparen(ind_maxparen, startpos)
6563 int ind_maxparen;
6564 pos_T *startpos;
6565{
6566 long n = (long)startpos->lnum - (long)curwin->w_cursor.lnum;
6567
6568 if (n > 0 && n < ind_maxparen / 2)
6569 return ind_maxparen - (int)n;
6570 return ind_maxparen;
6571}
6572
6573/*
6574 * Set w_cursor.col to the column number of the last unmatched ')' or '{' in
Bram Moolenaar6d8f9c62011-11-30 13:03:28 +01006575 * line "l". "l" must point to the start of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006576 */
6577 static int
6578find_last_paren(l, start, end)
6579 char_u *l;
6580 int start, end;
6581{
6582 int i;
6583 int retval = FALSE;
6584 int open_count = 0;
6585
6586 curwin->w_cursor.col = 0; /* default is start of line */
6587
Bram Moolenaar6d8f9c62011-11-30 13:03:28 +01006588 for (i = 0; l[i] != NUL; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006589 {
6590 i = (int)(cin_skipcomment(l + i) - l); /* ignore parens in comments */
6591 i = (int)(skip_string(l + i) - l); /* ignore parens in quotes */
6592 if (l[i] == start)
6593 ++open_count;
6594 else if (l[i] == end)
6595 {
6596 if (open_count > 0)
6597 --open_count;
6598 else
6599 {
6600 curwin->w_cursor.col = i;
6601 retval = TRUE;
6602 }
6603 }
6604 }
6605 return retval;
6606}
6607
6608 int
6609get_c_indent()
6610{
Bram Moolenaar14f24742012-08-08 18:01:05 +02006611 int sw = (int)get_sw_value();
6612
Bram Moolenaar071d4272004-06-13 20:20:40 +00006613 /*
6614 * spaces from a block's opening brace the prevailing indent for that
6615 * block should be
6616 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006617
6618 int ind_level = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619
6620 /*
6621 * spaces from the edge of the line an open brace that's at the end of a
6622 * line is imagined to be.
6623 */
6624 int ind_open_imag = 0;
6625
6626 /*
Bram Moolenaar1a509df2010-08-01 17:59:57 +02006627 * spaces from the prevailing indent for a line that is not preceded by
Bram Moolenaar071d4272004-06-13 20:20:40 +00006628 * an opening brace.
6629 */
6630 int ind_no_brace = 0;
6631
6632 /*
6633 * column where the first { of a function should be located }
6634 */
6635 int ind_first_open = 0;
6636
6637 /*
6638 * spaces from the prevailing indent a leftmost open brace should be
6639 * located
6640 */
6641 int ind_open_extra = 0;
6642
6643 /*
6644 * spaces from the matching open brace (real location for one at the left
6645 * edge; imaginary location from one that ends a line) the matching close
6646 * brace should be located
6647 */
6648 int ind_close_extra = 0;
6649
6650 /*
6651 * spaces from the edge of the line an open brace sitting in the leftmost
6652 * column is imagined to be
6653 */
6654 int ind_open_left_imag = 0;
6655
6656 /*
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006657 * Spaces jump labels should be shifted to the left if N is non-negative,
6658 * otherwise the jump label will be put to column 1.
6659 */
6660 int ind_jump_label = -1;
6661
6662 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006663 * spaces from the switch() indent a "case xx" label should be located
6664 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006665 int ind_case = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006666
6667 /*
6668 * spaces from the "case xx:" code after a switch() should be located
6669 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006670 int ind_case_code = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006671
6672 /*
6673 * lineup break at end of case in switch() with case label
6674 */
6675 int ind_case_break = 0;
6676
6677 /*
6678 * spaces from the class declaration indent a scope declaration label
6679 * should be located
6680 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006681 int ind_scopedecl = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006682
6683 /*
6684 * spaces from the scope declaration label code should be located
6685 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006686 int ind_scopedecl_code = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006687
6688 /*
6689 * amount K&R-style parameters should be indented
6690 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006691 int ind_param = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006692
6693 /*
6694 * amount a function type spec should be indented
6695 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006696 int ind_func_type = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006697
6698 /*
6699 * amount a cpp base class declaration or constructor initialization
6700 * should be indented
6701 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006702 int ind_cpp_baseclass = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006703
6704 /*
6705 * additional spaces beyond the prevailing indent a continuation line
6706 * should be located
6707 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006708 int ind_continuation = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006709
6710 /*
6711 * spaces from the indent of the line with an unclosed parentheses
6712 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006713 int ind_unclosed = sw * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006714
6715 /*
6716 * spaces from the indent of the line with an unclosed parentheses, which
6717 * itself is also unclosed
6718 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006719 int ind_unclosed2 = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006720
6721 /*
6722 * suppress ignoring spaces from the indent of a line starting with an
6723 * unclosed parentheses.
6724 */
6725 int ind_unclosed_noignore = 0;
6726
6727 /*
6728 * If the opening paren is the last nonwhite character on the line, and
6729 * ind_unclosed_wrapped is nonzero, use this indent relative to the outer
6730 * context (for very long lines).
6731 */
6732 int ind_unclosed_wrapped = 0;
6733
6734 /*
6735 * suppress ignoring white space when lining up with the character after
6736 * an unclosed parentheses.
6737 */
6738 int ind_unclosed_whiteok = 0;
6739
6740 /*
6741 * indent a closing parentheses under the line start of the matching
6742 * opening parentheses.
6743 */
6744 int ind_matching_paren = 0;
6745
6746 /*
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006747 * indent a closing parentheses under the previous line.
6748 */
6749 int ind_paren_prev = 0;
6750
6751 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006752 * Extra indent for comments.
6753 */
6754 int ind_comment = 0;
6755
6756 /*
6757 * spaces from the comment opener when there is nothing after it.
6758 */
6759 int ind_in_comment = 3;
6760
6761 /*
6762 * boolean: if non-zero, use ind_in_comment even if there is something
6763 * after the comment opener.
6764 */
6765 int ind_in_comment2 = 0;
6766
6767 /*
6768 * max lines to search for an open paren
6769 */
6770 int ind_maxparen = 20;
6771
6772 /*
6773 * max lines to search for an open comment
6774 */
6775 int ind_maxcomment = 70;
6776
6777 /*
6778 * handle braces for java code
6779 */
6780 int ind_java = 0;
6781
6782 /*
Bram Moolenaar3acfc302010-07-11 17:23:02 +02006783 * not to confuse JS object properties with labels
6784 */
6785 int ind_js = 0;
6786
6787 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006788 * handle blocked cases correctly
6789 */
6790 int ind_keep_case_label = 0;
6791
Bram Moolenaared38b0a2011-05-25 15:16:18 +02006792 /*
6793 * handle C++ namespace
6794 */
6795 int ind_cpp_namespace = 0;
6796
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006797 /*
6798 * handle continuation lines containing conditions of if(), for() and
6799 * while()
6800 */
6801 int ind_if_for_while = 0;
6802
Bram Moolenaar071d4272004-06-13 20:20:40 +00006803 pos_T cur_curpos;
6804 int amount;
6805 int scope_amount;
Bram Moolenaarb21e5842006-04-16 18:30:08 +00006806 int cur_amount = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006807 colnr_T col;
6808 char_u *theline;
6809 char_u *linecopy;
6810 pos_T *trypos;
6811 pos_T *tryposBrace = NULL;
6812 pos_T our_paren_pos;
6813 char_u *start;
6814 int start_brace;
Bram Moolenaare21877a2008-02-13 09:58:14 +00006815#define BRACE_IN_COL0 1 /* '{' is in column 0 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006816#define BRACE_AT_START 2 /* '{' is at start of line */
6817#define BRACE_AT_END 3 /* '{' is at end of line */
6818 linenr_T ourscope;
6819 char_u *l;
6820 char_u *look;
6821 char_u terminated;
6822 int lookfor;
6823#define LOOKFOR_INITIAL 0
6824#define LOOKFOR_IF 1
6825#define LOOKFOR_DO 2
6826#define LOOKFOR_CASE 3
6827#define LOOKFOR_ANY 4
6828#define LOOKFOR_TERM 5
6829#define LOOKFOR_UNTERM 6
6830#define LOOKFOR_SCOPEDECL 7
6831#define LOOKFOR_NOBREAK 8
6832#define LOOKFOR_CPP_BASECLASS 9
6833#define LOOKFOR_ENUM_OR_INIT 10
6834
6835 int whilelevel;
6836 linenr_T lnum;
6837 char_u *options;
Bram Moolenaar48d27922012-06-13 13:40:48 +02006838 char_u *digits;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006839 int fraction = 0; /* init for GCC */
6840 int divider;
6841 int n;
6842 int iscase;
6843 int lookfor_break;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02006844 int lookfor_cpp_namespace = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006845 int cont_amount = 0; /* amount for continuation line */
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006846 int original_line_islabel;
Bram Moolenaare79d1532011-10-04 18:03:47 +02006847 int added_to_amount = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006848
6849 for (options = curbuf->b_p_cino; *options; )
6850 {
6851 l = options++;
6852 if (*options == '-')
6853 ++options;
Bram Moolenaar48d27922012-06-13 13:40:48 +02006854 digits = options; /* remember where the digits start */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006855 n = getdigits(&options);
6856 divider = 0;
6857 if (*options == '.') /* ".5s" means a fraction */
6858 {
6859 fraction = atol((char *)++options);
6860 while (VIM_ISDIGIT(*options))
6861 {
6862 ++options;
6863 if (divider)
6864 divider *= 10;
6865 else
6866 divider = 10;
6867 }
6868 }
6869 if (*options == 's') /* "2s" means two times 'shiftwidth' */
6870 {
Bram Moolenaar48d27922012-06-13 13:40:48 +02006871 if (options == digits)
Bram Moolenaar14f24742012-08-08 18:01:05 +02006872 n = sw; /* just "s" is one 'shiftwidth' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006873 else
6874 {
Bram Moolenaar14f24742012-08-08 18:01:05 +02006875 n *= sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006876 if (divider)
Bram Moolenaar14f24742012-08-08 18:01:05 +02006877 n += (sw * fraction + divider / 2) / divider;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006878 }
6879 ++options;
6880 }
6881 if (l[1] == '-')
6882 n = -n;
6883 /* When adding an entry here, also update the default 'cinoptions' in
Bram Moolenaar39353fd2007-03-27 09:02:11 +00006884 * doc/indent.txt, and add explanation for it! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006885 switch (*l)
6886 {
6887 case '>': ind_level = n; break;
6888 case 'e': ind_open_imag = n; break;
6889 case 'n': ind_no_brace = n; break;
6890 case 'f': ind_first_open = n; break;
6891 case '{': ind_open_extra = n; break;
6892 case '}': ind_close_extra = n; break;
6893 case '^': ind_open_left_imag = n; break;
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006894 case 'L': ind_jump_label = n; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006895 case ':': ind_case = n; break;
6896 case '=': ind_case_code = n; break;
6897 case 'b': ind_case_break = n; break;
6898 case 'p': ind_param = n; break;
6899 case 't': ind_func_type = n; break;
6900 case '/': ind_comment = n; break;
6901 case 'c': ind_in_comment = n; break;
6902 case 'C': ind_in_comment2 = n; break;
6903 case 'i': ind_cpp_baseclass = n; break;
6904 case '+': ind_continuation = n; break;
6905 case '(': ind_unclosed = n; break;
6906 case 'u': ind_unclosed2 = n; break;
6907 case 'U': ind_unclosed_noignore = n; break;
6908 case 'W': ind_unclosed_wrapped = n; break;
6909 case 'w': ind_unclosed_whiteok = n; break;
6910 case 'm': ind_matching_paren = n; break;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006911 case 'M': ind_paren_prev = n; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006912 case ')': ind_maxparen = n; break;
6913 case '*': ind_maxcomment = n; break;
6914 case 'g': ind_scopedecl = n; break;
6915 case 'h': ind_scopedecl_code = n; break;
6916 case 'j': ind_java = n; break;
Bram Moolenaar3acfc302010-07-11 17:23:02 +02006917 case 'J': ind_js = n; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006918 case 'l': ind_keep_case_label = n; break;
Bram Moolenaar39353fd2007-03-27 09:02:11 +00006919 case '#': ind_hash_comment = n; break;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02006920 case 'N': ind_cpp_namespace = n; break;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006921 case 'k': ind_if_for_while = n; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006922 }
Bram Moolenaardfdf3c42010-03-23 18:22:46 +01006923 if (*options == ',')
6924 ++options;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006925 }
6926
6927 /* remember where the cursor was when we started */
6928 cur_curpos = curwin->w_cursor;
6929
Bram Moolenaar3acfc302010-07-11 17:23:02 +02006930 /* if we are at line 1 0 is fine, right? */
6931 if (cur_curpos.lnum == 1)
6932 return 0;
6933
Bram Moolenaar071d4272004-06-13 20:20:40 +00006934 /* Get a copy of the current contents of the line.
6935 * This is required, because only the most recent line obtained with
6936 * ml_get is valid! */
6937 linecopy = vim_strsave(ml_get(cur_curpos.lnum));
6938 if (linecopy == NULL)
6939 return 0;
6940
6941 /*
6942 * In insert mode and the cursor is on a ')' truncate the line at the
6943 * cursor position. We don't want to line up with the matching '(' when
6944 * inserting new stuff.
6945 * For unknown reasons the cursor might be past the end of the line, thus
6946 * check for that.
6947 */
6948 if ((State & INSERT)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00006949 && curwin->w_cursor.col < (colnr_T)STRLEN(linecopy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006950 && linecopy[curwin->w_cursor.col] == ')')
6951 linecopy[curwin->w_cursor.col] = NUL;
6952
6953 theline = skipwhite(linecopy);
6954
6955 /* move the cursor to the start of the line */
6956
6957 curwin->w_cursor.col = 0;
6958
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006959 original_line_islabel = cin_islabel(ind_maxcomment); /* XXX */
6960
Bram Moolenaar071d4272004-06-13 20:20:40 +00006961 /*
6962 * #defines and so on always go at the left when included in 'cinkeys'.
6963 */
6964 if (*theline == '#' && (*linecopy == '#' || in_cinkeys('#', ' ', TRUE)))
6965 {
6966 amount = 0;
6967 }
6968
6969 /*
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006970 * Is it a non-case label? Then that goes at the left margin too unless:
6971 * - JS flag is set.
6972 * - 'L' item has a positive value.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006973 */
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006974 else if (original_line_islabel && !ind_js && ind_jump_label < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006975 {
6976 amount = 0;
6977 }
6978
6979 /*
6980 * If we're inside a "//" comment and there is a "//" comment in a
6981 * previous line, lineup with that one.
6982 */
6983 else if (cin_islinecomment(theline)
6984 && (trypos = find_line_comment()) != NULL) /* XXX */
6985 {
6986 /* find how indented the line beginning the comment is */
6987 getvcol(curwin, trypos, &col, NULL, NULL);
6988 amount = col;
6989 }
6990
6991 /*
6992 * If we're inside a comment and not looking at the start of the
6993 * comment, try using the 'comments' option.
6994 */
6995 else if (!cin_iscomment(theline)
6996 && (trypos = find_start_comment(ind_maxcomment)) != NULL) /* XXX */
6997 {
6998 int lead_start_len = 2;
6999 int lead_middle_len = 1;
7000 char_u lead_start[COM_MAX_LEN]; /* start-comment string */
7001 char_u lead_middle[COM_MAX_LEN]; /* middle-comment string */
7002 char_u lead_end[COM_MAX_LEN]; /* end-comment string */
7003 char_u *p;
7004 int start_align = 0;
7005 int start_off = 0;
7006 int done = FALSE;
7007
7008 /* find how indented the line beginning the comment is */
7009 getvcol(curwin, trypos, &col, NULL, NULL);
7010 amount = col;
Bram Moolenaar4aa97422011-04-11 14:27:38 +02007011 *lead_start = NUL;
7012 *lead_middle = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007013
7014 p = curbuf->b_p_com;
7015 while (*p != NUL)
7016 {
7017 int align = 0;
7018 int off = 0;
7019 int what = 0;
7020
7021 while (*p != NUL && *p != ':')
7022 {
7023 if (*p == COM_START || *p == COM_END || *p == COM_MIDDLE)
7024 what = *p++;
7025 else if (*p == COM_LEFT || *p == COM_RIGHT)
7026 align = *p++;
7027 else if (VIM_ISDIGIT(*p) || *p == '-')
7028 off = getdigits(&p);
7029 else
7030 ++p;
7031 }
7032
7033 if (*p == ':')
7034 ++p;
7035 (void)copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
7036 if (what == COM_START)
7037 {
7038 STRCPY(lead_start, lead_end);
7039 lead_start_len = (int)STRLEN(lead_start);
7040 start_off = off;
7041 start_align = align;
7042 }
7043 else if (what == COM_MIDDLE)
7044 {
7045 STRCPY(lead_middle, lead_end);
7046 lead_middle_len = (int)STRLEN(lead_middle);
7047 }
7048 else if (what == COM_END)
7049 {
7050 /* If our line starts with the middle comment string, line it
7051 * up with the comment opener per the 'comments' option. */
7052 if (STRNCMP(theline, lead_middle, lead_middle_len) == 0
7053 && STRNCMP(theline, lead_end, STRLEN(lead_end)) != 0)
7054 {
7055 done = TRUE;
7056 if (curwin->w_cursor.lnum > 1)
7057 {
7058 /* If the start comment string matches in the previous
Bram Moolenaare21877a2008-02-13 09:58:14 +00007059 * line, use the indent of that line plus offset. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00007060 * the middle comment string matches in the previous
7061 * line, use the indent of that line. XXX */
7062 look = skipwhite(ml_get(curwin->w_cursor.lnum - 1));
7063 if (STRNCMP(look, lead_start, lead_start_len) == 0)
7064 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
7065 else if (STRNCMP(look, lead_middle,
7066 lead_middle_len) == 0)
7067 {
7068 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
7069 break;
7070 }
7071 /* If the start comment string doesn't match with the
7072 * start of the comment, skip this entry. XXX */
7073 else if (STRNCMP(ml_get(trypos->lnum) + trypos->col,
7074 lead_start, lead_start_len) != 0)
7075 continue;
7076 }
7077 if (start_off != 0)
7078 amount += start_off;
7079 else if (start_align == COM_RIGHT)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00007080 amount += vim_strsize(lead_start)
7081 - vim_strsize(lead_middle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007082 break;
7083 }
7084
7085 /* If our line starts with the end comment string, line it up
7086 * with the middle comment */
7087 if (STRNCMP(theline, lead_middle, lead_middle_len) != 0
7088 && STRNCMP(theline, lead_end, STRLEN(lead_end)) == 0)
7089 {
7090 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
7091 /* XXX */
7092 if (off != 0)
7093 amount += off;
7094 else if (align == COM_RIGHT)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00007095 amount += vim_strsize(lead_start)
7096 - vim_strsize(lead_middle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007097 done = TRUE;
7098 break;
7099 }
7100 }
7101 }
7102
7103 /* If our line starts with an asterisk, line up with the
7104 * asterisk in the comment opener; otherwise, line up
7105 * with the first character of the comment text.
7106 */
7107 if (done)
7108 ;
7109 else if (theline[0] == '*')
7110 amount += 1;
7111 else
7112 {
7113 /*
7114 * If we are more than one line away from the comment opener, take
7115 * the indent of the previous non-empty line. If 'cino' has "CO"
7116 * and we are just below the comment opener and there are any
7117 * white characters after it line up with the text after it;
7118 * otherwise, add the amount specified by "c" in 'cino'
7119 */
7120 amount = -1;
7121 for (lnum = cur_curpos.lnum - 1; lnum > trypos->lnum; --lnum)
7122 {
7123 if (linewhite(lnum)) /* skip blank lines */
7124 continue;
7125 amount = get_indent_lnum(lnum); /* XXX */
7126 break;
7127 }
7128 if (amount == -1) /* use the comment opener */
7129 {
7130 if (!ind_in_comment2)
7131 {
7132 start = ml_get(trypos->lnum);
7133 look = start + trypos->col + 2; /* skip / and * */
7134 if (*look != NUL) /* if something after it */
7135 trypos->col = (colnr_T)(skipwhite(look) - start);
7136 }
7137 getvcol(curwin, trypos, &col, NULL, NULL);
7138 amount = col;
7139 if (ind_in_comment2 || *look == NUL)
7140 amount += ind_in_comment;
7141 }
7142 }
7143 }
7144
7145 /*
7146 * Are we inside parentheses or braces?
7147 */ /* XXX */
7148 else if (((trypos = find_match_paren(ind_maxparen, ind_maxcomment)) != NULL
7149 && ind_java == 0)
7150 || (tryposBrace = find_start_brace(ind_maxcomment)) != NULL
7151 || trypos != NULL)
7152 {
7153 if (trypos != NULL && tryposBrace != NULL)
7154 {
7155 /* Both an unmatched '(' and '{' is found. Use the one which is
7156 * closer to the current cursor position, set the other to NULL. */
7157 if (trypos->lnum != tryposBrace->lnum
7158 ? trypos->lnum < tryposBrace->lnum
7159 : trypos->col < tryposBrace->col)
7160 trypos = NULL;
7161 else
7162 tryposBrace = NULL;
7163 }
7164
7165 if (trypos != NULL)
7166 {
7167 /*
7168 * If the matching paren is more than one line away, use the indent of
7169 * a previous non-empty line that matches the same paren.
7170 */
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007171 if (theline[0] == ')' && ind_paren_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007172 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007173 /* Line up with the start of the matching paren line. */
7174 amount = get_indent_lnum(curwin->w_cursor.lnum - 1); /* XXX */
7175 }
7176 else
7177 {
7178 amount = -1;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007179 our_paren_pos = *trypos;
7180 for (lnum = cur_curpos.lnum - 1; lnum > our_paren_pos.lnum; --lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007181 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007182 l = skipwhite(ml_get(lnum));
7183 if (cin_nocode(l)) /* skip comment lines */
7184 continue;
7185 if (cin_ispreproc_cont(&l, &lnum))
7186 continue; /* ignore #define, #if, etc. */
7187 curwin->w_cursor.lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007188
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007189 /* Skip a comment. XXX */
7190 if ((trypos = find_start_comment(ind_maxcomment)) != NULL)
7191 {
7192 lnum = trypos->lnum + 1;
7193 continue;
7194 }
7195
7196 /* XXX */
7197 if ((trypos = find_match_paren(
7198 corr_ind_maxparen(ind_maxparen, &cur_curpos),
Bram Moolenaar071d4272004-06-13 20:20:40 +00007199 ind_maxcomment)) != NULL
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007200 && trypos->lnum == our_paren_pos.lnum
7201 && trypos->col == our_paren_pos.col)
7202 {
7203 amount = get_indent_lnum(lnum); /* XXX */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007204
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007205 if (theline[0] == ')')
7206 {
7207 if (our_paren_pos.lnum != lnum
7208 && cur_amount > amount)
7209 cur_amount = amount;
7210 amount = -1;
7211 }
7212 break;
7213 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007214 }
7215 }
7216
7217 /*
7218 * Line up with line where the matching paren is. XXX
7219 * If the line starts with a '(' or the indent for unclosed
7220 * parentheses is zero, line up with the unclosed parentheses.
7221 */
7222 if (amount == -1)
7223 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007224 int ignore_paren_col = 0;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007225 int is_if_for_while = 0;
7226
7227 if (ind_if_for_while)
7228 {
7229 /* Look for the outermost opening parenthesis on this line
7230 * and check whether it belongs to an "if", "for" or "while". */
7231
7232 pos_T cursor_save = curwin->w_cursor;
7233 pos_T outermost;
7234 char_u *line;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007235
7236 trypos = &our_paren_pos;
7237 do {
7238 outermost = *trypos;
7239 curwin->w_cursor.lnum = outermost.lnum;
7240 curwin->w_cursor.col = outermost.col;
7241
7242 trypos = find_match_paren(ind_maxparen, ind_maxcomment);
7243 } while (trypos && trypos->lnum == outermost.lnum);
7244
7245 curwin->w_cursor = cursor_save;
7246
7247 line = ml_get(outermost.lnum);
7248
7249 is_if_for_while =
Bram Moolenaarb345d492012-04-09 20:42:26 +02007250 cin_is_if_for_while_before_offset(line, &outermost.col);
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007251 }
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007252
Bram Moolenaar071d4272004-06-13 20:20:40 +00007253 amount = skip_label(our_paren_pos.lnum, &look, ind_maxcomment);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007254 look = skipwhite(look);
7255 if (*look == '(')
7256 {
7257 linenr_T save_lnum = curwin->w_cursor.lnum;
7258 char_u *line;
7259 int look_col;
7260
7261 /* Ignore a '(' in front of the line that has a match before
7262 * our matching '('. */
7263 curwin->w_cursor.lnum = our_paren_pos.lnum;
7264 line = ml_get_curline();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007265 look_col = (int)(look - line);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007266 curwin->w_cursor.col = look_col + 1;
7267 if ((trypos = findmatchlimit(NULL, ')', 0, ind_maxparen))
7268 != NULL
7269 && trypos->lnum == our_paren_pos.lnum
7270 && trypos->col < our_paren_pos.col)
7271 ignore_paren_col = trypos->col + 1;
7272
7273 curwin->w_cursor.lnum = save_lnum;
7274 look = ml_get(our_paren_pos.lnum) + look_col;
7275 }
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007276 if (theline[0] == ')' || (ind_unclosed == 0 && is_if_for_while == 0)
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007277 || (!ind_unclosed_noignore && *look == '('
7278 && ignore_paren_col == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007279 {
7280 /*
7281 * If we're looking at a close paren, line up right there;
7282 * otherwise, line up with the next (non-white) character.
7283 * When ind_unclosed_wrapped is set and the matching paren is
7284 * the last nonwhite character of the line, use either the
7285 * indent of the current line or the indentation of the next
7286 * outer paren and add ind_unclosed_wrapped (for very long
7287 * lines).
7288 */
7289 if (theline[0] != ')')
7290 {
7291 cur_amount = MAXCOL;
7292 l = ml_get(our_paren_pos.lnum);
7293 if (ind_unclosed_wrapped
7294 && cin_ends_in(l, (char_u *)"(", NULL))
7295 {
7296 /* look for opening unmatched paren, indent one level
7297 * for each additional level */
7298 n = 1;
7299 for (col = 0; col < our_paren_pos.col; ++col)
7300 {
7301 switch (l[col])
7302 {
7303 case '(':
7304 case '{': ++n;
7305 break;
7306
7307 case ')':
7308 case '}': if (n > 1)
7309 --n;
7310 break;
7311 }
7312 }
7313
7314 our_paren_pos.col = 0;
7315 amount += n * ind_unclosed_wrapped;
7316 }
7317 else if (ind_unclosed_whiteok)
7318 our_paren_pos.col++;
7319 else
7320 {
7321 col = our_paren_pos.col + 1;
7322 while (vim_iswhite(l[col]))
7323 col++;
7324 if (l[col] != NUL) /* In case of trailing space */
7325 our_paren_pos.col = col;
7326 else
7327 our_paren_pos.col++;
7328 }
7329 }
7330
7331 /*
7332 * Find how indented the paren is, or the character after it
7333 * if we did the above "if".
7334 */
7335 if (our_paren_pos.col > 0)
7336 {
7337 getvcol(curwin, &our_paren_pos, &col, NULL, NULL);
7338 if (cur_amount > (int)col)
7339 cur_amount = col;
7340 }
7341 }
7342
7343 if (theline[0] == ')' && ind_matching_paren)
7344 {
7345 /* Line up with the start of the matching paren line. */
7346 }
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007347 else if ((ind_unclosed == 0 && is_if_for_while == 0)
7348 || (!ind_unclosed_noignore
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007349 && *look == '(' && ignore_paren_col == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007350 {
7351 if (cur_amount != MAXCOL)
7352 amount = cur_amount;
7353 }
7354 else
7355 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007356 /* Add ind_unclosed2 for each '(' before our matching one, but
7357 * ignore (void) before the line (ignore_paren_col). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007358 col = our_paren_pos.col;
Bram Moolenaarb21e5842006-04-16 18:30:08 +00007359 while ((int)our_paren_pos.col > ignore_paren_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007360 {
7361 --our_paren_pos.col;
7362 switch (*ml_get_pos(&our_paren_pos))
7363 {
7364 case '(': amount += ind_unclosed2;
7365 col = our_paren_pos.col;
7366 break;
7367 case ')': amount -= ind_unclosed2;
7368 col = MAXCOL;
7369 break;
7370 }
7371 }
7372
7373 /* Use ind_unclosed once, when the first '(' is not inside
7374 * braces */
7375 if (col == MAXCOL)
7376 amount += ind_unclosed;
7377 else
7378 {
7379 curwin->w_cursor.lnum = our_paren_pos.lnum;
7380 curwin->w_cursor.col = col;
Bram Moolenaar367bec82011-04-11 14:26:19 +02007381 if (find_match_paren(ind_maxparen, ind_maxcomment) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007382 amount += ind_unclosed2;
7383 else
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007384 {
7385 if (is_if_for_while)
7386 amount += ind_if_for_while;
7387 else
7388 amount += ind_unclosed;
7389 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007390 }
7391 /*
7392 * For a line starting with ')' use the minimum of the two
7393 * positions, to avoid giving it more indent than the previous
7394 * lines:
7395 * func_long_name( if (x
7396 * arg && yy
7397 * ) ^ not here ) ^ not here
7398 */
7399 if (cur_amount < amount)
7400 amount = cur_amount;
7401 }
7402 }
7403
7404 /* add extra indent for a comment */
7405 if (cin_iscomment(theline))
7406 amount += ind_comment;
7407 }
7408
7409 /*
7410 * Are we at least inside braces, then?
7411 */
7412 else
7413 {
7414 trypos = tryposBrace;
7415
7416 ourscope = trypos->lnum;
7417 start = ml_get(ourscope);
7418
7419 /*
7420 * Now figure out how indented the line is in general.
7421 * If the brace was at the start of the line, we use that;
7422 * otherwise, check out the indentation of the line as
7423 * a whole and then add the "imaginary indent" to that.
7424 */
7425 look = skipwhite(start);
7426 if (*look == '{')
7427 {
7428 getvcol(curwin, trypos, &col, NULL, NULL);
7429 amount = col;
7430 if (*start == '{')
7431 start_brace = BRACE_IN_COL0;
7432 else
7433 start_brace = BRACE_AT_START;
7434 }
7435 else
7436 {
7437 /*
7438 * that opening brace might have been on a continuation
7439 * line. if so, find the start of the line.
7440 */
7441 curwin->w_cursor.lnum = ourscope;
7442
7443 /*
7444 * position the cursor over the rightmost paren, so that
7445 * matching it will take us back to the start of the line.
7446 */
7447 lnum = ourscope;
7448 if (find_last_paren(start, '(', ')')
7449 && (trypos = find_match_paren(ind_maxparen,
7450 ind_maxcomment)) != NULL)
7451 lnum = trypos->lnum;
7452
7453 /*
7454 * It could have been something like
7455 * case 1: if (asdf &&
7456 * ldfd) {
7457 * }
7458 */
Bram Moolenaar6ec154b2011-06-12 21:51:08 +02007459 if (ind_js || (ind_keep_case_label
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007460 && cin_iscase(skipwhite(ml_get_curline()), FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007461 amount = get_indent();
7462 else
7463 amount = skip_label(lnum, &l, ind_maxcomment);
7464
7465 start_brace = BRACE_AT_END;
7466 }
7467
7468 /*
7469 * if we're looking at a closing brace, that's where
7470 * we want to be. otherwise, add the amount of room
7471 * that an indent is supposed to be.
7472 */
7473 if (theline[0] == '}')
7474 {
7475 /*
7476 * they may want closing braces to line up with something
7477 * other than the open brace. indulge them, if so.
7478 */
7479 amount += ind_close_extra;
7480 }
7481 else
7482 {
7483 /*
7484 * If we're looking at an "else", try to find an "if"
7485 * to match it with.
7486 * If we're looking at a "while", try to find a "do"
7487 * to match it with.
7488 */
7489 lookfor = LOOKFOR_INITIAL;
7490 if (cin_iselse(theline))
7491 lookfor = LOOKFOR_IF;
7492 else if (cin_iswhileofdo(theline, cur_curpos.lnum, ind_maxparen))
7493 /* XXX */
7494 lookfor = LOOKFOR_DO;
7495 if (lookfor != LOOKFOR_INITIAL)
7496 {
7497 curwin->w_cursor.lnum = cur_curpos.lnum;
7498 if (find_match(lookfor, ourscope, ind_maxparen,
7499 ind_maxcomment) == OK)
7500 {
7501 amount = get_indent(); /* XXX */
7502 goto theend;
7503 }
7504 }
7505
7506 /*
7507 * We get here if we are not on an "while-of-do" or "else" (or
7508 * failed to find a matching "if").
7509 * Search backwards for something to line up with.
7510 * First set amount for when we don't find anything.
7511 */
7512
7513 /*
7514 * if the '{' is _really_ at the left margin, use the imaginary
7515 * location of a left-margin brace. Otherwise, correct the
7516 * location for ind_open_extra.
7517 */
7518
7519 if (start_brace == BRACE_IN_COL0) /* '{' is in column 0 */
7520 {
7521 amount = ind_open_left_imag;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007522 lookfor_cpp_namespace = TRUE;
7523 }
7524 else if (start_brace == BRACE_AT_START &&
7525 lookfor_cpp_namespace) /* '{' is at start */
7526 {
7527
7528 lookfor_cpp_namespace = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007529 }
7530 else
7531 {
7532 if (start_brace == BRACE_AT_END) /* '{' is at end of line */
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007533 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007534 amount += ind_open_imag;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007535
7536 l = skipwhite(ml_get_curline());
7537 if (cin_is_cpp_namespace(l))
7538 amount += ind_cpp_namespace;
7539 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007540 else
7541 {
7542 /* Compensate for adding ind_open_extra later. */
7543 amount -= ind_open_extra;
7544 if (amount < 0)
7545 amount = 0;
7546 }
7547 }
7548
7549 lookfor_break = FALSE;
7550
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007551 if (cin_iscase(theline, FALSE)) /* it's a switch() label */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007552 {
7553 lookfor = LOOKFOR_CASE; /* find a previous switch() label */
7554 amount += ind_case;
7555 }
7556 else if (cin_isscopedecl(theline)) /* private:, ... */
7557 {
7558 lookfor = LOOKFOR_SCOPEDECL; /* class decl is this block */
7559 amount += ind_scopedecl;
7560 }
7561 else
7562 {
7563 if (ind_case_break && cin_isbreak(theline)) /* break; ... */
7564 lookfor_break = TRUE;
7565
7566 lookfor = LOOKFOR_INITIAL;
7567 amount += ind_level; /* ind_level from start of block */
7568 }
7569 scope_amount = amount;
7570 whilelevel = 0;
7571
7572 /*
7573 * Search backwards. If we find something we recognize, line up
7574 * with that.
7575 *
7576 * if we're looking at an open brace, indent
7577 * the usual amount relative to the conditional
7578 * that opens the block.
7579 */
7580 curwin->w_cursor = cur_curpos;
7581 for (;;)
7582 {
7583 curwin->w_cursor.lnum--;
7584 curwin->w_cursor.col = 0;
7585
7586 /*
7587 * If we went all the way back to the start of our scope, line
7588 * up with it.
7589 */
7590 if (curwin->w_cursor.lnum <= ourscope)
7591 {
7592 /* we reached end of scope:
7593 * if looking for a enum or structure initialization
7594 * go further back:
7595 * if it is an initializer (enum xxx or xxx =), then
7596 * don't add ind_continuation, otherwise it is a variable
7597 * declaration:
7598 * int x,
7599 * here; <-- add ind_continuation
7600 */
7601 if (lookfor == LOOKFOR_ENUM_OR_INIT)
7602 {
7603 if (curwin->w_cursor.lnum == 0
7604 || curwin->w_cursor.lnum
7605 < ourscope - ind_maxparen)
7606 {
7607 /* nothing found (abuse ind_maxparen as limit)
7608 * assume terminated line (i.e. a variable
7609 * initialization) */
7610 if (cont_amount > 0)
7611 amount = cont_amount;
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007612 else if (!ind_js)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007613 amount += ind_continuation;
7614 break;
7615 }
7616
7617 l = ml_get_curline();
7618
7619 /*
7620 * If we're in a comment now, skip to the start of the
7621 * comment.
7622 */
7623 trypos = find_start_comment(ind_maxcomment);
7624 if (trypos != NULL)
7625 {
7626 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007627 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007628 continue;
7629 }
7630
7631 /*
7632 * Skip preprocessor directives and blank lines.
7633 */
7634 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
7635 continue;
7636
7637 if (cin_nocode(l))
7638 continue;
7639
7640 terminated = cin_isterminated(l, FALSE, TRUE);
7641
7642 /*
7643 * If we are at top level and the line looks like a
7644 * function declaration, we are done
7645 * (it's a variable declaration).
7646 */
7647 if (start_brace != BRACE_IN_COL0
Bram Moolenaarc367faa2011-12-14 20:21:35 +01007648 || !cin_isfuncdecl(&l, curwin->w_cursor.lnum,
7649 0, ind_maxparen, ind_maxcomment))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007650 {
7651 /* if the line is terminated with another ','
7652 * it is a continued variable initialization.
7653 * don't add extra indent.
7654 * TODO: does not work, if a function
7655 * declaration is split over multiple lines:
7656 * cin_isfuncdecl returns FALSE then.
7657 */
7658 if (terminated == ',')
7659 break;
7660
7661 /* if it es a enum declaration or an assignment,
7662 * we are done.
7663 */
7664 if (terminated != ';' && cin_isinit())
7665 break;
7666
7667 /* nothing useful found */
7668 if (terminated == 0 || terminated == '{')
7669 continue;
7670 }
7671
7672 if (terminated != ';')
7673 {
7674 /* Skip parens and braces. Position the cursor
7675 * over the rightmost paren, so that matching it
7676 * will take us back to the start of the line.
7677 */ /* XXX */
7678 trypos = NULL;
7679 if (find_last_paren(l, '(', ')'))
7680 trypos = find_match_paren(ind_maxparen,
7681 ind_maxcomment);
7682
7683 if (trypos == NULL && find_last_paren(l, '{', '}'))
7684 trypos = find_start_brace(ind_maxcomment);
7685
7686 if (trypos != NULL)
7687 {
7688 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007689 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007690 continue;
7691 }
7692 }
7693
7694 /* it's a variable declaration, add indentation
7695 * like in
7696 * int a,
7697 * b;
7698 */
7699 if (cont_amount > 0)
7700 amount = cont_amount;
7701 else
7702 amount += ind_continuation;
7703 }
7704 else if (lookfor == LOOKFOR_UNTERM)
7705 {
7706 if (cont_amount > 0)
7707 amount = cont_amount;
7708 else
7709 amount += ind_continuation;
7710 }
Bram Moolenaare79d1532011-10-04 18:03:47 +02007711 else
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007712 {
Bram Moolenaare79d1532011-10-04 18:03:47 +02007713 if (lookfor != LOOKFOR_TERM
Bram Moolenaar071d4272004-06-13 20:20:40 +00007714 && lookfor != LOOKFOR_CPP_BASECLASS)
Bram Moolenaare79d1532011-10-04 18:03:47 +02007715 {
7716 amount = scope_amount;
7717 if (theline[0] == '{')
7718 {
7719 amount += ind_open_extra;
7720 added_to_amount = ind_open_extra;
7721 }
7722 }
7723
7724 if (lookfor_cpp_namespace)
7725 {
7726 /*
7727 * Looking for C++ namespace, need to look further
7728 * back.
7729 */
7730 if (curwin->w_cursor.lnum == ourscope)
7731 continue;
7732
7733 if (curwin->w_cursor.lnum == 0
7734 || curwin->w_cursor.lnum
7735 < ourscope - FIND_NAMESPACE_LIM)
7736 break;
7737
7738 l = ml_get_curline();
7739
7740 /* If we're in a comment now, skip to the start of
7741 * the comment. */
7742 trypos = find_start_comment(ind_maxcomment);
7743 if (trypos != NULL)
7744 {
7745 curwin->w_cursor.lnum = trypos->lnum + 1;
7746 curwin->w_cursor.col = 0;
7747 continue;
7748 }
7749
7750 /* Skip preprocessor directives and blank lines. */
7751 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
7752 continue;
7753
7754 /* Finally the actual check for "namespace". */
7755 if (cin_is_cpp_namespace(l))
7756 {
7757 amount += ind_cpp_namespace - added_to_amount;
7758 break;
7759 }
7760
7761 if (cin_nocode(l))
7762 continue;
7763 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007764 }
7765 break;
7766 }
7767
7768 /*
7769 * If we're in a comment now, skip to the start of the comment.
7770 */ /* XXX */
7771 if ((trypos = find_start_comment(ind_maxcomment)) != NULL)
7772 {
7773 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007774 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007775 continue;
7776 }
7777
7778 l = ml_get_curline();
7779
7780 /*
7781 * If this is a switch() label, may line up relative to that.
Bram Moolenaar18144c82006-04-12 21:52:12 +00007782 * If this is a C++ scope declaration, do the same.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007783 */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007784 iscase = cin_iscase(l, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007785 if (iscase || cin_isscopedecl(l))
7786 {
7787 /* we are only looking for cpp base class
7788 * declaration/initialization any longer */
7789 if (lookfor == LOOKFOR_CPP_BASECLASS)
7790 break;
7791
7792 /* When looking for a "do" we are not interested in
7793 * labels. */
7794 if (whilelevel > 0)
7795 continue;
7796
7797 /*
7798 * case xx:
7799 * c = 99 + <- this indent plus continuation
7800 *-> here;
7801 */
7802 if (lookfor == LOOKFOR_UNTERM
7803 || lookfor == LOOKFOR_ENUM_OR_INIT)
7804 {
7805 if (cont_amount > 0)
7806 amount = cont_amount;
7807 else
7808 amount += ind_continuation;
7809 break;
7810 }
7811
7812 /*
7813 * case xx: <- line up with this case
7814 * x = 333;
7815 * case yy:
7816 */
7817 if ( (iscase && lookfor == LOOKFOR_CASE)
7818 || (iscase && lookfor_break)
7819 || (!iscase && lookfor == LOOKFOR_SCOPEDECL))
7820 {
7821 /*
7822 * Check that this case label is not for another
7823 * switch()
7824 */ /* XXX */
7825 if ((trypos = find_start_brace(ind_maxcomment)) ==
7826 NULL || trypos->lnum == ourscope)
7827 {
7828 amount = get_indent(); /* XXX */
7829 break;
7830 }
7831 continue;
7832 }
7833
7834 n = get_indent_nolabel(curwin->w_cursor.lnum); /* XXX */
7835
7836 /*
7837 * case xx: if (cond) <- line up with this if
7838 * y = y + 1;
7839 * -> s = 99;
7840 *
7841 * case xx:
7842 * if (cond) <- line up with this line
7843 * y = y + 1;
7844 * -> s = 99;
7845 */
7846 if (lookfor == LOOKFOR_TERM)
7847 {
7848 if (n)
7849 amount = n;
7850
7851 if (!lookfor_break)
7852 break;
7853 }
7854
7855 /*
7856 * case xx: x = x + 1; <- line up with this x
7857 * -> y = y + 1;
7858 *
7859 * case xx: if (cond) <- line up with this if
7860 * -> y = y + 1;
7861 */
7862 if (n)
7863 {
7864 amount = n;
7865 l = after_label(ml_get_curline());
7866 if (l != NULL && cin_is_cinword(l))
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007867 {
7868 if (theline[0] == '{')
7869 amount += ind_open_extra;
7870 else
7871 amount += ind_level + ind_no_brace;
7872 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007873 break;
7874 }
7875
7876 /*
7877 * Try to get the indent of a statement before the switch
7878 * label. If nothing is found, line up relative to the
7879 * switch label.
7880 * break; <- may line up with this line
7881 * case xx:
7882 * -> y = 1;
7883 */
7884 scope_amount = get_indent() + (iscase /* XXX */
7885 ? ind_case_code : ind_scopedecl_code);
7886 lookfor = ind_case_break ? LOOKFOR_NOBREAK : LOOKFOR_ANY;
7887 continue;
7888 }
7889
7890 /*
7891 * Looking for a switch() label or C++ scope declaration,
7892 * ignore other lines, skip {}-blocks.
7893 */
7894 if (lookfor == LOOKFOR_CASE || lookfor == LOOKFOR_SCOPEDECL)
7895 {
7896 if (find_last_paren(l, '{', '}') && (trypos =
7897 find_start_brace(ind_maxcomment)) != NULL)
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007898 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007899 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007900 curwin->w_cursor.col = 0;
7901 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007902 continue;
7903 }
7904
7905 /*
7906 * Ignore jump labels with nothing after them.
7907 */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007908 if (!ind_js && cin_islabel(ind_maxcomment))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007909 {
7910 l = after_label(ml_get_curline());
7911 if (l == NULL || cin_nocode(l))
7912 continue;
7913 }
7914
7915 /*
7916 * Ignore #defines, #if, etc.
7917 * Ignore comment and empty lines.
7918 * (need to get the line again, cin_islabel() may have
7919 * unlocked it)
7920 */
7921 l = ml_get_curline();
7922 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum)
7923 || cin_nocode(l))
7924 continue;
7925
7926 /*
7927 * Are we at the start of a cpp base class declaration or
7928 * constructor initialization?
7929 */ /* XXX */
Bram Moolenaar18144c82006-04-12 21:52:12 +00007930 n = FALSE;
7931 if (lookfor != LOOKFOR_TERM && ind_cpp_baseclass > 0)
7932 {
Bram Moolenaare7c56862007-08-04 10:14:52 +00007933 n = cin_is_cpp_baseclass(&col);
Bram Moolenaar18144c82006-04-12 21:52:12 +00007934 l = ml_get_curline();
7935 }
7936 if (n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007937 {
7938 if (lookfor == LOOKFOR_UNTERM)
7939 {
7940 if (cont_amount > 0)
7941 amount = cont_amount;
7942 else
7943 amount += ind_continuation;
7944 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00007945 else if (theline[0] == '{')
Bram Moolenaar071d4272004-06-13 20:20:40 +00007946 {
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00007947 /* Need to find start of the declaration. */
7948 lookfor = LOOKFOR_UNTERM;
7949 ind_continuation = 0;
7950 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007951 }
7952 else
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00007953 /* XXX */
7954 amount = get_baseclass_amount(col, ind_maxparen,
7955 ind_maxcomment, ind_cpp_baseclass);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007956 break;
7957 }
7958 else if (lookfor == LOOKFOR_CPP_BASECLASS)
7959 {
7960 /* only look, whether there is a cpp base class
Bram Moolenaar18144c82006-04-12 21:52:12 +00007961 * declaration or initialization before the opening brace.
7962 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007963 if (cin_isterminated(l, TRUE, FALSE))
7964 break;
7965 else
7966 continue;
7967 }
7968
7969 /*
7970 * What happens next depends on the line being terminated.
7971 * If terminated with a ',' only consider it terminating if
Bram Moolenaar25394022007-05-10 19:06:20 +00007972 * there is another unterminated statement behind, eg:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007973 * 123,
7974 * sizeof
7975 * here
7976 * Otherwise check whether it is a enumeration or structure
7977 * initialisation (not indented) or a variable declaration
7978 * (indented).
7979 */
7980 terminated = cin_isterminated(l, FALSE, TRUE);
7981
7982 if (terminated == 0 || (lookfor != LOOKFOR_UNTERM
7983 && terminated == ','))
7984 {
7985 /*
7986 * if we're in the middle of a paren thing,
7987 * go back to the line that starts it so
7988 * we can get the right prevailing indent
7989 * if ( foo &&
7990 * bar )
7991 */
7992 /*
7993 * position the cursor over the rightmost paren, so that
7994 * matching it will take us back to the start of the line.
7995 */
7996 (void)find_last_paren(l, '(', ')');
7997 trypos = find_match_paren(
7998 corr_ind_maxparen(ind_maxparen, &cur_curpos),
7999 ind_maxcomment);
8000
8001 /*
8002 * If we are looking for ',', we also look for matching
8003 * braces.
8004 */
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00008005 if (trypos == NULL && terminated == ','
8006 && find_last_paren(l, '{', '}'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008007 trypos = find_start_brace(ind_maxcomment);
8008
8009 if (trypos != NULL)
8010 {
8011 /*
8012 * Check if we are on a case label now. This is
8013 * handled above.
8014 * case xx: if ( asdf &&
8015 * asdf)
8016 */
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008017 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008018 l = ml_get_curline();
Bram Moolenaar3acfc302010-07-11 17:23:02 +02008019 if (cin_iscase(l, FALSE) || cin_isscopedecl(l))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008020 {
8021 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008022 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008023 continue;
8024 }
8025 }
8026
8027 /*
8028 * Skip over continuation lines to find the one to get the
8029 * indent from
8030 * char *usethis = "bla\
8031 * bla",
8032 * here;
8033 */
8034 if (terminated == ',')
8035 {
8036 while (curwin->w_cursor.lnum > 1)
8037 {
8038 l = ml_get(curwin->w_cursor.lnum - 1);
8039 if (*l == NUL || l[STRLEN(l) - 1] != '\\')
8040 break;
8041 --curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008042 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008043 }
8044 }
8045
8046 /*
8047 * Get indent and pointer to text for current line,
8048 * ignoring any jump label. XXX
8049 */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02008050 if (!ind_js)
8051 cur_amount = skip_label(curwin->w_cursor.lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008052 &l, ind_maxcomment);
Bram Moolenaar3acfc302010-07-11 17:23:02 +02008053 else
8054 cur_amount = get_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008055 /*
8056 * If this is just above the line we are indenting, and it
8057 * starts with a '{', line it up with this line.
8058 * while (not)
8059 * -> {
8060 * }
8061 */
8062 if (terminated != ',' && lookfor != LOOKFOR_TERM
8063 && theline[0] == '{')
8064 {
8065 amount = cur_amount;
8066 /*
8067 * Only add ind_open_extra when the current line
8068 * doesn't start with a '{', which must have a match
8069 * in the same line (scope is the same). Probably:
8070 * { 1, 2 },
8071 * -> { 3, 4 }
8072 */
8073 if (*skipwhite(l) != '{')
8074 amount += ind_open_extra;
8075
8076 if (ind_cpp_baseclass)
8077 {
8078 /* have to look back, whether it is a cpp base
8079 * class declaration or initialization */
8080 lookfor = LOOKFOR_CPP_BASECLASS;
8081 continue;
8082 }
8083 break;
8084 }
8085
8086 /*
8087 * Check if we are after an "if", "while", etc.
8088 * Also allow " } else".
8089 */
8090 if (cin_is_cinword(l) || cin_iselse(skipwhite(l)))
8091 {
8092 /*
8093 * Found an unterminated line after an if (), line up
8094 * with the last one.
8095 * if (cond)
8096 * 100 +
8097 * -> here;
8098 */
8099 if (lookfor == LOOKFOR_UNTERM
8100 || lookfor == LOOKFOR_ENUM_OR_INIT)
8101 {
8102 if (cont_amount > 0)
8103 amount = cont_amount;
8104 else
8105 amount += ind_continuation;
8106 break;
8107 }
8108
8109 /*
8110 * If this is just above the line we are indenting, we
8111 * are finished.
8112 * while (not)
8113 * -> here;
8114 * Otherwise this indent can be used when the line
8115 * before this is terminated.
8116 * yyy;
8117 * if (stat)
8118 * while (not)
8119 * xxx;
8120 * -> here;
8121 */
8122 amount = cur_amount;
8123 if (theline[0] == '{')
8124 amount += ind_open_extra;
8125 if (lookfor != LOOKFOR_TERM)
8126 {
8127 amount += ind_level + ind_no_brace;
8128 break;
8129 }
8130
8131 /*
8132 * Special trick: when expecting the while () after a
8133 * do, line up with the while()
8134 * do
8135 * x = 1;
8136 * -> here
8137 */
8138 l = skipwhite(ml_get_curline());
8139 if (cin_isdo(l))
8140 {
8141 if (whilelevel == 0)
8142 break;
8143 --whilelevel;
8144 }
8145
8146 /*
8147 * When searching for a terminated line, don't use the
Bram Moolenaar334adf02011-05-25 13:34:04 +02008148 * one between the "if" and the matching "else".
Bram Moolenaar071d4272004-06-13 20:20:40 +00008149 * Need to use the scope of this "else". XXX
8150 * If whilelevel != 0 continue looking for a "do {".
8151 */
Bram Moolenaar334adf02011-05-25 13:34:04 +02008152 if (cin_iselse(l) && whilelevel == 0)
8153 {
8154 /* If we're looking at "} else", let's make sure we
8155 * find the opening brace of the enclosing scope,
8156 * not the one from "if () {". */
8157 if (*l == '}')
8158 curwin->w_cursor.col =
Bram Moolenaar9b83c2f2011-05-25 17:29:44 +02008159 (colnr_T)(l - ml_get_curline()) + 1;
Bram Moolenaar334adf02011-05-25 13:34:04 +02008160
8161 if ((trypos = find_start_brace(ind_maxcomment))
8162 == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008163 || find_match(LOOKFOR_IF, trypos->lnum,
Bram Moolenaar334adf02011-05-25 13:34:04 +02008164 ind_maxparen, ind_maxcomment) == FAIL)
8165 break;
8166 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008167 }
8168
8169 /*
8170 * If we're below an unterminated line that is not an
8171 * "if" or something, we may line up with this line or
Bram Moolenaar25394022007-05-10 19:06:20 +00008172 * add something for a continuation line, depending on
Bram Moolenaar071d4272004-06-13 20:20:40 +00008173 * the line before this one.
8174 */
8175 else
8176 {
8177 /*
8178 * Found two unterminated lines on a row, line up with
8179 * the last one.
8180 * c = 99 +
8181 * 100 +
8182 * -> here;
8183 */
8184 if (lookfor == LOOKFOR_UNTERM)
8185 {
8186 /* When line ends in a comma add extra indent */
8187 if (terminated == ',')
8188 amount += ind_continuation;
8189 break;
8190 }
8191
8192 if (lookfor == LOOKFOR_ENUM_OR_INIT)
8193 {
8194 /* Found two lines ending in ',', lineup with the
8195 * lowest one, but check for cpp base class
8196 * declaration/initialization, if it is an
8197 * opening brace or we are looking just for
8198 * enumerations/initializations. */
8199 if (terminated == ',')
8200 {
8201 if (ind_cpp_baseclass == 0)
8202 break;
8203
8204 lookfor = LOOKFOR_CPP_BASECLASS;
8205 continue;
8206 }
8207
8208 /* Ignore unterminated lines in between, but
8209 * reduce indent. */
8210 if (amount > cur_amount)
8211 amount = cur_amount;
8212 }
8213 else
8214 {
8215 /*
8216 * Found first unterminated line on a row, may
8217 * line up with this line, remember its indent
8218 * 100 +
8219 * -> here;
8220 */
8221 amount = cur_amount;
8222
8223 /*
8224 * If previous line ends in ',', check whether we
8225 * are in an initialization or enum
8226 * struct xxx =
8227 * {
8228 * sizeof a,
8229 * 124 };
8230 * or a normal possible continuation line.
8231 * but only, of no other statement has been found
8232 * yet.
8233 */
8234 if (lookfor == LOOKFOR_INITIAL && terminated == ',')
8235 {
8236 lookfor = LOOKFOR_ENUM_OR_INIT;
8237 cont_amount = cin_first_id_amount();
8238 }
8239 else
8240 {
8241 if (lookfor == LOOKFOR_INITIAL
8242 && *l != NUL
8243 && l[STRLEN(l) - 1] == '\\')
8244 /* XXX */
8245 cont_amount = cin_get_equal_amount(
8246 curwin->w_cursor.lnum);
8247 if (lookfor != LOOKFOR_TERM)
8248 lookfor = LOOKFOR_UNTERM;
8249 }
8250 }
8251 }
8252 }
8253
8254 /*
8255 * Check if we are after a while (cond);
8256 * If so: Ignore until the matching "do".
8257 */
8258 /* XXX */
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00008259 else if (cin_iswhileofdo_end(terminated, ind_maxparen,
8260 ind_maxcomment))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008261 {
8262 /*
8263 * Found an unterminated line after a while ();, line up
8264 * with the last one.
8265 * while (cond);
8266 * 100 + <- line up with this one
8267 * -> here;
8268 */
8269 if (lookfor == LOOKFOR_UNTERM
8270 || lookfor == LOOKFOR_ENUM_OR_INIT)
8271 {
8272 if (cont_amount > 0)
8273 amount = cont_amount;
8274 else
8275 amount += ind_continuation;
8276 break;
8277 }
8278
8279 if (whilelevel == 0)
8280 {
8281 lookfor = LOOKFOR_TERM;
8282 amount = get_indent(); /* XXX */
8283 if (theline[0] == '{')
8284 amount += ind_open_extra;
8285 }
8286 ++whilelevel;
8287 }
8288
8289 /*
8290 * We are after a "normal" statement.
8291 * If we had another statement we can stop now and use the
8292 * indent of that other statement.
8293 * Otherwise the indent of the current statement may be used,
8294 * search backwards for the next "normal" statement.
8295 */
8296 else
8297 {
8298 /*
8299 * Skip single break line, if before a switch label. It
8300 * may be lined up with the case label.
8301 */
8302 if (lookfor == LOOKFOR_NOBREAK
8303 && cin_isbreak(skipwhite(ml_get_curline())))
8304 {
8305 lookfor = LOOKFOR_ANY;
8306 continue;
8307 }
8308
8309 /*
8310 * Handle "do {" line.
8311 */
8312 if (whilelevel > 0)
8313 {
8314 l = cin_skipcomment(ml_get_curline());
8315 if (cin_isdo(l))
8316 {
8317 amount = get_indent(); /* XXX */
8318 --whilelevel;
8319 continue;
8320 }
8321 }
8322
8323 /*
8324 * Found a terminated line above an unterminated line. Add
8325 * the amount for a continuation line.
8326 * x = 1;
8327 * y = foo +
8328 * -> here;
8329 * or
8330 * int x = 1;
8331 * int foo,
8332 * -> here;
8333 */
8334 if (lookfor == LOOKFOR_UNTERM
8335 || lookfor == LOOKFOR_ENUM_OR_INIT)
8336 {
8337 if (cont_amount > 0)
8338 amount = cont_amount;
8339 else
8340 amount += ind_continuation;
8341 break;
8342 }
8343
8344 /*
8345 * Found a terminated line above a terminated line or "if"
8346 * etc. line. Use the amount of the line below us.
8347 * x = 1; x = 1;
8348 * if (asdf) y = 2;
8349 * while (asdf) ->here;
8350 * here;
8351 * ->foo;
8352 */
8353 if (lookfor == LOOKFOR_TERM)
8354 {
8355 if (!lookfor_break && whilelevel == 0)
8356 break;
8357 }
8358
8359 /*
8360 * First line above the one we're indenting is terminated.
8361 * To know what needs to be done look further backward for
8362 * a terminated line.
8363 */
8364 else
8365 {
8366 /*
8367 * position the cursor over the rightmost paren, so
8368 * that matching it will take us back to the start of
8369 * the line. Helps for:
8370 * func(asdr,
8371 * asdfasdf);
8372 * here;
8373 */
8374term_again:
8375 l = ml_get_curline();
8376 if (find_last_paren(l, '(', ')')
8377 && (trypos = find_match_paren(ind_maxparen,
8378 ind_maxcomment)) != NULL)
8379 {
8380 /*
8381 * Check if we are on a case label now. This is
8382 * handled above.
8383 * case xx: if ( asdf &&
8384 * asdf)
8385 */
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008386 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008387 l = ml_get_curline();
Bram Moolenaar3acfc302010-07-11 17:23:02 +02008388 if (cin_iscase(l, FALSE) || cin_isscopedecl(l))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008389 {
8390 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008391 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008392 continue;
8393 }
8394 }
8395
8396 /* When aligning with the case statement, don't align
8397 * with a statement after it.
8398 * case 1: { <-- don't use this { position
8399 * stat;
8400 * }
8401 * case 2:
8402 * stat;
8403 * }
8404 */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02008405 iscase = (ind_keep_case_label && cin_iscase(l, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008406
8407 /*
8408 * Get indent and pointer to text for current line,
8409 * ignoring any jump label.
8410 */
8411 amount = skip_label(curwin->w_cursor.lnum,
8412 &l, ind_maxcomment);
8413
8414 if (theline[0] == '{')
8415 amount += ind_open_extra;
8416 /* See remark above: "Only add ind_open_extra.." */
Bram Moolenaar18144c82006-04-12 21:52:12 +00008417 l = skipwhite(l);
8418 if (*l == '{')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008419 amount -= ind_open_extra;
8420 lookfor = iscase ? LOOKFOR_ANY : LOOKFOR_TERM;
8421
8422 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00008423 * When a terminated line starts with "else" skip to
8424 * the matching "if":
8425 * else 3;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008426 * indent this;
Bram Moolenaar18144c82006-04-12 21:52:12 +00008427 * Need to use the scope of this "else". XXX
8428 * If whilelevel != 0 continue looking for a "do {".
8429 */
8430 if (lookfor == LOOKFOR_TERM
8431 && *l != '}'
8432 && cin_iselse(l)
8433 && whilelevel == 0)
8434 {
8435 if ((trypos = find_start_brace(ind_maxcomment))
8436 == NULL
8437 || find_match(LOOKFOR_IF, trypos->lnum,
8438 ind_maxparen, ind_maxcomment) == FAIL)
8439 break;
8440 continue;
8441 }
8442
8443 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008444 * If we're at the end of a block, skip to the start of
8445 * that block.
8446 */
Bram Moolenaar6d8f9c62011-11-30 13:03:28 +01008447 l = ml_get_curline();
Bram Moolenaar50f42ca2011-07-15 14:12:30 +02008448 if (find_last_paren(l, '{', '}')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008449 && (trypos = find_start_brace(ind_maxcomment))
8450 != NULL) /* XXX */
8451 {
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008452 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008453 /* if not "else {" check for terminated again */
8454 /* but skip block for "} else {" */
8455 l = cin_skipcomment(ml_get_curline());
8456 if (*l == '}' || !cin_iselse(l))
8457 goto term_again;
8458 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008459 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008460 }
8461 }
8462 }
8463 }
8464 }
8465 }
8466
8467 /* add extra indent for a comment */
8468 if (cin_iscomment(theline))
8469 amount += ind_comment;
Bram Moolenaar02c707a2010-07-17 17:12:06 +02008470
8471 /* subtract extra left-shift for jump labels */
8472 if (ind_jump_label > 0 && original_line_islabel)
8473 amount -= ind_jump_label;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008474 }
8475
8476 /*
8477 * ok -- we're not inside any sort of structure at all!
8478 *
8479 * this means we're at the top level, and everything should
8480 * basically just match where the previous line is, except
8481 * for the lines immediately following a function declaration,
8482 * which are K&R-style parameters and need to be indented.
8483 */
8484 else
8485 {
8486 /*
8487 * if our line starts with an open brace, forget about any
8488 * prevailing indent and make sure it looks like the start
8489 * of a function
8490 */
8491
8492 if (theline[0] == '{')
8493 {
8494 amount = ind_first_open;
8495 }
8496
8497 /*
8498 * If the NEXT line is a function declaration, the current
8499 * line needs to be indented as a function type spec.
Bram Moolenaar1a89bbe2010-03-02 12:38:22 +01008500 * Don't do this if the current line looks like a comment or if the
8501 * current line is terminated, ie. ends in ';', or if the current line
8502 * contains { or }: "void f() {\n if (1)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008503 */
8504 else if (cur_curpos.lnum < curbuf->b_ml.ml_line_count
8505 && !cin_nocode(theline)
Bram Moolenaar1a89bbe2010-03-02 12:38:22 +01008506 && vim_strchr(theline, '{') == NULL
8507 && vim_strchr(theline, '}') == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008508 && !cin_ends_in(theline, (char_u *)":", NULL)
8509 && !cin_ends_in(theline, (char_u *)",", NULL)
Bram Moolenaarc367faa2011-12-14 20:21:35 +01008510 && cin_isfuncdecl(NULL, cur_curpos.lnum + 1,
8511 cur_curpos.lnum + 1,
8512 ind_maxparen, ind_maxcomment)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008513 && !cin_isterminated(theline, FALSE, TRUE))
8514 {
8515 amount = ind_func_type;
8516 }
8517 else
8518 {
8519 amount = 0;
8520 curwin->w_cursor = cur_curpos;
8521
8522 /* search backwards until we find something we recognize */
8523
8524 while (curwin->w_cursor.lnum > 1)
8525 {
8526 curwin->w_cursor.lnum--;
8527 curwin->w_cursor.col = 0;
8528
8529 l = ml_get_curline();
8530
8531 /*
8532 * If we're in a comment now, skip to the start of the comment.
8533 */ /* XXX */
8534 if ((trypos = find_start_comment(ind_maxcomment)) != NULL)
8535 {
8536 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008537 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008538 continue;
8539 }
8540
8541 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00008542 * Are we at the start of a cpp base class declaration or
8543 * constructor initialization?
Bram Moolenaar071d4272004-06-13 20:20:40 +00008544 */ /* XXX */
Bram Moolenaar18144c82006-04-12 21:52:12 +00008545 n = FALSE;
8546 if (ind_cpp_baseclass != 0 && theline[0] != '{')
8547 {
Bram Moolenaare7c56862007-08-04 10:14:52 +00008548 n = cin_is_cpp_baseclass(&col);
Bram Moolenaar18144c82006-04-12 21:52:12 +00008549 l = ml_get_curline();
8550 }
8551 if (n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008552 {
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00008553 /* XXX */
8554 amount = get_baseclass_amount(col, ind_maxparen,
8555 ind_maxcomment, ind_cpp_baseclass);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008556 break;
8557 }
8558
8559 /*
8560 * Skip preprocessor directives and blank lines.
8561 */
8562 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
8563 continue;
8564
8565 if (cin_nocode(l))
8566 continue;
8567
8568 /*
8569 * If the previous line ends in ',', use one level of
8570 * indentation:
8571 * int foo,
8572 * bar;
8573 * do this before checking for '}' in case of eg.
8574 * enum foobar
8575 * {
8576 * ...
8577 * } foo,
8578 * bar;
8579 */
8580 n = 0;
8581 if (cin_ends_in(l, (char_u *)",", NULL)
8582 || (*l != NUL && (n = l[STRLEN(l) - 1]) == '\\'))
8583 {
8584 /* take us back to opening paren */
8585 if (find_last_paren(l, '(', ')')
8586 && (trypos = find_match_paren(ind_maxparen,
8587 ind_maxcomment)) != NULL)
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008588 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008589
8590 /* For a line ending in ',' that is a continuation line go
8591 * back to the first line with a backslash:
8592 * char *foo = "bla\
8593 * bla",
8594 * here;
8595 */
8596 while (n == 0 && curwin->w_cursor.lnum > 1)
8597 {
8598 l = ml_get(curwin->w_cursor.lnum - 1);
8599 if (*l == NUL || l[STRLEN(l) - 1] != '\\')
8600 break;
8601 --curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008602 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008603 }
8604
8605 amount = get_indent(); /* XXX */
8606
8607 if (amount == 0)
8608 amount = cin_first_id_amount();
8609 if (amount == 0)
8610 amount = ind_continuation;
8611 break;
8612 }
8613
8614 /*
8615 * If the line looks like a function declaration, and we're
8616 * not in a comment, put it the left margin.
8617 */
Bram Moolenaarc367faa2011-12-14 20:21:35 +01008618 if (cin_isfuncdecl(NULL, cur_curpos.lnum, 0,
8619 ind_maxparen, ind_maxcomment)) /* XXX */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008620 break;
8621 l = ml_get_curline();
8622
8623 /*
8624 * Finding the closing '}' of a previous function. Put
8625 * current line at the left margin. For when 'cino' has "fs".
8626 */
8627 if (*skipwhite(l) == '}')
8628 break;
8629
8630 /* (matching {)
8631 * If the previous line ends on '};' (maybe followed by
8632 * comments) align at column 0. For example:
8633 * char *string_array[] = { "foo",
8634 * / * x * / "b};ar" }; / * foobar * /
8635 */
8636 if (cin_ends_in(l, (char_u *)"};", NULL))
8637 break;
8638
8639 /*
Bram Moolenaar3388bb42011-11-30 17:20:23 +01008640 * Find a line only has a semicolon that belongs to a previous
8641 * line ending in '}', e.g. before an #endif. Don't increase
8642 * indent then.
8643 */
8644 if (*(look = skipwhite(l)) == ';' && cin_nocode(look + 1))
8645 {
8646 pos_T curpos_save = curwin->w_cursor;
8647
8648 while (curwin->w_cursor.lnum > 1)
8649 {
8650 look = ml_get(--curwin->w_cursor.lnum);
8651 if (!(cin_nocode(look) || cin_ispreproc_cont(
8652 &look, &curwin->w_cursor.lnum)))
8653 break;
8654 }
8655 if (curwin->w_cursor.lnum > 0
8656 && cin_ends_in(look, (char_u *)"}", NULL))
8657 break;
8658
8659 curwin->w_cursor = curpos_save;
8660 }
8661
8662 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008663 * If the PREVIOUS line is a function declaration, the current
8664 * line (and the ones that follow) needs to be indented as
8665 * parameters.
8666 */
Bram Moolenaarc367faa2011-12-14 20:21:35 +01008667 if (cin_isfuncdecl(&l, curwin->w_cursor.lnum, 0,
8668 ind_maxparen, ind_maxcomment))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008669 {
8670 amount = ind_param;
8671 break;
8672 }
8673
8674 /*
8675 * If the previous line ends in ';' and the line before the
8676 * previous line ends in ',' or '\', ident to column zero:
8677 * int foo,
8678 * bar;
8679 * indent_to_0 here;
8680 */
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00008681 if (cin_ends_in(l, (char_u *)";", NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008682 {
8683 l = ml_get(curwin->w_cursor.lnum - 1);
8684 if (cin_ends_in(l, (char_u *)",", NULL)
8685 || (*l != NUL && l[STRLEN(l) - 1] == '\\'))
8686 break;
8687 l = ml_get_curline();
8688 }
8689
8690 /*
8691 * Doesn't look like anything interesting -- so just
8692 * use the indent of this line.
8693 *
8694 * Position the cursor over the rightmost paren, so that
8695 * matching it will take us back to the start of the line.
8696 */
8697 find_last_paren(l, '(', ')');
8698
8699 if ((trypos = find_match_paren(ind_maxparen,
8700 ind_maxcomment)) != NULL)
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008701 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008702 amount = get_indent(); /* XXX */
8703 break;
8704 }
8705
8706 /* add extra indent for a comment */
8707 if (cin_iscomment(theline))
8708 amount += ind_comment;
8709
8710 /* add extra indent if the previous line ended in a backslash:
8711 * "asdfasdf\
8712 * here";
8713 * char *foo = "asdf\
8714 * here";
8715 */
8716 if (cur_curpos.lnum > 1)
8717 {
8718 l = ml_get(cur_curpos.lnum - 1);
8719 if (*l != NUL && l[STRLEN(l) - 1] == '\\')
8720 {
8721 cur_amount = cin_get_equal_amount(cur_curpos.lnum - 1);
8722 if (cur_amount > 0)
8723 amount = cur_amount;
8724 else if (cur_amount == 0)
8725 amount += ind_continuation;
8726 }
8727 }
8728 }
8729 }
8730
8731theend:
8732 /* put the cursor back where it belongs */
8733 curwin->w_cursor = cur_curpos;
8734
8735 vim_free(linecopy);
8736
8737 if (amount < 0)
8738 return 0;
8739 return amount;
8740}
8741
8742 static int
8743find_match(lookfor, ourscope, ind_maxparen, ind_maxcomment)
8744 int lookfor;
8745 linenr_T ourscope;
8746 int ind_maxparen;
8747 int ind_maxcomment;
8748{
8749 char_u *look;
8750 pos_T *theirscope;
8751 char_u *mightbeif;
8752 int elselevel;
8753 int whilelevel;
8754
8755 if (lookfor == LOOKFOR_IF)
8756 {
8757 elselevel = 1;
8758 whilelevel = 0;
8759 }
8760 else
8761 {
8762 elselevel = 0;
8763 whilelevel = 1;
8764 }
8765
8766 curwin->w_cursor.col = 0;
8767
8768 while (curwin->w_cursor.lnum > ourscope + 1)
8769 {
8770 curwin->w_cursor.lnum--;
8771 curwin->w_cursor.col = 0;
8772
8773 look = cin_skipcomment(ml_get_curline());
8774 if (cin_iselse(look)
8775 || cin_isif(look)
8776 || cin_isdo(look) /* XXX */
8777 || cin_iswhileofdo(look, curwin->w_cursor.lnum, ind_maxparen))
8778 {
8779 /*
8780 * if we've gone outside the braces entirely,
8781 * we must be out of scope...
8782 */
8783 theirscope = find_start_brace(ind_maxcomment); /* XXX */
8784 if (theirscope == NULL)
8785 break;
8786
8787 /*
8788 * and if the brace enclosing this is further
8789 * back than the one enclosing the else, we're
8790 * out of luck too.
8791 */
8792 if (theirscope->lnum < ourscope)
8793 break;
8794
8795 /*
8796 * and if they're enclosed in a *deeper* brace,
8797 * then we can ignore it because it's in a
8798 * different scope...
8799 */
8800 if (theirscope->lnum > ourscope)
8801 continue;
8802
8803 /*
8804 * if it was an "else" (that's not an "else if")
8805 * then we need to go back to another if, so
8806 * increment elselevel
8807 */
8808 look = cin_skipcomment(ml_get_curline());
8809 if (cin_iselse(look))
8810 {
8811 mightbeif = cin_skipcomment(look + 4);
8812 if (!cin_isif(mightbeif))
8813 ++elselevel;
8814 continue;
8815 }
8816
8817 /*
8818 * if it was a "while" then we need to go back to
8819 * another "do", so increment whilelevel. XXX
8820 */
8821 if (cin_iswhileofdo(look, curwin->w_cursor.lnum, ind_maxparen))
8822 {
8823 ++whilelevel;
8824 continue;
8825 }
8826
8827 /* If it's an "if" decrement elselevel */
8828 look = cin_skipcomment(ml_get_curline());
8829 if (cin_isif(look))
8830 {
8831 elselevel--;
8832 /*
8833 * When looking for an "if" ignore "while"s that
8834 * get in the way.
8835 */
8836 if (elselevel == 0 && lookfor == LOOKFOR_IF)
8837 whilelevel = 0;
8838 }
8839
8840 /* If it's a "do" decrement whilelevel */
8841 if (cin_isdo(look))
8842 whilelevel--;
8843
8844 /*
8845 * if we've used up all the elses, then
8846 * this must be the if that we want!
8847 * match the indent level of that if.
8848 */
8849 if (elselevel <= 0 && whilelevel <= 0)
8850 {
8851 return OK;
8852 }
8853 }
8854 }
8855 return FAIL;
8856}
8857
8858# if defined(FEAT_EVAL) || defined(PROTO)
8859/*
8860 * Get indent level from 'indentexpr'.
8861 */
8862 int
8863get_expr_indent()
8864{
8865 int indent;
Bram Moolenaar8fe8d9e2013-02-13 16:10:17 +01008866 pos_T save_pos;
8867 colnr_T save_curswant;
8868 int save_set_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008869 int save_State;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00008870 int use_sandbox = was_set_insecurely((char_u *)"indentexpr",
8871 OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008872
Bram Moolenaar8fe8d9e2013-02-13 16:10:17 +01008873 /* Save and restore cursor position and curswant, in case it was changed
8874 * via :normal commands */
8875 save_pos = curwin->w_cursor;
8876 save_curswant = curwin->w_curswant;
8877 save_set_curswant = curwin->w_set_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008878 set_vim_var_nr(VV_LNUM, curwin->w_cursor.lnum);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00008879 if (use_sandbox)
8880 ++sandbox;
8881 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008882 indent = eval_to_number(curbuf->b_p_inde);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00008883 if (use_sandbox)
8884 --sandbox;
8885 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008886
8887 /* Restore the cursor position so that 'indentexpr' doesn't need to.
8888 * Pretend to be in Insert mode, allow cursor past end of line for "o"
8889 * command. */
8890 save_State = State;
8891 State = INSERT;
Bram Moolenaar8fe8d9e2013-02-13 16:10:17 +01008892 curwin->w_cursor = save_pos;
8893 curwin->w_curswant = save_curswant;
8894 curwin->w_set_curswant = save_set_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008895 check_cursor();
8896 State = save_State;
8897
8898 /* If there is an error, just keep the current indent. */
8899 if (indent < 0)
8900 indent = get_indent();
8901
8902 return indent;
8903}
8904# endif
8905
8906#endif /* FEAT_CINDENT */
8907
8908#if defined(FEAT_LISP) || defined(PROTO)
8909
8910static int lisp_match __ARGS((char_u *p));
8911
8912 static int
8913lisp_match(p)
8914 char_u *p;
8915{
8916 char_u buf[LSIZE];
8917 int len;
8918 char_u *word = p_lispwords;
8919
8920 while (*word != NUL)
8921 {
8922 (void)copy_option_part(&word, buf, LSIZE, ",");
8923 len = (int)STRLEN(buf);
8924 if (STRNCMP(buf, p, len) == 0 && p[len] == ' ')
8925 return TRUE;
8926 }
8927 return FALSE;
8928}
8929
8930/*
8931 * When 'p' is present in 'cpoptions, a Vi compatible method is used.
8932 * The incompatible newer method is quite a bit better at indenting
8933 * code in lisp-like languages than the traditional one; it's still
8934 * mostly heuristics however -- Dirk van Deun, dirk@rave.org
8935 *
8936 * TODO:
8937 * Findmatch() should be adapted for lisp, also to make showmatch
8938 * work correctly: now (v5.3) it seems all C/C++ oriented:
8939 * - it does not recognize the #\( and #\) notations as character literals
8940 * - it doesn't know about comments starting with a semicolon
8941 * - it incorrectly interprets '(' as a character literal
8942 * All this messes up get_lisp_indent in some rare cases.
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008943 * Update from Sergey Khorev:
8944 * I tried to fix the first two issues.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008945 */
8946 int
8947get_lisp_indent()
8948{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008949 pos_T *pos, realpos, paren;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008950 int amount;
8951 char_u *that;
8952 colnr_T col;
8953 colnr_T firsttry;
8954 int parencount, quotecount;
8955 int vi_lisp;
8956
8957 /* Set vi_lisp to use the vi-compatible method */
8958 vi_lisp = (vim_strchr(p_cpo, CPO_LISP) != NULL);
8959
8960 realpos = curwin->w_cursor;
8961 curwin->w_cursor.col = 0;
8962
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008963 if ((pos = findmatch(NULL, '(')) == NULL)
8964 pos = findmatch(NULL, '[');
8965 else
8966 {
8967 paren = *pos;
8968 pos = findmatch(NULL, '[');
8969 if (pos == NULL || ltp(pos, &paren))
8970 pos = &paren;
8971 }
8972 if (pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008973 {
8974 /* Extra trick: Take the indent of the first previous non-white
8975 * line that is at the same () level. */
8976 amount = -1;
8977 parencount = 0;
8978
8979 while (--curwin->w_cursor.lnum >= pos->lnum)
8980 {
8981 if (linewhite(curwin->w_cursor.lnum))
8982 continue;
8983 for (that = ml_get_curline(); *that != NUL; ++that)
8984 {
8985 if (*that == ';')
8986 {
8987 while (*(that + 1) != NUL)
8988 ++that;
8989 continue;
8990 }
8991 if (*that == '\\')
8992 {
8993 if (*(that + 1) != NUL)
8994 ++that;
8995 continue;
8996 }
8997 if (*that == '"' && *(that + 1) != NUL)
8998 {
Bram Moolenaar15ff6c12006-09-15 18:18:09 +00008999 while (*++that && *that != '"')
9000 {
9001 /* skipping escaped characters in the string */
9002 if (*that == '\\')
9003 {
9004 if (*++that == NUL)
9005 break;
9006 if (that[1] == NUL)
9007 {
9008 ++that;
9009 break;
9010 }
9011 }
9012 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009013 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009014 if (*that == '(' || *that == '[')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009015 ++parencount;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009016 else if (*that == ')' || *that == ']')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009017 --parencount;
9018 }
9019 if (parencount == 0)
9020 {
9021 amount = get_indent();
9022 break;
9023 }
9024 }
9025
9026 if (amount == -1)
9027 {
9028 curwin->w_cursor.lnum = pos->lnum;
9029 curwin->w_cursor.col = pos->col;
9030 col = pos->col;
9031
9032 that = ml_get_curline();
9033
9034 if (vi_lisp && get_indent() == 0)
9035 amount = 2;
9036 else
9037 {
9038 amount = 0;
9039 while (*that && col)
9040 {
9041 amount += lbr_chartabsize_adv(&that, (colnr_T)amount);
9042 col--;
9043 }
9044
9045 /*
9046 * Some keywords require "body" indenting rules (the
9047 * non-standard-lisp ones are Scheme special forms):
9048 *
9049 * (let ((a 1)) instead (let ((a 1))
9050 * (...)) of (...))
9051 */
9052
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009053 if (!vi_lisp && (*that == '(' || *that == '[')
9054 && lisp_match(that + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009055 amount += 2;
9056 else
9057 {
9058 that++;
9059 amount++;
9060 firsttry = amount;
9061
9062 while (vim_iswhite(*that))
9063 {
9064 amount += lbr_chartabsize(that, (colnr_T)amount);
9065 ++that;
9066 }
9067
9068 if (*that && *that != ';') /* not a comment line */
9069 {
Bram Moolenaare21877a2008-02-13 09:58:14 +00009070 /* test *that != '(' to accommodate first let/do
Bram Moolenaar071d4272004-06-13 20:20:40 +00009071 * argument if it is more than one line */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009072 if (!vi_lisp && *that != '(' && *that != '[')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009073 firsttry++;
9074
9075 parencount = 0;
9076 quotecount = 0;
9077
9078 if (vi_lisp
9079 || (*that != '"'
9080 && *that != '\''
9081 && *that != '#'
9082 && (*that < '0' || *that > '9')))
9083 {
9084 while (*that
9085 && (!vim_iswhite(*that)
9086 || quotecount
9087 || parencount)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009088 && (!((*that == '(' || *that == '[')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009089 && !quotecount
9090 && !parencount
9091 && vi_lisp)))
9092 {
9093 if (*that == '"')
9094 quotecount = !quotecount;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009095 if ((*that == '(' || *that == '[')
9096 && !quotecount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009097 ++parencount;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009098 if ((*that == ')' || *that == ']')
9099 && !quotecount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009100 --parencount;
9101 if (*that == '\\' && *(that+1) != NUL)
9102 amount += lbr_chartabsize_adv(&that,
9103 (colnr_T)amount);
9104 amount += lbr_chartabsize_adv(&that,
9105 (colnr_T)amount);
9106 }
9107 }
9108 while (vim_iswhite(*that))
9109 {
9110 amount += lbr_chartabsize(that, (colnr_T)amount);
9111 that++;
9112 }
9113 if (!*that || *that == ';')
9114 amount = firsttry;
9115 }
9116 }
9117 }
9118 }
9119 }
9120 else
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009121 amount = 0; /* no matching '(' or '[' found, use zero indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009122
9123 curwin->w_cursor = realpos;
9124
9125 return amount;
9126}
9127#endif /* FEAT_LISP */
9128
9129 void
9130prepare_to_exit()
9131{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00009132#if defined(SIGHUP) && defined(SIG_IGN)
9133 /* Ignore SIGHUP, because a dropped connection causes a read error, which
9134 * makes Vim exit and then handling SIGHUP causes various reentrance
9135 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009136 signal(SIGHUP, SIG_IGN);
9137#endif
9138
Bram Moolenaar071d4272004-06-13 20:20:40 +00009139#ifdef FEAT_GUI
9140 if (gui.in_use)
9141 {
9142 gui.dying = TRUE;
9143 out_trash(); /* trash any pending output */
9144 }
9145 else
9146#endif
9147 {
9148 windgoto((int)Rows - 1, 0);
9149
9150 /*
9151 * Switch terminal mode back now, so messages end up on the "normal"
9152 * screen (if there are two screens).
9153 */
9154 settmode(TMODE_COOK);
9155#ifdef WIN3264
9156 if (can_end_termcap_mode(FALSE) == TRUE)
9157#endif
9158 stoptermcap();
9159 out_flush();
9160 }
9161}
9162
9163/*
9164 * Preserve files and exit.
9165 * When called IObuff must contain a message.
9166 */
9167 void
9168preserve_exit()
9169{
9170 buf_T *buf;
9171
9172 prepare_to_exit();
9173
Bram Moolenaar4770d092006-01-12 23:22:24 +00009174 /* Setting this will prevent free() calls. That avoids calling free()
9175 * recursively when free() was invoked with a bad pointer. */
9176 really_exiting = TRUE;
9177
Bram Moolenaar071d4272004-06-13 20:20:40 +00009178 out_str(IObuff);
9179 screen_start(); /* don't know where cursor is now */
9180 out_flush();
9181
9182 ml_close_notmod(); /* close all not-modified buffers */
9183
9184 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
9185 {
9186 if (buf->b_ml.ml_mfp != NULL && buf->b_ml.ml_mfp->mf_fname != NULL)
9187 {
9188 OUT_STR(_("Vim: preserving files...\n"));
9189 screen_start(); /* don't know where cursor is now */
9190 out_flush();
9191 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
9192 break;
9193 }
9194 }
9195
9196 ml_close_all(FALSE); /* close all memfiles, without deleting */
9197
9198 OUT_STR(_("Vim: Finished.\n"));
9199
9200 getout(1);
9201}
9202
9203/*
9204 * return TRUE if "fname" exists.
9205 */
9206 int
9207vim_fexists(fname)
9208 char_u *fname;
9209{
9210 struct stat st;
9211
9212 if (mch_stat((char *)fname, &st))
9213 return FALSE;
9214 return TRUE;
9215}
9216
9217/*
9218 * Check for CTRL-C pressed, but only once in a while.
9219 * Should be used instead of ui_breakcheck() for functions that check for
9220 * each line in the file. Calling ui_breakcheck() each time takes too much
9221 * time, because it can be a system call.
9222 */
9223
9224#ifndef BREAKCHECK_SKIP
9225# ifdef FEAT_GUI /* assume the GUI only runs on fast computers */
9226# define BREAKCHECK_SKIP 200
9227# else
9228# define BREAKCHECK_SKIP 32
9229# endif
9230#endif
9231
9232static int breakcheck_count = 0;
9233
9234 void
9235line_breakcheck()
9236{
9237 if (++breakcheck_count >= BREAKCHECK_SKIP)
9238 {
9239 breakcheck_count = 0;
9240 ui_breakcheck();
9241 }
9242}
9243
9244/*
9245 * Like line_breakcheck() but check 10 times less often.
9246 */
9247 void
9248fast_breakcheck()
9249{
9250 if (++breakcheck_count >= BREAKCHECK_SKIP * 10)
9251 {
9252 breakcheck_count = 0;
9253 ui_breakcheck();
9254 }
9255}
9256
9257/*
Bram Moolenaard7834d32009-12-02 16:14:36 +00009258 * Invoke expand_wildcards() for one pattern.
9259 * Expand items like "%:h" before the expansion.
9260 * Returns OK or FAIL.
9261 */
9262 int
9263expand_wildcards_eval(pat, num_file, file, flags)
9264 char_u **pat; /* pointer to input pattern */
9265 int *num_file; /* resulting number of files */
9266 char_u ***file; /* array of resulting files */
9267 int flags; /* EW_DIR, etc. */
9268{
9269 int ret = FAIL;
9270 char_u *eval_pat = NULL;
9271 char_u *exp_pat = *pat;
9272 char_u *ignored_msg;
9273 int usedlen;
9274
9275 if (*exp_pat == '%' || *exp_pat == '#' || *exp_pat == '<')
9276 {
9277 ++emsg_off;
9278 eval_pat = eval_vars(exp_pat, exp_pat, &usedlen,
9279 NULL, &ignored_msg, NULL);
9280 --emsg_off;
9281 if (eval_pat != NULL)
9282 exp_pat = concat_str(eval_pat, exp_pat + usedlen);
9283 }
9284
9285 if (exp_pat != NULL)
9286 ret = expand_wildcards(1, &exp_pat, num_file, file, flags);
9287
9288 if (eval_pat != NULL)
9289 {
9290 vim_free(exp_pat);
9291 vim_free(eval_pat);
9292 }
9293
9294 return ret;
9295}
9296
9297/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009298 * Expand wildcards. Calls gen_expand_wildcards() and removes files matching
9299 * 'wildignore'.
Bram Moolenaar9e193ac2010-07-19 23:11:27 +02009300 * Returns OK or FAIL. When FAIL then "num_file" won't be set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009301 */
9302 int
9303expand_wildcards(num_pat, pat, num_file, file, flags)
9304 int num_pat; /* number of input patterns */
9305 char_u **pat; /* array of input patterns */
9306 int *num_file; /* resulting number of files */
9307 char_u ***file; /* array of resulting files */
9308 int flags; /* EW_DIR, etc. */
9309{
9310 int retval;
9311 int i, j;
9312 char_u *p;
9313 int non_suf_match; /* number without matching suffix */
9314
9315 retval = gen_expand_wildcards(num_pat, pat, num_file, file, flags);
9316
9317 /* When keeping all matches, return here */
Bram Moolenaar9e193ac2010-07-19 23:11:27 +02009318 if ((flags & EW_KEEPALL) || retval == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009319 return retval;
9320
9321#ifdef FEAT_WILDIGN
9322 /*
9323 * Remove names that match 'wildignore'.
9324 */
9325 if (*p_wig)
9326 {
9327 char_u *ffname;
9328
9329 /* check all files in (*file)[] */
9330 for (i = 0; i < *num_file; ++i)
9331 {
9332 ffname = FullName_save((*file)[i], FALSE);
9333 if (ffname == NULL) /* out of memory */
9334 break;
9335# ifdef VMS
9336 vms_remove_version(ffname);
9337# endif
9338 if (match_file_list(p_wig, (*file)[i], ffname))
9339 {
9340 /* remove this matching file from the list */
9341 vim_free((*file)[i]);
9342 for (j = i; j + 1 < *num_file; ++j)
9343 (*file)[j] = (*file)[j + 1];
9344 --*num_file;
9345 --i;
9346 }
9347 vim_free(ffname);
9348 }
9349 }
9350#endif
9351
9352 /*
9353 * Move the names where 'suffixes' match to the end.
9354 */
9355 if (*num_file > 1)
9356 {
9357 non_suf_match = 0;
9358 for (i = 0; i < *num_file; ++i)
9359 {
9360 if (!match_suffix((*file)[i]))
9361 {
9362 /*
9363 * Move the name without matching suffix to the front
9364 * of the list.
9365 */
9366 p = (*file)[i];
9367 for (j = i; j > non_suf_match; --j)
9368 (*file)[j] = (*file)[j - 1];
9369 (*file)[non_suf_match++] = p;
9370 }
9371 }
9372 }
9373
9374 return retval;
9375}
9376
9377/*
9378 * Return TRUE if "fname" matches with an entry in 'suffixes'.
9379 */
9380 int
9381match_suffix(fname)
9382 char_u *fname;
9383{
9384 int fnamelen, setsuflen;
9385 char_u *setsuf;
9386#define MAXSUFLEN 30 /* maximum length of a file suffix */
9387 char_u suf_buf[MAXSUFLEN];
9388
9389 fnamelen = (int)STRLEN(fname);
9390 setsuflen = 0;
9391 for (setsuf = p_su; *setsuf; )
9392 {
9393 setsuflen = copy_option_part(&setsuf, suf_buf, MAXSUFLEN, ".,");
Bram Moolenaar055a2ba2009-07-14 19:40:21 +00009394 if (setsuflen == 0)
9395 {
9396 char_u *tail = gettail(fname);
9397
9398 /* empty entry: match name without a '.' */
9399 if (vim_strchr(tail, '.') == NULL)
9400 {
9401 setsuflen = 1;
9402 break;
9403 }
9404 }
9405 else
9406 {
9407 if (fnamelen >= setsuflen
9408 && fnamencmp(suf_buf, fname + fnamelen - setsuflen,
9409 (size_t)setsuflen) == 0)
9410 break;
9411 setsuflen = 0;
9412 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009413 }
9414 return (setsuflen != 0);
9415}
9416
9417#if !defined(NO_EXPANDPATH) || defined(PROTO)
9418
9419# ifdef VIM_BACKTICK
9420static int vim_backtick __ARGS((char_u *p));
9421static int expand_backtick __ARGS((garray_T *gap, char_u *pat, int flags));
9422# endif
9423
9424# if defined(MSDOS) || defined(FEAT_GUI_W16) || defined(WIN3264)
9425/*
9426 * File name expansion code for MS-DOS, Win16 and Win32. It's here because
9427 * it's shared between these systems.
9428 */
9429# if defined(DJGPP) || defined(PROTO)
9430# define _cdecl /* DJGPP doesn't have this */
9431# else
9432# ifdef __BORLANDC__
9433# define _cdecl _RTLENTRYF
9434# endif
9435# endif
9436
9437/*
9438 * comparison function for qsort in dos_expandpath()
9439 */
9440 static int _cdecl
9441pstrcmp(const void *a, const void *b)
9442{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00009443 return (pathcmp(*(char **)a, *(char **)b, -1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009444}
9445
9446# ifndef WIN3264
9447 static void
9448namelowcpy(
9449 char_u *d,
9450 char_u *s)
9451{
9452# ifdef DJGPP
9453 if (USE_LONG_FNAME) /* don't lower case on Windows 95/NT systems */
9454 while (*s)
9455 *d++ = *s++;
9456 else
9457# endif
9458 while (*s)
9459 *d++ = TOLOWER_LOC(*s++);
9460 *d = NUL;
9461}
9462# endif
9463
9464/*
Bram Moolenaar231334e2005-07-25 20:46:57 +00009465 * Recursively expand one path component into all matching files and/or
9466 * directories. Adds matches to "gap". Handles "*", "?", "[a-z]", "**", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009467 * Return the number of matches found.
9468 * "path" has backslashes before chars that are not to be expanded, starting
9469 * at "path[wildoff]".
Bram Moolenaar231334e2005-07-25 20:46:57 +00009470 * Return the number of matches found.
9471 * NOTE: much of this is identical to unix_expandpath(), keep in sync!
Bram Moolenaar071d4272004-06-13 20:20:40 +00009472 */
9473 static int
9474dos_expandpath(
9475 garray_T *gap,
9476 char_u *path,
9477 int wildoff,
Bram Moolenaar231334e2005-07-25 20:46:57 +00009478 int flags, /* EW_* flags */
Bram Moolenaar25394022007-05-10 19:06:20 +00009479 int didstar) /* expanded "**" once already */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009480{
Bram Moolenaar231334e2005-07-25 20:46:57 +00009481 char_u *buf;
9482 char_u *path_end;
9483 char_u *p, *s, *e;
9484 int start_len = gap->ga_len;
9485 char_u *pat;
9486 regmatch_T regmatch;
9487 int starts_with_dot;
9488 int matches;
9489 int len;
9490 int starstar = FALSE;
9491 static int stardepth = 0; /* depth for "**" expansion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009492#ifdef WIN3264
9493 WIN32_FIND_DATA fb;
9494 HANDLE hFind = (HANDLE)0;
9495# ifdef FEAT_MBYTE
9496 WIN32_FIND_DATAW wfb;
9497 WCHAR *wn = NULL; /* UCS-2 name, NULL when not used. */
9498# endif
9499#else
9500 struct ffblk fb;
9501#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009502 char_u *matchname;
Bram Moolenaar231334e2005-07-25 20:46:57 +00009503 int ok;
9504
9505 /* Expanding "**" may take a long time, check for CTRL-C. */
9506 if (stardepth > 0)
9507 {
9508 ui_breakcheck();
9509 if (got_int)
9510 return 0;
9511 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009512
9513 /* make room for file name */
Bram Moolenaar231334e2005-07-25 20:46:57 +00009514 buf = alloc((int)STRLEN(path) + BASENAMELEN + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009515 if (buf == NULL)
9516 return 0;
9517
9518 /*
9519 * Find the first part in the path name that contains a wildcard or a ~1.
9520 * Copy it into buf, including the preceding characters.
9521 */
9522 p = buf;
9523 s = buf;
9524 e = NULL;
9525 path_end = path;
9526 while (*path_end != NUL)
9527 {
9528 /* May ignore a wildcard that has a backslash before it; it will
9529 * be removed by rem_backslash() or file_pat_to_reg_pat() below. */
9530 if (path_end >= path + wildoff && rem_backslash(path_end))
9531 *p++ = *path_end++;
9532 else if (*path_end == '\\' || *path_end == ':' || *path_end == '/')
9533 {
9534 if (e != NULL)
9535 break;
9536 s = p + 1;
9537 }
9538 else if (path_end >= path + wildoff
9539 && vim_strchr((char_u *)"*?[~", *path_end) != NULL)
9540 e = p;
9541#ifdef FEAT_MBYTE
9542 if (has_mbyte)
9543 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009544 len = (*mb_ptr2len)(path_end);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009545 STRNCPY(p, path_end, len);
9546 p += len;
9547 path_end += len;
9548 }
9549 else
9550#endif
9551 *p++ = *path_end++;
9552 }
9553 e = p;
9554 *e = NUL;
9555
9556 /* now we have one wildcard component between s and e */
9557 /* Remove backslashes between "wildoff" and the start of the wildcard
9558 * component. */
9559 for (p = buf + wildoff; p < s; ++p)
9560 if (rem_backslash(p))
9561 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009562 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009563 --e;
9564 --s;
9565 }
9566
Bram Moolenaar231334e2005-07-25 20:46:57 +00009567 /* Check for "**" between "s" and "e". */
9568 for (p = s; p < e; ++p)
9569 if (p[0] == '*' && p[1] == '*')
9570 starstar = TRUE;
9571
Bram Moolenaar071d4272004-06-13 20:20:40 +00009572 starts_with_dot = (*s == '.');
9573 pat = file_pat_to_reg_pat(s, e, NULL, FALSE);
9574 if (pat == NULL)
9575 {
9576 vim_free(buf);
9577 return 0;
9578 }
9579
9580 /* compile the regexp into a program */
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009581 if (flags & (EW_NOERROR | EW_NOTWILD))
Bram Moolenaarb5609832011-07-20 15:04:58 +02009582 ++emsg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009583 regmatch.rm_ic = TRUE; /* Always ignore case */
9584 regmatch.regprog = vim_regcomp(pat, RE_MAGIC);
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009585 if (flags & (EW_NOERROR | EW_NOTWILD))
Bram Moolenaarb5609832011-07-20 15:04:58 +02009586 --emsg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009587 vim_free(pat);
9588
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009589 if (regmatch.regprog == NULL && (flags & EW_NOTWILD) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009590 {
9591 vim_free(buf);
9592 return 0;
9593 }
9594
9595 /* remember the pattern or file name being looked for */
9596 matchname = vim_strsave(s);
9597
Bram Moolenaar231334e2005-07-25 20:46:57 +00009598 /* If "**" is by itself, this is the first time we encounter it and more
9599 * is following then find matches without any directory. */
9600 if (!didstar && stardepth < 100 && starstar && e - s == 2
9601 && *path_end == '/')
9602 {
9603 STRCPY(s, path_end + 1);
9604 ++stardepth;
9605 (void)dos_expandpath(gap, buf, (int)(s - buf), flags, TRUE);
9606 --stardepth;
9607 }
9608
Bram Moolenaar071d4272004-06-13 20:20:40 +00009609 /* Scan all files in the directory with "dir/ *.*" */
9610 STRCPY(s, "*.*");
9611#ifdef WIN3264
9612# ifdef FEAT_MBYTE
9613 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
9614 {
9615 /* The active codepage differs from 'encoding'. Attempt using the
9616 * wide function. If it fails because it is not implemented fall back
9617 * to the non-wide version (for Windows 98) */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00009618 wn = enc_to_utf16(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009619 if (wn != NULL)
9620 {
9621 hFind = FindFirstFileW(wn, &wfb);
9622 if (hFind == INVALID_HANDLE_VALUE
9623 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
9624 {
9625 vim_free(wn);
9626 wn = NULL;
9627 }
9628 }
9629 }
9630
9631 if (wn == NULL)
9632# endif
9633 hFind = FindFirstFile(buf, &fb);
9634 ok = (hFind != INVALID_HANDLE_VALUE);
9635#else
9636 /* If we are expanding wildcards we try both files and directories */
9637 ok = (findfirst((char *)buf, &fb,
9638 (*path_end != NUL || (flags & EW_DIR)) ? FA_DIREC : 0) == 0);
9639#endif
9640
9641 while (ok)
9642 {
9643#ifdef WIN3264
9644# ifdef FEAT_MBYTE
9645 if (wn != NULL)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00009646 p = utf16_to_enc(wfb.cFileName, NULL); /* p is allocated here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009647 else
9648# endif
9649 p = (char_u *)fb.cFileName;
9650#else
9651 p = (char_u *)fb.ff_name;
9652#endif
9653 /* Ignore entries starting with a dot, unless when asked for. Accept
9654 * all entries found with "matchname". */
9655 if ((p[0] != '.' || starts_with_dot)
9656 && (matchname == NULL
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009657 || (regmatch.regprog != NULL
9658 && vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaar0b573a52011-07-27 17:31:47 +02009659 || ((flags & EW_NOTWILD)
9660 && fnamencmp(path + (s - buf), p, e - s) == 0)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009661 {
9662#ifdef WIN3264
9663 STRCPY(s, p);
9664#else
9665 namelowcpy(s, p);
9666#endif
9667 len = (int)STRLEN(buf);
Bram Moolenaar231334e2005-07-25 20:46:57 +00009668
9669 if (starstar && stardepth < 100)
9670 {
9671 /* For "**" in the pattern first go deeper in the tree to
9672 * find matches. */
9673 STRCPY(buf + len, "/**");
9674 STRCPY(buf + len + 3, path_end);
9675 ++stardepth;
9676 (void)dos_expandpath(gap, buf, len + 1, flags, TRUE);
9677 --stardepth;
9678 }
9679
Bram Moolenaar071d4272004-06-13 20:20:40 +00009680 STRCPY(buf + len, path_end);
9681 if (mch_has_exp_wildcard(path_end))
9682 {
9683 /* need to expand another component of the path */
9684 /* remove backslashes for the remaining components only */
Bram Moolenaar231334e2005-07-25 20:46:57 +00009685 (void)dos_expandpath(gap, buf, len + 1, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009686 }
9687 else
9688 {
9689 /* no more wildcards, check if there is a match */
9690 /* remove backslashes for the remaining components only */
9691 if (*path_end != 0)
9692 backslash_halve(buf + len + 1);
9693 if (mch_getperm(buf) >= 0) /* add existing file */
9694 addfile(gap, buf, flags);
9695 }
9696 }
9697
9698#ifdef WIN3264
9699# ifdef FEAT_MBYTE
9700 if (wn != NULL)
9701 {
9702 vim_free(p);
9703 ok = FindNextFileW(hFind, &wfb);
9704 }
9705 else
9706# endif
9707 ok = FindNextFile(hFind, &fb);
9708#else
9709 ok = (findnext(&fb) == 0);
9710#endif
9711
9712 /* If no more matches and no match was used, try expanding the name
9713 * itself. Finds the long name of a short filename. */
9714 if (!ok && matchname != NULL && gap->ga_len == start_len)
9715 {
9716 STRCPY(s, matchname);
9717#ifdef WIN3264
9718 FindClose(hFind);
9719# ifdef FEAT_MBYTE
9720 if (wn != NULL)
9721 {
9722 vim_free(wn);
Bram Moolenaar36f692d2008-11-20 16:10:17 +00009723 wn = enc_to_utf16(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009724 if (wn != NULL)
9725 hFind = FindFirstFileW(wn, &wfb);
9726 }
9727 if (wn == NULL)
9728# endif
9729 hFind = FindFirstFile(buf, &fb);
9730 ok = (hFind != INVALID_HANDLE_VALUE);
9731#else
9732 ok = (findfirst((char *)buf, &fb,
9733 (*path_end != NUL || (flags & EW_DIR)) ? FA_DIREC : 0) == 0);
9734#endif
9735 vim_free(matchname);
9736 matchname = NULL;
9737 }
9738 }
9739
9740#ifdef WIN3264
9741 FindClose(hFind);
9742# ifdef FEAT_MBYTE
9743 vim_free(wn);
9744# endif
9745#endif
9746 vim_free(buf);
9747 vim_free(regmatch.regprog);
9748 vim_free(matchname);
9749
9750 matches = gap->ga_len - start_len;
9751 if (matches > 0)
9752 qsort(((char_u **)gap->ga_data) + start_len, (size_t)matches,
9753 sizeof(char_u *), pstrcmp);
9754 return matches;
9755}
9756
9757 int
9758mch_expandpath(
9759 garray_T *gap,
9760 char_u *path,
9761 int flags) /* EW_* flags */
9762{
Bram Moolenaar231334e2005-07-25 20:46:57 +00009763 return dos_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009764}
9765# endif /* MSDOS || FEAT_GUI_W16 || WIN3264 */
9766
Bram Moolenaar231334e2005-07-25 20:46:57 +00009767#if (defined(UNIX) && !defined(VMS)) || defined(USE_UNIXFILENAME) \
9768 || defined(PROTO)
9769/*
9770 * Unix style wildcard expansion code.
9771 * It's here because it's used both for Unix and Mac.
9772 */
9773static int pstrcmp __ARGS((const void *, const void *));
9774
9775 static int
9776pstrcmp(a, b)
9777 const void *a, *b;
9778{
9779 return (pathcmp(*(char **)a, *(char **)b, -1));
9780}
9781
9782/*
9783 * Recursively expand one path component into all matching files and/or
9784 * directories. Adds matches to "gap". Handles "*", "?", "[a-z]", "**", etc.
9785 * "path" has backslashes before chars that are not to be expanded, starting
9786 * at "path + wildoff".
9787 * Return the number of matches found.
9788 * NOTE: much of this is identical to dos_expandpath(), keep in sync!
9789 */
9790 int
9791unix_expandpath(gap, path, wildoff, flags, didstar)
9792 garray_T *gap;
9793 char_u *path;
9794 int wildoff;
9795 int flags; /* EW_* flags */
9796 int didstar; /* expanded "**" once already */
9797{
9798 char_u *buf;
9799 char_u *path_end;
9800 char_u *p, *s, *e;
9801 int start_len = gap->ga_len;
9802 char_u *pat;
9803 regmatch_T regmatch;
9804 int starts_with_dot;
9805 int matches;
9806 int len;
9807 int starstar = FALSE;
9808 static int stardepth = 0; /* depth for "**" expansion */
9809
9810 DIR *dirp;
9811 struct dirent *dp;
9812
9813 /* Expanding "**" may take a long time, check for CTRL-C. */
9814 if (stardepth > 0)
9815 {
9816 ui_breakcheck();
9817 if (got_int)
9818 return 0;
9819 }
9820
9821 /* make room for file name */
9822 buf = alloc((int)STRLEN(path) + BASENAMELEN + 5);
9823 if (buf == NULL)
9824 return 0;
9825
9826 /*
9827 * Find the first part in the path name that contains a wildcard.
Bram Moolenaar2d0b92f2012-04-30 21:09:43 +02009828 * When EW_ICASE is set every letter is considered to be a wildcard.
Bram Moolenaar231334e2005-07-25 20:46:57 +00009829 * Copy it into "buf", including the preceding characters.
9830 */
9831 p = buf;
9832 s = buf;
9833 e = NULL;
9834 path_end = path;
9835 while (*path_end != NUL)
9836 {
9837 /* May ignore a wildcard that has a backslash before it; it will
9838 * be removed by rem_backslash() or file_pat_to_reg_pat() below. */
9839 if (path_end >= path + wildoff && rem_backslash(path_end))
9840 *p++ = *path_end++;
9841 else if (*path_end == '/')
9842 {
9843 if (e != NULL)
9844 break;
9845 s = p + 1;
9846 }
9847 else if (path_end >= path + wildoff
Bram Moolenaar2d0b92f2012-04-30 21:09:43 +02009848 && (vim_strchr((char_u *)"*?[{~$", *path_end) != NULL
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01009849 || (!p_fic && (flags & EW_ICASE)
9850 && isalpha(PTR2CHAR(path_end)))))
Bram Moolenaar231334e2005-07-25 20:46:57 +00009851 e = p;
9852#ifdef FEAT_MBYTE
9853 if (has_mbyte)
9854 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009855 len = (*mb_ptr2len)(path_end);
Bram Moolenaar231334e2005-07-25 20:46:57 +00009856 STRNCPY(p, path_end, len);
9857 p += len;
9858 path_end += len;
9859 }
9860 else
9861#endif
9862 *p++ = *path_end++;
9863 }
9864 e = p;
9865 *e = NUL;
9866
Bram Moolenaar0b573a52011-07-27 17:31:47 +02009867 /* Now we have one wildcard component between "s" and "e". */
Bram Moolenaar231334e2005-07-25 20:46:57 +00009868 /* Remove backslashes between "wildoff" and the start of the wildcard
9869 * component. */
9870 for (p = buf + wildoff; p < s; ++p)
9871 if (rem_backslash(p))
9872 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009873 STRMOVE(p, p + 1);
Bram Moolenaar231334e2005-07-25 20:46:57 +00009874 --e;
9875 --s;
9876 }
9877
9878 /* Check for "**" between "s" and "e". */
9879 for (p = s; p < e; ++p)
9880 if (p[0] == '*' && p[1] == '*')
9881 starstar = TRUE;
9882
9883 /* convert the file pattern to a regexp pattern */
9884 starts_with_dot = (*s == '.');
9885 pat = file_pat_to_reg_pat(s, e, NULL, FALSE);
9886 if (pat == NULL)
9887 {
9888 vim_free(buf);
9889 return 0;
9890 }
9891
9892 /* compile the regexp into a program */
Bram Moolenaar94950a92010-12-02 16:01:29 +01009893 if (flags & EW_ICASE)
9894 regmatch.rm_ic = TRUE; /* 'wildignorecase' set */
9895 else
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01009896 regmatch.rm_ic = p_fic; /* ignore case when 'fileignorecase' is set */
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009897 if (flags & (EW_NOERROR | EW_NOTWILD))
9898 ++emsg_silent;
Bram Moolenaar231334e2005-07-25 20:46:57 +00009899 regmatch.regprog = vim_regcomp(pat, RE_MAGIC);
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009900 if (flags & (EW_NOERROR | EW_NOTWILD))
9901 --emsg_silent;
Bram Moolenaar231334e2005-07-25 20:46:57 +00009902 vim_free(pat);
9903
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009904 if (regmatch.regprog == NULL && (flags & EW_NOTWILD) == 0)
Bram Moolenaar231334e2005-07-25 20:46:57 +00009905 {
9906 vim_free(buf);
9907 return 0;
9908 }
9909
9910 /* If "**" is by itself, this is the first time we encounter it and more
9911 * is following then find matches without any directory. */
9912 if (!didstar && stardepth < 100 && starstar && e - s == 2
9913 && *path_end == '/')
9914 {
9915 STRCPY(s, path_end + 1);
9916 ++stardepth;
9917 (void)unix_expandpath(gap, buf, (int)(s - buf), flags, TRUE);
9918 --stardepth;
9919 }
9920
9921 /* open the directory for scanning */
9922 *s = NUL;
9923 dirp = opendir(*buf == NUL ? "." : (char *)buf);
9924
9925 /* Find all matching entries */
9926 if (dirp != NULL)
9927 {
9928 for (;;)
9929 {
9930 dp = readdir(dirp);
9931 if (dp == NULL)
9932 break;
9933 if ((dp->d_name[0] != '.' || starts_with_dot)
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009934 && ((regmatch.regprog != NULL && vim_regexec(&regmatch,
9935 (char_u *)dp->d_name, (colnr_T)0))
Bram Moolenaar0b573a52011-07-27 17:31:47 +02009936 || ((flags & EW_NOTWILD)
9937 && fnamencmp(path + (s - buf), dp->d_name, e - s) == 0)))
Bram Moolenaar231334e2005-07-25 20:46:57 +00009938 {
9939 STRCPY(s, dp->d_name);
9940 len = STRLEN(buf);
9941
9942 if (starstar && stardepth < 100)
9943 {
9944 /* For "**" in the pattern first go deeper in the tree to
9945 * find matches. */
9946 STRCPY(buf + len, "/**");
9947 STRCPY(buf + len + 3, path_end);
9948 ++stardepth;
9949 (void)unix_expandpath(gap, buf, len + 1, flags, TRUE);
9950 --stardepth;
9951 }
9952
9953 STRCPY(buf + len, path_end);
9954 if (mch_has_exp_wildcard(path_end)) /* handle more wildcards */
9955 {
9956 /* need to expand another component of the path */
9957 /* remove backslashes for the remaining components only */
9958 (void)unix_expandpath(gap, buf, len + 1, flags, FALSE);
9959 }
9960 else
9961 {
9962 /* no more wildcards, check if there is a match */
9963 /* remove backslashes for the remaining components only */
9964 if (*path_end != NUL)
9965 backslash_halve(buf + len + 1);
9966 if (mch_getperm(buf) >= 0) /* add existing file */
9967 {
Bram Moolenaar95e9b492006-03-15 23:04:43 +00009968#ifdef MACOS_CONVERT
Bram Moolenaar231334e2005-07-25 20:46:57 +00009969 size_t precomp_len = STRLEN(buf)+1;
9970 char_u *precomp_buf =
9971 mac_precompose_path(buf, precomp_len, &precomp_len);
Bram Moolenaar95e9b492006-03-15 23:04:43 +00009972
Bram Moolenaar231334e2005-07-25 20:46:57 +00009973 if (precomp_buf)
9974 {
9975 mch_memmove(buf, precomp_buf, precomp_len);
9976 vim_free(precomp_buf);
9977 }
9978#endif
9979 addfile(gap, buf, flags);
9980 }
9981 }
9982 }
9983 }
9984
9985 closedir(dirp);
9986 }
9987
9988 vim_free(buf);
9989 vim_free(regmatch.regprog);
9990
9991 matches = gap->ga_len - start_len;
9992 if (matches > 0)
9993 qsort(((char_u **)gap->ga_data) + start_len, matches,
9994 sizeof(char_u *), pstrcmp);
9995 return matches;
9996}
9997#endif
9998
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009999#if defined(FEAT_SEARCHPATH)
10000static int find_previous_pathsep __ARGS((char_u *path, char_u **psep));
10001static int is_unique __ARGS((char_u *maybe_unique, garray_T *gap, int i));
Bram Moolenaar162bd912010-07-28 22:29:10 +020010002static void expand_path_option __ARGS((char_u *curdir, garray_T *gap));
10003static char_u *get_path_cutoff __ARGS((char_u *fname, garray_T *gap));
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010004static void uniquefy_paths __ARGS((garray_T *gap, char_u *pattern));
10005static int expand_in_path __ARGS((garray_T *gap, char_u *pattern, int flags));
10006
10007/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010008 * Moves "*psep" back to the previous path separator in "path".
10009 * Returns FAIL is "*psep" ends up at the beginning of "path".
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010010 */
10011 static int
10012find_previous_pathsep(path, psep)
10013 char_u *path;
10014 char_u **psep;
10015{
10016 /* skip the current separator */
10017 if (*psep > path && vim_ispathsep(**psep))
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010018 --*psep;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010019
10020 /* find the previous separator */
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010021 while (*psep > path)
10022 {
10023 if (vim_ispathsep(**psep))
10024 return OK;
10025 mb_ptr_back(path, *psep);
10026 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010027
10028 return FAIL;
10029}
10030
10031/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010032 * Returns TRUE if "maybe_unique" is unique wrt other_paths in "gap".
10033 * "maybe_unique" is the end portion of "((char_u **)gap->ga_data)[i]".
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010034 */
10035 static int
10036is_unique(maybe_unique, gap, i)
10037 char_u *maybe_unique;
10038 garray_T *gap;
10039 int i;
10040{
10041 int j;
10042 int candidate_len;
10043 int other_path_len;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010044 char_u **other_paths = (char_u **)gap->ga_data;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010045 char_u *rival;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010046
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010047 for (j = 0; j < gap->ga_len; j++)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010048 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010049 if (j == i)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010050 continue; /* don't compare it with itself */
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010051
Bram Moolenaar624c7aa2010-07-16 20:38:52 +020010052 candidate_len = (int)STRLEN(maybe_unique);
10053 other_path_len = (int)STRLEN(other_paths[j]);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010054 if (other_path_len < candidate_len)
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010055 continue; /* it's different when it's shorter */
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010056
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010057 rival = other_paths[j] + other_path_len - candidate_len;
Bram Moolenaarda9836c2010-08-16 21:53:27 +020010058 if (fnamecmp(maybe_unique, rival) == 0
10059 && (rival == other_paths[j] || vim_ispathsep(*(rival - 1))))
Bram Moolenaar162bd912010-07-28 22:29:10 +020010060 return FALSE; /* match */
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010061 }
10062
Bram Moolenaar162bd912010-07-28 22:29:10 +020010063 return TRUE; /* no match found */
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010064}
10065
10066/*
Bram Moolenaar1a509df2010-08-01 17:59:57 +020010067 * Split the 'path' option into an array of strings in garray_T. Relative
Bram Moolenaar162bd912010-07-28 22:29:10 +020010068 * paths are expanded to their equivalent fullpath. This includes the "."
10069 * (relative to current buffer directory) and empty path (relative to current
10070 * directory) notations.
10071 *
10072 * TODO: handle upward search (;) and path limiter (**N) notations by
10073 * expanding each into their equivalent path(s).
10074 */
10075 static void
10076expand_path_option(curdir, gap)
10077 char_u *curdir;
10078 garray_T *gap;
10079{
10080 char_u *path_option = *curbuf->b_p_path == NUL
10081 ? p_path : curbuf->b_p_path;
10082 char_u *buf;
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010083 char_u *p;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010084 int len;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010085
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010086 if ((buf = alloc((int)MAXPATHL)) == NULL)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010087 return;
10088
10089 while (*path_option != NUL)
10090 {
10091 copy_option_part(&path_option, buf, MAXPATHL, " ,");
10092
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010093 if (buf[0] == '.' && (buf[1] == NUL || vim_ispathsep(buf[1])))
Bram Moolenaar162bd912010-07-28 22:29:10 +020010094 {
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010095 /* Relative to current buffer:
10096 * "/path/file" + "." -> "/path/"
10097 * "/path/file" + "./subdir" -> "/path/subdir" */
Bram Moolenaar162bd912010-07-28 22:29:10 +020010098 if (curbuf->b_ffname == NULL)
10099 continue;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010100 p = gettail(curbuf->b_ffname);
10101 len = (int)(p - curbuf->b_ffname);
10102 if (len + (int)STRLEN(buf) >= MAXPATHL)
10103 continue;
10104 if (buf[1] == NUL)
10105 buf[len] = NUL;
10106 else
10107 STRMOVE(buf + len, buf + 2);
10108 mch_memmove(buf, curbuf->b_ffname, len);
10109 simplify_filename(buf);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010110 }
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010111 else if (buf[0] == NUL)
10112 /* relative to current directory */
Bram Moolenaar162bd912010-07-28 22:29:10 +020010113 STRCPY(buf, curdir);
Bram Moolenaar84f888a2010-08-05 21:40:16 +020010114 else if (path_with_url(buf))
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010115 /* URL can't be used here */
Bram Moolenaar84f888a2010-08-05 21:40:16 +020010116 continue;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010117 else if (!mch_isFullName(buf))
10118 {
10119 /* Expand relative path to their full path equivalent */
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010120 len = (int)STRLEN(curdir);
10121 if (len + (int)STRLEN(buf) + 3 > MAXPATHL)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010122 continue;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010123 STRMOVE(buf + len + 1, buf);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010124 STRCPY(buf, curdir);
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010125 buf[len] = PATHSEP;
Bram Moolenaar57adda12010-08-03 22:11:29 +020010126 simplify_filename(buf);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010127 }
10128
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010129 if (ga_grow(gap, 1) == FAIL)
10130 break;
10131 p = vim_strsave(buf);
10132 if (p == NULL)
10133 break;
10134 ((char_u **)gap->ga_data)[gap->ga_len++] = p;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010135 }
10136
10137 vim_free(buf);
10138}
10139
10140/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010141 * Returns a pointer to the file or directory name in "fname" that matches the
10142 * longest path in "ga"p, or NULL if there is no match. For example:
Bram Moolenaar162bd912010-07-28 22:29:10 +020010143 *
10144 * path: /foo/bar/baz
10145 * fname: /foo/bar/baz/quux.txt
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010146 * returns: ^this
Bram Moolenaar162bd912010-07-28 22:29:10 +020010147 */
10148 static char_u *
10149get_path_cutoff(fname, gap)
10150 char_u *fname;
10151 garray_T *gap;
10152{
10153 int i;
10154 int maxlen = 0;
10155 char_u **path_part = (char_u **)gap->ga_data;
10156 char_u *cutoff = NULL;
10157
10158 for (i = 0; i < gap->ga_len; i++)
10159 {
10160 int j = 0;
10161
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010162 while ((fname[j] == path_part[i][j]
Bram Moolenaar2d7c47d2010-08-10 19:50:26 +020010163# if defined(MSWIN) || defined(MSDOS)
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010164 || (vim_ispathsep(fname[j]) && vim_ispathsep(path_part[i][j]))
10165#endif
10166 ) && fname[j] != NUL && path_part[i][j] != NUL)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010167 j++;
10168 if (j > maxlen)
10169 {
10170 maxlen = j;
10171 cutoff = &fname[j];
10172 }
10173 }
10174
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010175 /* skip to the file or directory name */
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010176 if (cutoff != NULL)
Bram Moolenaar31710262010-08-13 13:36:15 +020010177 while (vim_ispathsep(*cutoff))
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010178 mb_ptr_adv(cutoff);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010179
10180 return cutoff;
10181}
10182
10183/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010184 * Sorts, removes duplicates and modifies all the fullpath names in "gap" so
10185 * that they are unique with respect to each other while conserving the part
10186 * that matches the pattern. Beware, this is at least O(n^2) wrt "gap->ga_len".
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010187 */
10188 static void
10189uniquefy_paths(gap, pattern)
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +020010190 garray_T *gap;
10191 char_u *pattern;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010192{
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +020010193 int i;
10194 int len;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010195 char_u **fnames = (char_u **)gap->ga_data;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010196 int sort_again = FALSE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010197 char_u *pat;
10198 char_u *file_pattern;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010199 char_u *curdir;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010200 regmatch_T regmatch;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010201 garray_T path_ga;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010202 char_u **in_curdir = NULL;
10203 char_u *short_name;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010204
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +020010205 remove_duplicates(gap);
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010206 ga_init2(&path_ga, (int)sizeof(char_u *), 1);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010207
10208 /*
10209 * We need to prepend a '*' at the beginning of file_pattern so that the
10210 * regex matches anywhere in the path. FIXME: is this valid for all
Bram Moolenaarb31e4382010-07-24 16:01:56 +020010211 * possible patterns?
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010212 */
Bram Moolenaar624c7aa2010-07-16 20:38:52 +020010213 len = (int)STRLEN(pattern);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010214 file_pattern = alloc(len + 2);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010215 if (file_pattern == NULL)
10216 return;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010217 file_pattern[0] = '*';
Bram Moolenaar162bd912010-07-28 22:29:10 +020010218 file_pattern[1] = NUL;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010219 STRCAT(file_pattern, pattern);
10220 pat = file_pat_to_reg_pat(file_pattern, NULL, NULL, TRUE);
10221 vim_free(file_pattern);
Bram Moolenaarb31e4382010-07-24 16:01:56 +020010222 if (pat == NULL)
10223 return;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010224
Bram Moolenaarb31e4382010-07-24 16:01:56 +020010225 regmatch.rm_ic = TRUE; /* always ignore case */
10226 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
10227 vim_free(pat);
10228 if (regmatch.regprog == NULL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010229 return;
10230
Bram Moolenaar162bd912010-07-28 22:29:10 +020010231 if ((curdir = alloc((int)(MAXPATHL))) == NULL)
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010232 goto theend;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010233 mch_dirname(curdir, MAXPATHL);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010234 expand_path_option(curdir, &path_ga);
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010235
10236 in_curdir = (char_u **)alloc_clear(gap->ga_len * sizeof(char_u *));
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010237 if (in_curdir == NULL)
10238 goto theend;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010239
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010240 for (i = 0; i < gap->ga_len && !got_int; i++)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010241 {
Bram Moolenaar162bd912010-07-28 22:29:10 +020010242 char_u *path = fnames[i];
10243 int is_in_curdir;
Bram Moolenaar31710262010-08-13 13:36:15 +020010244 char_u *dir_end = gettail_dir(path);
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010245 char_u *pathsep_p;
10246 char_u *path_cutoff;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010247
Bram Moolenaar624c7aa2010-07-16 20:38:52 +020010248 len = (int)STRLEN(path);
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010249 is_in_curdir = fnamencmp(curdir, path, dir_end - path) == 0
Bram Moolenaar162bd912010-07-28 22:29:10 +020010250 && curdir[dir_end - path] == NUL;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010251 if (is_in_curdir)
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010252 in_curdir[i] = vim_strsave(path);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010253
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010254 /* Shorten the filename while maintaining its uniqueness */
10255 path_cutoff = get_path_cutoff(path, &path_ga);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010256
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010257 /* we start at the end of the path */
10258 pathsep_p = path + len - 1;
10259
10260 while (find_previous_pathsep(path, &pathsep_p))
10261 if (vim_regexec(&regmatch, pathsep_p + 1, (colnr_T)0)
10262 && is_unique(pathsep_p + 1, gap, i)
10263 && path_cutoff != NULL && pathsep_p + 1 >= path_cutoff)
10264 {
10265 sort_again = TRUE;
10266 mch_memmove(path, pathsep_p + 1, STRLEN(pathsep_p));
10267 break;
10268 }
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010269
10270 if (mch_isFullName(path))
10271 {
10272 /*
10273 * Last resort: shorten relative to curdir if possible.
10274 * 'possible' means:
10275 * 1. It is under the current directory.
10276 * 2. The result is actually shorter than the original.
10277 *
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010278 * Before curdir After
10279 * /foo/bar/file.txt /foo/bar ./file.txt
10280 * c:\foo\bar\file.txt c:\foo\bar .\file.txt
10281 * /file.txt / /file.txt
10282 * c:\file.txt c:\ .\file.txt
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010283 */
10284 short_name = shorten_fname(path, curdir);
Bram Moolenaar31710262010-08-13 13:36:15 +020010285 if (short_name != NULL && short_name > path + 1
10286#if defined(MSWIN) || defined(MSDOS)
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010287 /* On windows,
Bram Moolenaar31710262010-08-13 13:36:15 +020010288 * shorten_fname("c:\a\a.txt", "c:\a\b")
Bram Moolenaar31710262010-08-13 13:36:15 +020010289 * returns "\a\a.txt", which is not really the short
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010290 * name, hence: */
Bram Moolenaar31710262010-08-13 13:36:15 +020010291 && !vim_ispathsep(*short_name)
10292#endif
10293 )
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010294 {
10295 STRCPY(path, ".");
10296 add_pathsep(path);
Bram Moolenaarcda000e2010-08-14 13:34:39 +020010297 STRMOVE(path + STRLEN(path), short_name);
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010298 }
10299 }
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010300 ui_breakcheck();
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010301 }
10302
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010303 /* Shorten filenames in /in/current/directory/{filename} */
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010304 for (i = 0; i < gap->ga_len && !got_int; i++)
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010305 {
10306 char_u *rel_path;
10307 char_u *path = in_curdir[i];
10308
10309 if (path == NULL)
10310 continue;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010311
10312 /* If the {filename} is not unique, change it to ./{filename}.
10313 * Else reduce it to {filename} */
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010314 short_name = shorten_fname(path, curdir);
10315 if (short_name == NULL)
10316 short_name = path;
10317 if (is_unique(short_name, gap, i))
10318 {
10319 STRCPY(fnames[i], short_name);
10320 continue;
10321 }
10322
10323 rel_path = alloc((int)(STRLEN(short_name) + STRLEN(PATHSEPSTR) + 2));
10324 if (rel_path == NULL)
10325 goto theend;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010326 STRCPY(rel_path, ".");
10327 add_pathsep(rel_path);
10328 STRCAT(rel_path, short_name);
10329
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010330 vim_free(fnames[i]);
10331 fnames[i] = rel_path;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010332 sort_again = TRUE;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010333 ui_breakcheck();
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010334 }
10335
Bram Moolenaar162bd912010-07-28 22:29:10 +020010336theend:
10337 vim_free(curdir);
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010338 if (in_curdir != NULL)
10339 {
10340 for (i = 0; i < gap->ga_len; i++)
10341 vim_free(in_curdir[i]);
10342 vim_free(in_curdir);
10343 }
Bram Moolenaar162bd912010-07-28 22:29:10 +020010344 ga_clear_strings(&path_ga);
Bram Moolenaarb31e4382010-07-24 16:01:56 +020010345 vim_free(regmatch.regprog);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010346
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010347 if (sort_again)
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +020010348 remove_duplicates(gap);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010349}
10350
10351/*
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010352 * Calls globpath() with 'path' values for the given pattern and stores the
10353 * result in "gap".
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010354 * Returns the total number of matches.
10355 */
10356 static int
10357expand_in_path(gap, pattern, flags)
10358 garray_T *gap;
10359 char_u *pattern;
10360 int flags; /* EW_* flags */
10361{
Bram Moolenaar162bd912010-07-28 22:29:10 +020010362 char_u *curdir;
10363 garray_T path_ga;
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010364 char_u *files = NULL;
10365 char_u *s; /* start */
10366 char_u *e; /* end */
10367 char_u *paths = NULL;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010368
Bram Moolenaar7f0f6212010-08-03 22:21:00 +020010369 if ((curdir = alloc((unsigned)MAXPATHL)) == NULL)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010370 return 0;
10371 mch_dirname(curdir, MAXPATHL);
10372
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010373 ga_init2(&path_ga, (int)sizeof(char_u *), 1);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010374 expand_path_option(curdir, &path_ga);
10375 vim_free(curdir);
Bram Moolenaar006d2b02010-08-04 12:39:44 +020010376 if (path_ga.ga_len == 0)
10377 return 0;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010378
10379 paths = ga_concat_strings(&path_ga);
10380 ga_clear_strings(&path_ga);
10381 if (paths == NULL)
Bram Moolenaar7f0f6212010-08-03 22:21:00 +020010382 return 0;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010383
Bram Moolenaar94950a92010-12-02 16:01:29 +010010384 files = globpath(paths, pattern, (flags & EW_ICASE) ? WILD_ICASE : 0);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010385 vim_free(paths);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010386 if (files == NULL)
10387 return 0;
10388
10389 /* Copy each path in files into gap */
10390 s = e = files;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010391 while (*s != NUL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010392 {
Bram Moolenaar162bd912010-07-28 22:29:10 +020010393 while (*e != '\n' && *e != NUL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010394 e++;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010395 if (*e == NUL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010396 {
10397 addfile(gap, s, flags);
10398 break;
10399 }
10400 else
10401 {
10402 /* *e is '\n' */
Bram Moolenaar162bd912010-07-28 22:29:10 +020010403 *e = NUL;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010404 addfile(gap, s, flags);
10405 e++;
10406 s = e;
10407 }
10408 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010409 vim_free(files);
10410
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010411 return gap->ga_len;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010412}
10413#endif
10414
Bram Moolenaar1587a1e2010-07-29 20:59:59 +020010415#if defined(FEAT_SEARCHPATH) || defined(FEAT_CMDL_COMPL) || defined(PROTO)
10416/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010417 * Sort "gap" and remove duplicate entries. "gap" is expected to contain a
10418 * list of file names in allocated memory.
Bram Moolenaar1587a1e2010-07-29 20:59:59 +020010419 */
10420 void
10421remove_duplicates(gap)
10422 garray_T *gap;
10423{
10424 int i;
10425 int j;
10426 char_u **fnames = (char_u **)gap->ga_data;
10427
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010428 sort_strings(fnames, gap->ga_len);
Bram Moolenaar1587a1e2010-07-29 20:59:59 +020010429 for (i = gap->ga_len - 1; i > 0; --i)
10430 if (fnamecmp(fnames[i - 1], fnames[i]) == 0)
10431 {
10432 vim_free(fnames[i]);
10433 for (j = i + 1; j < gap->ga_len; ++j)
10434 fnames[j - 1] = fnames[j];
10435 --gap->ga_len;
10436 }
10437}
10438#endif
10439
Bram Moolenaar071d4272004-06-13 20:20:40 +000010440/*
10441 * Generic wildcard expansion code.
10442 *
10443 * Characters in "pat" that should not be expanded must be preceded with a
10444 * backslash. E.g., "/path\ with\ spaces/my\*star*"
10445 *
10446 * Return FAIL when no single file was found. In this case "num_file" is not
10447 * set, and "file" may contain an error message.
10448 * Return OK when some files found. "num_file" is set to the number of
10449 * matches, "file" to the array of matches. Call FreeWild() later.
10450 */
10451 int
10452gen_expand_wildcards(num_pat, pat, num_file, file, flags)
10453 int num_pat; /* number of input patterns */
10454 char_u **pat; /* array of input patterns */
10455 int *num_file; /* resulting number of files */
10456 char_u ***file; /* array of resulting files */
10457 int flags; /* EW_* flags */
10458{
10459 int i;
10460 garray_T ga;
10461 char_u *p;
10462 static int recursive = FALSE;
10463 int add_pat;
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010464#if defined(FEAT_SEARCHPATH)
10465 int did_expand_in_path = FALSE;
10466#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010467
10468 /*
10469 * expand_env() is called to expand things like "~user". If this fails,
10470 * it calls ExpandOne(), which brings us back here. In this case, always
10471 * call the machine specific expansion function, if possible. Otherwise,
10472 * return FAIL.
10473 */
10474 if (recursive)
10475#ifdef SPECIAL_WILDCHAR
10476 return mch_expand_wildcards(num_pat, pat, num_file, file, flags);
10477#else
10478 return FAIL;
10479#endif
10480
10481#ifdef SPECIAL_WILDCHAR
10482 /*
10483 * If there are any special wildcard characters which we cannot handle
10484 * here, call machine specific function for all the expansion. This
10485 * avoids starting the shell for each argument separately.
10486 * For `=expr` do use the internal function.
10487 */
10488 for (i = 0; i < num_pat; i++)
10489 {
10490 if (vim_strpbrk(pat[i], (char_u *)SPECIAL_WILDCHAR) != NULL
10491# ifdef VIM_BACKTICK
10492 && !(vim_backtick(pat[i]) && pat[i][1] == '=')
10493# endif
10494 )
10495 return mch_expand_wildcards(num_pat, pat, num_file, file, flags);
10496 }
10497#endif
10498
10499 recursive = TRUE;
10500
10501 /*
10502 * The matching file names are stored in a growarray. Init it empty.
10503 */
10504 ga_init2(&ga, (int)sizeof(char_u *), 30);
10505
10506 for (i = 0; i < num_pat; ++i)
10507 {
10508 add_pat = -1;
10509 p = pat[i];
10510
10511#ifdef VIM_BACKTICK
10512 if (vim_backtick(p))
10513 add_pat = expand_backtick(&ga, p, flags);
10514 else
10515#endif
10516 {
10517 /*
10518 * First expand environment variables, "~/" and "~user/".
10519 */
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010520 if (vim_strchr(p, '$') != NULL || *p == '~')
Bram Moolenaar071d4272004-06-13 20:20:40 +000010521 {
Bram Moolenaar9f0545d2007-09-26 20:36:32 +000010522 p = expand_env_save_opt(p, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010523 if (p == NULL)
10524 p = pat[i];
10525#ifdef UNIX
10526 /*
10527 * On Unix, if expand_env() can't expand an environment
10528 * variable, use the shell to do that. Discard previously
10529 * found file names and start all over again.
10530 */
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010531 else if (vim_strchr(p, '$') != NULL || *p == '~')
Bram Moolenaar071d4272004-06-13 20:20:40 +000010532 {
10533 vim_free(p);
Bram Moolenaar782027e2009-06-24 14:25:49 +000010534 ga_clear_strings(&ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010535 i = mch_expand_wildcards(num_pat, pat, num_file, file,
10536 flags);
10537 recursive = FALSE;
10538 return i;
10539 }
10540#endif
10541 }
10542
10543 /*
10544 * If there are wildcards: Expand file names and add each match to
10545 * the list. If there is no match, and EW_NOTFOUND is given, add
10546 * the pattern.
10547 * If there are no wildcards: Add the file name if it exists or
10548 * when EW_NOTFOUND is given.
10549 */
10550 if (mch_has_exp_wildcard(p))
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010551 {
10552#if defined(FEAT_SEARCHPATH)
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010553 if ((flags & EW_PATH)
10554 && !mch_isFullName(p)
10555 && !(p[0] == '.'
10556 && (vim_ispathsep(p[1])
10557 || (p[1] == '.' && vim_ispathsep(p[2]))))
10558 )
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010559 {
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010560 /* :find completion where 'path' is used.
10561 * Recursiveness is OK here. */
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010562 recursive = FALSE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010563 add_pat = expand_in_path(&ga, p, flags);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010564 recursive = TRUE;
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010565 did_expand_in_path = TRUE;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010566 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010567 else
10568#endif
10569 add_pat = mch_expandpath(&ga, p, flags);
10570 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010571 }
10572
10573 if (add_pat == -1 || (add_pat == 0 && (flags & EW_NOTFOUND)))
10574 {
10575 char_u *t = backslash_halve_save(p);
10576
10577#if defined(MACOS_CLASSIC)
10578 slash_to_colon(t);
10579#endif
10580 /* When EW_NOTFOUND is used, always add files and dirs. Makes
10581 * "vim c:/" work. */
10582 if (flags & EW_NOTFOUND)
10583 addfile(&ga, t, flags | EW_DIR | EW_FILE);
10584 else if (mch_getperm(t) >= 0)
10585 addfile(&ga, t, flags);
10586 vim_free(t);
10587 }
10588
Bram Moolenaarb28ebbc2010-07-14 16:59:57 +020010589#if defined(FEAT_SEARCHPATH)
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010590 if (did_expand_in_path && ga.ga_len > 0 && (flags & EW_PATH))
Bram Moolenaarb28ebbc2010-07-14 16:59:57 +020010591 uniquefy_paths(&ga, p);
10592#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010593 if (p != pat[i])
10594 vim_free(p);
10595 }
10596
10597 *num_file = ga.ga_len;
10598 *file = (ga.ga_data != NULL) ? (char_u **)ga.ga_data : (char_u **)"";
10599
10600 recursive = FALSE;
10601
10602 return (ga.ga_data != NULL) ? OK : FAIL;
10603}
10604
10605# ifdef VIM_BACKTICK
10606
10607/*
10608 * Return TRUE if we can expand this backtick thing here.
10609 */
10610 static int
10611vim_backtick(p)
10612 char_u *p;
10613{
10614 return (*p == '`' && *(p + 1) != NUL && *(p + STRLEN(p) - 1) == '`');
10615}
10616
10617/*
10618 * Expand an item in `backticks` by executing it as a command.
10619 * Currently only works when pat[] starts and ends with a `.
10620 * Returns number of file names found.
10621 */
10622 static int
10623expand_backtick(gap, pat, flags)
10624 garray_T *gap;
10625 char_u *pat;
10626 int flags; /* EW_* flags */
10627{
10628 char_u *p;
10629 char_u *cmd;
10630 char_u *buffer;
10631 int cnt = 0;
10632 int i;
10633
10634 /* Create the command: lop off the backticks. */
10635 cmd = vim_strnsave(pat + 1, (int)STRLEN(pat) - 2);
10636 if (cmd == NULL)
10637 return 0;
10638
10639#ifdef FEAT_EVAL
10640 if (*cmd == '=') /* `={expr}`: Expand expression */
Bram Moolenaar362e1a32006-03-06 23:29:24 +000010641 buffer = eval_to_string(cmd + 1, &p, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010642 else
10643#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +000010644 buffer = get_cmd_output(cmd, NULL,
10645 (flags & EW_SILENT) ? SHELL_SILENT : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010646 vim_free(cmd);
10647 if (buffer == NULL)
10648 return 0;
10649
10650 cmd = buffer;
10651 while (*cmd != NUL)
10652 {
10653 cmd = skipwhite(cmd); /* skip over white space */
10654 p = cmd;
10655 while (*p != NUL && *p != '\r' && *p != '\n') /* skip over entry */
10656 ++p;
10657 /* add an entry if it is not empty */
10658 if (p > cmd)
10659 {
10660 i = *p;
10661 *p = NUL;
10662 addfile(gap, cmd, flags);
10663 *p = i;
10664 ++cnt;
10665 }
10666 cmd = p;
10667 while (*cmd != NUL && (*cmd == '\r' || *cmd == '\n'))
10668 ++cmd;
10669 }
10670
10671 vim_free(buffer);
10672 return cnt;
10673}
10674# endif /* VIM_BACKTICK */
10675
10676/*
10677 * Add a file to a file list. Accepted flags:
10678 * EW_DIR add directories
10679 * EW_FILE add files
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000010680 * EW_EXEC add executable files
Bram Moolenaar071d4272004-06-13 20:20:40 +000010681 * EW_NOTFOUND add even when it doesn't exist
10682 * EW_ADDSLASH add slash after directory name
10683 */
10684 void
10685addfile(gap, f, flags)
10686 garray_T *gap;
10687 char_u *f; /* filename */
10688 int flags;
10689{
10690 char_u *p;
10691 int isdir;
10692
10693 /* if the file/dir doesn't exist, may not add it */
10694 if (!(flags & EW_NOTFOUND) && mch_getperm(f) < 0)
10695 return;
10696
10697#ifdef FNAME_ILLEGAL
10698 /* if the file/dir contains illegal characters, don't add it */
10699 if (vim_strpbrk(f, (char_u *)FNAME_ILLEGAL) != NULL)
10700 return;
10701#endif
10702
10703 isdir = mch_isdir(f);
10704 if ((isdir && !(flags & EW_DIR)) || (!isdir && !(flags & EW_FILE)))
10705 return;
10706
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000010707 /* If the file isn't executable, may not add it. Do accept directories. */
10708 if (!isdir && (flags & EW_EXEC) && !mch_can_exe(f))
10709 return;
10710
Bram Moolenaar071d4272004-06-13 20:20:40 +000010711 /* Make room for another item in the file list. */
10712 if (ga_grow(gap, 1) == FAIL)
10713 return;
10714
10715 p = alloc((unsigned)(STRLEN(f) + 1 + isdir));
10716 if (p == NULL)
10717 return;
10718
10719 STRCPY(p, f);
10720#ifdef BACKSLASH_IN_FILENAME
10721 slash_adjust(p);
10722#endif
10723 /*
10724 * Append a slash or backslash after directory names if none is present.
10725 */
10726#ifndef DONT_ADD_PATHSEP_TO_DIR
10727 if (isdir && (flags & EW_ADDSLASH))
10728 add_pathsep(p);
10729#endif
10730 ((char_u **)gap->ga_data)[gap->ga_len++] = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010731}
10732#endif /* !NO_EXPANDPATH */
10733
10734#if defined(VIM_BACKTICK) || defined(FEAT_EVAL) || defined(PROTO)
10735
10736#ifndef SEEK_SET
10737# define SEEK_SET 0
10738#endif
10739#ifndef SEEK_END
10740# define SEEK_END 2
10741#endif
10742
10743/*
10744 * Get the stdout of an external command.
10745 * Returns an allocated string, or NULL for error.
10746 */
10747 char_u *
Bram Moolenaarc0197e22004-09-13 20:26:32 +000010748get_cmd_output(cmd, infile, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010749 char_u *cmd;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000010750 char_u *infile; /* optional input file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010751 int flags; /* can be SHELL_SILENT */
10752{
10753 char_u *tempname;
10754 char_u *command;
10755 char_u *buffer = NULL;
10756 int len;
10757 int i = 0;
10758 FILE *fd;
10759
10760 if (check_restricted() || check_secure())
10761 return NULL;
10762
10763 /* get a name for the temp file */
10764 if ((tempname = vim_tempname('o')) == NULL)
10765 {
10766 EMSG(_(e_notmp));
10767 return NULL;
10768 }
10769
10770 /* Add the redirection stuff */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000010771 command = make_filter_cmd(cmd, infile, tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010772 if (command == NULL)
10773 goto done;
10774
10775 /*
10776 * Call the shell to execute the command (errors are ignored).
10777 * Don't check timestamps here.
10778 */
10779 ++no_check_timestamps;
10780 call_shell(command, SHELL_DOOUT | SHELL_EXPAND | flags);
10781 --no_check_timestamps;
10782
10783 vim_free(command);
10784
10785 /*
10786 * read the names from the file into memory
10787 */
10788# ifdef VMS
Bram Moolenaar25394022007-05-10 19:06:20 +000010789 /* created temporary file is not always readable as binary */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010790 fd = mch_fopen((char *)tempname, "r");
10791# else
10792 fd = mch_fopen((char *)tempname, READBIN);
10793# endif
10794
10795 if (fd == NULL)
10796 {
10797 EMSG2(_(e_notopen), tempname);
10798 goto done;
10799 }
10800
10801 fseek(fd, 0L, SEEK_END);
10802 len = ftell(fd); /* get size of temp file */
10803 fseek(fd, 0L, SEEK_SET);
10804
10805 buffer = alloc(len + 1);
10806 if (buffer != NULL)
10807 i = (int)fread((char *)buffer, (size_t)1, (size_t)len, fd);
10808 fclose(fd);
10809 mch_remove(tempname);
10810 if (buffer == NULL)
10811 goto done;
10812#ifdef VMS
10813 len = i; /* VMS doesn't give us what we asked for... */
10814#endif
10815 if (i != len)
10816 {
10817 EMSG2(_(e_notread), tempname);
10818 vim_free(buffer);
10819 buffer = NULL;
10820 }
10821 else
Bram Moolenaar162bd912010-07-28 22:29:10 +020010822 buffer[len] = NUL; /* make sure the buffer is terminated */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010823
10824done:
10825 vim_free(tempname);
10826 return buffer;
10827}
10828#endif
10829
10830/*
10831 * Free the list of files returned by expand_wildcards() or other expansion
10832 * functions.
10833 */
10834 void
10835FreeWild(count, files)
10836 int count;
10837 char_u **files;
10838{
Bram Moolenaarfc1421e2006-04-20 22:17:20 +000010839 if (count <= 0 || files == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010840 return;
10841#if defined(__EMX__) && defined(__ALWAYS_HAS_TRAILING_NULL_POINTER) /* XXX */
10842 /*
10843 * Is this still OK for when other functions than expand_wildcards() have
10844 * been used???
10845 */
10846 _fnexplodefree((char **)files);
10847#else
10848 while (count--)
10849 vim_free(files[count]);
10850 vim_free(files);
10851#endif
10852}
10853
10854/*
Bram Moolenaara9dc3752010-07-11 20:46:53 +020010855 * Return TRUE when need to go to Insert mode because of 'insertmode'.
Bram Moolenaar071d4272004-06-13 20:20:40 +000010856 * Don't do this when still processing a command or a mapping.
10857 * Don't do this when inside a ":normal" command.
10858 */
10859 int
10860goto_im()
10861{
10862 return (p_im && stuff_empty() && typebuf_typed());
10863}