blob: 65f56f4f34be9bc6f1841c52e4197b01c529b1bf [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
21/*
22 * Count the size (in window cells) of the indent in the current line.
23 */
24 int
25get_indent()
26{
27 return get_indent_str(ml_get_curline(), (int)curbuf->b_p_ts);
28}
29
30/*
31 * Count the size (in window cells) of the indent in line "lnum".
32 */
33 int
34get_indent_lnum(lnum)
35 linenr_T lnum;
36{
37 return get_indent_str(ml_get(lnum), (int)curbuf->b_p_ts);
38}
39
40#if defined(FEAT_FOLDING) || defined(PROTO)
41/*
42 * Count the size (in window cells) of the indent in line "lnum" of buffer
43 * "buf".
44 */
45 int
46get_indent_buf(buf, lnum)
47 buf_T *buf;
48 linenr_T lnum;
49{
50 return get_indent_str(ml_get_buf(buf, lnum, FALSE), (int)buf->b_p_ts);
51}
52#endif
53
54/*
55 * count the size (in window cells) of the indent in line "ptr", with
56 * 'tabstop' at "ts"
57 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +000058 int
Bram Moolenaar071d4272004-06-13 20:20:40 +000059get_indent_str(ptr, ts)
60 char_u *ptr;
61 int ts;
62{
63 int count = 0;
64
65 for ( ; *ptr; ++ptr)
66 {
67 if (*ptr == TAB) /* count a tab for what it is worth */
68 count += ts - (count % ts);
69 else if (*ptr == ' ')
70 ++count; /* count a space for one */
71 else
72 break;
73 }
Bram Moolenaar4399ef42005-02-12 14:29:27 +000074 return count;
Bram Moolenaar071d4272004-06-13 20:20:40 +000075}
76
77/*
78 * Set the indent of the current line.
79 * Leaves the cursor on the first non-blank in the line.
80 * Caller must take care of undo.
81 * "flags":
82 * SIN_CHANGED: call changed_bytes() if the line was changed.
83 * SIN_INSERT: insert the indent in front of the line.
84 * SIN_UNDO: save line for undo before changing it.
85 * Returns TRUE if the line was changed.
86 */
87 int
88set_indent(size, flags)
Bram Moolenaar5002c292007-07-24 13:26:15 +000089 int size; /* measured in spaces */
Bram Moolenaar071d4272004-06-13 20:20:40 +000090 int flags;
91{
92 char_u *p;
93 char_u *newline;
94 char_u *oldline;
95 char_u *s;
96 int todo;
Bram Moolenaar5002c292007-07-24 13:26:15 +000097 int ind_len; /* measured in characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +000098 int line_len;
99 int doit = FALSE;
Bram Moolenaar5002c292007-07-24 13:26:15 +0000100 int ind_done = 0; /* measured in spaces */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101 int tab_pad;
Bram Moolenaar5409c052005-03-18 20:27:04 +0000102 int retval = FALSE;
Bram Moolenaar4d64b782007-08-14 20:16:42 +0000103 int orig_char_len = -1; /* number of initial whitespace chars when
Bram Moolenaar5002c292007-07-24 13:26:15 +0000104 'et' and 'pi' are both set */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000105
106 /*
107 * First check if there is anything to do and compute the number of
108 * characters needed for the indent.
109 */
110 todo = size;
111 ind_len = 0;
112 p = oldline = ml_get_curline();
113
114 /* Calculate the buffer size for the new indent, and check to see if it
115 * isn't already set */
116
Bram Moolenaar5002c292007-07-24 13:26:15 +0000117 /* if 'expandtab' isn't set: use TABs; if both 'expandtab' and
118 * 'preserveindent' are set count the number of characters at the
119 * beginning of the line to be copied */
120 if (!curbuf->b_p_et || (!(flags & SIN_INSERT) && curbuf->b_p_pi))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121 {
122 /* If 'preserveindent' is set then reuse as much as possible of
123 * the existing indent structure for the new indent */
124 if (!(flags & SIN_INSERT) && curbuf->b_p_pi)
125 {
126 ind_done = 0;
127
128 /* count as many characters as we can use */
129 while (todo > 0 && vim_iswhite(*p))
130 {
131 if (*p == TAB)
132 {
133 tab_pad = (int)curbuf->b_p_ts
134 - (ind_done % (int)curbuf->b_p_ts);
135 /* stop if this tab will overshoot the target */
136 if (todo < tab_pad)
137 break;
138 todo -= tab_pad;
139 ++ind_len;
140 ind_done += tab_pad;
141 }
142 else
143 {
144 --todo;
145 ++ind_len;
146 ++ind_done;
147 }
148 ++p;
149 }
150
Bram Moolenaar5002c292007-07-24 13:26:15 +0000151 /* Set initial number of whitespace chars to copy if we are
152 * preserving indent but expandtab is set */
153 if (curbuf->b_p_et)
154 orig_char_len = ind_len;
155
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156 /* Fill to next tabstop with a tab, if possible */
157 tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
Bram Moolenaar4d64b782007-08-14 20:16:42 +0000158 if (todo >= tab_pad && orig_char_len == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159 {
160 doit = TRUE;
161 todo -= tab_pad;
162 ++ind_len;
163 /* ind_done += tab_pad; */
164 }
165 }
166
167 /* count tabs required for indent */
168 while (todo >= (int)curbuf->b_p_ts)
169 {
170 if (*p != TAB)
171 doit = TRUE;
172 else
173 ++p;
174 todo -= (int)curbuf->b_p_ts;
175 ++ind_len;
176 /* ind_done += (int)curbuf->b_p_ts; */
177 }
178 }
179 /* count spaces required for indent */
180 while (todo > 0)
181 {
182 if (*p != ' ')
183 doit = TRUE;
184 else
185 ++p;
186 --todo;
187 ++ind_len;
188 /* ++ind_done; */
189 }
190
191 /* Return if the indent is OK already. */
192 if (!doit && !vim_iswhite(*p) && !(flags & SIN_INSERT))
193 return FALSE;
194
195 /* Allocate memory for the new line. */
196 if (flags & SIN_INSERT)
197 p = oldline;
198 else
199 p = skipwhite(p);
200 line_len = (int)STRLEN(p) + 1;
Bram Moolenaar5002c292007-07-24 13:26:15 +0000201
202 /* If 'preserveindent' and 'expandtab' are both set keep the original
203 * characters and allocate accordingly. We will fill the rest with spaces
204 * after the if (!curbuf->b_p_et) below. */
Bram Moolenaar4d64b782007-08-14 20:16:42 +0000205 if (orig_char_len != -1)
Bram Moolenaar5002c292007-07-24 13:26:15 +0000206 {
207 newline = alloc(orig_char_len + size - ind_done + line_len);
208 if (newline == NULL)
209 return FALSE;
Bram Moolenaar4d64b782007-08-14 20:16:42 +0000210 todo = size - ind_done;
211 ind_len = orig_char_len + todo; /* Set total length of indent in
212 * characters, which may have been
213 * undercounted until now */
Bram Moolenaar5002c292007-07-24 13:26:15 +0000214 p = oldline;
215 s = newline;
216 while (orig_char_len > 0)
217 {
218 *s++ = *p++;
219 orig_char_len--;
220 }
Bram Moolenaar913626c2008-01-03 11:43:42 +0000221
Bram Moolenaar5002c292007-07-24 13:26:15 +0000222 /* Skip over any additional white space (useful when newindent is less
223 * than old) */
224 while (vim_iswhite(*p))
Bram Moolenaar913626c2008-01-03 11:43:42 +0000225 ++p;
Bram Moolenaarcc00b952007-08-11 12:32:57 +0000226
Bram Moolenaar5002c292007-07-24 13:26:15 +0000227 }
228 else
229 {
230 todo = size;
231 newline = alloc(ind_len + line_len);
232 if (newline == NULL)
233 return FALSE;
234 s = newline;
235 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236
237 /* Put the characters in the new line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238 /* if 'expandtab' isn't set: use TABs */
239 if (!curbuf->b_p_et)
240 {
241 /* If 'preserveindent' is set then reuse as much as possible of
242 * the existing indent structure for the new indent */
243 if (!(flags & SIN_INSERT) && curbuf->b_p_pi)
244 {
245 p = oldline;
246 ind_done = 0;
247
248 while (todo > 0 && vim_iswhite(*p))
249 {
250 if (*p == TAB)
251 {
252 tab_pad = (int)curbuf->b_p_ts
253 - (ind_done % (int)curbuf->b_p_ts);
254 /* stop if this tab will overshoot the target */
255 if (todo < tab_pad)
256 break;
257 todo -= tab_pad;
258 ind_done += tab_pad;
259 }
260 else
261 {
262 --todo;
263 ++ind_done;
264 }
265 *s++ = *p++;
266 }
267
268 /* Fill to next tabstop with a tab, if possible */
269 tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
270 if (todo >= tab_pad)
271 {
272 *s++ = TAB;
273 todo -= tab_pad;
274 }
275
276 p = skipwhite(p);
277 }
278
279 while (todo >= (int)curbuf->b_p_ts)
280 {
281 *s++ = TAB;
282 todo -= (int)curbuf->b_p_ts;
283 }
284 }
285 while (todo > 0)
286 {
287 *s++ = ' ';
288 --todo;
289 }
290 mch_memmove(s, p, (size_t)line_len);
291
292 /* Replace the line (unless undo fails). */
293 if (!(flags & SIN_UNDO) || u_savesub(curwin->w_cursor.lnum) == OK)
294 {
295 ml_replace(curwin->w_cursor.lnum, newline, FALSE);
296 if (flags & SIN_CHANGED)
297 changed_bytes(curwin->w_cursor.lnum, 0);
298 /* Correct saved cursor position if it's after the indent. */
299 if (saved_cursor.lnum == curwin->w_cursor.lnum
300 && saved_cursor.col >= (colnr_T)(p - oldline))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000301 saved_cursor.col += ind_len - (colnr_T)(p - oldline);
Bram Moolenaar5409c052005-03-18 20:27:04 +0000302 retval = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303 }
304 else
305 vim_free(newline);
306
307 curwin->w_cursor.col = ind_len;
Bram Moolenaar5409c052005-03-18 20:27:04 +0000308 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309}
310
311/*
312 * Copy the indent from ptr to the current line (and fill to size)
313 * Leaves the cursor on the first non-blank in the line.
314 * Returns TRUE if the line was changed.
315 */
316 static int
317copy_indent(size, src)
318 int size;
319 char_u *src;
320{
321 char_u *p = NULL;
322 char_u *line = NULL;
323 char_u *s;
324 int todo;
325 int ind_len;
326 int line_len = 0;
327 int tab_pad;
328 int ind_done;
329 int round;
330
331 /* Round 1: compute the number of characters needed for the indent
332 * Round 2: copy the characters. */
333 for (round = 1; round <= 2; ++round)
334 {
335 todo = size;
336 ind_len = 0;
337 ind_done = 0;
338 s = src;
339
340 /* Count/copy the usable portion of the source line */
341 while (todo > 0 && vim_iswhite(*s))
342 {
343 if (*s == TAB)
344 {
345 tab_pad = (int)curbuf->b_p_ts
346 - (ind_done % (int)curbuf->b_p_ts);
347 /* Stop if this tab will overshoot the target */
348 if (todo < tab_pad)
349 break;
350 todo -= tab_pad;
351 ind_done += tab_pad;
352 }
353 else
354 {
355 --todo;
356 ++ind_done;
357 }
358 ++ind_len;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000359 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360 *p++ = *s;
361 ++s;
362 }
363
364 /* Fill to next tabstop with a tab, if possible */
365 tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
Bram Moolenaarc42e7ed2011-09-07 19:58:09 +0200366 if (todo >= tab_pad && !curbuf->b_p_et)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 {
368 todo -= tab_pad;
369 ++ind_len;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000370 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371 *p++ = TAB;
372 }
373
374 /* Add tabs required for indent */
Bram Moolenaarc42e7ed2011-09-07 19:58:09 +0200375 while (todo >= (int)curbuf->b_p_ts && !curbuf->b_p_et)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 {
377 todo -= (int)curbuf->b_p_ts;
378 ++ind_len;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000379 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380 *p++ = TAB;
381 }
382
383 /* Count/add spaces required for indent */
384 while (todo > 0)
385 {
386 --todo;
387 ++ind_len;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000388 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389 *p++ = ' ';
390 }
391
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000392 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393 {
394 /* Allocate memory for the result: the copied indent, new indent
395 * and the rest of the line. */
396 line_len = (int)STRLEN(ml_get_curline()) + 1;
397 line = alloc(ind_len + line_len);
398 if (line == NULL)
399 return FALSE;
400 p = line;
401 }
402 }
403
404 /* Append the original line */
405 mch_memmove(p, ml_get_curline(), (size_t)line_len);
406
407 /* Replace the line */
408 ml_replace(curwin->w_cursor.lnum, line, FALSE);
409
410 /* Put the cursor after the indent. */
411 curwin->w_cursor.col = ind_len;
412 return TRUE;
413}
414
415/*
416 * Return the indent of the current line after a number. Return -1 if no
417 * number was found. Used for 'n' in 'formatoptions': numbered list.
Bram Moolenaar86b68352004-12-27 21:59:20 +0000418 * Since a pattern is used it can actually handle more than numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419 */
420 int
421get_number_indent(lnum)
422 linenr_T lnum;
423{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 colnr_T col;
425 pos_T pos;
Bram Moolenaar86b68352004-12-27 21:59:20 +0000426 regmmatch_T regmatch;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000427
428 if (lnum > curbuf->b_ml.ml_line_count)
429 return -1;
Bram Moolenaar86b68352004-12-27 21:59:20 +0000430 pos.lnum = 0;
431 regmatch.regprog = vim_regcomp(curbuf->b_p_flp, RE_MAGIC);
432 if (regmatch.regprog != NULL)
433 {
434 regmatch.rmm_ic = FALSE;
Bram Moolenaar3b56eb32005-07-11 22:40:32 +0000435 regmatch.rmm_maxcol = 0;
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000436 if (vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
437 (colnr_T)0, NULL))
Bram Moolenaar86b68352004-12-27 21:59:20 +0000438 {
439 pos.lnum = regmatch.endpos[0].lnum + lnum;
440 pos.col = regmatch.endpos[0].col;
441#ifdef FEAT_VIRTUALEDIT
442 pos.coladd = 0;
443#endif
444 }
445 vim_free(regmatch.regprog);
446 }
447
448 if (pos.lnum == 0 || *ml_get_pos(&pos) == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450 getvcol(curwin, &pos, &col, NULL, NULL);
451 return (int)col;
452}
453
454#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
455
456static int cin_is_cinword __ARGS((char_u *line));
457
458/*
459 * Return TRUE if the string "line" starts with a word from 'cinwords'.
460 */
461 static int
462cin_is_cinword(line)
463 char_u *line;
464{
465 char_u *cinw;
466 char_u *cinw_buf;
467 int cinw_len;
468 int retval = FALSE;
469 int len;
470
471 cinw_len = (int)STRLEN(curbuf->b_p_cinw) + 1;
472 cinw_buf = alloc((unsigned)cinw_len);
473 if (cinw_buf != NULL)
474 {
475 line = skipwhite(line);
476 for (cinw = curbuf->b_p_cinw; *cinw; )
477 {
478 len = copy_option_part(&cinw, cinw_buf, cinw_len, ",");
479 if (STRNCMP(line, cinw_buf, len) == 0
480 && (!vim_iswordc(line[len]) || !vim_iswordc(line[len - 1])))
481 {
482 retval = TRUE;
483 break;
484 }
485 }
486 vim_free(cinw_buf);
487 }
488 return retval;
489}
490#endif
491
492/*
493 * open_line: Add a new line below or above the current line.
494 *
495 * For VREPLACE mode, we only add a new line when we get to the end of the
496 * file, otherwise we just start replacing the next line.
497 *
498 * Caller must take care of undo. Since VREPLACE may affect any number of
499 * lines however, it may call u_save_cursor() again when starting to change a
500 * new line.
501 * "flags": OPENLINE_DELSPACES delete spaces after cursor
502 * OPENLINE_DO_COM format comments
503 * OPENLINE_KEEPTRAIL keep trailing spaces
504 * OPENLINE_MARKFIX adjust mark positions after the line break
505 *
506 * Return TRUE for success, FALSE for failure
507 */
508 int
509open_line(dir, flags, old_indent)
510 int dir; /* FORWARD or BACKWARD */
511 int flags;
512 int old_indent; /* indent for after ^^D in Insert mode */
513{
514 char_u *saved_line; /* copy of the original line */
515 char_u *next_line = NULL; /* copy of the next line */
516 char_u *p_extra = NULL; /* what goes to next line */
517 int less_cols = 0; /* less columns for mark in new line */
518 int less_cols_off = 0; /* columns to skip for mark adjust */
519 pos_T old_cursor; /* old cursor position */
520 int newcol = 0; /* new cursor column */
521 int newindent = 0; /* auto-indent of the new line */
522 int n;
523 int trunc_line = FALSE; /* truncate current line afterwards */
524 int retval = FALSE; /* return value, default is FAIL */
525#ifdef FEAT_COMMENTS
526 int extra_len = 0; /* length of p_extra string */
527 int lead_len; /* length of comment leader */
528 char_u *lead_flags; /* position in 'comments' for comment leader */
529 char_u *leader = NULL; /* copy of comment leader */
530#endif
531 char_u *allocated = NULL; /* allocated memory */
532#if defined(FEAT_SMARTINDENT) || defined(FEAT_VREPLACE) || defined(FEAT_LISP) \
533 || defined(FEAT_CINDENT) || defined(FEAT_COMMENTS)
534 char_u *p;
535#endif
536 int saved_char = NUL; /* init for GCC */
537#if defined(FEAT_SMARTINDENT) || defined(FEAT_COMMENTS)
538 pos_T *pos;
539#endif
540#ifdef FEAT_SMARTINDENT
541 int do_si = (!p_paste && curbuf->b_p_si
542# ifdef FEAT_CINDENT
543 && !curbuf->b_p_cin
544# endif
545 );
546 int no_si = FALSE; /* reset did_si afterwards */
547 int first_char = NUL; /* init for GCC */
548#endif
549#if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
550 int vreplace_mode;
551#endif
552 int did_append; /* appended a new line */
553 int saved_pi = curbuf->b_p_pi; /* copy of preserveindent setting */
554
555 /*
556 * make a copy of the current line so we can mess with it
557 */
558 saved_line = vim_strsave(ml_get_curline());
559 if (saved_line == NULL) /* out of memory! */
560 return FALSE;
561
562#ifdef FEAT_VREPLACE
563 if (State & VREPLACE_FLAG)
564 {
565 /*
566 * With VREPLACE we make a copy of the next line, which we will be
567 * starting to replace. First make the new line empty and let vim play
568 * with the indenting and comment leader to its heart's content. Then
569 * we grab what it ended up putting on the new line, put back the
570 * original line, and call ins_char() to put each new character onto
571 * the line, replacing what was there before and pushing the right
572 * stuff onto the replace stack. -- webb.
573 */
574 if (curwin->w_cursor.lnum < orig_line_count)
575 next_line = vim_strsave(ml_get(curwin->w_cursor.lnum + 1));
576 else
577 next_line = vim_strsave((char_u *)"");
578 if (next_line == NULL) /* out of memory! */
579 goto theend;
580
581 /*
582 * In VREPLACE mode, a NL replaces the rest of the line, and starts
583 * replacing the next line, so push all of the characters left on the
584 * line onto the replace stack. We'll push any other characters that
585 * might be replaced at the start of the next line (due to autoindent
586 * etc) a bit later.
587 */
588 replace_push(NUL); /* Call twice because BS over NL expects it */
589 replace_push(NUL);
590 p = saved_line + curwin->w_cursor.col;
591 while (*p != NUL)
Bram Moolenaar2c994e82008-01-02 16:49:36 +0000592 {
593#ifdef FEAT_MBYTE
594 if (has_mbyte)
595 p += replace_push_mb(p);
596 else
597#endif
598 replace_push(*p++);
599 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000600 saved_line[curwin->w_cursor.col] = NUL;
601 }
602#endif
603
604 if ((State & INSERT)
605#ifdef FEAT_VREPLACE
606 && !(State & VREPLACE_FLAG)
607#endif
608 )
609 {
610 p_extra = saved_line + curwin->w_cursor.col;
611#ifdef FEAT_SMARTINDENT
612 if (do_si) /* need first char after new line break */
613 {
614 p = skipwhite(p_extra);
615 first_char = *p;
616 }
617#endif
618#ifdef FEAT_COMMENTS
619 extra_len = (int)STRLEN(p_extra);
620#endif
621 saved_char = *p_extra;
622 *p_extra = NUL;
623 }
624
625 u_clearline(); /* cannot do "U" command when adding lines */
626#ifdef FEAT_SMARTINDENT
627 did_si = FALSE;
628#endif
629 ai_col = 0;
630
631 /*
632 * If we just did an auto-indent, then we didn't type anything on
633 * the prior line, and it should be truncated. Do this even if 'ai' is not
634 * set because automatically inserting a comment leader also sets did_ai.
635 */
636 if (dir == FORWARD && did_ai)
637 trunc_line = TRUE;
638
639 /*
640 * If 'autoindent' and/or 'smartindent' is set, try to figure out what
641 * indent to use for the new line.
642 */
643 if (curbuf->b_p_ai
644#ifdef FEAT_SMARTINDENT
645 || do_si
646#endif
647 )
648 {
649 /*
650 * count white space on current line
651 */
652 newindent = get_indent_str(saved_line, (int)curbuf->b_p_ts);
653 if (newindent == 0)
654 newindent = old_indent; /* for ^^D command in insert mode */
655
656#ifdef FEAT_SMARTINDENT
657 /*
658 * Do smart indenting.
659 * In insert/replace mode (only when dir == FORWARD)
660 * we may move some text to the next line. If it starts with '{'
661 * don't add an indent. Fixes inserting a NL before '{' in line
662 * "if (condition) {"
663 */
664 if (!trunc_line && do_si && *saved_line != NUL
665 && (p_extra == NULL || first_char != '{'))
666 {
667 char_u *ptr;
668 char_u last_char;
669
670 old_cursor = curwin->w_cursor;
671 ptr = saved_line;
672# ifdef FEAT_COMMENTS
673 if (flags & OPENLINE_DO_COM)
674 lead_len = get_leader_len(ptr, NULL, FALSE);
675 else
676 lead_len = 0;
677# endif
678 if (dir == FORWARD)
679 {
680 /*
681 * Skip preprocessor directives, unless they are
682 * recognised as comments.
683 */
684 if (
685# ifdef FEAT_COMMENTS
686 lead_len == 0 &&
687# endif
688 ptr[0] == '#')
689 {
690 while (ptr[0] == '#' && curwin->w_cursor.lnum > 1)
691 ptr = ml_get(--curwin->w_cursor.lnum);
692 newindent = get_indent();
693 }
694# ifdef FEAT_COMMENTS
695 if (flags & OPENLINE_DO_COM)
696 lead_len = get_leader_len(ptr, NULL, FALSE);
697 else
698 lead_len = 0;
699 if (lead_len > 0)
700 {
701 /*
702 * This case gets the following right:
703 * \*
704 * * A comment (read '\' as '/').
705 * *\
706 * #define IN_THE_WAY
707 * This should line up here;
708 */
709 p = skipwhite(ptr);
710 if (p[0] == '/' && p[1] == '*')
711 p++;
712 if (p[0] == '*')
713 {
714 for (p++; *p; p++)
715 {
716 if (p[0] == '/' && p[-1] == '*')
717 {
718 /*
719 * End of C comment, indent should line up
720 * with the line containing the start of
721 * the comment
722 */
723 curwin->w_cursor.col = (colnr_T)(p - ptr);
724 if ((pos = findmatch(NULL, NUL)) != NULL)
725 {
726 curwin->w_cursor.lnum = pos->lnum;
727 newindent = get_indent();
728 }
729 }
730 }
731 }
732 }
733 else /* Not a comment line */
734# endif
735 {
736 /* Find last non-blank in line */
737 p = ptr + STRLEN(ptr) - 1;
738 while (p > ptr && vim_iswhite(*p))
739 --p;
740 last_char = *p;
741
742 /*
743 * find the character just before the '{' or ';'
744 */
745 if (last_char == '{' || last_char == ';')
746 {
747 if (p > ptr)
748 --p;
749 while (p > ptr && vim_iswhite(*p))
750 --p;
751 }
752 /*
753 * Try to catch lines that are split over multiple
754 * lines. eg:
755 * if (condition &&
756 * condition) {
757 * Should line up here!
758 * }
759 */
760 if (*p == ')')
761 {
762 curwin->w_cursor.col = (colnr_T)(p - ptr);
763 if ((pos = findmatch(NULL, '(')) != NULL)
764 {
765 curwin->w_cursor.lnum = pos->lnum;
766 newindent = get_indent();
767 ptr = ml_get_curline();
768 }
769 }
770 /*
771 * If last character is '{' do indent, without
772 * checking for "if" and the like.
773 */
774 if (last_char == '{')
775 {
776 did_si = TRUE; /* do indent */
777 no_si = TRUE; /* don't delete it when '{' typed */
778 }
779 /*
780 * Look for "if" and the like, use 'cinwords'.
781 * Don't do this if the previous line ended in ';' or
782 * '}'.
783 */
784 else if (last_char != ';' && last_char != '}'
785 && cin_is_cinword(ptr))
786 did_si = TRUE;
787 }
788 }
789 else /* dir == BACKWARD */
790 {
791 /*
792 * Skip preprocessor directives, unless they are
793 * recognised as comments.
794 */
795 if (
796# ifdef FEAT_COMMENTS
797 lead_len == 0 &&
798# endif
799 ptr[0] == '#')
800 {
801 int was_backslashed = FALSE;
802
803 while ((ptr[0] == '#' || was_backslashed) &&
804 curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
805 {
806 if (*ptr && ptr[STRLEN(ptr) - 1] == '\\')
807 was_backslashed = TRUE;
808 else
809 was_backslashed = FALSE;
810 ptr = ml_get(++curwin->w_cursor.lnum);
811 }
812 if (was_backslashed)
813 newindent = 0; /* Got to end of file */
814 else
815 newindent = get_indent();
816 }
817 p = skipwhite(ptr);
818 if (*p == '}') /* if line starts with '}': do indent */
819 did_si = TRUE;
820 else /* can delete indent when '{' typed */
821 can_si_back = TRUE;
822 }
823 curwin->w_cursor = old_cursor;
824 }
825 if (do_si)
826 can_si = TRUE;
827#endif /* FEAT_SMARTINDENT */
828
829 did_ai = TRUE;
830 }
831
832#ifdef FEAT_COMMENTS
833 /*
834 * Find out if the current line starts with a comment leader.
835 * This may then be inserted in front of the new line.
836 */
837 end_comment_pending = NUL;
838 if (flags & OPENLINE_DO_COM)
839 lead_len = get_leader_len(saved_line, &lead_flags, dir == BACKWARD);
840 else
841 lead_len = 0;
842 if (lead_len > 0)
843 {
844 char_u *lead_repl = NULL; /* replaces comment leader */
845 int lead_repl_len = 0; /* length of *lead_repl */
846 char_u lead_middle[COM_MAX_LEN]; /* middle-comment string */
847 char_u lead_end[COM_MAX_LEN]; /* end-comment string */
848 char_u *comment_end = NULL; /* where lead_end has been found */
849 int extra_space = FALSE; /* append extra space */
850 int current_flag;
851 int require_blank = FALSE; /* requires blank after middle */
852 char_u *p2;
853
854 /*
855 * If the comment leader has the start, middle or end flag, it may not
856 * be used or may be replaced with the middle leader.
857 */
858 for (p = lead_flags; *p && *p != ':'; ++p)
859 {
860 if (*p == COM_BLANK)
861 {
862 require_blank = TRUE;
863 continue;
864 }
865 if (*p == COM_START || *p == COM_MIDDLE)
866 {
867 current_flag = *p;
868 if (*p == COM_START)
869 {
870 /*
871 * Doing "O" on a start of comment does not insert leader.
872 */
873 if (dir == BACKWARD)
874 {
875 lead_len = 0;
876 break;
877 }
878
879 /* find start of middle part */
880 (void)copy_option_part(&p, lead_middle, COM_MAX_LEN, ",");
881 require_blank = FALSE;
882 }
883
884 /*
885 * Isolate the strings of the middle and end leader.
886 */
887 while (*p && p[-1] != ':') /* find end of middle flags */
888 {
889 if (*p == COM_BLANK)
890 require_blank = TRUE;
891 ++p;
892 }
893 (void)copy_option_part(&p, lead_middle, COM_MAX_LEN, ",");
894
895 while (*p && p[-1] != ':') /* find end of end flags */
896 {
897 /* Check whether we allow automatic ending of comments */
898 if (*p == COM_AUTO_END)
899 end_comment_pending = -1; /* means we want to set it */
900 ++p;
901 }
902 n = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
903
904 if (end_comment_pending == -1) /* we can set it now */
905 end_comment_pending = lead_end[n - 1];
906
907 /*
908 * If the end of the comment is in the same line, don't use
909 * the comment leader.
910 */
911 if (dir == FORWARD)
912 {
913 for (p = saved_line + lead_len; *p; ++p)
914 if (STRNCMP(p, lead_end, n) == 0)
915 {
916 comment_end = p;
917 lead_len = 0;
918 break;
919 }
920 }
921
922 /*
923 * Doing "o" on a start of comment inserts the middle leader.
924 */
925 if (lead_len > 0)
926 {
927 if (current_flag == COM_START)
928 {
929 lead_repl = lead_middle;
930 lead_repl_len = (int)STRLEN(lead_middle);
931 }
932
933 /*
934 * If we have hit RETURN immediately after the start
935 * comment leader, then put a space after the middle
936 * comment leader on the next line.
937 */
938 if (!vim_iswhite(saved_line[lead_len - 1])
939 && ((p_extra != NULL
940 && (int)curwin->w_cursor.col == lead_len)
941 || (p_extra == NULL
942 && saved_line[lead_len] == NUL)
943 || require_blank))
944 extra_space = TRUE;
945 }
946 break;
947 }
948 if (*p == COM_END)
949 {
950 /*
951 * Doing "o" on the end of a comment does not insert leader.
952 * Remember where the end is, might want to use it to find the
953 * start (for C-comments).
954 */
955 if (dir == FORWARD)
956 {
957 comment_end = skipwhite(saved_line);
958 lead_len = 0;
959 break;
960 }
961
962 /*
963 * Doing "O" on the end of a comment inserts the middle leader.
964 * Find the string for the middle leader, searching backwards.
965 */
966 while (p > curbuf->b_p_com && *p != ',')
967 --p;
968 for (lead_repl = p; lead_repl > curbuf->b_p_com
969 && lead_repl[-1] != ':'; --lead_repl)
970 ;
971 lead_repl_len = (int)(p - lead_repl);
972
973 /* We can probably always add an extra space when doing "O" on
974 * the comment-end */
975 extra_space = TRUE;
976
977 /* Check whether we allow automatic ending of comments */
978 for (p2 = p; *p2 && *p2 != ':'; p2++)
979 {
980 if (*p2 == COM_AUTO_END)
981 end_comment_pending = -1; /* means we want to set it */
982 }
983 if (end_comment_pending == -1)
984 {
985 /* Find last character in end-comment string */
986 while (*p2 && *p2 != ',')
987 p2++;
988 end_comment_pending = p2[-1];
989 }
990 break;
991 }
992 if (*p == COM_FIRST)
993 {
994 /*
995 * Comment leader for first line only: Don't repeat leader
996 * when using "O", blank out leader when using "o".
997 */
998 if (dir == BACKWARD)
999 lead_len = 0;
1000 else
1001 {
1002 lead_repl = (char_u *)"";
1003 lead_repl_len = 0;
1004 }
1005 break;
1006 }
1007 }
1008 if (lead_len)
1009 {
1010 /* allocate buffer (may concatenate p_exta later) */
1011 leader = alloc(lead_len + lead_repl_len + extra_space +
1012 extra_len + 1);
1013 allocated = leader; /* remember to free it later */
1014
1015 if (leader == NULL)
1016 lead_len = 0;
1017 else
1018 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00001019 vim_strncpy(leader, saved_line, lead_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020
1021 /*
1022 * Replace leader with lead_repl, right or left adjusted
1023 */
1024 if (lead_repl != NULL)
1025 {
1026 int c = 0;
1027 int off = 0;
1028
Bram Moolenaard7d5b472009-11-11 16:30:08 +00001029 for (p = lead_flags; *p != NUL && *p != ':'; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030 {
1031 if (*p == COM_RIGHT || *p == COM_LEFT)
Bram Moolenaard7d5b472009-11-11 16:30:08 +00001032 c = *p++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033 else if (VIM_ISDIGIT(*p) || *p == '-')
1034 off = getdigits(&p);
Bram Moolenaard7d5b472009-11-11 16:30:08 +00001035 else
1036 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037 }
1038 if (c == COM_RIGHT) /* right adjusted leader */
1039 {
1040 /* find last non-white in the leader to line up with */
1041 for (p = leader + lead_len - 1; p > leader
1042 && vim_iswhite(*p); --p)
1043 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 ++p;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001045
1046#ifdef FEAT_MBYTE
1047 /* Compute the length of the replaced characters in
1048 * screen characters, not bytes. */
1049 {
1050 int repl_size = vim_strnsize(lead_repl,
1051 lead_repl_len);
1052 int old_size = 0;
1053 char_u *endp = p;
1054 int l;
1055
1056 while (old_size < repl_size && p > leader)
1057 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001058 mb_ptr_back(leader, p);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001059 old_size += ptr2cells(p);
1060 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001061 l = lead_repl_len - (int)(endp - p);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001062 if (l != 0)
1063 mch_memmove(endp + l, endp,
1064 (size_t)((leader + lead_len) - endp));
1065 lead_len += l;
1066 }
1067#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 if (p < leader + lead_repl_len)
1069 p = leader;
1070 else
1071 p -= lead_repl_len;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001072#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 mch_memmove(p, lead_repl, (size_t)lead_repl_len);
1074 if (p + lead_repl_len > leader + lead_len)
1075 p[lead_repl_len] = NUL;
1076
1077 /* blank-out any other chars from the old leader. */
1078 while (--p >= leader)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001079 {
1080#ifdef FEAT_MBYTE
1081 int l = mb_head_off(leader, p);
1082
1083 if (l > 1)
1084 {
1085 p -= l;
1086 if (ptr2cells(p) > 1)
1087 {
1088 p[1] = ' ';
1089 --l;
1090 }
1091 mch_memmove(p + 1, p + l + 1,
1092 (size_t)((leader + lead_len) - (p + l + 1)));
1093 lead_len -= l;
1094 *p = ' ';
1095 }
1096 else
1097#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 if (!vim_iswhite(*p))
1099 *p = ' ';
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001100 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101 }
1102 else /* left adjusted leader */
1103 {
1104 p = skipwhite(leader);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001105#ifdef FEAT_MBYTE
1106 /* Compute the length of the replaced characters in
1107 * screen characters, not bytes. Move the part that is
1108 * not to be overwritten. */
1109 {
1110 int repl_size = vim_strnsize(lead_repl,
1111 lead_repl_len);
1112 int i;
1113 int l;
1114
1115 for (i = 0; p[i] != NUL && i < lead_len; i += l)
1116 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001117 l = (*mb_ptr2len)(p + i);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001118 if (vim_strnsize(p, i + l) > repl_size)
1119 break;
1120 }
1121 if (i != lead_repl_len)
1122 {
1123 mch_memmove(p + lead_repl_len, p + i,
Bram Moolenaar2d7ff052009-11-17 15:08:26 +00001124 (size_t)(lead_len - i - (p - leader)));
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001125 lead_len += lead_repl_len - i;
1126 }
1127 }
1128#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 mch_memmove(p, lead_repl, (size_t)lead_repl_len);
1130
1131 /* Replace any remaining non-white chars in the old
1132 * leader by spaces. Keep Tabs, the indent must
1133 * remain the same. */
1134 for (p += lead_repl_len; p < leader + lead_len; ++p)
1135 if (!vim_iswhite(*p))
1136 {
1137 /* Don't put a space before a TAB. */
1138 if (p + 1 < leader + lead_len && p[1] == TAB)
1139 {
1140 --lead_len;
1141 mch_memmove(p, p + 1,
1142 (leader + lead_len) - p);
1143 }
1144 else
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001145 {
1146#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001147 int l = (*mb_ptr2len)(p);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001148
1149 if (l > 1)
1150 {
1151 if (ptr2cells(p) > 1)
1152 {
1153 /* Replace a double-wide char with
1154 * two spaces */
1155 --l;
1156 *p++ = ' ';
1157 }
1158 mch_memmove(p + 1, p + l,
1159 (leader + lead_len) - p);
1160 lead_len -= l - 1;
1161 }
1162#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 *p = ' ';
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001164 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 }
1166 *p = NUL;
1167 }
1168
1169 /* Recompute the indent, it may have changed. */
1170 if (curbuf->b_p_ai
1171#ifdef FEAT_SMARTINDENT
1172 || do_si
1173#endif
1174 )
1175 newindent = get_indent_str(leader, (int)curbuf->b_p_ts);
1176
1177 /* Add the indent offset */
1178 if (newindent + off < 0)
1179 {
1180 off = -newindent;
1181 newindent = 0;
1182 }
1183 else
1184 newindent += off;
1185
1186 /* Correct trailing spaces for the shift, so that
1187 * alignment remains equal. */
1188 while (off > 0 && lead_len > 0
1189 && leader[lead_len - 1] == ' ')
1190 {
1191 /* Don't do it when there is a tab before the space */
1192 if (vim_strchr(skipwhite(leader), '\t') != NULL)
1193 break;
1194 --lead_len;
1195 --off;
1196 }
1197
1198 /* If the leader ends in white space, don't add an
1199 * extra space */
1200 if (lead_len > 0 && vim_iswhite(leader[lead_len - 1]))
1201 extra_space = FALSE;
1202 leader[lead_len] = NUL;
1203 }
1204
1205 if (extra_space)
1206 {
1207 leader[lead_len++] = ' ';
1208 leader[lead_len] = NUL;
1209 }
1210
1211 newcol = lead_len;
1212
1213 /*
1214 * if a new indent will be set below, remove the indent that
1215 * is in the comment leader
1216 */
1217 if (newindent
1218#ifdef FEAT_SMARTINDENT
1219 || did_si
1220#endif
1221 )
1222 {
1223 while (lead_len && vim_iswhite(*leader))
1224 {
1225 --lead_len;
1226 --newcol;
1227 ++leader;
1228 }
1229 }
1230
1231 }
1232#ifdef FEAT_SMARTINDENT
1233 did_si = can_si = FALSE;
1234#endif
1235 }
1236 else if (comment_end != NULL)
1237 {
1238 /*
1239 * We have finished a comment, so we don't use the leader.
1240 * If this was a C-comment and 'ai' or 'si' is set do a normal
1241 * indent to align with the line containing the start of the
1242 * comment.
1243 */
1244 if (comment_end[0] == '*' && comment_end[1] == '/' &&
1245 (curbuf->b_p_ai
1246#ifdef FEAT_SMARTINDENT
1247 || do_si
1248#endif
1249 ))
1250 {
1251 old_cursor = curwin->w_cursor;
1252 curwin->w_cursor.col = (colnr_T)(comment_end - saved_line);
1253 if ((pos = findmatch(NULL, NUL)) != NULL)
1254 {
1255 curwin->w_cursor.lnum = pos->lnum;
1256 newindent = get_indent();
1257 }
1258 curwin->w_cursor = old_cursor;
1259 }
1260 }
1261 }
1262#endif
1263
1264 /* (State == INSERT || State == REPLACE), only when dir == FORWARD */
1265 if (p_extra != NULL)
1266 {
1267 *p_extra = saved_char; /* restore char that NUL replaced */
1268
1269 /*
1270 * When 'ai' set or "flags" has OPENLINE_DELSPACES, skip to the first
1271 * non-blank.
1272 *
1273 * When in REPLACE mode, put the deleted blanks on the replace stack,
1274 * preceded by a NUL, so they can be put back when a BS is entered.
1275 */
1276 if (REPLACE_NORMAL(State))
1277 replace_push(NUL); /* end of extra blanks */
1278 if (curbuf->b_p_ai || (flags & OPENLINE_DELSPACES))
1279 {
1280 while ((*p_extra == ' ' || *p_extra == '\t')
1281#ifdef FEAT_MBYTE
1282 && (!enc_utf8
1283 || !utf_iscomposing(utf_ptr2char(p_extra + 1)))
1284#endif
1285 )
1286 {
1287 if (REPLACE_NORMAL(State))
1288 replace_push(*p_extra);
1289 ++p_extra;
1290 ++less_cols_off;
1291 }
1292 }
1293 if (*p_extra != NUL)
1294 did_ai = FALSE; /* append some text, don't truncate now */
1295
1296 /* columns for marks adjusted for removed columns */
1297 less_cols = (int)(p_extra - saved_line);
1298 }
1299
1300 if (p_extra == NULL)
1301 p_extra = (char_u *)""; /* append empty line */
1302
1303#ifdef FEAT_COMMENTS
1304 /* concatenate leader and p_extra, if there is a leader */
1305 if (lead_len)
1306 {
1307 STRCAT(leader, p_extra);
1308 p_extra = leader;
1309 did_ai = TRUE; /* So truncating blanks works with comments */
1310 less_cols -= lead_len;
1311 }
1312 else
1313 end_comment_pending = NUL; /* turns out there was no leader */
1314#endif
1315
1316 old_cursor = curwin->w_cursor;
1317 if (dir == BACKWARD)
1318 --curwin->w_cursor.lnum;
1319#ifdef FEAT_VREPLACE
1320 if (!(State & VREPLACE_FLAG) || old_cursor.lnum >= orig_line_count)
1321#endif
1322 {
1323 if (ml_append(curwin->w_cursor.lnum, p_extra, (colnr_T)0, FALSE)
1324 == FAIL)
1325 goto theend;
1326 /* Postpone calling changed_lines(), because it would mess up folding
1327 * with markers. */
1328 mark_adjust(curwin->w_cursor.lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
1329 did_append = TRUE;
1330 }
1331#ifdef FEAT_VREPLACE
1332 else
1333 {
1334 /*
1335 * In VREPLACE mode we are starting to replace the next line.
1336 */
1337 curwin->w_cursor.lnum++;
1338 if (curwin->w_cursor.lnum >= Insstart.lnum + vr_lines_changed)
1339 {
1340 /* In case we NL to a new line, BS to the previous one, and NL
1341 * again, we don't want to save the new line for undo twice.
1342 */
1343 (void)u_save_cursor(); /* errors are ignored! */
1344 vr_lines_changed++;
1345 }
1346 ml_replace(curwin->w_cursor.lnum, p_extra, TRUE);
1347 changed_bytes(curwin->w_cursor.lnum, 0);
1348 curwin->w_cursor.lnum--;
1349 did_append = FALSE;
1350 }
1351#endif
1352
1353 if (newindent
1354#ifdef FEAT_SMARTINDENT
1355 || did_si
1356#endif
1357 )
1358 {
1359 ++curwin->w_cursor.lnum;
1360#ifdef FEAT_SMARTINDENT
1361 if (did_si)
1362 {
1363 if (p_sr)
1364 newindent -= newindent % (int)curbuf->b_p_sw;
1365 newindent += (int)curbuf->b_p_sw;
1366 }
1367#endif
Bram Moolenaar5002c292007-07-24 13:26:15 +00001368 /* Copy the indent */
1369 if (curbuf->b_p_ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 {
1371 (void)copy_indent(newindent, saved_line);
1372
1373 /*
1374 * Set the 'preserveindent' option so that any further screwing
1375 * with the line doesn't entirely destroy our efforts to preserve
1376 * it. It gets restored at the function end.
1377 */
1378 curbuf->b_p_pi = TRUE;
1379 }
1380 else
1381 (void)set_indent(newindent, SIN_INSERT);
1382 less_cols -= curwin->w_cursor.col;
1383
1384 ai_col = curwin->w_cursor.col;
1385
1386 /*
1387 * In REPLACE mode, for each character in the new indent, there must
1388 * be a NUL on the replace stack, for when it is deleted with BS
1389 */
1390 if (REPLACE_NORMAL(State))
1391 for (n = 0; n < (int)curwin->w_cursor.col; ++n)
1392 replace_push(NUL);
1393 newcol += curwin->w_cursor.col;
1394#ifdef FEAT_SMARTINDENT
1395 if (no_si)
1396 did_si = FALSE;
1397#endif
1398 }
1399
1400#ifdef FEAT_COMMENTS
1401 /*
1402 * In REPLACE mode, for each character in the extra leader, there must be
1403 * a NUL on the replace stack, for when it is deleted with BS.
1404 */
1405 if (REPLACE_NORMAL(State))
1406 while (lead_len-- > 0)
1407 replace_push(NUL);
1408#endif
1409
1410 curwin->w_cursor = old_cursor;
1411
1412 if (dir == FORWARD)
1413 {
1414 if (trunc_line || (State & INSERT))
1415 {
1416 /* truncate current line at cursor */
1417 saved_line[curwin->w_cursor.col] = NUL;
1418 /* Remove trailing white space, unless OPENLINE_KEEPTRAIL used. */
1419 if (trunc_line && !(flags & OPENLINE_KEEPTRAIL))
1420 truncate_spaces(saved_line);
1421 ml_replace(curwin->w_cursor.lnum, saved_line, FALSE);
1422 saved_line = NULL;
1423 if (did_append)
1424 {
1425 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1426 curwin->w_cursor.lnum + 1, 1L);
1427 did_append = FALSE;
1428
1429 /* Move marks after the line break to the new line. */
1430 if (flags & OPENLINE_MARKFIX)
1431 mark_col_adjust(curwin->w_cursor.lnum,
1432 curwin->w_cursor.col + less_cols_off,
1433 1L, (long)-less_cols);
1434 }
1435 else
1436 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
1437 }
1438
1439 /*
1440 * Put the cursor on the new line. Careful: the scrollup() above may
1441 * have moved w_cursor, we must use old_cursor.
1442 */
1443 curwin->w_cursor.lnum = old_cursor.lnum + 1;
1444 }
1445 if (did_append)
1446 changed_lines(curwin->w_cursor.lnum, 0, curwin->w_cursor.lnum, 1L);
1447
1448 curwin->w_cursor.col = newcol;
1449#ifdef FEAT_VIRTUALEDIT
1450 curwin->w_cursor.coladd = 0;
1451#endif
1452
1453#if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
1454 /*
1455 * In VREPLACE mode, we are handling the replace stack ourselves, so stop
1456 * fixthisline() from doing it (via change_indent()) by telling it we're in
1457 * normal INSERT mode.
1458 */
1459 if (State & VREPLACE_FLAG)
1460 {
1461 vreplace_mode = State; /* So we know to put things right later */
1462 State = INSERT;
1463 }
1464 else
1465 vreplace_mode = 0;
1466#endif
1467#ifdef FEAT_LISP
1468 /*
1469 * May do lisp indenting.
1470 */
1471 if (!p_paste
1472# ifdef FEAT_COMMENTS
1473 && leader == NULL
1474# endif
1475 && curbuf->b_p_lisp
1476 && curbuf->b_p_ai)
1477 {
1478 fixthisline(get_lisp_indent);
1479 p = ml_get_curline();
1480 ai_col = (colnr_T)(skipwhite(p) - p);
1481 }
1482#endif
1483#ifdef FEAT_CINDENT
1484 /*
1485 * May do indenting after opening a new line.
1486 */
1487 if (!p_paste
1488 && (curbuf->b_p_cin
1489# ifdef FEAT_EVAL
1490 || *curbuf->b_p_inde != NUL
1491# endif
1492 )
1493 && in_cinkeys(dir == FORWARD
1494 ? KEY_OPEN_FORW
1495 : KEY_OPEN_BACK, ' ', linewhite(curwin->w_cursor.lnum)))
1496 {
1497 do_c_expr_indent();
1498 p = ml_get_curline();
1499 ai_col = (colnr_T)(skipwhite(p) - p);
1500 }
1501#endif
1502#if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
1503 if (vreplace_mode != 0)
1504 State = vreplace_mode;
1505#endif
1506
1507#ifdef FEAT_VREPLACE
1508 /*
1509 * Finally, VREPLACE gets the stuff on the new line, then puts back the
1510 * original line, and inserts the new stuff char by char, pushing old stuff
1511 * onto the replace stack (via ins_char()).
1512 */
1513 if (State & VREPLACE_FLAG)
1514 {
1515 /* Put new line in p_extra */
1516 p_extra = vim_strsave(ml_get_curline());
1517 if (p_extra == NULL)
1518 goto theend;
1519
1520 /* Put back original line */
1521 ml_replace(curwin->w_cursor.lnum, next_line, FALSE);
1522
1523 /* Insert new stuff into line again */
1524 curwin->w_cursor.col = 0;
1525#ifdef FEAT_VIRTUALEDIT
1526 curwin->w_cursor.coladd = 0;
1527#endif
1528 ins_bytes(p_extra); /* will call changed_bytes() */
1529 vim_free(p_extra);
1530 next_line = NULL;
1531 }
1532#endif
1533
1534 retval = TRUE; /* success! */
1535theend:
1536 curbuf->b_p_pi = saved_pi;
1537 vim_free(saved_line);
1538 vim_free(next_line);
1539 vim_free(allocated);
1540 return retval;
1541}
1542
1543#if defined(FEAT_COMMENTS) || defined(PROTO)
1544/*
1545 * get_leader_len() returns the length of the prefix of the given string
1546 * which introduces a comment. If this string is not a comment then 0 is
1547 * returned.
1548 * When "flags" is not NULL, it is set to point to the flags of the recognized
1549 * comment leader.
1550 * "backward" must be true for the "O" command.
1551 */
1552 int
1553get_leader_len(line, flags, backward)
1554 char_u *line;
1555 char_u **flags;
1556 int backward;
1557{
1558 int i, j;
1559 int got_com = FALSE;
1560 int found_one;
1561 char_u part_buf[COM_MAX_LEN]; /* buffer for one option part */
1562 char_u *string; /* pointer to comment string */
1563 char_u *list;
Bram Moolenaara4271d52011-05-10 13:38:27 +02001564 int middle_match_len = 0;
1565 char_u *prev_list;
Bram Moolenaar05da4282011-05-10 14:44:11 +02001566 char_u *saved_flags = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567
1568 i = 0;
1569 while (vim_iswhite(line[i])) /* leading white space is ignored */
1570 ++i;
1571
1572 /*
1573 * Repeat to match several nested comment strings.
1574 */
Bram Moolenaara4271d52011-05-10 13:38:27 +02001575 while (line[i] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 {
1577 /*
1578 * scan through the 'comments' option for a match
1579 */
1580 found_one = FALSE;
1581 for (list = curbuf->b_p_com; *list; )
1582 {
Bram Moolenaara4271d52011-05-10 13:38:27 +02001583 /* Get one option part into part_buf[]. Advance "list" to next
1584 * one. Put "string" at start of string. */
1585 if (!got_com && flags != NULL)
1586 *flags = list; /* remember where flags started */
1587 prev_list = list;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 (void)copy_option_part(&list, part_buf, COM_MAX_LEN, ",");
1589 string = vim_strchr(part_buf, ':');
1590 if (string == NULL) /* missing ':', ignore this part */
1591 continue;
1592 *string++ = NUL; /* isolate flags from string */
1593
Bram Moolenaara4271d52011-05-10 13:38:27 +02001594 /* If we found a middle match previously, use that match when this
1595 * is not a middle or end. */
1596 if (middle_match_len != 0
1597 && vim_strchr(part_buf, COM_MIDDLE) == NULL
1598 && vim_strchr(part_buf, COM_END) == NULL)
1599 break;
1600
1601 /* When we already found a nested comment, only accept further
1602 * nested comments. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 if (got_com && vim_strchr(part_buf, COM_NEST) == NULL)
1604 continue;
1605
Bram Moolenaara4271d52011-05-10 13:38:27 +02001606 /* When 'O' flag present and using "O" command skip this one. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607 if (backward && vim_strchr(part_buf, COM_NOBACK) != NULL)
1608 continue;
1609
Bram Moolenaara4271d52011-05-10 13:38:27 +02001610 /* Line contents and string must match.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 * When string starts with white space, must have some white space
1612 * (but the amount does not need to match, there might be a mix of
Bram Moolenaara4271d52011-05-10 13:38:27 +02001613 * TABs and spaces). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614 if (vim_iswhite(string[0]))
1615 {
1616 if (i == 0 || !vim_iswhite(line[i - 1]))
Bram Moolenaara4271d52011-05-10 13:38:27 +02001617 continue; /* missing shite space */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 while (vim_iswhite(string[0]))
1619 ++string;
1620 }
1621 for (j = 0; string[j] != NUL && string[j] == line[i + j]; ++j)
1622 ;
1623 if (string[j] != NUL)
Bram Moolenaara4271d52011-05-10 13:38:27 +02001624 continue; /* string doesn't match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625
Bram Moolenaara4271d52011-05-10 13:38:27 +02001626 /* When 'b' flag used, there must be white space or an
1627 * end-of-line after the string in the line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 if (vim_strchr(part_buf, COM_BLANK) != NULL
1629 && !vim_iswhite(line[i + j]) && line[i + j] != NUL)
1630 continue;
1631
Bram Moolenaara4271d52011-05-10 13:38:27 +02001632 /* We have found a match, stop searching unless this is a middle
1633 * comment. The middle comment can be a substring of the end
1634 * comment in which case it's better to return the length of the
1635 * end comment and its flags. Thus we keep searching with middle
1636 * and end matches and use an end match if it matches better. */
1637 if (vim_strchr(part_buf, COM_MIDDLE) != NULL)
1638 {
1639 if (middle_match_len == 0)
1640 {
1641 middle_match_len = j;
1642 saved_flags = prev_list;
1643 }
1644 continue;
1645 }
1646 if (middle_match_len != 0 && j > middle_match_len)
1647 /* Use this match instead of the middle match, since it's a
1648 * longer thus better match. */
1649 middle_match_len = 0;
1650
1651 if (middle_match_len == 0)
1652 i += j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 found_one = TRUE;
1654 break;
1655 }
1656
Bram Moolenaara4271d52011-05-10 13:38:27 +02001657 if (middle_match_len != 0)
1658 {
1659 /* Use the previously found middle match after failing to find a
1660 * match with an end. */
1661 if (!got_com && flags != NULL)
1662 *flags = saved_flags;
1663 i += middle_match_len;
1664 found_one = TRUE;
1665 }
1666
1667 /* No match found, stop scanning. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 if (!found_one)
1669 break;
1670
Bram Moolenaara4271d52011-05-10 13:38:27 +02001671 /* Include any trailing white space. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672 while (vim_iswhite(line[i]))
1673 ++i;
1674
Bram Moolenaara4271d52011-05-10 13:38:27 +02001675 /* If this comment doesn't nest, stop here. */
1676 got_com = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 if (vim_strchr(part_buf, COM_NEST) == NULL)
1678 break;
1679 }
Bram Moolenaara4271d52011-05-10 13:38:27 +02001680
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 return (got_com ? i : 0);
1682}
1683#endif
1684
1685/*
1686 * Return the number of window lines occupied by buffer line "lnum".
1687 */
1688 int
1689plines(lnum)
1690 linenr_T lnum;
1691{
1692 return plines_win(curwin, lnum, TRUE);
1693}
1694
1695 int
1696plines_win(wp, lnum, winheight)
1697 win_T *wp;
1698 linenr_T lnum;
1699 int winheight; /* when TRUE limit to window height */
1700{
1701#if defined(FEAT_DIFF) || defined(PROTO)
1702 /* Check for filler lines above this buffer line. When folded the result
1703 * is one line anyway. */
1704 return plines_win_nofill(wp, lnum, winheight) + diff_check_fill(wp, lnum);
1705}
1706
1707 int
1708plines_nofill(lnum)
1709 linenr_T lnum;
1710{
1711 return plines_win_nofill(curwin, lnum, TRUE);
1712}
1713
1714 int
1715plines_win_nofill(wp, lnum, winheight)
1716 win_T *wp;
1717 linenr_T lnum;
1718 int winheight; /* when TRUE limit to window height */
1719{
1720#endif
1721 int lines;
1722
1723 if (!wp->w_p_wrap)
1724 return 1;
1725
1726#ifdef FEAT_VERTSPLIT
1727 if (wp->w_width == 0)
1728 return 1;
1729#endif
1730
1731#ifdef FEAT_FOLDING
1732 /* A folded lines is handled just like an empty line. */
1733 /* NOTE: Caller must handle lines that are MAYBE folded. */
1734 if (lineFolded(wp, lnum) == TRUE)
1735 return 1;
1736#endif
1737
1738 lines = plines_win_nofold(wp, lnum);
1739 if (winheight > 0 && lines > wp->w_height)
1740 return (int)wp->w_height;
1741 return lines;
1742}
1743
1744/*
1745 * Return number of window lines physical line "lnum" will occupy in window
1746 * "wp". Does not care about folding, 'wrap' or 'diff'.
1747 */
1748 int
1749plines_win_nofold(wp, lnum)
1750 win_T *wp;
1751 linenr_T lnum;
1752{
1753 char_u *s;
1754 long col;
1755 int width;
1756
1757 s = ml_get_buf(wp->w_buffer, lnum, FALSE);
1758 if (*s == NUL) /* empty line */
1759 return 1;
1760 col = win_linetabsize(wp, s, (colnr_T)MAXCOL);
1761
1762 /*
1763 * If list mode is on, then the '$' at the end of the line may take up one
1764 * extra column.
1765 */
1766 if (wp->w_p_list && lcs_eol != NUL)
1767 col += 1;
1768
1769 /*
Bram Moolenaar64486672010-05-16 15:46:46 +02001770 * Add column offset for 'number', 'relativenumber' and 'foldcolumn'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771 */
1772 width = W_WIDTH(wp) - win_col_off(wp);
1773 if (width <= 0)
1774 return 32000;
1775 if (col <= width)
1776 return 1;
1777 col -= width;
1778 width += win_col_off2(wp);
1779 return (col + (width - 1)) / width + 1;
1780}
1781
1782/*
1783 * Like plines_win(), but only reports the number of physical screen lines
1784 * used from the start of the line to the given column number.
1785 */
1786 int
1787plines_win_col(wp, lnum, column)
1788 win_T *wp;
1789 linenr_T lnum;
1790 long column;
1791{
1792 long col;
1793 char_u *s;
1794 int lines = 0;
1795 int width;
1796
1797#ifdef FEAT_DIFF
1798 /* Check for filler lines above this buffer line. When folded the result
1799 * is one line anyway. */
1800 lines = diff_check_fill(wp, lnum);
1801#endif
1802
1803 if (!wp->w_p_wrap)
1804 return lines + 1;
1805
1806#ifdef FEAT_VERTSPLIT
1807 if (wp->w_width == 0)
1808 return lines + 1;
1809#endif
1810
1811 s = ml_get_buf(wp->w_buffer, lnum, FALSE);
1812
1813 col = 0;
1814 while (*s != NUL && --column >= 0)
1815 {
1816 col += win_lbr_chartabsize(wp, s, (colnr_T)col, NULL);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001817 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 }
1819
1820 /*
1821 * If *s is a TAB, and the TAB is not displayed as ^I, and we're not in
1822 * INSERT mode, then col must be adjusted so that it represents the last
1823 * screen position of the TAB. This only fixes an error when the TAB wraps
1824 * from one screen line to the next (when 'columns' is not a multiple of
1825 * 'ts') -- webb.
1826 */
1827 if (*s == TAB && (State & NORMAL) && (!wp->w_p_list || lcs_tab1))
1828 col += win_lbr_chartabsize(wp, s, (colnr_T)col, NULL) - 1;
1829
1830 /*
Bram Moolenaar64486672010-05-16 15:46:46 +02001831 * Add column offset for 'number', 'relativenumber', 'foldcolumn', etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832 */
1833 width = W_WIDTH(wp) - win_col_off(wp);
Bram Moolenaar26470632006-10-24 19:12:40 +00001834 if (width <= 0)
1835 return 9999;
1836
1837 lines += 1;
1838 if (col > width)
1839 lines += (col - width) / (width + win_col_off2(wp)) + 1;
1840 return lines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841}
1842
1843 int
1844plines_m_win(wp, first, last)
1845 win_T *wp;
1846 linenr_T first, last;
1847{
1848 int count = 0;
1849
1850 while (first <= last)
1851 {
1852#ifdef FEAT_FOLDING
1853 int x;
1854
1855 /* Check if there are any really folded lines, but also included lines
1856 * that are maybe folded. */
1857 x = foldedCount(wp, first, NULL);
1858 if (x > 0)
1859 {
1860 ++count; /* count 1 for "+-- folded" line */
1861 first += x;
1862 }
1863 else
1864#endif
1865 {
1866#ifdef FEAT_DIFF
1867 if (first == wp->w_topline)
1868 count += plines_win_nofill(wp, first, TRUE) + wp->w_topfill;
1869 else
1870#endif
1871 count += plines_win(wp, first, TRUE);
1872 ++first;
1873 }
1874 }
1875 return (count);
1876}
1877
1878#if defined(FEAT_VREPLACE) || defined(FEAT_INS_EXPAND) || defined(PROTO)
1879/*
1880 * Insert string "p" at the cursor position. Stops at a NUL byte.
1881 * Handles Replace mode and multi-byte characters.
1882 */
1883 void
1884ins_bytes(p)
1885 char_u *p;
1886{
1887 ins_bytes_len(p, (int)STRLEN(p));
1888}
1889#endif
1890
1891#if defined(FEAT_VREPLACE) || defined(FEAT_INS_EXPAND) \
1892 || defined(FEAT_COMMENTS) || defined(FEAT_MBYTE) || defined(PROTO)
1893/*
1894 * Insert string "p" with length "len" at the cursor position.
1895 * Handles Replace mode and multi-byte characters.
1896 */
1897 void
1898ins_bytes_len(p, len)
1899 char_u *p;
1900 int len;
1901{
1902 int i;
1903# ifdef FEAT_MBYTE
1904 int n;
1905
Bram Moolenaar176dd1e2008-06-21 14:30:28 +00001906 if (has_mbyte)
1907 for (i = 0; i < len; i += n)
1908 {
1909 if (enc_utf8)
1910 /* avoid reading past p[len] */
1911 n = utfc_ptr2len_len(p + i, len - i);
1912 else
1913 n = (*mb_ptr2len)(p + i);
1914 ins_char_bytes(p + i, n);
1915 }
1916 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917# endif
Bram Moolenaar176dd1e2008-06-21 14:30:28 +00001918 for (i = 0; i < len; ++i)
1919 ins_char(p[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920}
1921#endif
1922
1923/*
1924 * Insert or replace a single character at the cursor position.
1925 * When in REPLACE or VREPLACE mode, replace any existing character.
1926 * Caller must have prepared for undo.
1927 * For multi-byte characters we get the whole character, the caller must
1928 * convert bytes to a character.
1929 */
1930 void
1931ins_char(c)
1932 int c;
1933{
1934#if defined(FEAT_MBYTE) || defined(PROTO)
1935 char_u buf[MB_MAXBYTES];
1936 int n;
1937
1938 n = (*mb_char2bytes)(c, buf);
1939
1940 /* When "c" is 0x100, 0x200, etc. we don't want to insert a NUL byte.
1941 * Happens for CTRL-Vu9900. */
1942 if (buf[0] == 0)
1943 buf[0] = '\n';
1944
1945 ins_char_bytes(buf, n);
1946}
1947
1948 void
1949ins_char_bytes(buf, charlen)
1950 char_u *buf;
1951 int charlen;
1952{
1953 int c = buf[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954#endif
1955 int newlen; /* nr of bytes inserted */
1956 int oldlen; /* nr of bytes deleted (0 when not replacing) */
1957 char_u *p;
1958 char_u *newp;
1959 char_u *oldp;
1960 int linelen; /* length of old line including NUL */
1961 colnr_T col;
1962 linenr_T lnum = curwin->w_cursor.lnum;
1963 int i;
1964
1965#ifdef FEAT_VIRTUALEDIT
1966 /* Break tabs if needed. */
1967 if (virtual_active() && curwin->w_cursor.coladd > 0)
1968 coladvance_force(getviscol());
1969#endif
1970
1971 col = curwin->w_cursor.col;
1972 oldp = ml_get(lnum);
1973 linelen = (int)STRLEN(oldp) + 1;
1974
1975 /* The lengths default to the values for when not replacing. */
1976 oldlen = 0;
1977#ifdef FEAT_MBYTE
1978 newlen = charlen;
1979#else
1980 newlen = 1;
1981#endif
1982
1983 if (State & REPLACE_FLAG)
1984 {
1985#ifdef FEAT_VREPLACE
1986 if (State & VREPLACE_FLAG)
1987 {
1988 colnr_T new_vcol = 0; /* init for GCC */
1989 colnr_T vcol;
1990 int old_list;
1991#ifndef FEAT_MBYTE
1992 char_u buf[2];
1993#endif
1994
1995 /*
1996 * Disable 'list' temporarily, unless 'cpo' contains the 'L' flag.
1997 * Returns the old value of list, so when finished,
1998 * curwin->w_p_list should be set back to this.
1999 */
2000 old_list = curwin->w_p_list;
2001 if (old_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
2002 curwin->w_p_list = FALSE;
2003
2004 /*
2005 * In virtual replace mode each character may replace one or more
2006 * characters (zero if it's a TAB). Count the number of bytes to
2007 * be deleted to make room for the new character, counting screen
2008 * cells. May result in adding spaces to fill a gap.
2009 */
2010 getvcol(curwin, &curwin->w_cursor, NULL, &vcol, NULL);
2011#ifndef FEAT_MBYTE
2012 buf[0] = c;
2013 buf[1] = NUL;
2014#endif
2015 new_vcol = vcol + chartabsize(buf, vcol);
2016 while (oldp[col + oldlen] != NUL && vcol < new_vcol)
2017 {
2018 vcol += chartabsize(oldp + col + oldlen, vcol);
2019 /* Don't need to remove a TAB that takes us to the right
2020 * position. */
2021 if (vcol > new_vcol && oldp[col + oldlen] == TAB)
2022 break;
2023#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002024 oldlen += (*mb_ptr2len)(oldp + col + oldlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025#else
2026 ++oldlen;
2027#endif
2028 /* Deleted a bit too much, insert spaces. */
2029 if (vcol > new_vcol)
2030 newlen += vcol - new_vcol;
2031 }
2032 curwin->w_p_list = old_list;
2033 }
2034 else
2035#endif
2036 if (oldp[col] != NUL)
2037 {
2038 /* normal replace */
2039#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002040 oldlen = (*mb_ptr2len)(oldp + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041#else
2042 oldlen = 1;
2043#endif
2044 }
2045
2046
2047 /* Push the replaced bytes onto the replace stack, so that they can be
2048 * put back when BS is used. The bytes of a multi-byte character are
2049 * done the other way around, so that the first byte is popped off
2050 * first (it tells the byte length of the character). */
2051 replace_push(NUL);
2052 for (i = 0; i < oldlen; ++i)
2053 {
2054#ifdef FEAT_MBYTE
Bram Moolenaar2c994e82008-01-02 16:49:36 +00002055 if (has_mbyte)
2056 i += replace_push_mb(oldp + col + i) - 1;
2057 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058#endif
Bram Moolenaar2c994e82008-01-02 16:49:36 +00002059 replace_push(oldp[col + i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 }
2061 }
2062
2063 newp = alloc_check((unsigned)(linelen + newlen - oldlen));
2064 if (newp == NULL)
2065 return;
2066
2067 /* Copy bytes before the cursor. */
2068 if (col > 0)
2069 mch_memmove(newp, oldp, (size_t)col);
2070
2071 /* Copy bytes after the changed character(s). */
2072 p = newp + col;
2073 mch_memmove(p + newlen, oldp + col + oldlen,
2074 (size_t)(linelen - col - oldlen));
2075
2076 /* Insert or overwrite the new character. */
2077#ifdef FEAT_MBYTE
2078 mch_memmove(p, buf, charlen);
2079 i = charlen;
2080#else
2081 *p = c;
2082 i = 1;
2083#endif
2084
2085 /* Fill with spaces when necessary. */
2086 while (i < newlen)
2087 p[i++] = ' ';
2088
2089 /* Replace the line in the buffer. */
2090 ml_replace(lnum, newp, FALSE);
2091
2092 /* mark the buffer as changed and prepare for displaying */
2093 changed_bytes(lnum, col);
2094
2095 /*
2096 * If we're in Insert or Replace mode and 'showmatch' is set, then briefly
2097 * show the match for right parens and braces.
2098 */
2099 if (p_sm && (State & INSERT)
2100 && msg_silent == 0
2101#ifdef FEAT_MBYTE
2102 && charlen == 1
2103#endif
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002104#ifdef FEAT_INS_EXPAND
2105 && !ins_compl_active()
2106#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107 )
2108 showmatch(c);
2109
2110#ifdef FEAT_RIGHTLEFT
2111 if (!p_ri || (State & REPLACE_FLAG))
2112#endif
2113 {
2114 /* Normal insert: move cursor right */
2115#ifdef FEAT_MBYTE
2116 curwin->w_cursor.col += charlen;
2117#else
2118 ++curwin->w_cursor.col;
2119#endif
2120 }
2121 /*
2122 * TODO: should try to update w_row here, to avoid recomputing it later.
2123 */
2124}
2125
2126/*
2127 * Insert a string at the cursor position.
2128 * Note: Does NOT handle Replace mode.
2129 * Caller must have prepared for undo.
2130 */
2131 void
2132ins_str(s)
2133 char_u *s;
2134{
2135 char_u *oldp, *newp;
2136 int newlen = (int)STRLEN(s);
2137 int oldlen;
2138 colnr_T col;
2139 linenr_T lnum = curwin->w_cursor.lnum;
2140
2141#ifdef FEAT_VIRTUALEDIT
2142 if (virtual_active() && curwin->w_cursor.coladd > 0)
2143 coladvance_force(getviscol());
2144#endif
2145
2146 col = curwin->w_cursor.col;
2147 oldp = ml_get(lnum);
2148 oldlen = (int)STRLEN(oldp);
2149
2150 newp = alloc_check((unsigned)(oldlen + newlen + 1));
2151 if (newp == NULL)
2152 return;
2153 if (col > 0)
2154 mch_memmove(newp, oldp, (size_t)col);
2155 mch_memmove(newp + col, s, (size_t)newlen);
2156 mch_memmove(newp + col + newlen, oldp + col, (size_t)(oldlen - col + 1));
2157 ml_replace(lnum, newp, FALSE);
2158 changed_bytes(lnum, col);
2159 curwin->w_cursor.col += newlen;
2160}
2161
2162/*
2163 * Delete one character under the cursor.
2164 * If "fixpos" is TRUE, don't leave the cursor on the NUL after the line.
2165 * Caller must have prepared for undo.
2166 *
2167 * return FAIL for failure, OK otherwise
2168 */
2169 int
2170del_char(fixpos)
2171 int fixpos;
2172{
2173#ifdef FEAT_MBYTE
2174 if (has_mbyte)
2175 {
2176 /* Make sure the cursor is at the start of a character. */
2177 mb_adjust_cursor();
2178 if (*ml_get_cursor() == NUL)
2179 return FAIL;
2180 return del_chars(1L, fixpos);
2181 }
2182#endif
Bram Moolenaare3226be2005-12-18 22:10:00 +00002183 return del_bytes(1L, fixpos, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184}
2185
2186#if defined(FEAT_MBYTE) || defined(PROTO)
2187/*
2188 * Like del_bytes(), but delete characters instead of bytes.
2189 */
2190 int
2191del_chars(count, fixpos)
2192 long count;
2193 int fixpos;
2194{
2195 long bytes = 0;
2196 long i;
2197 char_u *p;
2198 int l;
2199
2200 p = ml_get_cursor();
2201 for (i = 0; i < count && *p != NUL; ++i)
2202 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002203 l = (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204 bytes += l;
2205 p += l;
2206 }
Bram Moolenaare3226be2005-12-18 22:10:00 +00002207 return del_bytes(bytes, fixpos, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208}
2209#endif
2210
2211/*
2212 * Delete "count" bytes under the cursor.
2213 * If "fixpos" is TRUE, don't leave the cursor on the NUL after the line.
2214 * Caller must have prepared for undo.
2215 *
2216 * return FAIL for failure, OK otherwise
2217 */
2218 int
Bram Moolenaarca003e12006-03-17 23:19:38 +00002219del_bytes(count, fixpos_arg, use_delcombine)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 long count;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002221 int fixpos_arg;
Bram Moolenaar78a15312009-05-15 19:33:18 +00002222 int use_delcombine UNUSED; /* 'delcombine' option applies */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223{
2224 char_u *oldp, *newp;
2225 colnr_T oldlen;
2226 linenr_T lnum = curwin->w_cursor.lnum;
2227 colnr_T col = curwin->w_cursor.col;
2228 int was_alloced;
2229 long movelen;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002230 int fixpos = fixpos_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231
2232 oldp = ml_get(lnum);
2233 oldlen = (int)STRLEN(oldp);
2234
2235 /*
2236 * Can't do anything when the cursor is on the NUL after the line.
2237 */
2238 if (col >= oldlen)
2239 return FAIL;
2240
2241#ifdef FEAT_MBYTE
2242 /* If 'delcombine' is set and deleting (less than) one character, only
2243 * delete the last combining character. */
Bram Moolenaare3226be2005-12-18 22:10:00 +00002244 if (p_deco && use_delcombine && enc_utf8
2245 && utfc_ptr2len(oldp + col) >= count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002247 int cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248 int n;
2249
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002250 (void)utfc_ptr2char(oldp + col, cc);
2251 if (cc[0] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 {
2253 /* Find the last composing char, there can be several. */
2254 n = col;
2255 do
2256 {
2257 col = n;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002258 count = utf_ptr2len(oldp + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259 n += count;
2260 } while (UTF_COMPOSINGLIKE(oldp + col, oldp + n));
2261 fixpos = 0;
2262 }
2263 }
2264#endif
2265
2266 /*
2267 * When count is too big, reduce it.
2268 */
2269 movelen = (long)oldlen - (long)col - count + 1; /* includes trailing NUL */
2270 if (movelen <= 1)
2271 {
2272 /*
2273 * If we just took off the last character of a non-blank line, and
Bram Moolenaarca003e12006-03-17 23:19:38 +00002274 * fixpos is TRUE, we don't want to end up positioned at the NUL,
2275 * unless "restart_edit" is set or 'virtualedit' contains "onemore".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 */
Bram Moolenaarca003e12006-03-17 23:19:38 +00002277 if (col > 0 && fixpos && restart_edit == 0
2278#ifdef FEAT_VIRTUALEDIT
2279 && (ve_flags & VE_ONEMORE) == 0
2280#endif
2281 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 {
2283 --curwin->w_cursor.col;
2284#ifdef FEAT_VIRTUALEDIT
2285 curwin->w_cursor.coladd = 0;
2286#endif
2287#ifdef FEAT_MBYTE
2288 if (has_mbyte)
2289 curwin->w_cursor.col -=
2290 (*mb_head_off)(oldp, oldp + curwin->w_cursor.col);
2291#endif
2292 }
2293 count = oldlen - col;
2294 movelen = 1;
2295 }
2296
2297 /*
2298 * If the old line has been allocated the deletion can be done in the
2299 * existing line. Otherwise a new line has to be allocated
Bram Moolenaare21877a2008-02-13 09:58:14 +00002300 * Can't do this when using Netbeans, because we would need to invoke
2301 * netbeans_removed(), which deallocates the line. Let ml_replace() take
Bram Moolenaar1a509df2010-08-01 17:59:57 +02002302 * care of notifying Netbeans.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002305 if (netbeans_active())
Bram Moolenaare21877a2008-02-13 09:58:14 +00002306 was_alloced = FALSE;
2307 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308#endif
Bram Moolenaare21877a2008-02-13 09:58:14 +00002309 was_alloced = ml_line_alloced(); /* check if oldp was allocated */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310 if (was_alloced)
2311 newp = oldp; /* use same allocated memory */
2312 else
2313 { /* need to allocate a new line */
2314 newp = alloc((unsigned)(oldlen + 1 - count));
2315 if (newp == NULL)
2316 return FAIL;
2317 mch_memmove(newp, oldp, (size_t)col);
2318 }
2319 mch_memmove(newp + col, oldp + col + count, (size_t)movelen);
2320 if (!was_alloced)
2321 ml_replace(lnum, newp, FALSE);
2322
2323 /* mark the buffer as changed and prepare for displaying */
2324 changed_bytes(lnum, curwin->w_cursor.col);
2325
2326 return OK;
2327}
2328
2329/*
2330 * Delete from cursor to end of line.
2331 * Caller must have prepared for undo.
2332 *
2333 * return FAIL for failure, OK otherwise
2334 */
2335 int
2336truncate_line(fixpos)
2337 int fixpos; /* if TRUE fix the cursor position when done */
2338{
2339 char_u *newp;
2340 linenr_T lnum = curwin->w_cursor.lnum;
2341 colnr_T col = curwin->w_cursor.col;
2342
2343 if (col == 0)
2344 newp = vim_strsave((char_u *)"");
2345 else
2346 newp = vim_strnsave(ml_get(lnum), col);
2347
2348 if (newp == NULL)
2349 return FAIL;
2350
2351 ml_replace(lnum, newp, FALSE);
2352
2353 /* mark the buffer as changed and prepare for displaying */
2354 changed_bytes(lnum, curwin->w_cursor.col);
2355
2356 /*
2357 * If "fixpos" is TRUE we don't want to end up positioned at the NUL.
2358 */
2359 if (fixpos && curwin->w_cursor.col > 0)
2360 --curwin->w_cursor.col;
2361
2362 return OK;
2363}
2364
2365/*
2366 * Delete "nlines" lines at the cursor.
2367 * Saves the lines for undo first if "undo" is TRUE.
2368 */
2369 void
2370del_lines(nlines, undo)
2371 long nlines; /* number of lines to delete */
2372 int undo; /* if TRUE, prepare for undo */
2373{
2374 long n;
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002375 linenr_T first = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376
2377 if (nlines <= 0)
2378 return;
2379
2380 /* save the deleted lines for undo */
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002381 if (undo && u_savedel(first, nlines) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382 return;
2383
2384 for (n = 0; n < nlines; )
2385 {
2386 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
2387 break;
2388
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002389 ml_delete(first, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390 ++n;
2391
2392 /* If we delete the last line in the file, stop */
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002393 if (first > curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 break;
2395 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002397 /* Correct the cursor position before calling deleted_lines_mark(), it may
2398 * trigger a callback to display the cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399 curwin->w_cursor.col = 0;
2400 check_cursor_lnum();
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002401
2402 /* adjust marks, mark the buffer as changed and prepare for displaying */
2403 deleted_lines_mark(first, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404}
2405
2406 int
2407gchar_pos(pos)
2408 pos_T *pos;
2409{
2410 char_u *ptr = ml_get_pos(pos);
2411
2412#ifdef FEAT_MBYTE
2413 if (has_mbyte)
2414 return (*mb_ptr2char)(ptr);
2415#endif
2416 return (int)*ptr;
2417}
2418
2419 int
2420gchar_cursor()
2421{
2422#ifdef FEAT_MBYTE
2423 if (has_mbyte)
2424 return (*mb_ptr2char)(ml_get_cursor());
2425#endif
2426 return (int)*ml_get_cursor();
2427}
2428
2429/*
2430 * Write a character at the current cursor position.
2431 * It is directly written into the block.
2432 */
2433 void
2434pchar_cursor(c)
2435 int c;
2436{
2437 *(ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE)
2438 + curwin->w_cursor.col) = c;
2439}
2440
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441/*
2442 * When extra == 0: Return TRUE if the cursor is before or on the first
2443 * non-blank in the line.
2444 * When extra == 1: Return TRUE if the cursor is before the first non-blank in
2445 * the line.
2446 */
2447 int
2448inindent(extra)
2449 int extra;
2450{
2451 char_u *ptr;
2452 colnr_T col;
2453
2454 for (col = 0, ptr = ml_get_curline(); vim_iswhite(*ptr); ++col)
2455 ++ptr;
2456 if (col >= curwin->w_cursor.col + extra)
2457 return TRUE;
2458 else
2459 return FALSE;
2460}
2461
2462/*
2463 * Skip to next part of an option argument: Skip space and comma.
2464 */
2465 char_u *
2466skip_to_option_part(p)
2467 char_u *p;
2468{
2469 if (*p == ',')
2470 ++p;
2471 while (*p == ' ')
2472 ++p;
2473 return p;
2474}
2475
2476/*
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002477 * Call this function when something in the current buffer is changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478 *
2479 * Most often called through changed_bytes() and changed_lines(), which also
2480 * mark the area of the display to be redrawn.
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002481 *
2482 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 */
2484 void
2485changed()
2486{
2487#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2488 /* The text of the preediting area is inserted, but this doesn't
2489 * mean a change of the buffer yet. That is delayed until the
2490 * text is committed. (this means preedit becomes empty) */
2491 if (im_is_preediting() && !xim_changed_while_preediting)
2492 return;
2493 xim_changed_while_preediting = FALSE;
2494#endif
2495
2496 if (!curbuf->b_changed)
2497 {
2498 int save_msg_scroll = msg_scroll;
2499
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002500 /* Give a warning about changing a read-only file. This may also
2501 * check-out the file, thus change "curbuf"! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 change_warning(0);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002503
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 /* Create a swap file if that is wanted.
2505 * Don't do this for "nofile" and "nowrite" buffer types. */
2506 if (curbuf->b_may_swap
2507#ifdef FEAT_QUICKFIX
2508 && !bt_dontwrite(curbuf)
2509#endif
2510 )
2511 {
2512 ml_open_file(curbuf);
2513
2514 /* The ml_open_file() can cause an ATTENTION message.
2515 * Wait two seconds, to make sure the user reads this unexpected
2516 * message. Since we could be anywhere, call wait_return() now,
2517 * and don't let the emsg() set msg_scroll. */
2518 if (need_wait_return && emsg_silent == 0)
2519 {
2520 out_flush();
2521 ui_delay(2000L, TRUE);
2522 wait_return(TRUE);
2523 msg_scroll = save_msg_scroll;
2524 }
2525 }
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02002526 changed_int();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 }
2528 ++curbuf->b_changedtick;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002529}
2530
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02002531/*
2532 * Internal part of changed(), no user interaction.
2533 */
2534 void
2535changed_int()
2536{
2537 curbuf->b_changed = TRUE;
2538 ml_setflags(curbuf);
2539#ifdef FEAT_WINDOWS
2540 check_status(curbuf);
2541 redraw_tabline = TRUE;
2542#endif
2543#ifdef FEAT_TITLE
2544 need_maketitle = TRUE; /* set window title later */
2545#endif
2546}
2547
Bram Moolenaardba8a912005-04-24 22:08:39 +00002548static void changedOneline __ARGS((buf_T *buf, linenr_T lnum));
2549static void changed_lines_buf __ARGS((buf_T *buf, linenr_T lnum, linenr_T lnume, long xtra));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550static void changed_common __ARGS((linenr_T lnum, colnr_T col, linenr_T lnume, long xtra));
2551
2552/*
2553 * Changed bytes within a single line for the current buffer.
2554 * - marks the windows on this buffer to be redisplayed
2555 * - marks the buffer changed by calling changed()
2556 * - invalidates cached values
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002557 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 */
2559 void
2560changed_bytes(lnum, col)
2561 linenr_T lnum;
2562 colnr_T col;
2563{
Bram Moolenaardba8a912005-04-24 22:08:39 +00002564 changedOneline(curbuf, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565 changed_common(lnum, col, lnum + 1, 0L);
Bram Moolenaardba8a912005-04-24 22:08:39 +00002566
2567#ifdef FEAT_DIFF
2568 /* Diff highlighting in other diff windows may need to be updated too. */
2569 if (curwin->w_p_diff)
2570 {
2571 win_T *wp;
2572 linenr_T wlnum;
2573
2574 for (wp = firstwin; wp != NULL; wp = wp->w_next)
2575 if (wp->w_p_diff && wp != curwin)
2576 {
2577 redraw_win_later(wp, VALID);
2578 wlnum = diff_lnum_win(lnum, wp);
2579 if (wlnum > 0)
2580 changedOneline(wp->w_buffer, wlnum);
2581 }
2582 }
2583#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584}
2585
2586 static void
Bram Moolenaardba8a912005-04-24 22:08:39 +00002587changedOneline(buf, lnum)
2588 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589 linenr_T lnum;
2590{
Bram Moolenaardba8a912005-04-24 22:08:39 +00002591 if (buf->b_mod_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 {
2593 /* find the maximum area that must be redisplayed */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002594 if (lnum < buf->b_mod_top)
2595 buf->b_mod_top = lnum;
2596 else if (lnum >= buf->b_mod_bot)
2597 buf->b_mod_bot = lnum + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598 }
2599 else
2600 {
2601 /* set the area that must be redisplayed to one line */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002602 buf->b_mod_set = TRUE;
2603 buf->b_mod_top = lnum;
2604 buf->b_mod_bot = lnum + 1;
2605 buf->b_mod_xlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606 }
2607}
2608
2609/*
2610 * Appended "count" lines below line "lnum" in the current buffer.
2611 * Must be called AFTER the change and after mark_adjust().
2612 * Takes care of marking the buffer to be redrawn and sets the changed flag.
2613 */
2614 void
2615appended_lines(lnum, count)
2616 linenr_T lnum;
2617 long count;
2618{
2619 changed_lines(lnum + 1, 0, lnum + 1, count);
2620}
2621
2622/*
2623 * Like appended_lines(), but adjust marks first.
2624 */
2625 void
2626appended_lines_mark(lnum, count)
2627 linenr_T lnum;
2628 long count;
2629{
2630 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, count, 0L);
2631 changed_lines(lnum + 1, 0, lnum + 1, count);
2632}
2633
2634/*
2635 * Deleted "count" lines at line "lnum" in the current buffer.
2636 * Must be called AFTER the change and after mark_adjust().
2637 * Takes care of marking the buffer to be redrawn and sets the changed flag.
2638 */
2639 void
2640deleted_lines(lnum, count)
2641 linenr_T lnum;
2642 long count;
2643{
2644 changed_lines(lnum, 0, lnum + count, -count);
2645}
2646
2647/*
2648 * Like deleted_lines(), but adjust marks first.
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002649 * Make sure the cursor is on a valid line before calling, a GUI callback may
2650 * be triggered to display the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 */
2652 void
2653deleted_lines_mark(lnum, count)
2654 linenr_T lnum;
2655 long count;
2656{
2657 mark_adjust(lnum, (linenr_T)(lnum + count - 1), (long)MAXLNUM, -count);
2658 changed_lines(lnum, 0, lnum + count, -count);
2659}
2660
2661/*
2662 * Changed lines for the current buffer.
2663 * Must be called AFTER the change and after mark_adjust().
2664 * - mark the buffer changed by calling changed()
2665 * - mark the windows on this buffer to be redisplayed
2666 * - invalidate cached values
2667 * "lnum" is the first line that needs displaying, "lnume" the first line
2668 * below the changed lines (BEFORE the change).
2669 * When only inserting lines, "lnum" and "lnume" are equal.
2670 * Takes care of calling changed() and updating b_mod_*.
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002671 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 */
2673 void
2674changed_lines(lnum, col, lnume, xtra)
2675 linenr_T lnum; /* first line with change */
2676 colnr_T col; /* column in first line with change */
2677 linenr_T lnume; /* line below last changed line */
2678 long xtra; /* number of extra lines (negative when deleting) */
2679{
Bram Moolenaardba8a912005-04-24 22:08:39 +00002680 changed_lines_buf(curbuf, lnum, lnume, xtra);
2681
2682#ifdef FEAT_DIFF
2683 if (xtra == 0 && curwin->w_p_diff)
2684 {
2685 /* When the number of lines doesn't change then mark_adjust() isn't
2686 * called and other diff buffers still need to be marked for
2687 * displaying. */
2688 win_T *wp;
2689 linenr_T wlnum;
2690
2691 for (wp = firstwin; wp != NULL; wp = wp->w_next)
2692 if (wp->w_p_diff && wp != curwin)
2693 {
2694 redraw_win_later(wp, VALID);
2695 wlnum = diff_lnum_win(lnum, wp);
2696 if (wlnum > 0)
2697 changed_lines_buf(wp->w_buffer, wlnum,
2698 lnume - lnum + wlnum, 0L);
2699 }
2700 }
2701#endif
2702
2703 changed_common(lnum, col, lnume, xtra);
2704}
2705
2706 static void
2707changed_lines_buf(buf, lnum, lnume, xtra)
2708 buf_T *buf;
2709 linenr_T lnum; /* first line with change */
2710 linenr_T lnume; /* line below last changed line */
2711 long xtra; /* number of extra lines (negative when deleting) */
2712{
2713 if (buf->b_mod_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714 {
2715 /* find the maximum area that must be redisplayed */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002716 if (lnum < buf->b_mod_top)
2717 buf->b_mod_top = lnum;
2718 if (lnum < buf->b_mod_bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719 {
2720 /* adjust old bot position for xtra lines */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002721 buf->b_mod_bot += xtra;
2722 if (buf->b_mod_bot < lnum)
2723 buf->b_mod_bot = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 }
Bram Moolenaardba8a912005-04-24 22:08:39 +00002725 if (lnume + xtra > buf->b_mod_bot)
2726 buf->b_mod_bot = lnume + xtra;
2727 buf->b_mod_xlines += xtra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728 }
2729 else
2730 {
2731 /* set the area that must be redisplayed */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002732 buf->b_mod_set = TRUE;
2733 buf->b_mod_top = lnum;
2734 buf->b_mod_bot = lnume + xtra;
2735 buf->b_mod_xlines = xtra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737}
2738
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002739/*
2740 * Common code for when a change is was made.
2741 * See changed_lines() for the arguments.
2742 * Careful: may trigger autocommands that reload the buffer.
2743 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744 static void
2745changed_common(lnum, col, lnume, xtra)
2746 linenr_T lnum;
2747 colnr_T col;
2748 linenr_T lnume;
2749 long xtra;
2750{
2751 win_T *wp;
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00002752#ifdef FEAT_WINDOWS
2753 tabpage_T *tp;
2754#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755 int i;
2756#ifdef FEAT_JUMPLIST
2757 int cols;
2758 pos_T *p;
2759 int add;
2760#endif
2761
2762 /* mark the buffer as modified */
2763 changed();
2764
2765 /* set the '. mark */
2766 if (!cmdmod.keepjumps)
2767 {
2768 curbuf->b_last_change.lnum = lnum;
2769 curbuf->b_last_change.col = col;
2770
2771#ifdef FEAT_JUMPLIST
2772 /* Create a new entry if a new undo-able change was started or we
2773 * don't have an entry yet. */
2774 if (curbuf->b_new_change || curbuf->b_changelistlen == 0)
2775 {
2776 if (curbuf->b_changelistlen == 0)
2777 add = TRUE;
2778 else
2779 {
2780 /* Don't create a new entry when the line number is the same
2781 * as the last one and the column is not too far away. Avoids
2782 * creating many entries for typing "xxxxx". */
2783 p = &curbuf->b_changelist[curbuf->b_changelistlen - 1];
2784 if (p->lnum != lnum)
2785 add = TRUE;
2786 else
2787 {
2788 cols = comp_textwidth(FALSE);
2789 if (cols == 0)
2790 cols = 79;
2791 add = (p->col + cols < col || col + cols < p->col);
2792 }
2793 }
2794 if (add)
2795 {
2796 /* This is the first of a new sequence of undo-able changes
2797 * and it's at some distance of the last change. Use a new
2798 * position in the changelist. */
2799 curbuf->b_new_change = FALSE;
2800
2801 if (curbuf->b_changelistlen == JUMPLISTSIZE)
2802 {
2803 /* changelist is full: remove oldest entry */
2804 curbuf->b_changelistlen = JUMPLISTSIZE - 1;
2805 mch_memmove(curbuf->b_changelist, curbuf->b_changelist + 1,
2806 sizeof(pos_T) * (JUMPLISTSIZE - 1));
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00002807 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 {
2809 /* Correct position in changelist for other windows on
2810 * this buffer. */
2811 if (wp->w_buffer == curbuf && wp->w_changelistidx > 0)
2812 --wp->w_changelistidx;
2813 }
2814 }
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00002815 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 {
2817 /* For other windows, if the position in the changelist is
2818 * at the end it stays at the end. */
2819 if (wp->w_buffer == curbuf
2820 && wp->w_changelistidx == curbuf->b_changelistlen)
2821 ++wp->w_changelistidx;
2822 }
2823 ++curbuf->b_changelistlen;
2824 }
2825 }
2826 curbuf->b_changelist[curbuf->b_changelistlen - 1] =
2827 curbuf->b_last_change;
2828 /* The current window is always after the last change, so that "g,"
2829 * takes you back to it. */
2830 curwin->w_changelistidx = curbuf->b_changelistlen;
2831#endif
2832 }
2833
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00002834 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835 {
2836 if (wp->w_buffer == curbuf)
2837 {
2838 /* Mark this window to be redrawn later. */
2839 if (wp->w_redr_type < VALID)
2840 wp->w_redr_type = VALID;
2841
2842 /* Check if a change in the buffer has invalidated the cached
2843 * values for the cursor. */
2844#ifdef FEAT_FOLDING
2845 /*
2846 * Update the folds for this window. Can't postpone this, because
2847 * a following operator might work on the whole fold: ">>dd".
2848 */
2849 foldUpdate(wp, lnum, lnume + xtra - 1);
2850
2851 /* The change may cause lines above or below the change to become
2852 * included in a fold. Set lnum/lnume to the first/last line that
2853 * might be displayed differently.
2854 * Set w_cline_folded here as an efficient way to update it when
2855 * inserting lines just above a closed fold. */
2856 i = hasFoldingWin(wp, lnum, &lnum, NULL, FALSE, NULL);
2857 if (wp->w_cursor.lnum == lnum)
2858 wp->w_cline_folded = i;
2859 i = hasFoldingWin(wp, lnume, NULL, &lnume, FALSE, NULL);
2860 if (wp->w_cursor.lnum == lnume)
2861 wp->w_cline_folded = i;
2862
2863 /* If the changed line is in a range of previously folded lines,
2864 * compare with the first line in that range. */
2865 if (wp->w_cursor.lnum <= lnum)
2866 {
2867 i = find_wl_entry(wp, lnum);
2868 if (i >= 0 && wp->w_cursor.lnum > wp->w_lines[i].wl_lnum)
2869 changed_line_abv_curs_win(wp);
2870 }
2871#endif
2872
2873 if (wp->w_cursor.lnum > lnum)
2874 changed_line_abv_curs_win(wp);
2875 else if (wp->w_cursor.lnum == lnum && wp->w_cursor.col >= col)
2876 changed_cline_bef_curs_win(wp);
2877 if (wp->w_botline >= lnum)
2878 {
2879 /* Assume that botline doesn't change (inserted lines make
2880 * other lines scroll down below botline). */
2881 approximate_botline_win(wp);
2882 }
2883
2884 /* Check if any w_lines[] entries have become invalid.
2885 * For entries below the change: Correct the lnums for
2886 * inserted/deleted lines. Makes it possible to stop displaying
2887 * after the change. */
2888 for (i = 0; i < wp->w_lines_valid; ++i)
2889 if (wp->w_lines[i].wl_valid)
2890 {
2891 if (wp->w_lines[i].wl_lnum >= lnum)
2892 {
2893 if (wp->w_lines[i].wl_lnum < lnume)
2894 {
2895 /* line included in change */
2896 wp->w_lines[i].wl_valid = FALSE;
2897 }
2898 else if (xtra != 0)
2899 {
2900 /* line below change */
2901 wp->w_lines[i].wl_lnum += xtra;
2902#ifdef FEAT_FOLDING
2903 wp->w_lines[i].wl_lastlnum += xtra;
2904#endif
2905 }
2906 }
2907#ifdef FEAT_FOLDING
2908 else if (wp->w_lines[i].wl_lastlnum >= lnum)
2909 {
2910 /* change somewhere inside this range of folded lines,
2911 * may need to be redrawn */
2912 wp->w_lines[i].wl_valid = FALSE;
2913 }
2914#endif
2915 }
Bram Moolenaar3234cc62009-11-03 17:47:12 +00002916
2917#ifdef FEAT_FOLDING
2918 /* Take care of side effects for setting w_topline when folds have
2919 * changed. Esp. when the buffer was changed in another window. */
2920 if (hasAnyFolding(wp))
2921 set_topline(wp, wp->w_topline);
2922#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002923 }
2924 }
2925
2926 /* Call update_screen() later, which checks out what needs to be redrawn,
2927 * since it notices b_mod_set and then uses b_mod_*. */
2928 if (must_redraw < VALID)
2929 must_redraw = VALID;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002930
2931#ifdef FEAT_AUTOCMD
2932 /* when the cursor line is changed always trigger CursorMoved */
Bram Moolenaare163f1c2006-10-17 09:12:21 +00002933 if (lnum <= curwin->w_cursor.lnum
2934 && lnume + (xtra < 0 ? -xtra : xtra) > curwin->w_cursor.lnum)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002935 last_cursormoved.lnum = 0;
2936#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937}
2938
2939/*
2940 * unchanged() is called when the changed flag must be reset for buffer 'buf'
2941 */
2942 void
2943unchanged(buf, ff)
2944 buf_T *buf;
2945 int ff; /* also reset 'fileformat' */
2946{
Bram Moolenaar164c60f2011-01-22 00:11:50 +01002947 if (buf->b_changed || (ff && file_ff_differs(buf, FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948 {
2949 buf->b_changed = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002950 ml_setflags(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951 if (ff)
2952 save_file_ff(buf);
2953#ifdef FEAT_WINDOWS
2954 check_status(buf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002955 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956#endif
2957#ifdef FEAT_TITLE
2958 need_maketitle = TRUE; /* set window title later */
2959#endif
2960 }
2961 ++buf->b_changedtick;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962#ifdef FEAT_NETBEANS_INTG
2963 netbeans_unmodified(buf);
2964#endif
2965}
2966
2967#if defined(FEAT_WINDOWS) || defined(PROTO)
2968/*
2969 * check_status: called when the status bars for the buffer 'buf'
2970 * need to be updated
2971 */
2972 void
2973check_status(buf)
2974 buf_T *buf;
2975{
2976 win_T *wp;
2977
2978 for (wp = firstwin; wp != NULL; wp = wp->w_next)
2979 if (wp->w_buffer == buf && wp->w_status_height)
2980 {
2981 wp->w_redr_status = TRUE;
2982 if (must_redraw < VALID)
2983 must_redraw = VALID;
2984 }
2985}
2986#endif
2987
2988/*
2989 * If the file is readonly, give a warning message with the first change.
2990 * Don't do this for autocommands.
2991 * Don't use emsg(), because it flushes the macro buffer.
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00002992 * If we have undone all changes b_changed will be FALSE, but "b_did_warn"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993 * will be TRUE.
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002994 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 */
2996 void
2997change_warning(col)
2998 int col; /* column for message; non-zero when in insert
2999 mode and 'showmode' is on */
3000{
Bram Moolenaar496c5262009-03-18 14:42:00 +00003001 static char *w_readonly = N_("W10: Warning: Changing a readonly file");
3002
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 if (curbuf->b_did_warn == FALSE
3004 && curbufIsChanged() == 0
3005#ifdef FEAT_AUTOCMD
3006 && !autocmd_busy
3007#endif
3008 && curbuf->b_p_ro)
3009 {
3010#ifdef FEAT_AUTOCMD
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003011 ++curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012 apply_autocmds(EVENT_FILECHANGEDRO, NULL, NULL, FALSE, curbuf);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003013 --curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014 if (!curbuf->b_p_ro)
3015 return;
3016#endif
3017 /*
3018 * Do what msg() does, but with a column offset if the warning should
3019 * be after the mode message.
3020 */
3021 msg_start();
3022 if (msg_row == Rows - 1)
3023 msg_col = col;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00003024 msg_source(hl_attr(HLF_W));
Bram Moolenaar496c5262009-03-18 14:42:00 +00003025 MSG_PUTS_ATTR(_(w_readonly), hl_attr(HLF_W) | MSG_HIST);
3026#ifdef FEAT_EVAL
3027 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_readonly), -1);
3028#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 msg_clr_eos();
3030 (void)msg_end();
3031 if (msg_silent == 0 && !silent_mode)
3032 {
3033 out_flush();
3034 ui_delay(1000L, TRUE); /* give the user time to think about it */
3035 }
3036 curbuf->b_did_warn = TRUE;
3037 redraw_cmdline = FALSE; /* don't redraw and erase the message */
3038 if (msg_row < Rows - 1)
3039 showmode();
3040 }
3041}
3042
3043/*
3044 * Ask for a reply from the user, a 'y' or a 'n'.
3045 * No other characters are accepted, the message is repeated until a valid
3046 * reply is entered or CTRL-C is hit.
3047 * If direct is TRUE, don't use vgetc() but ui_inchar(), don't get characters
3048 * from any buffers but directly from the user.
3049 *
3050 * return the 'y' or 'n'
3051 */
3052 int
3053ask_yesno(str, direct)
3054 char_u *str;
3055 int direct;
3056{
3057 int r = ' ';
3058 int save_State = State;
3059
3060 if (exiting) /* put terminal in raw mode for this question */
3061 settmode(TMODE_RAW);
3062 ++no_wait_return;
3063#ifdef USE_ON_FLY_SCROLL
3064 dont_scroll = TRUE; /* disallow scrolling here */
3065#endif
3066 State = CONFIRM; /* mouse behaves like with :confirm */
3067#ifdef FEAT_MOUSE
3068 setmouse(); /* disables mouse for xterm */
3069#endif
3070 ++no_mapping;
3071 ++allow_keys; /* no mapping here, but recognize keys */
3072
3073 while (r != 'y' && r != 'n')
3074 {
3075 /* same highlighting as for wait_return */
3076 smsg_attr(hl_attr(HLF_R), (char_u *)"%s (y/n)?", str);
3077 if (direct)
3078 r = get_keystroke();
3079 else
Bram Moolenaar913626c2008-01-03 11:43:42 +00003080 r = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081 if (r == Ctrl_C || r == ESC)
3082 r = 'n';
3083 msg_putchar(r); /* show what you typed */
3084 out_flush();
3085 }
3086 --no_wait_return;
3087 State = save_State;
3088#ifdef FEAT_MOUSE
3089 setmouse();
3090#endif
3091 --no_mapping;
3092 --allow_keys;
3093
3094 return r;
3095}
3096
3097/*
3098 * Get a key stroke directly from the user.
3099 * Ignores mouse clicks and scrollbar events, except a click for the left
3100 * button (used at the more prompt).
3101 * Doesn't use vgetc(), because it syncs undo and eats mapped characters.
3102 * Disadvantage: typeahead is ignored.
3103 * Translates the interrupt character for unix to ESC.
3104 */
3105 int
3106get_keystroke()
3107{
3108#define CBUFLEN 151
3109 char_u buf[CBUFLEN];
3110 int len = 0;
3111 int n;
3112 int save_mapped_ctrl_c = mapped_ctrl_c;
Bram Moolenaar4395a712006-09-05 18:57:57 +00003113 int waited = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114
3115 mapped_ctrl_c = FALSE; /* mappings are not used here */
3116 for (;;)
3117 {
3118 cursor_on();
3119 out_flush();
3120
3121 /* First time: blocking wait. Second time: wait up to 100ms for a
3122 * terminal code to complete. Leave some room for check_termcode() to
3123 * insert a key code into (max 5 chars plus NUL). And
3124 * fix_input_buffer() can triple the number of bytes. */
3125 n = ui_inchar(buf + len, (CBUFLEN - 6 - len) / 3,
3126 len == 0 ? -1L : 100L, 0);
3127 if (n > 0)
3128 {
3129 /* Replace zero and CSI by a special key code. */
3130 n = fix_input_buffer(buf + len, n, FALSE);
3131 len += n;
Bram Moolenaar4395a712006-09-05 18:57:57 +00003132 waited = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133 }
Bram Moolenaar4395a712006-09-05 18:57:57 +00003134 else if (len > 0)
3135 ++waited; /* keep track of the waiting time */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136
Bram Moolenaar4395a712006-09-05 18:57:57 +00003137 /* Incomplete termcode and not timed out yet: get more characters */
3138 if ((n = check_termcode(1, buf, len)) < 0
3139 && (!p_ttimeout || waited * 100L < (p_ttm < 0 ? p_tm : p_ttm)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 continue;
Bram Moolenaar4395a712006-09-05 18:57:57 +00003141
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003142 if (n == KEYLEN_REMOVED) /* key code removed */
Bram Moolenaar6eb634e2011-03-03 15:04:08 +01003143 {
Bram Moolenaarfd30cd42011-03-22 13:07:26 +01003144 if (must_redraw != 0 && !need_wait_return && (State & CMDLINE) == 0)
Bram Moolenaar6eb634e2011-03-03 15:04:08 +01003145 {
3146 /* Redrawing was postponed, do it now. */
3147 update_screen(0);
3148 setcursor(); /* put cursor back where it belongs */
3149 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003150 continue;
Bram Moolenaar6eb634e2011-03-03 15:04:08 +01003151 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003152 if (n > 0) /* found a termcode: adjust length */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 len = n;
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003154 if (len == 0) /* nothing typed yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155 continue;
3156
3157 /* Handle modifier and/or special key code. */
3158 n = buf[0];
3159 if (n == K_SPECIAL)
3160 {
3161 n = TO_SPECIAL(buf[1], buf[2]);
3162 if (buf[1] == KS_MODIFIER
3163 || n == K_IGNORE
3164#ifdef FEAT_MOUSE
3165 || n == K_LEFTMOUSE_NM
3166 || n == K_LEFTDRAG
3167 || n == K_LEFTRELEASE
3168 || n == K_LEFTRELEASE_NM
3169 || n == K_MIDDLEMOUSE
3170 || n == K_MIDDLEDRAG
3171 || n == K_MIDDLERELEASE
3172 || n == K_RIGHTMOUSE
3173 || n == K_RIGHTDRAG
3174 || n == K_RIGHTRELEASE
3175 || n == K_MOUSEDOWN
3176 || n == K_MOUSEUP
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003177 || n == K_MOUSELEFT
3178 || n == K_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179 || n == K_X1MOUSE
3180 || n == K_X1DRAG
3181 || n == K_X1RELEASE
3182 || n == K_X2MOUSE
3183 || n == K_X2DRAG
3184 || n == K_X2RELEASE
3185# ifdef FEAT_GUI
3186 || n == K_VER_SCROLLBAR
3187 || n == K_HOR_SCROLLBAR
3188# endif
3189#endif
3190 )
3191 {
3192 if (buf[1] == KS_MODIFIER)
3193 mod_mask = buf[2];
3194 len -= 3;
3195 if (len > 0)
3196 mch_memmove(buf, buf + 3, (size_t)len);
3197 continue;
3198 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00003199 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 }
3201#ifdef FEAT_MBYTE
3202 if (has_mbyte)
3203 {
3204 if (MB_BYTE2LEN(n) > len)
3205 continue; /* more bytes to get */
3206 buf[len >= CBUFLEN ? CBUFLEN - 1 : len] = NUL;
3207 n = (*mb_ptr2char)(buf);
3208 }
3209#endif
3210#ifdef UNIX
3211 if (n == intr_char)
3212 n = ESC;
3213#endif
3214 break;
3215 }
3216
3217 mapped_ctrl_c = save_mapped_ctrl_c;
3218 return n;
3219}
3220
3221/*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003222 * Get a number from the user.
3223 * When "mouse_used" is not NULL allow using the mouse.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224 */
3225 int
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003226get_number(colon, mouse_used)
3227 int colon; /* allow colon to abort */
3228 int *mouse_used;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229{
3230 int n = 0;
3231 int c;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00003232 int typed = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003234 if (mouse_used != NULL)
3235 *mouse_used = FALSE;
3236
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237 /* When not printing messages, the user won't know what to type, return a
3238 * zero (as if CR was hit). */
3239 if (msg_silent != 0)
3240 return 0;
3241
3242#ifdef USE_ON_FLY_SCROLL
3243 dont_scroll = TRUE; /* disallow scrolling here */
3244#endif
3245 ++no_mapping;
3246 ++allow_keys; /* no mapping here, but recognize keys */
3247 for (;;)
3248 {
3249 windgoto(msg_row, msg_col);
3250 c = safe_vgetc();
3251 if (VIM_ISDIGIT(c))
3252 {
3253 n = n * 10 + c - '0';
3254 msg_putchar(c);
Bram Moolenaar3991dab2006-03-27 17:01:56 +00003255 ++typed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 }
3257 else if (c == K_DEL || c == K_KDEL || c == K_BS || c == Ctrl_H)
3258 {
Bram Moolenaar3991dab2006-03-27 17:01:56 +00003259 if (typed > 0)
3260 {
3261 MSG_PUTS("\b \b");
3262 --typed;
3263 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264 n /= 10;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 }
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003266#ifdef FEAT_MOUSE
3267 else if (mouse_used != NULL && c == K_LEFTMOUSE)
3268 {
3269 *mouse_used = TRUE;
3270 n = mouse_row + 1;
3271 break;
3272 }
3273#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274 else if (n == 0 && c == ':' && colon)
3275 {
3276 stuffcharReadbuff(':');
3277 if (!exmode_active)
3278 cmdline_row = msg_row;
3279 skip_redraw = TRUE; /* skip redraw once */
3280 do_redraw = FALSE;
3281 break;
3282 }
3283 else if (c == CAR || c == NL || c == Ctrl_C || c == ESC)
3284 break;
3285 }
3286 --no_mapping;
3287 --allow_keys;
3288 return n;
3289}
3290
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003291/*
3292 * Ask the user to enter a number.
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003293 * When "mouse_used" is not NULL allow using the mouse and in that case return
3294 * the line number.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003295 */
3296 int
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003297prompt_for_number(mouse_used)
3298 int *mouse_used;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003299{
3300 int i;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003301 int save_cmdline_row;
3302 int save_State;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003303
3304 /* When using ":silent" assume that <CR> was entered. */
Bram Moolenaar42eeac32005-06-29 22:40:58 +00003305 if (mouse_used != NULL)
Bram Moolenaard812df62008-11-09 12:46:09 +00003306 MSG_PUTS(_("Type number and <Enter> or click with mouse (empty cancels): "));
Bram Moolenaar42eeac32005-06-29 22:40:58 +00003307 else
Bram Moolenaard812df62008-11-09 12:46:09 +00003308 MSG_PUTS(_("Type number and <Enter> (empty cancels): "));
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003309
Bram Moolenaar203335e2006-09-03 14:35:42 +00003310 /* Set the state such that text can be selected/copied/pasted and we still
3311 * get mouse events. */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003312 save_cmdline_row = cmdline_row;
Bram Moolenaar203335e2006-09-03 14:35:42 +00003313 cmdline_row = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003314 save_State = State;
Bram Moolenaar203335e2006-09-03 14:35:42 +00003315 State = CMDLINE;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003316
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003317 i = get_number(TRUE, mouse_used);
3318 if (KeyTyped)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003319 {
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003320 /* don't call wait_return() now */
3321 /* msg_putchar('\n'); */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003322 cmdline_row = msg_row - 1;
3323 need_wait_return = FALSE;
3324 msg_didany = FALSE;
Bram Moolenaarb2450162009-07-22 09:04:20 +00003325 msg_didout = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003326 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003327 else
3328 cmdline_row = save_cmdline_row;
3329 State = save_State;
3330
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003331 return i;
3332}
3333
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334 void
3335msgmore(n)
3336 long n;
3337{
3338 long pn;
3339
3340 if (global_busy /* no messages now, wait until global is finished */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341 || !messaging()) /* 'lazyredraw' set, don't do messages now */
3342 return;
3343
Bram Moolenaar7df2d662005-01-25 22:18:08 +00003344 /* We don't want to overwrite another important message, but do overwrite
3345 * a previous "more lines" or "fewer lines" message, so that "5dd" and
3346 * then "put" reports the last action. */
3347 if (keep_msg != NULL && !keep_msg_more)
3348 return;
3349
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 if (n > 0)
3351 pn = n;
3352 else
3353 pn = -n;
3354
3355 if (pn > p_report)
3356 {
3357 if (pn == 1)
3358 {
3359 if (n > 0)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003360 vim_strncpy(msg_buf, (char_u *)_("1 more line"),
3361 MSG_BUF_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 else
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003363 vim_strncpy(msg_buf, (char_u *)_("1 line less"),
3364 MSG_BUF_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365 }
3366 else
3367 {
3368 if (n > 0)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003369 vim_snprintf((char *)msg_buf, MSG_BUF_LEN,
3370 _("%ld more lines"), pn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 else
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003372 vim_snprintf((char *)msg_buf, MSG_BUF_LEN,
3373 _("%ld fewer lines"), pn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374 }
3375 if (got_int)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003376 vim_strcat(msg_buf, (char_u *)_(" (Interrupted)"), MSG_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377 if (msg(msg_buf))
3378 {
Bram Moolenaar238a5642006-02-21 22:12:05 +00003379 set_keep_msg(msg_buf, 0);
Bram Moolenaar7df2d662005-01-25 22:18:08 +00003380 keep_msg_more = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381 }
3382 }
3383}
3384
3385/*
3386 * flush map and typeahead buffers and give a warning for an error
3387 */
3388 void
3389beep_flush()
3390{
3391 if (emsg_silent == 0)
3392 {
3393 flush_buffers(FALSE);
3394 vim_beep();
3395 }
3396}
3397
3398/*
3399 * give a warning for an error
3400 */
3401 void
3402vim_beep()
3403{
3404 if (emsg_silent == 0)
3405 {
3406 if (p_vb
3407#ifdef FEAT_GUI
3408 /* While the GUI is starting up the termcap is set for the GUI
3409 * but the output still goes to a terminal. */
3410 && !(gui.in_use && gui.starting)
3411#endif
3412 )
3413 {
3414 out_str(T_VB);
3415 }
3416 else
3417 {
3418#ifdef MSDOS
3419 /*
3420 * The number of beeps outputted is reduced to avoid having to wait
3421 * for all the beeps to finish. This is only a problem on systems
3422 * where the beeps don't overlap.
3423 */
3424 if (beep_count == 0 || beep_count == 10)
3425 {
3426 out_char(BELL);
3427 beep_count = 1;
3428 }
3429 else
3430 ++beep_count;
3431#else
3432 out_char(BELL);
3433#endif
3434 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003435
3436 /* When 'verbose' is set and we are sourcing a script or executing a
3437 * function give the user a hint where the beep comes from. */
3438 if (vim_strchr(p_debug, 'e') != NULL)
3439 {
3440 msg_source(hl_attr(HLF_W));
3441 msg_attr((char_u *)_("Beep!"), hl_attr(HLF_W));
3442 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443 }
3444}
3445
3446/*
3447 * To get the "real" home directory:
3448 * - get value of $HOME
3449 * For Unix:
3450 * - go to that directory
3451 * - do mch_dirname() to get the real name of that directory.
3452 * This also works with mounts and links.
3453 * Don't do this for MS-DOS, it will change the "current dir" for a drive.
3454 */
3455static char_u *homedir = NULL;
3456
3457 void
3458init_homedir()
3459{
3460 char_u *var;
3461
Bram Moolenaar05159a02005-02-26 23:04:13 +00003462 /* In case we are called a second time (when 'encoding' changes). */
3463 vim_free(homedir);
3464 homedir = NULL;
3465
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466#ifdef VMS
3467 var = mch_getenv((char_u *)"SYS$LOGIN");
3468#else
3469 var = mch_getenv((char_u *)"HOME");
3470#endif
3471
3472 if (var != NULL && *var == NUL) /* empty is same as not set */
3473 var = NULL;
3474
3475#ifdef WIN3264
3476 /*
3477 * Weird but true: $HOME may contain an indirect reference to another
3478 * variable, esp. "%USERPROFILE%". Happens when $USERPROFILE isn't set
3479 * when $HOME is being set.
3480 */
3481 if (var != NULL && *var == '%')
3482 {
3483 char_u *p;
3484 char_u *exp;
3485
3486 p = vim_strchr(var + 1, '%');
3487 if (p != NULL)
3488 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003489 vim_strncpy(NameBuff, var + 1, p - (var + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490 exp = mch_getenv(NameBuff);
3491 if (exp != NULL && *exp != NUL
3492 && STRLEN(exp) + STRLEN(p) < MAXPATHL)
3493 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00003494 vim_snprintf((char *)NameBuff, MAXPATHL, "%s%s", exp, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 var = NameBuff;
3496 /* Also set $HOME, it's needed for _viminfo. */
3497 vim_setenv((char_u *)"HOME", NameBuff);
3498 }
3499 }
3500 }
3501
3502 /*
3503 * Typically, $HOME is not defined on Windows, unless the user has
3504 * specifically defined it for Vim's sake. However, on Windows NT
3505 * platforms, $HOMEDRIVE and $HOMEPATH are automatically defined for
3506 * each user. Try constructing $HOME from these.
3507 */
3508 if (var == NULL)
3509 {
3510 char_u *homedrive, *homepath;
3511
3512 homedrive = mch_getenv((char_u *)"HOMEDRIVE");
3513 homepath = mch_getenv((char_u *)"HOMEPATH");
Bram Moolenaar6f977012010-01-06 17:53:38 +01003514 if (homepath == NULL || *homepath == NUL)
3515 homepath = "\\";
3516 if (homedrive != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517 && STRLEN(homedrive) + STRLEN(homepath) < MAXPATHL)
3518 {
3519 sprintf((char *)NameBuff, "%s%s", homedrive, homepath);
3520 if (NameBuff[0] != NUL)
3521 {
3522 var = NameBuff;
3523 /* Also set $HOME, it's needed for _viminfo. */
3524 vim_setenv((char_u *)"HOME", NameBuff);
3525 }
3526 }
3527 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00003528
3529# if defined(FEAT_MBYTE)
3530 if (enc_utf8 && var != NULL)
3531 {
3532 int len;
Bram Moolenaarb453a532011-04-28 17:48:44 +02003533 char_u *pp = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003534
3535 /* Convert from active codepage to UTF-8. Other conversions are
3536 * not done, because they would fail for non-ASCII characters. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003537 acp_to_enc(var, (int)STRLEN(var), &pp, &len);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003538 if (pp != NULL)
3539 {
3540 homedir = pp;
3541 return;
3542 }
3543 }
3544# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545#endif
3546
3547#if defined(OS2) || defined(MSDOS) || defined(MSWIN)
3548 /*
3549 * Default home dir is C:/
3550 * Best assumption we can make in such a situation.
3551 */
3552 if (var == NULL)
3553 var = "C:/";
3554#endif
3555 if (var != NULL)
3556 {
3557#ifdef UNIX
3558 /*
3559 * Change to the directory and get the actual path. This resolves
3560 * links. Don't do it when we can't return.
3561 */
3562 if (mch_dirname(NameBuff, MAXPATHL) == OK
3563 && mch_chdir((char *)NameBuff) == 0)
3564 {
3565 if (!mch_chdir((char *)var) && mch_dirname(IObuff, IOSIZE) == OK)
3566 var = IObuff;
3567 if (mch_chdir((char *)NameBuff) != 0)
3568 EMSG(_(e_prev_dir));
3569 }
3570#endif
3571 homedir = vim_strsave(var);
3572 }
3573}
3574
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003575#if defined(EXITFREE) || defined(PROTO)
3576 void
3577free_homedir()
3578{
3579 vim_free(homedir);
3580}
3581#endif
3582
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583/*
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003584 * Call expand_env() and store the result in an allocated string.
3585 * This is not very memory efficient, this expects the result to be freed
3586 * again soon.
3587 */
3588 char_u *
3589expand_env_save(src)
3590 char_u *src;
3591{
3592 return expand_env_save_opt(src, FALSE);
3593}
3594
3595/*
3596 * Idem, but when "one" is TRUE handle the string as one file name, only
3597 * expand "~" at the start.
3598 */
3599 char_u *
3600expand_env_save_opt(src, one)
3601 char_u *src;
3602 int one;
3603{
3604 char_u *p;
3605
3606 p = alloc(MAXPATHL);
3607 if (p != NULL)
3608 expand_env_esc(src, p, MAXPATHL, FALSE, one, NULL);
3609 return p;
3610}
3611
3612/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613 * Expand environment variable with path name.
3614 * "~/" is also expanded, using $HOME. For Unix "~user/" is expanded.
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003615 * Skips over "\ ", "\~" and "\$" (not for Win32 though).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616 * If anything fails no expansion is done and dst equals src.
3617 */
3618 void
3619expand_env(src, dst, dstlen)
3620 char_u *src; /* input string e.g. "$HOME/vim.hlp" */
3621 char_u *dst; /* where to put the result */
3622 int dstlen; /* maximum length of the result */
3623{
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003624 expand_env_esc(src, dst, dstlen, FALSE, FALSE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625}
3626
3627 void
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003628expand_env_esc(srcp, dst, dstlen, esc, one, startstr)
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003629 char_u *srcp; /* input string e.g. "$HOME/vim.hlp" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003630 char_u *dst; /* where to put the result */
3631 int dstlen; /* maximum length of the result */
3632 int esc; /* escape spaces in expanded variables */
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003633 int one; /* "srcp" is one file name */
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003634 char_u *startstr; /* start again after this (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635{
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003636 char_u *src;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637 char_u *tail;
3638 int c;
3639 char_u *var;
3640 int copy_char;
3641 int mustfree; /* var was allocated, need to free it later */
3642 int at_start = TRUE; /* at start of a name */
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003643 int startstr_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003645 if (startstr != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003646 startstr_len = (int)STRLEN(startstr);
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003647
3648 src = skipwhite(srcp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 --dstlen; /* leave one char space for "\," */
3650 while (*src && dstlen > 0)
3651 {
3652 copy_char = TRUE;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003653 if ((*src == '$'
3654#ifdef VMS
3655 && at_start
3656#endif
3657 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3659 || *src == '%'
3660#endif
3661 || (*src == '~' && at_start))
3662 {
3663 mustfree = FALSE;
3664
3665 /*
3666 * The variable name is copied into dst temporarily, because it may
3667 * be a string in read-only memory and a NUL needs to be appended.
3668 */
3669 if (*src != '~') /* environment var */
3670 {
3671 tail = src + 1;
3672 var = dst;
3673 c = dstlen - 1;
3674
3675#ifdef UNIX
3676 /* Unix has ${var-name} type environment vars */
3677 if (*tail == '{' && !vim_isIDc('{'))
3678 {
3679 tail++; /* ignore '{' */
3680 while (c-- > 0 && *tail && *tail != '}')
3681 *var++ = *tail++;
3682 }
3683 else
3684#endif
3685 {
3686 while (c-- > 0 && *tail != NUL && ((vim_isIDc(*tail))
3687#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3688 || (*src == '%' && *tail != '%')
3689#endif
3690 ))
3691 {
3692#ifdef OS2 /* env vars only in uppercase */
3693 *var++ = TOUPPER_LOC(*tail);
3694 tail++; /* toupper() may be a macro! */
3695#else
3696 *var++ = *tail++;
3697#endif
3698 }
3699 }
3700
3701#if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(UNIX)
3702# ifdef UNIX
3703 if (src[1] == '{' && *tail != '}')
3704# else
3705 if (*src == '%' && *tail != '%')
3706# endif
3707 var = NULL;
3708 else
3709 {
3710# ifdef UNIX
3711 if (src[1] == '{')
3712# else
3713 if (*src == '%')
3714#endif
3715 ++tail;
3716#endif
3717 *var = NUL;
3718 var = vim_getenv(dst, &mustfree);
3719#if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(UNIX)
3720 }
3721#endif
3722 }
3723 /* home directory */
3724 else if ( src[1] == NUL
3725 || vim_ispathsep(src[1])
3726 || vim_strchr((char_u *)" ,\t\n", src[1]) != NULL)
3727 {
3728 var = homedir;
3729 tail = src + 1;
3730 }
3731 else /* user directory */
3732 {
3733#if defined(UNIX) || (defined(VMS) && defined(USER_HOME))
3734 /*
3735 * Copy ~user to dst[], so we can put a NUL after it.
3736 */
3737 tail = src;
3738 var = dst;
3739 c = dstlen - 1;
3740 while ( c-- > 0
3741 && *tail
3742 && vim_isfilec(*tail)
3743 && !vim_ispathsep(*tail))
3744 *var++ = *tail++;
3745 *var = NUL;
3746# ifdef UNIX
3747 /*
3748 * If the system supports getpwnam(), use it.
3749 * Otherwise, or if getpwnam() fails, the shell is used to
3750 * expand ~user. This is slower and may fail if the shell
3751 * does not support ~user (old versions of /bin/sh).
3752 */
3753# if defined(HAVE_GETPWNAM) && defined(HAVE_PWD_H)
3754 {
3755 struct passwd *pw;
3756
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003757 /* Note: memory allocated by getpwnam() is never freed.
3758 * Calling endpwent() apparently doesn't help. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 pw = getpwnam((char *)dst + 1);
3760 if (pw != NULL)
3761 var = (char_u *)pw->pw_dir;
3762 else
3763 var = NULL;
3764 }
3765 if (var == NULL)
3766# endif
3767 {
3768 expand_T xpc;
3769
3770 ExpandInit(&xpc);
3771 xpc.xp_context = EXPAND_FILES;
3772 var = ExpandOne(&xpc, dst, NULL,
3773 WILD_ADD_SLASH|WILD_SILENT, WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 mustfree = TRUE;
3775 }
3776
3777# else /* !UNIX, thus VMS */
3778 /*
3779 * USER_HOME is a comma-separated list of
3780 * directories to search for the user account in.
3781 */
3782 {
3783 char_u test[MAXPATHL], paths[MAXPATHL];
3784 char_u *path, *next_path, *ptr;
3785 struct stat st;
3786
3787 STRCPY(paths, USER_HOME);
3788 next_path = paths;
3789 while (*next_path)
3790 {
3791 for (path = next_path; *next_path && *next_path != ',';
3792 next_path++);
3793 if (*next_path)
3794 *next_path++ = NUL;
3795 STRCPY(test, path);
3796 STRCAT(test, "/");
3797 STRCAT(test, dst + 1);
3798 if (mch_stat(test, &st) == 0)
3799 {
3800 var = alloc(STRLEN(test) + 1);
3801 STRCPY(var, test);
3802 mustfree = TRUE;
3803 break;
3804 }
3805 }
3806 }
3807# endif /* UNIX */
3808#else
3809 /* cannot expand user's home directory, so don't try */
3810 var = NULL;
3811 tail = (char_u *)""; /* for gcc */
3812#endif /* UNIX || VMS */
3813 }
3814
3815#ifdef BACKSLASH_IN_FILENAME
3816 /* If 'shellslash' is set change backslashes to forward slashes.
3817 * Can't use slash_adjust(), p_ssl may be set temporarily. */
3818 if (p_ssl && var != NULL && vim_strchr(var, '\\') != NULL)
3819 {
3820 char_u *p = vim_strsave(var);
3821
3822 if (p != NULL)
3823 {
3824 if (mustfree)
3825 vim_free(var);
3826 var = p;
3827 mustfree = TRUE;
3828 forward_slash(var);
3829 }
3830 }
3831#endif
3832
3833 /* If "var" contains white space, escape it with a backslash.
3834 * Required for ":e ~/tt" when $HOME includes a space. */
3835 if (esc && var != NULL && vim_strpbrk(var, (char_u *)" \t") != NULL)
3836 {
3837 char_u *p = vim_strsave_escaped(var, (char_u *)" \t");
3838
3839 if (p != NULL)
3840 {
3841 if (mustfree)
3842 vim_free(var);
3843 var = p;
3844 mustfree = TRUE;
3845 }
3846 }
3847
3848 if (var != NULL && *var != NUL
3849 && (STRLEN(var) + STRLEN(tail) + 1 < (unsigned)dstlen))
3850 {
3851 STRCPY(dst, var);
3852 dstlen -= (int)STRLEN(var);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003853 c = (int)STRLEN(var);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854 /* if var[] ends in a path separator and tail[] starts
3855 * with it, skip a character */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003856 if (*var != NUL && after_pathsep(dst, dst + c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA)
3858 && dst[-1] != ':'
3859#endif
3860 && vim_ispathsep(*tail))
3861 ++tail;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003862 dst += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003863 src = tail;
3864 copy_char = FALSE;
3865 }
3866 if (mustfree)
3867 vim_free(var);
3868 }
3869
3870 if (copy_char) /* copy at least one char */
3871 {
3872 /*
Bram Moolenaar25394022007-05-10 19:06:20 +00003873 * Recognize the start of a new name, for '~'.
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003874 * Don't do this when "one" is TRUE, to avoid expanding "~" in
3875 * ":edit foo ~ foo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876 */
3877 at_start = FALSE;
3878 if (src[0] == '\\' && src[1] != NUL)
3879 {
3880 *dst++ = *src++;
3881 --dstlen;
3882 }
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003883 else if ((src[0] == ' ' || src[0] == ',') && !one)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 at_start = TRUE;
3885 *dst++ = *src++;
3886 --dstlen;
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003887
3888 if (startstr != NULL && src - startstr_len >= srcp
3889 && STRNCMP(src - startstr_len, startstr, startstr_len) == 0)
3890 at_start = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891 }
3892 }
3893 *dst = NUL;
3894}
3895
3896/*
3897 * Vim's version of getenv().
3898 * Special handling of $HOME, $VIM and $VIMRUNTIME.
Bram Moolenaar2f6b0b82005-03-08 22:43:10 +00003899 * Also does ACP to 'enc' conversion for Win32.
Bram Moolenaarb453a532011-04-28 17:48:44 +02003900 * "mustfree" is set to TRUE when returned is allocated, it must be
3901 * initialized to FALSE by the caller.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902 */
3903 char_u *
3904vim_getenv(name, mustfree)
3905 char_u *name;
Bram Moolenaarb453a532011-04-28 17:48:44 +02003906 int *mustfree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907{
3908 char_u *p;
3909 char_u *pend;
3910 int vimruntime;
3911
3912#if defined(OS2) || defined(MSDOS) || defined(MSWIN)
3913 /* use "C:/" when $HOME is not set */
3914 if (STRCMP(name, "HOME") == 0)
3915 return homedir;
3916#endif
3917
3918 p = mch_getenv(name);
3919 if (p != NULL && *p == NUL) /* empty is the same as not set */
3920 p = NULL;
3921
3922 if (p != NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003923 {
3924#if defined(FEAT_MBYTE) && defined(WIN3264)
3925 if (enc_utf8)
3926 {
3927 int len;
Bram Moolenaarb453a532011-04-28 17:48:44 +02003928 char_u *pp = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003929
3930 /* Convert from active codepage to UTF-8. Other conversions are
3931 * not done, because they would fail for non-ASCII characters. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003932 acp_to_enc(p, (int)STRLEN(p), &pp, &len);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003933 if (pp != NULL)
3934 {
3935 p = pp;
3936 *mustfree = TRUE;
3937 }
3938 }
3939#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940 return p;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003941 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942
3943 vimruntime = (STRCMP(name, "VIMRUNTIME") == 0);
3944 if (!vimruntime && STRCMP(name, "VIM") != 0)
3945 return NULL;
3946
3947 /*
3948 * When expanding $VIMRUNTIME fails, try using $VIM/vim<version> or $VIM.
3949 * Don't do this when default_vimruntime_dir is non-empty.
3950 */
3951 if (vimruntime
3952#ifdef HAVE_PATHDEF
3953 && *default_vimruntime_dir == NUL
3954#endif
3955 )
3956 {
3957 p = mch_getenv((char_u *)"VIM");
3958 if (p != NULL && *p == NUL) /* empty is the same as not set */
3959 p = NULL;
3960 if (p != NULL)
3961 {
3962 p = vim_version_dir(p);
3963 if (p != NULL)
3964 *mustfree = TRUE;
3965 else
3966 p = mch_getenv((char_u *)"VIM");
Bram Moolenaar05159a02005-02-26 23:04:13 +00003967
3968#if defined(FEAT_MBYTE) && defined(WIN3264)
3969 if (enc_utf8)
3970 {
3971 int len;
Bram Moolenaarb453a532011-04-28 17:48:44 +02003972 char_u *pp = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003973
3974 /* Convert from active codepage to UTF-8. Other conversions
3975 * are not done, because they would fail for non-ASCII
3976 * characters. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003977 acp_to_enc(p, (int)STRLEN(p), &pp, &len);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003978 if (pp != NULL)
3979 {
Bram Moolenaarb453a532011-04-28 17:48:44 +02003980 if (*mustfree)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003981 vim_free(p);
3982 p = pp;
3983 *mustfree = TRUE;
3984 }
3985 }
3986#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987 }
3988 }
3989
3990 /*
3991 * When expanding $VIM or $VIMRUNTIME fails, try using:
3992 * - the directory name from 'helpfile' (unless it contains '$')
3993 * - the executable name from argv[0]
3994 */
3995 if (p == NULL)
3996 {
3997 if (p_hf != NULL && vim_strchr(p_hf, '$') == NULL)
3998 p = p_hf;
3999#ifdef USE_EXE_NAME
4000 /*
4001 * Use the name of the executable, obtained from argv[0].
4002 */
4003 else
4004 p = exe_name;
4005#endif
4006 if (p != NULL)
4007 {
4008 /* remove the file name */
4009 pend = gettail(p);
4010
4011 /* remove "doc/" from 'helpfile', if present */
4012 if (p == p_hf)
4013 pend = remove_tail(p, pend, (char_u *)"doc");
4014
4015#ifdef USE_EXE_NAME
4016# ifdef MACOS_X
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004017 /* remove "MacOS" from exe_name and add "Resources/vim" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018 if (p == exe_name)
4019 {
4020 char_u *pend1;
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004021 char_u *pnew;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004022
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004023 pend1 = remove_tail(p, pend, (char_u *)"MacOS");
4024 if (pend1 != pend)
4025 {
4026 pnew = alloc((unsigned)(pend1 - p) + 15);
4027 if (pnew != NULL)
4028 {
4029 STRNCPY(pnew, p, (pend1 - p));
4030 STRCPY(pnew + (pend1 - p), "Resources/vim");
4031 p = pnew;
4032 pend = p + STRLEN(p);
4033 }
4034 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035 }
4036# endif
4037 /* remove "src/" from exe_name, if present */
4038 if (p == exe_name)
4039 pend = remove_tail(p, pend, (char_u *)"src");
4040#endif
4041
4042 /* for $VIM, remove "runtime/" or "vim54/", if present */
4043 if (!vimruntime)
4044 {
4045 pend = remove_tail(p, pend, (char_u *)RUNTIME_DIRNAME);
4046 pend = remove_tail(p, pend, (char_u *)VIM_VERSION_NODOT);
4047 }
4048
4049 /* remove trailing path separator */
4050#ifndef MACOS_CLASSIC
4051 /* With MacOS path (with colons) the final colon is required */
Bram Moolenaare21877a2008-02-13 09:58:14 +00004052 /* to avoid confusion between absolute and relative path */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004053 if (pend > p && after_pathsep(p, pend))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054 --pend;
4055#endif
4056
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004057#ifdef MACOS_X
4058 if (p == exe_name || p == p_hf)
4059#endif
4060 /* check that the result is a directory name */
4061 p = vim_strnsave(p, (int)(pend - p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062
4063 if (p != NULL && !mch_isdir(p))
4064 {
4065 vim_free(p);
4066 p = NULL;
4067 }
4068 else
4069 {
4070#ifdef USE_EXE_NAME
4071 /* may add "/vim54" or "/runtime" if it exists */
4072 if (vimruntime && (pend = vim_version_dir(p)) != NULL)
4073 {
4074 vim_free(p);
4075 p = pend;
4076 }
4077#endif
4078 *mustfree = TRUE;
4079 }
4080 }
4081 }
4082
4083#ifdef HAVE_PATHDEF
4084 /* When there is a pathdef.c file we can use default_vim_dir and
4085 * default_vimruntime_dir */
4086 if (p == NULL)
4087 {
4088 /* Only use default_vimruntime_dir when it is not empty */
4089 if (vimruntime && *default_vimruntime_dir != NUL)
4090 {
4091 p = default_vimruntime_dir;
4092 *mustfree = FALSE;
4093 }
4094 else if (*default_vim_dir != NUL)
4095 {
4096 if (vimruntime && (p = vim_version_dir(default_vim_dir)) != NULL)
4097 *mustfree = TRUE;
4098 else
4099 {
4100 p = default_vim_dir;
4101 *mustfree = FALSE;
4102 }
4103 }
4104 }
4105#endif
4106
4107 /*
4108 * Set the environment variable, so that the new value can be found fast
4109 * next time, and others can also use it (e.g. Perl).
4110 */
4111 if (p != NULL)
4112 {
4113 if (vimruntime)
4114 {
4115 vim_setenv((char_u *)"VIMRUNTIME", p);
4116 didset_vimruntime = TRUE;
4117#ifdef FEAT_GETTEXT
4118 {
Bram Moolenaard6754642005-01-17 22:18:45 +00004119 char_u *buf = concat_str(p, (char_u *)"/lang");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120
4121 if (buf != NULL)
4122 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123 bindtextdomain(VIMPACKAGE, (char *)buf);
4124 vim_free(buf);
4125 }
4126 }
4127#endif
4128 }
4129 else
4130 {
4131 vim_setenv((char_u *)"VIM", p);
4132 didset_vim = TRUE;
4133 }
4134 }
4135 return p;
4136}
4137
4138/*
4139 * Check if the directory "vimdir/<version>" or "vimdir/runtime" exists.
4140 * Return NULL if not, return its name in allocated memory otherwise.
4141 */
4142 static char_u *
4143vim_version_dir(vimdir)
4144 char_u *vimdir;
4145{
4146 char_u *p;
4147
4148 if (vimdir == NULL || *vimdir == NUL)
4149 return NULL;
4150 p = concat_fnames(vimdir, (char_u *)VIM_VERSION_NODOT, TRUE);
4151 if (p != NULL && mch_isdir(p))
4152 return p;
4153 vim_free(p);
4154 p = concat_fnames(vimdir, (char_u *)RUNTIME_DIRNAME, TRUE);
4155 if (p != NULL && mch_isdir(p))
4156 return p;
4157 vim_free(p);
4158 return NULL;
4159}
4160
4161/*
4162 * If the string between "p" and "pend" ends in "name/", return "pend" minus
4163 * the length of "name/". Otherwise return "pend".
4164 */
4165 static char_u *
4166remove_tail(p, pend, name)
4167 char_u *p;
4168 char_u *pend;
4169 char_u *name;
4170{
4171 int len = (int)STRLEN(name) + 1;
4172 char_u *newend = pend - len;
4173
4174 if (newend >= p
4175 && fnamencmp(newend, name, len - 1) == 0
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004176 && (newend == p || after_pathsep(p, newend)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177 return newend;
4178 return pend;
4179}
4180
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 * Our portable version of setenv.
4183 */
4184 void
4185vim_setenv(name, val)
4186 char_u *name;
4187 char_u *val;
4188{
4189#ifdef HAVE_SETENV
4190 mch_setenv((char *)name, (char *)val, 1);
4191#else
4192 char_u *envbuf;
4193
4194 /*
4195 * Putenv does not copy the string, it has to remain
4196 * valid. The allocated memory will never be freed.
4197 */
4198 envbuf = alloc((unsigned)(STRLEN(name) + STRLEN(val) + 2));
4199 if (envbuf != NULL)
4200 {
4201 sprintf((char *)envbuf, "%s=%s", name, val);
4202 putenv((char *)envbuf);
4203 }
4204#endif
4205}
4206
4207#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4208/*
4209 * Function given to ExpandGeneric() to obtain an environment variable name.
4210 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211 char_u *
4212get_env_name(xp, idx)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004213 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004214 int idx;
4215{
4216# if defined(AMIGA) || defined(__MRC__) || defined(__SC__)
4217 /*
4218 * No environ[] on the Amiga and on the Mac (using MPW).
4219 */
4220 return NULL;
4221# else
4222# ifndef __WIN32__
4223 /* Borland C++ 5.2 has this in a header file. */
4224 extern char **environ;
4225# endif
Bram Moolenaar21cf8232004-07-16 20:18:37 +00004226# define ENVNAMELEN 100
4227 static char_u name[ENVNAMELEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228 char_u *str;
4229 int n;
4230
4231 str = (char_u *)environ[idx];
4232 if (str == NULL)
4233 return NULL;
4234
Bram Moolenaar21cf8232004-07-16 20:18:37 +00004235 for (n = 0; n < ENVNAMELEN - 1; ++n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236 {
4237 if (str[n] == '=' || str[n] == NUL)
4238 break;
4239 name[n] = str[n];
4240 }
4241 name[n] = NUL;
4242 return name;
4243# endif
4244}
4245#endif
4246
4247/*
4248 * Replace home directory by "~" in each space or comma separated file name in
4249 * 'src'.
4250 * If anything fails (except when out of space) dst equals src.
4251 */
4252 void
4253home_replace(buf, src, dst, dstlen, one)
4254 buf_T *buf; /* when not NULL, check for help files */
4255 char_u *src; /* input file name */
4256 char_u *dst; /* where to put the result */
4257 int dstlen; /* maximum length of the result */
4258 int one; /* if TRUE, only replace one file name, include
4259 spaces and commas in the file name. */
4260{
4261 size_t dirlen = 0, envlen = 0;
4262 size_t len;
4263 char_u *homedir_env;
4264 char_u *p;
4265
4266 if (src == NULL)
4267 {
4268 *dst = NUL;
4269 return;
4270 }
4271
4272 /*
4273 * If the file is a help file, remove the path completely.
4274 */
4275 if (buf != NULL && buf->b_help)
4276 {
4277 STRCPY(dst, gettail(src));
4278 return;
4279 }
4280
4281 /*
4282 * We check both the value of the $HOME environment variable and the
4283 * "real" home directory.
4284 */
4285 if (homedir != NULL)
4286 dirlen = STRLEN(homedir);
4287
4288#ifdef VMS
4289 homedir_env = mch_getenv((char_u *)"SYS$LOGIN");
4290#else
4291 homedir_env = mch_getenv((char_u *)"HOME");
4292#endif
4293
4294 if (homedir_env != NULL && *homedir_env == NUL)
4295 homedir_env = NULL;
4296 if (homedir_env != NULL)
4297 envlen = STRLEN(homedir_env);
4298
4299 if (!one)
4300 src = skipwhite(src);
4301 while (*src && dstlen > 0)
4302 {
4303 /*
4304 * Here we are at the beginning of a file name.
4305 * First, check to see if the beginning of the file name matches
4306 * $HOME or the "real" home directory. Check that there is a '/'
4307 * after the match (so that if e.g. the file is "/home/pieter/bla",
4308 * and the home directory is "/home/piet", the file does not end up
4309 * as "~er/bla" (which would seem to indicate the file "bla" in user
4310 * er's home directory)).
4311 */
4312 p = homedir;
4313 len = dirlen;
4314 for (;;)
4315 {
4316 if ( len
4317 && fnamencmp(src, p, len) == 0
4318 && (vim_ispathsep(src[len])
4319 || (!one && (src[len] == ',' || src[len] == ' '))
4320 || src[len] == NUL))
4321 {
4322 src += len;
4323 if (--dstlen > 0)
4324 *dst++ = '~';
4325
4326 /*
4327 * If it's just the home directory, add "/".
4328 */
4329 if (!vim_ispathsep(src[0]) && --dstlen > 0)
4330 *dst++ = '/';
4331 break;
4332 }
4333 if (p == homedir_env)
4334 break;
4335 p = homedir_env;
4336 len = envlen;
4337 }
4338
4339 /* if (!one) skip to separator: space or comma */
4340 while (*src && (one || (*src != ',' && *src != ' ')) && --dstlen > 0)
4341 *dst++ = *src++;
4342 /* skip separator */
4343 while ((*src == ' ' || *src == ',') && --dstlen > 0)
4344 *dst++ = *src++;
4345 }
4346 /* if (dstlen == 0) out of space, what to do??? */
4347
4348 *dst = NUL;
4349}
4350
4351/*
4352 * Like home_replace, store the replaced string in allocated memory.
4353 * When something fails, NULL is returned.
4354 */
4355 char_u *
4356home_replace_save(buf, src)
4357 buf_T *buf; /* when not NULL, check for help files */
4358 char_u *src; /* input file name */
4359{
4360 char_u *dst;
4361 unsigned len;
4362
4363 len = 3; /* space for "~/" and trailing NUL */
4364 if (src != NULL) /* just in case */
4365 len += (unsigned)STRLEN(src);
4366 dst = alloc(len);
4367 if (dst != NULL)
4368 home_replace(buf, src, dst, len, TRUE);
4369 return dst;
4370}
4371
4372/*
4373 * Compare two file names and return:
4374 * FPC_SAME if they both exist and are the same file.
4375 * FPC_SAMEX if they both don't exist and have the same file name.
4376 * FPC_DIFF if they both exist and are different files.
4377 * FPC_NOTX if they both don't exist.
4378 * FPC_DIFFX if one of them doesn't exist.
4379 * For the first name environment variables are expanded
4380 */
4381 int
4382fullpathcmp(s1, s2, checkname)
4383 char_u *s1, *s2;
4384 int checkname; /* when both don't exist, check file names */
4385{
4386#ifdef UNIX
4387 char_u exp1[MAXPATHL];
4388 char_u full1[MAXPATHL];
4389 char_u full2[MAXPATHL];
4390 struct stat st1, st2;
4391 int r1, r2;
4392
4393 expand_env(s1, exp1, MAXPATHL);
4394 r1 = mch_stat((char *)exp1, &st1);
4395 r2 = mch_stat((char *)s2, &st2);
4396 if (r1 != 0 && r2 != 0)
4397 {
4398 /* if mch_stat() doesn't work, may compare the names */
4399 if (checkname)
4400 {
4401 if (fnamecmp(exp1, s2) == 0)
4402 return FPC_SAMEX;
4403 r1 = vim_FullName(exp1, full1, MAXPATHL, FALSE);
4404 r2 = vim_FullName(s2, full2, MAXPATHL, FALSE);
4405 if (r1 == OK && r2 == OK && fnamecmp(full1, full2) == 0)
4406 return FPC_SAMEX;
4407 }
4408 return FPC_NOTX;
4409 }
4410 if (r1 != 0 || r2 != 0)
4411 return FPC_DIFFX;
4412 if (st1.st_dev == st2.st_dev && st1.st_ino == st2.st_ino)
4413 return FPC_SAME;
4414 return FPC_DIFF;
4415#else
4416 char_u *exp1; /* expanded s1 */
4417 char_u *full1; /* full path of s1 */
4418 char_u *full2; /* full path of s2 */
4419 int retval = FPC_DIFF;
4420 int r1, r2;
4421
4422 /* allocate one buffer to store three paths (alloc()/free() is slow!) */
4423 if ((exp1 = alloc(MAXPATHL * 3)) != NULL)
4424 {
4425 full1 = exp1 + MAXPATHL;
4426 full2 = full1 + MAXPATHL;
4427
4428 expand_env(s1, exp1, MAXPATHL);
4429 r1 = vim_FullName(exp1, full1, MAXPATHL, FALSE);
4430 r2 = vim_FullName(s2, full2, MAXPATHL, FALSE);
4431
4432 /* If vim_FullName() fails, the file probably doesn't exist. */
4433 if (r1 != OK && r2 != OK)
4434 {
4435 if (checkname && fnamecmp(exp1, s2) == 0)
4436 retval = FPC_SAMEX;
4437 else
4438 retval = FPC_NOTX;
4439 }
4440 else if (r1 != OK || r2 != OK)
4441 retval = FPC_DIFFX;
4442 else if (fnamecmp(full1, full2))
4443 retval = FPC_DIFF;
4444 else
4445 retval = FPC_SAME;
4446 vim_free(exp1);
4447 }
4448 return retval;
4449#endif
4450}
4451
4452/*
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00004453 * Get the tail of a path: the file name.
Bram Moolenaar31710262010-08-13 13:36:15 +02004454 * When the path ends in a path separator the tail is the NUL after it.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00004455 * Fail safe: never returns NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456 */
4457 char_u *
4458gettail(fname)
4459 char_u *fname;
4460{
4461 char_u *p1, *p2;
4462
4463 if (fname == NULL)
4464 return (char_u *)"";
4465 for (p1 = p2 = fname; *p2; ) /* find last part of path */
4466 {
4467 if (vim_ispathsep(*p2))
4468 p1 = p2 + 1;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004469 mb_ptr_adv(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 }
4471 return p1;
4472}
4473
Bram Moolenaar31710262010-08-13 13:36:15 +02004474#if defined(FEAT_SEARCHPATH)
4475static char_u *gettail_dir __ARGS((char_u *fname));
4476
4477/*
4478 * Return the end of the directory name, on the first path
4479 * separator:
4480 * "/path/file", "/path/dir/", "/path//dir", "/file"
4481 * ^ ^ ^ ^
4482 */
4483 static char_u *
4484gettail_dir(fname)
4485 char_u *fname;
4486{
4487 char_u *dir_end = fname;
4488 char_u *next_dir_end = fname;
4489 int look_for_sep = TRUE;
4490 char_u *p;
4491
4492 for (p = fname; *p != NUL; )
4493 {
4494 if (vim_ispathsep(*p))
4495 {
4496 if (look_for_sep)
4497 {
4498 next_dir_end = p;
4499 look_for_sep = FALSE;
4500 }
4501 }
4502 else
4503 {
4504 if (!look_for_sep)
4505 dir_end = next_dir_end;
4506 look_for_sep = TRUE;
4507 }
4508 mb_ptr_adv(p);
4509 }
4510 return dir_end;
4511}
4512#endif
4513
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004515 * Get pointer to tail of "fname", including path separators. Putting a NUL
4516 * here leaves the directory name. Takes care of "c:/" and "//".
4517 * Always returns a valid pointer.
4518 */
4519 char_u *
4520gettail_sep(fname)
4521 char_u *fname;
4522{
4523 char_u *p;
4524 char_u *t;
4525
4526 p = get_past_head(fname); /* don't remove the '/' from "c:/file" */
4527 t = gettail(fname);
4528 while (t > p && after_pathsep(fname, t))
4529 --t;
4530#ifdef VMS
4531 /* path separator is part of the path */
4532 ++t;
4533#endif
4534 return t;
4535}
4536
4537/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538 * get the next path component (just after the next path separator).
4539 */
4540 char_u *
4541getnextcomp(fname)
4542 char_u *fname;
4543{
4544 while (*fname && !vim_ispathsep(*fname))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004545 mb_ptr_adv(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546 if (*fname)
4547 ++fname;
4548 return fname;
4549}
4550
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551/*
4552 * Get a pointer to one character past the head of a path name.
4553 * Unix: after "/"; DOS: after "c:\"; Amiga: after "disk:/"; Mac: no head.
4554 * If there is no head, path is returned.
4555 */
4556 char_u *
4557get_past_head(path)
4558 char_u *path;
4559{
4560 char_u *retval;
4561
4562#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
4563 /* may skip "c:" */
4564 if (isalpha(path[0]) && path[1] == ':')
4565 retval = path + 2;
4566 else
4567 retval = path;
4568#else
4569# if defined(AMIGA)
4570 /* may skip "label:" */
4571 retval = vim_strchr(path, ':');
4572 if (retval == NULL)
4573 retval = path;
4574# else /* Unix */
4575 retval = path;
4576# endif
4577#endif
4578
4579 while (vim_ispathsep(*retval))
4580 ++retval;
4581
4582 return retval;
4583}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584
4585/*
4586 * return TRUE if 'c' is a path separator.
4587 */
4588 int
4589vim_ispathsep(c)
4590 int c;
4591{
Bram Moolenaare60acc12011-05-10 16:41:25 +02004592#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593 return (c == '/'); /* UNIX has ':' inside file names */
Bram Moolenaare60acc12011-05-10 16:41:25 +02004594#else
4595# ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596 return (c == ':' || c == '/' || c == '\\');
Bram Moolenaare60acc12011-05-10 16:41:25 +02004597# else
4598# ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599 /* server"user passwd"::device:[full.path.name]fname.extension;version" */
4600 return (c == ':' || c == '[' || c == ']' || c == '/'
4601 || c == '<' || c == '>' || c == '"' );
Bram Moolenaare60acc12011-05-10 16:41:25 +02004602# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004603 return (c == ':' || c == '/');
Bram Moolenaare60acc12011-05-10 16:41:25 +02004604# endif /* VMS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605# endif
Bram Moolenaare60acc12011-05-10 16:41:25 +02004606#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607}
4608
4609#if defined(FEAT_SEARCHPATH) || defined(PROTO)
4610/*
4611 * return TRUE if 'c' is a path list separator.
4612 */
4613 int
4614vim_ispathlistsep(c)
4615 int c;
4616{
4617#ifdef UNIX
4618 return (c == ':');
4619#else
Bram Moolenaar25394022007-05-10 19:06:20 +00004620 return (c == ';'); /* might not be right for every system... */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621#endif
4622}
4623#endif
4624
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004625#if defined(FEAT_GUI_TABLINE) || defined(FEAT_WINDOWS) \
4626 || defined(FEAT_EVAL) || defined(PROTO)
4627/*
4628 * Shorten the path of a file from "~/foo/../.bar/fname" to "~/f/../.b/fname"
4629 * It's done in-place.
4630 */
4631 void
4632shorten_dir(str)
4633 char_u *str;
4634{
4635 char_u *tail, *s, *d;
4636 int skip = FALSE;
4637
4638 tail = gettail(str);
4639 d = str;
4640 for (s = str; ; ++s)
4641 {
4642 if (s >= tail) /* copy the whole tail */
4643 {
4644 *d++ = *s;
4645 if (*s == NUL)
4646 break;
4647 }
4648 else if (vim_ispathsep(*s)) /* copy '/' and next char */
4649 {
4650 *d++ = *s;
4651 skip = FALSE;
4652 }
4653 else if (!skip)
4654 {
4655 *d++ = *s; /* copy next char */
4656 if (*s != '~' && *s != '.') /* and leading "~" and "." */
4657 skip = TRUE;
4658# ifdef FEAT_MBYTE
4659 if (has_mbyte)
4660 {
4661 int l = mb_ptr2len(s);
4662
4663 while (--l > 0)
Bram Moolenaarb6baca52006-08-15 20:24:14 +00004664 *d++ = *++s;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004665 }
4666# endif
4667 }
4668 }
4669}
4670#endif
4671
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004672/*
4673 * Return TRUE if the directory of "fname" exists, FALSE otherwise.
4674 * Also returns TRUE if there is no directory name.
4675 * "fname" must be writable!.
4676 */
4677 int
4678dir_of_file_exists(fname)
4679 char_u *fname;
4680{
4681 char_u *p;
4682 int c;
4683 int retval;
4684
4685 p = gettail_sep(fname);
4686 if (p == fname)
4687 return TRUE;
4688 c = *p;
4689 *p = NUL;
4690 retval = mch_isdir(fname);
4691 *p = c;
4692 return retval;
4693}
4694
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695#if (defined(CASE_INSENSITIVE_FILENAME) && defined(BACKSLASH_IN_FILENAME)) \
4696 || defined(PROTO)
4697/*
4698 * Versions of fnamecmp() and fnamencmp() that handle '/' and '\' equally.
4699 */
4700 int
4701vim_fnamecmp(x, y)
4702 char_u *x, *y;
4703{
4704 return vim_fnamencmp(x, y, MAXPATHL);
4705}
4706
4707 int
4708vim_fnamencmp(x, y, len)
4709 char_u *x, *y;
4710 size_t len;
4711{
4712 while (len > 0 && *x && *y)
4713 {
4714 if (TOLOWER_LOC(*x) != TOLOWER_LOC(*y)
4715 && !(*x == '/' && *y == '\\')
4716 && !(*x == '\\' && *y == '/'))
4717 break;
4718 ++x;
4719 ++y;
4720 --len;
4721 }
4722 if (len == 0)
4723 return 0;
4724 return (*x - *y);
4725}
4726#endif
4727
4728/*
4729 * Concatenate file names fname1 and fname2 into allocated memory.
Bram Moolenaar25394022007-05-10 19:06:20 +00004730 * Only add a '/' or '\\' when 'sep' is TRUE and it is necessary.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731 */
4732 char_u *
4733concat_fnames(fname1, fname2, sep)
4734 char_u *fname1;
4735 char_u *fname2;
4736 int sep;
4737{
4738 char_u *dest;
4739
4740 dest = alloc((unsigned)(STRLEN(fname1) + STRLEN(fname2) + 3));
4741 if (dest != NULL)
4742 {
4743 STRCPY(dest, fname1);
4744 if (sep)
4745 add_pathsep(dest);
4746 STRCAT(dest, fname2);
4747 }
4748 return dest;
4749}
4750
Bram Moolenaard6754642005-01-17 22:18:45 +00004751/*
4752 * Concatenate two strings and return the result in allocated memory.
4753 * Returns NULL when out of memory.
4754 */
4755 char_u *
4756concat_str(str1, str2)
4757 char_u *str1;
4758 char_u *str2;
4759{
4760 char_u *dest;
4761 size_t l = STRLEN(str1);
4762
4763 dest = alloc((unsigned)(l + STRLEN(str2) + 1L));
4764 if (dest != NULL)
4765 {
4766 STRCPY(dest, str1);
4767 STRCPY(dest + l, str2);
4768 }
4769 return dest;
4770}
Bram Moolenaard6754642005-01-17 22:18:45 +00004771
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772/*
4773 * Add a path separator to a file name, unless it already ends in a path
4774 * separator.
4775 */
4776 void
4777add_pathsep(p)
4778 char_u *p;
4779{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004780 if (*p != NUL && !after_pathsep(p, p + STRLEN(p)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781 STRCAT(p, PATHSEPSTR);
4782}
4783
4784/*
4785 * FullName_save - Make an allocated copy of a full file name.
4786 * Returns NULL when out of memory.
4787 */
4788 char_u *
4789FullName_save(fname, force)
4790 char_u *fname;
4791 int force; /* force expansion, even when it already looks
4792 like a full path name */
4793{
4794 char_u *buf;
4795 char_u *new_fname = NULL;
4796
4797 if (fname == NULL)
4798 return NULL;
4799
4800 buf = alloc((unsigned)MAXPATHL);
4801 if (buf != NULL)
4802 {
4803 if (vim_FullName(fname, buf, MAXPATHL, force) != FAIL)
4804 new_fname = vim_strsave(buf);
4805 else
4806 new_fname = vim_strsave(fname);
4807 vim_free(buf);
4808 }
4809 return new_fname;
4810}
4811
4812#if defined(FEAT_CINDENT) || defined(FEAT_SYN_HL)
4813
4814static char_u *skip_string __ARGS((char_u *p));
4815
4816/*
4817 * Find the start of a comment, not knowing if we are in a comment right now.
4818 * Search starts at w_cursor.lnum and goes backwards.
4819 */
4820 pos_T *
4821find_start_comment(ind_maxcomment) /* XXX */
4822 int ind_maxcomment;
4823{
4824 pos_T *pos;
4825 char_u *line;
4826 char_u *p;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00004827 int cur_maxcomment = ind_maxcomment;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00004829 for (;;)
4830 {
4831 pos = findmatchlimit(NULL, '*', FM_BACKWARD, cur_maxcomment);
4832 if (pos == NULL)
4833 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00004835 /*
4836 * Check if the comment start we found is inside a string.
4837 * If it is then restrict the search to below this line and try again.
4838 */
4839 line = ml_get(pos->lnum);
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004840 for (p = line; *p && (colnr_T)(p - line) < pos->col; ++p)
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00004841 p = skip_string(p);
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004842 if ((colnr_T)(p - line) <= pos->col)
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00004843 break;
4844 cur_maxcomment = curwin->w_cursor.lnum - pos->lnum - 1;
4845 if (cur_maxcomment <= 0)
4846 {
4847 pos = NULL;
4848 break;
4849 }
4850 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851 return pos;
4852}
4853
4854/*
4855 * Skip to the end of a "string" and a 'c' character.
4856 * If there is no string or character, return argument unmodified.
4857 */
4858 static char_u *
4859skip_string(p)
4860 char_u *p;
4861{
4862 int i;
4863
4864 /*
4865 * We loop, because strings may be concatenated: "date""time".
4866 */
4867 for ( ; ; ++p)
4868 {
4869 if (p[0] == '\'') /* 'c' or '\n' or '\000' */
4870 {
4871 if (!p[1]) /* ' at end of line */
4872 break;
4873 i = 2;
4874 if (p[1] == '\\') /* '\n' or '\000' */
4875 {
4876 ++i;
4877 while (vim_isdigit(p[i - 1])) /* '\000' */
4878 ++i;
4879 }
4880 if (p[i] == '\'') /* check for trailing ' */
4881 {
4882 p += i;
4883 continue;
4884 }
4885 }
4886 else if (p[0] == '"') /* start of string */
4887 {
4888 for (++p; p[0]; ++p)
4889 {
4890 if (p[0] == '\\' && p[1] != NUL)
4891 ++p;
4892 else if (p[0] == '"') /* end of string */
4893 break;
4894 }
4895 if (p[0] == '"')
4896 continue;
4897 }
4898 break; /* no string found */
4899 }
4900 if (!*p)
4901 --p; /* backup from NUL */
4902 return p;
4903}
4904#endif /* FEAT_CINDENT || FEAT_SYN_HL */
4905
4906#if defined(FEAT_CINDENT) || defined(PROTO)
4907
4908/*
4909 * Do C or expression indenting on the current line.
4910 */
4911 void
4912do_c_expr_indent()
4913{
4914# ifdef FEAT_EVAL
4915 if (*curbuf->b_p_inde != NUL)
4916 fixthisline(get_expr_indent);
4917 else
4918# endif
4919 fixthisline(get_c_indent);
4920}
4921
4922/*
4923 * Functions for C-indenting.
4924 * Most of this originally comes from Eric Fischer.
4925 */
4926/*
4927 * Below "XXX" means that this function may unlock the current line.
4928 */
4929
4930static char_u *cin_skipcomment __ARGS((char_u *));
4931static int cin_nocode __ARGS((char_u *));
4932static pos_T *find_line_comment __ARGS((void));
4933static int cin_islabel_skip __ARGS((char_u **));
4934static int cin_isdefault __ARGS((char_u *));
4935static char_u *after_label __ARGS((char_u *l));
4936static int get_indent_nolabel __ARGS((linenr_T lnum));
4937static int skip_label __ARGS((linenr_T, char_u **pp, int ind_maxcomment));
4938static int cin_first_id_amount __ARGS((void));
4939static int cin_get_equal_amount __ARGS((linenr_T lnum));
4940static int cin_ispreproc __ARGS((char_u *));
4941static int cin_ispreproc_cont __ARGS((char_u **pp, linenr_T *lnump));
4942static int cin_iscomment __ARGS((char_u *));
4943static int cin_islinecomment __ARGS((char_u *));
4944static int cin_isterminated __ARGS((char_u *, int, int));
4945static int cin_isinit __ARGS((void));
4946static int cin_isfuncdecl __ARGS((char_u **, linenr_T));
4947static int cin_isif __ARGS((char_u *));
4948static int cin_iselse __ARGS((char_u *));
4949static int cin_isdo __ARGS((char_u *));
4950static int cin_iswhileofdo __ARGS((char_u *, linenr_T, int));
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00004951static int cin_iswhileofdo_end __ARGS((int terminated, int ind_maxparen, int ind_maxcomment));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952static int cin_isbreak __ARGS((char_u *));
Bram Moolenaare7c56862007-08-04 10:14:52 +00004953static int cin_is_cpp_baseclass __ARGS((colnr_T *col));
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004954static int get_baseclass_amount __ARGS((int col, int ind_maxparen, int ind_maxcomment, int ind_cpp_baseclass));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955static int cin_ends_in __ARGS((char_u *, char_u *, char_u *));
4956static int cin_skip2pos __ARGS((pos_T *trypos));
4957static pos_T *find_start_brace __ARGS((int));
4958static pos_T *find_match_paren __ARGS((int, int));
4959static int corr_ind_maxparen __ARGS((int ind_maxparen, pos_T *startpos));
4960static int find_last_paren __ARGS((char_u *l, int start, int end));
4961static int find_match __ARGS((int lookfor, linenr_T ourscope, int ind_maxparen, int ind_maxcomment));
Bram Moolenaared38b0a2011-05-25 15:16:18 +02004962static int cin_is_cpp_namespace __ARGS((char_u *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004963
Bram Moolenaar39353fd2007-03-27 09:02:11 +00004964static int ind_hash_comment = 0; /* # starts a comment */
4965
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966/*
4967 * Skip over white space and C comments within the line.
Bram Moolenaar39353fd2007-03-27 09:02:11 +00004968 * Also skip over Perl/shell comments if desired.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 */
4970 static char_u *
4971cin_skipcomment(s)
4972 char_u *s;
4973{
4974 while (*s)
4975 {
Bram Moolenaar39353fd2007-03-27 09:02:11 +00004976 char_u *prev_s = s;
4977
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978 s = skipwhite(s);
Bram Moolenaar39353fd2007-03-27 09:02:11 +00004979
4980 /* Perl/shell # comment comment continues until eol. Require a space
4981 * before # to avoid recognizing $#array. */
4982 if (ind_hash_comment != 0 && s != prev_s && *s == '#')
4983 {
4984 s += STRLEN(s);
4985 break;
4986 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 if (*s != '/')
4988 break;
4989 ++s;
4990 if (*s == '/') /* slash-slash comment continues till eol */
4991 {
4992 s += STRLEN(s);
4993 break;
4994 }
4995 if (*s != '*')
4996 break;
4997 for (++s; *s; ++s) /* skip slash-star comment */
4998 if (s[0] == '*' && s[1] == '/')
4999 {
5000 s += 2;
5001 break;
5002 }
5003 }
5004 return s;
5005}
5006
5007/*
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005008 * Return TRUE if there is no code at *s. White space and comments are
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 * not considered code.
5010 */
5011 static int
5012cin_nocode(s)
5013 char_u *s;
5014{
5015 return *cin_skipcomment(s) == NUL;
5016}
5017
5018/*
5019 * Check previous lines for a "//" line comment, skipping over blank lines.
5020 */
5021 static pos_T *
5022find_line_comment() /* XXX */
5023{
5024 static pos_T pos;
5025 char_u *line;
5026 char_u *p;
5027
5028 pos = curwin->w_cursor;
5029 while (--pos.lnum > 0)
5030 {
5031 line = ml_get(pos.lnum);
5032 p = skipwhite(line);
5033 if (cin_islinecomment(p))
5034 {
5035 pos.col = (int)(p - line);
5036 return &pos;
5037 }
5038 if (*p != NUL)
5039 break;
5040 }
5041 return NULL;
5042}
5043
5044/*
5045 * Check if string matches "label:"; move to character after ':' if true.
5046 */
5047 static int
5048cin_islabel_skip(s)
5049 char_u **s;
5050{
5051 if (!vim_isIDc(**s)) /* need at least one ID character */
5052 return FALSE;
5053
5054 while (vim_isIDc(**s))
5055 (*s)++;
5056
5057 *s = cin_skipcomment(*s);
5058
5059 /* "::" is not a label, it's C++ */
5060 return (**s == ':' && *++*s != ':');
5061}
5062
5063/*
5064 * Recognize a label: "label:".
5065 * Note: curwin->w_cursor must be where we are looking for the label.
5066 */
5067 int
5068cin_islabel(ind_maxcomment) /* XXX */
5069 int ind_maxcomment;
5070{
5071 char_u *s;
5072
5073 s = cin_skipcomment(ml_get_curline());
5074
5075 /*
5076 * Exclude "default" from labels, since it should be indented
5077 * like a switch label. Same for C++ scope declarations.
5078 */
5079 if (cin_isdefault(s))
5080 return FALSE;
5081 if (cin_isscopedecl(s))
5082 return FALSE;
5083
5084 if (cin_islabel_skip(&s))
5085 {
5086 /*
5087 * Only accept a label if the previous line is terminated or is a case
5088 * label.
5089 */
5090 pos_T cursor_save;
5091 pos_T *trypos;
5092 char_u *line;
5093
5094 cursor_save = curwin->w_cursor;
5095 while (curwin->w_cursor.lnum > 1)
5096 {
5097 --curwin->w_cursor.lnum;
5098
5099 /*
5100 * If we're in a comment now, skip to the start of the comment.
5101 */
5102 curwin->w_cursor.col = 0;
5103 if ((trypos = find_start_comment(ind_maxcomment)) != NULL) /* XXX */
5104 curwin->w_cursor = *trypos;
5105
5106 line = ml_get_curline();
5107 if (cin_ispreproc(line)) /* ignore #defines, #if, etc. */
5108 continue;
5109 if (*(line = cin_skipcomment(line)) == NUL)
5110 continue;
5111
5112 curwin->w_cursor = cursor_save;
5113 if (cin_isterminated(line, TRUE, FALSE)
5114 || cin_isscopedecl(line)
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005115 || cin_iscase(line, TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005116 || (cin_islabel_skip(&line) && cin_nocode(line)))
5117 return TRUE;
5118 return FALSE;
5119 }
5120 curwin->w_cursor = cursor_save;
5121 return TRUE; /* label at start of file??? */
5122 }
5123 return FALSE;
5124}
5125
5126/*
5127 * Recognize structure initialization and enumerations.
5128 * Q&D-Implementation:
5129 * check for "=" at end or "[typedef] enum" at beginning of line.
5130 */
5131 static int
5132cin_isinit(void)
5133{
5134 char_u *s;
5135
5136 s = cin_skipcomment(ml_get_curline());
5137
5138 if (STRNCMP(s, "typedef", 7) == 0 && !vim_isIDc(s[7]))
5139 s = cin_skipcomment(s + 7);
5140
Bram Moolenaara5285652011-12-14 20:05:21 +01005141 if (STRNCMP(s, "static", 6) == 0 && !vim_isIDc(s[6]))
5142 s = cin_skipcomment(s + 6);
5143
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144 if (STRNCMP(s, "enum", 4) == 0 && !vim_isIDc(s[4]))
5145 return TRUE;
5146
5147 if (cin_ends_in(s, (char_u *)"=", (char_u *)"{"))
5148 return TRUE;
5149
5150 return FALSE;
5151}
5152
5153/*
5154 * Recognize a switch label: "case .*:" or "default:".
5155 */
5156 int
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005157cin_iscase(s, strict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005158 char_u *s;
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005159 int strict; /* Allow relaxed check of case statement for JS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160{
5161 s = cin_skipcomment(s);
5162 if (STRNCMP(s, "case", 4) == 0 && !vim_isIDc(s[4]))
5163 {
5164 for (s += 4; *s; ++s)
5165 {
5166 s = cin_skipcomment(s);
5167 if (*s == ':')
5168 {
5169 if (s[1] == ':') /* skip over "::" for C++ */
5170 ++s;
5171 else
5172 return TRUE;
5173 }
5174 if (*s == '\'' && s[1] && s[2] == '\'')
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005175 s += 2; /* skip over ':' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176 else if (*s == '/' && (s[1] == '*' || s[1] == '/'))
5177 return FALSE; /* stop at comment */
5178 else if (*s == '"')
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005179 {
5180 /* JS etc. */
5181 if (strict)
5182 return FALSE; /* stop at string */
5183 else
5184 return TRUE;
5185 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005186 }
5187 return FALSE;
5188 }
5189
5190 if (cin_isdefault(s))
5191 return TRUE;
5192 return FALSE;
5193}
5194
5195/*
5196 * Recognize a "default" switch label.
5197 */
5198 static int
5199cin_isdefault(s)
5200 char_u *s;
5201{
5202 return (STRNCMP(s, "default", 7) == 0
5203 && *(s = cin_skipcomment(s + 7)) == ':'
5204 && s[1] != ':');
5205}
5206
5207/*
Bram Moolenaar1a509df2010-08-01 17:59:57 +02005208 * Recognize a "public/private/protected" scope declaration label.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005209 */
5210 int
5211cin_isscopedecl(s)
5212 char_u *s;
5213{
5214 int i;
5215
5216 s = cin_skipcomment(s);
5217 if (STRNCMP(s, "public", 6) == 0)
5218 i = 6;
5219 else if (STRNCMP(s, "protected", 9) == 0)
5220 i = 9;
5221 else if (STRNCMP(s, "private", 7) == 0)
5222 i = 7;
5223 else
5224 return FALSE;
5225 return (*(s = cin_skipcomment(s + i)) == ':' && s[1] != ':');
5226}
5227
Bram Moolenaared38b0a2011-05-25 15:16:18 +02005228/* Maximum number of lines to search back for a "namespace" line. */
5229#define FIND_NAMESPACE_LIM 20
5230
5231/*
5232 * Recognize a "namespace" scope declaration.
5233 */
5234 static int
5235cin_is_cpp_namespace(s)
5236 char_u *s;
5237{
5238 char_u *p;
5239 int has_name = FALSE;
5240
5241 s = cin_skipcomment(s);
5242 if (STRNCMP(s, "namespace", 9) == 0 && (s[9] == NUL || !vim_iswordc(s[9])))
5243 {
5244 p = cin_skipcomment(skipwhite(s + 9));
5245 while (*p != NUL)
5246 {
5247 if (vim_iswhite(*p))
5248 {
5249 has_name = TRUE; /* found end of a name */
5250 p = cin_skipcomment(skipwhite(p));
5251 }
5252 else if (*p == '{')
5253 {
5254 break;
5255 }
5256 else if (vim_iswordc(*p))
5257 {
5258 if (has_name)
5259 return FALSE; /* word character after skipping past name */
5260 ++p;
5261 }
5262 else
5263 {
5264 return FALSE;
5265 }
5266 }
5267 return TRUE;
5268 }
5269 return FALSE;
5270}
5271
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272/*
5273 * Return a pointer to the first non-empty non-comment character after a ':'.
5274 * Return NULL if not found.
5275 * case 234: a = b;
5276 * ^
5277 */
5278 static char_u *
5279after_label(l)
5280 char_u *l;
5281{
5282 for ( ; *l; ++l)
5283 {
5284 if (*l == ':')
5285 {
5286 if (l[1] == ':') /* skip over "::" for C++ */
5287 ++l;
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005288 else if (!cin_iscase(l + 1, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005289 break;
5290 }
5291 else if (*l == '\'' && l[1] && l[2] == '\'')
5292 l += 2; /* skip over 'x' */
5293 }
5294 if (*l == NUL)
5295 return NULL;
5296 l = cin_skipcomment(l + 1);
5297 if (*l == NUL)
5298 return NULL;
5299 return l;
5300}
5301
5302/*
5303 * Get indent of line "lnum", skipping a label.
5304 * Return 0 if there is nothing after the label.
5305 */
5306 static int
5307get_indent_nolabel(lnum) /* XXX */
5308 linenr_T lnum;
5309{
5310 char_u *l;
5311 pos_T fp;
5312 colnr_T col;
5313 char_u *p;
5314
5315 l = ml_get(lnum);
5316 p = after_label(l);
5317 if (p == NULL)
5318 return 0;
5319
5320 fp.col = (colnr_T)(p - l);
5321 fp.lnum = lnum;
5322 getvcol(curwin, &fp, &col, NULL, NULL);
5323 return (int)col;
5324}
5325
5326/*
5327 * Find indent for line "lnum", ignoring any case or jump label.
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005328 * Also return a pointer to the text (after the label) in "pp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329 * label: if (asdf && asdfasdf)
5330 * ^
5331 */
5332 static int
5333skip_label(lnum, pp, ind_maxcomment)
5334 linenr_T lnum;
5335 char_u **pp;
5336 int ind_maxcomment;
5337{
5338 char_u *l;
5339 int amount;
5340 pos_T cursor_save;
5341
5342 cursor_save = curwin->w_cursor;
5343 curwin->w_cursor.lnum = lnum;
5344 l = ml_get_curline();
5345 /* XXX */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005346 if (cin_iscase(l, FALSE) || cin_isscopedecl(l)
5347 || cin_islabel(ind_maxcomment))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005348 {
5349 amount = get_indent_nolabel(lnum);
5350 l = after_label(ml_get_curline());
5351 if (l == NULL) /* just in case */
5352 l = ml_get_curline();
5353 }
5354 else
5355 {
5356 amount = get_indent();
5357 l = ml_get_curline();
5358 }
5359 *pp = l;
5360
5361 curwin->w_cursor = cursor_save;
5362 return amount;
5363}
5364
5365/*
5366 * Return the indent of the first variable name after a type in a declaration.
5367 * int a, indent of "a"
5368 * static struct foo b, indent of "b"
5369 * enum bla c, indent of "c"
5370 * Returns zero when it doesn't look like a declaration.
5371 */
5372 static int
5373cin_first_id_amount()
5374{
5375 char_u *line, *p, *s;
5376 int len;
5377 pos_T fp;
5378 colnr_T col;
5379
5380 line = ml_get_curline();
5381 p = skipwhite(line);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005382 len = (int)(skiptowhite(p) - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 if (len == 6 && STRNCMP(p, "static", 6) == 0)
5384 {
5385 p = skipwhite(p + 6);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00005386 len = (int)(skiptowhite(p) - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005387 }
5388 if (len == 6 && STRNCMP(p, "struct", 6) == 0)
5389 p = skipwhite(p + 6);
5390 else if (len == 4 && STRNCMP(p, "enum", 4) == 0)
5391 p = skipwhite(p + 4);
5392 else if ((len == 8 && STRNCMP(p, "unsigned", 8) == 0)
5393 || (len == 6 && STRNCMP(p, "signed", 6) == 0))
5394 {
5395 s = skipwhite(p + len);
5396 if ((STRNCMP(s, "int", 3) == 0 && vim_iswhite(s[3]))
5397 || (STRNCMP(s, "long", 4) == 0 && vim_iswhite(s[4]))
5398 || (STRNCMP(s, "short", 5) == 0 && vim_iswhite(s[5]))
5399 || (STRNCMP(s, "char", 4) == 0 && vim_iswhite(s[4])))
5400 p = s;
5401 }
5402 for (len = 0; vim_isIDc(p[len]); ++len)
5403 ;
5404 if (len == 0 || !vim_iswhite(p[len]) || cin_nocode(p))
5405 return 0;
5406
5407 p = skipwhite(p + len);
5408 fp.lnum = curwin->w_cursor.lnum;
5409 fp.col = (colnr_T)(p - line);
5410 getvcol(curwin, &fp, &col, NULL, NULL);
5411 return (int)col;
5412}
5413
5414/*
5415 * Return the indent of the first non-blank after an equal sign.
5416 * char *foo = "here";
5417 * Return zero if no (useful) equal sign found.
5418 * Return -1 if the line above "lnum" ends in a backslash.
5419 * foo = "asdf\
5420 * asdf\
5421 * here";
5422 */
5423 static int
5424cin_get_equal_amount(lnum)
5425 linenr_T lnum;
5426{
5427 char_u *line;
5428 char_u *s;
5429 colnr_T col;
5430 pos_T fp;
5431
5432 if (lnum > 1)
5433 {
5434 line = ml_get(lnum - 1);
5435 if (*line != NUL && line[STRLEN(line) - 1] == '\\')
5436 return -1;
5437 }
5438
5439 line = s = ml_get(lnum);
5440 while (*s != NUL && vim_strchr((char_u *)"=;{}\"'", *s) == NULL)
5441 {
5442 if (cin_iscomment(s)) /* ignore comments */
5443 s = cin_skipcomment(s);
5444 else
5445 ++s;
5446 }
5447 if (*s != '=')
5448 return 0;
5449
5450 s = skipwhite(s + 1);
5451 if (cin_nocode(s))
5452 return 0;
5453
5454 if (*s == '"') /* nice alignment for continued strings */
5455 ++s;
5456
5457 fp.lnum = lnum;
5458 fp.col = (colnr_T)(s - line);
5459 getvcol(curwin, &fp, &col, NULL, NULL);
5460 return (int)col;
5461}
5462
5463/*
5464 * Recognize a preprocessor statement: Any line that starts with '#'.
5465 */
5466 static int
5467cin_ispreproc(s)
5468 char_u *s;
5469{
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02005470 if (*skipwhite(s) == '#')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 return TRUE;
5472 return FALSE;
5473}
5474
5475/*
5476 * Return TRUE if line "*pp" at "*lnump" is a preprocessor statement or a
5477 * continuation line of a preprocessor statement. Decrease "*lnump" to the
5478 * start and return the line in "*pp".
5479 */
5480 static int
5481cin_ispreproc_cont(pp, lnump)
5482 char_u **pp;
5483 linenr_T *lnump;
5484{
5485 char_u *line = *pp;
5486 linenr_T lnum = *lnump;
5487 int retval = FALSE;
5488
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00005489 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490 {
5491 if (cin_ispreproc(line))
5492 {
5493 retval = TRUE;
5494 *lnump = lnum;
5495 break;
5496 }
5497 if (lnum == 1)
5498 break;
5499 line = ml_get(--lnum);
5500 if (*line == NUL || line[STRLEN(line) - 1] != '\\')
5501 break;
5502 }
5503
5504 if (lnum != *lnump)
5505 *pp = ml_get(*lnump);
5506 return retval;
5507}
5508
5509/*
5510 * Recognize the start of a C or C++ comment.
5511 */
5512 static int
5513cin_iscomment(p)
5514 char_u *p;
5515{
5516 return (p[0] == '/' && (p[1] == '*' || p[1] == '/'));
5517}
5518
5519/*
5520 * Recognize the start of a "//" comment.
5521 */
5522 static int
5523cin_islinecomment(p)
5524 char_u *p;
5525{
5526 return (p[0] == '/' && p[1] == '/');
5527}
5528
5529/*
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005530 * Recognize a line that starts with '{' or '}', or ends with ';', ',', '{' or
5531 * '}'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532 * Don't consider "} else" a terminated line.
Bram Moolenaar496f9512011-05-19 16:35:09 +02005533 * If a line begins with an "else", only consider it terminated if no unmatched
5534 * opening braces follow (handle "else { foo();" correctly).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005535 * Return the character terminating the line (ending char's have precedence if
5536 * both apply in order to determine initializations).
5537 */
5538 static int
5539cin_isterminated(s, incl_open, incl_comma)
5540 char_u *s;
5541 int incl_open; /* include '{' at the end as terminator */
5542 int incl_comma; /* recognize a trailing comma */
5543{
Bram Moolenaar496f9512011-05-19 16:35:09 +02005544 char_u found_start = 0;
5545 unsigned n_open = 0;
5546 int is_else = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547
5548 s = cin_skipcomment(s);
5549
5550 if (*s == '{' || (*s == '}' && !cin_iselse(s)))
5551 found_start = *s;
5552
Bram Moolenaar496f9512011-05-19 16:35:09 +02005553 if (!found_start)
5554 is_else = cin_iselse(s);
5555
Bram Moolenaar071d4272004-06-13 20:20:40 +00005556 while (*s)
5557 {
5558 /* skip over comments, "" strings and 'c'haracters */
5559 s = skip_string(cin_skipcomment(s));
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005560 if (*s == '}' && n_open > 0)
5561 --n_open;
Bram Moolenaar496f9512011-05-19 16:35:09 +02005562 if ((!is_else || n_open == 0)
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005563 && (*s == ';' || *s == '}' || (incl_comma && *s == ','))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 && cin_nocode(s + 1))
5565 return *s;
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005566 else if (*s == '{')
5567 {
5568 if (incl_open && cin_nocode(s + 1))
5569 return *s;
5570 else
5571 ++n_open;
5572 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005573
5574 if (*s)
5575 s++;
5576 }
5577 return found_start;
5578}
5579
5580/*
5581 * Recognize the basic picture of a function declaration -- it needs to
5582 * have an open paren somewhere and a close paren at the end of the line and
5583 * no semicolons anywhere.
5584 * When a line ends in a comma we continue looking in the next line.
5585 * "sp" points to a string with the line. When looking at other lines it must
5586 * be restored to the line. When it's NULL fetch lines here.
5587 * "lnum" is where we start looking.
5588 */
5589 static int
5590cin_isfuncdecl(sp, first_lnum)
5591 char_u **sp;
5592 linenr_T first_lnum;
5593{
5594 char_u *s;
5595 linenr_T lnum = first_lnum;
5596 int retval = FALSE;
5597
5598 if (sp == NULL)
5599 s = ml_get(lnum);
5600 else
5601 s = *sp;
5602
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02005603 /* Ignore line starting with #. */
5604 if (cin_ispreproc(s))
5605 return FALSE;
5606
Bram Moolenaar071d4272004-06-13 20:20:40 +00005607 while (*s && *s != '(' && *s != ';' && *s != '\'' && *s != '"')
5608 {
5609 if (cin_iscomment(s)) /* ignore comments */
5610 s = cin_skipcomment(s);
5611 else
5612 ++s;
5613 }
5614 if (*s != '(')
5615 return FALSE; /* ';', ' or " before any () or no '(' */
5616
5617 while (*s && *s != ';' && *s != '\'' && *s != '"')
5618 {
5619 if (*s == ')' && cin_nocode(s + 1))
5620 {
5621 /* ')' at the end: may have found a match
5622 * Check for he previous line not to end in a backslash:
5623 * #if defined(x) && \
5624 * defined(y)
5625 */
5626 lnum = first_lnum - 1;
5627 s = ml_get(lnum);
5628 if (*s == NUL || s[STRLEN(s) - 1] != '\\')
5629 retval = TRUE;
5630 goto done;
5631 }
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02005632 if ((*s == ',' && cin_nocode(s + 1)) || s[1] == NUL || cin_nocode(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005633 {
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02005634 int comma = (*s == ',');
5635
5636 /* ',' at the end: continue looking in the next line.
5637 * At the end: check for ',' in the next line, for this style:
5638 * func(arg1
5639 * , arg2) */
5640 for (;;)
5641 {
5642 if (lnum >= curbuf->b_ml.ml_line_count)
5643 break;
5644 s = ml_get(++lnum);
5645 if (!cin_ispreproc(s))
5646 break;
5647 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005648 if (lnum >= curbuf->b_ml.ml_line_count)
5649 break;
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02005650 /* Require a comma at end of the line or a comma or ')' at the
5651 * start of next line. */
5652 s = skipwhite(s);
5653 if (!comma && *s != ',' && *s != ')')
5654 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005655 }
5656 else if (cin_iscomment(s)) /* ignore comments */
5657 s = cin_skipcomment(s);
5658 else
5659 ++s;
5660 }
5661
5662done:
5663 if (lnum != first_lnum && sp != NULL)
5664 *sp = ml_get(first_lnum);
5665
5666 return retval;
5667}
5668
5669 static int
5670cin_isif(p)
5671 char_u *p;
5672{
5673 return (STRNCMP(p, "if", 2) == 0 && !vim_isIDc(p[2]));
5674}
5675
5676 static int
5677cin_iselse(p)
5678 char_u *p;
5679{
5680 if (*p == '}') /* accept "} else" */
5681 p = cin_skipcomment(p + 1);
5682 return (STRNCMP(p, "else", 4) == 0 && !vim_isIDc(p[4]));
5683}
5684
5685 static int
5686cin_isdo(p)
5687 char_u *p;
5688{
5689 return (STRNCMP(p, "do", 2) == 0 && !vim_isIDc(p[2]));
5690}
5691
5692/*
5693 * Check if this is a "while" that should have a matching "do".
5694 * We only accept a "while (condition) ;", with only white space between the
5695 * ')' and ';'. The condition may be spread over several lines.
5696 */
5697 static int
5698cin_iswhileofdo(p, lnum, ind_maxparen) /* XXX */
5699 char_u *p;
5700 linenr_T lnum;
5701 int ind_maxparen;
5702{
5703 pos_T cursor_save;
5704 pos_T *trypos;
5705 int retval = FALSE;
5706
5707 p = cin_skipcomment(p);
5708 if (*p == '}') /* accept "} while (cond);" */
5709 p = cin_skipcomment(p + 1);
5710 if (STRNCMP(p, "while", 5) == 0 && !vim_isIDc(p[5]))
5711 {
5712 cursor_save = curwin->w_cursor;
5713 curwin->w_cursor.lnum = lnum;
5714 curwin->w_cursor.col = 0;
5715 p = ml_get_curline();
5716 while (*p && *p != 'w') /* skip any '}', until the 'w' of the "while" */
5717 {
5718 ++p;
5719 ++curwin->w_cursor.col;
5720 }
5721 if ((trypos = findmatchlimit(NULL, 0, 0, ind_maxparen)) != NULL
5722 && *cin_skipcomment(ml_get_pos(trypos) + 1) == ';')
5723 retval = TRUE;
5724 curwin->w_cursor = cursor_save;
5725 }
5726 return retval;
5727}
5728
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005729/*
5730 * Return TRUE if we are at the end of a do-while.
5731 * do
5732 * nothing;
5733 * while (foo
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00005734 * && bar); <-- here
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005735 * Adjust the cursor to the line with "while".
5736 */
5737 static int
5738cin_iswhileofdo_end(terminated, ind_maxparen, ind_maxcomment)
5739 int terminated;
5740 int ind_maxparen;
5741 int ind_maxcomment;
5742{
5743 char_u *line;
5744 char_u *p;
5745 char_u *s;
5746 pos_T *trypos;
5747 int i;
5748
5749 if (terminated != ';') /* there must be a ';' at the end */
5750 return FALSE;
5751
5752 p = line = ml_get_curline();
5753 while (*p != NUL)
5754 {
5755 p = cin_skipcomment(p);
5756 if (*p == ')')
5757 {
5758 s = skipwhite(p + 1);
5759 if (*s == ';' && cin_nocode(s + 1))
5760 {
5761 /* Found ");" at end of the line, now check there is "while"
5762 * before the matching '('. XXX */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005763 i = (int)(p - line);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005764 curwin->w_cursor.col = i;
5765 trypos = find_match_paren(ind_maxparen, ind_maxcomment);
5766 if (trypos != NULL)
5767 {
5768 s = cin_skipcomment(ml_get(trypos->lnum));
5769 if (*s == '}') /* accept "} while (cond);" */
5770 s = cin_skipcomment(s + 1);
5771 if (STRNCMP(s, "while", 5) == 0 && !vim_isIDc(s[5]))
5772 {
5773 curwin->w_cursor.lnum = trypos->lnum;
5774 return TRUE;
5775 }
5776 }
5777
5778 /* Searching may have made "line" invalid, get it again. */
5779 line = ml_get_curline();
5780 p = line + i;
5781 }
5782 }
5783 if (*p != NUL)
5784 ++p;
5785 }
5786 return FALSE;
5787}
5788
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789 static int
5790cin_isbreak(p)
5791 char_u *p;
5792{
5793 return (STRNCMP(p, "break", 5) == 0 && !vim_isIDc(p[5]));
5794}
5795
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005796/*
5797 * Find the position of a C++ base-class declaration or
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798 * constructor-initialization. eg:
5799 *
5800 * class MyClass :
5801 * baseClass <-- here
5802 * class MyClass : public baseClass,
5803 * anotherBaseClass <-- here (should probably lineup ??)
5804 * MyClass::MyClass(...) :
5805 * baseClass(...) <-- here (constructor-initialization)
Bram Moolenaar18144c82006-04-12 21:52:12 +00005806 *
5807 * This is a lot of guessing. Watch out for "cond ? func() : foo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808 */
5809 static int
Bram Moolenaare7c56862007-08-04 10:14:52 +00005810cin_is_cpp_baseclass(col)
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005811 colnr_T *col; /* return: column to align with */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005812{
5813 char_u *s;
5814 int class_or_struct, lookfor_ctor_init, cpp_base_class;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005815 linenr_T lnum = curwin->w_cursor.lnum;
Bram Moolenaare7c56862007-08-04 10:14:52 +00005816 char_u *line = ml_get_curline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817
5818 *col = 0;
5819
Bram Moolenaar21cf8232004-07-16 20:18:37 +00005820 s = skipwhite(line);
5821 if (*s == '#') /* skip #define FOO x ? (x) : x */
5822 return FALSE;
5823 s = cin_skipcomment(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005824 if (*s == NUL)
5825 return FALSE;
5826
5827 cpp_base_class = lookfor_ctor_init = class_or_struct = FALSE;
5828
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005829 /* Search for a line starting with '#', empty, ending in ';' or containing
5830 * '{' or '}' and start below it. This handles the following situations:
5831 * a = cond ?
5832 * func() :
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00005833 * asdf;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005834 * func::foo()
5835 * : something
5836 * {}
5837 * Foo::Foo (int one, int two)
5838 * : something(4),
5839 * somethingelse(3)
5840 * {}
5841 */
5842 while (lnum > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005843 {
Bram Moolenaare7c56862007-08-04 10:14:52 +00005844 line = ml_get(lnum - 1);
5845 s = skipwhite(line);
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005846 if (*s == '#' || *s == NUL)
5847 break;
5848 while (*s != NUL)
5849 {
5850 s = cin_skipcomment(s);
5851 if (*s == '{' || *s == '}'
5852 || (*s == ';' && cin_nocode(s + 1)))
5853 break;
5854 if (*s != NUL)
5855 ++s;
5856 }
5857 if (*s != NUL)
5858 break;
5859 --lnum;
5860 }
5861
Bram Moolenaare7c56862007-08-04 10:14:52 +00005862 line = ml_get(lnum);
5863 s = cin_skipcomment(line);
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005864 for (;;)
5865 {
5866 if (*s == NUL)
5867 {
5868 if (lnum == curwin->w_cursor.lnum)
5869 break;
5870 /* Continue in the cursor line. */
Bram Moolenaare7c56862007-08-04 10:14:52 +00005871 line = ml_get(++lnum);
5872 s = cin_skipcomment(line);
5873 if (*s == NUL)
5874 continue;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005875 }
5876
Bram Moolenaaraede6ce2011-05-10 11:56:30 +02005877 if (s[0] == '"')
5878 s = skip_string(s) + 1;
5879 else if (s[0] == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005880 {
5881 if (s[1] == ':')
5882 {
5883 /* skip double colon. It can't be a constructor
5884 * initialization any more */
5885 lookfor_ctor_init = FALSE;
5886 s = cin_skipcomment(s + 2);
5887 }
5888 else if (lookfor_ctor_init || class_or_struct)
5889 {
5890 /* we have something found, that looks like the start of
Bram Moolenaare21877a2008-02-13 09:58:14 +00005891 * cpp-base-class-declaration or constructor-initialization */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005892 cpp_base_class = TRUE;
5893 lookfor_ctor_init = class_or_struct = FALSE;
5894 *col = 0;
5895 s = cin_skipcomment(s + 1);
5896 }
5897 else
5898 s = cin_skipcomment(s + 1);
5899 }
5900 else if ((STRNCMP(s, "class", 5) == 0 && !vim_isIDc(s[5]))
5901 || (STRNCMP(s, "struct", 6) == 0 && !vim_isIDc(s[6])))
5902 {
5903 class_or_struct = TRUE;
5904 lookfor_ctor_init = FALSE;
5905
5906 if (*s == 'c')
5907 s = cin_skipcomment(s + 5);
5908 else
5909 s = cin_skipcomment(s + 6);
5910 }
5911 else
5912 {
5913 if (s[0] == '{' || s[0] == '}' || s[0] == ';')
5914 {
5915 cpp_base_class = lookfor_ctor_init = class_or_struct = FALSE;
5916 }
5917 else if (s[0] == ')')
5918 {
5919 /* Constructor-initialization is assumed if we come across
5920 * something like "):" */
5921 class_or_struct = FALSE;
5922 lookfor_ctor_init = TRUE;
5923 }
Bram Moolenaar18144c82006-04-12 21:52:12 +00005924 else if (s[0] == '?')
5925 {
5926 /* Avoid seeing '() :' after '?' as constructor init. */
5927 return FALSE;
5928 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005929 else if (!vim_isIDc(s[0]))
5930 {
5931 /* if it is not an identifier, we are wrong */
5932 class_or_struct = FALSE;
5933 lookfor_ctor_init = FALSE;
5934 }
5935 else if (*col == 0)
5936 {
5937 /* it can't be a constructor-initialization any more */
5938 lookfor_ctor_init = FALSE;
5939
5940 /* the first statement starts here: lineup with this one... */
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005941 if (cpp_base_class)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942 *col = (colnr_T)(s - line);
5943 }
5944
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005945 /* When the line ends in a comma don't align with it. */
5946 if (lnum == curwin->w_cursor.lnum && *s == ',' && cin_nocode(s + 1))
5947 *col = 0;
5948
Bram Moolenaar071d4272004-06-13 20:20:40 +00005949 s = cin_skipcomment(s + 1);
5950 }
5951 }
5952
5953 return cpp_base_class;
5954}
5955
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005956 static int
5957get_baseclass_amount(col, ind_maxparen, ind_maxcomment, ind_cpp_baseclass)
5958 int col;
5959 int ind_maxparen;
5960 int ind_maxcomment;
5961 int ind_cpp_baseclass;
5962{
5963 int amount;
5964 colnr_T vcol;
5965 pos_T *trypos;
5966
5967 if (col == 0)
5968 {
5969 amount = get_indent();
5970 if (find_last_paren(ml_get_curline(), '(', ')')
5971 && (trypos = find_match_paren(ind_maxparen,
5972 ind_maxcomment)) != NULL)
5973 amount = get_indent_lnum(trypos->lnum); /* XXX */
5974 if (!cin_ends_in(ml_get_curline(), (char_u *)",", NULL))
5975 amount += ind_cpp_baseclass;
5976 }
5977 else
5978 {
5979 curwin->w_cursor.col = col;
5980 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
5981 amount = (int)vcol;
5982 }
5983 if (amount < ind_cpp_baseclass)
5984 amount = ind_cpp_baseclass;
5985 return amount;
5986}
5987
Bram Moolenaar071d4272004-06-13 20:20:40 +00005988/*
5989 * Return TRUE if string "s" ends with the string "find", possibly followed by
5990 * white space and comments. Skip strings and comments.
5991 * Ignore "ignore" after "find" if it's not NULL.
5992 */
5993 static int
5994cin_ends_in(s, find, ignore)
5995 char_u *s;
5996 char_u *find;
5997 char_u *ignore;
5998{
5999 char_u *p = s;
6000 char_u *r;
6001 int len = (int)STRLEN(find);
6002
6003 while (*p != NUL)
6004 {
6005 p = cin_skipcomment(p);
6006 if (STRNCMP(p, find, len) == 0)
6007 {
6008 r = skipwhite(p + len);
6009 if (ignore != NULL && STRNCMP(r, ignore, STRLEN(ignore)) == 0)
6010 r = skipwhite(r + STRLEN(ignore));
6011 if (cin_nocode(r))
6012 return TRUE;
6013 }
6014 if (*p != NUL)
6015 ++p;
6016 }
6017 return FALSE;
6018}
6019
6020/*
6021 * Skip strings, chars and comments until at or past "trypos".
6022 * Return the column found.
6023 */
6024 static int
6025cin_skip2pos(trypos)
6026 pos_T *trypos;
6027{
6028 char_u *line;
6029 char_u *p;
6030
6031 p = line = ml_get(trypos->lnum);
6032 while (*p && (colnr_T)(p - line) < trypos->col)
6033 {
6034 if (cin_iscomment(p))
6035 p = cin_skipcomment(p);
6036 else
6037 {
6038 p = skip_string(p);
6039 ++p;
6040 }
6041 }
6042 return (int)(p - line);
6043}
6044
6045/*
6046 * Find the '{' at the start of the block we are in.
6047 * Return NULL if no match found.
6048 * Ignore a '{' that is in a comment, makes indenting the next three lines
6049 * work. */
6050/* foo() */
6051/* { */
6052/* } */
6053
6054 static pos_T *
6055find_start_brace(ind_maxcomment) /* XXX */
6056 int ind_maxcomment;
6057{
6058 pos_T cursor_save;
6059 pos_T *trypos;
6060 pos_T *pos;
6061 static pos_T pos_copy;
6062
6063 cursor_save = curwin->w_cursor;
6064 while ((trypos = findmatchlimit(NULL, '{', FM_BLOCKSTOP, 0)) != NULL)
6065 {
6066 pos_copy = *trypos; /* copy pos_T, next findmatch will change it */
6067 trypos = &pos_copy;
6068 curwin->w_cursor = *trypos;
6069 pos = NULL;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006070 /* ignore the { if it's in a // or / * * / comment */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006071 if ((colnr_T)cin_skip2pos(trypos) == trypos->col
6072 && (pos = find_start_comment(ind_maxcomment)) == NULL) /* XXX */
6073 break;
6074 if (pos != NULL)
6075 curwin->w_cursor.lnum = pos->lnum;
6076 }
6077 curwin->w_cursor = cursor_save;
6078 return trypos;
6079}
6080
6081/*
6082 * Find the matching '(', failing if it is in a comment.
6083 * Return NULL of no match found.
6084 */
6085 static pos_T *
6086find_match_paren(ind_maxparen, ind_maxcomment) /* XXX */
6087 int ind_maxparen;
6088 int ind_maxcomment;
6089{
6090 pos_T cursor_save;
6091 pos_T *trypos;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006092 static pos_T pos_copy;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006093
6094 cursor_save = curwin->w_cursor;
6095 if ((trypos = findmatchlimit(NULL, '(', 0, ind_maxparen)) != NULL)
6096 {
6097 /* check if the ( is in a // comment */
6098 if ((colnr_T)cin_skip2pos(trypos) > trypos->col)
6099 trypos = NULL;
6100 else
6101 {
6102 pos_copy = *trypos; /* copy trypos, findmatch will change it */
6103 trypos = &pos_copy;
6104 curwin->w_cursor = *trypos;
6105 if (find_start_comment(ind_maxcomment) != NULL) /* XXX */
6106 trypos = NULL;
6107 }
6108 }
6109 curwin->w_cursor = cursor_save;
6110 return trypos;
6111}
6112
6113/*
6114 * Return ind_maxparen corrected for the difference in line number between the
6115 * cursor position and "startpos". This makes sure that searching for a
6116 * matching paren above the cursor line doesn't find a match because of
6117 * looking a few lines further.
6118 */
6119 static int
6120corr_ind_maxparen(ind_maxparen, startpos)
6121 int ind_maxparen;
6122 pos_T *startpos;
6123{
6124 long n = (long)startpos->lnum - (long)curwin->w_cursor.lnum;
6125
6126 if (n > 0 && n < ind_maxparen / 2)
6127 return ind_maxparen - (int)n;
6128 return ind_maxparen;
6129}
6130
6131/*
6132 * Set w_cursor.col to the column number of the last unmatched ')' or '{' in
Bram Moolenaar6d8f9c62011-11-30 13:03:28 +01006133 * line "l". "l" must point to the start of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006134 */
6135 static int
6136find_last_paren(l, start, end)
6137 char_u *l;
6138 int start, end;
6139{
6140 int i;
6141 int retval = FALSE;
6142 int open_count = 0;
6143
6144 curwin->w_cursor.col = 0; /* default is start of line */
6145
Bram Moolenaar6d8f9c62011-11-30 13:03:28 +01006146 for (i = 0; l[i] != NUL; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006147 {
6148 i = (int)(cin_skipcomment(l + i) - l); /* ignore parens in comments */
6149 i = (int)(skip_string(l + i) - l); /* ignore parens in quotes */
6150 if (l[i] == start)
6151 ++open_count;
6152 else if (l[i] == end)
6153 {
6154 if (open_count > 0)
6155 --open_count;
6156 else
6157 {
6158 curwin->w_cursor.col = i;
6159 retval = TRUE;
6160 }
6161 }
6162 }
6163 return retval;
6164}
6165
6166 int
6167get_c_indent()
6168{
6169 /*
6170 * spaces from a block's opening brace the prevailing indent for that
6171 * block should be
6172 */
6173 int ind_level = curbuf->b_p_sw;
6174
6175 /*
6176 * spaces from the edge of the line an open brace that's at the end of a
6177 * line is imagined to be.
6178 */
6179 int ind_open_imag = 0;
6180
6181 /*
Bram Moolenaar1a509df2010-08-01 17:59:57 +02006182 * spaces from the prevailing indent for a line that is not preceded by
Bram Moolenaar071d4272004-06-13 20:20:40 +00006183 * an opening brace.
6184 */
6185 int ind_no_brace = 0;
6186
6187 /*
6188 * column where the first { of a function should be located }
6189 */
6190 int ind_first_open = 0;
6191
6192 /*
6193 * spaces from the prevailing indent a leftmost open brace should be
6194 * located
6195 */
6196 int ind_open_extra = 0;
6197
6198 /*
6199 * spaces from the matching open brace (real location for one at the left
6200 * edge; imaginary location from one that ends a line) the matching close
6201 * brace should be located
6202 */
6203 int ind_close_extra = 0;
6204
6205 /*
6206 * spaces from the edge of the line an open brace sitting in the leftmost
6207 * column is imagined to be
6208 */
6209 int ind_open_left_imag = 0;
6210
6211 /*
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006212 * Spaces jump labels should be shifted to the left if N is non-negative,
6213 * otherwise the jump label will be put to column 1.
6214 */
6215 int ind_jump_label = -1;
6216
6217 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006218 * spaces from the switch() indent a "case xx" label should be located
6219 */
6220 int ind_case = curbuf->b_p_sw;
6221
6222 /*
6223 * spaces from the "case xx:" code after a switch() should be located
6224 */
6225 int ind_case_code = curbuf->b_p_sw;
6226
6227 /*
6228 * lineup break at end of case in switch() with case label
6229 */
6230 int ind_case_break = 0;
6231
6232 /*
6233 * spaces from the class declaration indent a scope declaration label
6234 * should be located
6235 */
6236 int ind_scopedecl = curbuf->b_p_sw;
6237
6238 /*
6239 * spaces from the scope declaration label code should be located
6240 */
6241 int ind_scopedecl_code = curbuf->b_p_sw;
6242
6243 /*
6244 * amount K&R-style parameters should be indented
6245 */
6246 int ind_param = curbuf->b_p_sw;
6247
6248 /*
6249 * amount a function type spec should be indented
6250 */
6251 int ind_func_type = curbuf->b_p_sw;
6252
6253 /*
6254 * amount a cpp base class declaration or constructor initialization
6255 * should be indented
6256 */
6257 int ind_cpp_baseclass = curbuf->b_p_sw;
6258
6259 /*
6260 * additional spaces beyond the prevailing indent a continuation line
6261 * should be located
6262 */
6263 int ind_continuation = curbuf->b_p_sw;
6264
6265 /*
6266 * spaces from the indent of the line with an unclosed parentheses
6267 */
6268 int ind_unclosed = curbuf->b_p_sw * 2;
6269
6270 /*
6271 * spaces from the indent of the line with an unclosed parentheses, which
6272 * itself is also unclosed
6273 */
6274 int ind_unclosed2 = curbuf->b_p_sw;
6275
6276 /*
6277 * suppress ignoring spaces from the indent of a line starting with an
6278 * unclosed parentheses.
6279 */
6280 int ind_unclosed_noignore = 0;
6281
6282 /*
6283 * If the opening paren is the last nonwhite character on the line, and
6284 * ind_unclosed_wrapped is nonzero, use this indent relative to the outer
6285 * context (for very long lines).
6286 */
6287 int ind_unclosed_wrapped = 0;
6288
6289 /*
6290 * suppress ignoring white space when lining up with the character after
6291 * an unclosed parentheses.
6292 */
6293 int ind_unclosed_whiteok = 0;
6294
6295 /*
6296 * indent a closing parentheses under the line start of the matching
6297 * opening parentheses.
6298 */
6299 int ind_matching_paren = 0;
6300
6301 /*
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006302 * indent a closing parentheses under the previous line.
6303 */
6304 int ind_paren_prev = 0;
6305
6306 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006307 * Extra indent for comments.
6308 */
6309 int ind_comment = 0;
6310
6311 /*
6312 * spaces from the comment opener when there is nothing after it.
6313 */
6314 int ind_in_comment = 3;
6315
6316 /*
6317 * boolean: if non-zero, use ind_in_comment even if there is something
6318 * after the comment opener.
6319 */
6320 int ind_in_comment2 = 0;
6321
6322 /*
6323 * max lines to search for an open paren
6324 */
6325 int ind_maxparen = 20;
6326
6327 /*
6328 * max lines to search for an open comment
6329 */
6330 int ind_maxcomment = 70;
6331
6332 /*
6333 * handle braces for java code
6334 */
6335 int ind_java = 0;
6336
6337 /*
Bram Moolenaar3acfc302010-07-11 17:23:02 +02006338 * not to confuse JS object properties with labels
6339 */
6340 int ind_js = 0;
6341
6342 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006343 * handle blocked cases correctly
6344 */
6345 int ind_keep_case_label = 0;
6346
Bram Moolenaared38b0a2011-05-25 15:16:18 +02006347 /*
6348 * handle C++ namespace
6349 */
6350 int ind_cpp_namespace = 0;
6351
Bram Moolenaar071d4272004-06-13 20:20:40 +00006352 pos_T cur_curpos;
6353 int amount;
6354 int scope_amount;
Bram Moolenaarb21e5842006-04-16 18:30:08 +00006355 int cur_amount = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006356 colnr_T col;
6357 char_u *theline;
6358 char_u *linecopy;
6359 pos_T *trypos;
6360 pos_T *tryposBrace = NULL;
6361 pos_T our_paren_pos;
6362 char_u *start;
6363 int start_brace;
Bram Moolenaare21877a2008-02-13 09:58:14 +00006364#define BRACE_IN_COL0 1 /* '{' is in column 0 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006365#define BRACE_AT_START 2 /* '{' is at start of line */
6366#define BRACE_AT_END 3 /* '{' is at end of line */
6367 linenr_T ourscope;
6368 char_u *l;
6369 char_u *look;
6370 char_u terminated;
6371 int lookfor;
6372#define LOOKFOR_INITIAL 0
6373#define LOOKFOR_IF 1
6374#define LOOKFOR_DO 2
6375#define LOOKFOR_CASE 3
6376#define LOOKFOR_ANY 4
6377#define LOOKFOR_TERM 5
6378#define LOOKFOR_UNTERM 6
6379#define LOOKFOR_SCOPEDECL 7
6380#define LOOKFOR_NOBREAK 8
6381#define LOOKFOR_CPP_BASECLASS 9
6382#define LOOKFOR_ENUM_OR_INIT 10
6383
6384 int whilelevel;
6385 linenr_T lnum;
6386 char_u *options;
6387 int fraction = 0; /* init for GCC */
6388 int divider;
6389 int n;
6390 int iscase;
6391 int lookfor_break;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02006392 int lookfor_cpp_namespace = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006393 int cont_amount = 0; /* amount for continuation line */
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006394 int original_line_islabel;
Bram Moolenaare79d1532011-10-04 18:03:47 +02006395 int added_to_amount = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006396
6397 for (options = curbuf->b_p_cino; *options; )
6398 {
6399 l = options++;
6400 if (*options == '-')
6401 ++options;
6402 n = getdigits(&options);
6403 divider = 0;
6404 if (*options == '.') /* ".5s" means a fraction */
6405 {
6406 fraction = atol((char *)++options);
6407 while (VIM_ISDIGIT(*options))
6408 {
6409 ++options;
6410 if (divider)
6411 divider *= 10;
6412 else
6413 divider = 10;
6414 }
6415 }
6416 if (*options == 's') /* "2s" means two times 'shiftwidth' */
6417 {
6418 if (n == 0 && fraction == 0)
6419 n = curbuf->b_p_sw; /* just "s" is one 'shiftwidth' */
6420 else
6421 {
6422 n *= curbuf->b_p_sw;
6423 if (divider)
6424 n += (curbuf->b_p_sw * fraction + divider / 2) / divider;
6425 }
6426 ++options;
6427 }
6428 if (l[1] == '-')
6429 n = -n;
6430 /* When adding an entry here, also update the default 'cinoptions' in
Bram Moolenaar39353fd2007-03-27 09:02:11 +00006431 * doc/indent.txt, and add explanation for it! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006432 switch (*l)
6433 {
6434 case '>': ind_level = n; break;
6435 case 'e': ind_open_imag = n; break;
6436 case 'n': ind_no_brace = n; break;
6437 case 'f': ind_first_open = n; break;
6438 case '{': ind_open_extra = n; break;
6439 case '}': ind_close_extra = n; break;
6440 case '^': ind_open_left_imag = n; break;
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006441 case 'L': ind_jump_label = n; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006442 case ':': ind_case = n; break;
6443 case '=': ind_case_code = n; break;
6444 case 'b': ind_case_break = n; break;
6445 case 'p': ind_param = n; break;
6446 case 't': ind_func_type = n; break;
6447 case '/': ind_comment = n; break;
6448 case 'c': ind_in_comment = n; break;
6449 case 'C': ind_in_comment2 = n; break;
6450 case 'i': ind_cpp_baseclass = n; break;
6451 case '+': ind_continuation = n; break;
6452 case '(': ind_unclosed = n; break;
6453 case 'u': ind_unclosed2 = n; break;
6454 case 'U': ind_unclosed_noignore = n; break;
6455 case 'W': ind_unclosed_wrapped = n; break;
6456 case 'w': ind_unclosed_whiteok = n; break;
6457 case 'm': ind_matching_paren = n; break;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006458 case 'M': ind_paren_prev = n; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006459 case ')': ind_maxparen = n; break;
6460 case '*': ind_maxcomment = n; break;
6461 case 'g': ind_scopedecl = n; break;
6462 case 'h': ind_scopedecl_code = n; break;
6463 case 'j': ind_java = n; break;
Bram Moolenaar3acfc302010-07-11 17:23:02 +02006464 case 'J': ind_js = n; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006465 case 'l': ind_keep_case_label = n; break;
Bram Moolenaar39353fd2007-03-27 09:02:11 +00006466 case '#': ind_hash_comment = n; break;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02006467 case 'N': ind_cpp_namespace = n; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006468 }
Bram Moolenaardfdf3c42010-03-23 18:22:46 +01006469 if (*options == ',')
6470 ++options;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006471 }
6472
6473 /* remember where the cursor was when we started */
6474 cur_curpos = curwin->w_cursor;
6475
Bram Moolenaar3acfc302010-07-11 17:23:02 +02006476 /* if we are at line 1 0 is fine, right? */
6477 if (cur_curpos.lnum == 1)
6478 return 0;
6479
Bram Moolenaar071d4272004-06-13 20:20:40 +00006480 /* Get a copy of the current contents of the line.
6481 * This is required, because only the most recent line obtained with
6482 * ml_get is valid! */
6483 linecopy = vim_strsave(ml_get(cur_curpos.lnum));
6484 if (linecopy == NULL)
6485 return 0;
6486
6487 /*
6488 * In insert mode and the cursor is on a ')' truncate the line at the
6489 * cursor position. We don't want to line up with the matching '(' when
6490 * inserting new stuff.
6491 * For unknown reasons the cursor might be past the end of the line, thus
6492 * check for that.
6493 */
6494 if ((State & INSERT)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00006495 && curwin->w_cursor.col < (colnr_T)STRLEN(linecopy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006496 && linecopy[curwin->w_cursor.col] == ')')
6497 linecopy[curwin->w_cursor.col] = NUL;
6498
6499 theline = skipwhite(linecopy);
6500
6501 /* move the cursor to the start of the line */
6502
6503 curwin->w_cursor.col = 0;
6504
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006505 original_line_islabel = cin_islabel(ind_maxcomment); /* XXX */
6506
Bram Moolenaar071d4272004-06-13 20:20:40 +00006507 /*
6508 * #defines and so on always go at the left when included in 'cinkeys'.
6509 */
6510 if (*theline == '#' && (*linecopy == '#' || in_cinkeys('#', ' ', TRUE)))
6511 {
6512 amount = 0;
6513 }
6514
6515 /*
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006516 * Is it a non-case label? Then that goes at the left margin too unless:
6517 * - JS flag is set.
6518 * - 'L' item has a positive value.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006519 */
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006520 else if (original_line_islabel && !ind_js && ind_jump_label < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006521 {
6522 amount = 0;
6523 }
6524
6525 /*
6526 * If we're inside a "//" comment and there is a "//" comment in a
6527 * previous line, lineup with that one.
6528 */
6529 else if (cin_islinecomment(theline)
6530 && (trypos = find_line_comment()) != NULL) /* XXX */
6531 {
6532 /* find how indented the line beginning the comment is */
6533 getvcol(curwin, trypos, &col, NULL, NULL);
6534 amount = col;
6535 }
6536
6537 /*
6538 * If we're inside a comment and not looking at the start of the
6539 * comment, try using the 'comments' option.
6540 */
6541 else if (!cin_iscomment(theline)
6542 && (trypos = find_start_comment(ind_maxcomment)) != NULL) /* XXX */
6543 {
6544 int lead_start_len = 2;
6545 int lead_middle_len = 1;
6546 char_u lead_start[COM_MAX_LEN]; /* start-comment string */
6547 char_u lead_middle[COM_MAX_LEN]; /* middle-comment string */
6548 char_u lead_end[COM_MAX_LEN]; /* end-comment string */
6549 char_u *p;
6550 int start_align = 0;
6551 int start_off = 0;
6552 int done = FALSE;
6553
6554 /* find how indented the line beginning the comment is */
6555 getvcol(curwin, trypos, &col, NULL, NULL);
6556 amount = col;
Bram Moolenaar4aa97422011-04-11 14:27:38 +02006557 *lead_start = NUL;
6558 *lead_middle = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006559
6560 p = curbuf->b_p_com;
6561 while (*p != NUL)
6562 {
6563 int align = 0;
6564 int off = 0;
6565 int what = 0;
6566
6567 while (*p != NUL && *p != ':')
6568 {
6569 if (*p == COM_START || *p == COM_END || *p == COM_MIDDLE)
6570 what = *p++;
6571 else if (*p == COM_LEFT || *p == COM_RIGHT)
6572 align = *p++;
6573 else if (VIM_ISDIGIT(*p) || *p == '-')
6574 off = getdigits(&p);
6575 else
6576 ++p;
6577 }
6578
6579 if (*p == ':')
6580 ++p;
6581 (void)copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
6582 if (what == COM_START)
6583 {
6584 STRCPY(lead_start, lead_end);
6585 lead_start_len = (int)STRLEN(lead_start);
6586 start_off = off;
6587 start_align = align;
6588 }
6589 else if (what == COM_MIDDLE)
6590 {
6591 STRCPY(lead_middle, lead_end);
6592 lead_middle_len = (int)STRLEN(lead_middle);
6593 }
6594 else if (what == COM_END)
6595 {
6596 /* If our line starts with the middle comment string, line it
6597 * up with the comment opener per the 'comments' option. */
6598 if (STRNCMP(theline, lead_middle, lead_middle_len) == 0
6599 && STRNCMP(theline, lead_end, STRLEN(lead_end)) != 0)
6600 {
6601 done = TRUE;
6602 if (curwin->w_cursor.lnum > 1)
6603 {
6604 /* If the start comment string matches in the previous
Bram Moolenaare21877a2008-02-13 09:58:14 +00006605 * line, use the indent of that line plus offset. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00006606 * the middle comment string matches in the previous
6607 * line, use the indent of that line. XXX */
6608 look = skipwhite(ml_get(curwin->w_cursor.lnum - 1));
6609 if (STRNCMP(look, lead_start, lead_start_len) == 0)
6610 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
6611 else if (STRNCMP(look, lead_middle,
6612 lead_middle_len) == 0)
6613 {
6614 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
6615 break;
6616 }
6617 /* If the start comment string doesn't match with the
6618 * start of the comment, skip this entry. XXX */
6619 else if (STRNCMP(ml_get(trypos->lnum) + trypos->col,
6620 lead_start, lead_start_len) != 0)
6621 continue;
6622 }
6623 if (start_off != 0)
6624 amount += start_off;
6625 else if (start_align == COM_RIGHT)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00006626 amount += vim_strsize(lead_start)
6627 - vim_strsize(lead_middle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006628 break;
6629 }
6630
6631 /* If our line starts with the end comment string, line it up
6632 * with the middle comment */
6633 if (STRNCMP(theline, lead_middle, lead_middle_len) != 0
6634 && STRNCMP(theline, lead_end, STRLEN(lead_end)) == 0)
6635 {
6636 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
6637 /* XXX */
6638 if (off != 0)
6639 amount += off;
6640 else if (align == COM_RIGHT)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00006641 amount += vim_strsize(lead_start)
6642 - vim_strsize(lead_middle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006643 done = TRUE;
6644 break;
6645 }
6646 }
6647 }
6648
6649 /* If our line starts with an asterisk, line up with the
6650 * asterisk in the comment opener; otherwise, line up
6651 * with the first character of the comment text.
6652 */
6653 if (done)
6654 ;
6655 else if (theline[0] == '*')
6656 amount += 1;
6657 else
6658 {
6659 /*
6660 * If we are more than one line away from the comment opener, take
6661 * the indent of the previous non-empty line. If 'cino' has "CO"
6662 * and we are just below the comment opener and there are any
6663 * white characters after it line up with the text after it;
6664 * otherwise, add the amount specified by "c" in 'cino'
6665 */
6666 amount = -1;
6667 for (lnum = cur_curpos.lnum - 1; lnum > trypos->lnum; --lnum)
6668 {
6669 if (linewhite(lnum)) /* skip blank lines */
6670 continue;
6671 amount = get_indent_lnum(lnum); /* XXX */
6672 break;
6673 }
6674 if (amount == -1) /* use the comment opener */
6675 {
6676 if (!ind_in_comment2)
6677 {
6678 start = ml_get(trypos->lnum);
6679 look = start + trypos->col + 2; /* skip / and * */
6680 if (*look != NUL) /* if something after it */
6681 trypos->col = (colnr_T)(skipwhite(look) - start);
6682 }
6683 getvcol(curwin, trypos, &col, NULL, NULL);
6684 amount = col;
6685 if (ind_in_comment2 || *look == NUL)
6686 amount += ind_in_comment;
6687 }
6688 }
6689 }
6690
6691 /*
6692 * Are we inside parentheses or braces?
6693 */ /* XXX */
6694 else if (((trypos = find_match_paren(ind_maxparen, ind_maxcomment)) != NULL
6695 && ind_java == 0)
6696 || (tryposBrace = find_start_brace(ind_maxcomment)) != NULL
6697 || trypos != NULL)
6698 {
6699 if (trypos != NULL && tryposBrace != NULL)
6700 {
6701 /* Both an unmatched '(' and '{' is found. Use the one which is
6702 * closer to the current cursor position, set the other to NULL. */
6703 if (trypos->lnum != tryposBrace->lnum
6704 ? trypos->lnum < tryposBrace->lnum
6705 : trypos->col < tryposBrace->col)
6706 trypos = NULL;
6707 else
6708 tryposBrace = NULL;
6709 }
6710
6711 if (trypos != NULL)
6712 {
6713 /*
6714 * If the matching paren is more than one line away, use the indent of
6715 * a previous non-empty line that matches the same paren.
6716 */
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006717 if (theline[0] == ')' && ind_paren_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006718 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006719 /* Line up with the start of the matching paren line. */
6720 amount = get_indent_lnum(curwin->w_cursor.lnum - 1); /* XXX */
6721 }
6722 else
6723 {
6724 amount = -1;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006725 our_paren_pos = *trypos;
6726 for (lnum = cur_curpos.lnum - 1; lnum > our_paren_pos.lnum; --lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006727 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006728 l = skipwhite(ml_get(lnum));
6729 if (cin_nocode(l)) /* skip comment lines */
6730 continue;
6731 if (cin_ispreproc_cont(&l, &lnum))
6732 continue; /* ignore #define, #if, etc. */
6733 curwin->w_cursor.lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006734
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006735 /* Skip a comment. XXX */
6736 if ((trypos = find_start_comment(ind_maxcomment)) != NULL)
6737 {
6738 lnum = trypos->lnum + 1;
6739 continue;
6740 }
6741
6742 /* XXX */
6743 if ((trypos = find_match_paren(
6744 corr_ind_maxparen(ind_maxparen, &cur_curpos),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006745 ind_maxcomment)) != NULL
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006746 && trypos->lnum == our_paren_pos.lnum
6747 && trypos->col == our_paren_pos.col)
6748 {
6749 amount = get_indent_lnum(lnum); /* XXX */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006750
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006751 if (theline[0] == ')')
6752 {
6753 if (our_paren_pos.lnum != lnum
6754 && cur_amount > amount)
6755 cur_amount = amount;
6756 amount = -1;
6757 }
6758 break;
6759 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006760 }
6761 }
6762
6763 /*
6764 * Line up with line where the matching paren is. XXX
6765 * If the line starts with a '(' or the indent for unclosed
6766 * parentheses is zero, line up with the unclosed parentheses.
6767 */
6768 if (amount == -1)
6769 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006770 int ignore_paren_col = 0;
6771
Bram Moolenaar071d4272004-06-13 20:20:40 +00006772 amount = skip_label(our_paren_pos.lnum, &look, ind_maxcomment);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006773 look = skipwhite(look);
6774 if (*look == '(')
6775 {
6776 linenr_T save_lnum = curwin->w_cursor.lnum;
6777 char_u *line;
6778 int look_col;
6779
6780 /* Ignore a '(' in front of the line that has a match before
6781 * our matching '('. */
6782 curwin->w_cursor.lnum = our_paren_pos.lnum;
6783 line = ml_get_curline();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006784 look_col = (int)(look - line);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006785 curwin->w_cursor.col = look_col + 1;
6786 if ((trypos = findmatchlimit(NULL, ')', 0, ind_maxparen))
6787 != NULL
6788 && trypos->lnum == our_paren_pos.lnum
6789 && trypos->col < our_paren_pos.col)
6790 ignore_paren_col = trypos->col + 1;
6791
6792 curwin->w_cursor.lnum = save_lnum;
6793 look = ml_get(our_paren_pos.lnum) + look_col;
6794 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006795 if (theline[0] == ')' || ind_unclosed == 0
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006796 || (!ind_unclosed_noignore && *look == '('
6797 && ignore_paren_col == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006798 {
6799 /*
6800 * If we're looking at a close paren, line up right there;
6801 * otherwise, line up with the next (non-white) character.
6802 * When ind_unclosed_wrapped is set and the matching paren is
6803 * the last nonwhite character of the line, use either the
6804 * indent of the current line or the indentation of the next
6805 * outer paren and add ind_unclosed_wrapped (for very long
6806 * lines).
6807 */
6808 if (theline[0] != ')')
6809 {
6810 cur_amount = MAXCOL;
6811 l = ml_get(our_paren_pos.lnum);
6812 if (ind_unclosed_wrapped
6813 && cin_ends_in(l, (char_u *)"(", NULL))
6814 {
6815 /* look for opening unmatched paren, indent one level
6816 * for each additional level */
6817 n = 1;
6818 for (col = 0; col < our_paren_pos.col; ++col)
6819 {
6820 switch (l[col])
6821 {
6822 case '(':
6823 case '{': ++n;
6824 break;
6825
6826 case ')':
6827 case '}': if (n > 1)
6828 --n;
6829 break;
6830 }
6831 }
6832
6833 our_paren_pos.col = 0;
6834 amount += n * ind_unclosed_wrapped;
6835 }
6836 else if (ind_unclosed_whiteok)
6837 our_paren_pos.col++;
6838 else
6839 {
6840 col = our_paren_pos.col + 1;
6841 while (vim_iswhite(l[col]))
6842 col++;
6843 if (l[col] != NUL) /* In case of trailing space */
6844 our_paren_pos.col = col;
6845 else
6846 our_paren_pos.col++;
6847 }
6848 }
6849
6850 /*
6851 * Find how indented the paren is, or the character after it
6852 * if we did the above "if".
6853 */
6854 if (our_paren_pos.col > 0)
6855 {
6856 getvcol(curwin, &our_paren_pos, &col, NULL, NULL);
6857 if (cur_amount > (int)col)
6858 cur_amount = col;
6859 }
6860 }
6861
6862 if (theline[0] == ')' && ind_matching_paren)
6863 {
6864 /* Line up with the start of the matching paren line. */
6865 }
6866 else if (ind_unclosed == 0 || (!ind_unclosed_noignore
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006867 && *look == '(' && ignore_paren_col == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006868 {
6869 if (cur_amount != MAXCOL)
6870 amount = cur_amount;
6871 }
6872 else
6873 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006874 /* Add ind_unclosed2 for each '(' before our matching one, but
6875 * ignore (void) before the line (ignore_paren_col). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006876 col = our_paren_pos.col;
Bram Moolenaarb21e5842006-04-16 18:30:08 +00006877 while ((int)our_paren_pos.col > ignore_paren_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006878 {
6879 --our_paren_pos.col;
6880 switch (*ml_get_pos(&our_paren_pos))
6881 {
6882 case '(': amount += ind_unclosed2;
6883 col = our_paren_pos.col;
6884 break;
6885 case ')': amount -= ind_unclosed2;
6886 col = MAXCOL;
6887 break;
6888 }
6889 }
6890
6891 /* Use ind_unclosed once, when the first '(' is not inside
6892 * braces */
6893 if (col == MAXCOL)
6894 amount += ind_unclosed;
6895 else
6896 {
6897 curwin->w_cursor.lnum = our_paren_pos.lnum;
6898 curwin->w_cursor.col = col;
Bram Moolenaar367bec82011-04-11 14:26:19 +02006899 if (find_match_paren(ind_maxparen, ind_maxcomment) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006900 amount += ind_unclosed2;
6901 else
6902 amount += ind_unclosed;
6903 }
6904 /*
6905 * For a line starting with ')' use the minimum of the two
6906 * positions, to avoid giving it more indent than the previous
6907 * lines:
6908 * func_long_name( if (x
6909 * arg && yy
6910 * ) ^ not here ) ^ not here
6911 */
6912 if (cur_amount < amount)
6913 amount = cur_amount;
6914 }
6915 }
6916
6917 /* add extra indent for a comment */
6918 if (cin_iscomment(theline))
6919 amount += ind_comment;
6920 }
6921
6922 /*
6923 * Are we at least inside braces, then?
6924 */
6925 else
6926 {
6927 trypos = tryposBrace;
6928
6929 ourscope = trypos->lnum;
6930 start = ml_get(ourscope);
6931
6932 /*
6933 * Now figure out how indented the line is in general.
6934 * If the brace was at the start of the line, we use that;
6935 * otherwise, check out the indentation of the line as
6936 * a whole and then add the "imaginary indent" to that.
6937 */
6938 look = skipwhite(start);
6939 if (*look == '{')
6940 {
6941 getvcol(curwin, trypos, &col, NULL, NULL);
6942 amount = col;
6943 if (*start == '{')
6944 start_brace = BRACE_IN_COL0;
6945 else
6946 start_brace = BRACE_AT_START;
6947 }
6948 else
6949 {
6950 /*
6951 * that opening brace might have been on a continuation
6952 * line. if so, find the start of the line.
6953 */
6954 curwin->w_cursor.lnum = ourscope;
6955
6956 /*
6957 * position the cursor over the rightmost paren, so that
6958 * matching it will take us back to the start of the line.
6959 */
6960 lnum = ourscope;
6961 if (find_last_paren(start, '(', ')')
6962 && (trypos = find_match_paren(ind_maxparen,
6963 ind_maxcomment)) != NULL)
6964 lnum = trypos->lnum;
6965
6966 /*
6967 * It could have been something like
6968 * case 1: if (asdf &&
6969 * ldfd) {
6970 * }
6971 */
Bram Moolenaar6ec154b2011-06-12 21:51:08 +02006972 if (ind_js || (ind_keep_case_label
Bram Moolenaar3acfc302010-07-11 17:23:02 +02006973 && cin_iscase(skipwhite(ml_get_curline()), FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006974 amount = get_indent();
6975 else
6976 amount = skip_label(lnum, &l, ind_maxcomment);
6977
6978 start_brace = BRACE_AT_END;
6979 }
6980
6981 /*
6982 * if we're looking at a closing brace, that's where
6983 * we want to be. otherwise, add the amount of room
6984 * that an indent is supposed to be.
6985 */
6986 if (theline[0] == '}')
6987 {
6988 /*
6989 * they may want closing braces to line up with something
6990 * other than the open brace. indulge them, if so.
6991 */
6992 amount += ind_close_extra;
6993 }
6994 else
6995 {
6996 /*
6997 * If we're looking at an "else", try to find an "if"
6998 * to match it with.
6999 * If we're looking at a "while", try to find a "do"
7000 * to match it with.
7001 */
7002 lookfor = LOOKFOR_INITIAL;
7003 if (cin_iselse(theline))
7004 lookfor = LOOKFOR_IF;
7005 else if (cin_iswhileofdo(theline, cur_curpos.lnum, ind_maxparen))
7006 /* XXX */
7007 lookfor = LOOKFOR_DO;
7008 if (lookfor != LOOKFOR_INITIAL)
7009 {
7010 curwin->w_cursor.lnum = cur_curpos.lnum;
7011 if (find_match(lookfor, ourscope, ind_maxparen,
7012 ind_maxcomment) == OK)
7013 {
7014 amount = get_indent(); /* XXX */
7015 goto theend;
7016 }
7017 }
7018
7019 /*
7020 * We get here if we are not on an "while-of-do" or "else" (or
7021 * failed to find a matching "if").
7022 * Search backwards for something to line up with.
7023 * First set amount for when we don't find anything.
7024 */
7025
7026 /*
7027 * if the '{' is _really_ at the left margin, use the imaginary
7028 * location of a left-margin brace. Otherwise, correct the
7029 * location for ind_open_extra.
7030 */
7031
7032 if (start_brace == BRACE_IN_COL0) /* '{' is in column 0 */
7033 {
7034 amount = ind_open_left_imag;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007035 lookfor_cpp_namespace = TRUE;
7036 }
7037 else if (start_brace == BRACE_AT_START &&
7038 lookfor_cpp_namespace) /* '{' is at start */
7039 {
7040
7041 lookfor_cpp_namespace = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007042 }
7043 else
7044 {
7045 if (start_brace == BRACE_AT_END) /* '{' is at end of line */
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007046 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047 amount += ind_open_imag;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007048
7049 l = skipwhite(ml_get_curline());
7050 if (cin_is_cpp_namespace(l))
7051 amount += ind_cpp_namespace;
7052 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007053 else
7054 {
7055 /* Compensate for adding ind_open_extra later. */
7056 amount -= ind_open_extra;
7057 if (amount < 0)
7058 amount = 0;
7059 }
7060 }
7061
7062 lookfor_break = FALSE;
7063
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007064 if (cin_iscase(theline, FALSE)) /* it's a switch() label */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007065 {
7066 lookfor = LOOKFOR_CASE; /* find a previous switch() label */
7067 amount += ind_case;
7068 }
7069 else if (cin_isscopedecl(theline)) /* private:, ... */
7070 {
7071 lookfor = LOOKFOR_SCOPEDECL; /* class decl is this block */
7072 amount += ind_scopedecl;
7073 }
7074 else
7075 {
7076 if (ind_case_break && cin_isbreak(theline)) /* break; ... */
7077 lookfor_break = TRUE;
7078
7079 lookfor = LOOKFOR_INITIAL;
7080 amount += ind_level; /* ind_level from start of block */
7081 }
7082 scope_amount = amount;
7083 whilelevel = 0;
7084
7085 /*
7086 * Search backwards. If we find something we recognize, line up
7087 * with that.
7088 *
7089 * if we're looking at an open brace, indent
7090 * the usual amount relative to the conditional
7091 * that opens the block.
7092 */
7093 curwin->w_cursor = cur_curpos;
7094 for (;;)
7095 {
7096 curwin->w_cursor.lnum--;
7097 curwin->w_cursor.col = 0;
7098
7099 /*
7100 * If we went all the way back to the start of our scope, line
7101 * up with it.
7102 */
7103 if (curwin->w_cursor.lnum <= ourscope)
7104 {
7105 /* we reached end of scope:
7106 * if looking for a enum or structure initialization
7107 * go further back:
7108 * if it is an initializer (enum xxx or xxx =), then
7109 * don't add ind_continuation, otherwise it is a variable
7110 * declaration:
7111 * int x,
7112 * here; <-- add ind_continuation
7113 */
7114 if (lookfor == LOOKFOR_ENUM_OR_INIT)
7115 {
7116 if (curwin->w_cursor.lnum == 0
7117 || curwin->w_cursor.lnum
7118 < ourscope - ind_maxparen)
7119 {
7120 /* nothing found (abuse ind_maxparen as limit)
7121 * assume terminated line (i.e. a variable
7122 * initialization) */
7123 if (cont_amount > 0)
7124 amount = cont_amount;
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007125 else if (!ind_js)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007126 amount += ind_continuation;
7127 break;
7128 }
7129
7130 l = ml_get_curline();
7131
7132 /*
7133 * If we're in a comment now, skip to the start of the
7134 * comment.
7135 */
7136 trypos = find_start_comment(ind_maxcomment);
7137 if (trypos != NULL)
7138 {
7139 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007140 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007141 continue;
7142 }
7143
7144 /*
7145 * Skip preprocessor directives and blank lines.
7146 */
7147 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
7148 continue;
7149
7150 if (cin_nocode(l))
7151 continue;
7152
7153 terminated = cin_isterminated(l, FALSE, TRUE);
7154
7155 /*
7156 * If we are at top level and the line looks like a
7157 * function declaration, we are done
7158 * (it's a variable declaration).
7159 */
7160 if (start_brace != BRACE_IN_COL0
7161 || !cin_isfuncdecl(&l, curwin->w_cursor.lnum))
7162 {
7163 /* if the line is terminated with another ','
7164 * it is a continued variable initialization.
7165 * don't add extra indent.
7166 * TODO: does not work, if a function
7167 * declaration is split over multiple lines:
7168 * cin_isfuncdecl returns FALSE then.
7169 */
7170 if (terminated == ',')
7171 break;
7172
7173 /* if it es a enum declaration or an assignment,
7174 * we are done.
7175 */
7176 if (terminated != ';' && cin_isinit())
7177 break;
7178
7179 /* nothing useful found */
7180 if (terminated == 0 || terminated == '{')
7181 continue;
7182 }
7183
7184 if (terminated != ';')
7185 {
7186 /* Skip parens and braces. Position the cursor
7187 * over the rightmost paren, so that matching it
7188 * will take us back to the start of the line.
7189 */ /* XXX */
7190 trypos = NULL;
7191 if (find_last_paren(l, '(', ')'))
7192 trypos = find_match_paren(ind_maxparen,
7193 ind_maxcomment);
7194
7195 if (trypos == NULL && find_last_paren(l, '{', '}'))
7196 trypos = find_start_brace(ind_maxcomment);
7197
7198 if (trypos != NULL)
7199 {
7200 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007201 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007202 continue;
7203 }
7204 }
7205
7206 /* it's a variable declaration, add indentation
7207 * like in
7208 * int a,
7209 * b;
7210 */
7211 if (cont_amount > 0)
7212 amount = cont_amount;
7213 else
7214 amount += ind_continuation;
7215 }
7216 else if (lookfor == LOOKFOR_UNTERM)
7217 {
7218 if (cont_amount > 0)
7219 amount = cont_amount;
7220 else
7221 amount += ind_continuation;
7222 }
Bram Moolenaare79d1532011-10-04 18:03:47 +02007223 else
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007224 {
Bram Moolenaare79d1532011-10-04 18:03:47 +02007225 if (lookfor != LOOKFOR_TERM
Bram Moolenaar071d4272004-06-13 20:20:40 +00007226 && lookfor != LOOKFOR_CPP_BASECLASS)
Bram Moolenaare79d1532011-10-04 18:03:47 +02007227 {
7228 amount = scope_amount;
7229 if (theline[0] == '{')
7230 {
7231 amount += ind_open_extra;
7232 added_to_amount = ind_open_extra;
7233 }
7234 }
7235
7236 if (lookfor_cpp_namespace)
7237 {
7238 /*
7239 * Looking for C++ namespace, need to look further
7240 * back.
7241 */
7242 if (curwin->w_cursor.lnum == ourscope)
7243 continue;
7244
7245 if (curwin->w_cursor.lnum == 0
7246 || curwin->w_cursor.lnum
7247 < ourscope - FIND_NAMESPACE_LIM)
7248 break;
7249
7250 l = ml_get_curline();
7251
7252 /* If we're in a comment now, skip to the start of
7253 * the comment. */
7254 trypos = find_start_comment(ind_maxcomment);
7255 if (trypos != NULL)
7256 {
7257 curwin->w_cursor.lnum = trypos->lnum + 1;
7258 curwin->w_cursor.col = 0;
7259 continue;
7260 }
7261
7262 /* Skip preprocessor directives and blank lines. */
7263 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
7264 continue;
7265
7266 /* Finally the actual check for "namespace". */
7267 if (cin_is_cpp_namespace(l))
7268 {
7269 amount += ind_cpp_namespace - added_to_amount;
7270 break;
7271 }
7272
7273 if (cin_nocode(l))
7274 continue;
7275 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007276 }
7277 break;
7278 }
7279
7280 /*
7281 * If we're in a comment now, skip to the start of the comment.
7282 */ /* XXX */
7283 if ((trypos = find_start_comment(ind_maxcomment)) != NULL)
7284 {
7285 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007286 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007287 continue;
7288 }
7289
7290 l = ml_get_curline();
7291
7292 /*
7293 * If this is a switch() label, may line up relative to that.
Bram Moolenaar18144c82006-04-12 21:52:12 +00007294 * If this is a C++ scope declaration, do the same.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007295 */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007296 iscase = cin_iscase(l, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007297 if (iscase || cin_isscopedecl(l))
7298 {
7299 /* we are only looking for cpp base class
7300 * declaration/initialization any longer */
7301 if (lookfor == LOOKFOR_CPP_BASECLASS)
7302 break;
7303
7304 /* When looking for a "do" we are not interested in
7305 * labels. */
7306 if (whilelevel > 0)
7307 continue;
7308
7309 /*
7310 * case xx:
7311 * c = 99 + <- this indent plus continuation
7312 *-> here;
7313 */
7314 if (lookfor == LOOKFOR_UNTERM
7315 || lookfor == LOOKFOR_ENUM_OR_INIT)
7316 {
7317 if (cont_amount > 0)
7318 amount = cont_amount;
7319 else
7320 amount += ind_continuation;
7321 break;
7322 }
7323
7324 /*
7325 * case xx: <- line up with this case
7326 * x = 333;
7327 * case yy:
7328 */
7329 if ( (iscase && lookfor == LOOKFOR_CASE)
7330 || (iscase && lookfor_break)
7331 || (!iscase && lookfor == LOOKFOR_SCOPEDECL))
7332 {
7333 /*
7334 * Check that this case label is not for another
7335 * switch()
7336 */ /* XXX */
7337 if ((trypos = find_start_brace(ind_maxcomment)) ==
7338 NULL || trypos->lnum == ourscope)
7339 {
7340 amount = get_indent(); /* XXX */
7341 break;
7342 }
7343 continue;
7344 }
7345
7346 n = get_indent_nolabel(curwin->w_cursor.lnum); /* XXX */
7347
7348 /*
7349 * case xx: if (cond) <- line up with this if
7350 * y = y + 1;
7351 * -> s = 99;
7352 *
7353 * case xx:
7354 * if (cond) <- line up with this line
7355 * y = y + 1;
7356 * -> s = 99;
7357 */
7358 if (lookfor == LOOKFOR_TERM)
7359 {
7360 if (n)
7361 amount = n;
7362
7363 if (!lookfor_break)
7364 break;
7365 }
7366
7367 /*
7368 * case xx: x = x + 1; <- line up with this x
7369 * -> y = y + 1;
7370 *
7371 * case xx: if (cond) <- line up with this if
7372 * -> y = y + 1;
7373 */
7374 if (n)
7375 {
7376 amount = n;
7377 l = after_label(ml_get_curline());
7378 if (l != NULL && cin_is_cinword(l))
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007379 {
7380 if (theline[0] == '{')
7381 amount += ind_open_extra;
7382 else
7383 amount += ind_level + ind_no_brace;
7384 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007385 break;
7386 }
7387
7388 /*
7389 * Try to get the indent of a statement before the switch
7390 * label. If nothing is found, line up relative to the
7391 * switch label.
7392 * break; <- may line up with this line
7393 * case xx:
7394 * -> y = 1;
7395 */
7396 scope_amount = get_indent() + (iscase /* XXX */
7397 ? ind_case_code : ind_scopedecl_code);
7398 lookfor = ind_case_break ? LOOKFOR_NOBREAK : LOOKFOR_ANY;
7399 continue;
7400 }
7401
7402 /*
7403 * Looking for a switch() label or C++ scope declaration,
7404 * ignore other lines, skip {}-blocks.
7405 */
7406 if (lookfor == LOOKFOR_CASE || lookfor == LOOKFOR_SCOPEDECL)
7407 {
7408 if (find_last_paren(l, '{', '}') && (trypos =
7409 find_start_brace(ind_maxcomment)) != NULL)
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007410 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007411 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007412 curwin->w_cursor.col = 0;
7413 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007414 continue;
7415 }
7416
7417 /*
7418 * Ignore jump labels with nothing after them.
7419 */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007420 if (!ind_js && cin_islabel(ind_maxcomment))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007421 {
7422 l = after_label(ml_get_curline());
7423 if (l == NULL || cin_nocode(l))
7424 continue;
7425 }
7426
7427 /*
7428 * Ignore #defines, #if, etc.
7429 * Ignore comment and empty lines.
7430 * (need to get the line again, cin_islabel() may have
7431 * unlocked it)
7432 */
7433 l = ml_get_curline();
7434 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum)
7435 || cin_nocode(l))
7436 continue;
7437
7438 /*
7439 * Are we at the start of a cpp base class declaration or
7440 * constructor initialization?
7441 */ /* XXX */
Bram Moolenaar18144c82006-04-12 21:52:12 +00007442 n = FALSE;
7443 if (lookfor != LOOKFOR_TERM && ind_cpp_baseclass > 0)
7444 {
Bram Moolenaare7c56862007-08-04 10:14:52 +00007445 n = cin_is_cpp_baseclass(&col);
Bram Moolenaar18144c82006-04-12 21:52:12 +00007446 l = ml_get_curline();
7447 }
7448 if (n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007449 {
7450 if (lookfor == LOOKFOR_UNTERM)
7451 {
7452 if (cont_amount > 0)
7453 amount = cont_amount;
7454 else
7455 amount += ind_continuation;
7456 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00007457 else if (theline[0] == '{')
Bram Moolenaar071d4272004-06-13 20:20:40 +00007458 {
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00007459 /* Need to find start of the declaration. */
7460 lookfor = LOOKFOR_UNTERM;
7461 ind_continuation = 0;
7462 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007463 }
7464 else
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00007465 /* XXX */
7466 amount = get_baseclass_amount(col, ind_maxparen,
7467 ind_maxcomment, ind_cpp_baseclass);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007468 break;
7469 }
7470 else if (lookfor == LOOKFOR_CPP_BASECLASS)
7471 {
7472 /* only look, whether there is a cpp base class
Bram Moolenaar18144c82006-04-12 21:52:12 +00007473 * declaration or initialization before the opening brace.
7474 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007475 if (cin_isterminated(l, TRUE, FALSE))
7476 break;
7477 else
7478 continue;
7479 }
7480
7481 /*
7482 * What happens next depends on the line being terminated.
7483 * If terminated with a ',' only consider it terminating if
Bram Moolenaar25394022007-05-10 19:06:20 +00007484 * there is another unterminated statement behind, eg:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007485 * 123,
7486 * sizeof
7487 * here
7488 * Otherwise check whether it is a enumeration or structure
7489 * initialisation (not indented) or a variable declaration
7490 * (indented).
7491 */
7492 terminated = cin_isterminated(l, FALSE, TRUE);
7493
7494 if (terminated == 0 || (lookfor != LOOKFOR_UNTERM
7495 && terminated == ','))
7496 {
7497 /*
7498 * if we're in the middle of a paren thing,
7499 * go back to the line that starts it so
7500 * we can get the right prevailing indent
7501 * if ( foo &&
7502 * bar )
7503 */
7504 /*
7505 * position the cursor over the rightmost paren, so that
7506 * matching it will take us back to the start of the line.
7507 */
7508 (void)find_last_paren(l, '(', ')');
7509 trypos = find_match_paren(
7510 corr_ind_maxparen(ind_maxparen, &cur_curpos),
7511 ind_maxcomment);
7512
7513 /*
7514 * If we are looking for ',', we also look for matching
7515 * braces.
7516 */
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00007517 if (trypos == NULL && terminated == ','
7518 && find_last_paren(l, '{', '}'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007519 trypos = find_start_brace(ind_maxcomment);
7520
7521 if (trypos != NULL)
7522 {
7523 /*
7524 * Check if we are on a case label now. This is
7525 * handled above.
7526 * case xx: if ( asdf &&
7527 * asdf)
7528 */
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007529 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007530 l = ml_get_curline();
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007531 if (cin_iscase(l, FALSE) || cin_isscopedecl(l))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007532 {
7533 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007534 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007535 continue;
7536 }
7537 }
7538
7539 /*
7540 * Skip over continuation lines to find the one to get the
7541 * indent from
7542 * char *usethis = "bla\
7543 * bla",
7544 * here;
7545 */
7546 if (terminated == ',')
7547 {
7548 while (curwin->w_cursor.lnum > 1)
7549 {
7550 l = ml_get(curwin->w_cursor.lnum - 1);
7551 if (*l == NUL || l[STRLEN(l) - 1] != '\\')
7552 break;
7553 --curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007554 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007555 }
7556 }
7557
7558 /*
7559 * Get indent and pointer to text for current line,
7560 * ignoring any jump label. XXX
7561 */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007562 if (!ind_js)
7563 cur_amount = skip_label(curwin->w_cursor.lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007564 &l, ind_maxcomment);
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007565 else
7566 cur_amount = get_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007567 /*
7568 * If this is just above the line we are indenting, and it
7569 * starts with a '{', line it up with this line.
7570 * while (not)
7571 * -> {
7572 * }
7573 */
7574 if (terminated != ',' && lookfor != LOOKFOR_TERM
7575 && theline[0] == '{')
7576 {
7577 amount = cur_amount;
7578 /*
7579 * Only add ind_open_extra when the current line
7580 * doesn't start with a '{', which must have a match
7581 * in the same line (scope is the same). Probably:
7582 * { 1, 2 },
7583 * -> { 3, 4 }
7584 */
7585 if (*skipwhite(l) != '{')
7586 amount += ind_open_extra;
7587
7588 if (ind_cpp_baseclass)
7589 {
7590 /* have to look back, whether it is a cpp base
7591 * class declaration or initialization */
7592 lookfor = LOOKFOR_CPP_BASECLASS;
7593 continue;
7594 }
7595 break;
7596 }
7597
7598 /*
7599 * Check if we are after an "if", "while", etc.
7600 * Also allow " } else".
7601 */
7602 if (cin_is_cinword(l) || cin_iselse(skipwhite(l)))
7603 {
7604 /*
7605 * Found an unterminated line after an if (), line up
7606 * with the last one.
7607 * if (cond)
7608 * 100 +
7609 * -> here;
7610 */
7611 if (lookfor == LOOKFOR_UNTERM
7612 || lookfor == LOOKFOR_ENUM_OR_INIT)
7613 {
7614 if (cont_amount > 0)
7615 amount = cont_amount;
7616 else
7617 amount += ind_continuation;
7618 break;
7619 }
7620
7621 /*
7622 * If this is just above the line we are indenting, we
7623 * are finished.
7624 * while (not)
7625 * -> here;
7626 * Otherwise this indent can be used when the line
7627 * before this is terminated.
7628 * yyy;
7629 * if (stat)
7630 * while (not)
7631 * xxx;
7632 * -> here;
7633 */
7634 amount = cur_amount;
7635 if (theline[0] == '{')
7636 amount += ind_open_extra;
7637 if (lookfor != LOOKFOR_TERM)
7638 {
7639 amount += ind_level + ind_no_brace;
7640 break;
7641 }
7642
7643 /*
7644 * Special trick: when expecting the while () after a
7645 * do, line up with the while()
7646 * do
7647 * x = 1;
7648 * -> here
7649 */
7650 l = skipwhite(ml_get_curline());
7651 if (cin_isdo(l))
7652 {
7653 if (whilelevel == 0)
7654 break;
7655 --whilelevel;
7656 }
7657
7658 /*
7659 * When searching for a terminated line, don't use the
Bram Moolenaar334adf02011-05-25 13:34:04 +02007660 * one between the "if" and the matching "else".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007661 * Need to use the scope of this "else". XXX
7662 * If whilelevel != 0 continue looking for a "do {".
7663 */
Bram Moolenaar334adf02011-05-25 13:34:04 +02007664 if (cin_iselse(l) && whilelevel == 0)
7665 {
7666 /* If we're looking at "} else", let's make sure we
7667 * find the opening brace of the enclosing scope,
7668 * not the one from "if () {". */
7669 if (*l == '}')
7670 curwin->w_cursor.col =
Bram Moolenaar9b83c2f2011-05-25 17:29:44 +02007671 (colnr_T)(l - ml_get_curline()) + 1;
Bram Moolenaar334adf02011-05-25 13:34:04 +02007672
7673 if ((trypos = find_start_brace(ind_maxcomment))
7674 == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00007675 || find_match(LOOKFOR_IF, trypos->lnum,
Bram Moolenaar334adf02011-05-25 13:34:04 +02007676 ind_maxparen, ind_maxcomment) == FAIL)
7677 break;
7678 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007679 }
7680
7681 /*
7682 * If we're below an unterminated line that is not an
7683 * "if" or something, we may line up with this line or
Bram Moolenaar25394022007-05-10 19:06:20 +00007684 * add something for a continuation line, depending on
Bram Moolenaar071d4272004-06-13 20:20:40 +00007685 * the line before this one.
7686 */
7687 else
7688 {
7689 /*
7690 * Found two unterminated lines on a row, line up with
7691 * the last one.
7692 * c = 99 +
7693 * 100 +
7694 * -> here;
7695 */
7696 if (lookfor == LOOKFOR_UNTERM)
7697 {
7698 /* When line ends in a comma add extra indent */
7699 if (terminated == ',')
7700 amount += ind_continuation;
7701 break;
7702 }
7703
7704 if (lookfor == LOOKFOR_ENUM_OR_INIT)
7705 {
7706 /* Found two lines ending in ',', lineup with the
7707 * lowest one, but check for cpp base class
7708 * declaration/initialization, if it is an
7709 * opening brace or we are looking just for
7710 * enumerations/initializations. */
7711 if (terminated == ',')
7712 {
7713 if (ind_cpp_baseclass == 0)
7714 break;
7715
7716 lookfor = LOOKFOR_CPP_BASECLASS;
7717 continue;
7718 }
7719
7720 /* Ignore unterminated lines in between, but
7721 * reduce indent. */
7722 if (amount > cur_amount)
7723 amount = cur_amount;
7724 }
7725 else
7726 {
7727 /*
7728 * Found first unterminated line on a row, may
7729 * line up with this line, remember its indent
7730 * 100 +
7731 * -> here;
7732 */
7733 amount = cur_amount;
7734
7735 /*
7736 * If previous line ends in ',', check whether we
7737 * are in an initialization or enum
7738 * struct xxx =
7739 * {
7740 * sizeof a,
7741 * 124 };
7742 * or a normal possible continuation line.
7743 * but only, of no other statement has been found
7744 * yet.
7745 */
7746 if (lookfor == LOOKFOR_INITIAL && terminated == ',')
7747 {
7748 lookfor = LOOKFOR_ENUM_OR_INIT;
7749 cont_amount = cin_first_id_amount();
7750 }
7751 else
7752 {
7753 if (lookfor == LOOKFOR_INITIAL
7754 && *l != NUL
7755 && l[STRLEN(l) - 1] == '\\')
7756 /* XXX */
7757 cont_amount = cin_get_equal_amount(
7758 curwin->w_cursor.lnum);
7759 if (lookfor != LOOKFOR_TERM)
7760 lookfor = LOOKFOR_UNTERM;
7761 }
7762 }
7763 }
7764 }
7765
7766 /*
7767 * Check if we are after a while (cond);
7768 * If so: Ignore until the matching "do".
7769 */
7770 /* XXX */
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007771 else if (cin_iswhileofdo_end(terminated, ind_maxparen,
7772 ind_maxcomment))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007773 {
7774 /*
7775 * Found an unterminated line after a while ();, line up
7776 * with the last one.
7777 * while (cond);
7778 * 100 + <- line up with this one
7779 * -> here;
7780 */
7781 if (lookfor == LOOKFOR_UNTERM
7782 || lookfor == LOOKFOR_ENUM_OR_INIT)
7783 {
7784 if (cont_amount > 0)
7785 amount = cont_amount;
7786 else
7787 amount += ind_continuation;
7788 break;
7789 }
7790
7791 if (whilelevel == 0)
7792 {
7793 lookfor = LOOKFOR_TERM;
7794 amount = get_indent(); /* XXX */
7795 if (theline[0] == '{')
7796 amount += ind_open_extra;
7797 }
7798 ++whilelevel;
7799 }
7800
7801 /*
7802 * We are after a "normal" statement.
7803 * If we had another statement we can stop now and use the
7804 * indent of that other statement.
7805 * Otherwise the indent of the current statement may be used,
7806 * search backwards for the next "normal" statement.
7807 */
7808 else
7809 {
7810 /*
7811 * Skip single break line, if before a switch label. It
7812 * may be lined up with the case label.
7813 */
7814 if (lookfor == LOOKFOR_NOBREAK
7815 && cin_isbreak(skipwhite(ml_get_curline())))
7816 {
7817 lookfor = LOOKFOR_ANY;
7818 continue;
7819 }
7820
7821 /*
7822 * Handle "do {" line.
7823 */
7824 if (whilelevel > 0)
7825 {
7826 l = cin_skipcomment(ml_get_curline());
7827 if (cin_isdo(l))
7828 {
7829 amount = get_indent(); /* XXX */
7830 --whilelevel;
7831 continue;
7832 }
7833 }
7834
7835 /*
7836 * Found a terminated line above an unterminated line. Add
7837 * the amount for a continuation line.
7838 * x = 1;
7839 * y = foo +
7840 * -> here;
7841 * or
7842 * int x = 1;
7843 * int foo,
7844 * -> here;
7845 */
7846 if (lookfor == LOOKFOR_UNTERM
7847 || lookfor == LOOKFOR_ENUM_OR_INIT)
7848 {
7849 if (cont_amount > 0)
7850 amount = cont_amount;
7851 else
7852 amount += ind_continuation;
7853 break;
7854 }
7855
7856 /*
7857 * Found a terminated line above a terminated line or "if"
7858 * etc. line. Use the amount of the line below us.
7859 * x = 1; x = 1;
7860 * if (asdf) y = 2;
7861 * while (asdf) ->here;
7862 * here;
7863 * ->foo;
7864 */
7865 if (lookfor == LOOKFOR_TERM)
7866 {
7867 if (!lookfor_break && whilelevel == 0)
7868 break;
7869 }
7870
7871 /*
7872 * First line above the one we're indenting is terminated.
7873 * To know what needs to be done look further backward for
7874 * a terminated line.
7875 */
7876 else
7877 {
7878 /*
7879 * position the cursor over the rightmost paren, so
7880 * that matching it will take us back to the start of
7881 * the line. Helps for:
7882 * func(asdr,
7883 * asdfasdf);
7884 * here;
7885 */
7886term_again:
7887 l = ml_get_curline();
7888 if (find_last_paren(l, '(', ')')
7889 && (trypos = find_match_paren(ind_maxparen,
7890 ind_maxcomment)) != NULL)
7891 {
7892 /*
7893 * Check if we are on a case label now. This is
7894 * handled above.
7895 * case xx: if ( asdf &&
7896 * asdf)
7897 */
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007898 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007899 l = ml_get_curline();
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007900 if (cin_iscase(l, FALSE) || cin_isscopedecl(l))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007901 {
7902 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007903 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007904 continue;
7905 }
7906 }
7907
7908 /* When aligning with the case statement, don't align
7909 * with a statement after it.
7910 * case 1: { <-- don't use this { position
7911 * stat;
7912 * }
7913 * case 2:
7914 * stat;
7915 * }
7916 */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007917 iscase = (ind_keep_case_label && cin_iscase(l, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007918
7919 /*
7920 * Get indent and pointer to text for current line,
7921 * ignoring any jump label.
7922 */
7923 amount = skip_label(curwin->w_cursor.lnum,
7924 &l, ind_maxcomment);
7925
7926 if (theline[0] == '{')
7927 amount += ind_open_extra;
7928 /* See remark above: "Only add ind_open_extra.." */
Bram Moolenaar18144c82006-04-12 21:52:12 +00007929 l = skipwhite(l);
7930 if (*l == '{')
Bram Moolenaar071d4272004-06-13 20:20:40 +00007931 amount -= ind_open_extra;
7932 lookfor = iscase ? LOOKFOR_ANY : LOOKFOR_TERM;
7933
7934 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00007935 * When a terminated line starts with "else" skip to
7936 * the matching "if":
7937 * else 3;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00007938 * indent this;
Bram Moolenaar18144c82006-04-12 21:52:12 +00007939 * Need to use the scope of this "else". XXX
7940 * If whilelevel != 0 continue looking for a "do {".
7941 */
7942 if (lookfor == LOOKFOR_TERM
7943 && *l != '}'
7944 && cin_iselse(l)
7945 && whilelevel == 0)
7946 {
7947 if ((trypos = find_start_brace(ind_maxcomment))
7948 == NULL
7949 || find_match(LOOKFOR_IF, trypos->lnum,
7950 ind_maxparen, ind_maxcomment) == FAIL)
7951 break;
7952 continue;
7953 }
7954
7955 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007956 * If we're at the end of a block, skip to the start of
7957 * that block.
7958 */
Bram Moolenaar6d8f9c62011-11-30 13:03:28 +01007959 l = ml_get_curline();
Bram Moolenaar50f42ca2011-07-15 14:12:30 +02007960 if (find_last_paren(l, '{', '}')
Bram Moolenaar071d4272004-06-13 20:20:40 +00007961 && (trypos = find_start_brace(ind_maxcomment))
7962 != NULL) /* XXX */
7963 {
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007964 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007965 /* if not "else {" check for terminated again */
7966 /* but skip block for "} else {" */
7967 l = cin_skipcomment(ml_get_curline());
7968 if (*l == '}' || !cin_iselse(l))
7969 goto term_again;
7970 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007971 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007972 }
7973 }
7974 }
7975 }
7976 }
7977 }
7978
7979 /* add extra indent for a comment */
7980 if (cin_iscomment(theline))
7981 amount += ind_comment;
Bram Moolenaar02c707a2010-07-17 17:12:06 +02007982
7983 /* subtract extra left-shift for jump labels */
7984 if (ind_jump_label > 0 && original_line_islabel)
7985 amount -= ind_jump_label;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007986 }
7987
7988 /*
7989 * ok -- we're not inside any sort of structure at all!
7990 *
7991 * this means we're at the top level, and everything should
7992 * basically just match where the previous line is, except
7993 * for the lines immediately following a function declaration,
7994 * which are K&R-style parameters and need to be indented.
7995 */
7996 else
7997 {
7998 /*
7999 * if our line starts with an open brace, forget about any
8000 * prevailing indent and make sure it looks like the start
8001 * of a function
8002 */
8003
8004 if (theline[0] == '{')
8005 {
8006 amount = ind_first_open;
8007 }
8008
8009 /*
8010 * If the NEXT line is a function declaration, the current
8011 * line needs to be indented as a function type spec.
Bram Moolenaar1a89bbe2010-03-02 12:38:22 +01008012 * Don't do this if the current line looks like a comment or if the
8013 * current line is terminated, ie. ends in ';', or if the current line
8014 * contains { or }: "void f() {\n if (1)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008015 */
8016 else if (cur_curpos.lnum < curbuf->b_ml.ml_line_count
8017 && !cin_nocode(theline)
Bram Moolenaar1a89bbe2010-03-02 12:38:22 +01008018 && vim_strchr(theline, '{') == NULL
8019 && vim_strchr(theline, '}') == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008020 && !cin_ends_in(theline, (char_u *)":", NULL)
8021 && !cin_ends_in(theline, (char_u *)",", NULL)
8022 && cin_isfuncdecl(NULL, cur_curpos.lnum + 1)
8023 && !cin_isterminated(theline, FALSE, TRUE))
8024 {
8025 amount = ind_func_type;
8026 }
8027 else
8028 {
8029 amount = 0;
8030 curwin->w_cursor = cur_curpos;
8031
8032 /* search backwards until we find something we recognize */
8033
8034 while (curwin->w_cursor.lnum > 1)
8035 {
8036 curwin->w_cursor.lnum--;
8037 curwin->w_cursor.col = 0;
8038
8039 l = ml_get_curline();
8040
8041 /*
8042 * If we're in a comment now, skip to the start of the comment.
8043 */ /* XXX */
8044 if ((trypos = find_start_comment(ind_maxcomment)) != NULL)
8045 {
8046 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008047 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008048 continue;
8049 }
8050
8051 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00008052 * Are we at the start of a cpp base class declaration or
8053 * constructor initialization?
Bram Moolenaar071d4272004-06-13 20:20:40 +00008054 */ /* XXX */
Bram Moolenaar18144c82006-04-12 21:52:12 +00008055 n = FALSE;
8056 if (ind_cpp_baseclass != 0 && theline[0] != '{')
8057 {
Bram Moolenaare7c56862007-08-04 10:14:52 +00008058 n = cin_is_cpp_baseclass(&col);
Bram Moolenaar18144c82006-04-12 21:52:12 +00008059 l = ml_get_curline();
8060 }
8061 if (n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008062 {
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00008063 /* XXX */
8064 amount = get_baseclass_amount(col, ind_maxparen,
8065 ind_maxcomment, ind_cpp_baseclass);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008066 break;
8067 }
8068
8069 /*
8070 * Skip preprocessor directives and blank lines.
8071 */
8072 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
8073 continue;
8074
8075 if (cin_nocode(l))
8076 continue;
8077
8078 /*
8079 * If the previous line ends in ',', use one level of
8080 * indentation:
8081 * int foo,
8082 * bar;
8083 * do this before checking for '}' in case of eg.
8084 * enum foobar
8085 * {
8086 * ...
8087 * } foo,
8088 * bar;
8089 */
8090 n = 0;
8091 if (cin_ends_in(l, (char_u *)",", NULL)
8092 || (*l != NUL && (n = l[STRLEN(l) - 1]) == '\\'))
8093 {
8094 /* take us back to opening paren */
8095 if (find_last_paren(l, '(', ')')
8096 && (trypos = find_match_paren(ind_maxparen,
8097 ind_maxcomment)) != NULL)
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008098 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008099
8100 /* For a line ending in ',' that is a continuation line go
8101 * back to the first line with a backslash:
8102 * char *foo = "bla\
8103 * bla",
8104 * here;
8105 */
8106 while (n == 0 && curwin->w_cursor.lnum > 1)
8107 {
8108 l = ml_get(curwin->w_cursor.lnum - 1);
8109 if (*l == NUL || l[STRLEN(l) - 1] != '\\')
8110 break;
8111 --curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008112 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008113 }
8114
8115 amount = get_indent(); /* XXX */
8116
8117 if (amount == 0)
8118 amount = cin_first_id_amount();
8119 if (amount == 0)
8120 amount = ind_continuation;
8121 break;
8122 }
8123
8124 /*
8125 * If the line looks like a function declaration, and we're
8126 * not in a comment, put it the left margin.
8127 */
8128 if (cin_isfuncdecl(NULL, cur_curpos.lnum)) /* XXX */
8129 break;
8130 l = ml_get_curline();
8131
8132 /*
8133 * Finding the closing '}' of a previous function. Put
8134 * current line at the left margin. For when 'cino' has "fs".
8135 */
8136 if (*skipwhite(l) == '}')
8137 break;
8138
8139 /* (matching {)
8140 * If the previous line ends on '};' (maybe followed by
8141 * comments) align at column 0. For example:
8142 * char *string_array[] = { "foo",
8143 * / * x * / "b};ar" }; / * foobar * /
8144 */
8145 if (cin_ends_in(l, (char_u *)"};", NULL))
8146 break;
8147
8148 /*
Bram Moolenaar3388bb42011-11-30 17:20:23 +01008149 * Find a line only has a semicolon that belongs to a previous
8150 * line ending in '}', e.g. before an #endif. Don't increase
8151 * indent then.
8152 */
8153 if (*(look = skipwhite(l)) == ';' && cin_nocode(look + 1))
8154 {
8155 pos_T curpos_save = curwin->w_cursor;
8156
8157 while (curwin->w_cursor.lnum > 1)
8158 {
8159 look = ml_get(--curwin->w_cursor.lnum);
8160 if (!(cin_nocode(look) || cin_ispreproc_cont(
8161 &look, &curwin->w_cursor.lnum)))
8162 break;
8163 }
8164 if (curwin->w_cursor.lnum > 0
8165 && cin_ends_in(look, (char_u *)"}", NULL))
8166 break;
8167
8168 curwin->w_cursor = curpos_save;
8169 }
8170
8171 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008172 * If the PREVIOUS line is a function declaration, the current
8173 * line (and the ones that follow) needs to be indented as
8174 * parameters.
8175 */
8176 if (cin_isfuncdecl(&l, curwin->w_cursor.lnum))
8177 {
8178 amount = ind_param;
8179 break;
8180 }
8181
8182 /*
8183 * If the previous line ends in ';' and the line before the
8184 * previous line ends in ',' or '\', ident to column zero:
8185 * int foo,
8186 * bar;
8187 * indent_to_0 here;
8188 */
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00008189 if (cin_ends_in(l, (char_u *)";", NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008190 {
8191 l = ml_get(curwin->w_cursor.lnum - 1);
8192 if (cin_ends_in(l, (char_u *)",", NULL)
8193 || (*l != NUL && l[STRLEN(l) - 1] == '\\'))
8194 break;
8195 l = ml_get_curline();
8196 }
8197
8198 /*
8199 * Doesn't look like anything interesting -- so just
8200 * use the indent of this line.
8201 *
8202 * Position the cursor over the rightmost paren, so that
8203 * matching it will take us back to the start of the line.
8204 */
8205 find_last_paren(l, '(', ')');
8206
8207 if ((trypos = find_match_paren(ind_maxparen,
8208 ind_maxcomment)) != NULL)
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008209 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008210 amount = get_indent(); /* XXX */
8211 break;
8212 }
8213
8214 /* add extra indent for a comment */
8215 if (cin_iscomment(theline))
8216 amount += ind_comment;
8217
8218 /* add extra indent if the previous line ended in a backslash:
8219 * "asdfasdf\
8220 * here";
8221 * char *foo = "asdf\
8222 * here";
8223 */
8224 if (cur_curpos.lnum > 1)
8225 {
8226 l = ml_get(cur_curpos.lnum - 1);
8227 if (*l != NUL && l[STRLEN(l) - 1] == '\\')
8228 {
8229 cur_amount = cin_get_equal_amount(cur_curpos.lnum - 1);
8230 if (cur_amount > 0)
8231 amount = cur_amount;
8232 else if (cur_amount == 0)
8233 amount += ind_continuation;
8234 }
8235 }
8236 }
8237 }
8238
8239theend:
8240 /* put the cursor back where it belongs */
8241 curwin->w_cursor = cur_curpos;
8242
8243 vim_free(linecopy);
8244
8245 if (amount < 0)
8246 return 0;
8247 return amount;
8248}
8249
8250 static int
8251find_match(lookfor, ourscope, ind_maxparen, ind_maxcomment)
8252 int lookfor;
8253 linenr_T ourscope;
8254 int ind_maxparen;
8255 int ind_maxcomment;
8256{
8257 char_u *look;
8258 pos_T *theirscope;
8259 char_u *mightbeif;
8260 int elselevel;
8261 int whilelevel;
8262
8263 if (lookfor == LOOKFOR_IF)
8264 {
8265 elselevel = 1;
8266 whilelevel = 0;
8267 }
8268 else
8269 {
8270 elselevel = 0;
8271 whilelevel = 1;
8272 }
8273
8274 curwin->w_cursor.col = 0;
8275
8276 while (curwin->w_cursor.lnum > ourscope + 1)
8277 {
8278 curwin->w_cursor.lnum--;
8279 curwin->w_cursor.col = 0;
8280
8281 look = cin_skipcomment(ml_get_curline());
8282 if (cin_iselse(look)
8283 || cin_isif(look)
8284 || cin_isdo(look) /* XXX */
8285 || cin_iswhileofdo(look, curwin->w_cursor.lnum, ind_maxparen))
8286 {
8287 /*
8288 * if we've gone outside the braces entirely,
8289 * we must be out of scope...
8290 */
8291 theirscope = find_start_brace(ind_maxcomment); /* XXX */
8292 if (theirscope == NULL)
8293 break;
8294
8295 /*
8296 * and if the brace enclosing this is further
8297 * back than the one enclosing the else, we're
8298 * out of luck too.
8299 */
8300 if (theirscope->lnum < ourscope)
8301 break;
8302
8303 /*
8304 * and if they're enclosed in a *deeper* brace,
8305 * then we can ignore it because it's in a
8306 * different scope...
8307 */
8308 if (theirscope->lnum > ourscope)
8309 continue;
8310
8311 /*
8312 * if it was an "else" (that's not an "else if")
8313 * then we need to go back to another if, so
8314 * increment elselevel
8315 */
8316 look = cin_skipcomment(ml_get_curline());
8317 if (cin_iselse(look))
8318 {
8319 mightbeif = cin_skipcomment(look + 4);
8320 if (!cin_isif(mightbeif))
8321 ++elselevel;
8322 continue;
8323 }
8324
8325 /*
8326 * if it was a "while" then we need to go back to
8327 * another "do", so increment whilelevel. XXX
8328 */
8329 if (cin_iswhileofdo(look, curwin->w_cursor.lnum, ind_maxparen))
8330 {
8331 ++whilelevel;
8332 continue;
8333 }
8334
8335 /* If it's an "if" decrement elselevel */
8336 look = cin_skipcomment(ml_get_curline());
8337 if (cin_isif(look))
8338 {
8339 elselevel--;
8340 /*
8341 * When looking for an "if" ignore "while"s that
8342 * get in the way.
8343 */
8344 if (elselevel == 0 && lookfor == LOOKFOR_IF)
8345 whilelevel = 0;
8346 }
8347
8348 /* If it's a "do" decrement whilelevel */
8349 if (cin_isdo(look))
8350 whilelevel--;
8351
8352 /*
8353 * if we've used up all the elses, then
8354 * this must be the if that we want!
8355 * match the indent level of that if.
8356 */
8357 if (elselevel <= 0 && whilelevel <= 0)
8358 {
8359 return OK;
8360 }
8361 }
8362 }
8363 return FAIL;
8364}
8365
8366# if defined(FEAT_EVAL) || defined(PROTO)
8367/*
8368 * Get indent level from 'indentexpr'.
8369 */
8370 int
8371get_expr_indent()
8372{
8373 int indent;
8374 pos_T pos;
8375 int save_State;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00008376 int use_sandbox = was_set_insecurely((char_u *)"indentexpr",
8377 OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008378
8379 pos = curwin->w_cursor;
8380 set_vim_var_nr(VV_LNUM, curwin->w_cursor.lnum);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00008381 if (use_sandbox)
8382 ++sandbox;
8383 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008384 indent = eval_to_number(curbuf->b_p_inde);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00008385 if (use_sandbox)
8386 --sandbox;
8387 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008388
8389 /* Restore the cursor position so that 'indentexpr' doesn't need to.
8390 * Pretend to be in Insert mode, allow cursor past end of line for "o"
8391 * command. */
8392 save_State = State;
8393 State = INSERT;
8394 curwin->w_cursor = pos;
8395 check_cursor();
8396 State = save_State;
8397
8398 /* If there is an error, just keep the current indent. */
8399 if (indent < 0)
8400 indent = get_indent();
8401
8402 return indent;
8403}
8404# endif
8405
8406#endif /* FEAT_CINDENT */
8407
8408#if defined(FEAT_LISP) || defined(PROTO)
8409
8410static int lisp_match __ARGS((char_u *p));
8411
8412 static int
8413lisp_match(p)
8414 char_u *p;
8415{
8416 char_u buf[LSIZE];
8417 int len;
8418 char_u *word = p_lispwords;
8419
8420 while (*word != NUL)
8421 {
8422 (void)copy_option_part(&word, buf, LSIZE, ",");
8423 len = (int)STRLEN(buf);
8424 if (STRNCMP(buf, p, len) == 0 && p[len] == ' ')
8425 return TRUE;
8426 }
8427 return FALSE;
8428}
8429
8430/*
8431 * When 'p' is present in 'cpoptions, a Vi compatible method is used.
8432 * The incompatible newer method is quite a bit better at indenting
8433 * code in lisp-like languages than the traditional one; it's still
8434 * mostly heuristics however -- Dirk van Deun, dirk@rave.org
8435 *
8436 * TODO:
8437 * Findmatch() should be adapted for lisp, also to make showmatch
8438 * work correctly: now (v5.3) it seems all C/C++ oriented:
8439 * - it does not recognize the #\( and #\) notations as character literals
8440 * - it doesn't know about comments starting with a semicolon
8441 * - it incorrectly interprets '(' as a character literal
8442 * All this messes up get_lisp_indent in some rare cases.
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008443 * Update from Sergey Khorev:
8444 * I tried to fix the first two issues.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008445 */
8446 int
8447get_lisp_indent()
8448{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008449 pos_T *pos, realpos, paren;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008450 int amount;
8451 char_u *that;
8452 colnr_T col;
8453 colnr_T firsttry;
8454 int parencount, quotecount;
8455 int vi_lisp;
8456
8457 /* Set vi_lisp to use the vi-compatible method */
8458 vi_lisp = (vim_strchr(p_cpo, CPO_LISP) != NULL);
8459
8460 realpos = curwin->w_cursor;
8461 curwin->w_cursor.col = 0;
8462
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008463 if ((pos = findmatch(NULL, '(')) == NULL)
8464 pos = findmatch(NULL, '[');
8465 else
8466 {
8467 paren = *pos;
8468 pos = findmatch(NULL, '[');
8469 if (pos == NULL || ltp(pos, &paren))
8470 pos = &paren;
8471 }
8472 if (pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008473 {
8474 /* Extra trick: Take the indent of the first previous non-white
8475 * line that is at the same () level. */
8476 amount = -1;
8477 parencount = 0;
8478
8479 while (--curwin->w_cursor.lnum >= pos->lnum)
8480 {
8481 if (linewhite(curwin->w_cursor.lnum))
8482 continue;
8483 for (that = ml_get_curline(); *that != NUL; ++that)
8484 {
8485 if (*that == ';')
8486 {
8487 while (*(that + 1) != NUL)
8488 ++that;
8489 continue;
8490 }
8491 if (*that == '\\')
8492 {
8493 if (*(that + 1) != NUL)
8494 ++that;
8495 continue;
8496 }
8497 if (*that == '"' && *(that + 1) != NUL)
8498 {
Bram Moolenaar15ff6c12006-09-15 18:18:09 +00008499 while (*++that && *that != '"')
8500 {
8501 /* skipping escaped characters in the string */
8502 if (*that == '\\')
8503 {
8504 if (*++that == NUL)
8505 break;
8506 if (that[1] == NUL)
8507 {
8508 ++that;
8509 break;
8510 }
8511 }
8512 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008513 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008514 if (*that == '(' || *that == '[')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008515 ++parencount;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008516 else if (*that == ')' || *that == ']')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008517 --parencount;
8518 }
8519 if (parencount == 0)
8520 {
8521 amount = get_indent();
8522 break;
8523 }
8524 }
8525
8526 if (amount == -1)
8527 {
8528 curwin->w_cursor.lnum = pos->lnum;
8529 curwin->w_cursor.col = pos->col;
8530 col = pos->col;
8531
8532 that = ml_get_curline();
8533
8534 if (vi_lisp && get_indent() == 0)
8535 amount = 2;
8536 else
8537 {
8538 amount = 0;
8539 while (*that && col)
8540 {
8541 amount += lbr_chartabsize_adv(&that, (colnr_T)amount);
8542 col--;
8543 }
8544
8545 /*
8546 * Some keywords require "body" indenting rules (the
8547 * non-standard-lisp ones are Scheme special forms):
8548 *
8549 * (let ((a 1)) instead (let ((a 1))
8550 * (...)) of (...))
8551 */
8552
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008553 if (!vi_lisp && (*that == '(' || *that == '[')
8554 && lisp_match(that + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008555 amount += 2;
8556 else
8557 {
8558 that++;
8559 amount++;
8560 firsttry = amount;
8561
8562 while (vim_iswhite(*that))
8563 {
8564 amount += lbr_chartabsize(that, (colnr_T)amount);
8565 ++that;
8566 }
8567
8568 if (*that && *that != ';') /* not a comment line */
8569 {
Bram Moolenaare21877a2008-02-13 09:58:14 +00008570 /* test *that != '(' to accommodate first let/do
Bram Moolenaar071d4272004-06-13 20:20:40 +00008571 * argument if it is more than one line */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008572 if (!vi_lisp && *that != '(' && *that != '[')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008573 firsttry++;
8574
8575 parencount = 0;
8576 quotecount = 0;
8577
8578 if (vi_lisp
8579 || (*that != '"'
8580 && *that != '\''
8581 && *that != '#'
8582 && (*that < '0' || *that > '9')))
8583 {
8584 while (*that
8585 && (!vim_iswhite(*that)
8586 || quotecount
8587 || parencount)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008588 && (!((*that == '(' || *that == '[')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008589 && !quotecount
8590 && !parencount
8591 && vi_lisp)))
8592 {
8593 if (*that == '"')
8594 quotecount = !quotecount;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008595 if ((*that == '(' || *that == '[')
8596 && !quotecount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008597 ++parencount;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008598 if ((*that == ')' || *that == ']')
8599 && !quotecount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008600 --parencount;
8601 if (*that == '\\' && *(that+1) != NUL)
8602 amount += lbr_chartabsize_adv(&that,
8603 (colnr_T)amount);
8604 amount += lbr_chartabsize_adv(&that,
8605 (colnr_T)amount);
8606 }
8607 }
8608 while (vim_iswhite(*that))
8609 {
8610 amount += lbr_chartabsize(that, (colnr_T)amount);
8611 that++;
8612 }
8613 if (!*that || *that == ';')
8614 amount = firsttry;
8615 }
8616 }
8617 }
8618 }
8619 }
8620 else
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008621 amount = 0; /* no matching '(' or '[' found, use zero indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008622
8623 curwin->w_cursor = realpos;
8624
8625 return amount;
8626}
8627#endif /* FEAT_LISP */
8628
8629 void
8630prepare_to_exit()
8631{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00008632#if defined(SIGHUP) && defined(SIG_IGN)
8633 /* Ignore SIGHUP, because a dropped connection causes a read error, which
8634 * makes Vim exit and then handling SIGHUP causes various reentrance
8635 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008636 signal(SIGHUP, SIG_IGN);
8637#endif
8638
Bram Moolenaar071d4272004-06-13 20:20:40 +00008639#ifdef FEAT_GUI
8640 if (gui.in_use)
8641 {
8642 gui.dying = TRUE;
8643 out_trash(); /* trash any pending output */
8644 }
8645 else
8646#endif
8647 {
8648 windgoto((int)Rows - 1, 0);
8649
8650 /*
8651 * Switch terminal mode back now, so messages end up on the "normal"
8652 * screen (if there are two screens).
8653 */
8654 settmode(TMODE_COOK);
8655#ifdef WIN3264
8656 if (can_end_termcap_mode(FALSE) == TRUE)
8657#endif
8658 stoptermcap();
8659 out_flush();
8660 }
8661}
8662
8663/*
8664 * Preserve files and exit.
8665 * When called IObuff must contain a message.
8666 */
8667 void
8668preserve_exit()
8669{
8670 buf_T *buf;
8671
8672 prepare_to_exit();
8673
Bram Moolenaar4770d092006-01-12 23:22:24 +00008674 /* Setting this will prevent free() calls. That avoids calling free()
8675 * recursively when free() was invoked with a bad pointer. */
8676 really_exiting = TRUE;
8677
Bram Moolenaar071d4272004-06-13 20:20:40 +00008678 out_str(IObuff);
8679 screen_start(); /* don't know where cursor is now */
8680 out_flush();
8681
8682 ml_close_notmod(); /* close all not-modified buffers */
8683
8684 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
8685 {
8686 if (buf->b_ml.ml_mfp != NULL && buf->b_ml.ml_mfp->mf_fname != NULL)
8687 {
8688 OUT_STR(_("Vim: preserving files...\n"));
8689 screen_start(); /* don't know where cursor is now */
8690 out_flush();
8691 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
8692 break;
8693 }
8694 }
8695
8696 ml_close_all(FALSE); /* close all memfiles, without deleting */
8697
8698 OUT_STR(_("Vim: Finished.\n"));
8699
8700 getout(1);
8701}
8702
8703/*
8704 * return TRUE if "fname" exists.
8705 */
8706 int
8707vim_fexists(fname)
8708 char_u *fname;
8709{
8710 struct stat st;
8711
8712 if (mch_stat((char *)fname, &st))
8713 return FALSE;
8714 return TRUE;
8715}
8716
8717/*
8718 * Check for CTRL-C pressed, but only once in a while.
8719 * Should be used instead of ui_breakcheck() for functions that check for
8720 * each line in the file. Calling ui_breakcheck() each time takes too much
8721 * time, because it can be a system call.
8722 */
8723
8724#ifndef BREAKCHECK_SKIP
8725# ifdef FEAT_GUI /* assume the GUI only runs on fast computers */
8726# define BREAKCHECK_SKIP 200
8727# else
8728# define BREAKCHECK_SKIP 32
8729# endif
8730#endif
8731
8732static int breakcheck_count = 0;
8733
8734 void
8735line_breakcheck()
8736{
8737 if (++breakcheck_count >= BREAKCHECK_SKIP)
8738 {
8739 breakcheck_count = 0;
8740 ui_breakcheck();
8741 }
8742}
8743
8744/*
8745 * Like line_breakcheck() but check 10 times less often.
8746 */
8747 void
8748fast_breakcheck()
8749{
8750 if (++breakcheck_count >= BREAKCHECK_SKIP * 10)
8751 {
8752 breakcheck_count = 0;
8753 ui_breakcheck();
8754 }
8755}
8756
8757/*
Bram Moolenaard7834d32009-12-02 16:14:36 +00008758 * Invoke expand_wildcards() for one pattern.
8759 * Expand items like "%:h" before the expansion.
8760 * Returns OK or FAIL.
8761 */
8762 int
8763expand_wildcards_eval(pat, num_file, file, flags)
8764 char_u **pat; /* pointer to input pattern */
8765 int *num_file; /* resulting number of files */
8766 char_u ***file; /* array of resulting files */
8767 int flags; /* EW_DIR, etc. */
8768{
8769 int ret = FAIL;
8770 char_u *eval_pat = NULL;
8771 char_u *exp_pat = *pat;
8772 char_u *ignored_msg;
8773 int usedlen;
8774
8775 if (*exp_pat == '%' || *exp_pat == '#' || *exp_pat == '<')
8776 {
8777 ++emsg_off;
8778 eval_pat = eval_vars(exp_pat, exp_pat, &usedlen,
8779 NULL, &ignored_msg, NULL);
8780 --emsg_off;
8781 if (eval_pat != NULL)
8782 exp_pat = concat_str(eval_pat, exp_pat + usedlen);
8783 }
8784
8785 if (exp_pat != NULL)
8786 ret = expand_wildcards(1, &exp_pat, num_file, file, flags);
8787
8788 if (eval_pat != NULL)
8789 {
8790 vim_free(exp_pat);
8791 vim_free(eval_pat);
8792 }
8793
8794 return ret;
8795}
8796
8797/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008798 * Expand wildcards. Calls gen_expand_wildcards() and removes files matching
8799 * 'wildignore'.
Bram Moolenaar9e193ac2010-07-19 23:11:27 +02008800 * Returns OK or FAIL. When FAIL then "num_file" won't be set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008801 */
8802 int
8803expand_wildcards(num_pat, pat, num_file, file, flags)
8804 int num_pat; /* number of input patterns */
8805 char_u **pat; /* array of input patterns */
8806 int *num_file; /* resulting number of files */
8807 char_u ***file; /* array of resulting files */
8808 int flags; /* EW_DIR, etc. */
8809{
8810 int retval;
8811 int i, j;
8812 char_u *p;
8813 int non_suf_match; /* number without matching suffix */
8814
8815 retval = gen_expand_wildcards(num_pat, pat, num_file, file, flags);
8816
8817 /* When keeping all matches, return here */
Bram Moolenaar9e193ac2010-07-19 23:11:27 +02008818 if ((flags & EW_KEEPALL) || retval == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008819 return retval;
8820
8821#ifdef FEAT_WILDIGN
8822 /*
8823 * Remove names that match 'wildignore'.
8824 */
8825 if (*p_wig)
8826 {
8827 char_u *ffname;
8828
8829 /* check all files in (*file)[] */
8830 for (i = 0; i < *num_file; ++i)
8831 {
8832 ffname = FullName_save((*file)[i], FALSE);
8833 if (ffname == NULL) /* out of memory */
8834 break;
8835# ifdef VMS
8836 vms_remove_version(ffname);
8837# endif
8838 if (match_file_list(p_wig, (*file)[i], ffname))
8839 {
8840 /* remove this matching file from the list */
8841 vim_free((*file)[i]);
8842 for (j = i; j + 1 < *num_file; ++j)
8843 (*file)[j] = (*file)[j + 1];
8844 --*num_file;
8845 --i;
8846 }
8847 vim_free(ffname);
8848 }
8849 }
8850#endif
8851
8852 /*
8853 * Move the names where 'suffixes' match to the end.
8854 */
8855 if (*num_file > 1)
8856 {
8857 non_suf_match = 0;
8858 for (i = 0; i < *num_file; ++i)
8859 {
8860 if (!match_suffix((*file)[i]))
8861 {
8862 /*
8863 * Move the name without matching suffix to the front
8864 * of the list.
8865 */
8866 p = (*file)[i];
8867 for (j = i; j > non_suf_match; --j)
8868 (*file)[j] = (*file)[j - 1];
8869 (*file)[non_suf_match++] = p;
8870 }
8871 }
8872 }
8873
8874 return retval;
8875}
8876
8877/*
8878 * Return TRUE if "fname" matches with an entry in 'suffixes'.
8879 */
8880 int
8881match_suffix(fname)
8882 char_u *fname;
8883{
8884 int fnamelen, setsuflen;
8885 char_u *setsuf;
8886#define MAXSUFLEN 30 /* maximum length of a file suffix */
8887 char_u suf_buf[MAXSUFLEN];
8888
8889 fnamelen = (int)STRLEN(fname);
8890 setsuflen = 0;
8891 for (setsuf = p_su; *setsuf; )
8892 {
8893 setsuflen = copy_option_part(&setsuf, suf_buf, MAXSUFLEN, ".,");
Bram Moolenaar055a2ba2009-07-14 19:40:21 +00008894 if (setsuflen == 0)
8895 {
8896 char_u *tail = gettail(fname);
8897
8898 /* empty entry: match name without a '.' */
8899 if (vim_strchr(tail, '.') == NULL)
8900 {
8901 setsuflen = 1;
8902 break;
8903 }
8904 }
8905 else
8906 {
8907 if (fnamelen >= setsuflen
8908 && fnamencmp(suf_buf, fname + fnamelen - setsuflen,
8909 (size_t)setsuflen) == 0)
8910 break;
8911 setsuflen = 0;
8912 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008913 }
8914 return (setsuflen != 0);
8915}
8916
8917#if !defined(NO_EXPANDPATH) || defined(PROTO)
8918
8919# ifdef VIM_BACKTICK
8920static int vim_backtick __ARGS((char_u *p));
8921static int expand_backtick __ARGS((garray_T *gap, char_u *pat, int flags));
8922# endif
8923
8924# if defined(MSDOS) || defined(FEAT_GUI_W16) || defined(WIN3264)
8925/*
8926 * File name expansion code for MS-DOS, Win16 and Win32. It's here because
8927 * it's shared between these systems.
8928 */
8929# if defined(DJGPP) || defined(PROTO)
8930# define _cdecl /* DJGPP doesn't have this */
8931# else
8932# ifdef __BORLANDC__
8933# define _cdecl _RTLENTRYF
8934# endif
8935# endif
8936
8937/*
8938 * comparison function for qsort in dos_expandpath()
8939 */
8940 static int _cdecl
8941pstrcmp(const void *a, const void *b)
8942{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00008943 return (pathcmp(*(char **)a, *(char **)b, -1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008944}
8945
8946# ifndef WIN3264
8947 static void
8948namelowcpy(
8949 char_u *d,
8950 char_u *s)
8951{
8952# ifdef DJGPP
8953 if (USE_LONG_FNAME) /* don't lower case on Windows 95/NT systems */
8954 while (*s)
8955 *d++ = *s++;
8956 else
8957# endif
8958 while (*s)
8959 *d++ = TOLOWER_LOC(*s++);
8960 *d = NUL;
8961}
8962# endif
8963
8964/*
Bram Moolenaar231334e2005-07-25 20:46:57 +00008965 * Recursively expand one path component into all matching files and/or
8966 * directories. Adds matches to "gap". Handles "*", "?", "[a-z]", "**", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008967 * Return the number of matches found.
8968 * "path" has backslashes before chars that are not to be expanded, starting
8969 * at "path[wildoff]".
Bram Moolenaar231334e2005-07-25 20:46:57 +00008970 * Return the number of matches found.
8971 * NOTE: much of this is identical to unix_expandpath(), keep in sync!
Bram Moolenaar071d4272004-06-13 20:20:40 +00008972 */
8973 static int
8974dos_expandpath(
8975 garray_T *gap,
8976 char_u *path,
8977 int wildoff,
Bram Moolenaar231334e2005-07-25 20:46:57 +00008978 int flags, /* EW_* flags */
Bram Moolenaar25394022007-05-10 19:06:20 +00008979 int didstar) /* expanded "**" once already */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008980{
Bram Moolenaar231334e2005-07-25 20:46:57 +00008981 char_u *buf;
8982 char_u *path_end;
8983 char_u *p, *s, *e;
8984 int start_len = gap->ga_len;
8985 char_u *pat;
8986 regmatch_T regmatch;
8987 int starts_with_dot;
8988 int matches;
8989 int len;
8990 int starstar = FALSE;
8991 static int stardepth = 0; /* depth for "**" expansion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008992#ifdef WIN3264
8993 WIN32_FIND_DATA fb;
8994 HANDLE hFind = (HANDLE)0;
8995# ifdef FEAT_MBYTE
8996 WIN32_FIND_DATAW wfb;
8997 WCHAR *wn = NULL; /* UCS-2 name, NULL when not used. */
8998# endif
8999#else
9000 struct ffblk fb;
9001#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009002 char_u *matchname;
Bram Moolenaar231334e2005-07-25 20:46:57 +00009003 int ok;
9004
9005 /* Expanding "**" may take a long time, check for CTRL-C. */
9006 if (stardepth > 0)
9007 {
9008 ui_breakcheck();
9009 if (got_int)
9010 return 0;
9011 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009012
9013 /* make room for file name */
Bram Moolenaar231334e2005-07-25 20:46:57 +00009014 buf = alloc((int)STRLEN(path) + BASENAMELEN + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009015 if (buf == NULL)
9016 return 0;
9017
9018 /*
9019 * Find the first part in the path name that contains a wildcard or a ~1.
9020 * Copy it into buf, including the preceding characters.
9021 */
9022 p = buf;
9023 s = buf;
9024 e = NULL;
9025 path_end = path;
9026 while (*path_end != NUL)
9027 {
9028 /* May ignore a wildcard that has a backslash before it; it will
9029 * be removed by rem_backslash() or file_pat_to_reg_pat() below. */
9030 if (path_end >= path + wildoff && rem_backslash(path_end))
9031 *p++ = *path_end++;
9032 else if (*path_end == '\\' || *path_end == ':' || *path_end == '/')
9033 {
9034 if (e != NULL)
9035 break;
9036 s = p + 1;
9037 }
9038 else if (path_end >= path + wildoff
9039 && vim_strchr((char_u *)"*?[~", *path_end) != NULL)
9040 e = p;
9041#ifdef FEAT_MBYTE
9042 if (has_mbyte)
9043 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009044 len = (*mb_ptr2len)(path_end);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009045 STRNCPY(p, path_end, len);
9046 p += len;
9047 path_end += len;
9048 }
9049 else
9050#endif
9051 *p++ = *path_end++;
9052 }
9053 e = p;
9054 *e = NUL;
9055
9056 /* now we have one wildcard component between s and e */
9057 /* Remove backslashes between "wildoff" and the start of the wildcard
9058 * component. */
9059 for (p = buf + wildoff; p < s; ++p)
9060 if (rem_backslash(p))
9061 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009062 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009063 --e;
9064 --s;
9065 }
9066
Bram Moolenaar231334e2005-07-25 20:46:57 +00009067 /* Check for "**" between "s" and "e". */
9068 for (p = s; p < e; ++p)
9069 if (p[0] == '*' && p[1] == '*')
9070 starstar = TRUE;
9071
Bram Moolenaar071d4272004-06-13 20:20:40 +00009072 starts_with_dot = (*s == '.');
9073 pat = file_pat_to_reg_pat(s, e, NULL, FALSE);
9074 if (pat == NULL)
9075 {
9076 vim_free(buf);
9077 return 0;
9078 }
9079
9080 /* compile the regexp into a program */
Bram Moolenaarb5609832011-07-20 15:04:58 +02009081 if (flags & EW_NOERROR)
9082 ++emsg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009083 regmatch.rm_ic = TRUE; /* Always ignore case */
9084 regmatch.regprog = vim_regcomp(pat, RE_MAGIC);
Bram Moolenaarb5609832011-07-20 15:04:58 +02009085 if (flags & EW_NOERROR)
9086 --emsg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009087 vim_free(pat);
9088
9089 if (regmatch.regprog == NULL)
9090 {
9091 vim_free(buf);
9092 return 0;
9093 }
9094
9095 /* remember the pattern or file name being looked for */
9096 matchname = vim_strsave(s);
9097
Bram Moolenaar231334e2005-07-25 20:46:57 +00009098 /* If "**" is by itself, this is the first time we encounter it and more
9099 * is following then find matches without any directory. */
9100 if (!didstar && stardepth < 100 && starstar && e - s == 2
9101 && *path_end == '/')
9102 {
9103 STRCPY(s, path_end + 1);
9104 ++stardepth;
9105 (void)dos_expandpath(gap, buf, (int)(s - buf), flags, TRUE);
9106 --stardepth;
9107 }
9108
Bram Moolenaar071d4272004-06-13 20:20:40 +00009109 /* Scan all files in the directory with "dir/ *.*" */
9110 STRCPY(s, "*.*");
9111#ifdef WIN3264
9112# ifdef FEAT_MBYTE
9113 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
9114 {
9115 /* The active codepage differs from 'encoding'. Attempt using the
9116 * wide function. If it fails because it is not implemented fall back
9117 * to the non-wide version (for Windows 98) */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00009118 wn = enc_to_utf16(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009119 if (wn != NULL)
9120 {
9121 hFind = FindFirstFileW(wn, &wfb);
9122 if (hFind == INVALID_HANDLE_VALUE
9123 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
9124 {
9125 vim_free(wn);
9126 wn = NULL;
9127 }
9128 }
9129 }
9130
9131 if (wn == NULL)
9132# endif
9133 hFind = FindFirstFile(buf, &fb);
9134 ok = (hFind != INVALID_HANDLE_VALUE);
9135#else
9136 /* If we are expanding wildcards we try both files and directories */
9137 ok = (findfirst((char *)buf, &fb,
9138 (*path_end != NUL || (flags & EW_DIR)) ? FA_DIREC : 0) == 0);
9139#endif
9140
9141 while (ok)
9142 {
9143#ifdef WIN3264
9144# ifdef FEAT_MBYTE
9145 if (wn != NULL)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00009146 p = utf16_to_enc(wfb.cFileName, NULL); /* p is allocated here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009147 else
9148# endif
9149 p = (char_u *)fb.cFileName;
9150#else
9151 p = (char_u *)fb.ff_name;
9152#endif
9153 /* Ignore entries starting with a dot, unless when asked for. Accept
9154 * all entries found with "matchname". */
9155 if ((p[0] != '.' || starts_with_dot)
9156 && (matchname == NULL
Bram Moolenaar0b573a52011-07-27 17:31:47 +02009157 || vim_regexec(&regmatch, p, (colnr_T)0)
9158 || ((flags & EW_NOTWILD)
9159 && fnamencmp(path + (s - buf), p, e - s) == 0)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009160 {
9161#ifdef WIN3264
9162 STRCPY(s, p);
9163#else
9164 namelowcpy(s, p);
9165#endif
9166 len = (int)STRLEN(buf);
Bram Moolenaar231334e2005-07-25 20:46:57 +00009167
9168 if (starstar && stardepth < 100)
9169 {
9170 /* For "**" in the pattern first go deeper in the tree to
9171 * find matches. */
9172 STRCPY(buf + len, "/**");
9173 STRCPY(buf + len + 3, path_end);
9174 ++stardepth;
9175 (void)dos_expandpath(gap, buf, len + 1, flags, TRUE);
9176 --stardepth;
9177 }
9178
Bram Moolenaar071d4272004-06-13 20:20:40 +00009179 STRCPY(buf + len, path_end);
9180 if (mch_has_exp_wildcard(path_end))
9181 {
9182 /* need to expand another component of the path */
9183 /* remove backslashes for the remaining components only */
Bram Moolenaar231334e2005-07-25 20:46:57 +00009184 (void)dos_expandpath(gap, buf, len + 1, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009185 }
9186 else
9187 {
9188 /* no more wildcards, check if there is a match */
9189 /* remove backslashes for the remaining components only */
9190 if (*path_end != 0)
9191 backslash_halve(buf + len + 1);
9192 if (mch_getperm(buf) >= 0) /* add existing file */
9193 addfile(gap, buf, flags);
9194 }
9195 }
9196
9197#ifdef WIN3264
9198# ifdef FEAT_MBYTE
9199 if (wn != NULL)
9200 {
9201 vim_free(p);
9202 ok = FindNextFileW(hFind, &wfb);
9203 }
9204 else
9205# endif
9206 ok = FindNextFile(hFind, &fb);
9207#else
9208 ok = (findnext(&fb) == 0);
9209#endif
9210
9211 /* If no more matches and no match was used, try expanding the name
9212 * itself. Finds the long name of a short filename. */
9213 if (!ok && matchname != NULL && gap->ga_len == start_len)
9214 {
9215 STRCPY(s, matchname);
9216#ifdef WIN3264
9217 FindClose(hFind);
9218# ifdef FEAT_MBYTE
9219 if (wn != NULL)
9220 {
9221 vim_free(wn);
Bram Moolenaar36f692d2008-11-20 16:10:17 +00009222 wn = enc_to_utf16(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009223 if (wn != NULL)
9224 hFind = FindFirstFileW(wn, &wfb);
9225 }
9226 if (wn == NULL)
9227# endif
9228 hFind = FindFirstFile(buf, &fb);
9229 ok = (hFind != INVALID_HANDLE_VALUE);
9230#else
9231 ok = (findfirst((char *)buf, &fb,
9232 (*path_end != NUL || (flags & EW_DIR)) ? FA_DIREC : 0) == 0);
9233#endif
9234 vim_free(matchname);
9235 matchname = NULL;
9236 }
9237 }
9238
9239#ifdef WIN3264
9240 FindClose(hFind);
9241# ifdef FEAT_MBYTE
9242 vim_free(wn);
9243# endif
9244#endif
9245 vim_free(buf);
9246 vim_free(regmatch.regprog);
9247 vim_free(matchname);
9248
9249 matches = gap->ga_len - start_len;
9250 if (matches > 0)
9251 qsort(((char_u **)gap->ga_data) + start_len, (size_t)matches,
9252 sizeof(char_u *), pstrcmp);
9253 return matches;
9254}
9255
9256 int
9257mch_expandpath(
9258 garray_T *gap,
9259 char_u *path,
9260 int flags) /* EW_* flags */
9261{
Bram Moolenaar231334e2005-07-25 20:46:57 +00009262 return dos_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009263}
9264# endif /* MSDOS || FEAT_GUI_W16 || WIN3264 */
9265
Bram Moolenaar231334e2005-07-25 20:46:57 +00009266#if (defined(UNIX) && !defined(VMS)) || defined(USE_UNIXFILENAME) \
9267 || defined(PROTO)
9268/*
9269 * Unix style wildcard expansion code.
9270 * It's here because it's used both for Unix and Mac.
9271 */
9272static int pstrcmp __ARGS((const void *, const void *));
9273
9274 static int
9275pstrcmp(a, b)
9276 const void *a, *b;
9277{
9278 return (pathcmp(*(char **)a, *(char **)b, -1));
9279}
9280
9281/*
9282 * Recursively expand one path component into all matching files and/or
9283 * directories. Adds matches to "gap". Handles "*", "?", "[a-z]", "**", etc.
9284 * "path" has backslashes before chars that are not to be expanded, starting
9285 * at "path + wildoff".
9286 * Return the number of matches found.
9287 * NOTE: much of this is identical to dos_expandpath(), keep in sync!
9288 */
9289 int
9290unix_expandpath(gap, path, wildoff, flags, didstar)
9291 garray_T *gap;
9292 char_u *path;
9293 int wildoff;
9294 int flags; /* EW_* flags */
9295 int didstar; /* expanded "**" once already */
9296{
9297 char_u *buf;
9298 char_u *path_end;
9299 char_u *p, *s, *e;
9300 int start_len = gap->ga_len;
9301 char_u *pat;
9302 regmatch_T regmatch;
9303 int starts_with_dot;
9304 int matches;
9305 int len;
9306 int starstar = FALSE;
9307 static int stardepth = 0; /* depth for "**" expansion */
9308
9309 DIR *dirp;
9310 struct dirent *dp;
9311
9312 /* Expanding "**" may take a long time, check for CTRL-C. */
9313 if (stardepth > 0)
9314 {
9315 ui_breakcheck();
9316 if (got_int)
9317 return 0;
9318 }
9319
9320 /* make room for file name */
9321 buf = alloc((int)STRLEN(path) + BASENAMELEN + 5);
9322 if (buf == NULL)
9323 return 0;
9324
9325 /*
9326 * Find the first part in the path name that contains a wildcard.
9327 * Copy it into "buf", including the preceding characters.
9328 */
9329 p = buf;
9330 s = buf;
9331 e = NULL;
9332 path_end = path;
9333 while (*path_end != NUL)
9334 {
9335 /* May ignore a wildcard that has a backslash before it; it will
9336 * be removed by rem_backslash() or file_pat_to_reg_pat() below. */
9337 if (path_end >= path + wildoff && rem_backslash(path_end))
9338 *p++ = *path_end++;
9339 else if (*path_end == '/')
9340 {
9341 if (e != NULL)
9342 break;
9343 s = p + 1;
9344 }
9345 else if (path_end >= path + wildoff
9346 && vim_strchr((char_u *)"*?[{~$", *path_end) != NULL)
9347 e = p;
9348#ifdef FEAT_MBYTE
9349 if (has_mbyte)
9350 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009351 len = (*mb_ptr2len)(path_end);
Bram Moolenaar231334e2005-07-25 20:46:57 +00009352 STRNCPY(p, path_end, len);
9353 p += len;
9354 path_end += len;
9355 }
9356 else
9357#endif
9358 *p++ = *path_end++;
9359 }
9360 e = p;
9361 *e = NUL;
9362
Bram Moolenaar0b573a52011-07-27 17:31:47 +02009363 /* Now we have one wildcard component between "s" and "e". */
Bram Moolenaar231334e2005-07-25 20:46:57 +00009364 /* Remove backslashes between "wildoff" and the start of the wildcard
9365 * component. */
9366 for (p = buf + wildoff; p < s; ++p)
9367 if (rem_backslash(p))
9368 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009369 STRMOVE(p, p + 1);
Bram Moolenaar231334e2005-07-25 20:46:57 +00009370 --e;
9371 --s;
9372 }
9373
9374 /* Check for "**" between "s" and "e". */
9375 for (p = s; p < e; ++p)
9376 if (p[0] == '*' && p[1] == '*')
9377 starstar = TRUE;
9378
9379 /* convert the file pattern to a regexp pattern */
9380 starts_with_dot = (*s == '.');
9381 pat = file_pat_to_reg_pat(s, e, NULL, FALSE);
9382 if (pat == NULL)
9383 {
9384 vim_free(buf);
9385 return 0;
9386 }
9387
9388 /* compile the regexp into a program */
Bram Moolenaarcc016f52005-12-10 20:23:46 +00009389#ifdef CASE_INSENSITIVE_FILENAME
Bram Moolenaar231334e2005-07-25 20:46:57 +00009390 regmatch.rm_ic = TRUE; /* Behave like Terminal.app */
9391#else
Bram Moolenaar94950a92010-12-02 16:01:29 +01009392 if (flags & EW_ICASE)
9393 regmatch.rm_ic = TRUE; /* 'wildignorecase' set */
9394 else
9395 regmatch.rm_ic = FALSE; /* Don't ignore case */
Bram Moolenaar231334e2005-07-25 20:46:57 +00009396#endif
9397 regmatch.regprog = vim_regcomp(pat, RE_MAGIC);
9398 vim_free(pat);
9399
9400 if (regmatch.regprog == NULL)
9401 {
9402 vim_free(buf);
9403 return 0;
9404 }
9405
9406 /* If "**" is by itself, this is the first time we encounter it and more
9407 * is following then find matches without any directory. */
9408 if (!didstar && stardepth < 100 && starstar && e - s == 2
9409 && *path_end == '/')
9410 {
9411 STRCPY(s, path_end + 1);
9412 ++stardepth;
9413 (void)unix_expandpath(gap, buf, (int)(s - buf), flags, TRUE);
9414 --stardepth;
9415 }
9416
9417 /* open the directory for scanning */
9418 *s = NUL;
9419 dirp = opendir(*buf == NUL ? "." : (char *)buf);
9420
9421 /* Find all matching entries */
9422 if (dirp != NULL)
9423 {
9424 for (;;)
9425 {
9426 dp = readdir(dirp);
9427 if (dp == NULL)
9428 break;
9429 if ((dp->d_name[0] != '.' || starts_with_dot)
Bram Moolenaar0b573a52011-07-27 17:31:47 +02009430 && (vim_regexec(&regmatch, (char_u *)dp->d_name, (colnr_T)0)
9431 || ((flags & EW_NOTWILD)
9432 && fnamencmp(path + (s - buf), dp->d_name, e - s) == 0)))
Bram Moolenaar231334e2005-07-25 20:46:57 +00009433 {
9434 STRCPY(s, dp->d_name);
9435 len = STRLEN(buf);
9436
9437 if (starstar && stardepth < 100)
9438 {
9439 /* For "**" in the pattern first go deeper in the tree to
9440 * find matches. */
9441 STRCPY(buf + len, "/**");
9442 STRCPY(buf + len + 3, path_end);
9443 ++stardepth;
9444 (void)unix_expandpath(gap, buf, len + 1, flags, TRUE);
9445 --stardepth;
9446 }
9447
9448 STRCPY(buf + len, path_end);
9449 if (mch_has_exp_wildcard(path_end)) /* handle more wildcards */
9450 {
9451 /* need to expand another component of the path */
9452 /* remove backslashes for the remaining components only */
9453 (void)unix_expandpath(gap, buf, len + 1, flags, FALSE);
9454 }
9455 else
9456 {
9457 /* no more wildcards, check if there is a match */
9458 /* remove backslashes for the remaining components only */
9459 if (*path_end != NUL)
9460 backslash_halve(buf + len + 1);
9461 if (mch_getperm(buf) >= 0) /* add existing file */
9462 {
Bram Moolenaar95e9b492006-03-15 23:04:43 +00009463#ifdef MACOS_CONVERT
Bram Moolenaar231334e2005-07-25 20:46:57 +00009464 size_t precomp_len = STRLEN(buf)+1;
9465 char_u *precomp_buf =
9466 mac_precompose_path(buf, precomp_len, &precomp_len);
Bram Moolenaar95e9b492006-03-15 23:04:43 +00009467
Bram Moolenaar231334e2005-07-25 20:46:57 +00009468 if (precomp_buf)
9469 {
9470 mch_memmove(buf, precomp_buf, precomp_len);
9471 vim_free(precomp_buf);
9472 }
9473#endif
9474 addfile(gap, buf, flags);
9475 }
9476 }
9477 }
9478 }
9479
9480 closedir(dirp);
9481 }
9482
9483 vim_free(buf);
9484 vim_free(regmatch.regprog);
9485
9486 matches = gap->ga_len - start_len;
9487 if (matches > 0)
9488 qsort(((char_u **)gap->ga_data) + start_len, matches,
9489 sizeof(char_u *), pstrcmp);
9490 return matches;
9491}
9492#endif
9493
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009494#if defined(FEAT_SEARCHPATH)
9495static int find_previous_pathsep __ARGS((char_u *path, char_u **psep));
9496static int is_unique __ARGS((char_u *maybe_unique, garray_T *gap, int i));
Bram Moolenaar162bd912010-07-28 22:29:10 +02009497static void expand_path_option __ARGS((char_u *curdir, garray_T *gap));
9498static char_u *get_path_cutoff __ARGS((char_u *fname, garray_T *gap));
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009499static void uniquefy_paths __ARGS((garray_T *gap, char_u *pattern));
9500static int expand_in_path __ARGS((garray_T *gap, char_u *pattern, int flags));
9501
9502/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009503 * Moves "*psep" back to the previous path separator in "path".
9504 * Returns FAIL is "*psep" ends up at the beginning of "path".
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009505 */
9506 static int
9507find_previous_pathsep(path, psep)
9508 char_u *path;
9509 char_u **psep;
9510{
9511 /* skip the current separator */
9512 if (*psep > path && vim_ispathsep(**psep))
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009513 --*psep;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009514
9515 /* find the previous separator */
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009516 while (*psep > path)
9517 {
9518 if (vim_ispathsep(**psep))
9519 return OK;
9520 mb_ptr_back(path, *psep);
9521 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009522
9523 return FAIL;
9524}
9525
9526/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009527 * Returns TRUE if "maybe_unique" is unique wrt other_paths in "gap".
9528 * "maybe_unique" is the end portion of "((char_u **)gap->ga_data)[i]".
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009529 */
9530 static int
9531is_unique(maybe_unique, gap, i)
9532 char_u *maybe_unique;
9533 garray_T *gap;
9534 int i;
9535{
9536 int j;
9537 int candidate_len;
9538 int other_path_len;
Bram Moolenaar162bd912010-07-28 22:29:10 +02009539 char_u **other_paths = (char_u **)gap->ga_data;
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009540 char_u *rival;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009541
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009542 for (j = 0; j < gap->ga_len; j++)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009543 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009544 if (j == i)
Bram Moolenaar162bd912010-07-28 22:29:10 +02009545 continue; /* don't compare it with itself */
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009546
Bram Moolenaar624c7aa2010-07-16 20:38:52 +02009547 candidate_len = (int)STRLEN(maybe_unique);
9548 other_path_len = (int)STRLEN(other_paths[j]);
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009549 if (other_path_len < candidate_len)
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009550 continue; /* it's different when it's shorter */
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009551
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009552 rival = other_paths[j] + other_path_len - candidate_len;
Bram Moolenaarda9836c2010-08-16 21:53:27 +02009553 if (fnamecmp(maybe_unique, rival) == 0
9554 && (rival == other_paths[j] || vim_ispathsep(*(rival - 1))))
Bram Moolenaar162bd912010-07-28 22:29:10 +02009555 return FALSE; /* match */
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009556 }
9557
Bram Moolenaar162bd912010-07-28 22:29:10 +02009558 return TRUE; /* no match found */
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009559}
9560
9561/*
Bram Moolenaar1a509df2010-08-01 17:59:57 +02009562 * Split the 'path' option into an array of strings in garray_T. Relative
Bram Moolenaar162bd912010-07-28 22:29:10 +02009563 * paths are expanded to their equivalent fullpath. This includes the "."
9564 * (relative to current buffer directory) and empty path (relative to current
9565 * directory) notations.
9566 *
9567 * TODO: handle upward search (;) and path limiter (**N) notations by
9568 * expanding each into their equivalent path(s).
9569 */
9570 static void
9571expand_path_option(curdir, gap)
9572 char_u *curdir;
9573 garray_T *gap;
9574{
9575 char_u *path_option = *curbuf->b_p_path == NUL
9576 ? p_path : curbuf->b_p_path;
9577 char_u *buf;
Bram Moolenaarbdc975c2010-08-02 21:33:37 +02009578 char_u *p;
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009579 int len;
Bram Moolenaar162bd912010-07-28 22:29:10 +02009580
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02009581 if ((buf = alloc((int)MAXPATHL)) == NULL)
Bram Moolenaar162bd912010-07-28 22:29:10 +02009582 return;
9583
9584 while (*path_option != NUL)
9585 {
9586 copy_option_part(&path_option, buf, MAXPATHL, " ,");
9587
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009588 if (buf[0] == '.' && (buf[1] == NUL || vim_ispathsep(buf[1])))
Bram Moolenaar162bd912010-07-28 22:29:10 +02009589 {
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009590 /* Relative to current buffer:
9591 * "/path/file" + "." -> "/path/"
9592 * "/path/file" + "./subdir" -> "/path/subdir" */
Bram Moolenaar162bd912010-07-28 22:29:10 +02009593 if (curbuf->b_ffname == NULL)
9594 continue;
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009595 p = gettail(curbuf->b_ffname);
9596 len = (int)(p - curbuf->b_ffname);
9597 if (len + (int)STRLEN(buf) >= MAXPATHL)
9598 continue;
9599 if (buf[1] == NUL)
9600 buf[len] = NUL;
9601 else
9602 STRMOVE(buf + len, buf + 2);
9603 mch_memmove(buf, curbuf->b_ffname, len);
9604 simplify_filename(buf);
Bram Moolenaar162bd912010-07-28 22:29:10 +02009605 }
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009606 else if (buf[0] == NUL)
9607 /* relative to current directory */
Bram Moolenaar162bd912010-07-28 22:29:10 +02009608 STRCPY(buf, curdir);
Bram Moolenaar84f888a2010-08-05 21:40:16 +02009609 else if (path_with_url(buf))
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009610 /* URL can't be used here */
Bram Moolenaar84f888a2010-08-05 21:40:16 +02009611 continue;
Bram Moolenaar162bd912010-07-28 22:29:10 +02009612 else if (!mch_isFullName(buf))
9613 {
9614 /* Expand relative path to their full path equivalent */
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009615 len = (int)STRLEN(curdir);
9616 if (len + (int)STRLEN(buf) + 3 > MAXPATHL)
Bram Moolenaar162bd912010-07-28 22:29:10 +02009617 continue;
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009618 STRMOVE(buf + len + 1, buf);
Bram Moolenaar162bd912010-07-28 22:29:10 +02009619 STRCPY(buf, curdir);
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009620 buf[len] = PATHSEP;
Bram Moolenaar57adda12010-08-03 22:11:29 +02009621 simplify_filename(buf);
Bram Moolenaar162bd912010-07-28 22:29:10 +02009622 }
9623
Bram Moolenaarbdc975c2010-08-02 21:33:37 +02009624 if (ga_grow(gap, 1) == FAIL)
9625 break;
9626 p = vim_strsave(buf);
9627 if (p == NULL)
9628 break;
9629 ((char_u **)gap->ga_data)[gap->ga_len++] = p;
Bram Moolenaar162bd912010-07-28 22:29:10 +02009630 }
9631
9632 vim_free(buf);
9633}
9634
9635/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009636 * Returns a pointer to the file or directory name in "fname" that matches the
9637 * longest path in "ga"p, or NULL if there is no match. For example:
Bram Moolenaar162bd912010-07-28 22:29:10 +02009638 *
9639 * path: /foo/bar/baz
9640 * fname: /foo/bar/baz/quux.txt
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009641 * returns: ^this
Bram Moolenaar162bd912010-07-28 22:29:10 +02009642 */
9643 static char_u *
9644get_path_cutoff(fname, gap)
9645 char_u *fname;
9646 garray_T *gap;
9647{
9648 int i;
9649 int maxlen = 0;
9650 char_u **path_part = (char_u **)gap->ga_data;
9651 char_u *cutoff = NULL;
9652
9653 for (i = 0; i < gap->ga_len; i++)
9654 {
9655 int j = 0;
9656
Bram Moolenaarbdc975c2010-08-02 21:33:37 +02009657 while ((fname[j] == path_part[i][j]
Bram Moolenaar2d7c47d2010-08-10 19:50:26 +02009658# if defined(MSWIN) || defined(MSDOS)
Bram Moolenaarbdc975c2010-08-02 21:33:37 +02009659 || (vim_ispathsep(fname[j]) && vim_ispathsep(path_part[i][j]))
9660#endif
9661 ) && fname[j] != NUL && path_part[i][j] != NUL)
Bram Moolenaar162bd912010-07-28 22:29:10 +02009662 j++;
9663 if (j > maxlen)
9664 {
9665 maxlen = j;
9666 cutoff = &fname[j];
9667 }
9668 }
9669
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009670 /* skip to the file or directory name */
Bram Moolenaarbdc975c2010-08-02 21:33:37 +02009671 if (cutoff != NULL)
Bram Moolenaar31710262010-08-13 13:36:15 +02009672 while (vim_ispathsep(*cutoff))
Bram Moolenaarbdc975c2010-08-02 21:33:37 +02009673 mb_ptr_adv(cutoff);
Bram Moolenaar162bd912010-07-28 22:29:10 +02009674
9675 return cutoff;
9676}
9677
9678/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009679 * Sorts, removes duplicates and modifies all the fullpath names in "gap" so
9680 * that they are unique with respect to each other while conserving the part
9681 * that matches the pattern. Beware, this is at least O(n^2) wrt "gap->ga_len".
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009682 */
9683 static void
9684uniquefy_paths(gap, pattern)
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +02009685 garray_T *gap;
9686 char_u *pattern;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009687{
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +02009688 int i;
9689 int len;
Bram Moolenaar162bd912010-07-28 22:29:10 +02009690 char_u **fnames = (char_u **)gap->ga_data;
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009691 int sort_again = FALSE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009692 char_u *pat;
9693 char_u *file_pattern;
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009694 char_u *curdir;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009695 regmatch_T regmatch;
Bram Moolenaar162bd912010-07-28 22:29:10 +02009696 garray_T path_ga;
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009697 char_u **in_curdir = NULL;
9698 char_u *short_name;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009699
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +02009700 remove_duplicates(gap);
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009701 ga_init2(&path_ga, (int)sizeof(char_u *), 1);
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009702
9703 /*
9704 * We need to prepend a '*' at the beginning of file_pattern so that the
9705 * regex matches anywhere in the path. FIXME: is this valid for all
Bram Moolenaarb31e4382010-07-24 16:01:56 +02009706 * possible patterns?
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009707 */
Bram Moolenaar624c7aa2010-07-16 20:38:52 +02009708 len = (int)STRLEN(pattern);
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009709 file_pattern = alloc(len + 2);
Bram Moolenaar162bd912010-07-28 22:29:10 +02009710 if (file_pattern == NULL)
9711 return;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009712 file_pattern[0] = '*';
Bram Moolenaar162bd912010-07-28 22:29:10 +02009713 file_pattern[1] = NUL;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009714 STRCAT(file_pattern, pattern);
9715 pat = file_pat_to_reg_pat(file_pattern, NULL, NULL, TRUE);
9716 vim_free(file_pattern);
Bram Moolenaarb31e4382010-07-24 16:01:56 +02009717 if (pat == NULL)
9718 return;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009719
Bram Moolenaarb31e4382010-07-24 16:01:56 +02009720 regmatch.rm_ic = TRUE; /* always ignore case */
9721 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
9722 vim_free(pat);
9723 if (regmatch.regprog == NULL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009724 return;
9725
Bram Moolenaar162bd912010-07-28 22:29:10 +02009726 if ((curdir = alloc((int)(MAXPATHL))) == NULL)
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009727 goto theend;
Bram Moolenaar162bd912010-07-28 22:29:10 +02009728 mch_dirname(curdir, MAXPATHL);
Bram Moolenaar162bd912010-07-28 22:29:10 +02009729 expand_path_option(curdir, &path_ga);
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009730
9731 in_curdir = (char_u **)alloc_clear(gap->ga_len * sizeof(char_u *));
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009732 if (in_curdir == NULL)
9733 goto theend;
Bram Moolenaar162bd912010-07-28 22:29:10 +02009734
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009735 for (i = 0; i < gap->ga_len && !got_int; i++)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009736 {
Bram Moolenaar162bd912010-07-28 22:29:10 +02009737 char_u *path = fnames[i];
9738 int is_in_curdir;
Bram Moolenaar31710262010-08-13 13:36:15 +02009739 char_u *dir_end = gettail_dir(path);
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009740 char_u *pathsep_p;
9741 char_u *path_cutoff;
Bram Moolenaar162bd912010-07-28 22:29:10 +02009742
Bram Moolenaar624c7aa2010-07-16 20:38:52 +02009743 len = (int)STRLEN(path);
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009744 is_in_curdir = fnamencmp(curdir, path, dir_end - path) == 0
Bram Moolenaar162bd912010-07-28 22:29:10 +02009745 && curdir[dir_end - path] == NUL;
Bram Moolenaar162bd912010-07-28 22:29:10 +02009746 if (is_in_curdir)
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009747 in_curdir[i] = vim_strsave(path);
Bram Moolenaar162bd912010-07-28 22:29:10 +02009748
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009749 /* Shorten the filename while maintaining its uniqueness */
9750 path_cutoff = get_path_cutoff(path, &path_ga);
Bram Moolenaar162bd912010-07-28 22:29:10 +02009751
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009752 /* we start at the end of the path */
9753 pathsep_p = path + len - 1;
9754
9755 while (find_previous_pathsep(path, &pathsep_p))
9756 if (vim_regexec(&regmatch, pathsep_p + 1, (colnr_T)0)
9757 && is_unique(pathsep_p + 1, gap, i)
9758 && path_cutoff != NULL && pathsep_p + 1 >= path_cutoff)
9759 {
9760 sort_again = TRUE;
9761 mch_memmove(path, pathsep_p + 1, STRLEN(pathsep_p));
9762 break;
9763 }
Bram Moolenaar9bc040c2010-08-11 22:05:57 +02009764
9765 if (mch_isFullName(path))
9766 {
9767 /*
9768 * Last resort: shorten relative to curdir if possible.
9769 * 'possible' means:
9770 * 1. It is under the current directory.
9771 * 2. The result is actually shorter than the original.
9772 *
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009773 * Before curdir After
9774 * /foo/bar/file.txt /foo/bar ./file.txt
9775 * c:\foo\bar\file.txt c:\foo\bar .\file.txt
9776 * /file.txt / /file.txt
9777 * c:\file.txt c:\ .\file.txt
Bram Moolenaar9bc040c2010-08-11 22:05:57 +02009778 */
9779 short_name = shorten_fname(path, curdir);
Bram Moolenaar31710262010-08-13 13:36:15 +02009780 if (short_name != NULL && short_name > path + 1
9781#if defined(MSWIN) || defined(MSDOS)
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009782 /* On windows,
Bram Moolenaar31710262010-08-13 13:36:15 +02009783 * shorten_fname("c:\a\a.txt", "c:\a\b")
Bram Moolenaar31710262010-08-13 13:36:15 +02009784 * returns "\a\a.txt", which is not really the short
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009785 * name, hence: */
Bram Moolenaar31710262010-08-13 13:36:15 +02009786 && !vim_ispathsep(*short_name)
9787#endif
9788 )
Bram Moolenaar9bc040c2010-08-11 22:05:57 +02009789 {
9790 STRCPY(path, ".");
9791 add_pathsep(path);
Bram Moolenaarcda000e2010-08-14 13:34:39 +02009792 STRMOVE(path + STRLEN(path), short_name);
Bram Moolenaar9bc040c2010-08-11 22:05:57 +02009793 }
9794 }
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009795 ui_breakcheck();
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009796 }
9797
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009798 /* Shorten filenames in /in/current/directory/{filename} */
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009799 for (i = 0; i < gap->ga_len && !got_int; i++)
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009800 {
9801 char_u *rel_path;
9802 char_u *path = in_curdir[i];
9803
9804 if (path == NULL)
9805 continue;
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009806
9807 /* If the {filename} is not unique, change it to ./{filename}.
9808 * Else reduce it to {filename} */
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009809 short_name = shorten_fname(path, curdir);
9810 if (short_name == NULL)
9811 short_name = path;
9812 if (is_unique(short_name, gap, i))
9813 {
9814 STRCPY(fnames[i], short_name);
9815 continue;
9816 }
9817
9818 rel_path = alloc((int)(STRLEN(short_name) + STRLEN(PATHSEPSTR) + 2));
9819 if (rel_path == NULL)
9820 goto theend;
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009821 STRCPY(rel_path, ".");
9822 add_pathsep(rel_path);
9823 STRCAT(rel_path, short_name);
9824
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009825 vim_free(fnames[i]);
9826 fnames[i] = rel_path;
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009827 sort_again = TRUE;
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009828 ui_breakcheck();
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009829 }
9830
Bram Moolenaar162bd912010-07-28 22:29:10 +02009831theend:
9832 vim_free(curdir);
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009833 if (in_curdir != NULL)
9834 {
9835 for (i = 0; i < gap->ga_len; i++)
9836 vim_free(in_curdir[i]);
9837 vim_free(in_curdir);
9838 }
Bram Moolenaar162bd912010-07-28 22:29:10 +02009839 ga_clear_strings(&path_ga);
Bram Moolenaarb31e4382010-07-24 16:01:56 +02009840 vim_free(regmatch.regprog);
Bram Moolenaar162bd912010-07-28 22:29:10 +02009841
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009842 if (sort_again)
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +02009843 remove_duplicates(gap);
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009844}
9845
9846/*
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02009847 * Calls globpath() with 'path' values for the given pattern and stores the
9848 * result in "gap".
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009849 * Returns the total number of matches.
9850 */
9851 static int
9852expand_in_path(gap, pattern, flags)
9853 garray_T *gap;
9854 char_u *pattern;
9855 int flags; /* EW_* flags */
9856{
Bram Moolenaar162bd912010-07-28 22:29:10 +02009857 char_u *curdir;
9858 garray_T path_ga;
Bram Moolenaarbdc975c2010-08-02 21:33:37 +02009859 char_u *files = NULL;
9860 char_u *s; /* start */
9861 char_u *e; /* end */
9862 char_u *paths = NULL;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009863
Bram Moolenaar7f0f6212010-08-03 22:21:00 +02009864 if ((curdir = alloc((unsigned)MAXPATHL)) == NULL)
Bram Moolenaar162bd912010-07-28 22:29:10 +02009865 return 0;
9866 mch_dirname(curdir, MAXPATHL);
9867
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009868 ga_init2(&path_ga, (int)sizeof(char_u *), 1);
Bram Moolenaar162bd912010-07-28 22:29:10 +02009869 expand_path_option(curdir, &path_ga);
9870 vim_free(curdir);
Bram Moolenaar006d2b02010-08-04 12:39:44 +02009871 if (path_ga.ga_len == 0)
9872 return 0;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02009873
9874 paths = ga_concat_strings(&path_ga);
9875 ga_clear_strings(&path_ga);
9876 if (paths == NULL)
Bram Moolenaar7f0f6212010-08-03 22:21:00 +02009877 return 0;
Bram Moolenaar162bd912010-07-28 22:29:10 +02009878
Bram Moolenaar94950a92010-12-02 16:01:29 +01009879 files = globpath(paths, pattern, (flags & EW_ICASE) ? WILD_ICASE : 0);
Bram Moolenaar162bd912010-07-28 22:29:10 +02009880 vim_free(paths);
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009881 if (files == NULL)
9882 return 0;
9883
9884 /* Copy each path in files into gap */
9885 s = e = files;
Bram Moolenaar162bd912010-07-28 22:29:10 +02009886 while (*s != NUL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009887 {
Bram Moolenaar162bd912010-07-28 22:29:10 +02009888 while (*e != '\n' && *e != NUL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009889 e++;
Bram Moolenaar162bd912010-07-28 22:29:10 +02009890 if (*e == NUL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009891 {
9892 addfile(gap, s, flags);
9893 break;
9894 }
9895 else
9896 {
9897 /* *e is '\n' */
Bram Moolenaar162bd912010-07-28 22:29:10 +02009898 *e = NUL;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009899 addfile(gap, s, flags);
9900 e++;
9901 s = e;
9902 }
9903 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009904 vim_free(files);
9905
Bram Moolenaarbdc975c2010-08-02 21:33:37 +02009906 return gap->ga_len;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009907}
9908#endif
9909
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02009910#if defined(FEAT_SEARCHPATH) || defined(FEAT_CMDL_COMPL) || defined(PROTO)
9911/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009912 * Sort "gap" and remove duplicate entries. "gap" is expected to contain a
9913 * list of file names in allocated memory.
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02009914 */
9915 void
9916remove_duplicates(gap)
9917 garray_T *gap;
9918{
9919 int i;
9920 int j;
9921 char_u **fnames = (char_u **)gap->ga_data;
9922
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009923 sort_strings(fnames, gap->ga_len);
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02009924 for (i = gap->ga_len - 1; i > 0; --i)
9925 if (fnamecmp(fnames[i - 1], fnames[i]) == 0)
9926 {
9927 vim_free(fnames[i]);
9928 for (j = i + 1; j < gap->ga_len; ++j)
9929 fnames[j - 1] = fnames[j];
9930 --gap->ga_len;
9931 }
9932}
9933#endif
9934
Bram Moolenaar071d4272004-06-13 20:20:40 +00009935/*
9936 * Generic wildcard expansion code.
9937 *
9938 * Characters in "pat" that should not be expanded must be preceded with a
9939 * backslash. E.g., "/path\ with\ spaces/my\*star*"
9940 *
9941 * Return FAIL when no single file was found. In this case "num_file" is not
9942 * set, and "file" may contain an error message.
9943 * Return OK when some files found. "num_file" is set to the number of
9944 * matches, "file" to the array of matches. Call FreeWild() later.
9945 */
9946 int
9947gen_expand_wildcards(num_pat, pat, num_file, file, flags)
9948 int num_pat; /* number of input patterns */
9949 char_u **pat; /* array of input patterns */
9950 int *num_file; /* resulting number of files */
9951 char_u ***file; /* array of resulting files */
9952 int flags; /* EW_* flags */
9953{
9954 int i;
9955 garray_T ga;
9956 char_u *p;
9957 static int recursive = FALSE;
9958 int add_pat;
Bram Moolenaard732f9a2010-08-15 13:29:11 +02009959#if defined(FEAT_SEARCHPATH)
9960 int did_expand_in_path = FALSE;
9961#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009962
9963 /*
9964 * expand_env() is called to expand things like "~user". If this fails,
9965 * it calls ExpandOne(), which brings us back here. In this case, always
9966 * call the machine specific expansion function, if possible. Otherwise,
9967 * return FAIL.
9968 */
9969 if (recursive)
9970#ifdef SPECIAL_WILDCHAR
9971 return mch_expand_wildcards(num_pat, pat, num_file, file, flags);
9972#else
9973 return FAIL;
9974#endif
9975
9976#ifdef SPECIAL_WILDCHAR
9977 /*
9978 * If there are any special wildcard characters which we cannot handle
9979 * here, call machine specific function for all the expansion. This
9980 * avoids starting the shell for each argument separately.
9981 * For `=expr` do use the internal function.
9982 */
9983 for (i = 0; i < num_pat; i++)
9984 {
9985 if (vim_strpbrk(pat[i], (char_u *)SPECIAL_WILDCHAR) != NULL
9986# ifdef VIM_BACKTICK
9987 && !(vim_backtick(pat[i]) && pat[i][1] == '=')
9988# endif
9989 )
9990 return mch_expand_wildcards(num_pat, pat, num_file, file, flags);
9991 }
9992#endif
9993
9994 recursive = TRUE;
9995
9996 /*
9997 * The matching file names are stored in a growarray. Init it empty.
9998 */
9999 ga_init2(&ga, (int)sizeof(char_u *), 30);
10000
10001 for (i = 0; i < num_pat; ++i)
10002 {
10003 add_pat = -1;
10004 p = pat[i];
10005
10006#ifdef VIM_BACKTICK
10007 if (vim_backtick(p))
10008 add_pat = expand_backtick(&ga, p, flags);
10009 else
10010#endif
10011 {
10012 /*
10013 * First expand environment variables, "~/" and "~user/".
10014 */
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010015 if (vim_strchr(p, '$') != NULL || *p == '~')
Bram Moolenaar071d4272004-06-13 20:20:40 +000010016 {
Bram Moolenaar9f0545d2007-09-26 20:36:32 +000010017 p = expand_env_save_opt(p, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010018 if (p == NULL)
10019 p = pat[i];
10020#ifdef UNIX
10021 /*
10022 * On Unix, if expand_env() can't expand an environment
10023 * variable, use the shell to do that. Discard previously
10024 * found file names and start all over again.
10025 */
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010026 else if (vim_strchr(p, '$') != NULL || *p == '~')
Bram Moolenaar071d4272004-06-13 20:20:40 +000010027 {
10028 vim_free(p);
Bram Moolenaar782027e2009-06-24 14:25:49 +000010029 ga_clear_strings(&ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010030 i = mch_expand_wildcards(num_pat, pat, num_file, file,
10031 flags);
10032 recursive = FALSE;
10033 return i;
10034 }
10035#endif
10036 }
10037
10038 /*
10039 * If there are wildcards: Expand file names and add each match to
10040 * the list. If there is no match, and EW_NOTFOUND is given, add
10041 * the pattern.
10042 * If there are no wildcards: Add the file name if it exists or
10043 * when EW_NOTFOUND is given.
10044 */
10045 if (mch_has_exp_wildcard(p))
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010046 {
10047#if defined(FEAT_SEARCHPATH)
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010048 if ((flags & EW_PATH)
10049 && !mch_isFullName(p)
10050 && !(p[0] == '.'
10051 && (vim_ispathsep(p[1])
10052 || (p[1] == '.' && vim_ispathsep(p[2]))))
10053 )
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010054 {
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010055 /* :find completion where 'path' is used.
10056 * Recursiveness is OK here. */
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010057 recursive = FALSE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010058 add_pat = expand_in_path(&ga, p, flags);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010059 recursive = TRUE;
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010060 did_expand_in_path = TRUE;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010061 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010062 else
10063#endif
10064 add_pat = mch_expandpath(&ga, p, flags);
10065 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010066 }
10067
10068 if (add_pat == -1 || (add_pat == 0 && (flags & EW_NOTFOUND)))
10069 {
10070 char_u *t = backslash_halve_save(p);
10071
10072#if defined(MACOS_CLASSIC)
10073 slash_to_colon(t);
10074#endif
10075 /* When EW_NOTFOUND is used, always add files and dirs. Makes
10076 * "vim c:/" work. */
10077 if (flags & EW_NOTFOUND)
10078 addfile(&ga, t, flags | EW_DIR | EW_FILE);
10079 else if (mch_getperm(t) >= 0)
10080 addfile(&ga, t, flags);
10081 vim_free(t);
10082 }
10083
Bram Moolenaarb28ebbc2010-07-14 16:59:57 +020010084#if defined(FEAT_SEARCHPATH)
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010085 if (did_expand_in_path && ga.ga_len > 0 && (flags & EW_PATH))
Bram Moolenaarb28ebbc2010-07-14 16:59:57 +020010086 uniquefy_paths(&ga, p);
10087#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010088 if (p != pat[i])
10089 vim_free(p);
10090 }
10091
10092 *num_file = ga.ga_len;
10093 *file = (ga.ga_data != NULL) ? (char_u **)ga.ga_data : (char_u **)"";
10094
10095 recursive = FALSE;
10096
10097 return (ga.ga_data != NULL) ? OK : FAIL;
10098}
10099
10100# ifdef VIM_BACKTICK
10101
10102/*
10103 * Return TRUE if we can expand this backtick thing here.
10104 */
10105 static int
10106vim_backtick(p)
10107 char_u *p;
10108{
10109 return (*p == '`' && *(p + 1) != NUL && *(p + STRLEN(p) - 1) == '`');
10110}
10111
10112/*
10113 * Expand an item in `backticks` by executing it as a command.
10114 * Currently only works when pat[] starts and ends with a `.
10115 * Returns number of file names found.
10116 */
10117 static int
10118expand_backtick(gap, pat, flags)
10119 garray_T *gap;
10120 char_u *pat;
10121 int flags; /* EW_* flags */
10122{
10123 char_u *p;
10124 char_u *cmd;
10125 char_u *buffer;
10126 int cnt = 0;
10127 int i;
10128
10129 /* Create the command: lop off the backticks. */
10130 cmd = vim_strnsave(pat + 1, (int)STRLEN(pat) - 2);
10131 if (cmd == NULL)
10132 return 0;
10133
10134#ifdef FEAT_EVAL
10135 if (*cmd == '=') /* `={expr}`: Expand expression */
Bram Moolenaar362e1a32006-03-06 23:29:24 +000010136 buffer = eval_to_string(cmd + 1, &p, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010137 else
10138#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +000010139 buffer = get_cmd_output(cmd, NULL,
10140 (flags & EW_SILENT) ? SHELL_SILENT : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010141 vim_free(cmd);
10142 if (buffer == NULL)
10143 return 0;
10144
10145 cmd = buffer;
10146 while (*cmd != NUL)
10147 {
10148 cmd = skipwhite(cmd); /* skip over white space */
10149 p = cmd;
10150 while (*p != NUL && *p != '\r' && *p != '\n') /* skip over entry */
10151 ++p;
10152 /* add an entry if it is not empty */
10153 if (p > cmd)
10154 {
10155 i = *p;
10156 *p = NUL;
10157 addfile(gap, cmd, flags);
10158 *p = i;
10159 ++cnt;
10160 }
10161 cmd = p;
10162 while (*cmd != NUL && (*cmd == '\r' || *cmd == '\n'))
10163 ++cmd;
10164 }
10165
10166 vim_free(buffer);
10167 return cnt;
10168}
10169# endif /* VIM_BACKTICK */
10170
10171/*
10172 * Add a file to a file list. Accepted flags:
10173 * EW_DIR add directories
10174 * EW_FILE add files
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000010175 * EW_EXEC add executable files
Bram Moolenaar071d4272004-06-13 20:20:40 +000010176 * EW_NOTFOUND add even when it doesn't exist
10177 * EW_ADDSLASH add slash after directory name
10178 */
10179 void
10180addfile(gap, f, flags)
10181 garray_T *gap;
10182 char_u *f; /* filename */
10183 int flags;
10184{
10185 char_u *p;
10186 int isdir;
10187
10188 /* if the file/dir doesn't exist, may not add it */
10189 if (!(flags & EW_NOTFOUND) && mch_getperm(f) < 0)
10190 return;
10191
10192#ifdef FNAME_ILLEGAL
10193 /* if the file/dir contains illegal characters, don't add it */
10194 if (vim_strpbrk(f, (char_u *)FNAME_ILLEGAL) != NULL)
10195 return;
10196#endif
10197
10198 isdir = mch_isdir(f);
10199 if ((isdir && !(flags & EW_DIR)) || (!isdir && !(flags & EW_FILE)))
10200 return;
10201
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000010202 /* If the file isn't executable, may not add it. Do accept directories. */
10203 if (!isdir && (flags & EW_EXEC) && !mch_can_exe(f))
10204 return;
10205
Bram Moolenaar071d4272004-06-13 20:20:40 +000010206 /* Make room for another item in the file list. */
10207 if (ga_grow(gap, 1) == FAIL)
10208 return;
10209
10210 p = alloc((unsigned)(STRLEN(f) + 1 + isdir));
10211 if (p == NULL)
10212 return;
10213
10214 STRCPY(p, f);
10215#ifdef BACKSLASH_IN_FILENAME
10216 slash_adjust(p);
10217#endif
10218 /*
10219 * Append a slash or backslash after directory names if none is present.
10220 */
10221#ifndef DONT_ADD_PATHSEP_TO_DIR
10222 if (isdir && (flags & EW_ADDSLASH))
10223 add_pathsep(p);
10224#endif
10225 ((char_u **)gap->ga_data)[gap->ga_len++] = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010226}
10227#endif /* !NO_EXPANDPATH */
10228
10229#if defined(VIM_BACKTICK) || defined(FEAT_EVAL) || defined(PROTO)
10230
10231#ifndef SEEK_SET
10232# define SEEK_SET 0
10233#endif
10234#ifndef SEEK_END
10235# define SEEK_END 2
10236#endif
10237
10238/*
10239 * Get the stdout of an external command.
10240 * Returns an allocated string, or NULL for error.
10241 */
10242 char_u *
Bram Moolenaarc0197e22004-09-13 20:26:32 +000010243get_cmd_output(cmd, infile, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010244 char_u *cmd;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000010245 char_u *infile; /* optional input file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010246 int flags; /* can be SHELL_SILENT */
10247{
10248 char_u *tempname;
10249 char_u *command;
10250 char_u *buffer = NULL;
10251 int len;
10252 int i = 0;
10253 FILE *fd;
10254
10255 if (check_restricted() || check_secure())
10256 return NULL;
10257
10258 /* get a name for the temp file */
10259 if ((tempname = vim_tempname('o')) == NULL)
10260 {
10261 EMSG(_(e_notmp));
10262 return NULL;
10263 }
10264
10265 /* Add the redirection stuff */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000010266 command = make_filter_cmd(cmd, infile, tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010267 if (command == NULL)
10268 goto done;
10269
10270 /*
10271 * Call the shell to execute the command (errors are ignored).
10272 * Don't check timestamps here.
10273 */
10274 ++no_check_timestamps;
10275 call_shell(command, SHELL_DOOUT | SHELL_EXPAND | flags);
10276 --no_check_timestamps;
10277
10278 vim_free(command);
10279
10280 /*
10281 * read the names from the file into memory
10282 */
10283# ifdef VMS
Bram Moolenaar25394022007-05-10 19:06:20 +000010284 /* created temporary file is not always readable as binary */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010285 fd = mch_fopen((char *)tempname, "r");
10286# else
10287 fd = mch_fopen((char *)tempname, READBIN);
10288# endif
10289
10290 if (fd == NULL)
10291 {
10292 EMSG2(_(e_notopen), tempname);
10293 goto done;
10294 }
10295
10296 fseek(fd, 0L, SEEK_END);
10297 len = ftell(fd); /* get size of temp file */
10298 fseek(fd, 0L, SEEK_SET);
10299
10300 buffer = alloc(len + 1);
10301 if (buffer != NULL)
10302 i = (int)fread((char *)buffer, (size_t)1, (size_t)len, fd);
10303 fclose(fd);
10304 mch_remove(tempname);
10305 if (buffer == NULL)
10306 goto done;
10307#ifdef VMS
10308 len = i; /* VMS doesn't give us what we asked for... */
10309#endif
10310 if (i != len)
10311 {
10312 EMSG2(_(e_notread), tempname);
10313 vim_free(buffer);
10314 buffer = NULL;
10315 }
10316 else
Bram Moolenaar162bd912010-07-28 22:29:10 +020010317 buffer[len] = NUL; /* make sure the buffer is terminated */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010318
10319done:
10320 vim_free(tempname);
10321 return buffer;
10322}
10323#endif
10324
10325/*
10326 * Free the list of files returned by expand_wildcards() or other expansion
10327 * functions.
10328 */
10329 void
10330FreeWild(count, files)
10331 int count;
10332 char_u **files;
10333{
Bram Moolenaarfc1421e2006-04-20 22:17:20 +000010334 if (count <= 0 || files == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010335 return;
10336#if defined(__EMX__) && defined(__ALWAYS_HAS_TRAILING_NULL_POINTER) /* XXX */
10337 /*
10338 * Is this still OK for when other functions than expand_wildcards() have
10339 * been used???
10340 */
10341 _fnexplodefree((char **)files);
10342#else
10343 while (count--)
10344 vim_free(files[count]);
10345 vim_free(files);
10346#endif
10347}
10348
10349/*
Bram Moolenaara9dc3752010-07-11 20:46:53 +020010350 * Return TRUE when need to go to Insert mode because of 'insertmode'.
Bram Moolenaar071d4272004-06-13 20:20:40 +000010351 * Don't do this when still processing a command or a mapping.
10352 * Don't do this when inside a ":normal" command.
10353 */
10354 int
10355goto_im()
10356{
10357 return (p_im && stuff_empty() && typebuf_typed());
10358}