blob: 94c2b4176bbf9a71d038cb6d1d376e9b98c1d147 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * misc1.c: functions that didn't seem to fit elsewhere
12 */
13
14#include "vim.h"
15#include "version.h"
16
Bram Moolenaar071d4272004-06-13 20:20:40 +000017static char_u *vim_version_dir __ARGS((char_u *vimdir));
18static char_u *remove_tail __ARGS((char_u *p, char_u *pend, char_u *name));
Bram Moolenaar071d4272004-06-13 20:20:40 +000019static int copy_indent __ARGS((int size, char_u *src));
20
Bram Moolenaar24305862012-08-15 14:05:05 +020021/* All user names (for ~user completion as done by shell). */
22#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
23static garray_T ga_users;
24#endif
25
Bram Moolenaar071d4272004-06-13 20:20:40 +000026/*
27 * Count the size (in window cells) of the indent in the current line.
28 */
29 int
30get_indent()
31{
32 return get_indent_str(ml_get_curline(), (int)curbuf->b_p_ts);
33}
34
35/*
36 * Count the size (in window cells) of the indent in line "lnum".
37 */
38 int
39get_indent_lnum(lnum)
40 linenr_T lnum;
41{
42 return get_indent_str(ml_get(lnum), (int)curbuf->b_p_ts);
43}
44
45#if defined(FEAT_FOLDING) || defined(PROTO)
46/*
47 * Count the size (in window cells) of the indent in line "lnum" of buffer
48 * "buf".
49 */
50 int
51get_indent_buf(buf, lnum)
52 buf_T *buf;
53 linenr_T lnum;
54{
55 return get_indent_str(ml_get_buf(buf, lnum, FALSE), (int)buf->b_p_ts);
56}
57#endif
58
59/*
60 * count the size (in window cells) of the indent in line "ptr", with
61 * 'tabstop' at "ts"
62 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +000063 int
Bram Moolenaar071d4272004-06-13 20:20:40 +000064get_indent_str(ptr, ts)
65 char_u *ptr;
66 int ts;
67{
68 int count = 0;
69
70 for ( ; *ptr; ++ptr)
71 {
72 if (*ptr == TAB) /* count a tab for what it is worth */
73 count += ts - (count % ts);
74 else if (*ptr == ' ')
75 ++count; /* count a space for one */
76 else
77 break;
78 }
Bram Moolenaar4399ef42005-02-12 14:29:27 +000079 return count;
Bram Moolenaar071d4272004-06-13 20:20:40 +000080}
81
82/*
83 * Set the indent of the current line.
84 * Leaves the cursor on the first non-blank in the line.
85 * Caller must take care of undo.
86 * "flags":
87 * SIN_CHANGED: call changed_bytes() if the line was changed.
88 * SIN_INSERT: insert the indent in front of the line.
89 * SIN_UNDO: save line for undo before changing it.
90 * Returns TRUE if the line was changed.
91 */
92 int
93set_indent(size, flags)
Bram Moolenaar5002c292007-07-24 13:26:15 +000094 int size; /* measured in spaces */
Bram Moolenaar071d4272004-06-13 20:20:40 +000095 int flags;
96{
97 char_u *p;
98 char_u *newline;
99 char_u *oldline;
100 char_u *s;
101 int todo;
Bram Moolenaar5002c292007-07-24 13:26:15 +0000102 int ind_len; /* measured in characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103 int line_len;
104 int doit = FALSE;
Bram Moolenaar5002c292007-07-24 13:26:15 +0000105 int ind_done = 0; /* measured in spaces */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106 int tab_pad;
Bram Moolenaar5409c052005-03-18 20:27:04 +0000107 int retval = FALSE;
Bram Moolenaar4d64b782007-08-14 20:16:42 +0000108 int orig_char_len = -1; /* number of initial whitespace chars when
Bram Moolenaar5002c292007-07-24 13:26:15 +0000109 'et' and 'pi' are both set */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000110
111 /*
112 * First check if there is anything to do and compute the number of
113 * characters needed for the indent.
114 */
115 todo = size;
116 ind_len = 0;
117 p = oldline = ml_get_curline();
118
119 /* Calculate the buffer size for the new indent, and check to see if it
120 * isn't already set */
121
Bram Moolenaar5002c292007-07-24 13:26:15 +0000122 /* if 'expandtab' isn't set: use TABs; if both 'expandtab' and
123 * 'preserveindent' are set count the number of characters at the
124 * beginning of the line to be copied */
125 if (!curbuf->b_p_et || (!(flags & SIN_INSERT) && curbuf->b_p_pi))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126 {
127 /* If 'preserveindent' is set then reuse as much as possible of
128 * the existing indent structure for the new indent */
129 if (!(flags & SIN_INSERT) && curbuf->b_p_pi)
130 {
131 ind_done = 0;
132
133 /* count as many characters as we can use */
134 while (todo > 0 && vim_iswhite(*p))
135 {
136 if (*p == TAB)
137 {
138 tab_pad = (int)curbuf->b_p_ts
139 - (ind_done % (int)curbuf->b_p_ts);
140 /* stop if this tab will overshoot the target */
141 if (todo < tab_pad)
142 break;
143 todo -= tab_pad;
144 ++ind_len;
145 ind_done += tab_pad;
146 }
147 else
148 {
149 --todo;
150 ++ind_len;
151 ++ind_done;
152 }
153 ++p;
154 }
155
Bram Moolenaar5002c292007-07-24 13:26:15 +0000156 /* Set initial number of whitespace chars to copy if we are
157 * preserving indent but expandtab is set */
158 if (curbuf->b_p_et)
159 orig_char_len = ind_len;
160
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 /* Fill to next tabstop with a tab, if possible */
162 tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
Bram Moolenaar4d64b782007-08-14 20:16:42 +0000163 if (todo >= tab_pad && orig_char_len == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164 {
165 doit = TRUE;
166 todo -= tab_pad;
167 ++ind_len;
168 /* ind_done += tab_pad; */
169 }
170 }
171
172 /* count tabs required for indent */
173 while (todo >= (int)curbuf->b_p_ts)
174 {
175 if (*p != TAB)
176 doit = TRUE;
177 else
178 ++p;
179 todo -= (int)curbuf->b_p_ts;
180 ++ind_len;
181 /* ind_done += (int)curbuf->b_p_ts; */
182 }
183 }
184 /* count spaces required for indent */
185 while (todo > 0)
186 {
187 if (*p != ' ')
188 doit = TRUE;
189 else
190 ++p;
191 --todo;
192 ++ind_len;
193 /* ++ind_done; */
194 }
195
196 /* Return if the indent is OK already. */
197 if (!doit && !vim_iswhite(*p) && !(flags & SIN_INSERT))
198 return FALSE;
199
200 /* Allocate memory for the new line. */
201 if (flags & SIN_INSERT)
202 p = oldline;
203 else
204 p = skipwhite(p);
205 line_len = (int)STRLEN(p) + 1;
Bram Moolenaar5002c292007-07-24 13:26:15 +0000206
207 /* If 'preserveindent' and 'expandtab' are both set keep the original
208 * characters and allocate accordingly. We will fill the rest with spaces
209 * after the if (!curbuf->b_p_et) below. */
Bram Moolenaar4d64b782007-08-14 20:16:42 +0000210 if (orig_char_len != -1)
Bram Moolenaar5002c292007-07-24 13:26:15 +0000211 {
212 newline = alloc(orig_char_len + size - ind_done + line_len);
213 if (newline == NULL)
214 return FALSE;
Bram Moolenaar4d64b782007-08-14 20:16:42 +0000215 todo = size - ind_done;
216 ind_len = orig_char_len + todo; /* Set total length of indent in
217 * characters, which may have been
218 * undercounted until now */
Bram Moolenaar5002c292007-07-24 13:26:15 +0000219 p = oldline;
220 s = newline;
221 while (orig_char_len > 0)
222 {
223 *s++ = *p++;
224 orig_char_len--;
225 }
Bram Moolenaar913626c2008-01-03 11:43:42 +0000226
Bram Moolenaar5002c292007-07-24 13:26:15 +0000227 /* Skip over any additional white space (useful when newindent is less
228 * than old) */
229 while (vim_iswhite(*p))
Bram Moolenaar913626c2008-01-03 11:43:42 +0000230 ++p;
Bram Moolenaarcc00b952007-08-11 12:32:57 +0000231
Bram Moolenaar5002c292007-07-24 13:26:15 +0000232 }
233 else
234 {
235 todo = size;
236 newline = alloc(ind_len + line_len);
237 if (newline == NULL)
238 return FALSE;
239 s = newline;
240 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241
242 /* Put the characters in the new line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243 /* if 'expandtab' isn't set: use TABs */
244 if (!curbuf->b_p_et)
245 {
246 /* If 'preserveindent' is set then reuse as much as possible of
247 * the existing indent structure for the new indent */
248 if (!(flags & SIN_INSERT) && curbuf->b_p_pi)
249 {
250 p = oldline;
251 ind_done = 0;
252
253 while (todo > 0 && vim_iswhite(*p))
254 {
255 if (*p == TAB)
256 {
257 tab_pad = (int)curbuf->b_p_ts
258 - (ind_done % (int)curbuf->b_p_ts);
259 /* stop if this tab will overshoot the target */
260 if (todo < tab_pad)
261 break;
262 todo -= tab_pad;
263 ind_done += tab_pad;
264 }
265 else
266 {
267 --todo;
268 ++ind_done;
269 }
270 *s++ = *p++;
271 }
272
273 /* Fill to next tabstop with a tab, if possible */
274 tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
275 if (todo >= tab_pad)
276 {
277 *s++ = TAB;
278 todo -= tab_pad;
279 }
280
281 p = skipwhite(p);
282 }
283
284 while (todo >= (int)curbuf->b_p_ts)
285 {
286 *s++ = TAB;
287 todo -= (int)curbuf->b_p_ts;
288 }
289 }
290 while (todo > 0)
291 {
292 *s++ = ' ';
293 --todo;
294 }
295 mch_memmove(s, p, (size_t)line_len);
296
297 /* Replace the line (unless undo fails). */
298 if (!(flags & SIN_UNDO) || u_savesub(curwin->w_cursor.lnum) == OK)
299 {
300 ml_replace(curwin->w_cursor.lnum, newline, FALSE);
301 if (flags & SIN_CHANGED)
302 changed_bytes(curwin->w_cursor.lnum, 0);
303 /* Correct saved cursor position if it's after the indent. */
304 if (saved_cursor.lnum == curwin->w_cursor.lnum
305 && saved_cursor.col >= (colnr_T)(p - oldline))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000306 saved_cursor.col += ind_len - (colnr_T)(p - oldline);
Bram Moolenaar5409c052005-03-18 20:27:04 +0000307 retval = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308 }
309 else
310 vim_free(newline);
311
312 curwin->w_cursor.col = ind_len;
Bram Moolenaar5409c052005-03-18 20:27:04 +0000313 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314}
315
316/*
317 * Copy the indent from ptr to the current line (and fill to size)
318 * Leaves the cursor on the first non-blank in the line.
319 * Returns TRUE if the line was changed.
320 */
321 static int
322copy_indent(size, src)
323 int size;
324 char_u *src;
325{
326 char_u *p = NULL;
327 char_u *line = NULL;
328 char_u *s;
329 int todo;
330 int ind_len;
331 int line_len = 0;
332 int tab_pad;
333 int ind_done;
334 int round;
335
336 /* Round 1: compute the number of characters needed for the indent
337 * Round 2: copy the characters. */
338 for (round = 1; round <= 2; ++round)
339 {
340 todo = size;
341 ind_len = 0;
342 ind_done = 0;
343 s = src;
344
345 /* Count/copy the usable portion of the source line */
346 while (todo > 0 && vim_iswhite(*s))
347 {
348 if (*s == TAB)
349 {
350 tab_pad = (int)curbuf->b_p_ts
351 - (ind_done % (int)curbuf->b_p_ts);
352 /* Stop if this tab will overshoot the target */
353 if (todo < tab_pad)
354 break;
355 todo -= tab_pad;
356 ind_done += tab_pad;
357 }
358 else
359 {
360 --todo;
361 ++ind_done;
362 }
363 ++ind_len;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000364 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365 *p++ = *s;
366 ++s;
367 }
368
369 /* Fill to next tabstop with a tab, if possible */
370 tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
Bram Moolenaarc42e7ed2011-09-07 19:58:09 +0200371 if (todo >= tab_pad && !curbuf->b_p_et)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372 {
373 todo -= tab_pad;
374 ++ind_len;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000375 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 *p++ = TAB;
377 }
378
379 /* Add tabs required for indent */
Bram Moolenaarc42e7ed2011-09-07 19:58:09 +0200380 while (todo >= (int)curbuf->b_p_ts && !curbuf->b_p_et)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381 {
382 todo -= (int)curbuf->b_p_ts;
383 ++ind_len;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000384 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385 *p++ = TAB;
386 }
387
388 /* Count/add spaces required for indent */
389 while (todo > 0)
390 {
391 --todo;
392 ++ind_len;
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000393 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 *p++ = ' ';
395 }
396
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000397 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398 {
399 /* Allocate memory for the result: the copied indent, new indent
400 * and the rest of the line. */
401 line_len = (int)STRLEN(ml_get_curline()) + 1;
402 line = alloc(ind_len + line_len);
403 if (line == NULL)
404 return FALSE;
405 p = line;
406 }
407 }
408
409 /* Append the original line */
410 mch_memmove(p, ml_get_curline(), (size_t)line_len);
411
412 /* Replace the line */
413 ml_replace(curwin->w_cursor.lnum, line, FALSE);
414
415 /* Put the cursor after the indent. */
416 curwin->w_cursor.col = ind_len;
417 return TRUE;
418}
419
420/*
421 * Return the indent of the current line after a number. Return -1 if no
422 * number was found. Used for 'n' in 'formatoptions': numbered list.
Bram Moolenaar86b68352004-12-27 21:59:20 +0000423 * Since a pattern is used it can actually handle more than numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 */
425 int
426get_number_indent(lnum)
427 linenr_T lnum;
428{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429 colnr_T col;
430 pos_T pos;
431
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200432 regmatch_T regmatch;
433 int lead_len = 0; /* length of comment leader */
434
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435 if (lnum > curbuf->b_ml.ml_line_count)
436 return -1;
Bram Moolenaar86b68352004-12-27 21:59:20 +0000437 pos.lnum = 0;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200438
439#ifdef FEAT_COMMENTS
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200440 /* In format_lines() (i.e. not insert mode), fo+=q is needed too... */
441 if ((State & INSERT) || has_format_option(FO_Q_COMS))
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200442 lead_len = get_leader_len(ml_get(lnum), NULL, FALSE, TRUE);
Bram Moolenaar86b68352004-12-27 21:59:20 +0000443#endif
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200444 regmatch.regprog = vim_regcomp(curbuf->b_p_flp, RE_MAGIC);
445 if (regmatch.regprog != NULL)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200446 {
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200447 regmatch.rm_ic = FALSE;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200448
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200449 /* vim_regexec() expects a pointer to a line. This lets us
450 * start matching for the flp beyond any comment leader... */
451 if (vim_regexec(&regmatch, ml_get(lnum) + lead_len, (colnr_T)0))
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200452 {
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200453 pos.lnum = lnum;
454 pos.col = (colnr_T)(*regmatch.endp - ml_get(lnum));
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200455#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200456 pos.coladd = 0;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200457#endif
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200458 }
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200459 }
Bram Moolenaar96b7ca52012-06-29 15:04:49 +0200460 vim_free(regmatch.regprog);
Bram Moolenaar86b68352004-12-27 21:59:20 +0000461
462 if (pos.lnum == 0 || *ml_get_pos(&pos) == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464 getvcol(curwin, &pos, &col, NULL, NULL);
465 return (int)col;
466}
467
468#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
469
470static int cin_is_cinword __ARGS((char_u *line));
471
472/*
473 * Return TRUE if the string "line" starts with a word from 'cinwords'.
474 */
475 static int
476cin_is_cinword(line)
477 char_u *line;
478{
479 char_u *cinw;
480 char_u *cinw_buf;
481 int cinw_len;
482 int retval = FALSE;
483 int len;
484
485 cinw_len = (int)STRLEN(curbuf->b_p_cinw) + 1;
486 cinw_buf = alloc((unsigned)cinw_len);
487 if (cinw_buf != NULL)
488 {
489 line = skipwhite(line);
490 for (cinw = curbuf->b_p_cinw; *cinw; )
491 {
492 len = copy_option_part(&cinw, cinw_buf, cinw_len, ",");
493 if (STRNCMP(line, cinw_buf, len) == 0
494 && (!vim_iswordc(line[len]) || !vim_iswordc(line[len - 1])))
495 {
496 retval = TRUE;
497 break;
498 }
499 }
500 vim_free(cinw_buf);
501 }
502 return retval;
503}
504#endif
505
506/*
507 * open_line: Add a new line below or above the current line.
508 *
509 * For VREPLACE mode, we only add a new line when we get to the end of the
510 * file, otherwise we just start replacing the next line.
511 *
512 * Caller must take care of undo. Since VREPLACE may affect any number of
513 * lines however, it may call u_save_cursor() again when starting to change a
514 * new line.
515 * "flags": OPENLINE_DELSPACES delete spaces after cursor
516 * OPENLINE_DO_COM format comments
517 * OPENLINE_KEEPTRAIL keep trailing spaces
518 * OPENLINE_MARKFIX adjust mark positions after the line break
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200519 * OPENLINE_COM_LIST format comments with list or 2nd line indent
520 *
521 * "second_line_indent": indent for after ^^D in Insert mode or if flag
522 * OPENLINE_COM_LIST
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 *
524 * Return TRUE for success, FALSE for failure
525 */
526 int
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200527open_line(dir, flags, second_line_indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000528 int dir; /* FORWARD or BACKWARD */
529 int flags;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200530 int second_line_indent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531{
532 char_u *saved_line; /* copy of the original line */
533 char_u *next_line = NULL; /* copy of the next line */
534 char_u *p_extra = NULL; /* what goes to next line */
535 int less_cols = 0; /* less columns for mark in new line */
536 int less_cols_off = 0; /* columns to skip for mark adjust */
537 pos_T old_cursor; /* old cursor position */
538 int newcol = 0; /* new cursor column */
539 int newindent = 0; /* auto-indent of the new line */
540 int n;
541 int trunc_line = FALSE; /* truncate current line afterwards */
542 int retval = FALSE; /* return value, default is FAIL */
543#ifdef FEAT_COMMENTS
544 int extra_len = 0; /* length of p_extra string */
545 int lead_len; /* length of comment leader */
546 char_u *lead_flags; /* position in 'comments' for comment leader */
547 char_u *leader = NULL; /* copy of comment leader */
548#endif
549 char_u *allocated = NULL; /* allocated memory */
550#if defined(FEAT_SMARTINDENT) || defined(FEAT_VREPLACE) || defined(FEAT_LISP) \
551 || defined(FEAT_CINDENT) || defined(FEAT_COMMENTS)
552 char_u *p;
553#endif
554 int saved_char = NUL; /* init for GCC */
555#if defined(FEAT_SMARTINDENT) || defined(FEAT_COMMENTS)
556 pos_T *pos;
557#endif
558#ifdef FEAT_SMARTINDENT
559 int do_si = (!p_paste && curbuf->b_p_si
560# ifdef FEAT_CINDENT
561 && !curbuf->b_p_cin
562# endif
563 );
564 int no_si = FALSE; /* reset did_si afterwards */
565 int first_char = NUL; /* init for GCC */
566#endif
567#if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
568 int vreplace_mode;
569#endif
570 int did_append; /* appended a new line */
571 int saved_pi = curbuf->b_p_pi; /* copy of preserveindent setting */
572
573 /*
574 * make a copy of the current line so we can mess with it
575 */
576 saved_line = vim_strsave(ml_get_curline());
577 if (saved_line == NULL) /* out of memory! */
578 return FALSE;
579
580#ifdef FEAT_VREPLACE
581 if (State & VREPLACE_FLAG)
582 {
583 /*
584 * With VREPLACE we make a copy of the next line, which we will be
585 * starting to replace. First make the new line empty and let vim play
586 * with the indenting and comment leader to its heart's content. Then
587 * we grab what it ended up putting on the new line, put back the
588 * original line, and call ins_char() to put each new character onto
589 * the line, replacing what was there before and pushing the right
590 * stuff onto the replace stack. -- webb.
591 */
592 if (curwin->w_cursor.lnum < orig_line_count)
593 next_line = vim_strsave(ml_get(curwin->w_cursor.lnum + 1));
594 else
595 next_line = vim_strsave((char_u *)"");
596 if (next_line == NULL) /* out of memory! */
597 goto theend;
598
599 /*
600 * In VREPLACE mode, a NL replaces the rest of the line, and starts
601 * replacing the next line, so push all of the characters left on the
602 * line onto the replace stack. We'll push any other characters that
603 * might be replaced at the start of the next line (due to autoindent
604 * etc) a bit later.
605 */
606 replace_push(NUL); /* Call twice because BS over NL expects it */
607 replace_push(NUL);
608 p = saved_line + curwin->w_cursor.col;
609 while (*p != NUL)
Bram Moolenaar2c994e82008-01-02 16:49:36 +0000610 {
611#ifdef FEAT_MBYTE
612 if (has_mbyte)
613 p += replace_push_mb(p);
614 else
615#endif
616 replace_push(*p++);
617 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618 saved_line[curwin->w_cursor.col] = NUL;
619 }
620#endif
621
622 if ((State & INSERT)
623#ifdef FEAT_VREPLACE
624 && !(State & VREPLACE_FLAG)
625#endif
626 )
627 {
628 p_extra = saved_line + curwin->w_cursor.col;
629#ifdef FEAT_SMARTINDENT
630 if (do_si) /* need first char after new line break */
631 {
632 p = skipwhite(p_extra);
633 first_char = *p;
634 }
635#endif
636#ifdef FEAT_COMMENTS
637 extra_len = (int)STRLEN(p_extra);
638#endif
639 saved_char = *p_extra;
640 *p_extra = NUL;
641 }
642
643 u_clearline(); /* cannot do "U" command when adding lines */
644#ifdef FEAT_SMARTINDENT
645 did_si = FALSE;
646#endif
647 ai_col = 0;
648
649 /*
650 * If we just did an auto-indent, then we didn't type anything on
651 * the prior line, and it should be truncated. Do this even if 'ai' is not
652 * set because automatically inserting a comment leader also sets did_ai.
653 */
654 if (dir == FORWARD && did_ai)
655 trunc_line = TRUE;
656
657 /*
658 * If 'autoindent' and/or 'smartindent' is set, try to figure out what
659 * indent to use for the new line.
660 */
661 if (curbuf->b_p_ai
662#ifdef FEAT_SMARTINDENT
663 || do_si
664#endif
665 )
666 {
667 /*
668 * count white space on current line
669 */
670 newindent = get_indent_str(saved_line, (int)curbuf->b_p_ts);
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +0200671 if (newindent == 0 && !(flags & OPENLINE_COM_LIST))
672 newindent = second_line_indent; /* for ^^D command in insert mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673
674#ifdef FEAT_SMARTINDENT
675 /*
676 * Do smart indenting.
677 * In insert/replace mode (only when dir == FORWARD)
678 * we may move some text to the next line. If it starts with '{'
679 * don't add an indent. Fixes inserting a NL before '{' in line
680 * "if (condition) {"
681 */
682 if (!trunc_line && do_si && *saved_line != NUL
683 && (p_extra == NULL || first_char != '{'))
684 {
685 char_u *ptr;
686 char_u last_char;
687
688 old_cursor = curwin->w_cursor;
689 ptr = saved_line;
690# ifdef FEAT_COMMENTS
691 if (flags & OPENLINE_DO_COM)
Bram Moolenaar81340392012-06-06 16:12:59 +0200692 lead_len = get_leader_len(ptr, NULL, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 else
694 lead_len = 0;
695# endif
696 if (dir == FORWARD)
697 {
698 /*
699 * Skip preprocessor directives, unless they are
700 * recognised as comments.
701 */
702 if (
703# ifdef FEAT_COMMENTS
704 lead_len == 0 &&
705# endif
706 ptr[0] == '#')
707 {
708 while (ptr[0] == '#' && curwin->w_cursor.lnum > 1)
709 ptr = ml_get(--curwin->w_cursor.lnum);
710 newindent = get_indent();
711 }
712# ifdef FEAT_COMMENTS
713 if (flags & OPENLINE_DO_COM)
Bram Moolenaar81340392012-06-06 16:12:59 +0200714 lead_len = get_leader_len(ptr, NULL, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715 else
716 lead_len = 0;
717 if (lead_len > 0)
718 {
719 /*
720 * This case gets the following right:
721 * \*
722 * * A comment (read '\' as '/').
723 * *\
724 * #define IN_THE_WAY
725 * This should line up here;
726 */
727 p = skipwhite(ptr);
728 if (p[0] == '/' && p[1] == '*')
729 p++;
730 if (p[0] == '*')
731 {
732 for (p++; *p; p++)
733 {
734 if (p[0] == '/' && p[-1] == '*')
735 {
736 /*
737 * End of C comment, indent should line up
738 * with the line containing the start of
739 * the comment
740 */
741 curwin->w_cursor.col = (colnr_T)(p - ptr);
742 if ((pos = findmatch(NULL, NUL)) != NULL)
743 {
744 curwin->w_cursor.lnum = pos->lnum;
745 newindent = get_indent();
746 }
747 }
748 }
749 }
750 }
751 else /* Not a comment line */
752# endif
753 {
754 /* Find last non-blank in line */
755 p = ptr + STRLEN(ptr) - 1;
756 while (p > ptr && vim_iswhite(*p))
757 --p;
758 last_char = *p;
759
760 /*
761 * find the character just before the '{' or ';'
762 */
763 if (last_char == '{' || last_char == ';')
764 {
765 if (p > ptr)
766 --p;
767 while (p > ptr && vim_iswhite(*p))
768 --p;
769 }
770 /*
771 * Try to catch lines that are split over multiple
772 * lines. eg:
773 * if (condition &&
774 * condition) {
775 * Should line up here!
776 * }
777 */
778 if (*p == ')')
779 {
780 curwin->w_cursor.col = (colnr_T)(p - ptr);
781 if ((pos = findmatch(NULL, '(')) != NULL)
782 {
783 curwin->w_cursor.lnum = pos->lnum;
784 newindent = get_indent();
785 ptr = ml_get_curline();
786 }
787 }
788 /*
789 * If last character is '{' do indent, without
790 * checking for "if" and the like.
791 */
792 if (last_char == '{')
793 {
794 did_si = TRUE; /* do indent */
795 no_si = TRUE; /* don't delete it when '{' typed */
796 }
797 /*
798 * Look for "if" and the like, use 'cinwords'.
799 * Don't do this if the previous line ended in ';' or
800 * '}'.
801 */
802 else if (last_char != ';' && last_char != '}'
803 && cin_is_cinword(ptr))
804 did_si = TRUE;
805 }
806 }
807 else /* dir == BACKWARD */
808 {
809 /*
810 * Skip preprocessor directives, unless they are
811 * recognised as comments.
812 */
813 if (
814# ifdef FEAT_COMMENTS
815 lead_len == 0 &&
816# endif
817 ptr[0] == '#')
818 {
819 int was_backslashed = FALSE;
820
821 while ((ptr[0] == '#' || was_backslashed) &&
822 curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
823 {
824 if (*ptr && ptr[STRLEN(ptr) - 1] == '\\')
825 was_backslashed = TRUE;
826 else
827 was_backslashed = FALSE;
828 ptr = ml_get(++curwin->w_cursor.lnum);
829 }
830 if (was_backslashed)
831 newindent = 0; /* Got to end of file */
832 else
833 newindent = get_indent();
834 }
835 p = skipwhite(ptr);
836 if (*p == '}') /* if line starts with '}': do indent */
837 did_si = TRUE;
838 else /* can delete indent when '{' typed */
839 can_si_back = TRUE;
840 }
841 curwin->w_cursor = old_cursor;
842 }
843 if (do_si)
844 can_si = TRUE;
845#endif /* FEAT_SMARTINDENT */
846
847 did_ai = TRUE;
848 }
849
850#ifdef FEAT_COMMENTS
851 /*
852 * Find out if the current line starts with a comment leader.
853 * This may then be inserted in front of the new line.
854 */
855 end_comment_pending = NUL;
856 if (flags & OPENLINE_DO_COM)
Bram Moolenaar81340392012-06-06 16:12:59 +0200857 lead_len = get_leader_len(saved_line, &lead_flags, dir == BACKWARD, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 else
859 lead_len = 0;
860 if (lead_len > 0)
861 {
862 char_u *lead_repl = NULL; /* replaces comment leader */
863 int lead_repl_len = 0; /* length of *lead_repl */
864 char_u lead_middle[COM_MAX_LEN]; /* middle-comment string */
865 char_u lead_end[COM_MAX_LEN]; /* end-comment string */
866 char_u *comment_end = NULL; /* where lead_end has been found */
867 int extra_space = FALSE; /* append extra space */
868 int current_flag;
869 int require_blank = FALSE; /* requires blank after middle */
870 char_u *p2;
871
872 /*
873 * If the comment leader has the start, middle or end flag, it may not
874 * be used or may be replaced with the middle leader.
875 */
876 for (p = lead_flags; *p && *p != ':'; ++p)
877 {
878 if (*p == COM_BLANK)
879 {
880 require_blank = TRUE;
881 continue;
882 }
883 if (*p == COM_START || *p == COM_MIDDLE)
884 {
885 current_flag = *p;
886 if (*p == COM_START)
887 {
888 /*
889 * Doing "O" on a start of comment does not insert leader.
890 */
891 if (dir == BACKWARD)
892 {
893 lead_len = 0;
894 break;
895 }
896
897 /* find start of middle part */
898 (void)copy_option_part(&p, lead_middle, COM_MAX_LEN, ",");
899 require_blank = FALSE;
900 }
901
902 /*
903 * Isolate the strings of the middle and end leader.
904 */
905 while (*p && p[-1] != ':') /* find end of middle flags */
906 {
907 if (*p == COM_BLANK)
908 require_blank = TRUE;
909 ++p;
910 }
911 (void)copy_option_part(&p, lead_middle, COM_MAX_LEN, ",");
912
913 while (*p && p[-1] != ':') /* find end of end flags */
914 {
915 /* Check whether we allow automatic ending of comments */
916 if (*p == COM_AUTO_END)
917 end_comment_pending = -1; /* means we want to set it */
918 ++p;
919 }
920 n = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
921
922 if (end_comment_pending == -1) /* we can set it now */
923 end_comment_pending = lead_end[n - 1];
924
925 /*
926 * If the end of the comment is in the same line, don't use
927 * the comment leader.
928 */
929 if (dir == FORWARD)
930 {
931 for (p = saved_line + lead_len; *p; ++p)
932 if (STRNCMP(p, lead_end, n) == 0)
933 {
934 comment_end = p;
935 lead_len = 0;
936 break;
937 }
938 }
939
940 /*
941 * Doing "o" on a start of comment inserts the middle leader.
942 */
943 if (lead_len > 0)
944 {
945 if (current_flag == COM_START)
946 {
947 lead_repl = lead_middle;
948 lead_repl_len = (int)STRLEN(lead_middle);
949 }
950
951 /*
952 * If we have hit RETURN immediately after the start
953 * comment leader, then put a space after the middle
954 * comment leader on the next line.
955 */
956 if (!vim_iswhite(saved_line[lead_len - 1])
957 && ((p_extra != NULL
958 && (int)curwin->w_cursor.col == lead_len)
959 || (p_extra == NULL
960 && saved_line[lead_len] == NUL)
961 || require_blank))
962 extra_space = TRUE;
963 }
964 break;
965 }
966 if (*p == COM_END)
967 {
968 /*
969 * Doing "o" on the end of a comment does not insert leader.
970 * Remember where the end is, might want to use it to find the
971 * start (for C-comments).
972 */
973 if (dir == FORWARD)
974 {
975 comment_end = skipwhite(saved_line);
976 lead_len = 0;
977 break;
978 }
979
980 /*
981 * Doing "O" on the end of a comment inserts the middle leader.
982 * Find the string for the middle leader, searching backwards.
983 */
984 while (p > curbuf->b_p_com && *p != ',')
985 --p;
986 for (lead_repl = p; lead_repl > curbuf->b_p_com
987 && lead_repl[-1] != ':'; --lead_repl)
988 ;
989 lead_repl_len = (int)(p - lead_repl);
990
991 /* We can probably always add an extra space when doing "O" on
992 * the comment-end */
993 extra_space = TRUE;
994
995 /* Check whether we allow automatic ending of comments */
996 for (p2 = p; *p2 && *p2 != ':'; p2++)
997 {
998 if (*p2 == COM_AUTO_END)
999 end_comment_pending = -1; /* means we want to set it */
1000 }
1001 if (end_comment_pending == -1)
1002 {
1003 /* Find last character in end-comment string */
1004 while (*p2 && *p2 != ',')
1005 p2++;
1006 end_comment_pending = p2[-1];
1007 }
1008 break;
1009 }
1010 if (*p == COM_FIRST)
1011 {
1012 /*
1013 * Comment leader for first line only: Don't repeat leader
1014 * when using "O", blank out leader when using "o".
1015 */
1016 if (dir == BACKWARD)
1017 lead_len = 0;
1018 else
1019 {
1020 lead_repl = (char_u *)"";
1021 lead_repl_len = 0;
1022 }
1023 break;
1024 }
1025 }
1026 if (lead_len)
1027 {
Bram Moolenaardc7e85e2012-06-20 12:40:08 +02001028 /* allocate buffer (may concatenate p_extra later) */
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001029 leader = alloc(lead_len + lead_repl_len + extra_space + extra_len
Bram Moolenaardc7e85e2012-06-20 12:40:08 +02001030 + (second_line_indent > 0 ? second_line_indent : 0) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 allocated = leader; /* remember to free it later */
1032
1033 if (leader == NULL)
1034 lead_len = 0;
1035 else
1036 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00001037 vim_strncpy(leader, saved_line, lead_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038
1039 /*
1040 * Replace leader with lead_repl, right or left adjusted
1041 */
1042 if (lead_repl != NULL)
1043 {
1044 int c = 0;
1045 int off = 0;
1046
Bram Moolenaard7d5b472009-11-11 16:30:08 +00001047 for (p = lead_flags; *p != NUL && *p != ':'; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 {
1049 if (*p == COM_RIGHT || *p == COM_LEFT)
Bram Moolenaard7d5b472009-11-11 16:30:08 +00001050 c = *p++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 else if (VIM_ISDIGIT(*p) || *p == '-')
1052 off = getdigits(&p);
Bram Moolenaard7d5b472009-11-11 16:30:08 +00001053 else
1054 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055 }
1056 if (c == COM_RIGHT) /* right adjusted leader */
1057 {
1058 /* find last non-white in the leader to line up with */
1059 for (p = leader + lead_len - 1; p > leader
1060 && vim_iswhite(*p); --p)
1061 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062 ++p;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001063
1064#ifdef FEAT_MBYTE
1065 /* Compute the length of the replaced characters in
1066 * screen characters, not bytes. */
1067 {
1068 int repl_size = vim_strnsize(lead_repl,
1069 lead_repl_len);
1070 int old_size = 0;
1071 char_u *endp = p;
1072 int l;
1073
1074 while (old_size < repl_size && p > leader)
1075 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001076 mb_ptr_back(leader, p);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001077 old_size += ptr2cells(p);
1078 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001079 l = lead_repl_len - (int)(endp - p);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001080 if (l != 0)
1081 mch_memmove(endp + l, endp,
1082 (size_t)((leader + lead_len) - endp));
1083 lead_len += l;
1084 }
1085#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086 if (p < leader + lead_repl_len)
1087 p = leader;
1088 else
1089 p -= lead_repl_len;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001090#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 mch_memmove(p, lead_repl, (size_t)lead_repl_len);
1092 if (p + lead_repl_len > leader + lead_len)
1093 p[lead_repl_len] = NUL;
1094
1095 /* blank-out any other chars from the old leader. */
1096 while (--p >= leader)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001097 {
1098#ifdef FEAT_MBYTE
1099 int l = mb_head_off(leader, p);
1100
1101 if (l > 1)
1102 {
1103 p -= l;
1104 if (ptr2cells(p) > 1)
1105 {
1106 p[1] = ' ';
1107 --l;
1108 }
1109 mch_memmove(p + 1, p + l + 1,
1110 (size_t)((leader + lead_len) - (p + l + 1)));
1111 lead_len -= l;
1112 *p = ' ';
1113 }
1114 else
1115#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 if (!vim_iswhite(*p))
1117 *p = ' ';
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001118 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119 }
1120 else /* left adjusted leader */
1121 {
1122 p = skipwhite(leader);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001123#ifdef FEAT_MBYTE
1124 /* Compute the length of the replaced characters in
1125 * screen characters, not bytes. Move the part that is
1126 * not to be overwritten. */
1127 {
1128 int repl_size = vim_strnsize(lead_repl,
1129 lead_repl_len);
1130 int i;
1131 int l;
1132
1133 for (i = 0; p[i] != NUL && i < lead_len; i += l)
1134 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001135 l = (*mb_ptr2len)(p + i);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001136 if (vim_strnsize(p, i + l) > repl_size)
1137 break;
1138 }
1139 if (i != lead_repl_len)
1140 {
1141 mch_memmove(p + lead_repl_len, p + i,
Bram Moolenaar2d7ff052009-11-17 15:08:26 +00001142 (size_t)(lead_len - i - (p - leader)));
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001143 lead_len += lead_repl_len - i;
1144 }
1145 }
1146#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147 mch_memmove(p, lead_repl, (size_t)lead_repl_len);
1148
1149 /* Replace any remaining non-white chars in the old
1150 * leader by spaces. Keep Tabs, the indent must
1151 * remain the same. */
1152 for (p += lead_repl_len; p < leader + lead_len; ++p)
1153 if (!vim_iswhite(*p))
1154 {
1155 /* Don't put a space before a TAB. */
1156 if (p + 1 < leader + lead_len && p[1] == TAB)
1157 {
1158 --lead_len;
1159 mch_memmove(p, p + 1,
1160 (leader + lead_len) - p);
1161 }
1162 else
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001163 {
1164#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001165 int l = (*mb_ptr2len)(p);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001166
1167 if (l > 1)
1168 {
1169 if (ptr2cells(p) > 1)
1170 {
1171 /* Replace a double-wide char with
1172 * two spaces */
1173 --l;
1174 *p++ = ' ';
1175 }
1176 mch_memmove(p + 1, p + l,
1177 (leader + lead_len) - p);
1178 lead_len -= l - 1;
1179 }
1180#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 *p = ' ';
Bram Moolenaar21cf8232004-07-16 20:18:37 +00001182 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 }
1184 *p = NUL;
1185 }
1186
1187 /* Recompute the indent, it may have changed. */
1188 if (curbuf->b_p_ai
1189#ifdef FEAT_SMARTINDENT
1190 || do_si
1191#endif
1192 )
1193 newindent = get_indent_str(leader, (int)curbuf->b_p_ts);
1194
1195 /* Add the indent offset */
1196 if (newindent + off < 0)
1197 {
1198 off = -newindent;
1199 newindent = 0;
1200 }
1201 else
1202 newindent += off;
1203
1204 /* Correct trailing spaces for the shift, so that
1205 * alignment remains equal. */
1206 while (off > 0 && lead_len > 0
1207 && leader[lead_len - 1] == ' ')
1208 {
1209 /* Don't do it when there is a tab before the space */
1210 if (vim_strchr(skipwhite(leader), '\t') != NULL)
1211 break;
1212 --lead_len;
1213 --off;
1214 }
1215
1216 /* If the leader ends in white space, don't add an
1217 * extra space */
1218 if (lead_len > 0 && vim_iswhite(leader[lead_len - 1]))
1219 extra_space = FALSE;
1220 leader[lead_len] = NUL;
1221 }
1222
1223 if (extra_space)
1224 {
1225 leader[lead_len++] = ' ';
1226 leader[lead_len] = NUL;
1227 }
1228
1229 newcol = lead_len;
1230
1231 /*
1232 * if a new indent will be set below, remove the indent that
1233 * is in the comment leader
1234 */
1235 if (newindent
1236#ifdef FEAT_SMARTINDENT
1237 || did_si
1238#endif
1239 )
1240 {
1241 while (lead_len && vim_iswhite(*leader))
1242 {
1243 --lead_len;
1244 --newcol;
1245 ++leader;
1246 }
1247 }
1248
1249 }
1250#ifdef FEAT_SMARTINDENT
1251 did_si = can_si = FALSE;
1252#endif
1253 }
1254 else if (comment_end != NULL)
1255 {
1256 /*
1257 * We have finished a comment, so we don't use the leader.
1258 * If this was a C-comment and 'ai' or 'si' is set do a normal
1259 * indent to align with the line containing the start of the
1260 * comment.
1261 */
1262 if (comment_end[0] == '*' && comment_end[1] == '/' &&
1263 (curbuf->b_p_ai
1264#ifdef FEAT_SMARTINDENT
1265 || do_si
1266#endif
1267 ))
1268 {
1269 old_cursor = curwin->w_cursor;
1270 curwin->w_cursor.col = (colnr_T)(comment_end - saved_line);
1271 if ((pos = findmatch(NULL, NUL)) != NULL)
1272 {
1273 curwin->w_cursor.lnum = pos->lnum;
1274 newindent = get_indent();
1275 }
1276 curwin->w_cursor = old_cursor;
1277 }
1278 }
1279 }
1280#endif
1281
1282 /* (State == INSERT || State == REPLACE), only when dir == FORWARD */
1283 if (p_extra != NULL)
1284 {
1285 *p_extra = saved_char; /* restore char that NUL replaced */
1286
1287 /*
1288 * When 'ai' set or "flags" has OPENLINE_DELSPACES, skip to the first
1289 * non-blank.
1290 *
1291 * When in REPLACE mode, put the deleted blanks on the replace stack,
1292 * preceded by a NUL, so they can be put back when a BS is entered.
1293 */
1294 if (REPLACE_NORMAL(State))
1295 replace_push(NUL); /* end of extra blanks */
1296 if (curbuf->b_p_ai || (flags & OPENLINE_DELSPACES))
1297 {
1298 while ((*p_extra == ' ' || *p_extra == '\t')
1299#ifdef FEAT_MBYTE
1300 && (!enc_utf8
1301 || !utf_iscomposing(utf_ptr2char(p_extra + 1)))
1302#endif
1303 )
1304 {
1305 if (REPLACE_NORMAL(State))
1306 replace_push(*p_extra);
1307 ++p_extra;
1308 ++less_cols_off;
1309 }
1310 }
1311 if (*p_extra != NUL)
1312 did_ai = FALSE; /* append some text, don't truncate now */
1313
1314 /* columns for marks adjusted for removed columns */
1315 less_cols = (int)(p_extra - saved_line);
1316 }
1317
1318 if (p_extra == NULL)
1319 p_extra = (char_u *)""; /* append empty line */
1320
1321#ifdef FEAT_COMMENTS
1322 /* concatenate leader and p_extra, if there is a leader */
1323 if (lead_len)
1324 {
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001325 if (flags & OPENLINE_COM_LIST && second_line_indent > 0)
1326 {
1327 int i;
Bram Moolenaar36105782012-06-14 20:59:25 +02001328 int padding = second_line_indent
1329 - (newindent + (int)STRLEN(leader));
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001330
1331 /* Here whitespace is inserted after the comment char.
1332 * Below, set_indent(newindent, SIN_INSERT) will insert the
1333 * whitespace needed before the comment char. */
1334 for (i = 0; i < padding; i++)
1335 {
1336 STRCAT(leader, " ");
Bram Moolenaar5fb9ec52012-07-25 16:10:03 +02001337 less_cols--;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001338 newcol++;
1339 }
1340 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 STRCAT(leader, p_extra);
1342 p_extra = leader;
1343 did_ai = TRUE; /* So truncating blanks works with comments */
1344 less_cols -= lead_len;
1345 }
1346 else
1347 end_comment_pending = NUL; /* turns out there was no leader */
1348#endif
1349
1350 old_cursor = curwin->w_cursor;
1351 if (dir == BACKWARD)
1352 --curwin->w_cursor.lnum;
1353#ifdef FEAT_VREPLACE
1354 if (!(State & VREPLACE_FLAG) || old_cursor.lnum >= orig_line_count)
1355#endif
1356 {
1357 if (ml_append(curwin->w_cursor.lnum, p_extra, (colnr_T)0, FALSE)
1358 == FAIL)
1359 goto theend;
1360 /* Postpone calling changed_lines(), because it would mess up folding
1361 * with markers. */
1362 mark_adjust(curwin->w_cursor.lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
1363 did_append = TRUE;
1364 }
1365#ifdef FEAT_VREPLACE
1366 else
1367 {
1368 /*
1369 * In VREPLACE mode we are starting to replace the next line.
1370 */
1371 curwin->w_cursor.lnum++;
1372 if (curwin->w_cursor.lnum >= Insstart.lnum + vr_lines_changed)
1373 {
1374 /* In case we NL to a new line, BS to the previous one, and NL
1375 * again, we don't want to save the new line for undo twice.
1376 */
1377 (void)u_save_cursor(); /* errors are ignored! */
1378 vr_lines_changed++;
1379 }
1380 ml_replace(curwin->w_cursor.lnum, p_extra, TRUE);
1381 changed_bytes(curwin->w_cursor.lnum, 0);
1382 curwin->w_cursor.lnum--;
1383 did_append = FALSE;
1384 }
1385#endif
1386
1387 if (newindent
1388#ifdef FEAT_SMARTINDENT
1389 || did_si
1390#endif
1391 )
1392 {
1393 ++curwin->w_cursor.lnum;
1394#ifdef FEAT_SMARTINDENT
1395 if (did_si)
1396 {
Bram Moolenaar14f24742012-08-08 18:01:05 +02001397 int sw = (int)get_sw_value();
1398
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 if (p_sr)
Bram Moolenaar14f24742012-08-08 18:01:05 +02001400 newindent -= newindent % sw;
1401 newindent += sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 }
1403#endif
Bram Moolenaar5002c292007-07-24 13:26:15 +00001404 /* Copy the indent */
1405 if (curbuf->b_p_ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406 {
1407 (void)copy_indent(newindent, saved_line);
1408
1409 /*
1410 * Set the 'preserveindent' option so that any further screwing
1411 * with the line doesn't entirely destroy our efforts to preserve
1412 * it. It gets restored at the function end.
1413 */
1414 curbuf->b_p_pi = TRUE;
1415 }
1416 else
1417 (void)set_indent(newindent, SIN_INSERT);
1418 less_cols -= curwin->w_cursor.col;
1419
1420 ai_col = curwin->w_cursor.col;
1421
1422 /*
1423 * In REPLACE mode, for each character in the new indent, there must
1424 * be a NUL on the replace stack, for when it is deleted with BS
1425 */
1426 if (REPLACE_NORMAL(State))
1427 for (n = 0; n < (int)curwin->w_cursor.col; ++n)
1428 replace_push(NUL);
1429 newcol += curwin->w_cursor.col;
1430#ifdef FEAT_SMARTINDENT
1431 if (no_si)
1432 did_si = FALSE;
1433#endif
1434 }
1435
1436#ifdef FEAT_COMMENTS
1437 /*
1438 * In REPLACE mode, for each character in the extra leader, there must be
1439 * a NUL on the replace stack, for when it is deleted with BS.
1440 */
1441 if (REPLACE_NORMAL(State))
1442 while (lead_len-- > 0)
1443 replace_push(NUL);
1444#endif
1445
1446 curwin->w_cursor = old_cursor;
1447
1448 if (dir == FORWARD)
1449 {
1450 if (trunc_line || (State & INSERT))
1451 {
1452 /* truncate current line at cursor */
1453 saved_line[curwin->w_cursor.col] = NUL;
1454 /* Remove trailing white space, unless OPENLINE_KEEPTRAIL used. */
1455 if (trunc_line && !(flags & OPENLINE_KEEPTRAIL))
1456 truncate_spaces(saved_line);
1457 ml_replace(curwin->w_cursor.lnum, saved_line, FALSE);
1458 saved_line = NULL;
1459 if (did_append)
1460 {
1461 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1462 curwin->w_cursor.lnum + 1, 1L);
1463 did_append = FALSE;
1464
1465 /* Move marks after the line break to the new line. */
1466 if (flags & OPENLINE_MARKFIX)
1467 mark_col_adjust(curwin->w_cursor.lnum,
1468 curwin->w_cursor.col + less_cols_off,
1469 1L, (long)-less_cols);
1470 }
1471 else
1472 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
1473 }
1474
1475 /*
1476 * Put the cursor on the new line. Careful: the scrollup() above may
1477 * have moved w_cursor, we must use old_cursor.
1478 */
1479 curwin->w_cursor.lnum = old_cursor.lnum + 1;
1480 }
1481 if (did_append)
1482 changed_lines(curwin->w_cursor.lnum, 0, curwin->w_cursor.lnum, 1L);
1483
1484 curwin->w_cursor.col = newcol;
1485#ifdef FEAT_VIRTUALEDIT
1486 curwin->w_cursor.coladd = 0;
1487#endif
1488
1489#if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
1490 /*
1491 * In VREPLACE mode, we are handling the replace stack ourselves, so stop
1492 * fixthisline() from doing it (via change_indent()) by telling it we're in
1493 * normal INSERT mode.
1494 */
1495 if (State & VREPLACE_FLAG)
1496 {
1497 vreplace_mode = State; /* So we know to put things right later */
1498 State = INSERT;
1499 }
1500 else
1501 vreplace_mode = 0;
1502#endif
1503#ifdef FEAT_LISP
1504 /*
1505 * May do lisp indenting.
1506 */
1507 if (!p_paste
1508# ifdef FEAT_COMMENTS
1509 && leader == NULL
1510# endif
1511 && curbuf->b_p_lisp
1512 && curbuf->b_p_ai)
1513 {
1514 fixthisline(get_lisp_indent);
1515 p = ml_get_curline();
1516 ai_col = (colnr_T)(skipwhite(p) - p);
1517 }
1518#endif
1519#ifdef FEAT_CINDENT
1520 /*
1521 * May do indenting after opening a new line.
1522 */
1523 if (!p_paste
1524 && (curbuf->b_p_cin
1525# ifdef FEAT_EVAL
1526 || *curbuf->b_p_inde != NUL
1527# endif
1528 )
1529 && in_cinkeys(dir == FORWARD
1530 ? KEY_OPEN_FORW
1531 : KEY_OPEN_BACK, ' ', linewhite(curwin->w_cursor.lnum)))
1532 {
1533 do_c_expr_indent();
1534 p = ml_get_curline();
1535 ai_col = (colnr_T)(skipwhite(p) - p);
1536 }
1537#endif
1538#if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
1539 if (vreplace_mode != 0)
1540 State = vreplace_mode;
1541#endif
1542
1543#ifdef FEAT_VREPLACE
1544 /*
1545 * Finally, VREPLACE gets the stuff on the new line, then puts back the
1546 * original line, and inserts the new stuff char by char, pushing old stuff
1547 * onto the replace stack (via ins_char()).
1548 */
1549 if (State & VREPLACE_FLAG)
1550 {
1551 /* Put new line in p_extra */
1552 p_extra = vim_strsave(ml_get_curline());
1553 if (p_extra == NULL)
1554 goto theend;
1555
1556 /* Put back original line */
1557 ml_replace(curwin->w_cursor.lnum, next_line, FALSE);
1558
1559 /* Insert new stuff into line again */
1560 curwin->w_cursor.col = 0;
1561#ifdef FEAT_VIRTUALEDIT
1562 curwin->w_cursor.coladd = 0;
1563#endif
1564 ins_bytes(p_extra); /* will call changed_bytes() */
1565 vim_free(p_extra);
1566 next_line = NULL;
1567 }
1568#endif
1569
1570 retval = TRUE; /* success! */
1571theend:
1572 curbuf->b_p_pi = saved_pi;
1573 vim_free(saved_line);
1574 vim_free(next_line);
1575 vim_free(allocated);
1576 return retval;
1577}
1578
1579#if defined(FEAT_COMMENTS) || defined(PROTO)
1580/*
1581 * get_leader_len() returns the length of the prefix of the given string
1582 * which introduces a comment. If this string is not a comment then 0 is
1583 * returned.
1584 * When "flags" is not NULL, it is set to point to the flags of the recognized
1585 * comment leader.
1586 * "backward" must be true for the "O" command.
Bram Moolenaar81340392012-06-06 16:12:59 +02001587 * If "include_space" is set, include trailing whitespace while calculating the
1588 * length.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 */
1590 int
Bram Moolenaar81340392012-06-06 16:12:59 +02001591get_leader_len(line, flags, backward, include_space)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592 char_u *line;
1593 char_u **flags;
1594 int backward;
Bram Moolenaar81340392012-06-06 16:12:59 +02001595 int include_space;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596{
1597 int i, j;
Bram Moolenaar81340392012-06-06 16:12:59 +02001598 int result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 int got_com = FALSE;
1600 int found_one;
1601 char_u part_buf[COM_MAX_LEN]; /* buffer for one option part */
1602 char_u *string; /* pointer to comment string */
1603 char_u *list;
Bram Moolenaara4271d52011-05-10 13:38:27 +02001604 int middle_match_len = 0;
1605 char_u *prev_list;
Bram Moolenaar05da4282011-05-10 14:44:11 +02001606 char_u *saved_flags = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607
Bram Moolenaar81340392012-06-06 16:12:59 +02001608 result = i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609 while (vim_iswhite(line[i])) /* leading white space is ignored */
1610 ++i;
1611
1612 /*
1613 * Repeat to match several nested comment strings.
1614 */
Bram Moolenaara4271d52011-05-10 13:38:27 +02001615 while (line[i] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 {
1617 /*
1618 * scan through the 'comments' option for a match
1619 */
1620 found_one = FALSE;
1621 for (list = curbuf->b_p_com; *list; )
1622 {
Bram Moolenaara4271d52011-05-10 13:38:27 +02001623 /* Get one option part into part_buf[]. Advance "list" to next
1624 * one. Put "string" at start of string. */
1625 if (!got_com && flags != NULL)
1626 *flags = list; /* remember where flags started */
1627 prev_list = list;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 (void)copy_option_part(&list, part_buf, COM_MAX_LEN, ",");
1629 string = vim_strchr(part_buf, ':');
1630 if (string == NULL) /* missing ':', ignore this part */
1631 continue;
1632 *string++ = NUL; /* isolate flags from string */
1633
Bram Moolenaara4271d52011-05-10 13:38:27 +02001634 /* If we found a middle match previously, use that match when this
1635 * is not a middle or end. */
1636 if (middle_match_len != 0
1637 && vim_strchr(part_buf, COM_MIDDLE) == NULL
1638 && vim_strchr(part_buf, COM_END) == NULL)
1639 break;
1640
1641 /* When we already found a nested comment, only accept further
1642 * nested comments. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 if (got_com && vim_strchr(part_buf, COM_NEST) == NULL)
1644 continue;
1645
Bram Moolenaara4271d52011-05-10 13:38:27 +02001646 /* When 'O' flag present and using "O" command skip this one. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 if (backward && vim_strchr(part_buf, COM_NOBACK) != NULL)
1648 continue;
1649
Bram Moolenaara4271d52011-05-10 13:38:27 +02001650 /* Line contents and string must match.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651 * When string starts with white space, must have some white space
1652 * (but the amount does not need to match, there might be a mix of
Bram Moolenaara4271d52011-05-10 13:38:27 +02001653 * TABs and spaces). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 if (vim_iswhite(string[0]))
1655 {
1656 if (i == 0 || !vim_iswhite(line[i - 1]))
Bram Moolenaara4271d52011-05-10 13:38:27 +02001657 continue; /* missing shite space */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658 while (vim_iswhite(string[0]))
1659 ++string;
1660 }
1661 for (j = 0; string[j] != NUL && string[j] == line[i + j]; ++j)
1662 ;
1663 if (string[j] != NUL)
Bram Moolenaara4271d52011-05-10 13:38:27 +02001664 continue; /* string doesn't match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665
Bram Moolenaara4271d52011-05-10 13:38:27 +02001666 /* When 'b' flag used, there must be white space or an
1667 * end-of-line after the string in the line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 if (vim_strchr(part_buf, COM_BLANK) != NULL
1669 && !vim_iswhite(line[i + j]) && line[i + j] != NUL)
1670 continue;
1671
Bram Moolenaara4271d52011-05-10 13:38:27 +02001672 /* We have found a match, stop searching unless this is a middle
1673 * comment. The middle comment can be a substring of the end
1674 * comment in which case it's better to return the length of the
1675 * end comment and its flags. Thus we keep searching with middle
1676 * and end matches and use an end match if it matches better. */
1677 if (vim_strchr(part_buf, COM_MIDDLE) != NULL)
1678 {
1679 if (middle_match_len == 0)
1680 {
1681 middle_match_len = j;
1682 saved_flags = prev_list;
1683 }
1684 continue;
1685 }
1686 if (middle_match_len != 0 && j > middle_match_len)
1687 /* Use this match instead of the middle match, since it's a
1688 * longer thus better match. */
1689 middle_match_len = 0;
1690
1691 if (middle_match_len == 0)
1692 i += j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 found_one = TRUE;
1694 break;
1695 }
1696
Bram Moolenaara4271d52011-05-10 13:38:27 +02001697 if (middle_match_len != 0)
1698 {
1699 /* Use the previously found middle match after failing to find a
1700 * match with an end. */
1701 if (!got_com && flags != NULL)
1702 *flags = saved_flags;
1703 i += middle_match_len;
1704 found_one = TRUE;
1705 }
1706
1707 /* No match found, stop scanning. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708 if (!found_one)
1709 break;
1710
Bram Moolenaar81340392012-06-06 16:12:59 +02001711 result = i;
1712
Bram Moolenaara4271d52011-05-10 13:38:27 +02001713 /* Include any trailing white space. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 while (vim_iswhite(line[i]))
1715 ++i;
1716
Bram Moolenaar81340392012-06-06 16:12:59 +02001717 if (include_space)
1718 result = i;
1719
Bram Moolenaara4271d52011-05-10 13:38:27 +02001720 /* If this comment doesn't nest, stop here. */
1721 got_com = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 if (vim_strchr(part_buf, COM_NEST) == NULL)
1723 break;
1724 }
Bram Moolenaar81340392012-06-06 16:12:59 +02001725 return result;
1726}
Bram Moolenaara4271d52011-05-10 13:38:27 +02001727
Bram Moolenaar81340392012-06-06 16:12:59 +02001728/*
1729 * Return the offset at which the last comment in line starts. If there is no
1730 * comment in the whole line, -1 is returned.
1731 *
1732 * When "flags" is not null, it is set to point to the flags describing the
1733 * recognized comment leader.
1734 */
1735 int
1736get_last_leader_offset(line, flags)
1737 char_u *line;
1738 char_u **flags;
1739{
1740 int result = -1;
1741 int i, j;
1742 int lower_check_bound = 0;
1743 char_u *string;
1744 char_u *com_leader;
1745 char_u *com_flags;
1746 char_u *list;
1747 int found_one;
1748 char_u part_buf[COM_MAX_LEN]; /* buffer for one option part */
1749
1750 /*
1751 * Repeat to match several nested comment strings.
1752 */
1753 i = (int)STRLEN(line);
1754 while (--i >= lower_check_bound)
1755 {
1756 /*
1757 * scan through the 'comments' option for a match
1758 */
1759 found_one = FALSE;
1760 for (list = curbuf->b_p_com; *list; )
1761 {
1762 char_u *flags_save = list;
1763
1764 /*
1765 * Get one option part into part_buf[]. Advance list to next one.
1766 * put string at start of string.
1767 */
1768 (void)copy_option_part(&list, part_buf, COM_MAX_LEN, ",");
1769 string = vim_strchr(part_buf, ':');
1770 if (string == NULL) /* If everything is fine, this cannot actually
1771 * happen. */
1772 {
1773 continue;
1774 }
1775 *string++ = NUL; /* Isolate flags from string. */
1776 com_leader = string;
1777
1778 /*
1779 * Line contents and string must match.
1780 * When string starts with white space, must have some white space
1781 * (but the amount does not need to match, there might be a mix of
1782 * TABs and spaces).
1783 */
1784 if (vim_iswhite(string[0]))
1785 {
1786 if (i == 0 || !vim_iswhite(line[i - 1]))
1787 continue;
1788 while (vim_iswhite(string[0]))
1789 ++string;
1790 }
1791 for (j = 0; string[j] != NUL && string[j] == line[i + j]; ++j)
1792 /* do nothing */;
1793 if (string[j] != NUL)
1794 continue;
1795
1796 /*
1797 * When 'b' flag used, there must be white space or an
1798 * end-of-line after the string in the line.
1799 */
1800 if (vim_strchr(part_buf, COM_BLANK) != NULL
1801 && !vim_iswhite(line[i + j]) && line[i + j] != NUL)
1802 {
1803 continue;
1804 }
1805
1806 /*
1807 * We have found a match, stop searching.
1808 */
1809 found_one = TRUE;
1810
1811 if (flags)
1812 *flags = flags_save;
1813 com_flags = flags_save;
1814
1815 break;
1816 }
1817
1818 if (found_one)
1819 {
1820 char_u part_buf2[COM_MAX_LEN]; /* buffer for one option part */
1821 int len1, len2, off;
1822
1823 result = i;
1824 /*
1825 * If this comment nests, continue searching.
1826 */
1827 if (vim_strchr(part_buf, COM_NEST) != NULL)
1828 continue;
1829
1830 lower_check_bound = i;
1831
1832 /* Let's verify whether the comment leader found is a substring
1833 * of other comment leaders. If it is, let's adjust the
1834 * lower_check_bound so that we make sure that we have determined
1835 * the comment leader correctly.
1836 */
1837
1838 while (vim_iswhite(*com_leader))
1839 ++com_leader;
1840 len1 = (int)STRLEN(com_leader);
1841
1842 for (list = curbuf->b_p_com; *list; )
1843 {
1844 char_u *flags_save = list;
1845
1846 (void)copy_option_part(&list, part_buf2, COM_MAX_LEN, ",");
1847 if (flags_save == com_flags)
1848 continue;
1849 string = vim_strchr(part_buf2, ':');
1850 ++string;
1851 while (vim_iswhite(*string))
1852 ++string;
1853 len2 = (int)STRLEN(string);
1854 if (len2 == 0)
1855 continue;
1856
1857 /* Now we have to verify whether string ends with a substring
1858 * beginning the com_leader. */
1859 for (off = (len2 > i ? i : len2); off > 0 && off + len1 > len2;)
1860 {
1861 --off;
1862 if (!STRNCMP(string + off, com_leader, len2 - off))
1863 {
1864 if (i - off < lower_check_bound)
1865 lower_check_bound = i - off;
1866 }
1867 }
1868 }
1869 }
1870 }
1871 return result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872}
1873#endif
1874
1875/*
1876 * Return the number of window lines occupied by buffer line "lnum".
1877 */
1878 int
1879plines(lnum)
1880 linenr_T lnum;
1881{
1882 return plines_win(curwin, lnum, TRUE);
1883}
1884
1885 int
1886plines_win(wp, lnum, winheight)
1887 win_T *wp;
1888 linenr_T lnum;
1889 int winheight; /* when TRUE limit to window height */
1890{
1891#if defined(FEAT_DIFF) || defined(PROTO)
1892 /* Check for filler lines above this buffer line. When folded the result
1893 * is one line anyway. */
1894 return plines_win_nofill(wp, lnum, winheight) + diff_check_fill(wp, lnum);
1895}
1896
1897 int
1898plines_nofill(lnum)
1899 linenr_T lnum;
1900{
1901 return plines_win_nofill(curwin, lnum, TRUE);
1902}
1903
1904 int
1905plines_win_nofill(wp, lnum, winheight)
1906 win_T *wp;
1907 linenr_T lnum;
1908 int winheight; /* when TRUE limit to window height */
1909{
1910#endif
1911 int lines;
1912
1913 if (!wp->w_p_wrap)
1914 return 1;
1915
1916#ifdef FEAT_VERTSPLIT
1917 if (wp->w_width == 0)
1918 return 1;
1919#endif
1920
1921#ifdef FEAT_FOLDING
1922 /* A folded lines is handled just like an empty line. */
1923 /* NOTE: Caller must handle lines that are MAYBE folded. */
1924 if (lineFolded(wp, lnum) == TRUE)
1925 return 1;
1926#endif
1927
1928 lines = plines_win_nofold(wp, lnum);
1929 if (winheight > 0 && lines > wp->w_height)
1930 return (int)wp->w_height;
1931 return lines;
1932}
1933
1934/*
1935 * Return number of window lines physical line "lnum" will occupy in window
1936 * "wp". Does not care about folding, 'wrap' or 'diff'.
1937 */
1938 int
1939plines_win_nofold(wp, lnum)
1940 win_T *wp;
1941 linenr_T lnum;
1942{
1943 char_u *s;
1944 long col;
1945 int width;
1946
1947 s = ml_get_buf(wp->w_buffer, lnum, FALSE);
1948 if (*s == NUL) /* empty line */
1949 return 1;
1950 col = win_linetabsize(wp, s, (colnr_T)MAXCOL);
1951
1952 /*
1953 * If list mode is on, then the '$' at the end of the line may take up one
1954 * extra column.
1955 */
1956 if (wp->w_p_list && lcs_eol != NUL)
1957 col += 1;
1958
1959 /*
Bram Moolenaar64486672010-05-16 15:46:46 +02001960 * Add column offset for 'number', 'relativenumber' and 'foldcolumn'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 */
1962 width = W_WIDTH(wp) - win_col_off(wp);
1963 if (width <= 0)
1964 return 32000;
1965 if (col <= width)
1966 return 1;
1967 col -= width;
1968 width += win_col_off2(wp);
1969 return (col + (width - 1)) / width + 1;
1970}
1971
1972/*
1973 * Like plines_win(), but only reports the number of physical screen lines
1974 * used from the start of the line to the given column number.
1975 */
1976 int
1977plines_win_col(wp, lnum, column)
1978 win_T *wp;
1979 linenr_T lnum;
1980 long column;
1981{
1982 long col;
1983 char_u *s;
1984 int lines = 0;
1985 int width;
1986
1987#ifdef FEAT_DIFF
1988 /* Check for filler lines above this buffer line. When folded the result
1989 * is one line anyway. */
1990 lines = diff_check_fill(wp, lnum);
1991#endif
1992
1993 if (!wp->w_p_wrap)
1994 return lines + 1;
1995
1996#ifdef FEAT_VERTSPLIT
1997 if (wp->w_width == 0)
1998 return lines + 1;
1999#endif
2000
2001 s = ml_get_buf(wp->w_buffer, lnum, FALSE);
2002
2003 col = 0;
2004 while (*s != NUL && --column >= 0)
2005 {
2006 col += win_lbr_chartabsize(wp, s, (colnr_T)col, NULL);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002007 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008 }
2009
2010 /*
2011 * If *s is a TAB, and the TAB is not displayed as ^I, and we're not in
2012 * INSERT mode, then col must be adjusted so that it represents the last
2013 * screen position of the TAB. This only fixes an error when the TAB wraps
2014 * from one screen line to the next (when 'columns' is not a multiple of
2015 * 'ts') -- webb.
2016 */
2017 if (*s == TAB && (State & NORMAL) && (!wp->w_p_list || lcs_tab1))
2018 col += win_lbr_chartabsize(wp, s, (colnr_T)col, NULL) - 1;
2019
2020 /*
Bram Moolenaar64486672010-05-16 15:46:46 +02002021 * Add column offset for 'number', 'relativenumber', 'foldcolumn', etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022 */
2023 width = W_WIDTH(wp) - win_col_off(wp);
Bram Moolenaar26470632006-10-24 19:12:40 +00002024 if (width <= 0)
2025 return 9999;
2026
2027 lines += 1;
2028 if (col > width)
2029 lines += (col - width) / (width + win_col_off2(wp)) + 1;
2030 return lines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031}
2032
2033 int
2034plines_m_win(wp, first, last)
2035 win_T *wp;
2036 linenr_T first, last;
2037{
2038 int count = 0;
2039
2040 while (first <= last)
2041 {
2042#ifdef FEAT_FOLDING
2043 int x;
2044
2045 /* Check if there are any really folded lines, but also included lines
2046 * that are maybe folded. */
2047 x = foldedCount(wp, first, NULL);
2048 if (x > 0)
2049 {
2050 ++count; /* count 1 for "+-- folded" line */
2051 first += x;
2052 }
2053 else
2054#endif
2055 {
2056#ifdef FEAT_DIFF
2057 if (first == wp->w_topline)
2058 count += plines_win_nofill(wp, first, TRUE) + wp->w_topfill;
2059 else
2060#endif
2061 count += plines_win(wp, first, TRUE);
2062 ++first;
2063 }
2064 }
2065 return (count);
2066}
2067
2068#if defined(FEAT_VREPLACE) || defined(FEAT_INS_EXPAND) || defined(PROTO)
2069/*
2070 * Insert string "p" at the cursor position. Stops at a NUL byte.
2071 * Handles Replace mode and multi-byte characters.
2072 */
2073 void
2074ins_bytes(p)
2075 char_u *p;
2076{
2077 ins_bytes_len(p, (int)STRLEN(p));
2078}
2079#endif
2080
2081#if defined(FEAT_VREPLACE) || defined(FEAT_INS_EXPAND) \
2082 || defined(FEAT_COMMENTS) || defined(FEAT_MBYTE) || defined(PROTO)
2083/*
2084 * Insert string "p" with length "len" at the cursor position.
2085 * Handles Replace mode and multi-byte characters.
2086 */
2087 void
2088ins_bytes_len(p, len)
2089 char_u *p;
2090 int len;
2091{
2092 int i;
2093# ifdef FEAT_MBYTE
2094 int n;
2095
Bram Moolenaar176dd1e2008-06-21 14:30:28 +00002096 if (has_mbyte)
2097 for (i = 0; i < len; i += n)
2098 {
2099 if (enc_utf8)
2100 /* avoid reading past p[len] */
2101 n = utfc_ptr2len_len(p + i, len - i);
2102 else
2103 n = (*mb_ptr2len)(p + i);
2104 ins_char_bytes(p + i, n);
2105 }
2106 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107# endif
Bram Moolenaar176dd1e2008-06-21 14:30:28 +00002108 for (i = 0; i < len; ++i)
2109 ins_char(p[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110}
2111#endif
2112
2113/*
2114 * Insert or replace a single character at the cursor position.
2115 * When in REPLACE or VREPLACE mode, replace any existing character.
2116 * Caller must have prepared for undo.
2117 * For multi-byte characters we get the whole character, the caller must
2118 * convert bytes to a character.
2119 */
2120 void
2121ins_char(c)
2122 int c;
2123{
2124#if defined(FEAT_MBYTE) || defined(PROTO)
Bram Moolenaar9a920d82012-06-01 15:21:02 +02002125 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126 int n;
2127
2128 n = (*mb_char2bytes)(c, buf);
2129
2130 /* When "c" is 0x100, 0x200, etc. we don't want to insert a NUL byte.
2131 * Happens for CTRL-Vu9900. */
2132 if (buf[0] == 0)
2133 buf[0] = '\n';
2134
2135 ins_char_bytes(buf, n);
2136}
2137
2138 void
2139ins_char_bytes(buf, charlen)
2140 char_u *buf;
2141 int charlen;
2142{
2143 int c = buf[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144#endif
2145 int newlen; /* nr of bytes inserted */
2146 int oldlen; /* nr of bytes deleted (0 when not replacing) */
2147 char_u *p;
2148 char_u *newp;
2149 char_u *oldp;
2150 int linelen; /* length of old line including NUL */
2151 colnr_T col;
2152 linenr_T lnum = curwin->w_cursor.lnum;
2153 int i;
2154
2155#ifdef FEAT_VIRTUALEDIT
2156 /* Break tabs if needed. */
2157 if (virtual_active() && curwin->w_cursor.coladd > 0)
2158 coladvance_force(getviscol());
2159#endif
2160
2161 col = curwin->w_cursor.col;
2162 oldp = ml_get(lnum);
2163 linelen = (int)STRLEN(oldp) + 1;
2164
2165 /* The lengths default to the values for when not replacing. */
2166 oldlen = 0;
2167#ifdef FEAT_MBYTE
2168 newlen = charlen;
2169#else
2170 newlen = 1;
2171#endif
2172
2173 if (State & REPLACE_FLAG)
2174 {
2175#ifdef FEAT_VREPLACE
2176 if (State & VREPLACE_FLAG)
2177 {
2178 colnr_T new_vcol = 0; /* init for GCC */
2179 colnr_T vcol;
2180 int old_list;
2181#ifndef FEAT_MBYTE
2182 char_u buf[2];
2183#endif
2184
2185 /*
2186 * Disable 'list' temporarily, unless 'cpo' contains the 'L' flag.
2187 * Returns the old value of list, so when finished,
2188 * curwin->w_p_list should be set back to this.
2189 */
2190 old_list = curwin->w_p_list;
2191 if (old_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
2192 curwin->w_p_list = FALSE;
2193
2194 /*
2195 * In virtual replace mode each character may replace one or more
2196 * characters (zero if it's a TAB). Count the number of bytes to
2197 * be deleted to make room for the new character, counting screen
2198 * cells. May result in adding spaces to fill a gap.
2199 */
2200 getvcol(curwin, &curwin->w_cursor, NULL, &vcol, NULL);
2201#ifndef FEAT_MBYTE
2202 buf[0] = c;
2203 buf[1] = NUL;
2204#endif
2205 new_vcol = vcol + chartabsize(buf, vcol);
2206 while (oldp[col + oldlen] != NUL && vcol < new_vcol)
2207 {
2208 vcol += chartabsize(oldp + col + oldlen, vcol);
2209 /* Don't need to remove a TAB that takes us to the right
2210 * position. */
2211 if (vcol > new_vcol && oldp[col + oldlen] == TAB)
2212 break;
2213#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002214 oldlen += (*mb_ptr2len)(oldp + col + oldlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215#else
2216 ++oldlen;
2217#endif
2218 /* Deleted a bit too much, insert spaces. */
2219 if (vcol > new_vcol)
2220 newlen += vcol - new_vcol;
2221 }
2222 curwin->w_p_list = old_list;
2223 }
2224 else
2225#endif
2226 if (oldp[col] != NUL)
2227 {
2228 /* normal replace */
2229#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002230 oldlen = (*mb_ptr2len)(oldp + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231#else
2232 oldlen = 1;
2233#endif
2234 }
2235
2236
2237 /* Push the replaced bytes onto the replace stack, so that they can be
2238 * put back when BS is used. The bytes of a multi-byte character are
2239 * done the other way around, so that the first byte is popped off
2240 * first (it tells the byte length of the character). */
2241 replace_push(NUL);
2242 for (i = 0; i < oldlen; ++i)
2243 {
2244#ifdef FEAT_MBYTE
Bram Moolenaar2c994e82008-01-02 16:49:36 +00002245 if (has_mbyte)
2246 i += replace_push_mb(oldp + col + i) - 1;
2247 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248#endif
Bram Moolenaar2c994e82008-01-02 16:49:36 +00002249 replace_push(oldp[col + i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 }
2251 }
2252
2253 newp = alloc_check((unsigned)(linelen + newlen - oldlen));
2254 if (newp == NULL)
2255 return;
2256
2257 /* Copy bytes before the cursor. */
2258 if (col > 0)
2259 mch_memmove(newp, oldp, (size_t)col);
2260
2261 /* Copy bytes after the changed character(s). */
2262 p = newp + col;
2263 mch_memmove(p + newlen, oldp + col + oldlen,
2264 (size_t)(linelen - col - oldlen));
2265
2266 /* Insert or overwrite the new character. */
2267#ifdef FEAT_MBYTE
2268 mch_memmove(p, buf, charlen);
2269 i = charlen;
2270#else
2271 *p = c;
2272 i = 1;
2273#endif
2274
2275 /* Fill with spaces when necessary. */
2276 while (i < newlen)
2277 p[i++] = ' ';
2278
2279 /* Replace the line in the buffer. */
2280 ml_replace(lnum, newp, FALSE);
2281
2282 /* mark the buffer as changed and prepare for displaying */
2283 changed_bytes(lnum, col);
2284
2285 /*
2286 * If we're in Insert or Replace mode and 'showmatch' is set, then briefly
2287 * show the match for right parens and braces.
2288 */
2289 if (p_sm && (State & INSERT)
2290 && msg_silent == 0
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002291#ifdef FEAT_INS_EXPAND
2292 && !ins_compl_active()
2293#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294 )
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002295 {
2296#ifdef FEAT_MBYTE
2297 if (has_mbyte)
2298 showmatch(mb_ptr2char(buf));
2299 else
2300#endif
2301 showmatch(c);
2302 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303
2304#ifdef FEAT_RIGHTLEFT
2305 if (!p_ri || (State & REPLACE_FLAG))
2306#endif
2307 {
2308 /* Normal insert: move cursor right */
2309#ifdef FEAT_MBYTE
2310 curwin->w_cursor.col += charlen;
2311#else
2312 ++curwin->w_cursor.col;
2313#endif
2314 }
2315 /*
2316 * TODO: should try to update w_row here, to avoid recomputing it later.
2317 */
2318}
2319
2320/*
2321 * Insert a string at the cursor position.
2322 * Note: Does NOT handle Replace mode.
2323 * Caller must have prepared for undo.
2324 */
2325 void
2326ins_str(s)
2327 char_u *s;
2328{
2329 char_u *oldp, *newp;
2330 int newlen = (int)STRLEN(s);
2331 int oldlen;
2332 colnr_T col;
2333 linenr_T lnum = curwin->w_cursor.lnum;
2334
2335#ifdef FEAT_VIRTUALEDIT
2336 if (virtual_active() && curwin->w_cursor.coladd > 0)
2337 coladvance_force(getviscol());
2338#endif
2339
2340 col = curwin->w_cursor.col;
2341 oldp = ml_get(lnum);
2342 oldlen = (int)STRLEN(oldp);
2343
2344 newp = alloc_check((unsigned)(oldlen + newlen + 1));
2345 if (newp == NULL)
2346 return;
2347 if (col > 0)
2348 mch_memmove(newp, oldp, (size_t)col);
2349 mch_memmove(newp + col, s, (size_t)newlen);
2350 mch_memmove(newp + col + newlen, oldp + col, (size_t)(oldlen - col + 1));
2351 ml_replace(lnum, newp, FALSE);
2352 changed_bytes(lnum, col);
2353 curwin->w_cursor.col += newlen;
2354}
2355
2356/*
2357 * Delete one character under the cursor.
2358 * If "fixpos" is TRUE, don't leave the cursor on the NUL after the line.
2359 * Caller must have prepared for undo.
2360 *
2361 * return FAIL for failure, OK otherwise
2362 */
2363 int
2364del_char(fixpos)
2365 int fixpos;
2366{
2367#ifdef FEAT_MBYTE
2368 if (has_mbyte)
2369 {
2370 /* Make sure the cursor is at the start of a character. */
2371 mb_adjust_cursor();
2372 if (*ml_get_cursor() == NUL)
2373 return FAIL;
2374 return del_chars(1L, fixpos);
2375 }
2376#endif
Bram Moolenaare3226be2005-12-18 22:10:00 +00002377 return del_bytes(1L, fixpos, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378}
2379
2380#if defined(FEAT_MBYTE) || defined(PROTO)
2381/*
2382 * Like del_bytes(), but delete characters instead of bytes.
2383 */
2384 int
2385del_chars(count, fixpos)
2386 long count;
2387 int fixpos;
2388{
2389 long bytes = 0;
2390 long i;
2391 char_u *p;
2392 int l;
2393
2394 p = ml_get_cursor();
2395 for (i = 0; i < count && *p != NUL; ++i)
2396 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002397 l = (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 bytes += l;
2399 p += l;
2400 }
Bram Moolenaare3226be2005-12-18 22:10:00 +00002401 return del_bytes(bytes, fixpos, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402}
2403#endif
2404
2405/*
2406 * Delete "count" bytes under the cursor.
2407 * If "fixpos" is TRUE, don't leave the cursor on the NUL after the line.
2408 * Caller must have prepared for undo.
2409 *
2410 * return FAIL for failure, OK otherwise
2411 */
2412 int
Bram Moolenaarca003e12006-03-17 23:19:38 +00002413del_bytes(count, fixpos_arg, use_delcombine)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 long count;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002415 int fixpos_arg;
Bram Moolenaar78a15312009-05-15 19:33:18 +00002416 int use_delcombine UNUSED; /* 'delcombine' option applies */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417{
2418 char_u *oldp, *newp;
2419 colnr_T oldlen;
2420 linenr_T lnum = curwin->w_cursor.lnum;
2421 colnr_T col = curwin->w_cursor.col;
2422 int was_alloced;
2423 long movelen;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002424 int fixpos = fixpos_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425
2426 oldp = ml_get(lnum);
2427 oldlen = (int)STRLEN(oldp);
2428
2429 /*
2430 * Can't do anything when the cursor is on the NUL after the line.
2431 */
2432 if (col >= oldlen)
2433 return FAIL;
2434
2435#ifdef FEAT_MBYTE
2436 /* If 'delcombine' is set and deleting (less than) one character, only
2437 * delete the last combining character. */
Bram Moolenaare3226be2005-12-18 22:10:00 +00002438 if (p_deco && use_delcombine && enc_utf8
2439 && utfc_ptr2len(oldp + col) >= count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002441 int cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 int n;
2443
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002444 (void)utfc_ptr2char(oldp + col, cc);
2445 if (cc[0] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446 {
2447 /* Find the last composing char, there can be several. */
2448 n = col;
2449 do
2450 {
2451 col = n;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002452 count = utf_ptr2len(oldp + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 n += count;
2454 } while (UTF_COMPOSINGLIKE(oldp + col, oldp + n));
2455 fixpos = 0;
2456 }
2457 }
2458#endif
2459
2460 /*
2461 * When count is too big, reduce it.
2462 */
2463 movelen = (long)oldlen - (long)col - count + 1; /* includes trailing NUL */
2464 if (movelen <= 1)
2465 {
2466 /*
2467 * If we just took off the last character of a non-blank line, and
Bram Moolenaarca003e12006-03-17 23:19:38 +00002468 * fixpos is TRUE, we don't want to end up positioned at the NUL,
2469 * unless "restart_edit" is set or 'virtualedit' contains "onemore".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 */
Bram Moolenaarca003e12006-03-17 23:19:38 +00002471 if (col > 0 && fixpos && restart_edit == 0
2472#ifdef FEAT_VIRTUALEDIT
2473 && (ve_flags & VE_ONEMORE) == 0
2474#endif
2475 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476 {
2477 --curwin->w_cursor.col;
2478#ifdef FEAT_VIRTUALEDIT
2479 curwin->w_cursor.coladd = 0;
2480#endif
2481#ifdef FEAT_MBYTE
2482 if (has_mbyte)
2483 curwin->w_cursor.col -=
2484 (*mb_head_off)(oldp, oldp + curwin->w_cursor.col);
2485#endif
2486 }
2487 count = oldlen - col;
2488 movelen = 1;
2489 }
2490
2491 /*
2492 * If the old line has been allocated the deletion can be done in the
2493 * existing line. Otherwise a new line has to be allocated
Bram Moolenaare21877a2008-02-13 09:58:14 +00002494 * Can't do this when using Netbeans, because we would need to invoke
2495 * netbeans_removed(), which deallocates the line. Let ml_replace() take
Bram Moolenaar1a509df2010-08-01 17:59:57 +02002496 * care of notifying Netbeans.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002499 if (netbeans_active())
Bram Moolenaare21877a2008-02-13 09:58:14 +00002500 was_alloced = FALSE;
2501 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502#endif
Bram Moolenaare21877a2008-02-13 09:58:14 +00002503 was_alloced = ml_line_alloced(); /* check if oldp was allocated */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 if (was_alloced)
2505 newp = oldp; /* use same allocated memory */
2506 else
2507 { /* need to allocate a new line */
2508 newp = alloc((unsigned)(oldlen + 1 - count));
2509 if (newp == NULL)
2510 return FAIL;
2511 mch_memmove(newp, oldp, (size_t)col);
2512 }
2513 mch_memmove(newp + col, oldp + col + count, (size_t)movelen);
2514 if (!was_alloced)
2515 ml_replace(lnum, newp, FALSE);
2516
2517 /* mark the buffer as changed and prepare for displaying */
2518 changed_bytes(lnum, curwin->w_cursor.col);
2519
2520 return OK;
2521}
2522
2523/*
2524 * Delete from cursor to end of line.
2525 * Caller must have prepared for undo.
2526 *
2527 * return FAIL for failure, OK otherwise
2528 */
2529 int
2530truncate_line(fixpos)
2531 int fixpos; /* if TRUE fix the cursor position when done */
2532{
2533 char_u *newp;
2534 linenr_T lnum = curwin->w_cursor.lnum;
2535 colnr_T col = curwin->w_cursor.col;
2536
2537 if (col == 0)
2538 newp = vim_strsave((char_u *)"");
2539 else
2540 newp = vim_strnsave(ml_get(lnum), col);
2541
2542 if (newp == NULL)
2543 return FAIL;
2544
2545 ml_replace(lnum, newp, FALSE);
2546
2547 /* mark the buffer as changed and prepare for displaying */
2548 changed_bytes(lnum, curwin->w_cursor.col);
2549
2550 /*
2551 * If "fixpos" is TRUE we don't want to end up positioned at the NUL.
2552 */
2553 if (fixpos && curwin->w_cursor.col > 0)
2554 --curwin->w_cursor.col;
2555
2556 return OK;
2557}
2558
2559/*
2560 * Delete "nlines" lines at the cursor.
2561 * Saves the lines for undo first if "undo" is TRUE.
2562 */
2563 void
2564del_lines(nlines, undo)
2565 long nlines; /* number of lines to delete */
2566 int undo; /* if TRUE, prepare for undo */
2567{
2568 long n;
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002569 linenr_T first = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570
2571 if (nlines <= 0)
2572 return;
2573
2574 /* save the deleted lines for undo */
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002575 if (undo && u_savedel(first, nlines) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 return;
2577
2578 for (n = 0; n < nlines; )
2579 {
2580 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
2581 break;
2582
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002583 ml_delete(first, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 ++n;
2585
2586 /* If we delete the last line in the file, stop */
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002587 if (first > curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 break;
2589 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002591 /* Correct the cursor position before calling deleted_lines_mark(), it may
2592 * trigger a callback to display the cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593 curwin->w_cursor.col = 0;
2594 check_cursor_lnum();
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002595
2596 /* adjust marks, mark the buffer as changed and prepare for displaying */
2597 deleted_lines_mark(first, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598}
2599
2600 int
2601gchar_pos(pos)
2602 pos_T *pos;
2603{
2604 char_u *ptr = ml_get_pos(pos);
2605
2606#ifdef FEAT_MBYTE
2607 if (has_mbyte)
2608 return (*mb_ptr2char)(ptr);
2609#endif
2610 return (int)*ptr;
2611}
2612
2613 int
2614gchar_cursor()
2615{
2616#ifdef FEAT_MBYTE
2617 if (has_mbyte)
2618 return (*mb_ptr2char)(ml_get_cursor());
2619#endif
2620 return (int)*ml_get_cursor();
2621}
2622
2623/*
2624 * Write a character at the current cursor position.
2625 * It is directly written into the block.
2626 */
2627 void
2628pchar_cursor(c)
2629 int c;
2630{
2631 *(ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE)
2632 + curwin->w_cursor.col) = c;
2633}
2634
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635/*
2636 * When extra == 0: Return TRUE if the cursor is before or on the first
2637 * non-blank in the line.
2638 * When extra == 1: Return TRUE if the cursor is before the first non-blank in
2639 * the line.
2640 */
2641 int
2642inindent(extra)
2643 int extra;
2644{
2645 char_u *ptr;
2646 colnr_T col;
2647
2648 for (col = 0, ptr = ml_get_curline(); vim_iswhite(*ptr); ++col)
2649 ++ptr;
2650 if (col >= curwin->w_cursor.col + extra)
2651 return TRUE;
2652 else
2653 return FALSE;
2654}
2655
2656/*
2657 * Skip to next part of an option argument: Skip space and comma.
2658 */
2659 char_u *
2660skip_to_option_part(p)
2661 char_u *p;
2662{
2663 if (*p == ',')
2664 ++p;
2665 while (*p == ' ')
2666 ++p;
2667 return p;
2668}
2669
2670/*
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002671 * Call this function when something in the current buffer is changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 *
2673 * Most often called through changed_bytes() and changed_lines(), which also
2674 * mark the area of the display to be redrawn.
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002675 *
2676 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 */
2678 void
2679changed()
2680{
2681#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2682 /* The text of the preediting area is inserted, but this doesn't
2683 * mean a change of the buffer yet. That is delayed until the
2684 * text is committed. (this means preedit becomes empty) */
2685 if (im_is_preediting() && !xim_changed_while_preediting)
2686 return;
2687 xim_changed_while_preediting = FALSE;
2688#endif
2689
2690 if (!curbuf->b_changed)
2691 {
2692 int save_msg_scroll = msg_scroll;
2693
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002694 /* Give a warning about changing a read-only file. This may also
2695 * check-out the file, thus change "curbuf"! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696 change_warning(0);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002697
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 /* Create a swap file if that is wanted.
2699 * Don't do this for "nofile" and "nowrite" buffer types. */
2700 if (curbuf->b_may_swap
2701#ifdef FEAT_QUICKFIX
2702 && !bt_dontwrite(curbuf)
2703#endif
2704 )
2705 {
2706 ml_open_file(curbuf);
2707
2708 /* The ml_open_file() can cause an ATTENTION message.
2709 * Wait two seconds, to make sure the user reads this unexpected
2710 * message. Since we could be anywhere, call wait_return() now,
2711 * and don't let the emsg() set msg_scroll. */
2712 if (need_wait_return && emsg_silent == 0)
2713 {
2714 out_flush();
2715 ui_delay(2000L, TRUE);
2716 wait_return(TRUE);
2717 msg_scroll = save_msg_scroll;
2718 }
2719 }
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02002720 changed_int();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721 }
2722 ++curbuf->b_changedtick;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723}
2724
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02002725/*
2726 * Internal part of changed(), no user interaction.
2727 */
2728 void
2729changed_int()
2730{
2731 curbuf->b_changed = TRUE;
2732 ml_setflags(curbuf);
2733#ifdef FEAT_WINDOWS
2734 check_status(curbuf);
2735 redraw_tabline = TRUE;
2736#endif
2737#ifdef FEAT_TITLE
2738 need_maketitle = TRUE; /* set window title later */
2739#endif
2740}
2741
Bram Moolenaardba8a912005-04-24 22:08:39 +00002742static void changedOneline __ARGS((buf_T *buf, linenr_T lnum));
2743static void changed_lines_buf __ARGS((buf_T *buf, linenr_T lnum, linenr_T lnume, long xtra));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744static void changed_common __ARGS((linenr_T lnum, colnr_T col, linenr_T lnume, long xtra));
2745
2746/*
2747 * Changed bytes within a single line for the current buffer.
2748 * - marks the windows on this buffer to be redisplayed
2749 * - marks the buffer changed by calling changed()
2750 * - invalidates cached values
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002751 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752 */
2753 void
2754changed_bytes(lnum, col)
2755 linenr_T lnum;
2756 colnr_T col;
2757{
Bram Moolenaardba8a912005-04-24 22:08:39 +00002758 changedOneline(curbuf, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 changed_common(lnum, col, lnum + 1, 0L);
Bram Moolenaardba8a912005-04-24 22:08:39 +00002760
2761#ifdef FEAT_DIFF
2762 /* Diff highlighting in other diff windows may need to be updated too. */
2763 if (curwin->w_p_diff)
2764 {
2765 win_T *wp;
2766 linenr_T wlnum;
2767
2768 for (wp = firstwin; wp != NULL; wp = wp->w_next)
2769 if (wp->w_p_diff && wp != curwin)
2770 {
2771 redraw_win_later(wp, VALID);
2772 wlnum = diff_lnum_win(lnum, wp);
2773 if (wlnum > 0)
2774 changedOneline(wp->w_buffer, wlnum);
2775 }
2776 }
2777#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778}
2779
2780 static void
Bram Moolenaardba8a912005-04-24 22:08:39 +00002781changedOneline(buf, lnum)
2782 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 linenr_T lnum;
2784{
Bram Moolenaardba8a912005-04-24 22:08:39 +00002785 if (buf->b_mod_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786 {
2787 /* find the maximum area that must be redisplayed */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002788 if (lnum < buf->b_mod_top)
2789 buf->b_mod_top = lnum;
2790 else if (lnum >= buf->b_mod_bot)
2791 buf->b_mod_bot = lnum + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792 }
2793 else
2794 {
2795 /* set the area that must be redisplayed to one line */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002796 buf->b_mod_set = TRUE;
2797 buf->b_mod_top = lnum;
2798 buf->b_mod_bot = lnum + 1;
2799 buf->b_mod_xlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 }
2801}
2802
2803/*
2804 * Appended "count" lines below line "lnum" in the current buffer.
2805 * Must be called AFTER the change and after mark_adjust().
2806 * Takes care of marking the buffer to be redrawn and sets the changed flag.
2807 */
2808 void
2809appended_lines(lnum, count)
2810 linenr_T lnum;
2811 long count;
2812{
2813 changed_lines(lnum + 1, 0, lnum + 1, count);
2814}
2815
2816/*
2817 * Like appended_lines(), but adjust marks first.
2818 */
2819 void
2820appended_lines_mark(lnum, count)
2821 linenr_T lnum;
2822 long count;
2823{
2824 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, count, 0L);
2825 changed_lines(lnum + 1, 0, lnum + 1, count);
2826}
2827
2828/*
2829 * Deleted "count" lines at line "lnum" in the current buffer.
2830 * Must be called AFTER the change and after mark_adjust().
2831 * Takes care of marking the buffer to be redrawn and sets the changed flag.
2832 */
2833 void
2834deleted_lines(lnum, count)
2835 linenr_T lnum;
2836 long count;
2837{
2838 changed_lines(lnum, 0, lnum + count, -count);
2839}
2840
2841/*
2842 * Like deleted_lines(), but adjust marks first.
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00002843 * Make sure the cursor is on a valid line before calling, a GUI callback may
2844 * be triggered to display the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845 */
2846 void
2847deleted_lines_mark(lnum, count)
2848 linenr_T lnum;
2849 long count;
2850{
2851 mark_adjust(lnum, (linenr_T)(lnum + count - 1), (long)MAXLNUM, -count);
2852 changed_lines(lnum, 0, lnum + count, -count);
2853}
2854
2855/*
2856 * Changed lines for the current buffer.
2857 * Must be called AFTER the change and after mark_adjust().
2858 * - mark the buffer changed by calling changed()
2859 * - mark the windows on this buffer to be redisplayed
2860 * - invalidate cached values
2861 * "lnum" is the first line that needs displaying, "lnume" the first line
2862 * below the changed lines (BEFORE the change).
2863 * When only inserting lines, "lnum" and "lnume" are equal.
2864 * Takes care of calling changed() and updating b_mod_*.
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002865 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 */
2867 void
2868changed_lines(lnum, col, lnume, xtra)
2869 linenr_T lnum; /* first line with change */
2870 colnr_T col; /* column in first line with change */
2871 linenr_T lnume; /* line below last changed line */
2872 long xtra; /* number of extra lines (negative when deleting) */
2873{
Bram Moolenaardba8a912005-04-24 22:08:39 +00002874 changed_lines_buf(curbuf, lnum, lnume, xtra);
2875
2876#ifdef FEAT_DIFF
2877 if (xtra == 0 && curwin->w_p_diff)
2878 {
2879 /* When the number of lines doesn't change then mark_adjust() isn't
2880 * called and other diff buffers still need to be marked for
2881 * displaying. */
2882 win_T *wp;
2883 linenr_T wlnum;
2884
2885 for (wp = firstwin; wp != NULL; wp = wp->w_next)
2886 if (wp->w_p_diff && wp != curwin)
2887 {
2888 redraw_win_later(wp, VALID);
2889 wlnum = diff_lnum_win(lnum, wp);
2890 if (wlnum > 0)
2891 changed_lines_buf(wp->w_buffer, wlnum,
2892 lnume - lnum + wlnum, 0L);
2893 }
2894 }
2895#endif
2896
2897 changed_common(lnum, col, lnume, xtra);
2898}
2899
2900 static void
2901changed_lines_buf(buf, lnum, lnume, xtra)
2902 buf_T *buf;
2903 linenr_T lnum; /* first line with change */
2904 linenr_T lnume; /* line below last changed line */
2905 long xtra; /* number of extra lines (negative when deleting) */
2906{
2907 if (buf->b_mod_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908 {
2909 /* find the maximum area that must be redisplayed */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002910 if (lnum < buf->b_mod_top)
2911 buf->b_mod_top = lnum;
2912 if (lnum < buf->b_mod_bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913 {
2914 /* adjust old bot position for xtra lines */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002915 buf->b_mod_bot += xtra;
2916 if (buf->b_mod_bot < lnum)
2917 buf->b_mod_bot = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918 }
Bram Moolenaardba8a912005-04-24 22:08:39 +00002919 if (lnume + xtra > buf->b_mod_bot)
2920 buf->b_mod_bot = lnume + xtra;
2921 buf->b_mod_xlines += xtra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922 }
2923 else
2924 {
2925 /* set the area that must be redisplayed */
Bram Moolenaardba8a912005-04-24 22:08:39 +00002926 buf->b_mod_set = TRUE;
2927 buf->b_mod_top = lnum;
2928 buf->b_mod_bot = lnume + xtra;
2929 buf->b_mod_xlines = xtra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931}
2932
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002933/*
2934 * Common code for when a change is was made.
2935 * See changed_lines() for the arguments.
2936 * Careful: may trigger autocommands that reload the buffer.
2937 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002938 static void
2939changed_common(lnum, col, lnume, xtra)
2940 linenr_T lnum;
2941 colnr_T col;
2942 linenr_T lnume;
2943 long xtra;
2944{
2945 win_T *wp;
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00002946#ifdef FEAT_WINDOWS
2947 tabpage_T *tp;
2948#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949 int i;
2950#ifdef FEAT_JUMPLIST
2951 int cols;
2952 pos_T *p;
2953 int add;
2954#endif
2955
2956 /* mark the buffer as modified */
2957 changed();
2958
2959 /* set the '. mark */
2960 if (!cmdmod.keepjumps)
2961 {
2962 curbuf->b_last_change.lnum = lnum;
2963 curbuf->b_last_change.col = col;
2964
2965#ifdef FEAT_JUMPLIST
2966 /* Create a new entry if a new undo-able change was started or we
2967 * don't have an entry yet. */
2968 if (curbuf->b_new_change || curbuf->b_changelistlen == 0)
2969 {
2970 if (curbuf->b_changelistlen == 0)
2971 add = TRUE;
2972 else
2973 {
2974 /* Don't create a new entry when the line number is the same
2975 * as the last one and the column is not too far away. Avoids
2976 * creating many entries for typing "xxxxx". */
2977 p = &curbuf->b_changelist[curbuf->b_changelistlen - 1];
2978 if (p->lnum != lnum)
2979 add = TRUE;
2980 else
2981 {
2982 cols = comp_textwidth(FALSE);
2983 if (cols == 0)
2984 cols = 79;
2985 add = (p->col + cols < col || col + cols < p->col);
2986 }
2987 }
2988 if (add)
2989 {
2990 /* This is the first of a new sequence of undo-able changes
2991 * and it's at some distance of the last change. Use a new
2992 * position in the changelist. */
2993 curbuf->b_new_change = FALSE;
2994
2995 if (curbuf->b_changelistlen == JUMPLISTSIZE)
2996 {
2997 /* changelist is full: remove oldest entry */
2998 curbuf->b_changelistlen = JUMPLISTSIZE - 1;
2999 mch_memmove(curbuf->b_changelist, curbuf->b_changelist + 1,
3000 sizeof(pos_T) * (JUMPLISTSIZE - 1));
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00003001 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002 {
3003 /* Correct position in changelist for other windows on
3004 * this buffer. */
3005 if (wp->w_buffer == curbuf && wp->w_changelistidx > 0)
3006 --wp->w_changelistidx;
3007 }
3008 }
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00003009 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010 {
3011 /* For other windows, if the position in the changelist is
3012 * at the end it stays at the end. */
3013 if (wp->w_buffer == curbuf
3014 && wp->w_changelistidx == curbuf->b_changelistlen)
3015 ++wp->w_changelistidx;
3016 }
3017 ++curbuf->b_changelistlen;
3018 }
3019 }
3020 curbuf->b_changelist[curbuf->b_changelistlen - 1] =
3021 curbuf->b_last_change;
3022 /* The current window is always after the last change, so that "g,"
3023 * takes you back to it. */
3024 curwin->w_changelistidx = curbuf->b_changelistlen;
3025#endif
3026 }
3027
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00003028 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 {
3030 if (wp->w_buffer == curbuf)
3031 {
3032 /* Mark this window to be redrawn later. */
3033 if (wp->w_redr_type < VALID)
3034 wp->w_redr_type = VALID;
3035
3036 /* Check if a change in the buffer has invalidated the cached
3037 * values for the cursor. */
3038#ifdef FEAT_FOLDING
3039 /*
3040 * Update the folds for this window. Can't postpone this, because
3041 * a following operator might work on the whole fold: ">>dd".
3042 */
3043 foldUpdate(wp, lnum, lnume + xtra - 1);
3044
3045 /* The change may cause lines above or below the change to become
3046 * included in a fold. Set lnum/lnume to the first/last line that
3047 * might be displayed differently.
3048 * Set w_cline_folded here as an efficient way to update it when
3049 * inserting lines just above a closed fold. */
3050 i = hasFoldingWin(wp, lnum, &lnum, NULL, FALSE, NULL);
3051 if (wp->w_cursor.lnum == lnum)
3052 wp->w_cline_folded = i;
3053 i = hasFoldingWin(wp, lnume, NULL, &lnume, FALSE, NULL);
3054 if (wp->w_cursor.lnum == lnume)
3055 wp->w_cline_folded = i;
3056
3057 /* If the changed line is in a range of previously folded lines,
3058 * compare with the first line in that range. */
3059 if (wp->w_cursor.lnum <= lnum)
3060 {
3061 i = find_wl_entry(wp, lnum);
3062 if (i >= 0 && wp->w_cursor.lnum > wp->w_lines[i].wl_lnum)
3063 changed_line_abv_curs_win(wp);
3064 }
3065#endif
3066
3067 if (wp->w_cursor.lnum > lnum)
3068 changed_line_abv_curs_win(wp);
3069 else if (wp->w_cursor.lnum == lnum && wp->w_cursor.col >= col)
3070 changed_cline_bef_curs_win(wp);
3071 if (wp->w_botline >= lnum)
3072 {
3073 /* Assume that botline doesn't change (inserted lines make
3074 * other lines scroll down below botline). */
3075 approximate_botline_win(wp);
3076 }
3077
3078 /* Check if any w_lines[] entries have become invalid.
3079 * For entries below the change: Correct the lnums for
3080 * inserted/deleted lines. Makes it possible to stop displaying
3081 * after the change. */
3082 for (i = 0; i < wp->w_lines_valid; ++i)
3083 if (wp->w_lines[i].wl_valid)
3084 {
3085 if (wp->w_lines[i].wl_lnum >= lnum)
3086 {
3087 if (wp->w_lines[i].wl_lnum < lnume)
3088 {
3089 /* line included in change */
3090 wp->w_lines[i].wl_valid = FALSE;
3091 }
3092 else if (xtra != 0)
3093 {
3094 /* line below change */
3095 wp->w_lines[i].wl_lnum += xtra;
3096#ifdef FEAT_FOLDING
3097 wp->w_lines[i].wl_lastlnum += xtra;
3098#endif
3099 }
3100 }
3101#ifdef FEAT_FOLDING
3102 else if (wp->w_lines[i].wl_lastlnum >= lnum)
3103 {
3104 /* change somewhere inside this range of folded lines,
3105 * may need to be redrawn */
3106 wp->w_lines[i].wl_valid = FALSE;
3107 }
3108#endif
3109 }
Bram Moolenaar3234cc62009-11-03 17:47:12 +00003110
3111#ifdef FEAT_FOLDING
3112 /* Take care of side effects for setting w_topline when folds have
3113 * changed. Esp. when the buffer was changed in another window. */
3114 if (hasAnyFolding(wp))
3115 set_topline(wp, wp->w_topline);
3116#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117 }
3118 }
3119
3120 /* Call update_screen() later, which checks out what needs to be redrawn,
3121 * since it notices b_mod_set and then uses b_mod_*. */
3122 if (must_redraw < VALID)
3123 must_redraw = VALID;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003124
3125#ifdef FEAT_AUTOCMD
3126 /* when the cursor line is changed always trigger CursorMoved */
Bram Moolenaare163f1c2006-10-17 09:12:21 +00003127 if (lnum <= curwin->w_cursor.lnum
3128 && lnume + (xtra < 0 ? -xtra : xtra) > curwin->w_cursor.lnum)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003129 last_cursormoved.lnum = 0;
3130#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131}
3132
3133/*
3134 * unchanged() is called when the changed flag must be reset for buffer 'buf'
3135 */
3136 void
3137unchanged(buf, ff)
3138 buf_T *buf;
3139 int ff; /* also reset 'fileformat' */
3140{
Bram Moolenaar164c60f2011-01-22 00:11:50 +01003141 if (buf->b_changed || (ff && file_ff_differs(buf, FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142 {
3143 buf->b_changed = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003144 ml_setflags(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 if (ff)
3146 save_file_ff(buf);
3147#ifdef FEAT_WINDOWS
3148 check_status(buf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003149 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150#endif
3151#ifdef FEAT_TITLE
3152 need_maketitle = TRUE; /* set window title later */
3153#endif
3154 }
3155 ++buf->b_changedtick;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156#ifdef FEAT_NETBEANS_INTG
3157 netbeans_unmodified(buf);
3158#endif
3159}
3160
3161#if defined(FEAT_WINDOWS) || defined(PROTO)
3162/*
3163 * check_status: called when the status bars for the buffer 'buf'
3164 * need to be updated
3165 */
3166 void
3167check_status(buf)
3168 buf_T *buf;
3169{
3170 win_T *wp;
3171
3172 for (wp = firstwin; wp != NULL; wp = wp->w_next)
3173 if (wp->w_buffer == buf && wp->w_status_height)
3174 {
3175 wp->w_redr_status = TRUE;
3176 if (must_redraw < VALID)
3177 must_redraw = VALID;
3178 }
3179}
3180#endif
3181
3182/*
3183 * If the file is readonly, give a warning message with the first change.
3184 * Don't do this for autocommands.
3185 * Don't use emsg(), because it flushes the macro buffer.
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00003186 * If we have undone all changes b_changed will be FALSE, but "b_did_warn"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187 * will be TRUE.
Bram Moolenaarb0b50882010-07-07 18:26:28 +02003188 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 */
3190 void
3191change_warning(col)
3192 int col; /* column for message; non-zero when in insert
3193 mode and 'showmode' is on */
3194{
Bram Moolenaar496c5262009-03-18 14:42:00 +00003195 static char *w_readonly = N_("W10: Warning: Changing a readonly file");
3196
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 if (curbuf->b_did_warn == FALSE
3198 && curbufIsChanged() == 0
3199#ifdef FEAT_AUTOCMD
3200 && !autocmd_busy
3201#endif
3202 && curbuf->b_p_ro)
3203 {
3204#ifdef FEAT_AUTOCMD
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003205 ++curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206 apply_autocmds(EVENT_FILECHANGEDRO, NULL, NULL, FALSE, curbuf);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003207 --curbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 if (!curbuf->b_p_ro)
3209 return;
3210#endif
3211 /*
3212 * Do what msg() does, but with a column offset if the warning should
3213 * be after the mode message.
3214 */
3215 msg_start();
3216 if (msg_row == Rows - 1)
3217 msg_col = col;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00003218 msg_source(hl_attr(HLF_W));
Bram Moolenaar496c5262009-03-18 14:42:00 +00003219 MSG_PUTS_ATTR(_(w_readonly), hl_attr(HLF_W) | MSG_HIST);
3220#ifdef FEAT_EVAL
3221 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_readonly), -1);
3222#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 msg_clr_eos();
3224 (void)msg_end();
3225 if (msg_silent == 0 && !silent_mode)
3226 {
3227 out_flush();
3228 ui_delay(1000L, TRUE); /* give the user time to think about it */
3229 }
3230 curbuf->b_did_warn = TRUE;
3231 redraw_cmdline = FALSE; /* don't redraw and erase the message */
3232 if (msg_row < Rows - 1)
3233 showmode();
3234 }
3235}
3236
3237/*
3238 * Ask for a reply from the user, a 'y' or a 'n'.
3239 * No other characters are accepted, the message is repeated until a valid
3240 * reply is entered or CTRL-C is hit.
3241 * If direct is TRUE, don't use vgetc() but ui_inchar(), don't get characters
3242 * from any buffers but directly from the user.
3243 *
3244 * return the 'y' or 'n'
3245 */
3246 int
3247ask_yesno(str, direct)
3248 char_u *str;
3249 int direct;
3250{
3251 int r = ' ';
3252 int save_State = State;
3253
3254 if (exiting) /* put terminal in raw mode for this question */
3255 settmode(TMODE_RAW);
3256 ++no_wait_return;
3257#ifdef USE_ON_FLY_SCROLL
3258 dont_scroll = TRUE; /* disallow scrolling here */
3259#endif
3260 State = CONFIRM; /* mouse behaves like with :confirm */
3261#ifdef FEAT_MOUSE
3262 setmouse(); /* disables mouse for xterm */
3263#endif
3264 ++no_mapping;
3265 ++allow_keys; /* no mapping here, but recognize keys */
3266
3267 while (r != 'y' && r != 'n')
3268 {
3269 /* same highlighting as for wait_return */
3270 smsg_attr(hl_attr(HLF_R), (char_u *)"%s (y/n)?", str);
3271 if (direct)
3272 r = get_keystroke();
3273 else
Bram Moolenaar913626c2008-01-03 11:43:42 +00003274 r = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275 if (r == Ctrl_C || r == ESC)
3276 r = 'n';
3277 msg_putchar(r); /* show what you typed */
3278 out_flush();
3279 }
3280 --no_wait_return;
3281 State = save_State;
3282#ifdef FEAT_MOUSE
3283 setmouse();
3284#endif
3285 --no_mapping;
3286 --allow_keys;
3287
3288 return r;
3289}
3290
Bram Moolenaar2526ef22013-03-16 14:20:51 +01003291#if defined(FEAT_MOUSE) || defined(PROTO)
3292/*
3293 * Return TRUE if "c" is a mouse key.
3294 */
3295 int
3296is_mouse_key(c)
3297 int c;
3298{
3299 return c == K_LEFTMOUSE
3300 || c == K_LEFTMOUSE_NM
3301 || c == K_LEFTDRAG
3302 || c == K_LEFTRELEASE
3303 || c == K_LEFTRELEASE_NM
3304 || c == K_MIDDLEMOUSE
3305 || c == K_MIDDLEDRAG
3306 || c == K_MIDDLERELEASE
3307 || c == K_RIGHTMOUSE
3308 || c == K_RIGHTDRAG
3309 || c == K_RIGHTRELEASE
3310 || c == K_MOUSEDOWN
3311 || c == K_MOUSEUP
3312 || c == K_MOUSELEFT
3313 || c == K_MOUSERIGHT
3314 || c == K_X1MOUSE
3315 || c == K_X1DRAG
3316 || c == K_X1RELEASE
3317 || c == K_X2MOUSE
3318 || c == K_X2DRAG
3319 || c == K_X2RELEASE;
3320}
3321#endif
3322
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323/*
3324 * Get a key stroke directly from the user.
3325 * Ignores mouse clicks and scrollbar events, except a click for the left
3326 * button (used at the more prompt).
3327 * Doesn't use vgetc(), because it syncs undo and eats mapped characters.
3328 * Disadvantage: typeahead is ignored.
3329 * Translates the interrupt character for unix to ESC.
3330 */
3331 int
3332get_keystroke()
3333{
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003334 char_u *buf = NULL;
3335 int buflen = 150;
3336 int maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337 int len = 0;
3338 int n;
3339 int save_mapped_ctrl_c = mapped_ctrl_c;
Bram Moolenaar4395a712006-09-05 18:57:57 +00003340 int waited = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341
3342 mapped_ctrl_c = FALSE; /* mappings are not used here */
3343 for (;;)
3344 {
3345 cursor_on();
3346 out_flush();
3347
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003348 /* Leave some room for check_termcode() to insert a key code into (max
3349 * 5 chars plus NUL). And fix_input_buffer() can triple the number of
3350 * bytes. */
3351 maxlen = (buflen - 6 - len) / 3;
3352 if (buf == NULL)
3353 buf = alloc(buflen);
3354 else if (maxlen < 10)
3355 {
Bram Moolenaardc7e85e2012-06-20 12:40:08 +02003356 /* Need some more space. This might happen when receiving a long
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003357 * escape sequence. */
3358 buflen += 100;
3359 buf = vim_realloc(buf, buflen);
3360 maxlen = (buflen - 6 - len) / 3;
3361 }
3362 if (buf == NULL)
3363 {
3364 do_outofmem_msg((long_u)buflen);
3365 return ESC; /* panic! */
3366 }
3367
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368 /* First time: blocking wait. Second time: wait up to 100ms for a
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003369 * terminal code to complete. */
3370 n = ui_inchar(buf + len, maxlen, len == 0 ? -1L : 100L, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 if (n > 0)
3372 {
3373 /* Replace zero and CSI by a special key code. */
3374 n = fix_input_buffer(buf + len, n, FALSE);
3375 len += n;
Bram Moolenaar4395a712006-09-05 18:57:57 +00003376 waited = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377 }
Bram Moolenaar4395a712006-09-05 18:57:57 +00003378 else if (len > 0)
3379 ++waited; /* keep track of the waiting time */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380
Bram Moolenaar4395a712006-09-05 18:57:57 +00003381 /* Incomplete termcode and not timed out yet: get more characters */
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003382 if ((n = check_termcode(1, buf, buflen, &len)) < 0
Bram Moolenaar4395a712006-09-05 18:57:57 +00003383 && (!p_ttimeout || waited * 100L < (p_ttm < 0 ? p_tm : p_ttm)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 continue;
Bram Moolenaar4395a712006-09-05 18:57:57 +00003385
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003386 if (n == KEYLEN_REMOVED) /* key code removed */
Bram Moolenaar6eb634e2011-03-03 15:04:08 +01003387 {
Bram Moolenaarfd30cd42011-03-22 13:07:26 +01003388 if (must_redraw != 0 && !need_wait_return && (State & CMDLINE) == 0)
Bram Moolenaar6eb634e2011-03-03 15:04:08 +01003389 {
3390 /* Redrawing was postponed, do it now. */
3391 update_screen(0);
3392 setcursor(); /* put cursor back where it belongs */
3393 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003394 continue;
Bram Moolenaar6eb634e2011-03-03 15:04:08 +01003395 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003396 if (n > 0) /* found a termcode: adjust length */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397 len = n;
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003398 if (len == 0) /* nothing typed yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 continue;
3400
3401 /* Handle modifier and/or special key code. */
3402 n = buf[0];
3403 if (n == K_SPECIAL)
3404 {
3405 n = TO_SPECIAL(buf[1], buf[2]);
3406 if (buf[1] == KS_MODIFIER
3407 || n == K_IGNORE
Bram Moolenaar2526ef22013-03-16 14:20:51 +01003408 || (is_mouse_key(n) && n != K_LEFTMOUSE)
3409#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 || n == K_VER_SCROLLBAR
3411 || n == K_HOR_SCROLLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412#endif
3413 )
3414 {
3415 if (buf[1] == KS_MODIFIER)
3416 mod_mask = buf[2];
3417 len -= 3;
3418 if (len > 0)
3419 mch_memmove(buf, buf + 3, (size_t)len);
3420 continue;
3421 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00003422 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003423 }
3424#ifdef FEAT_MBYTE
3425 if (has_mbyte)
3426 {
3427 if (MB_BYTE2LEN(n) > len)
3428 continue; /* more bytes to get */
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003429 buf[len >= buflen ? buflen - 1 : len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 n = (*mb_ptr2char)(buf);
3431 }
3432#endif
3433#ifdef UNIX
3434 if (n == intr_char)
3435 n = ESC;
3436#endif
3437 break;
3438 }
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003439 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440
3441 mapped_ctrl_c = save_mapped_ctrl_c;
3442 return n;
3443}
3444
3445/*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003446 * Get a number from the user.
3447 * When "mouse_used" is not NULL allow using the mouse.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 */
3449 int
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003450get_number(colon, mouse_used)
3451 int colon; /* allow colon to abort */
3452 int *mouse_used;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453{
3454 int n = 0;
3455 int c;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00003456 int typed = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003458 if (mouse_used != NULL)
3459 *mouse_used = FALSE;
3460
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 /* When not printing messages, the user won't know what to type, return a
3462 * zero (as if CR was hit). */
3463 if (msg_silent != 0)
3464 return 0;
3465
3466#ifdef USE_ON_FLY_SCROLL
3467 dont_scroll = TRUE; /* disallow scrolling here */
3468#endif
3469 ++no_mapping;
3470 ++allow_keys; /* no mapping here, but recognize keys */
3471 for (;;)
3472 {
3473 windgoto(msg_row, msg_col);
3474 c = safe_vgetc();
3475 if (VIM_ISDIGIT(c))
3476 {
3477 n = n * 10 + c - '0';
3478 msg_putchar(c);
Bram Moolenaar3991dab2006-03-27 17:01:56 +00003479 ++typed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480 }
3481 else if (c == K_DEL || c == K_KDEL || c == K_BS || c == Ctrl_H)
3482 {
Bram Moolenaar3991dab2006-03-27 17:01:56 +00003483 if (typed > 0)
3484 {
3485 MSG_PUTS("\b \b");
3486 --typed;
3487 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 n /= 10;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489 }
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003490#ifdef FEAT_MOUSE
3491 else if (mouse_used != NULL && c == K_LEFTMOUSE)
3492 {
3493 *mouse_used = TRUE;
3494 n = mouse_row + 1;
3495 break;
3496 }
3497#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 else if (n == 0 && c == ':' && colon)
3499 {
3500 stuffcharReadbuff(':');
3501 if (!exmode_active)
3502 cmdline_row = msg_row;
3503 skip_redraw = TRUE; /* skip redraw once */
3504 do_redraw = FALSE;
3505 break;
3506 }
3507 else if (c == CAR || c == NL || c == Ctrl_C || c == ESC)
3508 break;
3509 }
3510 --no_mapping;
3511 --allow_keys;
3512 return n;
3513}
3514
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003515/*
3516 * Ask the user to enter a number.
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003517 * When "mouse_used" is not NULL allow using the mouse and in that case return
3518 * the line number.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003519 */
3520 int
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003521prompt_for_number(mouse_used)
3522 int *mouse_used;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003523{
3524 int i;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003525 int save_cmdline_row;
3526 int save_State;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003527
3528 /* When using ":silent" assume that <CR> was entered. */
Bram Moolenaar42eeac32005-06-29 22:40:58 +00003529 if (mouse_used != NULL)
Bram Moolenaard812df62008-11-09 12:46:09 +00003530 MSG_PUTS(_("Type number and <Enter> or click with mouse (empty cancels): "));
Bram Moolenaar42eeac32005-06-29 22:40:58 +00003531 else
Bram Moolenaard812df62008-11-09 12:46:09 +00003532 MSG_PUTS(_("Type number and <Enter> (empty cancels): "));
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003533
Bram Moolenaar203335e2006-09-03 14:35:42 +00003534 /* Set the state such that text can be selected/copied/pasted and we still
3535 * get mouse events. */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003536 save_cmdline_row = cmdline_row;
Bram Moolenaar203335e2006-09-03 14:35:42 +00003537 cmdline_row = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003538 save_State = State;
Bram Moolenaar203335e2006-09-03 14:35:42 +00003539 State = CMDLINE;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003540
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003541 i = get_number(TRUE, mouse_used);
3542 if (KeyTyped)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003543 {
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003544 /* don't call wait_return() now */
3545 /* msg_putchar('\n'); */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003546 cmdline_row = msg_row - 1;
3547 need_wait_return = FALSE;
3548 msg_didany = FALSE;
Bram Moolenaarb2450162009-07-22 09:04:20 +00003549 msg_didout = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003550 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003551 else
3552 cmdline_row = save_cmdline_row;
3553 State = save_State;
3554
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003555 return i;
3556}
3557
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 void
3559msgmore(n)
3560 long n;
3561{
3562 long pn;
3563
3564 if (global_busy /* no messages now, wait until global is finished */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 || !messaging()) /* 'lazyredraw' set, don't do messages now */
3566 return;
3567
Bram Moolenaar7df2d662005-01-25 22:18:08 +00003568 /* We don't want to overwrite another important message, but do overwrite
3569 * a previous "more lines" or "fewer lines" message, so that "5dd" and
3570 * then "put" reports the last action. */
3571 if (keep_msg != NULL && !keep_msg_more)
3572 return;
3573
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574 if (n > 0)
3575 pn = n;
3576 else
3577 pn = -n;
3578
3579 if (pn > p_report)
3580 {
3581 if (pn == 1)
3582 {
3583 if (n > 0)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003584 vim_strncpy(msg_buf, (char_u *)_("1 more line"),
3585 MSG_BUF_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586 else
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003587 vim_strncpy(msg_buf, (char_u *)_("1 line less"),
3588 MSG_BUF_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589 }
3590 else
3591 {
3592 if (n > 0)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003593 vim_snprintf((char *)msg_buf, MSG_BUF_LEN,
3594 _("%ld more lines"), pn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003595 else
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003596 vim_snprintf((char *)msg_buf, MSG_BUF_LEN,
3597 _("%ld fewer lines"), pn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 }
3599 if (got_int)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003600 vim_strcat(msg_buf, (char_u *)_(" (Interrupted)"), MSG_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601 if (msg(msg_buf))
3602 {
Bram Moolenaar238a5642006-02-21 22:12:05 +00003603 set_keep_msg(msg_buf, 0);
Bram Moolenaar7df2d662005-01-25 22:18:08 +00003604 keep_msg_more = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605 }
3606 }
3607}
3608
3609/*
3610 * flush map and typeahead buffers and give a warning for an error
3611 */
3612 void
3613beep_flush()
3614{
3615 if (emsg_silent == 0)
3616 {
3617 flush_buffers(FALSE);
3618 vim_beep();
3619 }
3620}
3621
3622/*
3623 * give a warning for an error
3624 */
3625 void
3626vim_beep()
3627{
3628 if (emsg_silent == 0)
3629 {
3630 if (p_vb
3631#ifdef FEAT_GUI
3632 /* While the GUI is starting up the termcap is set for the GUI
3633 * but the output still goes to a terminal. */
3634 && !(gui.in_use && gui.starting)
3635#endif
3636 )
3637 {
3638 out_str(T_VB);
3639 }
3640 else
3641 {
3642#ifdef MSDOS
3643 /*
3644 * The number of beeps outputted is reduced to avoid having to wait
3645 * for all the beeps to finish. This is only a problem on systems
3646 * where the beeps don't overlap.
3647 */
3648 if (beep_count == 0 || beep_count == 10)
3649 {
3650 out_char(BELL);
3651 beep_count = 1;
3652 }
3653 else
3654 ++beep_count;
3655#else
3656 out_char(BELL);
3657#endif
3658 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003659
3660 /* When 'verbose' is set and we are sourcing a script or executing a
3661 * function give the user a hint where the beep comes from. */
3662 if (vim_strchr(p_debug, 'e') != NULL)
3663 {
3664 msg_source(hl_attr(HLF_W));
3665 msg_attr((char_u *)_("Beep!"), hl_attr(HLF_W));
3666 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667 }
3668}
3669
3670/*
3671 * To get the "real" home directory:
3672 * - get value of $HOME
3673 * For Unix:
3674 * - go to that directory
3675 * - do mch_dirname() to get the real name of that directory.
3676 * This also works with mounts and links.
3677 * Don't do this for MS-DOS, it will change the "current dir" for a drive.
3678 */
3679static char_u *homedir = NULL;
3680
3681 void
3682init_homedir()
3683{
3684 char_u *var;
3685
Bram Moolenaar05159a02005-02-26 23:04:13 +00003686 /* In case we are called a second time (when 'encoding' changes). */
3687 vim_free(homedir);
3688 homedir = NULL;
3689
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690#ifdef VMS
3691 var = mch_getenv((char_u *)"SYS$LOGIN");
3692#else
3693 var = mch_getenv((char_u *)"HOME");
3694#endif
3695
3696 if (var != NULL && *var == NUL) /* empty is same as not set */
3697 var = NULL;
3698
3699#ifdef WIN3264
3700 /*
3701 * Weird but true: $HOME may contain an indirect reference to another
3702 * variable, esp. "%USERPROFILE%". Happens when $USERPROFILE isn't set
3703 * when $HOME is being set.
3704 */
3705 if (var != NULL && *var == '%')
3706 {
3707 char_u *p;
3708 char_u *exp;
3709
3710 p = vim_strchr(var + 1, '%');
3711 if (p != NULL)
3712 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003713 vim_strncpy(NameBuff, var + 1, p - (var + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003714 exp = mch_getenv(NameBuff);
3715 if (exp != NULL && *exp != NUL
3716 && STRLEN(exp) + STRLEN(p) < MAXPATHL)
3717 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00003718 vim_snprintf((char *)NameBuff, MAXPATHL, "%s%s", exp, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 var = NameBuff;
3720 /* Also set $HOME, it's needed for _viminfo. */
3721 vim_setenv((char_u *)"HOME", NameBuff);
3722 }
3723 }
3724 }
3725
3726 /*
3727 * Typically, $HOME is not defined on Windows, unless the user has
3728 * specifically defined it for Vim's sake. However, on Windows NT
3729 * platforms, $HOMEDRIVE and $HOMEPATH are automatically defined for
3730 * each user. Try constructing $HOME from these.
3731 */
3732 if (var == NULL)
3733 {
3734 char_u *homedrive, *homepath;
3735
3736 homedrive = mch_getenv((char_u *)"HOMEDRIVE");
3737 homepath = mch_getenv((char_u *)"HOMEPATH");
Bram Moolenaar6f977012010-01-06 17:53:38 +01003738 if (homepath == NULL || *homepath == NUL)
3739 homepath = "\\";
3740 if (homedrive != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 && STRLEN(homedrive) + STRLEN(homepath) < MAXPATHL)
3742 {
3743 sprintf((char *)NameBuff, "%s%s", homedrive, homepath);
3744 if (NameBuff[0] != NUL)
3745 {
3746 var = NameBuff;
3747 /* Also set $HOME, it's needed for _viminfo. */
3748 vim_setenv((char_u *)"HOME", NameBuff);
3749 }
3750 }
3751 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00003752
3753# if defined(FEAT_MBYTE)
3754 if (enc_utf8 && var != NULL)
3755 {
3756 int len;
Bram Moolenaarb453a532011-04-28 17:48:44 +02003757 char_u *pp = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003758
3759 /* Convert from active codepage to UTF-8. Other conversions are
3760 * not done, because they would fail for non-ASCII characters. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003761 acp_to_enc(var, (int)STRLEN(var), &pp, &len);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003762 if (pp != NULL)
3763 {
3764 homedir = pp;
3765 return;
3766 }
3767 }
3768# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769#endif
3770
3771#if defined(OS2) || defined(MSDOS) || defined(MSWIN)
3772 /*
3773 * Default home dir is C:/
3774 * Best assumption we can make in such a situation.
3775 */
3776 if (var == NULL)
3777 var = "C:/";
3778#endif
3779 if (var != NULL)
3780 {
3781#ifdef UNIX
3782 /*
3783 * Change to the directory and get the actual path. This resolves
3784 * links. Don't do it when we can't return.
3785 */
3786 if (mch_dirname(NameBuff, MAXPATHL) == OK
3787 && mch_chdir((char *)NameBuff) == 0)
3788 {
3789 if (!mch_chdir((char *)var) && mch_dirname(IObuff, IOSIZE) == OK)
3790 var = IObuff;
3791 if (mch_chdir((char *)NameBuff) != 0)
3792 EMSG(_(e_prev_dir));
3793 }
3794#endif
3795 homedir = vim_strsave(var);
3796 }
3797}
3798
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003799#if defined(EXITFREE) || defined(PROTO)
3800 void
3801free_homedir()
3802{
3803 vim_free(homedir);
3804}
Bram Moolenaar24305862012-08-15 14:05:05 +02003805
3806# ifdef FEAT_CMDL_COMPL
3807 void
3808free_users()
3809{
3810 ga_clear_strings(&ga_users);
3811}
3812# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003813#endif
3814
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815/*
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003816 * Call expand_env() and store the result in an allocated string.
3817 * This is not very memory efficient, this expects the result to be freed
3818 * again soon.
3819 */
3820 char_u *
3821expand_env_save(src)
3822 char_u *src;
3823{
3824 return expand_env_save_opt(src, FALSE);
3825}
3826
3827/*
3828 * Idem, but when "one" is TRUE handle the string as one file name, only
3829 * expand "~" at the start.
3830 */
3831 char_u *
3832expand_env_save_opt(src, one)
3833 char_u *src;
3834 int one;
3835{
3836 char_u *p;
3837
3838 p = alloc(MAXPATHL);
3839 if (p != NULL)
3840 expand_env_esc(src, p, MAXPATHL, FALSE, one, NULL);
3841 return p;
3842}
3843
3844/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845 * Expand environment variable with path name.
3846 * "~/" is also expanded, using $HOME. For Unix "~user/" is expanded.
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003847 * Skips over "\ ", "\~" and "\$" (not for Win32 though).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848 * If anything fails no expansion is done and dst equals src.
3849 */
3850 void
3851expand_env(src, dst, dstlen)
3852 char_u *src; /* input string e.g. "$HOME/vim.hlp" */
3853 char_u *dst; /* where to put the result */
3854 int dstlen; /* maximum length of the result */
3855{
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003856 expand_env_esc(src, dst, dstlen, FALSE, FALSE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857}
3858
3859 void
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003860expand_env_esc(srcp, dst, dstlen, esc, one, startstr)
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003861 char_u *srcp; /* input string e.g. "$HOME/vim.hlp" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862 char_u *dst; /* where to put the result */
3863 int dstlen; /* maximum length of the result */
3864 int esc; /* escape spaces in expanded variables */
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003865 int one; /* "srcp" is one file name */
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003866 char_u *startstr; /* start again after this (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867{
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003868 char_u *src;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 char_u *tail;
3870 int c;
3871 char_u *var;
3872 int copy_char;
3873 int mustfree; /* var was allocated, need to free it later */
3874 int at_start = TRUE; /* at start of a name */
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003875 int startstr_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003877 if (startstr != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003878 startstr_len = (int)STRLEN(startstr);
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003879
3880 src = skipwhite(srcp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881 --dstlen; /* leave one char space for "\," */
3882 while (*src && dstlen > 0)
3883 {
3884 copy_char = TRUE;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003885 if ((*src == '$'
3886#ifdef VMS
3887 && at_start
3888#endif
3889 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3891 || *src == '%'
3892#endif
3893 || (*src == '~' && at_start))
3894 {
3895 mustfree = FALSE;
3896
3897 /*
3898 * The variable name is copied into dst temporarily, because it may
3899 * be a string in read-only memory and a NUL needs to be appended.
3900 */
3901 if (*src != '~') /* environment var */
3902 {
3903 tail = src + 1;
3904 var = dst;
3905 c = dstlen - 1;
3906
3907#ifdef UNIX
3908 /* Unix has ${var-name} type environment vars */
3909 if (*tail == '{' && !vim_isIDc('{'))
3910 {
3911 tail++; /* ignore '{' */
3912 while (c-- > 0 && *tail && *tail != '}')
3913 *var++ = *tail++;
3914 }
3915 else
3916#endif
3917 {
3918 while (c-- > 0 && *tail != NUL && ((vim_isIDc(*tail))
3919#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3920 || (*src == '%' && *tail != '%')
3921#endif
3922 ))
3923 {
3924#ifdef OS2 /* env vars only in uppercase */
3925 *var++ = TOUPPER_LOC(*tail);
3926 tail++; /* toupper() may be a macro! */
3927#else
3928 *var++ = *tail++;
3929#endif
3930 }
3931 }
3932
3933#if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(UNIX)
3934# ifdef UNIX
3935 if (src[1] == '{' && *tail != '}')
3936# else
3937 if (*src == '%' && *tail != '%')
3938# endif
3939 var = NULL;
3940 else
3941 {
3942# ifdef UNIX
3943 if (src[1] == '{')
3944# else
3945 if (*src == '%')
3946#endif
3947 ++tail;
3948#endif
3949 *var = NUL;
3950 var = vim_getenv(dst, &mustfree);
3951#if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(UNIX)
3952 }
3953#endif
3954 }
3955 /* home directory */
3956 else if ( src[1] == NUL
3957 || vim_ispathsep(src[1])
3958 || vim_strchr((char_u *)" ,\t\n", src[1]) != NULL)
3959 {
3960 var = homedir;
3961 tail = src + 1;
3962 }
3963 else /* user directory */
3964 {
3965#if defined(UNIX) || (defined(VMS) && defined(USER_HOME))
3966 /*
3967 * Copy ~user to dst[], so we can put a NUL after it.
3968 */
3969 tail = src;
3970 var = dst;
3971 c = dstlen - 1;
3972 while ( c-- > 0
3973 && *tail
3974 && vim_isfilec(*tail)
3975 && !vim_ispathsep(*tail))
3976 *var++ = *tail++;
3977 *var = NUL;
3978# ifdef UNIX
3979 /*
3980 * If the system supports getpwnam(), use it.
3981 * Otherwise, or if getpwnam() fails, the shell is used to
3982 * expand ~user. This is slower and may fail if the shell
3983 * does not support ~user (old versions of /bin/sh).
3984 */
3985# if defined(HAVE_GETPWNAM) && defined(HAVE_PWD_H)
3986 {
3987 struct passwd *pw;
3988
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003989 /* Note: memory allocated by getpwnam() is never freed.
3990 * Calling endpwent() apparently doesn't help. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 pw = getpwnam((char *)dst + 1);
3992 if (pw != NULL)
3993 var = (char_u *)pw->pw_dir;
3994 else
3995 var = NULL;
3996 }
3997 if (var == NULL)
3998# endif
3999 {
4000 expand_T xpc;
4001
4002 ExpandInit(&xpc);
4003 xpc.xp_context = EXPAND_FILES;
4004 var = ExpandOne(&xpc, dst, NULL,
4005 WILD_ADD_SLASH|WILD_SILENT, WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006 mustfree = TRUE;
4007 }
4008
4009# else /* !UNIX, thus VMS */
4010 /*
4011 * USER_HOME is a comma-separated list of
4012 * directories to search for the user account in.
4013 */
4014 {
4015 char_u test[MAXPATHL], paths[MAXPATHL];
4016 char_u *path, *next_path, *ptr;
4017 struct stat st;
4018
4019 STRCPY(paths, USER_HOME);
4020 next_path = paths;
4021 while (*next_path)
4022 {
4023 for (path = next_path; *next_path && *next_path != ',';
4024 next_path++);
4025 if (*next_path)
4026 *next_path++ = NUL;
4027 STRCPY(test, path);
4028 STRCAT(test, "/");
4029 STRCAT(test, dst + 1);
4030 if (mch_stat(test, &st) == 0)
4031 {
4032 var = alloc(STRLEN(test) + 1);
4033 STRCPY(var, test);
4034 mustfree = TRUE;
4035 break;
4036 }
4037 }
4038 }
4039# endif /* UNIX */
4040#else
4041 /* cannot expand user's home directory, so don't try */
4042 var = NULL;
4043 tail = (char_u *)""; /* for gcc */
4044#endif /* UNIX || VMS */
4045 }
4046
4047#ifdef BACKSLASH_IN_FILENAME
4048 /* If 'shellslash' is set change backslashes to forward slashes.
4049 * Can't use slash_adjust(), p_ssl may be set temporarily. */
4050 if (p_ssl && var != NULL && vim_strchr(var, '\\') != NULL)
4051 {
4052 char_u *p = vim_strsave(var);
4053
4054 if (p != NULL)
4055 {
4056 if (mustfree)
4057 vim_free(var);
4058 var = p;
4059 mustfree = TRUE;
4060 forward_slash(var);
4061 }
4062 }
4063#endif
4064
4065 /* If "var" contains white space, escape it with a backslash.
4066 * Required for ":e ~/tt" when $HOME includes a space. */
4067 if (esc && var != NULL && vim_strpbrk(var, (char_u *)" \t") != NULL)
4068 {
4069 char_u *p = vim_strsave_escaped(var, (char_u *)" \t");
4070
4071 if (p != NULL)
4072 {
4073 if (mustfree)
4074 vim_free(var);
4075 var = p;
4076 mustfree = TRUE;
4077 }
4078 }
4079
4080 if (var != NULL && *var != NUL
4081 && (STRLEN(var) + STRLEN(tail) + 1 < (unsigned)dstlen))
4082 {
4083 STRCPY(dst, var);
4084 dstlen -= (int)STRLEN(var);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004085 c = (int)STRLEN(var);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 /* if var[] ends in a path separator and tail[] starts
4087 * with it, skip a character */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004088 if (*var != NUL && after_pathsep(dst, dst + c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA)
4090 && dst[-1] != ':'
4091#endif
4092 && vim_ispathsep(*tail))
4093 ++tail;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004094 dst += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004095 src = tail;
4096 copy_char = FALSE;
4097 }
4098 if (mustfree)
4099 vim_free(var);
4100 }
4101
4102 if (copy_char) /* copy at least one char */
4103 {
4104 /*
Bram Moolenaar25394022007-05-10 19:06:20 +00004105 * Recognize the start of a new name, for '~'.
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00004106 * Don't do this when "one" is TRUE, to avoid expanding "~" in
4107 * ":edit foo ~ foo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 */
4109 at_start = FALSE;
4110 if (src[0] == '\\' && src[1] != NUL)
4111 {
4112 *dst++ = *src++;
4113 --dstlen;
4114 }
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00004115 else if ((src[0] == ' ' || src[0] == ',') && !one)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 at_start = TRUE;
4117 *dst++ = *src++;
4118 --dstlen;
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00004119
4120 if (startstr != NULL && src - startstr_len >= srcp
4121 && STRNCMP(src - startstr_len, startstr, startstr_len) == 0)
4122 at_start = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123 }
4124 }
4125 *dst = NUL;
4126}
4127
4128/*
4129 * Vim's version of getenv().
4130 * Special handling of $HOME, $VIM and $VIMRUNTIME.
Bram Moolenaar2f6b0b82005-03-08 22:43:10 +00004131 * Also does ACP to 'enc' conversion for Win32.
Bram Moolenaarb453a532011-04-28 17:48:44 +02004132 * "mustfree" is set to TRUE when returned is allocated, it must be
4133 * initialized to FALSE by the caller.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134 */
4135 char_u *
4136vim_getenv(name, mustfree)
4137 char_u *name;
Bram Moolenaarb453a532011-04-28 17:48:44 +02004138 int *mustfree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139{
4140 char_u *p;
4141 char_u *pend;
4142 int vimruntime;
4143
4144#if defined(OS2) || defined(MSDOS) || defined(MSWIN)
4145 /* use "C:/" when $HOME is not set */
4146 if (STRCMP(name, "HOME") == 0)
4147 return homedir;
4148#endif
4149
4150 p = mch_getenv(name);
4151 if (p != NULL && *p == NUL) /* empty is the same as not set */
4152 p = NULL;
4153
4154 if (p != NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00004155 {
4156#if defined(FEAT_MBYTE) && defined(WIN3264)
4157 if (enc_utf8)
4158 {
4159 int len;
Bram Moolenaarb453a532011-04-28 17:48:44 +02004160 char_u *pp = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004161
4162 /* Convert from active codepage to UTF-8. Other conversions are
4163 * not done, because they would fail for non-ASCII characters. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004164 acp_to_enc(p, (int)STRLEN(p), &pp, &len);
Bram Moolenaar05159a02005-02-26 23:04:13 +00004165 if (pp != NULL)
4166 {
4167 p = pp;
4168 *mustfree = TRUE;
4169 }
4170 }
4171#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004172 return p;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004173 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174
4175 vimruntime = (STRCMP(name, "VIMRUNTIME") == 0);
4176 if (!vimruntime && STRCMP(name, "VIM") != 0)
4177 return NULL;
4178
4179 /*
4180 * When expanding $VIMRUNTIME fails, try using $VIM/vim<version> or $VIM.
4181 * Don't do this when default_vimruntime_dir is non-empty.
4182 */
4183 if (vimruntime
4184#ifdef HAVE_PATHDEF
4185 && *default_vimruntime_dir == NUL
4186#endif
4187 )
4188 {
4189 p = mch_getenv((char_u *)"VIM");
4190 if (p != NULL && *p == NUL) /* empty is the same as not set */
4191 p = NULL;
4192 if (p != NULL)
4193 {
4194 p = vim_version_dir(p);
4195 if (p != NULL)
4196 *mustfree = TRUE;
4197 else
4198 p = mch_getenv((char_u *)"VIM");
Bram Moolenaar05159a02005-02-26 23:04:13 +00004199
4200#if defined(FEAT_MBYTE) && defined(WIN3264)
4201 if (enc_utf8)
4202 {
4203 int len;
Bram Moolenaarb453a532011-04-28 17:48:44 +02004204 char_u *pp = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004205
4206 /* Convert from active codepage to UTF-8. Other conversions
4207 * are not done, because they would fail for non-ASCII
4208 * characters. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004209 acp_to_enc(p, (int)STRLEN(p), &pp, &len);
Bram Moolenaar05159a02005-02-26 23:04:13 +00004210 if (pp != NULL)
4211 {
Bram Moolenaarb453a532011-04-28 17:48:44 +02004212 if (*mustfree)
Bram Moolenaar05159a02005-02-26 23:04:13 +00004213 vim_free(p);
4214 p = pp;
4215 *mustfree = TRUE;
4216 }
4217 }
4218#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004219 }
4220 }
4221
4222 /*
4223 * When expanding $VIM or $VIMRUNTIME fails, try using:
4224 * - the directory name from 'helpfile' (unless it contains '$')
4225 * - the executable name from argv[0]
4226 */
4227 if (p == NULL)
4228 {
4229 if (p_hf != NULL && vim_strchr(p_hf, '$') == NULL)
4230 p = p_hf;
4231#ifdef USE_EXE_NAME
4232 /*
4233 * Use the name of the executable, obtained from argv[0].
4234 */
4235 else
4236 p = exe_name;
4237#endif
4238 if (p != NULL)
4239 {
4240 /* remove the file name */
4241 pend = gettail(p);
4242
4243 /* remove "doc/" from 'helpfile', if present */
4244 if (p == p_hf)
4245 pend = remove_tail(p, pend, (char_u *)"doc");
4246
4247#ifdef USE_EXE_NAME
4248# ifdef MACOS_X
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004249 /* remove "MacOS" from exe_name and add "Resources/vim" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 if (p == exe_name)
4251 {
4252 char_u *pend1;
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004253 char_u *pnew;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004255 pend1 = remove_tail(p, pend, (char_u *)"MacOS");
4256 if (pend1 != pend)
4257 {
4258 pnew = alloc((unsigned)(pend1 - p) + 15);
4259 if (pnew != NULL)
4260 {
4261 STRNCPY(pnew, p, (pend1 - p));
4262 STRCPY(pnew + (pend1 - p), "Resources/vim");
4263 p = pnew;
4264 pend = p + STRLEN(p);
4265 }
4266 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267 }
4268# endif
4269 /* remove "src/" from exe_name, if present */
4270 if (p == exe_name)
4271 pend = remove_tail(p, pend, (char_u *)"src");
4272#endif
4273
4274 /* for $VIM, remove "runtime/" or "vim54/", if present */
4275 if (!vimruntime)
4276 {
4277 pend = remove_tail(p, pend, (char_u *)RUNTIME_DIRNAME);
4278 pend = remove_tail(p, pend, (char_u *)VIM_VERSION_NODOT);
4279 }
4280
4281 /* remove trailing path separator */
4282#ifndef MACOS_CLASSIC
4283 /* With MacOS path (with colons) the final colon is required */
Bram Moolenaare21877a2008-02-13 09:58:14 +00004284 /* to avoid confusion between absolute and relative path */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004285 if (pend > p && after_pathsep(p, pend))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 --pend;
4287#endif
4288
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004289#ifdef MACOS_X
4290 if (p == exe_name || p == p_hf)
4291#endif
4292 /* check that the result is a directory name */
4293 p = vim_strnsave(p, (int)(pend - p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004294
4295 if (p != NULL && !mch_isdir(p))
4296 {
4297 vim_free(p);
4298 p = NULL;
4299 }
4300 else
4301 {
4302#ifdef USE_EXE_NAME
4303 /* may add "/vim54" or "/runtime" if it exists */
4304 if (vimruntime && (pend = vim_version_dir(p)) != NULL)
4305 {
4306 vim_free(p);
4307 p = pend;
4308 }
4309#endif
4310 *mustfree = TRUE;
4311 }
4312 }
4313 }
4314
4315#ifdef HAVE_PATHDEF
4316 /* When there is a pathdef.c file we can use default_vim_dir and
4317 * default_vimruntime_dir */
4318 if (p == NULL)
4319 {
4320 /* Only use default_vimruntime_dir when it is not empty */
4321 if (vimruntime && *default_vimruntime_dir != NUL)
4322 {
4323 p = default_vimruntime_dir;
4324 *mustfree = FALSE;
4325 }
4326 else if (*default_vim_dir != NUL)
4327 {
4328 if (vimruntime && (p = vim_version_dir(default_vim_dir)) != NULL)
4329 *mustfree = TRUE;
4330 else
4331 {
4332 p = default_vim_dir;
4333 *mustfree = FALSE;
4334 }
4335 }
4336 }
4337#endif
4338
4339 /*
4340 * Set the environment variable, so that the new value can be found fast
4341 * next time, and others can also use it (e.g. Perl).
4342 */
4343 if (p != NULL)
4344 {
4345 if (vimruntime)
4346 {
4347 vim_setenv((char_u *)"VIMRUNTIME", p);
4348 didset_vimruntime = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 }
4350 else
4351 {
4352 vim_setenv((char_u *)"VIM", p);
4353 didset_vim = TRUE;
4354 }
4355 }
4356 return p;
4357}
4358
4359/*
4360 * Check if the directory "vimdir/<version>" or "vimdir/runtime" exists.
4361 * Return NULL if not, return its name in allocated memory otherwise.
4362 */
4363 static char_u *
4364vim_version_dir(vimdir)
4365 char_u *vimdir;
4366{
4367 char_u *p;
4368
4369 if (vimdir == NULL || *vimdir == NUL)
4370 return NULL;
4371 p = concat_fnames(vimdir, (char_u *)VIM_VERSION_NODOT, TRUE);
4372 if (p != NULL && mch_isdir(p))
4373 return p;
4374 vim_free(p);
4375 p = concat_fnames(vimdir, (char_u *)RUNTIME_DIRNAME, TRUE);
4376 if (p != NULL && mch_isdir(p))
4377 return p;
4378 vim_free(p);
4379 return NULL;
4380}
4381
4382/*
4383 * If the string between "p" and "pend" ends in "name/", return "pend" minus
4384 * the length of "name/". Otherwise return "pend".
4385 */
4386 static char_u *
4387remove_tail(p, pend, name)
4388 char_u *p;
4389 char_u *pend;
4390 char_u *name;
4391{
4392 int len = (int)STRLEN(name) + 1;
4393 char_u *newend = pend - len;
4394
4395 if (newend >= p
4396 && fnamencmp(newend, name, len - 1) == 0
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004397 && (newend == p || after_pathsep(p, newend)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398 return newend;
4399 return pend;
4400}
4401
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403 * Our portable version of setenv.
4404 */
4405 void
4406vim_setenv(name, val)
4407 char_u *name;
4408 char_u *val;
4409{
4410#ifdef HAVE_SETENV
4411 mch_setenv((char *)name, (char *)val, 1);
4412#else
4413 char_u *envbuf;
4414
4415 /*
4416 * Putenv does not copy the string, it has to remain
4417 * valid. The allocated memory will never be freed.
4418 */
4419 envbuf = alloc((unsigned)(STRLEN(name) + STRLEN(val) + 2));
4420 if (envbuf != NULL)
4421 {
4422 sprintf((char *)envbuf, "%s=%s", name, val);
4423 putenv((char *)envbuf);
4424 }
4425#endif
Bram Moolenaar011a34d2012-02-29 13:49:09 +01004426#ifdef FEAT_GETTEXT
4427 /*
4428 * When setting $VIMRUNTIME adjust the directory to find message
4429 * translations to $VIMRUNTIME/lang.
4430 */
4431 if (*val != NUL && STRICMP(name, "VIMRUNTIME") == 0)
4432 {
4433 char_u *buf = concat_str(val, (char_u *)"/lang");
4434
4435 if (buf != NULL)
4436 {
4437 bindtextdomain(VIMPACKAGE, (char *)buf);
4438 vim_free(buf);
4439 }
4440 }
4441#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442}
4443
4444#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4445/*
4446 * Function given to ExpandGeneric() to obtain an environment variable name.
4447 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448 char_u *
4449get_env_name(xp, idx)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004450 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 int idx;
4452{
4453# if defined(AMIGA) || defined(__MRC__) || defined(__SC__)
4454 /*
4455 * No environ[] on the Amiga and on the Mac (using MPW).
4456 */
4457 return NULL;
4458# else
4459# ifndef __WIN32__
4460 /* Borland C++ 5.2 has this in a header file. */
4461 extern char **environ;
4462# endif
Bram Moolenaar21cf8232004-07-16 20:18:37 +00004463# define ENVNAMELEN 100
4464 static char_u name[ENVNAMELEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465 char_u *str;
4466 int n;
4467
4468 str = (char_u *)environ[idx];
4469 if (str == NULL)
4470 return NULL;
4471
Bram Moolenaar21cf8232004-07-16 20:18:37 +00004472 for (n = 0; n < ENVNAMELEN - 1; ++n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 {
4474 if (str[n] == '=' || str[n] == NUL)
4475 break;
4476 name[n] = str[n];
4477 }
4478 name[n] = NUL;
4479 return name;
4480# endif
4481}
Bram Moolenaar24305862012-08-15 14:05:05 +02004482
4483/*
4484 * Find all user names for user completion.
4485 * Done only once and then cached.
4486 */
4487 static void
4488init_users() {
4489 static int lazy_init_done = FALSE;
4490
4491 if (lazy_init_done)
4492 return;
4493
4494 lazy_init_done = TRUE;
4495 ga_init2(&ga_users, sizeof(char_u *), 20);
4496
4497# if defined(HAVE_GETPWENT) && defined(HAVE_PWD_H)
4498 {
4499 char_u* user;
4500 struct passwd* pw;
4501
4502 setpwent();
4503 while ((pw = getpwent()) != NULL)
4504 /* pw->pw_name shouldn't be NULL but just in case... */
4505 if (pw->pw_name != NULL)
4506 {
4507 if (ga_grow(&ga_users, 1) == FAIL)
4508 break;
4509 user = vim_strsave((char_u*)pw->pw_name);
4510 if (user == NULL)
4511 break;
4512 ((char_u **)(ga_users.ga_data))[ga_users.ga_len++] = user;
4513 }
4514 endpwent();
4515 }
4516# endif
4517}
4518
4519/*
4520 * Function given to ExpandGeneric() to obtain an user names.
4521 */
4522 char_u*
4523get_users(xp, idx)
4524 expand_T *xp UNUSED;
4525 int idx;
4526{
4527 init_users();
4528 if (idx < ga_users.ga_len)
4529 return ((char_u **)ga_users.ga_data)[idx];
4530 return NULL;
4531}
4532
4533/*
4534 * Check whether name matches a user name. Return:
4535 * 0 if name does not match any user name.
4536 * 1 if name partially matches the beginning of a user name.
4537 * 2 is name fully matches a user name.
4538 */
4539int match_user(name)
4540 char_u* name;
4541{
4542 int i;
4543 int n = (int)STRLEN(name);
4544 int result = 0;
4545
4546 init_users();
4547 for (i = 0; i < ga_users.ga_len; i++)
4548 {
4549 if (STRCMP(((char_u **)ga_users.ga_data)[i], name) == 0)
4550 return 2; /* full match */
4551 if (STRNCMP(((char_u **)ga_users.ga_data)[i], name, n) == 0)
4552 result = 1; /* partial match */
4553 }
4554 return result;
4555}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556#endif
4557
4558/*
4559 * Replace home directory by "~" in each space or comma separated file name in
4560 * 'src'.
4561 * If anything fails (except when out of space) dst equals src.
4562 */
4563 void
4564home_replace(buf, src, dst, dstlen, one)
4565 buf_T *buf; /* when not NULL, check for help files */
4566 char_u *src; /* input file name */
4567 char_u *dst; /* where to put the result */
4568 int dstlen; /* maximum length of the result */
4569 int one; /* if TRUE, only replace one file name, include
4570 spaces and commas in the file name. */
4571{
4572 size_t dirlen = 0, envlen = 0;
4573 size_t len;
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004574 char_u *homedir_env, *homedir_env_orig;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575 char_u *p;
4576
4577 if (src == NULL)
4578 {
4579 *dst = NUL;
4580 return;
4581 }
4582
4583 /*
4584 * If the file is a help file, remove the path completely.
4585 */
4586 if (buf != NULL && buf->b_help)
4587 {
4588 STRCPY(dst, gettail(src));
4589 return;
4590 }
4591
4592 /*
4593 * We check both the value of the $HOME environment variable and the
4594 * "real" home directory.
4595 */
4596 if (homedir != NULL)
4597 dirlen = STRLEN(homedir);
4598
4599#ifdef VMS
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004600 homedir_env_orig = homedir_env = mch_getenv((char_u *)"SYS$LOGIN");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601#else
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004602 homedir_env_orig = homedir_env = mch_getenv((char_u *)"HOME");
4603#endif
Bram Moolenaarbef47902012-07-06 16:49:40 +02004604 /* Empty is the same as not set. */
4605 if (homedir_env != NULL && *homedir_env == NUL)
4606 homedir_env = NULL;
4607
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004608#if defined(FEAT_MODIFY_FNAME) || defined(WIN3264)
Bram Moolenaarbef47902012-07-06 16:49:40 +02004609 if (homedir_env != NULL && vim_strchr(homedir_env, '~') != NULL)
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004610 {
4611 int usedlen = 0;
4612 int flen;
4613 char_u *fbuf = NULL;
4614
4615 flen = (int)STRLEN(homedir_env);
Bram Moolenaard12f8112012-06-20 17:56:09 +02004616 (void)modify_fname((char_u *)":p", &usedlen,
4617 &homedir_env, &fbuf, &flen);
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004618 flen = (int)STRLEN(homedir_env);
4619 if (flen > 0 && vim_ispathsep(homedir_env[flen - 1]))
4620 /* Remove the trailing / that is added to a directory. */
4621 homedir_env[flen - 1] = NUL;
4622 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623#endif
4624
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625 if (homedir_env != NULL)
4626 envlen = STRLEN(homedir_env);
4627
4628 if (!one)
4629 src = skipwhite(src);
4630 while (*src && dstlen > 0)
4631 {
4632 /*
4633 * Here we are at the beginning of a file name.
4634 * First, check to see if the beginning of the file name matches
4635 * $HOME or the "real" home directory. Check that there is a '/'
4636 * after the match (so that if e.g. the file is "/home/pieter/bla",
4637 * and the home directory is "/home/piet", the file does not end up
4638 * as "~er/bla" (which would seem to indicate the file "bla" in user
4639 * er's home directory)).
4640 */
4641 p = homedir;
4642 len = dirlen;
4643 for (;;)
4644 {
4645 if ( len
4646 && fnamencmp(src, p, len) == 0
4647 && (vim_ispathsep(src[len])
4648 || (!one && (src[len] == ',' || src[len] == ' '))
4649 || src[len] == NUL))
4650 {
4651 src += len;
4652 if (--dstlen > 0)
4653 *dst++ = '~';
4654
4655 /*
4656 * If it's just the home directory, add "/".
4657 */
4658 if (!vim_ispathsep(src[0]) && --dstlen > 0)
4659 *dst++ = '/';
4660 break;
4661 }
4662 if (p == homedir_env)
4663 break;
4664 p = homedir_env;
4665 len = envlen;
4666 }
4667
4668 /* if (!one) skip to separator: space or comma */
4669 while (*src && (one || (*src != ',' && *src != ' ')) && --dstlen > 0)
4670 *dst++ = *src++;
4671 /* skip separator */
4672 while ((*src == ' ' || *src == ',') && --dstlen > 0)
4673 *dst++ = *src++;
4674 }
4675 /* if (dstlen == 0) out of space, what to do??? */
4676
4677 *dst = NUL;
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004678
4679 if (homedir_env != homedir_env_orig)
4680 vim_free(homedir_env);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681}
4682
4683/*
4684 * Like home_replace, store the replaced string in allocated memory.
4685 * When something fails, NULL is returned.
4686 */
4687 char_u *
4688home_replace_save(buf, src)
4689 buf_T *buf; /* when not NULL, check for help files */
4690 char_u *src; /* input file name */
4691{
4692 char_u *dst;
4693 unsigned len;
4694
4695 len = 3; /* space for "~/" and trailing NUL */
4696 if (src != NULL) /* just in case */
4697 len += (unsigned)STRLEN(src);
4698 dst = alloc(len);
4699 if (dst != NULL)
4700 home_replace(buf, src, dst, len, TRUE);
4701 return dst;
4702}
4703
4704/*
4705 * Compare two file names and return:
4706 * FPC_SAME if they both exist and are the same file.
4707 * FPC_SAMEX if they both don't exist and have the same file name.
4708 * FPC_DIFF if they both exist and are different files.
4709 * FPC_NOTX if they both don't exist.
4710 * FPC_DIFFX if one of them doesn't exist.
4711 * For the first name environment variables are expanded
4712 */
4713 int
4714fullpathcmp(s1, s2, checkname)
4715 char_u *s1, *s2;
4716 int checkname; /* when both don't exist, check file names */
4717{
4718#ifdef UNIX
4719 char_u exp1[MAXPATHL];
4720 char_u full1[MAXPATHL];
4721 char_u full2[MAXPATHL];
4722 struct stat st1, st2;
4723 int r1, r2;
4724
4725 expand_env(s1, exp1, MAXPATHL);
4726 r1 = mch_stat((char *)exp1, &st1);
4727 r2 = mch_stat((char *)s2, &st2);
4728 if (r1 != 0 && r2 != 0)
4729 {
4730 /* if mch_stat() doesn't work, may compare the names */
4731 if (checkname)
4732 {
4733 if (fnamecmp(exp1, s2) == 0)
4734 return FPC_SAMEX;
4735 r1 = vim_FullName(exp1, full1, MAXPATHL, FALSE);
4736 r2 = vim_FullName(s2, full2, MAXPATHL, FALSE);
4737 if (r1 == OK && r2 == OK && fnamecmp(full1, full2) == 0)
4738 return FPC_SAMEX;
4739 }
4740 return FPC_NOTX;
4741 }
4742 if (r1 != 0 || r2 != 0)
4743 return FPC_DIFFX;
4744 if (st1.st_dev == st2.st_dev && st1.st_ino == st2.st_ino)
4745 return FPC_SAME;
4746 return FPC_DIFF;
4747#else
4748 char_u *exp1; /* expanded s1 */
4749 char_u *full1; /* full path of s1 */
4750 char_u *full2; /* full path of s2 */
4751 int retval = FPC_DIFF;
4752 int r1, r2;
4753
4754 /* allocate one buffer to store three paths (alloc()/free() is slow!) */
4755 if ((exp1 = alloc(MAXPATHL * 3)) != NULL)
4756 {
4757 full1 = exp1 + MAXPATHL;
4758 full2 = full1 + MAXPATHL;
4759
4760 expand_env(s1, exp1, MAXPATHL);
4761 r1 = vim_FullName(exp1, full1, MAXPATHL, FALSE);
4762 r2 = vim_FullName(s2, full2, MAXPATHL, FALSE);
4763
4764 /* If vim_FullName() fails, the file probably doesn't exist. */
4765 if (r1 != OK && r2 != OK)
4766 {
4767 if (checkname && fnamecmp(exp1, s2) == 0)
4768 retval = FPC_SAMEX;
4769 else
4770 retval = FPC_NOTX;
4771 }
4772 else if (r1 != OK || r2 != OK)
4773 retval = FPC_DIFFX;
4774 else if (fnamecmp(full1, full2))
4775 retval = FPC_DIFF;
4776 else
4777 retval = FPC_SAME;
4778 vim_free(exp1);
4779 }
4780 return retval;
4781#endif
4782}
4783
4784/*
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00004785 * Get the tail of a path: the file name.
Bram Moolenaar31710262010-08-13 13:36:15 +02004786 * When the path ends in a path separator the tail is the NUL after it.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00004787 * Fail safe: never returns NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788 */
4789 char_u *
4790gettail(fname)
4791 char_u *fname;
4792{
4793 char_u *p1, *p2;
4794
4795 if (fname == NULL)
4796 return (char_u *)"";
4797 for (p1 = p2 = fname; *p2; ) /* find last part of path */
4798 {
4799 if (vim_ispathsep(*p2))
4800 p1 = p2 + 1;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004801 mb_ptr_adv(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802 }
4803 return p1;
4804}
4805
Bram Moolenaar31710262010-08-13 13:36:15 +02004806#if defined(FEAT_SEARCHPATH)
4807static char_u *gettail_dir __ARGS((char_u *fname));
4808
4809/*
4810 * Return the end of the directory name, on the first path
4811 * separator:
4812 * "/path/file", "/path/dir/", "/path//dir", "/file"
4813 * ^ ^ ^ ^
4814 */
4815 static char_u *
4816gettail_dir(fname)
4817 char_u *fname;
4818{
4819 char_u *dir_end = fname;
4820 char_u *next_dir_end = fname;
4821 int look_for_sep = TRUE;
4822 char_u *p;
4823
4824 for (p = fname; *p != NUL; )
4825 {
4826 if (vim_ispathsep(*p))
4827 {
4828 if (look_for_sep)
4829 {
4830 next_dir_end = p;
4831 look_for_sep = FALSE;
4832 }
4833 }
4834 else
4835 {
4836 if (!look_for_sep)
4837 dir_end = next_dir_end;
4838 look_for_sep = TRUE;
4839 }
4840 mb_ptr_adv(p);
4841 }
4842 return dir_end;
4843}
4844#endif
4845
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004847 * Get pointer to tail of "fname", including path separators. Putting a NUL
4848 * here leaves the directory name. Takes care of "c:/" and "//".
4849 * Always returns a valid pointer.
4850 */
4851 char_u *
4852gettail_sep(fname)
4853 char_u *fname;
4854{
4855 char_u *p;
4856 char_u *t;
4857
4858 p = get_past_head(fname); /* don't remove the '/' from "c:/file" */
4859 t = gettail(fname);
4860 while (t > p && after_pathsep(fname, t))
4861 --t;
4862#ifdef VMS
4863 /* path separator is part of the path */
4864 ++t;
4865#endif
4866 return t;
4867}
4868
4869/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870 * get the next path component (just after the next path separator).
4871 */
4872 char_u *
4873getnextcomp(fname)
4874 char_u *fname;
4875{
4876 while (*fname && !vim_ispathsep(*fname))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004877 mb_ptr_adv(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878 if (*fname)
4879 ++fname;
4880 return fname;
4881}
4882
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883/*
4884 * Get a pointer to one character past the head of a path name.
4885 * Unix: after "/"; DOS: after "c:\"; Amiga: after "disk:/"; Mac: no head.
4886 * If there is no head, path is returned.
4887 */
4888 char_u *
4889get_past_head(path)
4890 char_u *path;
4891{
4892 char_u *retval;
4893
4894#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
4895 /* may skip "c:" */
4896 if (isalpha(path[0]) && path[1] == ':')
4897 retval = path + 2;
4898 else
4899 retval = path;
4900#else
4901# if defined(AMIGA)
4902 /* may skip "label:" */
4903 retval = vim_strchr(path, ':');
4904 if (retval == NULL)
4905 retval = path;
4906# else /* Unix */
4907 retval = path;
4908# endif
4909#endif
4910
4911 while (vim_ispathsep(*retval))
4912 ++retval;
4913
4914 return retval;
4915}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916
4917/*
4918 * return TRUE if 'c' is a path separator.
4919 */
4920 int
4921vim_ispathsep(c)
4922 int c;
4923{
Bram Moolenaare60acc12011-05-10 16:41:25 +02004924#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925 return (c == '/'); /* UNIX has ':' inside file names */
Bram Moolenaare60acc12011-05-10 16:41:25 +02004926#else
4927# ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 return (c == ':' || c == '/' || c == '\\');
Bram Moolenaare60acc12011-05-10 16:41:25 +02004929# else
4930# ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 /* server"user passwd"::device:[full.path.name]fname.extension;version" */
4932 return (c == ':' || c == '[' || c == ']' || c == '/'
4933 || c == '<' || c == '>' || c == '"' );
Bram Moolenaare60acc12011-05-10 16:41:25 +02004934# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 return (c == ':' || c == '/');
Bram Moolenaare60acc12011-05-10 16:41:25 +02004936# endif /* VMS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937# endif
Bram Moolenaare60acc12011-05-10 16:41:25 +02004938#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939}
4940
4941#if defined(FEAT_SEARCHPATH) || defined(PROTO)
4942/*
4943 * return TRUE if 'c' is a path list separator.
4944 */
4945 int
4946vim_ispathlistsep(c)
4947 int c;
4948{
4949#ifdef UNIX
4950 return (c == ':');
4951#else
Bram Moolenaar25394022007-05-10 19:06:20 +00004952 return (c == ';'); /* might not be right for every system... */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953#endif
4954}
4955#endif
4956
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004957#if defined(FEAT_GUI_TABLINE) || defined(FEAT_WINDOWS) \
4958 || defined(FEAT_EVAL) || defined(PROTO)
4959/*
4960 * Shorten the path of a file from "~/foo/../.bar/fname" to "~/f/../.b/fname"
4961 * It's done in-place.
4962 */
4963 void
4964shorten_dir(str)
4965 char_u *str;
4966{
4967 char_u *tail, *s, *d;
4968 int skip = FALSE;
4969
4970 tail = gettail(str);
4971 d = str;
4972 for (s = str; ; ++s)
4973 {
4974 if (s >= tail) /* copy the whole tail */
4975 {
4976 *d++ = *s;
4977 if (*s == NUL)
4978 break;
4979 }
4980 else if (vim_ispathsep(*s)) /* copy '/' and next char */
4981 {
4982 *d++ = *s;
4983 skip = FALSE;
4984 }
4985 else if (!skip)
4986 {
4987 *d++ = *s; /* copy next char */
4988 if (*s != '~' && *s != '.') /* and leading "~" and "." */
4989 skip = TRUE;
4990# ifdef FEAT_MBYTE
4991 if (has_mbyte)
4992 {
4993 int l = mb_ptr2len(s);
4994
4995 while (--l > 0)
Bram Moolenaarb6baca52006-08-15 20:24:14 +00004996 *d++ = *++s;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004997 }
4998# endif
4999 }
5000 }
5001}
5002#endif
5003
Bram Moolenaar900b4d72005-12-12 22:05:50 +00005004/*
5005 * Return TRUE if the directory of "fname" exists, FALSE otherwise.
5006 * Also returns TRUE if there is no directory name.
5007 * "fname" must be writable!.
5008 */
5009 int
5010dir_of_file_exists(fname)
5011 char_u *fname;
5012{
5013 char_u *p;
5014 int c;
5015 int retval;
5016
5017 p = gettail_sep(fname);
5018 if (p == fname)
5019 return TRUE;
5020 c = *p;
5021 *p = NUL;
5022 retval = mch_isdir(fname);
5023 *p = c;
5024 return retval;
5025}
5026
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027#if (defined(CASE_INSENSITIVE_FILENAME) && defined(BACKSLASH_IN_FILENAME)) \
5028 || defined(PROTO)
5029/*
5030 * Versions of fnamecmp() and fnamencmp() that handle '/' and '\' equally.
5031 */
5032 int
5033vim_fnamecmp(x, y)
5034 char_u *x, *y;
5035{
5036 return vim_fnamencmp(x, y, MAXPATHL);
5037}
5038
5039 int
5040vim_fnamencmp(x, y, len)
5041 char_u *x, *y;
5042 size_t len;
5043{
5044 while (len > 0 && *x && *y)
5045 {
5046 if (TOLOWER_LOC(*x) != TOLOWER_LOC(*y)
5047 && !(*x == '/' && *y == '\\')
5048 && !(*x == '\\' && *y == '/'))
5049 break;
5050 ++x;
5051 ++y;
5052 --len;
5053 }
5054 if (len == 0)
5055 return 0;
5056 return (*x - *y);
5057}
5058#endif
5059
5060/*
5061 * Concatenate file names fname1 and fname2 into allocated memory.
Bram Moolenaar25394022007-05-10 19:06:20 +00005062 * Only add a '/' or '\\' when 'sep' is TRUE and it is necessary.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 */
5064 char_u *
5065concat_fnames(fname1, fname2, sep)
5066 char_u *fname1;
5067 char_u *fname2;
5068 int sep;
5069{
5070 char_u *dest;
5071
5072 dest = alloc((unsigned)(STRLEN(fname1) + STRLEN(fname2) + 3));
5073 if (dest != NULL)
5074 {
5075 STRCPY(dest, fname1);
5076 if (sep)
5077 add_pathsep(dest);
5078 STRCAT(dest, fname2);
5079 }
5080 return dest;
5081}
5082
Bram Moolenaard6754642005-01-17 22:18:45 +00005083/*
5084 * Concatenate two strings and return the result in allocated memory.
5085 * Returns NULL when out of memory.
5086 */
5087 char_u *
5088concat_str(str1, str2)
5089 char_u *str1;
5090 char_u *str2;
5091{
5092 char_u *dest;
5093 size_t l = STRLEN(str1);
5094
5095 dest = alloc((unsigned)(l + STRLEN(str2) + 1L));
5096 if (dest != NULL)
5097 {
5098 STRCPY(dest, str1);
5099 STRCPY(dest + l, str2);
5100 }
5101 return dest;
5102}
Bram Moolenaard6754642005-01-17 22:18:45 +00005103
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104/*
5105 * Add a path separator to a file name, unless it already ends in a path
5106 * separator.
5107 */
5108 void
5109add_pathsep(p)
5110 char_u *p;
5111{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005112 if (*p != NUL && !after_pathsep(p, p + STRLEN(p)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113 STRCAT(p, PATHSEPSTR);
5114}
5115
5116/*
5117 * FullName_save - Make an allocated copy of a full file name.
5118 * Returns NULL when out of memory.
5119 */
5120 char_u *
5121FullName_save(fname, force)
5122 char_u *fname;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005123 int force; /* force expansion, even when it already looks
5124 * like a full path name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125{
5126 char_u *buf;
5127 char_u *new_fname = NULL;
5128
5129 if (fname == NULL)
5130 return NULL;
5131
5132 buf = alloc((unsigned)MAXPATHL);
5133 if (buf != NULL)
5134 {
5135 if (vim_FullName(fname, buf, MAXPATHL, force) != FAIL)
5136 new_fname = vim_strsave(buf);
5137 else
5138 new_fname = vim_strsave(fname);
5139 vim_free(buf);
5140 }
5141 return new_fname;
5142}
5143
5144#if defined(FEAT_CINDENT) || defined(FEAT_SYN_HL)
5145
5146static char_u *skip_string __ARGS((char_u *p));
5147
5148/*
5149 * Find the start of a comment, not knowing if we are in a comment right now.
5150 * Search starts at w_cursor.lnum and goes backwards.
5151 */
5152 pos_T *
5153find_start_comment(ind_maxcomment) /* XXX */
5154 int ind_maxcomment;
5155{
5156 pos_T *pos;
5157 char_u *line;
5158 char_u *p;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005159 int cur_maxcomment = ind_maxcomment;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005161 for (;;)
5162 {
5163 pos = findmatchlimit(NULL, '*', FM_BACKWARD, cur_maxcomment);
5164 if (pos == NULL)
5165 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005167 /*
5168 * Check if the comment start we found is inside a string.
5169 * If it is then restrict the search to below this line and try again.
5170 */
5171 line = ml_get(pos->lnum);
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005172 for (p = line; *p && (colnr_T)(p - line) < pos->col; ++p)
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005173 p = skip_string(p);
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005174 if ((colnr_T)(p - line) <= pos->col)
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005175 break;
5176 cur_maxcomment = curwin->w_cursor.lnum - pos->lnum - 1;
5177 if (cur_maxcomment <= 0)
5178 {
5179 pos = NULL;
5180 break;
5181 }
5182 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183 return pos;
5184}
5185
5186/*
5187 * Skip to the end of a "string" and a 'c' character.
5188 * If there is no string or character, return argument unmodified.
5189 */
5190 static char_u *
5191skip_string(p)
5192 char_u *p;
5193{
5194 int i;
5195
5196 /*
5197 * We loop, because strings may be concatenated: "date""time".
5198 */
5199 for ( ; ; ++p)
5200 {
5201 if (p[0] == '\'') /* 'c' or '\n' or '\000' */
5202 {
5203 if (!p[1]) /* ' at end of line */
5204 break;
5205 i = 2;
5206 if (p[1] == '\\') /* '\n' or '\000' */
5207 {
5208 ++i;
5209 while (vim_isdigit(p[i - 1])) /* '\000' */
5210 ++i;
5211 }
5212 if (p[i] == '\'') /* check for trailing ' */
5213 {
5214 p += i;
5215 continue;
5216 }
5217 }
5218 else if (p[0] == '"') /* start of string */
5219 {
5220 for (++p; p[0]; ++p)
5221 {
5222 if (p[0] == '\\' && p[1] != NUL)
5223 ++p;
5224 else if (p[0] == '"') /* end of string */
5225 break;
5226 }
5227 if (p[0] == '"')
5228 continue;
5229 }
5230 break; /* no string found */
5231 }
5232 if (!*p)
5233 --p; /* backup from NUL */
5234 return p;
5235}
5236#endif /* FEAT_CINDENT || FEAT_SYN_HL */
5237
5238#if defined(FEAT_CINDENT) || defined(PROTO)
5239
5240/*
5241 * Do C or expression indenting on the current line.
5242 */
5243 void
5244do_c_expr_indent()
5245{
5246# ifdef FEAT_EVAL
5247 if (*curbuf->b_p_inde != NUL)
5248 fixthisline(get_expr_indent);
5249 else
5250# endif
5251 fixthisline(get_c_indent);
5252}
5253
5254/*
5255 * Functions for C-indenting.
5256 * Most of this originally comes from Eric Fischer.
5257 */
5258/*
5259 * Below "XXX" means that this function may unlock the current line.
5260 */
5261
5262static char_u *cin_skipcomment __ARGS((char_u *));
5263static int cin_nocode __ARGS((char_u *));
5264static pos_T *find_line_comment __ARGS((void));
5265static int cin_islabel_skip __ARGS((char_u **));
5266static int cin_isdefault __ARGS((char_u *));
5267static char_u *after_label __ARGS((char_u *l));
5268static int get_indent_nolabel __ARGS((linenr_T lnum));
5269static int skip_label __ARGS((linenr_T, char_u **pp, int ind_maxcomment));
5270static int cin_first_id_amount __ARGS((void));
5271static int cin_get_equal_amount __ARGS((linenr_T lnum));
5272static int cin_ispreproc __ARGS((char_u *));
5273static int cin_ispreproc_cont __ARGS((char_u **pp, linenr_T *lnump));
5274static int cin_iscomment __ARGS((char_u *));
5275static int cin_islinecomment __ARGS((char_u *));
5276static int cin_isterminated __ARGS((char_u *, int, int));
5277static int cin_isinit __ARGS((void));
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005278static int cin_isfuncdecl __ARGS((char_u **, linenr_T, linenr_T, int, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005279static int cin_isif __ARGS((char_u *));
5280static int cin_iselse __ARGS((char_u *));
5281static int cin_isdo __ARGS((char_u *));
5282static int cin_iswhileofdo __ARGS((char_u *, linenr_T, int));
Bram Moolenaarb345d492012-04-09 20:42:26 +02005283static int cin_is_if_for_while_before_offset __ARGS((char_u *line, int *poffset));
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005284static int cin_iswhileofdo_end __ARGS((int terminated, int ind_maxparen, int ind_maxcomment));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285static int cin_isbreak __ARGS((char_u *));
Bram Moolenaare7c56862007-08-04 10:14:52 +00005286static int cin_is_cpp_baseclass __ARGS((colnr_T *col));
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005287static int get_baseclass_amount __ARGS((int col, int ind_maxparen, int ind_maxcomment, int ind_cpp_baseclass));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005288static int cin_ends_in __ARGS((char_u *, char_u *, char_u *));
Bram Moolenaar75342212013-03-07 13:13:52 +01005289static int cin_starts_with __ARGS((char_u *s, char *word));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290static int cin_skip2pos __ARGS((pos_T *trypos));
5291static pos_T *find_start_brace __ARGS((int));
5292static pos_T *find_match_paren __ARGS((int, int));
5293static int corr_ind_maxparen __ARGS((int ind_maxparen, pos_T *startpos));
5294static int find_last_paren __ARGS((char_u *l, int start, int end));
5295static int find_match __ARGS((int lookfor, linenr_T ourscope, int ind_maxparen, int ind_maxcomment));
Bram Moolenaared38b0a2011-05-25 15:16:18 +02005296static int cin_is_cpp_namespace __ARGS((char_u *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297
Bram Moolenaar39353fd2007-03-27 09:02:11 +00005298static int ind_hash_comment = 0; /* # starts a comment */
5299
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300/*
5301 * Skip over white space and C comments within the line.
Bram Moolenaar39353fd2007-03-27 09:02:11 +00005302 * Also skip over Perl/shell comments if desired.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303 */
5304 static char_u *
5305cin_skipcomment(s)
5306 char_u *s;
5307{
5308 while (*s)
5309 {
Bram Moolenaar39353fd2007-03-27 09:02:11 +00005310 char_u *prev_s = s;
5311
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312 s = skipwhite(s);
Bram Moolenaar39353fd2007-03-27 09:02:11 +00005313
5314 /* Perl/shell # comment comment continues until eol. Require a space
5315 * before # to avoid recognizing $#array. */
5316 if (ind_hash_comment != 0 && s != prev_s && *s == '#')
5317 {
5318 s += STRLEN(s);
5319 break;
5320 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005321 if (*s != '/')
5322 break;
5323 ++s;
5324 if (*s == '/') /* slash-slash comment continues till eol */
5325 {
5326 s += STRLEN(s);
5327 break;
5328 }
5329 if (*s != '*')
5330 break;
5331 for (++s; *s; ++s) /* skip slash-star comment */
5332 if (s[0] == '*' && s[1] == '/')
5333 {
5334 s += 2;
5335 break;
5336 }
5337 }
5338 return s;
5339}
5340
5341/*
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005342 * Return TRUE if there is no code at *s. White space and comments are
Bram Moolenaar071d4272004-06-13 20:20:40 +00005343 * not considered code.
5344 */
5345 static int
5346cin_nocode(s)
5347 char_u *s;
5348{
5349 return *cin_skipcomment(s) == NUL;
5350}
5351
5352/*
5353 * Check previous lines for a "//" line comment, skipping over blank lines.
5354 */
5355 static pos_T *
5356find_line_comment() /* XXX */
5357{
5358 static pos_T pos;
5359 char_u *line;
5360 char_u *p;
5361
5362 pos = curwin->w_cursor;
5363 while (--pos.lnum > 0)
5364 {
5365 line = ml_get(pos.lnum);
5366 p = skipwhite(line);
5367 if (cin_islinecomment(p))
5368 {
5369 pos.col = (int)(p - line);
5370 return &pos;
5371 }
5372 if (*p != NUL)
5373 break;
5374 }
5375 return NULL;
5376}
5377
5378/*
5379 * Check if string matches "label:"; move to character after ':' if true.
5380 */
5381 static int
5382cin_islabel_skip(s)
5383 char_u **s;
5384{
5385 if (!vim_isIDc(**s)) /* need at least one ID character */
5386 return FALSE;
5387
5388 while (vim_isIDc(**s))
5389 (*s)++;
5390
5391 *s = cin_skipcomment(*s);
5392
5393 /* "::" is not a label, it's C++ */
5394 return (**s == ':' && *++*s != ':');
5395}
5396
5397/*
5398 * Recognize a label: "label:".
5399 * Note: curwin->w_cursor must be where we are looking for the label.
5400 */
5401 int
5402cin_islabel(ind_maxcomment) /* XXX */
5403 int ind_maxcomment;
5404{
5405 char_u *s;
5406
5407 s = cin_skipcomment(ml_get_curline());
5408
5409 /*
5410 * Exclude "default" from labels, since it should be indented
5411 * like a switch label. Same for C++ scope declarations.
5412 */
5413 if (cin_isdefault(s))
5414 return FALSE;
5415 if (cin_isscopedecl(s))
5416 return FALSE;
5417
5418 if (cin_islabel_skip(&s))
5419 {
5420 /*
5421 * Only accept a label if the previous line is terminated or is a case
5422 * label.
5423 */
5424 pos_T cursor_save;
5425 pos_T *trypos;
5426 char_u *line;
5427
5428 cursor_save = curwin->w_cursor;
5429 while (curwin->w_cursor.lnum > 1)
5430 {
5431 --curwin->w_cursor.lnum;
5432
5433 /*
5434 * If we're in a comment now, skip to the start of the comment.
5435 */
5436 curwin->w_cursor.col = 0;
5437 if ((trypos = find_start_comment(ind_maxcomment)) != NULL) /* XXX */
5438 curwin->w_cursor = *trypos;
5439
5440 line = ml_get_curline();
5441 if (cin_ispreproc(line)) /* ignore #defines, #if, etc. */
5442 continue;
5443 if (*(line = cin_skipcomment(line)) == NUL)
5444 continue;
5445
5446 curwin->w_cursor = cursor_save;
5447 if (cin_isterminated(line, TRUE, FALSE)
5448 || cin_isscopedecl(line)
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005449 || cin_iscase(line, TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005450 || (cin_islabel_skip(&line) && cin_nocode(line)))
5451 return TRUE;
5452 return FALSE;
5453 }
5454 curwin->w_cursor = cursor_save;
5455 return TRUE; /* label at start of file??? */
5456 }
5457 return FALSE;
5458}
5459
5460/*
Bram Moolenaar75342212013-03-07 13:13:52 +01005461 * Recognize structure initialization and enumerations:
5462 * "[typedef] [static|public|protected|private] enum"
5463 * "[typedef] [static|public|protected|private] = {"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464 */
5465 static int
5466cin_isinit(void)
5467{
5468 char_u *s;
Bram Moolenaar75342212013-03-07 13:13:52 +01005469 static char *skip[] = {"static", "public", "protected", "private"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470
5471 s = cin_skipcomment(ml_get_curline());
5472
Bram Moolenaar75342212013-03-07 13:13:52 +01005473 if (cin_starts_with(s, "typedef"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005474 s = cin_skipcomment(s + 7);
5475
Bram Moolenaar75342212013-03-07 13:13:52 +01005476 for (;;)
5477 {
5478 int i, l;
Bram Moolenaara5285652011-12-14 20:05:21 +01005479
Bram Moolenaar75342212013-03-07 13:13:52 +01005480 for (i = 0; i < (int)(sizeof(skip) / sizeof(char *)); ++i)
5481 {
Bram Moolenaarb3cb9822013-03-13 17:01:52 +01005482 l = (int)strlen(skip[i]);
Bram Moolenaar75342212013-03-07 13:13:52 +01005483 if (cin_starts_with(s, skip[i]))
5484 {
5485 s = cin_skipcomment(s + l);
5486 l = 0;
5487 break;
5488 }
5489 }
5490 if (l != 0)
5491 break;
5492 }
5493
5494 if (cin_starts_with(s, "enum"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495 return TRUE;
5496
5497 if (cin_ends_in(s, (char_u *)"=", (char_u *)"{"))
5498 return TRUE;
5499
5500 return FALSE;
5501}
5502
5503/*
5504 * Recognize a switch label: "case .*:" or "default:".
5505 */
5506 int
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005507cin_iscase(s, strict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508 char_u *s;
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005509 int strict; /* Allow relaxed check of case statement for JS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510{
5511 s = cin_skipcomment(s);
Bram Moolenaar75342212013-03-07 13:13:52 +01005512 if (cin_starts_with(s, "case"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005513 {
5514 for (s += 4; *s; ++s)
5515 {
5516 s = cin_skipcomment(s);
5517 if (*s == ':')
5518 {
5519 if (s[1] == ':') /* skip over "::" for C++ */
5520 ++s;
5521 else
5522 return TRUE;
5523 }
5524 if (*s == '\'' && s[1] && s[2] == '\'')
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005525 s += 2; /* skip over ':' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005526 else if (*s == '/' && (s[1] == '*' || s[1] == '/'))
5527 return FALSE; /* stop at comment */
5528 else if (*s == '"')
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005529 {
5530 /* JS etc. */
5531 if (strict)
5532 return FALSE; /* stop at string */
5533 else
5534 return TRUE;
5535 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536 }
5537 return FALSE;
5538 }
5539
5540 if (cin_isdefault(s))
5541 return TRUE;
5542 return FALSE;
5543}
5544
5545/*
5546 * Recognize a "default" switch label.
5547 */
5548 static int
5549cin_isdefault(s)
5550 char_u *s;
5551{
5552 return (STRNCMP(s, "default", 7) == 0
5553 && *(s = cin_skipcomment(s + 7)) == ':'
5554 && s[1] != ':');
5555}
5556
5557/*
Bram Moolenaar1a509df2010-08-01 17:59:57 +02005558 * Recognize a "public/private/protected" scope declaration label.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559 */
5560 int
5561cin_isscopedecl(s)
5562 char_u *s;
5563{
5564 int i;
5565
5566 s = cin_skipcomment(s);
5567 if (STRNCMP(s, "public", 6) == 0)
5568 i = 6;
5569 else if (STRNCMP(s, "protected", 9) == 0)
5570 i = 9;
5571 else if (STRNCMP(s, "private", 7) == 0)
5572 i = 7;
5573 else
5574 return FALSE;
5575 return (*(s = cin_skipcomment(s + i)) == ':' && s[1] != ':');
5576}
5577
Bram Moolenaared38b0a2011-05-25 15:16:18 +02005578/* Maximum number of lines to search back for a "namespace" line. */
5579#define FIND_NAMESPACE_LIM 20
5580
5581/*
5582 * Recognize a "namespace" scope declaration.
5583 */
5584 static int
5585cin_is_cpp_namespace(s)
5586 char_u *s;
5587{
5588 char_u *p;
5589 int has_name = FALSE;
5590
5591 s = cin_skipcomment(s);
5592 if (STRNCMP(s, "namespace", 9) == 0 && (s[9] == NUL || !vim_iswordc(s[9])))
5593 {
5594 p = cin_skipcomment(skipwhite(s + 9));
5595 while (*p != NUL)
5596 {
5597 if (vim_iswhite(*p))
5598 {
5599 has_name = TRUE; /* found end of a name */
5600 p = cin_skipcomment(skipwhite(p));
5601 }
5602 else if (*p == '{')
5603 {
5604 break;
5605 }
5606 else if (vim_iswordc(*p))
5607 {
5608 if (has_name)
5609 return FALSE; /* word character after skipping past name */
5610 ++p;
5611 }
5612 else
5613 {
5614 return FALSE;
5615 }
5616 }
5617 return TRUE;
5618 }
5619 return FALSE;
5620}
5621
Bram Moolenaar071d4272004-06-13 20:20:40 +00005622/*
5623 * Return a pointer to the first non-empty non-comment character after a ':'.
5624 * Return NULL if not found.
5625 * case 234: a = b;
5626 * ^
5627 */
5628 static char_u *
5629after_label(l)
5630 char_u *l;
5631{
5632 for ( ; *l; ++l)
5633 {
5634 if (*l == ':')
5635 {
5636 if (l[1] == ':') /* skip over "::" for C++ */
5637 ++l;
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005638 else if (!cin_iscase(l + 1, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005639 break;
5640 }
5641 else if (*l == '\'' && l[1] && l[2] == '\'')
5642 l += 2; /* skip over 'x' */
5643 }
5644 if (*l == NUL)
5645 return NULL;
5646 l = cin_skipcomment(l + 1);
5647 if (*l == NUL)
5648 return NULL;
5649 return l;
5650}
5651
5652/*
5653 * Get indent of line "lnum", skipping a label.
5654 * Return 0 if there is nothing after the label.
5655 */
5656 static int
5657get_indent_nolabel(lnum) /* XXX */
5658 linenr_T lnum;
5659{
5660 char_u *l;
5661 pos_T fp;
5662 colnr_T col;
5663 char_u *p;
5664
5665 l = ml_get(lnum);
5666 p = after_label(l);
5667 if (p == NULL)
5668 return 0;
5669
5670 fp.col = (colnr_T)(p - l);
5671 fp.lnum = lnum;
5672 getvcol(curwin, &fp, &col, NULL, NULL);
5673 return (int)col;
5674}
5675
5676/*
5677 * Find indent for line "lnum", ignoring any case or jump label.
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005678 * Also return a pointer to the text (after the label) in "pp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005679 * label: if (asdf && asdfasdf)
5680 * ^
5681 */
5682 static int
5683skip_label(lnum, pp, ind_maxcomment)
5684 linenr_T lnum;
5685 char_u **pp;
5686 int ind_maxcomment;
5687{
5688 char_u *l;
5689 int amount;
5690 pos_T cursor_save;
5691
5692 cursor_save = curwin->w_cursor;
5693 curwin->w_cursor.lnum = lnum;
5694 l = ml_get_curline();
5695 /* XXX */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005696 if (cin_iscase(l, FALSE) || cin_isscopedecl(l)
5697 || cin_islabel(ind_maxcomment))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698 {
5699 amount = get_indent_nolabel(lnum);
5700 l = after_label(ml_get_curline());
5701 if (l == NULL) /* just in case */
5702 l = ml_get_curline();
5703 }
5704 else
5705 {
5706 amount = get_indent();
5707 l = ml_get_curline();
5708 }
5709 *pp = l;
5710
5711 curwin->w_cursor = cursor_save;
5712 return amount;
5713}
5714
5715/*
5716 * Return the indent of the first variable name after a type in a declaration.
5717 * int a, indent of "a"
5718 * static struct foo b, indent of "b"
5719 * enum bla c, indent of "c"
5720 * Returns zero when it doesn't look like a declaration.
5721 */
5722 static int
5723cin_first_id_amount()
5724{
5725 char_u *line, *p, *s;
5726 int len;
5727 pos_T fp;
5728 colnr_T col;
5729
5730 line = ml_get_curline();
5731 p = skipwhite(line);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005732 len = (int)(skiptowhite(p) - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733 if (len == 6 && STRNCMP(p, "static", 6) == 0)
5734 {
5735 p = skipwhite(p + 6);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00005736 len = (int)(skiptowhite(p) - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005737 }
5738 if (len == 6 && STRNCMP(p, "struct", 6) == 0)
5739 p = skipwhite(p + 6);
5740 else if (len == 4 && STRNCMP(p, "enum", 4) == 0)
5741 p = skipwhite(p + 4);
5742 else if ((len == 8 && STRNCMP(p, "unsigned", 8) == 0)
5743 || (len == 6 && STRNCMP(p, "signed", 6) == 0))
5744 {
5745 s = skipwhite(p + len);
5746 if ((STRNCMP(s, "int", 3) == 0 && vim_iswhite(s[3]))
5747 || (STRNCMP(s, "long", 4) == 0 && vim_iswhite(s[4]))
5748 || (STRNCMP(s, "short", 5) == 0 && vim_iswhite(s[5]))
5749 || (STRNCMP(s, "char", 4) == 0 && vim_iswhite(s[4])))
5750 p = s;
5751 }
5752 for (len = 0; vim_isIDc(p[len]); ++len)
5753 ;
5754 if (len == 0 || !vim_iswhite(p[len]) || cin_nocode(p))
5755 return 0;
5756
5757 p = skipwhite(p + len);
5758 fp.lnum = curwin->w_cursor.lnum;
5759 fp.col = (colnr_T)(p - line);
5760 getvcol(curwin, &fp, &col, NULL, NULL);
5761 return (int)col;
5762}
5763
5764/*
5765 * Return the indent of the first non-blank after an equal sign.
5766 * char *foo = "here";
5767 * Return zero if no (useful) equal sign found.
5768 * Return -1 if the line above "lnum" ends in a backslash.
5769 * foo = "asdf\
5770 * asdf\
5771 * here";
5772 */
5773 static int
5774cin_get_equal_amount(lnum)
5775 linenr_T lnum;
5776{
5777 char_u *line;
5778 char_u *s;
5779 colnr_T col;
5780 pos_T fp;
5781
5782 if (lnum > 1)
5783 {
5784 line = ml_get(lnum - 1);
5785 if (*line != NUL && line[STRLEN(line) - 1] == '\\')
5786 return -1;
5787 }
5788
5789 line = s = ml_get(lnum);
5790 while (*s != NUL && vim_strchr((char_u *)"=;{}\"'", *s) == NULL)
5791 {
5792 if (cin_iscomment(s)) /* ignore comments */
5793 s = cin_skipcomment(s);
5794 else
5795 ++s;
5796 }
5797 if (*s != '=')
5798 return 0;
5799
5800 s = skipwhite(s + 1);
5801 if (cin_nocode(s))
5802 return 0;
5803
5804 if (*s == '"') /* nice alignment for continued strings */
5805 ++s;
5806
5807 fp.lnum = lnum;
5808 fp.col = (colnr_T)(s - line);
5809 getvcol(curwin, &fp, &col, NULL, NULL);
5810 return (int)col;
5811}
5812
5813/*
5814 * Recognize a preprocessor statement: Any line that starts with '#'.
5815 */
5816 static int
5817cin_ispreproc(s)
5818 char_u *s;
5819{
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02005820 if (*skipwhite(s) == '#')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005821 return TRUE;
5822 return FALSE;
5823}
5824
5825/*
5826 * Return TRUE if line "*pp" at "*lnump" is a preprocessor statement or a
5827 * continuation line of a preprocessor statement. Decrease "*lnump" to the
5828 * start and return the line in "*pp".
5829 */
5830 static int
5831cin_ispreproc_cont(pp, lnump)
5832 char_u **pp;
5833 linenr_T *lnump;
5834{
5835 char_u *line = *pp;
5836 linenr_T lnum = *lnump;
5837 int retval = FALSE;
5838
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00005839 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005840 {
5841 if (cin_ispreproc(line))
5842 {
5843 retval = TRUE;
5844 *lnump = lnum;
5845 break;
5846 }
5847 if (lnum == 1)
5848 break;
5849 line = ml_get(--lnum);
5850 if (*line == NUL || line[STRLEN(line) - 1] != '\\')
5851 break;
5852 }
5853
5854 if (lnum != *lnump)
5855 *pp = ml_get(*lnump);
5856 return retval;
5857}
5858
5859/*
5860 * Recognize the start of a C or C++ comment.
5861 */
5862 static int
5863cin_iscomment(p)
5864 char_u *p;
5865{
5866 return (p[0] == '/' && (p[1] == '*' || p[1] == '/'));
5867}
5868
5869/*
5870 * Recognize the start of a "//" comment.
5871 */
5872 static int
5873cin_islinecomment(p)
5874 char_u *p;
5875{
5876 return (p[0] == '/' && p[1] == '/');
5877}
5878
5879/*
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005880 * Recognize a line that starts with '{' or '}', or ends with ';', ',', '{' or
5881 * '}'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005882 * Don't consider "} else" a terminated line.
Bram Moolenaar496f9512011-05-19 16:35:09 +02005883 * If a line begins with an "else", only consider it terminated if no unmatched
5884 * opening braces follow (handle "else { foo();" correctly).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005885 * Return the character terminating the line (ending char's have precedence if
5886 * both apply in order to determine initializations).
5887 */
5888 static int
5889cin_isterminated(s, incl_open, incl_comma)
5890 char_u *s;
5891 int incl_open; /* include '{' at the end as terminator */
5892 int incl_comma; /* recognize a trailing comma */
5893{
Bram Moolenaar496f9512011-05-19 16:35:09 +02005894 char_u found_start = 0;
5895 unsigned n_open = 0;
5896 int is_else = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005897
5898 s = cin_skipcomment(s);
5899
5900 if (*s == '{' || (*s == '}' && !cin_iselse(s)))
5901 found_start = *s;
5902
Bram Moolenaar496f9512011-05-19 16:35:09 +02005903 if (!found_start)
5904 is_else = cin_iselse(s);
5905
Bram Moolenaar071d4272004-06-13 20:20:40 +00005906 while (*s)
5907 {
5908 /* skip over comments, "" strings and 'c'haracters */
5909 s = skip_string(cin_skipcomment(s));
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005910 if (*s == '}' && n_open > 0)
5911 --n_open;
Bram Moolenaar496f9512011-05-19 16:35:09 +02005912 if ((!is_else || n_open == 0)
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005913 && (*s == ';' || *s == '}' || (incl_comma && *s == ','))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005914 && cin_nocode(s + 1))
5915 return *s;
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005916 else if (*s == '{')
5917 {
5918 if (incl_open && cin_nocode(s + 1))
5919 return *s;
5920 else
5921 ++n_open;
5922 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923
5924 if (*s)
5925 s++;
5926 }
5927 return found_start;
5928}
5929
5930/*
5931 * Recognize the basic picture of a function declaration -- it needs to
5932 * have an open paren somewhere and a close paren at the end of the line and
5933 * no semicolons anywhere.
5934 * When a line ends in a comma we continue looking in the next line.
5935 * "sp" points to a string with the line. When looking at other lines it must
5936 * be restored to the line. When it's NULL fetch lines here.
5937 * "lnum" is where we start looking.
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005938 * "min_lnum" is the line before which we will not be looking.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005939 */
5940 static int
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005941cin_isfuncdecl(sp, first_lnum, min_lnum, ind_maxparen, ind_maxcomment)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942 char_u **sp;
5943 linenr_T first_lnum;
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005944 linenr_T min_lnum;
5945 int ind_maxparen;
5946 int ind_maxcomment;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005947{
5948 char_u *s;
5949 linenr_T lnum = first_lnum;
5950 int retval = FALSE;
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005951 pos_T *trypos;
5952 int just_started = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005953
5954 if (sp == NULL)
5955 s = ml_get(lnum);
5956 else
5957 s = *sp;
5958
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005959 if (find_last_paren(s, '(', ')')
5960 && (trypos = find_match_paren(ind_maxparen, ind_maxcomment)) != NULL)
5961 {
5962 lnum = trypos->lnum;
5963 if (lnum < min_lnum)
5964 return FALSE;
5965
5966 s = ml_get(lnum);
5967 }
5968
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02005969 /* Ignore line starting with #. */
5970 if (cin_ispreproc(s))
5971 return FALSE;
5972
Bram Moolenaar071d4272004-06-13 20:20:40 +00005973 while (*s && *s != '(' && *s != ';' && *s != '\'' && *s != '"')
5974 {
5975 if (cin_iscomment(s)) /* ignore comments */
5976 s = cin_skipcomment(s);
5977 else
5978 ++s;
5979 }
5980 if (*s != '(')
5981 return FALSE; /* ';', ' or " before any () or no '(' */
5982
5983 while (*s && *s != ';' && *s != '\'' && *s != '"')
5984 {
5985 if (*s == ')' && cin_nocode(s + 1))
5986 {
5987 /* ')' at the end: may have found a match
5988 * Check for he previous line not to end in a backslash:
5989 * #if defined(x) && \
5990 * defined(y)
5991 */
5992 lnum = first_lnum - 1;
5993 s = ml_get(lnum);
5994 if (*s == NUL || s[STRLEN(s) - 1] != '\\')
5995 retval = TRUE;
5996 goto done;
5997 }
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02005998 if ((*s == ',' && cin_nocode(s + 1)) || s[1] == NUL || cin_nocode(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005999 {
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02006000 int comma = (*s == ',');
6001
6002 /* ',' at the end: continue looking in the next line.
6003 * At the end: check for ',' in the next line, for this style:
6004 * func(arg1
6005 * , arg2) */
6006 for (;;)
6007 {
6008 if (lnum >= curbuf->b_ml.ml_line_count)
6009 break;
6010 s = ml_get(++lnum);
6011 if (!cin_ispreproc(s))
6012 break;
6013 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006014 if (lnum >= curbuf->b_ml.ml_line_count)
6015 break;
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02006016 /* Require a comma at end of the line or a comma or ')' at the
6017 * start of next line. */
6018 s = skipwhite(s);
Bram Moolenaarc367faa2011-12-14 20:21:35 +01006019 if (!just_started && (!comma && *s != ',' && *s != ')'))
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02006020 break;
Bram Moolenaarc367faa2011-12-14 20:21:35 +01006021 just_started = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006022 }
6023 else if (cin_iscomment(s)) /* ignore comments */
6024 s = cin_skipcomment(s);
6025 else
Bram Moolenaarc367faa2011-12-14 20:21:35 +01006026 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006027 ++s;
Bram Moolenaarc367faa2011-12-14 20:21:35 +01006028 just_started = FALSE;
6029 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006030 }
6031
6032done:
6033 if (lnum != first_lnum && sp != NULL)
6034 *sp = ml_get(first_lnum);
6035
6036 return retval;
6037}
6038
6039 static int
6040cin_isif(p)
6041 char_u *p;
6042{
6043 return (STRNCMP(p, "if", 2) == 0 && !vim_isIDc(p[2]));
6044}
6045
6046 static int
6047cin_iselse(p)
6048 char_u *p;
6049{
6050 if (*p == '}') /* accept "} else" */
6051 p = cin_skipcomment(p + 1);
6052 return (STRNCMP(p, "else", 4) == 0 && !vim_isIDc(p[4]));
6053}
6054
6055 static int
6056cin_isdo(p)
6057 char_u *p;
6058{
6059 return (STRNCMP(p, "do", 2) == 0 && !vim_isIDc(p[2]));
6060}
6061
6062/*
6063 * Check if this is a "while" that should have a matching "do".
6064 * We only accept a "while (condition) ;", with only white space between the
6065 * ')' and ';'. The condition may be spread over several lines.
6066 */
6067 static int
6068cin_iswhileofdo(p, lnum, ind_maxparen) /* XXX */
6069 char_u *p;
6070 linenr_T lnum;
6071 int ind_maxparen;
6072{
6073 pos_T cursor_save;
6074 pos_T *trypos;
6075 int retval = FALSE;
6076
6077 p = cin_skipcomment(p);
6078 if (*p == '}') /* accept "} while (cond);" */
6079 p = cin_skipcomment(p + 1);
Bram Moolenaar75342212013-03-07 13:13:52 +01006080 if (cin_starts_with(p, "while"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006081 {
6082 cursor_save = curwin->w_cursor;
6083 curwin->w_cursor.lnum = lnum;
6084 curwin->w_cursor.col = 0;
6085 p = ml_get_curline();
6086 while (*p && *p != 'w') /* skip any '}', until the 'w' of the "while" */
6087 {
6088 ++p;
6089 ++curwin->w_cursor.col;
6090 }
6091 if ((trypos = findmatchlimit(NULL, 0, 0, ind_maxparen)) != NULL
6092 && *cin_skipcomment(ml_get_pos(trypos) + 1) == ';')
6093 retval = TRUE;
6094 curwin->w_cursor = cursor_save;
6095 }
6096 return retval;
6097}
6098
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006099/*
Bram Moolenaarb345d492012-04-09 20:42:26 +02006100 * Check whether in "p" there is an "if", "for" or "while" before "*poffset".
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006101 * Return 0 if there is none.
6102 * Otherwise return !0 and update "*poffset" to point to the place where the
6103 * string was found.
6104 */
6105 static int
Bram Moolenaarb345d492012-04-09 20:42:26 +02006106cin_is_if_for_while_before_offset(line, poffset)
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006107 char_u *line;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006108 int *poffset;
6109{
Bram Moolenaarb345d492012-04-09 20:42:26 +02006110 int offset = *poffset;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006111
6112 if (offset-- < 2)
6113 return 0;
6114 while (offset > 2 && vim_iswhite(line[offset]))
6115 --offset;
6116
6117 offset -= 1;
6118 if (!STRNCMP(line + offset, "if", 2))
6119 goto probablyFound;
6120
6121 if (offset >= 1)
6122 {
6123 offset -= 1;
6124 if (!STRNCMP(line + offset, "for", 3))
6125 goto probablyFound;
6126
6127 if (offset >= 2)
6128 {
6129 offset -= 2;
6130 if (!STRNCMP(line + offset, "while", 5))
6131 goto probablyFound;
6132 }
6133 }
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006134 return 0;
Bram Moolenaarb345d492012-04-09 20:42:26 +02006135
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006136probablyFound:
6137 if (!offset || !vim_isIDc(line[offset - 1]))
6138 {
6139 *poffset = offset;
6140 return 1;
6141 }
6142 return 0;
6143}
6144
6145/*
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006146 * Return TRUE if we are at the end of a do-while.
6147 * do
6148 * nothing;
6149 * while (foo
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00006150 * && bar); <-- here
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006151 * Adjust the cursor to the line with "while".
6152 */
6153 static int
6154cin_iswhileofdo_end(terminated, ind_maxparen, ind_maxcomment)
6155 int terminated;
6156 int ind_maxparen;
6157 int ind_maxcomment;
6158{
6159 char_u *line;
6160 char_u *p;
6161 char_u *s;
6162 pos_T *trypos;
6163 int i;
6164
6165 if (terminated != ';') /* there must be a ';' at the end */
6166 return FALSE;
6167
6168 p = line = ml_get_curline();
6169 while (*p != NUL)
6170 {
6171 p = cin_skipcomment(p);
6172 if (*p == ')')
6173 {
6174 s = skipwhite(p + 1);
6175 if (*s == ';' && cin_nocode(s + 1))
6176 {
6177 /* Found ");" at end of the line, now check there is "while"
6178 * before the matching '('. XXX */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006179 i = (int)(p - line);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006180 curwin->w_cursor.col = i;
6181 trypos = find_match_paren(ind_maxparen, ind_maxcomment);
6182 if (trypos != NULL)
6183 {
6184 s = cin_skipcomment(ml_get(trypos->lnum));
6185 if (*s == '}') /* accept "} while (cond);" */
6186 s = cin_skipcomment(s + 1);
Bram Moolenaar75342212013-03-07 13:13:52 +01006187 if (cin_starts_with(s, "while"))
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006188 {
6189 curwin->w_cursor.lnum = trypos->lnum;
6190 return TRUE;
6191 }
6192 }
6193
6194 /* Searching may have made "line" invalid, get it again. */
6195 line = ml_get_curline();
6196 p = line + i;
6197 }
6198 }
6199 if (*p != NUL)
6200 ++p;
6201 }
6202 return FALSE;
6203}
6204
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205 static int
6206cin_isbreak(p)
6207 char_u *p;
6208{
6209 return (STRNCMP(p, "break", 5) == 0 && !vim_isIDc(p[5]));
6210}
6211
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006212/*
6213 * Find the position of a C++ base-class declaration or
Bram Moolenaar071d4272004-06-13 20:20:40 +00006214 * constructor-initialization. eg:
6215 *
6216 * class MyClass :
6217 * baseClass <-- here
6218 * class MyClass : public baseClass,
6219 * anotherBaseClass <-- here (should probably lineup ??)
6220 * MyClass::MyClass(...) :
6221 * baseClass(...) <-- here (constructor-initialization)
Bram Moolenaar18144c82006-04-12 21:52:12 +00006222 *
6223 * This is a lot of guessing. Watch out for "cond ? func() : foo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006224 */
6225 static int
Bram Moolenaare7c56862007-08-04 10:14:52 +00006226cin_is_cpp_baseclass(col)
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006227 colnr_T *col; /* return: column to align with */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006228{
6229 char_u *s;
6230 int class_or_struct, lookfor_ctor_init, cpp_base_class;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006231 linenr_T lnum = curwin->w_cursor.lnum;
Bram Moolenaare7c56862007-08-04 10:14:52 +00006232 char_u *line = ml_get_curline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006233
6234 *col = 0;
6235
Bram Moolenaar21cf8232004-07-16 20:18:37 +00006236 s = skipwhite(line);
6237 if (*s == '#') /* skip #define FOO x ? (x) : x */
6238 return FALSE;
6239 s = cin_skipcomment(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006240 if (*s == NUL)
6241 return FALSE;
6242
6243 cpp_base_class = lookfor_ctor_init = class_or_struct = FALSE;
6244
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006245 /* Search for a line starting with '#', empty, ending in ';' or containing
6246 * '{' or '}' and start below it. This handles the following situations:
6247 * a = cond ?
6248 * func() :
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00006249 * asdf;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006250 * func::foo()
6251 * : something
6252 * {}
6253 * Foo::Foo (int one, int two)
6254 * : something(4),
6255 * somethingelse(3)
6256 * {}
6257 */
6258 while (lnum > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006259 {
Bram Moolenaare7c56862007-08-04 10:14:52 +00006260 line = ml_get(lnum - 1);
6261 s = skipwhite(line);
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006262 if (*s == '#' || *s == NUL)
6263 break;
6264 while (*s != NUL)
6265 {
6266 s = cin_skipcomment(s);
6267 if (*s == '{' || *s == '}'
6268 || (*s == ';' && cin_nocode(s + 1)))
6269 break;
6270 if (*s != NUL)
6271 ++s;
6272 }
6273 if (*s != NUL)
6274 break;
6275 --lnum;
6276 }
6277
Bram Moolenaare7c56862007-08-04 10:14:52 +00006278 line = ml_get(lnum);
6279 s = cin_skipcomment(line);
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006280 for (;;)
6281 {
6282 if (*s == NUL)
6283 {
6284 if (lnum == curwin->w_cursor.lnum)
6285 break;
6286 /* Continue in the cursor line. */
Bram Moolenaare7c56862007-08-04 10:14:52 +00006287 line = ml_get(++lnum);
6288 s = cin_skipcomment(line);
6289 if (*s == NUL)
6290 continue;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006291 }
6292
Bram Moolenaaraede6ce2011-05-10 11:56:30 +02006293 if (s[0] == '"')
6294 s = skip_string(s) + 1;
6295 else if (s[0] == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006296 {
6297 if (s[1] == ':')
6298 {
6299 /* skip double colon. It can't be a constructor
6300 * initialization any more */
6301 lookfor_ctor_init = FALSE;
6302 s = cin_skipcomment(s + 2);
6303 }
6304 else if (lookfor_ctor_init || class_or_struct)
6305 {
6306 /* we have something found, that looks like the start of
Bram Moolenaare21877a2008-02-13 09:58:14 +00006307 * cpp-base-class-declaration or constructor-initialization */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006308 cpp_base_class = TRUE;
6309 lookfor_ctor_init = class_or_struct = FALSE;
6310 *col = 0;
6311 s = cin_skipcomment(s + 1);
6312 }
6313 else
6314 s = cin_skipcomment(s + 1);
6315 }
6316 else if ((STRNCMP(s, "class", 5) == 0 && !vim_isIDc(s[5]))
6317 || (STRNCMP(s, "struct", 6) == 0 && !vim_isIDc(s[6])))
6318 {
6319 class_or_struct = TRUE;
6320 lookfor_ctor_init = FALSE;
6321
6322 if (*s == 'c')
6323 s = cin_skipcomment(s + 5);
6324 else
6325 s = cin_skipcomment(s + 6);
6326 }
6327 else
6328 {
6329 if (s[0] == '{' || s[0] == '}' || s[0] == ';')
6330 {
6331 cpp_base_class = lookfor_ctor_init = class_or_struct = FALSE;
6332 }
6333 else if (s[0] == ')')
6334 {
6335 /* Constructor-initialization is assumed if we come across
6336 * something like "):" */
6337 class_or_struct = FALSE;
6338 lookfor_ctor_init = TRUE;
6339 }
Bram Moolenaar18144c82006-04-12 21:52:12 +00006340 else if (s[0] == '?')
6341 {
6342 /* Avoid seeing '() :' after '?' as constructor init. */
6343 return FALSE;
6344 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006345 else if (!vim_isIDc(s[0]))
6346 {
6347 /* if it is not an identifier, we are wrong */
6348 class_or_struct = FALSE;
6349 lookfor_ctor_init = FALSE;
6350 }
6351 else if (*col == 0)
6352 {
6353 /* it can't be a constructor-initialization any more */
6354 lookfor_ctor_init = FALSE;
6355
6356 /* the first statement starts here: lineup with this one... */
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006357 if (cpp_base_class)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358 *col = (colnr_T)(s - line);
6359 }
6360
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006361 /* When the line ends in a comma don't align with it. */
6362 if (lnum == curwin->w_cursor.lnum && *s == ',' && cin_nocode(s + 1))
6363 *col = 0;
6364
Bram Moolenaar071d4272004-06-13 20:20:40 +00006365 s = cin_skipcomment(s + 1);
6366 }
6367 }
6368
6369 return cpp_base_class;
6370}
6371
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006372 static int
6373get_baseclass_amount(col, ind_maxparen, ind_maxcomment, ind_cpp_baseclass)
6374 int col;
6375 int ind_maxparen;
6376 int ind_maxcomment;
6377 int ind_cpp_baseclass;
6378{
6379 int amount;
6380 colnr_T vcol;
6381 pos_T *trypos;
6382
6383 if (col == 0)
6384 {
6385 amount = get_indent();
6386 if (find_last_paren(ml_get_curline(), '(', ')')
6387 && (trypos = find_match_paren(ind_maxparen,
6388 ind_maxcomment)) != NULL)
6389 amount = get_indent_lnum(trypos->lnum); /* XXX */
6390 if (!cin_ends_in(ml_get_curline(), (char_u *)",", NULL))
6391 amount += ind_cpp_baseclass;
6392 }
6393 else
6394 {
6395 curwin->w_cursor.col = col;
6396 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
6397 amount = (int)vcol;
6398 }
6399 if (amount < ind_cpp_baseclass)
6400 amount = ind_cpp_baseclass;
6401 return amount;
6402}
6403
Bram Moolenaar071d4272004-06-13 20:20:40 +00006404/*
6405 * Return TRUE if string "s" ends with the string "find", possibly followed by
6406 * white space and comments. Skip strings and comments.
6407 * Ignore "ignore" after "find" if it's not NULL.
6408 */
6409 static int
6410cin_ends_in(s, find, ignore)
6411 char_u *s;
6412 char_u *find;
6413 char_u *ignore;
6414{
6415 char_u *p = s;
6416 char_u *r;
6417 int len = (int)STRLEN(find);
6418
6419 while (*p != NUL)
6420 {
6421 p = cin_skipcomment(p);
6422 if (STRNCMP(p, find, len) == 0)
6423 {
6424 r = skipwhite(p + len);
6425 if (ignore != NULL && STRNCMP(r, ignore, STRLEN(ignore)) == 0)
6426 r = skipwhite(r + STRLEN(ignore));
6427 if (cin_nocode(r))
6428 return TRUE;
6429 }
6430 if (*p != NUL)
6431 ++p;
6432 }
6433 return FALSE;
6434}
6435
6436/*
Bram Moolenaar75342212013-03-07 13:13:52 +01006437 * Return TRUE when "s" starts with "word" and then a non-ID character.
6438 */
6439 static int
6440cin_starts_with(s, word)
6441 char_u *s;
6442 char *word;
6443{
Bram Moolenaarb3cb9822013-03-13 17:01:52 +01006444 int l = (int)STRLEN(word);
Bram Moolenaar75342212013-03-07 13:13:52 +01006445
6446 return (STRNCMP(s, word, l) == 0 && !vim_isIDc(s[l]));
6447}
6448
6449/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006450 * Skip strings, chars and comments until at or past "trypos".
6451 * Return the column found.
6452 */
6453 static int
6454cin_skip2pos(trypos)
6455 pos_T *trypos;
6456{
6457 char_u *line;
6458 char_u *p;
6459
6460 p = line = ml_get(trypos->lnum);
6461 while (*p && (colnr_T)(p - line) < trypos->col)
6462 {
6463 if (cin_iscomment(p))
6464 p = cin_skipcomment(p);
6465 else
6466 {
6467 p = skip_string(p);
6468 ++p;
6469 }
6470 }
6471 return (int)(p - line);
6472}
6473
6474/*
6475 * Find the '{' at the start of the block we are in.
6476 * Return NULL if no match found.
6477 * Ignore a '{' that is in a comment, makes indenting the next three lines
6478 * work. */
6479/* foo() */
6480/* { */
6481/* } */
6482
6483 static pos_T *
6484find_start_brace(ind_maxcomment) /* XXX */
6485 int ind_maxcomment;
6486{
6487 pos_T cursor_save;
6488 pos_T *trypos;
6489 pos_T *pos;
6490 static pos_T pos_copy;
6491
6492 cursor_save = curwin->w_cursor;
6493 while ((trypos = findmatchlimit(NULL, '{', FM_BLOCKSTOP, 0)) != NULL)
6494 {
6495 pos_copy = *trypos; /* copy pos_T, next findmatch will change it */
6496 trypos = &pos_copy;
6497 curwin->w_cursor = *trypos;
6498 pos = NULL;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006499 /* ignore the { if it's in a // or / * * / comment */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006500 if ((colnr_T)cin_skip2pos(trypos) == trypos->col
6501 && (pos = find_start_comment(ind_maxcomment)) == NULL) /* XXX */
6502 break;
6503 if (pos != NULL)
6504 curwin->w_cursor.lnum = pos->lnum;
6505 }
6506 curwin->w_cursor = cursor_save;
6507 return trypos;
6508}
6509
6510/*
6511 * Find the matching '(', failing if it is in a comment.
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006512 * Return NULL if no match found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006513 */
6514 static pos_T *
6515find_match_paren(ind_maxparen, ind_maxcomment) /* XXX */
6516 int ind_maxparen;
6517 int ind_maxcomment;
6518{
6519 pos_T cursor_save;
6520 pos_T *trypos;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006521 static pos_T pos_copy;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006522
6523 cursor_save = curwin->w_cursor;
6524 if ((trypos = findmatchlimit(NULL, '(', 0, ind_maxparen)) != NULL)
6525 {
6526 /* check if the ( is in a // comment */
6527 if ((colnr_T)cin_skip2pos(trypos) > trypos->col)
6528 trypos = NULL;
6529 else
6530 {
6531 pos_copy = *trypos; /* copy trypos, findmatch will change it */
6532 trypos = &pos_copy;
6533 curwin->w_cursor = *trypos;
6534 if (find_start_comment(ind_maxcomment) != NULL) /* XXX */
6535 trypos = NULL;
6536 }
6537 }
6538 curwin->w_cursor = cursor_save;
6539 return trypos;
6540}
6541
6542/*
6543 * Return ind_maxparen corrected for the difference in line number between the
6544 * cursor position and "startpos". This makes sure that searching for a
6545 * matching paren above the cursor line doesn't find a match because of
6546 * looking a few lines further.
6547 */
6548 static int
6549corr_ind_maxparen(ind_maxparen, startpos)
6550 int ind_maxparen;
6551 pos_T *startpos;
6552{
6553 long n = (long)startpos->lnum - (long)curwin->w_cursor.lnum;
6554
6555 if (n > 0 && n < ind_maxparen / 2)
6556 return ind_maxparen - (int)n;
6557 return ind_maxparen;
6558}
6559
6560/*
6561 * Set w_cursor.col to the column number of the last unmatched ')' or '{' in
Bram Moolenaar6d8f9c62011-11-30 13:03:28 +01006562 * line "l". "l" must point to the start of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006563 */
6564 static int
6565find_last_paren(l, start, end)
6566 char_u *l;
6567 int start, end;
6568{
6569 int i;
6570 int retval = FALSE;
6571 int open_count = 0;
6572
6573 curwin->w_cursor.col = 0; /* default is start of line */
6574
Bram Moolenaar6d8f9c62011-11-30 13:03:28 +01006575 for (i = 0; l[i] != NUL; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006576 {
6577 i = (int)(cin_skipcomment(l + i) - l); /* ignore parens in comments */
6578 i = (int)(skip_string(l + i) - l); /* ignore parens in quotes */
6579 if (l[i] == start)
6580 ++open_count;
6581 else if (l[i] == end)
6582 {
6583 if (open_count > 0)
6584 --open_count;
6585 else
6586 {
6587 curwin->w_cursor.col = i;
6588 retval = TRUE;
6589 }
6590 }
6591 }
6592 return retval;
6593}
6594
6595 int
6596get_c_indent()
6597{
Bram Moolenaar14f24742012-08-08 18:01:05 +02006598 int sw = (int)get_sw_value();
6599
Bram Moolenaar071d4272004-06-13 20:20:40 +00006600 /*
6601 * spaces from a block's opening brace the prevailing indent for that
6602 * block should be
6603 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006604
6605 int ind_level = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006606
6607 /*
6608 * spaces from the edge of the line an open brace that's at the end of a
6609 * line is imagined to be.
6610 */
6611 int ind_open_imag = 0;
6612
6613 /*
Bram Moolenaar1a509df2010-08-01 17:59:57 +02006614 * spaces from the prevailing indent for a line that is not preceded by
Bram Moolenaar071d4272004-06-13 20:20:40 +00006615 * an opening brace.
6616 */
6617 int ind_no_brace = 0;
6618
6619 /*
6620 * column where the first { of a function should be located }
6621 */
6622 int ind_first_open = 0;
6623
6624 /*
6625 * spaces from the prevailing indent a leftmost open brace should be
6626 * located
6627 */
6628 int ind_open_extra = 0;
6629
6630 /*
6631 * spaces from the matching open brace (real location for one at the left
6632 * edge; imaginary location from one that ends a line) the matching close
6633 * brace should be located
6634 */
6635 int ind_close_extra = 0;
6636
6637 /*
6638 * spaces from the edge of the line an open brace sitting in the leftmost
6639 * column is imagined to be
6640 */
6641 int ind_open_left_imag = 0;
6642
6643 /*
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006644 * Spaces jump labels should be shifted to the left if N is non-negative,
6645 * otherwise the jump label will be put to column 1.
6646 */
6647 int ind_jump_label = -1;
6648
6649 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006650 * spaces from the switch() indent a "case xx" label should be located
6651 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006652 int ind_case = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006653
6654 /*
6655 * spaces from the "case xx:" code after a switch() should be located
6656 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006657 int ind_case_code = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006658
6659 /*
6660 * lineup break at end of case in switch() with case label
6661 */
6662 int ind_case_break = 0;
6663
6664 /*
6665 * spaces from the class declaration indent a scope declaration label
6666 * should be located
6667 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006668 int ind_scopedecl = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006669
6670 /*
6671 * spaces from the scope declaration label code should be located
6672 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006673 int ind_scopedecl_code = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006674
6675 /*
6676 * amount K&R-style parameters should be indented
6677 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006678 int ind_param = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006679
6680 /*
6681 * amount a function type spec should be indented
6682 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006683 int ind_func_type = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006684
6685 /*
6686 * amount a cpp base class declaration or constructor initialization
6687 * should be indented
6688 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006689 int ind_cpp_baseclass = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006690
6691 /*
6692 * additional spaces beyond the prevailing indent a continuation line
6693 * should be located
6694 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006695 int ind_continuation = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006696
6697 /*
6698 * spaces from the indent of the line with an unclosed parentheses
6699 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006700 int ind_unclosed = sw * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006701
6702 /*
6703 * spaces from the indent of the line with an unclosed parentheses, which
6704 * itself is also unclosed
6705 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006706 int ind_unclosed2 = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006707
6708 /*
6709 * suppress ignoring spaces from the indent of a line starting with an
6710 * unclosed parentheses.
6711 */
6712 int ind_unclosed_noignore = 0;
6713
6714 /*
6715 * If the opening paren is the last nonwhite character on the line, and
6716 * ind_unclosed_wrapped is nonzero, use this indent relative to the outer
6717 * context (for very long lines).
6718 */
6719 int ind_unclosed_wrapped = 0;
6720
6721 /*
6722 * suppress ignoring white space when lining up with the character after
6723 * an unclosed parentheses.
6724 */
6725 int ind_unclosed_whiteok = 0;
6726
6727 /*
6728 * indent a closing parentheses under the line start of the matching
6729 * opening parentheses.
6730 */
6731 int ind_matching_paren = 0;
6732
6733 /*
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006734 * indent a closing parentheses under the previous line.
6735 */
6736 int ind_paren_prev = 0;
6737
6738 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006739 * Extra indent for comments.
6740 */
6741 int ind_comment = 0;
6742
6743 /*
6744 * spaces from the comment opener when there is nothing after it.
6745 */
6746 int ind_in_comment = 3;
6747
6748 /*
6749 * boolean: if non-zero, use ind_in_comment even if there is something
6750 * after the comment opener.
6751 */
6752 int ind_in_comment2 = 0;
6753
6754 /*
6755 * max lines to search for an open paren
6756 */
6757 int ind_maxparen = 20;
6758
6759 /*
6760 * max lines to search for an open comment
6761 */
6762 int ind_maxcomment = 70;
6763
6764 /*
6765 * handle braces for java code
6766 */
6767 int ind_java = 0;
6768
6769 /*
Bram Moolenaar3acfc302010-07-11 17:23:02 +02006770 * not to confuse JS object properties with labels
6771 */
6772 int ind_js = 0;
6773
6774 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006775 * handle blocked cases correctly
6776 */
6777 int ind_keep_case_label = 0;
6778
Bram Moolenaared38b0a2011-05-25 15:16:18 +02006779 /*
6780 * handle C++ namespace
6781 */
6782 int ind_cpp_namespace = 0;
6783
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006784 /*
6785 * handle continuation lines containing conditions of if(), for() and
6786 * while()
6787 */
6788 int ind_if_for_while = 0;
6789
Bram Moolenaar071d4272004-06-13 20:20:40 +00006790 pos_T cur_curpos;
6791 int amount;
6792 int scope_amount;
Bram Moolenaarb21e5842006-04-16 18:30:08 +00006793 int cur_amount = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006794 colnr_T col;
6795 char_u *theline;
6796 char_u *linecopy;
6797 pos_T *trypos;
6798 pos_T *tryposBrace = NULL;
6799 pos_T our_paren_pos;
6800 char_u *start;
6801 int start_brace;
Bram Moolenaare21877a2008-02-13 09:58:14 +00006802#define BRACE_IN_COL0 1 /* '{' is in column 0 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006803#define BRACE_AT_START 2 /* '{' is at start of line */
6804#define BRACE_AT_END 3 /* '{' is at end of line */
6805 linenr_T ourscope;
6806 char_u *l;
6807 char_u *look;
6808 char_u terminated;
6809 int lookfor;
6810#define LOOKFOR_INITIAL 0
6811#define LOOKFOR_IF 1
6812#define LOOKFOR_DO 2
6813#define LOOKFOR_CASE 3
6814#define LOOKFOR_ANY 4
6815#define LOOKFOR_TERM 5
6816#define LOOKFOR_UNTERM 6
6817#define LOOKFOR_SCOPEDECL 7
6818#define LOOKFOR_NOBREAK 8
6819#define LOOKFOR_CPP_BASECLASS 9
6820#define LOOKFOR_ENUM_OR_INIT 10
6821
6822 int whilelevel;
6823 linenr_T lnum;
6824 char_u *options;
Bram Moolenaar48d27922012-06-13 13:40:48 +02006825 char_u *digits;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006826 int fraction = 0; /* init for GCC */
6827 int divider;
6828 int n;
6829 int iscase;
6830 int lookfor_break;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02006831 int lookfor_cpp_namespace = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006832 int cont_amount = 0; /* amount for continuation line */
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006833 int original_line_islabel;
Bram Moolenaare79d1532011-10-04 18:03:47 +02006834 int added_to_amount = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006835
6836 for (options = curbuf->b_p_cino; *options; )
6837 {
6838 l = options++;
6839 if (*options == '-')
6840 ++options;
Bram Moolenaar48d27922012-06-13 13:40:48 +02006841 digits = options; /* remember where the digits start */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006842 n = getdigits(&options);
6843 divider = 0;
6844 if (*options == '.') /* ".5s" means a fraction */
6845 {
6846 fraction = atol((char *)++options);
6847 while (VIM_ISDIGIT(*options))
6848 {
6849 ++options;
6850 if (divider)
6851 divider *= 10;
6852 else
6853 divider = 10;
6854 }
6855 }
6856 if (*options == 's') /* "2s" means two times 'shiftwidth' */
6857 {
Bram Moolenaar48d27922012-06-13 13:40:48 +02006858 if (options == digits)
Bram Moolenaar14f24742012-08-08 18:01:05 +02006859 n = sw; /* just "s" is one 'shiftwidth' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006860 else
6861 {
Bram Moolenaar14f24742012-08-08 18:01:05 +02006862 n *= sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006863 if (divider)
Bram Moolenaar14f24742012-08-08 18:01:05 +02006864 n += (sw * fraction + divider / 2) / divider;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006865 }
6866 ++options;
6867 }
6868 if (l[1] == '-')
6869 n = -n;
6870 /* When adding an entry here, also update the default 'cinoptions' in
Bram Moolenaar39353fd2007-03-27 09:02:11 +00006871 * doc/indent.txt, and add explanation for it! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006872 switch (*l)
6873 {
6874 case '>': ind_level = n; break;
6875 case 'e': ind_open_imag = n; break;
6876 case 'n': ind_no_brace = n; break;
6877 case 'f': ind_first_open = n; break;
6878 case '{': ind_open_extra = n; break;
6879 case '}': ind_close_extra = n; break;
6880 case '^': ind_open_left_imag = n; break;
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006881 case 'L': ind_jump_label = n; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006882 case ':': ind_case = n; break;
6883 case '=': ind_case_code = n; break;
6884 case 'b': ind_case_break = n; break;
6885 case 'p': ind_param = n; break;
6886 case 't': ind_func_type = n; break;
6887 case '/': ind_comment = n; break;
6888 case 'c': ind_in_comment = n; break;
6889 case 'C': ind_in_comment2 = n; break;
6890 case 'i': ind_cpp_baseclass = n; break;
6891 case '+': ind_continuation = n; break;
6892 case '(': ind_unclosed = n; break;
6893 case 'u': ind_unclosed2 = n; break;
6894 case 'U': ind_unclosed_noignore = n; break;
6895 case 'W': ind_unclosed_wrapped = n; break;
6896 case 'w': ind_unclosed_whiteok = n; break;
6897 case 'm': ind_matching_paren = n; break;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006898 case 'M': ind_paren_prev = n; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006899 case ')': ind_maxparen = n; break;
6900 case '*': ind_maxcomment = n; break;
6901 case 'g': ind_scopedecl = n; break;
6902 case 'h': ind_scopedecl_code = n; break;
6903 case 'j': ind_java = n; break;
Bram Moolenaar3acfc302010-07-11 17:23:02 +02006904 case 'J': ind_js = n; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905 case 'l': ind_keep_case_label = n; break;
Bram Moolenaar39353fd2007-03-27 09:02:11 +00006906 case '#': ind_hash_comment = n; break;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02006907 case 'N': ind_cpp_namespace = n; break;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006908 case 'k': ind_if_for_while = n; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006909 }
Bram Moolenaardfdf3c42010-03-23 18:22:46 +01006910 if (*options == ',')
6911 ++options;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006912 }
6913
6914 /* remember where the cursor was when we started */
6915 cur_curpos = curwin->w_cursor;
6916
Bram Moolenaar3acfc302010-07-11 17:23:02 +02006917 /* if we are at line 1 0 is fine, right? */
6918 if (cur_curpos.lnum == 1)
6919 return 0;
6920
Bram Moolenaar071d4272004-06-13 20:20:40 +00006921 /* Get a copy of the current contents of the line.
6922 * This is required, because only the most recent line obtained with
6923 * ml_get is valid! */
6924 linecopy = vim_strsave(ml_get(cur_curpos.lnum));
6925 if (linecopy == NULL)
6926 return 0;
6927
6928 /*
6929 * In insert mode and the cursor is on a ')' truncate the line at the
6930 * cursor position. We don't want to line up with the matching '(' when
6931 * inserting new stuff.
6932 * For unknown reasons the cursor might be past the end of the line, thus
6933 * check for that.
6934 */
6935 if ((State & INSERT)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00006936 && curwin->w_cursor.col < (colnr_T)STRLEN(linecopy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006937 && linecopy[curwin->w_cursor.col] == ')')
6938 linecopy[curwin->w_cursor.col] = NUL;
6939
6940 theline = skipwhite(linecopy);
6941
6942 /* move the cursor to the start of the line */
6943
6944 curwin->w_cursor.col = 0;
6945
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006946 original_line_islabel = cin_islabel(ind_maxcomment); /* XXX */
6947
Bram Moolenaar071d4272004-06-13 20:20:40 +00006948 /*
6949 * #defines and so on always go at the left when included in 'cinkeys'.
6950 */
6951 if (*theline == '#' && (*linecopy == '#' || in_cinkeys('#', ' ', TRUE)))
6952 {
6953 amount = 0;
6954 }
6955
6956 /*
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006957 * Is it a non-case label? Then that goes at the left margin too unless:
6958 * - JS flag is set.
6959 * - 'L' item has a positive value.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006960 */
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006961 else if (original_line_islabel && !ind_js && ind_jump_label < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006962 {
6963 amount = 0;
6964 }
6965
6966 /*
6967 * If we're inside a "//" comment and there is a "//" comment in a
6968 * previous line, lineup with that one.
6969 */
6970 else if (cin_islinecomment(theline)
6971 && (trypos = find_line_comment()) != NULL) /* XXX */
6972 {
6973 /* find how indented the line beginning the comment is */
6974 getvcol(curwin, trypos, &col, NULL, NULL);
6975 amount = col;
6976 }
6977
6978 /*
6979 * If we're inside a comment and not looking at the start of the
6980 * comment, try using the 'comments' option.
6981 */
6982 else if (!cin_iscomment(theline)
6983 && (trypos = find_start_comment(ind_maxcomment)) != NULL) /* XXX */
6984 {
6985 int lead_start_len = 2;
6986 int lead_middle_len = 1;
6987 char_u lead_start[COM_MAX_LEN]; /* start-comment string */
6988 char_u lead_middle[COM_MAX_LEN]; /* middle-comment string */
6989 char_u lead_end[COM_MAX_LEN]; /* end-comment string */
6990 char_u *p;
6991 int start_align = 0;
6992 int start_off = 0;
6993 int done = FALSE;
6994
6995 /* find how indented the line beginning the comment is */
6996 getvcol(curwin, trypos, &col, NULL, NULL);
6997 amount = col;
Bram Moolenaar4aa97422011-04-11 14:27:38 +02006998 *lead_start = NUL;
6999 *lead_middle = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007000
7001 p = curbuf->b_p_com;
7002 while (*p != NUL)
7003 {
7004 int align = 0;
7005 int off = 0;
7006 int what = 0;
7007
7008 while (*p != NUL && *p != ':')
7009 {
7010 if (*p == COM_START || *p == COM_END || *p == COM_MIDDLE)
7011 what = *p++;
7012 else if (*p == COM_LEFT || *p == COM_RIGHT)
7013 align = *p++;
7014 else if (VIM_ISDIGIT(*p) || *p == '-')
7015 off = getdigits(&p);
7016 else
7017 ++p;
7018 }
7019
7020 if (*p == ':')
7021 ++p;
7022 (void)copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
7023 if (what == COM_START)
7024 {
7025 STRCPY(lead_start, lead_end);
7026 lead_start_len = (int)STRLEN(lead_start);
7027 start_off = off;
7028 start_align = align;
7029 }
7030 else if (what == COM_MIDDLE)
7031 {
7032 STRCPY(lead_middle, lead_end);
7033 lead_middle_len = (int)STRLEN(lead_middle);
7034 }
7035 else if (what == COM_END)
7036 {
7037 /* If our line starts with the middle comment string, line it
7038 * up with the comment opener per the 'comments' option. */
7039 if (STRNCMP(theline, lead_middle, lead_middle_len) == 0
7040 && STRNCMP(theline, lead_end, STRLEN(lead_end)) != 0)
7041 {
7042 done = TRUE;
7043 if (curwin->w_cursor.lnum > 1)
7044 {
7045 /* If the start comment string matches in the previous
Bram Moolenaare21877a2008-02-13 09:58:14 +00007046 * line, use the indent of that line plus offset. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047 * the middle comment string matches in the previous
7048 * line, use the indent of that line. XXX */
7049 look = skipwhite(ml_get(curwin->w_cursor.lnum - 1));
7050 if (STRNCMP(look, lead_start, lead_start_len) == 0)
7051 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
7052 else if (STRNCMP(look, lead_middle,
7053 lead_middle_len) == 0)
7054 {
7055 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
7056 break;
7057 }
7058 /* If the start comment string doesn't match with the
7059 * start of the comment, skip this entry. XXX */
7060 else if (STRNCMP(ml_get(trypos->lnum) + trypos->col,
7061 lead_start, lead_start_len) != 0)
7062 continue;
7063 }
7064 if (start_off != 0)
7065 amount += start_off;
7066 else if (start_align == COM_RIGHT)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00007067 amount += vim_strsize(lead_start)
7068 - vim_strsize(lead_middle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007069 break;
7070 }
7071
7072 /* If our line starts with the end comment string, line it up
7073 * with the middle comment */
7074 if (STRNCMP(theline, lead_middle, lead_middle_len) != 0
7075 && STRNCMP(theline, lead_end, STRLEN(lead_end)) == 0)
7076 {
7077 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
7078 /* XXX */
7079 if (off != 0)
7080 amount += off;
7081 else if (align == COM_RIGHT)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00007082 amount += vim_strsize(lead_start)
7083 - vim_strsize(lead_middle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007084 done = TRUE;
7085 break;
7086 }
7087 }
7088 }
7089
7090 /* If our line starts with an asterisk, line up with the
7091 * asterisk in the comment opener; otherwise, line up
7092 * with the first character of the comment text.
7093 */
7094 if (done)
7095 ;
7096 else if (theline[0] == '*')
7097 amount += 1;
7098 else
7099 {
7100 /*
7101 * If we are more than one line away from the comment opener, take
7102 * the indent of the previous non-empty line. If 'cino' has "CO"
7103 * and we are just below the comment opener and there are any
7104 * white characters after it line up with the text after it;
7105 * otherwise, add the amount specified by "c" in 'cino'
7106 */
7107 amount = -1;
7108 for (lnum = cur_curpos.lnum - 1; lnum > trypos->lnum; --lnum)
7109 {
7110 if (linewhite(lnum)) /* skip blank lines */
7111 continue;
7112 amount = get_indent_lnum(lnum); /* XXX */
7113 break;
7114 }
7115 if (amount == -1) /* use the comment opener */
7116 {
7117 if (!ind_in_comment2)
7118 {
7119 start = ml_get(trypos->lnum);
7120 look = start + trypos->col + 2; /* skip / and * */
7121 if (*look != NUL) /* if something after it */
7122 trypos->col = (colnr_T)(skipwhite(look) - start);
7123 }
7124 getvcol(curwin, trypos, &col, NULL, NULL);
7125 amount = col;
7126 if (ind_in_comment2 || *look == NUL)
7127 amount += ind_in_comment;
7128 }
7129 }
7130 }
7131
7132 /*
7133 * Are we inside parentheses or braces?
7134 */ /* XXX */
7135 else if (((trypos = find_match_paren(ind_maxparen, ind_maxcomment)) != NULL
7136 && ind_java == 0)
7137 || (tryposBrace = find_start_brace(ind_maxcomment)) != NULL
7138 || trypos != NULL)
7139 {
7140 if (trypos != NULL && tryposBrace != NULL)
7141 {
7142 /* Both an unmatched '(' and '{' is found. Use the one which is
7143 * closer to the current cursor position, set the other to NULL. */
7144 if (trypos->lnum != tryposBrace->lnum
7145 ? trypos->lnum < tryposBrace->lnum
7146 : trypos->col < tryposBrace->col)
7147 trypos = NULL;
7148 else
7149 tryposBrace = NULL;
7150 }
7151
7152 if (trypos != NULL)
7153 {
7154 /*
7155 * If the matching paren is more than one line away, use the indent of
7156 * a previous non-empty line that matches the same paren.
7157 */
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007158 if (theline[0] == ')' && ind_paren_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007159 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007160 /* Line up with the start of the matching paren line. */
7161 amount = get_indent_lnum(curwin->w_cursor.lnum - 1); /* XXX */
7162 }
7163 else
7164 {
7165 amount = -1;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007166 our_paren_pos = *trypos;
7167 for (lnum = cur_curpos.lnum - 1; lnum > our_paren_pos.lnum; --lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007168 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007169 l = skipwhite(ml_get(lnum));
7170 if (cin_nocode(l)) /* skip comment lines */
7171 continue;
7172 if (cin_ispreproc_cont(&l, &lnum))
7173 continue; /* ignore #define, #if, etc. */
7174 curwin->w_cursor.lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007175
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007176 /* Skip a comment. XXX */
7177 if ((trypos = find_start_comment(ind_maxcomment)) != NULL)
7178 {
7179 lnum = trypos->lnum + 1;
7180 continue;
7181 }
7182
7183 /* XXX */
7184 if ((trypos = find_match_paren(
7185 corr_ind_maxparen(ind_maxparen, &cur_curpos),
Bram Moolenaar071d4272004-06-13 20:20:40 +00007186 ind_maxcomment)) != NULL
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007187 && trypos->lnum == our_paren_pos.lnum
7188 && trypos->col == our_paren_pos.col)
7189 {
7190 amount = get_indent_lnum(lnum); /* XXX */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007191
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007192 if (theline[0] == ')')
7193 {
7194 if (our_paren_pos.lnum != lnum
7195 && cur_amount > amount)
7196 cur_amount = amount;
7197 amount = -1;
7198 }
7199 break;
7200 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007201 }
7202 }
7203
7204 /*
7205 * Line up with line where the matching paren is. XXX
7206 * If the line starts with a '(' or the indent for unclosed
7207 * parentheses is zero, line up with the unclosed parentheses.
7208 */
7209 if (amount == -1)
7210 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007211 int ignore_paren_col = 0;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007212 int is_if_for_while = 0;
7213
7214 if (ind_if_for_while)
7215 {
7216 /* Look for the outermost opening parenthesis on this line
7217 * and check whether it belongs to an "if", "for" or "while". */
7218
7219 pos_T cursor_save = curwin->w_cursor;
7220 pos_T outermost;
7221 char_u *line;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007222
7223 trypos = &our_paren_pos;
7224 do {
7225 outermost = *trypos;
7226 curwin->w_cursor.lnum = outermost.lnum;
7227 curwin->w_cursor.col = outermost.col;
7228
7229 trypos = find_match_paren(ind_maxparen, ind_maxcomment);
7230 } while (trypos && trypos->lnum == outermost.lnum);
7231
7232 curwin->w_cursor = cursor_save;
7233
7234 line = ml_get(outermost.lnum);
7235
7236 is_if_for_while =
Bram Moolenaarb345d492012-04-09 20:42:26 +02007237 cin_is_if_for_while_before_offset(line, &outermost.col);
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007238 }
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007239
Bram Moolenaar071d4272004-06-13 20:20:40 +00007240 amount = skip_label(our_paren_pos.lnum, &look, ind_maxcomment);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007241 look = skipwhite(look);
7242 if (*look == '(')
7243 {
7244 linenr_T save_lnum = curwin->w_cursor.lnum;
7245 char_u *line;
7246 int look_col;
7247
7248 /* Ignore a '(' in front of the line that has a match before
7249 * our matching '('. */
7250 curwin->w_cursor.lnum = our_paren_pos.lnum;
7251 line = ml_get_curline();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007252 look_col = (int)(look - line);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007253 curwin->w_cursor.col = look_col + 1;
7254 if ((trypos = findmatchlimit(NULL, ')', 0, ind_maxparen))
7255 != NULL
7256 && trypos->lnum == our_paren_pos.lnum
7257 && trypos->col < our_paren_pos.col)
7258 ignore_paren_col = trypos->col + 1;
7259
7260 curwin->w_cursor.lnum = save_lnum;
7261 look = ml_get(our_paren_pos.lnum) + look_col;
7262 }
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007263 if (theline[0] == ')' || (ind_unclosed == 0 && is_if_for_while == 0)
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007264 || (!ind_unclosed_noignore && *look == '('
7265 && ignore_paren_col == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007266 {
7267 /*
7268 * If we're looking at a close paren, line up right there;
7269 * otherwise, line up with the next (non-white) character.
7270 * When ind_unclosed_wrapped is set and the matching paren is
7271 * the last nonwhite character of the line, use either the
7272 * indent of the current line or the indentation of the next
7273 * outer paren and add ind_unclosed_wrapped (for very long
7274 * lines).
7275 */
7276 if (theline[0] != ')')
7277 {
7278 cur_amount = MAXCOL;
7279 l = ml_get(our_paren_pos.lnum);
7280 if (ind_unclosed_wrapped
7281 && cin_ends_in(l, (char_u *)"(", NULL))
7282 {
7283 /* look for opening unmatched paren, indent one level
7284 * for each additional level */
7285 n = 1;
7286 for (col = 0; col < our_paren_pos.col; ++col)
7287 {
7288 switch (l[col])
7289 {
7290 case '(':
7291 case '{': ++n;
7292 break;
7293
7294 case ')':
7295 case '}': if (n > 1)
7296 --n;
7297 break;
7298 }
7299 }
7300
7301 our_paren_pos.col = 0;
7302 amount += n * ind_unclosed_wrapped;
7303 }
7304 else if (ind_unclosed_whiteok)
7305 our_paren_pos.col++;
7306 else
7307 {
7308 col = our_paren_pos.col + 1;
7309 while (vim_iswhite(l[col]))
7310 col++;
7311 if (l[col] != NUL) /* In case of trailing space */
7312 our_paren_pos.col = col;
7313 else
7314 our_paren_pos.col++;
7315 }
7316 }
7317
7318 /*
7319 * Find how indented the paren is, or the character after it
7320 * if we did the above "if".
7321 */
7322 if (our_paren_pos.col > 0)
7323 {
7324 getvcol(curwin, &our_paren_pos, &col, NULL, NULL);
7325 if (cur_amount > (int)col)
7326 cur_amount = col;
7327 }
7328 }
7329
7330 if (theline[0] == ')' && ind_matching_paren)
7331 {
7332 /* Line up with the start of the matching paren line. */
7333 }
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007334 else if ((ind_unclosed == 0 && is_if_for_while == 0)
7335 || (!ind_unclosed_noignore
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007336 && *look == '(' && ignore_paren_col == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007337 {
7338 if (cur_amount != MAXCOL)
7339 amount = cur_amount;
7340 }
7341 else
7342 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007343 /* Add ind_unclosed2 for each '(' before our matching one, but
7344 * ignore (void) before the line (ignore_paren_col). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007345 col = our_paren_pos.col;
Bram Moolenaarb21e5842006-04-16 18:30:08 +00007346 while ((int)our_paren_pos.col > ignore_paren_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007347 {
7348 --our_paren_pos.col;
7349 switch (*ml_get_pos(&our_paren_pos))
7350 {
7351 case '(': amount += ind_unclosed2;
7352 col = our_paren_pos.col;
7353 break;
7354 case ')': amount -= ind_unclosed2;
7355 col = MAXCOL;
7356 break;
7357 }
7358 }
7359
7360 /* Use ind_unclosed once, when the first '(' is not inside
7361 * braces */
7362 if (col == MAXCOL)
7363 amount += ind_unclosed;
7364 else
7365 {
7366 curwin->w_cursor.lnum = our_paren_pos.lnum;
7367 curwin->w_cursor.col = col;
Bram Moolenaar367bec82011-04-11 14:26:19 +02007368 if (find_match_paren(ind_maxparen, ind_maxcomment) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007369 amount += ind_unclosed2;
7370 else
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007371 {
7372 if (is_if_for_while)
7373 amount += ind_if_for_while;
7374 else
7375 amount += ind_unclosed;
7376 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007377 }
7378 /*
7379 * For a line starting with ')' use the minimum of the two
7380 * positions, to avoid giving it more indent than the previous
7381 * lines:
7382 * func_long_name( if (x
7383 * arg && yy
7384 * ) ^ not here ) ^ not here
7385 */
7386 if (cur_amount < amount)
7387 amount = cur_amount;
7388 }
7389 }
7390
7391 /* add extra indent for a comment */
7392 if (cin_iscomment(theline))
7393 amount += ind_comment;
7394 }
7395
7396 /*
7397 * Are we at least inside braces, then?
7398 */
7399 else
7400 {
7401 trypos = tryposBrace;
7402
7403 ourscope = trypos->lnum;
7404 start = ml_get(ourscope);
7405
7406 /*
7407 * Now figure out how indented the line is in general.
7408 * If the brace was at the start of the line, we use that;
7409 * otherwise, check out the indentation of the line as
7410 * a whole and then add the "imaginary indent" to that.
7411 */
7412 look = skipwhite(start);
7413 if (*look == '{')
7414 {
7415 getvcol(curwin, trypos, &col, NULL, NULL);
7416 amount = col;
7417 if (*start == '{')
7418 start_brace = BRACE_IN_COL0;
7419 else
7420 start_brace = BRACE_AT_START;
7421 }
7422 else
7423 {
7424 /*
7425 * that opening brace might have been on a continuation
7426 * line. if so, find the start of the line.
7427 */
7428 curwin->w_cursor.lnum = ourscope;
7429
7430 /*
7431 * position the cursor over the rightmost paren, so that
7432 * matching it will take us back to the start of the line.
7433 */
7434 lnum = ourscope;
7435 if (find_last_paren(start, '(', ')')
7436 && (trypos = find_match_paren(ind_maxparen,
7437 ind_maxcomment)) != NULL)
7438 lnum = trypos->lnum;
7439
7440 /*
7441 * It could have been something like
7442 * case 1: if (asdf &&
7443 * ldfd) {
7444 * }
7445 */
Bram Moolenaar6ec154b2011-06-12 21:51:08 +02007446 if (ind_js || (ind_keep_case_label
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007447 && cin_iscase(skipwhite(ml_get_curline()), FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007448 amount = get_indent();
7449 else
7450 amount = skip_label(lnum, &l, ind_maxcomment);
7451
7452 start_brace = BRACE_AT_END;
7453 }
7454
7455 /*
7456 * if we're looking at a closing brace, that's where
7457 * we want to be. otherwise, add the amount of room
7458 * that an indent is supposed to be.
7459 */
7460 if (theline[0] == '}')
7461 {
7462 /*
7463 * they may want closing braces to line up with something
7464 * other than the open brace. indulge them, if so.
7465 */
7466 amount += ind_close_extra;
7467 }
7468 else
7469 {
7470 /*
7471 * If we're looking at an "else", try to find an "if"
7472 * to match it with.
7473 * If we're looking at a "while", try to find a "do"
7474 * to match it with.
7475 */
7476 lookfor = LOOKFOR_INITIAL;
7477 if (cin_iselse(theline))
7478 lookfor = LOOKFOR_IF;
7479 else if (cin_iswhileofdo(theline, cur_curpos.lnum, ind_maxparen))
7480 /* XXX */
7481 lookfor = LOOKFOR_DO;
7482 if (lookfor != LOOKFOR_INITIAL)
7483 {
7484 curwin->w_cursor.lnum = cur_curpos.lnum;
7485 if (find_match(lookfor, ourscope, ind_maxparen,
7486 ind_maxcomment) == OK)
7487 {
7488 amount = get_indent(); /* XXX */
7489 goto theend;
7490 }
7491 }
7492
7493 /*
7494 * We get here if we are not on an "while-of-do" or "else" (or
7495 * failed to find a matching "if").
7496 * Search backwards for something to line up with.
7497 * First set amount for when we don't find anything.
7498 */
7499
7500 /*
7501 * if the '{' is _really_ at the left margin, use the imaginary
7502 * location of a left-margin brace. Otherwise, correct the
7503 * location for ind_open_extra.
7504 */
7505
7506 if (start_brace == BRACE_IN_COL0) /* '{' is in column 0 */
7507 {
7508 amount = ind_open_left_imag;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007509 lookfor_cpp_namespace = TRUE;
7510 }
7511 else if (start_brace == BRACE_AT_START &&
7512 lookfor_cpp_namespace) /* '{' is at start */
7513 {
7514
7515 lookfor_cpp_namespace = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007516 }
7517 else
7518 {
7519 if (start_brace == BRACE_AT_END) /* '{' is at end of line */
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007520 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007521 amount += ind_open_imag;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007522
7523 l = skipwhite(ml_get_curline());
7524 if (cin_is_cpp_namespace(l))
7525 amount += ind_cpp_namespace;
7526 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007527 else
7528 {
7529 /* Compensate for adding ind_open_extra later. */
7530 amount -= ind_open_extra;
7531 if (amount < 0)
7532 amount = 0;
7533 }
7534 }
7535
7536 lookfor_break = FALSE;
7537
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007538 if (cin_iscase(theline, FALSE)) /* it's a switch() label */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007539 {
7540 lookfor = LOOKFOR_CASE; /* find a previous switch() label */
7541 amount += ind_case;
7542 }
7543 else if (cin_isscopedecl(theline)) /* private:, ... */
7544 {
7545 lookfor = LOOKFOR_SCOPEDECL; /* class decl is this block */
7546 amount += ind_scopedecl;
7547 }
7548 else
7549 {
7550 if (ind_case_break && cin_isbreak(theline)) /* break; ... */
7551 lookfor_break = TRUE;
7552
7553 lookfor = LOOKFOR_INITIAL;
7554 amount += ind_level; /* ind_level from start of block */
7555 }
7556 scope_amount = amount;
7557 whilelevel = 0;
7558
7559 /*
7560 * Search backwards. If we find something we recognize, line up
7561 * with that.
7562 *
7563 * if we're looking at an open brace, indent
7564 * the usual amount relative to the conditional
7565 * that opens the block.
7566 */
7567 curwin->w_cursor = cur_curpos;
7568 for (;;)
7569 {
7570 curwin->w_cursor.lnum--;
7571 curwin->w_cursor.col = 0;
7572
7573 /*
7574 * If we went all the way back to the start of our scope, line
7575 * up with it.
7576 */
7577 if (curwin->w_cursor.lnum <= ourscope)
7578 {
7579 /* we reached end of scope:
7580 * if looking for a enum or structure initialization
7581 * go further back:
7582 * if it is an initializer (enum xxx or xxx =), then
7583 * don't add ind_continuation, otherwise it is a variable
7584 * declaration:
7585 * int x,
7586 * here; <-- add ind_continuation
7587 */
7588 if (lookfor == LOOKFOR_ENUM_OR_INIT)
7589 {
7590 if (curwin->w_cursor.lnum == 0
7591 || curwin->w_cursor.lnum
7592 < ourscope - ind_maxparen)
7593 {
7594 /* nothing found (abuse ind_maxparen as limit)
7595 * assume terminated line (i.e. a variable
7596 * initialization) */
7597 if (cont_amount > 0)
7598 amount = cont_amount;
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007599 else if (!ind_js)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007600 amount += ind_continuation;
7601 break;
7602 }
7603
7604 l = ml_get_curline();
7605
7606 /*
7607 * If we're in a comment now, skip to the start of the
7608 * comment.
7609 */
7610 trypos = find_start_comment(ind_maxcomment);
7611 if (trypos != NULL)
7612 {
7613 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007614 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007615 continue;
7616 }
7617
7618 /*
7619 * Skip preprocessor directives and blank lines.
7620 */
7621 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
7622 continue;
7623
7624 if (cin_nocode(l))
7625 continue;
7626
7627 terminated = cin_isterminated(l, FALSE, TRUE);
7628
7629 /*
7630 * If we are at top level and the line looks like a
7631 * function declaration, we are done
7632 * (it's a variable declaration).
7633 */
7634 if (start_brace != BRACE_IN_COL0
Bram Moolenaarc367faa2011-12-14 20:21:35 +01007635 || !cin_isfuncdecl(&l, curwin->w_cursor.lnum,
7636 0, ind_maxparen, ind_maxcomment))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007637 {
7638 /* if the line is terminated with another ','
7639 * it is a continued variable initialization.
7640 * don't add extra indent.
7641 * TODO: does not work, if a function
7642 * declaration is split over multiple lines:
7643 * cin_isfuncdecl returns FALSE then.
7644 */
7645 if (terminated == ',')
7646 break;
7647
7648 /* if it es a enum declaration or an assignment,
7649 * we are done.
7650 */
7651 if (terminated != ';' && cin_isinit())
7652 break;
7653
7654 /* nothing useful found */
7655 if (terminated == 0 || terminated == '{')
7656 continue;
7657 }
7658
7659 if (terminated != ';')
7660 {
7661 /* Skip parens and braces. Position the cursor
7662 * over the rightmost paren, so that matching it
7663 * will take us back to the start of the line.
7664 */ /* XXX */
7665 trypos = NULL;
7666 if (find_last_paren(l, '(', ')'))
7667 trypos = find_match_paren(ind_maxparen,
7668 ind_maxcomment);
7669
7670 if (trypos == NULL && find_last_paren(l, '{', '}'))
7671 trypos = find_start_brace(ind_maxcomment);
7672
7673 if (trypos != NULL)
7674 {
7675 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007676 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007677 continue;
7678 }
7679 }
7680
7681 /* it's a variable declaration, add indentation
7682 * like in
7683 * int a,
7684 * b;
7685 */
7686 if (cont_amount > 0)
7687 amount = cont_amount;
7688 else
7689 amount += ind_continuation;
7690 }
7691 else if (lookfor == LOOKFOR_UNTERM)
7692 {
7693 if (cont_amount > 0)
7694 amount = cont_amount;
7695 else
7696 amount += ind_continuation;
7697 }
Bram Moolenaare79d1532011-10-04 18:03:47 +02007698 else
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007699 {
Bram Moolenaare79d1532011-10-04 18:03:47 +02007700 if (lookfor != LOOKFOR_TERM
Bram Moolenaar071d4272004-06-13 20:20:40 +00007701 && lookfor != LOOKFOR_CPP_BASECLASS)
Bram Moolenaare79d1532011-10-04 18:03:47 +02007702 {
7703 amount = scope_amount;
7704 if (theline[0] == '{')
7705 {
7706 amount += ind_open_extra;
7707 added_to_amount = ind_open_extra;
7708 }
7709 }
7710
7711 if (lookfor_cpp_namespace)
7712 {
7713 /*
7714 * Looking for C++ namespace, need to look further
7715 * back.
7716 */
7717 if (curwin->w_cursor.lnum == ourscope)
7718 continue;
7719
7720 if (curwin->w_cursor.lnum == 0
7721 || curwin->w_cursor.lnum
7722 < ourscope - FIND_NAMESPACE_LIM)
7723 break;
7724
7725 l = ml_get_curline();
7726
7727 /* If we're in a comment now, skip to the start of
7728 * the comment. */
7729 trypos = find_start_comment(ind_maxcomment);
7730 if (trypos != NULL)
7731 {
7732 curwin->w_cursor.lnum = trypos->lnum + 1;
7733 curwin->w_cursor.col = 0;
7734 continue;
7735 }
7736
7737 /* Skip preprocessor directives and blank lines. */
7738 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
7739 continue;
7740
7741 /* Finally the actual check for "namespace". */
7742 if (cin_is_cpp_namespace(l))
7743 {
7744 amount += ind_cpp_namespace - added_to_amount;
7745 break;
7746 }
7747
7748 if (cin_nocode(l))
7749 continue;
7750 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007751 }
7752 break;
7753 }
7754
7755 /*
7756 * If we're in a comment now, skip to the start of the comment.
7757 */ /* XXX */
7758 if ((trypos = find_start_comment(ind_maxcomment)) != NULL)
7759 {
7760 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007761 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007762 continue;
7763 }
7764
7765 l = ml_get_curline();
7766
7767 /*
7768 * If this is a switch() label, may line up relative to that.
Bram Moolenaar18144c82006-04-12 21:52:12 +00007769 * If this is a C++ scope declaration, do the same.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007770 */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007771 iscase = cin_iscase(l, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007772 if (iscase || cin_isscopedecl(l))
7773 {
7774 /* we are only looking for cpp base class
7775 * declaration/initialization any longer */
7776 if (lookfor == LOOKFOR_CPP_BASECLASS)
7777 break;
7778
7779 /* When looking for a "do" we are not interested in
7780 * labels. */
7781 if (whilelevel > 0)
7782 continue;
7783
7784 /*
7785 * case xx:
7786 * c = 99 + <- this indent plus continuation
7787 *-> here;
7788 */
7789 if (lookfor == LOOKFOR_UNTERM
7790 || lookfor == LOOKFOR_ENUM_OR_INIT)
7791 {
7792 if (cont_amount > 0)
7793 amount = cont_amount;
7794 else
7795 amount += ind_continuation;
7796 break;
7797 }
7798
7799 /*
7800 * case xx: <- line up with this case
7801 * x = 333;
7802 * case yy:
7803 */
7804 if ( (iscase && lookfor == LOOKFOR_CASE)
7805 || (iscase && lookfor_break)
7806 || (!iscase && lookfor == LOOKFOR_SCOPEDECL))
7807 {
7808 /*
7809 * Check that this case label is not for another
7810 * switch()
7811 */ /* XXX */
7812 if ((trypos = find_start_brace(ind_maxcomment)) ==
7813 NULL || trypos->lnum == ourscope)
7814 {
7815 amount = get_indent(); /* XXX */
7816 break;
7817 }
7818 continue;
7819 }
7820
7821 n = get_indent_nolabel(curwin->w_cursor.lnum); /* XXX */
7822
7823 /*
7824 * case xx: if (cond) <- line up with this if
7825 * y = y + 1;
7826 * -> s = 99;
7827 *
7828 * case xx:
7829 * if (cond) <- line up with this line
7830 * y = y + 1;
7831 * -> s = 99;
7832 */
7833 if (lookfor == LOOKFOR_TERM)
7834 {
7835 if (n)
7836 amount = n;
7837
7838 if (!lookfor_break)
7839 break;
7840 }
7841
7842 /*
7843 * case xx: x = x + 1; <- line up with this x
7844 * -> y = y + 1;
7845 *
7846 * case xx: if (cond) <- line up with this if
7847 * -> y = y + 1;
7848 */
7849 if (n)
7850 {
7851 amount = n;
7852 l = after_label(ml_get_curline());
7853 if (l != NULL && cin_is_cinword(l))
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007854 {
7855 if (theline[0] == '{')
7856 amount += ind_open_extra;
7857 else
7858 amount += ind_level + ind_no_brace;
7859 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007860 break;
7861 }
7862
7863 /*
7864 * Try to get the indent of a statement before the switch
7865 * label. If nothing is found, line up relative to the
7866 * switch label.
7867 * break; <- may line up with this line
7868 * case xx:
7869 * -> y = 1;
7870 */
7871 scope_amount = get_indent() + (iscase /* XXX */
7872 ? ind_case_code : ind_scopedecl_code);
7873 lookfor = ind_case_break ? LOOKFOR_NOBREAK : LOOKFOR_ANY;
7874 continue;
7875 }
7876
7877 /*
7878 * Looking for a switch() label or C++ scope declaration,
7879 * ignore other lines, skip {}-blocks.
7880 */
7881 if (lookfor == LOOKFOR_CASE || lookfor == LOOKFOR_SCOPEDECL)
7882 {
7883 if (find_last_paren(l, '{', '}') && (trypos =
7884 find_start_brace(ind_maxcomment)) != NULL)
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007885 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007886 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007887 curwin->w_cursor.col = 0;
7888 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007889 continue;
7890 }
7891
7892 /*
7893 * Ignore jump labels with nothing after them.
7894 */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007895 if (!ind_js && cin_islabel(ind_maxcomment))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007896 {
7897 l = after_label(ml_get_curline());
7898 if (l == NULL || cin_nocode(l))
7899 continue;
7900 }
7901
7902 /*
7903 * Ignore #defines, #if, etc.
7904 * Ignore comment and empty lines.
7905 * (need to get the line again, cin_islabel() may have
7906 * unlocked it)
7907 */
7908 l = ml_get_curline();
7909 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum)
7910 || cin_nocode(l))
7911 continue;
7912
7913 /*
7914 * Are we at the start of a cpp base class declaration or
7915 * constructor initialization?
7916 */ /* XXX */
Bram Moolenaar18144c82006-04-12 21:52:12 +00007917 n = FALSE;
7918 if (lookfor != LOOKFOR_TERM && ind_cpp_baseclass > 0)
7919 {
Bram Moolenaare7c56862007-08-04 10:14:52 +00007920 n = cin_is_cpp_baseclass(&col);
Bram Moolenaar18144c82006-04-12 21:52:12 +00007921 l = ml_get_curline();
7922 }
7923 if (n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007924 {
7925 if (lookfor == LOOKFOR_UNTERM)
7926 {
7927 if (cont_amount > 0)
7928 amount = cont_amount;
7929 else
7930 amount += ind_continuation;
7931 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00007932 else if (theline[0] == '{')
Bram Moolenaar071d4272004-06-13 20:20:40 +00007933 {
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00007934 /* Need to find start of the declaration. */
7935 lookfor = LOOKFOR_UNTERM;
7936 ind_continuation = 0;
7937 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007938 }
7939 else
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00007940 /* XXX */
7941 amount = get_baseclass_amount(col, ind_maxparen,
7942 ind_maxcomment, ind_cpp_baseclass);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007943 break;
7944 }
7945 else if (lookfor == LOOKFOR_CPP_BASECLASS)
7946 {
7947 /* only look, whether there is a cpp base class
Bram Moolenaar18144c82006-04-12 21:52:12 +00007948 * declaration or initialization before the opening brace.
7949 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007950 if (cin_isterminated(l, TRUE, FALSE))
7951 break;
7952 else
7953 continue;
7954 }
7955
7956 /*
7957 * What happens next depends on the line being terminated.
7958 * If terminated with a ',' only consider it terminating if
Bram Moolenaar25394022007-05-10 19:06:20 +00007959 * there is another unterminated statement behind, eg:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007960 * 123,
7961 * sizeof
7962 * here
7963 * Otherwise check whether it is a enumeration or structure
7964 * initialisation (not indented) or a variable declaration
7965 * (indented).
7966 */
7967 terminated = cin_isterminated(l, FALSE, TRUE);
7968
7969 if (terminated == 0 || (lookfor != LOOKFOR_UNTERM
7970 && terminated == ','))
7971 {
7972 /*
7973 * if we're in the middle of a paren thing,
7974 * go back to the line that starts it so
7975 * we can get the right prevailing indent
7976 * if ( foo &&
7977 * bar )
7978 */
7979 /*
7980 * position the cursor over the rightmost paren, so that
7981 * matching it will take us back to the start of the line.
7982 */
7983 (void)find_last_paren(l, '(', ')');
7984 trypos = find_match_paren(
7985 corr_ind_maxparen(ind_maxparen, &cur_curpos),
7986 ind_maxcomment);
7987
7988 /*
7989 * If we are looking for ',', we also look for matching
7990 * braces.
7991 */
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00007992 if (trypos == NULL && terminated == ','
7993 && find_last_paren(l, '{', '}'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007994 trypos = find_start_brace(ind_maxcomment);
7995
7996 if (trypos != NULL)
7997 {
7998 /*
7999 * Check if we are on a case label now. This is
8000 * handled above.
8001 * case xx: if ( asdf &&
8002 * asdf)
8003 */
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008004 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008005 l = ml_get_curline();
Bram Moolenaar3acfc302010-07-11 17:23:02 +02008006 if (cin_iscase(l, FALSE) || cin_isscopedecl(l))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008007 {
8008 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008009 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008010 continue;
8011 }
8012 }
8013
8014 /*
8015 * Skip over continuation lines to find the one to get the
8016 * indent from
8017 * char *usethis = "bla\
8018 * bla",
8019 * here;
8020 */
8021 if (terminated == ',')
8022 {
8023 while (curwin->w_cursor.lnum > 1)
8024 {
8025 l = ml_get(curwin->w_cursor.lnum - 1);
8026 if (*l == NUL || l[STRLEN(l) - 1] != '\\')
8027 break;
8028 --curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008029 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008030 }
8031 }
8032
8033 /*
8034 * Get indent and pointer to text for current line,
8035 * ignoring any jump label. XXX
8036 */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02008037 if (!ind_js)
8038 cur_amount = skip_label(curwin->w_cursor.lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008039 &l, ind_maxcomment);
Bram Moolenaar3acfc302010-07-11 17:23:02 +02008040 else
8041 cur_amount = get_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008042 /*
8043 * If this is just above the line we are indenting, and it
8044 * starts with a '{', line it up with this line.
8045 * while (not)
8046 * -> {
8047 * }
8048 */
8049 if (terminated != ',' && lookfor != LOOKFOR_TERM
8050 && theline[0] == '{')
8051 {
8052 amount = cur_amount;
8053 /*
8054 * Only add ind_open_extra when the current line
8055 * doesn't start with a '{', which must have a match
8056 * in the same line (scope is the same). Probably:
8057 * { 1, 2 },
8058 * -> { 3, 4 }
8059 */
8060 if (*skipwhite(l) != '{')
8061 amount += ind_open_extra;
8062
8063 if (ind_cpp_baseclass)
8064 {
8065 /* have to look back, whether it is a cpp base
8066 * class declaration or initialization */
8067 lookfor = LOOKFOR_CPP_BASECLASS;
8068 continue;
8069 }
8070 break;
8071 }
8072
8073 /*
8074 * Check if we are after an "if", "while", etc.
8075 * Also allow " } else".
8076 */
8077 if (cin_is_cinword(l) || cin_iselse(skipwhite(l)))
8078 {
8079 /*
8080 * Found an unterminated line after an if (), line up
8081 * with the last one.
8082 * if (cond)
8083 * 100 +
8084 * -> here;
8085 */
8086 if (lookfor == LOOKFOR_UNTERM
8087 || lookfor == LOOKFOR_ENUM_OR_INIT)
8088 {
8089 if (cont_amount > 0)
8090 amount = cont_amount;
8091 else
8092 amount += ind_continuation;
8093 break;
8094 }
8095
8096 /*
8097 * If this is just above the line we are indenting, we
8098 * are finished.
8099 * while (not)
8100 * -> here;
8101 * Otherwise this indent can be used when the line
8102 * before this is terminated.
8103 * yyy;
8104 * if (stat)
8105 * while (not)
8106 * xxx;
8107 * -> here;
8108 */
8109 amount = cur_amount;
8110 if (theline[0] == '{')
8111 amount += ind_open_extra;
8112 if (lookfor != LOOKFOR_TERM)
8113 {
8114 amount += ind_level + ind_no_brace;
8115 break;
8116 }
8117
8118 /*
8119 * Special trick: when expecting the while () after a
8120 * do, line up with the while()
8121 * do
8122 * x = 1;
8123 * -> here
8124 */
8125 l = skipwhite(ml_get_curline());
8126 if (cin_isdo(l))
8127 {
8128 if (whilelevel == 0)
8129 break;
8130 --whilelevel;
8131 }
8132
8133 /*
8134 * When searching for a terminated line, don't use the
Bram Moolenaar334adf02011-05-25 13:34:04 +02008135 * one between the "if" and the matching "else".
Bram Moolenaar071d4272004-06-13 20:20:40 +00008136 * Need to use the scope of this "else". XXX
8137 * If whilelevel != 0 continue looking for a "do {".
8138 */
Bram Moolenaar334adf02011-05-25 13:34:04 +02008139 if (cin_iselse(l) && whilelevel == 0)
8140 {
8141 /* If we're looking at "} else", let's make sure we
8142 * find the opening brace of the enclosing scope,
8143 * not the one from "if () {". */
8144 if (*l == '}')
8145 curwin->w_cursor.col =
Bram Moolenaar9b83c2f2011-05-25 17:29:44 +02008146 (colnr_T)(l - ml_get_curline()) + 1;
Bram Moolenaar334adf02011-05-25 13:34:04 +02008147
8148 if ((trypos = find_start_brace(ind_maxcomment))
8149 == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008150 || find_match(LOOKFOR_IF, trypos->lnum,
Bram Moolenaar334adf02011-05-25 13:34:04 +02008151 ind_maxparen, ind_maxcomment) == FAIL)
8152 break;
8153 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008154 }
8155
8156 /*
8157 * If we're below an unterminated line that is not an
8158 * "if" or something, we may line up with this line or
Bram Moolenaar25394022007-05-10 19:06:20 +00008159 * add something for a continuation line, depending on
Bram Moolenaar071d4272004-06-13 20:20:40 +00008160 * the line before this one.
8161 */
8162 else
8163 {
8164 /*
8165 * Found two unterminated lines on a row, line up with
8166 * the last one.
8167 * c = 99 +
8168 * 100 +
8169 * -> here;
8170 */
8171 if (lookfor == LOOKFOR_UNTERM)
8172 {
8173 /* When line ends in a comma add extra indent */
8174 if (terminated == ',')
8175 amount += ind_continuation;
8176 break;
8177 }
8178
8179 if (lookfor == LOOKFOR_ENUM_OR_INIT)
8180 {
8181 /* Found two lines ending in ',', lineup with the
8182 * lowest one, but check for cpp base class
8183 * declaration/initialization, if it is an
8184 * opening brace or we are looking just for
8185 * enumerations/initializations. */
8186 if (terminated == ',')
8187 {
8188 if (ind_cpp_baseclass == 0)
8189 break;
8190
8191 lookfor = LOOKFOR_CPP_BASECLASS;
8192 continue;
8193 }
8194
8195 /* Ignore unterminated lines in between, but
8196 * reduce indent. */
8197 if (amount > cur_amount)
8198 amount = cur_amount;
8199 }
8200 else
8201 {
8202 /*
8203 * Found first unterminated line on a row, may
8204 * line up with this line, remember its indent
8205 * 100 +
8206 * -> here;
8207 */
8208 amount = cur_amount;
8209
8210 /*
8211 * If previous line ends in ',', check whether we
8212 * are in an initialization or enum
8213 * struct xxx =
8214 * {
8215 * sizeof a,
8216 * 124 };
8217 * or a normal possible continuation line.
8218 * but only, of no other statement has been found
8219 * yet.
8220 */
8221 if (lookfor == LOOKFOR_INITIAL && terminated == ',')
8222 {
8223 lookfor = LOOKFOR_ENUM_OR_INIT;
8224 cont_amount = cin_first_id_amount();
8225 }
8226 else
8227 {
8228 if (lookfor == LOOKFOR_INITIAL
8229 && *l != NUL
8230 && l[STRLEN(l) - 1] == '\\')
8231 /* XXX */
8232 cont_amount = cin_get_equal_amount(
8233 curwin->w_cursor.lnum);
8234 if (lookfor != LOOKFOR_TERM)
8235 lookfor = LOOKFOR_UNTERM;
8236 }
8237 }
8238 }
8239 }
8240
8241 /*
8242 * Check if we are after a while (cond);
8243 * If so: Ignore until the matching "do".
8244 */
8245 /* XXX */
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00008246 else if (cin_iswhileofdo_end(terminated, ind_maxparen,
8247 ind_maxcomment))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008248 {
8249 /*
8250 * Found an unterminated line after a while ();, line up
8251 * with the last one.
8252 * while (cond);
8253 * 100 + <- line up with this one
8254 * -> here;
8255 */
8256 if (lookfor == LOOKFOR_UNTERM
8257 || lookfor == LOOKFOR_ENUM_OR_INIT)
8258 {
8259 if (cont_amount > 0)
8260 amount = cont_amount;
8261 else
8262 amount += ind_continuation;
8263 break;
8264 }
8265
8266 if (whilelevel == 0)
8267 {
8268 lookfor = LOOKFOR_TERM;
8269 amount = get_indent(); /* XXX */
8270 if (theline[0] == '{')
8271 amount += ind_open_extra;
8272 }
8273 ++whilelevel;
8274 }
8275
8276 /*
8277 * We are after a "normal" statement.
8278 * If we had another statement we can stop now and use the
8279 * indent of that other statement.
8280 * Otherwise the indent of the current statement may be used,
8281 * search backwards for the next "normal" statement.
8282 */
8283 else
8284 {
8285 /*
8286 * Skip single break line, if before a switch label. It
8287 * may be lined up with the case label.
8288 */
8289 if (lookfor == LOOKFOR_NOBREAK
8290 && cin_isbreak(skipwhite(ml_get_curline())))
8291 {
8292 lookfor = LOOKFOR_ANY;
8293 continue;
8294 }
8295
8296 /*
8297 * Handle "do {" line.
8298 */
8299 if (whilelevel > 0)
8300 {
8301 l = cin_skipcomment(ml_get_curline());
8302 if (cin_isdo(l))
8303 {
8304 amount = get_indent(); /* XXX */
8305 --whilelevel;
8306 continue;
8307 }
8308 }
8309
8310 /*
8311 * Found a terminated line above an unterminated line. Add
8312 * the amount for a continuation line.
8313 * x = 1;
8314 * y = foo +
8315 * -> here;
8316 * or
8317 * int x = 1;
8318 * int foo,
8319 * -> here;
8320 */
8321 if (lookfor == LOOKFOR_UNTERM
8322 || lookfor == LOOKFOR_ENUM_OR_INIT)
8323 {
8324 if (cont_amount > 0)
8325 amount = cont_amount;
8326 else
8327 amount += ind_continuation;
8328 break;
8329 }
8330
8331 /*
8332 * Found a terminated line above a terminated line or "if"
8333 * etc. line. Use the amount of the line below us.
8334 * x = 1; x = 1;
8335 * if (asdf) y = 2;
8336 * while (asdf) ->here;
8337 * here;
8338 * ->foo;
8339 */
8340 if (lookfor == LOOKFOR_TERM)
8341 {
8342 if (!lookfor_break && whilelevel == 0)
8343 break;
8344 }
8345
8346 /*
8347 * First line above the one we're indenting is terminated.
8348 * To know what needs to be done look further backward for
8349 * a terminated line.
8350 */
8351 else
8352 {
8353 /*
8354 * position the cursor over the rightmost paren, so
8355 * that matching it will take us back to the start of
8356 * the line. Helps for:
8357 * func(asdr,
8358 * asdfasdf);
8359 * here;
8360 */
8361term_again:
8362 l = ml_get_curline();
8363 if (find_last_paren(l, '(', ')')
8364 && (trypos = find_match_paren(ind_maxparen,
8365 ind_maxcomment)) != NULL)
8366 {
8367 /*
8368 * Check if we are on a case label now. This is
8369 * handled above.
8370 * case xx: if ( asdf &&
8371 * asdf)
8372 */
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008373 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008374 l = ml_get_curline();
Bram Moolenaar3acfc302010-07-11 17:23:02 +02008375 if (cin_iscase(l, FALSE) || cin_isscopedecl(l))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008376 {
8377 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008378 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008379 continue;
8380 }
8381 }
8382
8383 /* When aligning with the case statement, don't align
8384 * with a statement after it.
8385 * case 1: { <-- don't use this { position
8386 * stat;
8387 * }
8388 * case 2:
8389 * stat;
8390 * }
8391 */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02008392 iscase = (ind_keep_case_label && cin_iscase(l, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008393
8394 /*
8395 * Get indent and pointer to text for current line,
8396 * ignoring any jump label.
8397 */
8398 amount = skip_label(curwin->w_cursor.lnum,
8399 &l, ind_maxcomment);
8400
8401 if (theline[0] == '{')
8402 amount += ind_open_extra;
8403 /* See remark above: "Only add ind_open_extra.." */
Bram Moolenaar18144c82006-04-12 21:52:12 +00008404 l = skipwhite(l);
8405 if (*l == '{')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008406 amount -= ind_open_extra;
8407 lookfor = iscase ? LOOKFOR_ANY : LOOKFOR_TERM;
8408
8409 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00008410 * When a terminated line starts with "else" skip to
8411 * the matching "if":
8412 * else 3;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008413 * indent this;
Bram Moolenaar18144c82006-04-12 21:52:12 +00008414 * Need to use the scope of this "else". XXX
8415 * If whilelevel != 0 continue looking for a "do {".
8416 */
8417 if (lookfor == LOOKFOR_TERM
8418 && *l != '}'
8419 && cin_iselse(l)
8420 && whilelevel == 0)
8421 {
8422 if ((trypos = find_start_brace(ind_maxcomment))
8423 == NULL
8424 || find_match(LOOKFOR_IF, trypos->lnum,
8425 ind_maxparen, ind_maxcomment) == FAIL)
8426 break;
8427 continue;
8428 }
8429
8430 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008431 * If we're at the end of a block, skip to the start of
8432 * that block.
8433 */
Bram Moolenaar6d8f9c62011-11-30 13:03:28 +01008434 l = ml_get_curline();
Bram Moolenaar50f42ca2011-07-15 14:12:30 +02008435 if (find_last_paren(l, '{', '}')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008436 && (trypos = find_start_brace(ind_maxcomment))
8437 != NULL) /* XXX */
8438 {
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008439 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008440 /* if not "else {" check for terminated again */
8441 /* but skip block for "} else {" */
8442 l = cin_skipcomment(ml_get_curline());
8443 if (*l == '}' || !cin_iselse(l))
8444 goto term_again;
8445 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008446 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008447 }
8448 }
8449 }
8450 }
8451 }
8452 }
8453
8454 /* add extra indent for a comment */
8455 if (cin_iscomment(theline))
8456 amount += ind_comment;
Bram Moolenaar02c707a2010-07-17 17:12:06 +02008457
8458 /* subtract extra left-shift for jump labels */
8459 if (ind_jump_label > 0 && original_line_islabel)
8460 amount -= ind_jump_label;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008461 }
8462
8463 /*
8464 * ok -- we're not inside any sort of structure at all!
8465 *
8466 * this means we're at the top level, and everything should
8467 * basically just match where the previous line is, except
8468 * for the lines immediately following a function declaration,
8469 * which are K&R-style parameters and need to be indented.
8470 */
8471 else
8472 {
8473 /*
8474 * if our line starts with an open brace, forget about any
8475 * prevailing indent and make sure it looks like the start
8476 * of a function
8477 */
8478
8479 if (theline[0] == '{')
8480 {
8481 amount = ind_first_open;
8482 }
8483
8484 /*
8485 * If the NEXT line is a function declaration, the current
8486 * line needs to be indented as a function type spec.
Bram Moolenaar1a89bbe2010-03-02 12:38:22 +01008487 * Don't do this if the current line looks like a comment or if the
8488 * current line is terminated, ie. ends in ';', or if the current line
8489 * contains { or }: "void f() {\n if (1)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008490 */
8491 else if (cur_curpos.lnum < curbuf->b_ml.ml_line_count
8492 && !cin_nocode(theline)
Bram Moolenaar1a89bbe2010-03-02 12:38:22 +01008493 && vim_strchr(theline, '{') == NULL
8494 && vim_strchr(theline, '}') == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008495 && !cin_ends_in(theline, (char_u *)":", NULL)
8496 && !cin_ends_in(theline, (char_u *)",", NULL)
Bram Moolenaarc367faa2011-12-14 20:21:35 +01008497 && cin_isfuncdecl(NULL, cur_curpos.lnum + 1,
8498 cur_curpos.lnum + 1,
8499 ind_maxparen, ind_maxcomment)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008500 && !cin_isterminated(theline, FALSE, TRUE))
8501 {
8502 amount = ind_func_type;
8503 }
8504 else
8505 {
8506 amount = 0;
8507 curwin->w_cursor = cur_curpos;
8508
8509 /* search backwards until we find something we recognize */
8510
8511 while (curwin->w_cursor.lnum > 1)
8512 {
8513 curwin->w_cursor.lnum--;
8514 curwin->w_cursor.col = 0;
8515
8516 l = ml_get_curline();
8517
8518 /*
8519 * If we're in a comment now, skip to the start of the comment.
8520 */ /* XXX */
8521 if ((trypos = find_start_comment(ind_maxcomment)) != NULL)
8522 {
8523 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008524 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008525 continue;
8526 }
8527
8528 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00008529 * Are we at the start of a cpp base class declaration or
8530 * constructor initialization?
Bram Moolenaar071d4272004-06-13 20:20:40 +00008531 */ /* XXX */
Bram Moolenaar18144c82006-04-12 21:52:12 +00008532 n = FALSE;
8533 if (ind_cpp_baseclass != 0 && theline[0] != '{')
8534 {
Bram Moolenaare7c56862007-08-04 10:14:52 +00008535 n = cin_is_cpp_baseclass(&col);
Bram Moolenaar18144c82006-04-12 21:52:12 +00008536 l = ml_get_curline();
8537 }
8538 if (n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008539 {
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00008540 /* XXX */
8541 amount = get_baseclass_amount(col, ind_maxparen,
8542 ind_maxcomment, ind_cpp_baseclass);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008543 break;
8544 }
8545
8546 /*
8547 * Skip preprocessor directives and blank lines.
8548 */
8549 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
8550 continue;
8551
8552 if (cin_nocode(l))
8553 continue;
8554
8555 /*
8556 * If the previous line ends in ',', use one level of
8557 * indentation:
8558 * int foo,
8559 * bar;
8560 * do this before checking for '}' in case of eg.
8561 * enum foobar
8562 * {
8563 * ...
8564 * } foo,
8565 * bar;
8566 */
8567 n = 0;
8568 if (cin_ends_in(l, (char_u *)",", NULL)
8569 || (*l != NUL && (n = l[STRLEN(l) - 1]) == '\\'))
8570 {
8571 /* take us back to opening paren */
8572 if (find_last_paren(l, '(', ')')
8573 && (trypos = find_match_paren(ind_maxparen,
8574 ind_maxcomment)) != NULL)
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008575 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008576
8577 /* For a line ending in ',' that is a continuation line go
8578 * back to the first line with a backslash:
8579 * char *foo = "bla\
8580 * bla",
8581 * here;
8582 */
8583 while (n == 0 && curwin->w_cursor.lnum > 1)
8584 {
8585 l = ml_get(curwin->w_cursor.lnum - 1);
8586 if (*l == NUL || l[STRLEN(l) - 1] != '\\')
8587 break;
8588 --curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008589 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008590 }
8591
8592 amount = get_indent(); /* XXX */
8593
8594 if (amount == 0)
8595 amount = cin_first_id_amount();
8596 if (amount == 0)
8597 amount = ind_continuation;
8598 break;
8599 }
8600
8601 /*
8602 * If the line looks like a function declaration, and we're
8603 * not in a comment, put it the left margin.
8604 */
Bram Moolenaarc367faa2011-12-14 20:21:35 +01008605 if (cin_isfuncdecl(NULL, cur_curpos.lnum, 0,
8606 ind_maxparen, ind_maxcomment)) /* XXX */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008607 break;
8608 l = ml_get_curline();
8609
8610 /*
8611 * Finding the closing '}' of a previous function. Put
8612 * current line at the left margin. For when 'cino' has "fs".
8613 */
8614 if (*skipwhite(l) == '}')
8615 break;
8616
8617 /* (matching {)
8618 * If the previous line ends on '};' (maybe followed by
8619 * comments) align at column 0. For example:
8620 * char *string_array[] = { "foo",
8621 * / * x * / "b};ar" }; / * foobar * /
8622 */
8623 if (cin_ends_in(l, (char_u *)"};", NULL))
8624 break;
8625
8626 /*
Bram Moolenaar3388bb42011-11-30 17:20:23 +01008627 * Find a line only has a semicolon that belongs to a previous
8628 * line ending in '}', e.g. before an #endif. Don't increase
8629 * indent then.
8630 */
8631 if (*(look = skipwhite(l)) == ';' && cin_nocode(look + 1))
8632 {
8633 pos_T curpos_save = curwin->w_cursor;
8634
8635 while (curwin->w_cursor.lnum > 1)
8636 {
8637 look = ml_get(--curwin->w_cursor.lnum);
8638 if (!(cin_nocode(look) || cin_ispreproc_cont(
8639 &look, &curwin->w_cursor.lnum)))
8640 break;
8641 }
8642 if (curwin->w_cursor.lnum > 0
8643 && cin_ends_in(look, (char_u *)"}", NULL))
8644 break;
8645
8646 curwin->w_cursor = curpos_save;
8647 }
8648
8649 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008650 * If the PREVIOUS line is a function declaration, the current
8651 * line (and the ones that follow) needs to be indented as
8652 * parameters.
8653 */
Bram Moolenaarc367faa2011-12-14 20:21:35 +01008654 if (cin_isfuncdecl(&l, curwin->w_cursor.lnum, 0,
8655 ind_maxparen, ind_maxcomment))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008656 {
8657 amount = ind_param;
8658 break;
8659 }
8660
8661 /*
8662 * If the previous line ends in ';' and the line before the
8663 * previous line ends in ',' or '\', ident to column zero:
8664 * int foo,
8665 * bar;
8666 * indent_to_0 here;
8667 */
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00008668 if (cin_ends_in(l, (char_u *)";", NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008669 {
8670 l = ml_get(curwin->w_cursor.lnum - 1);
8671 if (cin_ends_in(l, (char_u *)",", NULL)
8672 || (*l != NUL && l[STRLEN(l) - 1] == '\\'))
8673 break;
8674 l = ml_get_curline();
8675 }
8676
8677 /*
8678 * Doesn't look like anything interesting -- so just
8679 * use the indent of this line.
8680 *
8681 * Position the cursor over the rightmost paren, so that
8682 * matching it will take us back to the start of the line.
8683 */
8684 find_last_paren(l, '(', ')');
8685
8686 if ((trypos = find_match_paren(ind_maxparen,
8687 ind_maxcomment)) != NULL)
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008688 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008689 amount = get_indent(); /* XXX */
8690 break;
8691 }
8692
8693 /* add extra indent for a comment */
8694 if (cin_iscomment(theline))
8695 amount += ind_comment;
8696
8697 /* add extra indent if the previous line ended in a backslash:
8698 * "asdfasdf\
8699 * here";
8700 * char *foo = "asdf\
8701 * here";
8702 */
8703 if (cur_curpos.lnum > 1)
8704 {
8705 l = ml_get(cur_curpos.lnum - 1);
8706 if (*l != NUL && l[STRLEN(l) - 1] == '\\')
8707 {
8708 cur_amount = cin_get_equal_amount(cur_curpos.lnum - 1);
8709 if (cur_amount > 0)
8710 amount = cur_amount;
8711 else if (cur_amount == 0)
8712 amount += ind_continuation;
8713 }
8714 }
8715 }
8716 }
8717
8718theend:
8719 /* put the cursor back where it belongs */
8720 curwin->w_cursor = cur_curpos;
8721
8722 vim_free(linecopy);
8723
8724 if (amount < 0)
8725 return 0;
8726 return amount;
8727}
8728
8729 static int
8730find_match(lookfor, ourscope, ind_maxparen, ind_maxcomment)
8731 int lookfor;
8732 linenr_T ourscope;
8733 int ind_maxparen;
8734 int ind_maxcomment;
8735{
8736 char_u *look;
8737 pos_T *theirscope;
8738 char_u *mightbeif;
8739 int elselevel;
8740 int whilelevel;
8741
8742 if (lookfor == LOOKFOR_IF)
8743 {
8744 elselevel = 1;
8745 whilelevel = 0;
8746 }
8747 else
8748 {
8749 elselevel = 0;
8750 whilelevel = 1;
8751 }
8752
8753 curwin->w_cursor.col = 0;
8754
8755 while (curwin->w_cursor.lnum > ourscope + 1)
8756 {
8757 curwin->w_cursor.lnum--;
8758 curwin->w_cursor.col = 0;
8759
8760 look = cin_skipcomment(ml_get_curline());
8761 if (cin_iselse(look)
8762 || cin_isif(look)
8763 || cin_isdo(look) /* XXX */
8764 || cin_iswhileofdo(look, curwin->w_cursor.lnum, ind_maxparen))
8765 {
8766 /*
8767 * if we've gone outside the braces entirely,
8768 * we must be out of scope...
8769 */
8770 theirscope = find_start_brace(ind_maxcomment); /* XXX */
8771 if (theirscope == NULL)
8772 break;
8773
8774 /*
8775 * and if the brace enclosing this is further
8776 * back than the one enclosing the else, we're
8777 * out of luck too.
8778 */
8779 if (theirscope->lnum < ourscope)
8780 break;
8781
8782 /*
8783 * and if they're enclosed in a *deeper* brace,
8784 * then we can ignore it because it's in a
8785 * different scope...
8786 */
8787 if (theirscope->lnum > ourscope)
8788 continue;
8789
8790 /*
8791 * if it was an "else" (that's not an "else if")
8792 * then we need to go back to another if, so
8793 * increment elselevel
8794 */
8795 look = cin_skipcomment(ml_get_curline());
8796 if (cin_iselse(look))
8797 {
8798 mightbeif = cin_skipcomment(look + 4);
8799 if (!cin_isif(mightbeif))
8800 ++elselevel;
8801 continue;
8802 }
8803
8804 /*
8805 * if it was a "while" then we need to go back to
8806 * another "do", so increment whilelevel. XXX
8807 */
8808 if (cin_iswhileofdo(look, curwin->w_cursor.lnum, ind_maxparen))
8809 {
8810 ++whilelevel;
8811 continue;
8812 }
8813
8814 /* If it's an "if" decrement elselevel */
8815 look = cin_skipcomment(ml_get_curline());
8816 if (cin_isif(look))
8817 {
8818 elselevel--;
8819 /*
8820 * When looking for an "if" ignore "while"s that
8821 * get in the way.
8822 */
8823 if (elselevel == 0 && lookfor == LOOKFOR_IF)
8824 whilelevel = 0;
8825 }
8826
8827 /* If it's a "do" decrement whilelevel */
8828 if (cin_isdo(look))
8829 whilelevel--;
8830
8831 /*
8832 * if we've used up all the elses, then
8833 * this must be the if that we want!
8834 * match the indent level of that if.
8835 */
8836 if (elselevel <= 0 && whilelevel <= 0)
8837 {
8838 return OK;
8839 }
8840 }
8841 }
8842 return FAIL;
8843}
8844
8845# if defined(FEAT_EVAL) || defined(PROTO)
8846/*
8847 * Get indent level from 'indentexpr'.
8848 */
8849 int
8850get_expr_indent()
8851{
8852 int indent;
Bram Moolenaar8fe8d9e2013-02-13 16:10:17 +01008853 pos_T save_pos;
8854 colnr_T save_curswant;
8855 int save_set_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008856 int save_State;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00008857 int use_sandbox = was_set_insecurely((char_u *)"indentexpr",
8858 OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008859
Bram Moolenaar8fe8d9e2013-02-13 16:10:17 +01008860 /* Save and restore cursor position and curswant, in case it was changed
8861 * via :normal commands */
8862 save_pos = curwin->w_cursor;
8863 save_curswant = curwin->w_curswant;
8864 save_set_curswant = curwin->w_set_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008865 set_vim_var_nr(VV_LNUM, curwin->w_cursor.lnum);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00008866 if (use_sandbox)
8867 ++sandbox;
8868 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008869 indent = eval_to_number(curbuf->b_p_inde);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00008870 if (use_sandbox)
8871 --sandbox;
8872 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008873
8874 /* Restore the cursor position so that 'indentexpr' doesn't need to.
8875 * Pretend to be in Insert mode, allow cursor past end of line for "o"
8876 * command. */
8877 save_State = State;
8878 State = INSERT;
Bram Moolenaar8fe8d9e2013-02-13 16:10:17 +01008879 curwin->w_cursor = save_pos;
8880 curwin->w_curswant = save_curswant;
8881 curwin->w_set_curswant = save_set_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008882 check_cursor();
8883 State = save_State;
8884
8885 /* If there is an error, just keep the current indent. */
8886 if (indent < 0)
8887 indent = get_indent();
8888
8889 return indent;
8890}
8891# endif
8892
8893#endif /* FEAT_CINDENT */
8894
8895#if defined(FEAT_LISP) || defined(PROTO)
8896
8897static int lisp_match __ARGS((char_u *p));
8898
8899 static int
8900lisp_match(p)
8901 char_u *p;
8902{
8903 char_u buf[LSIZE];
8904 int len;
8905 char_u *word = p_lispwords;
8906
8907 while (*word != NUL)
8908 {
8909 (void)copy_option_part(&word, buf, LSIZE, ",");
8910 len = (int)STRLEN(buf);
8911 if (STRNCMP(buf, p, len) == 0 && p[len] == ' ')
8912 return TRUE;
8913 }
8914 return FALSE;
8915}
8916
8917/*
8918 * When 'p' is present in 'cpoptions, a Vi compatible method is used.
8919 * The incompatible newer method is quite a bit better at indenting
8920 * code in lisp-like languages than the traditional one; it's still
8921 * mostly heuristics however -- Dirk van Deun, dirk@rave.org
8922 *
8923 * TODO:
8924 * Findmatch() should be adapted for lisp, also to make showmatch
8925 * work correctly: now (v5.3) it seems all C/C++ oriented:
8926 * - it does not recognize the #\( and #\) notations as character literals
8927 * - it doesn't know about comments starting with a semicolon
8928 * - it incorrectly interprets '(' as a character literal
8929 * All this messes up get_lisp_indent in some rare cases.
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008930 * Update from Sergey Khorev:
8931 * I tried to fix the first two issues.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008932 */
8933 int
8934get_lisp_indent()
8935{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008936 pos_T *pos, realpos, paren;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008937 int amount;
8938 char_u *that;
8939 colnr_T col;
8940 colnr_T firsttry;
8941 int parencount, quotecount;
8942 int vi_lisp;
8943
8944 /* Set vi_lisp to use the vi-compatible method */
8945 vi_lisp = (vim_strchr(p_cpo, CPO_LISP) != NULL);
8946
8947 realpos = curwin->w_cursor;
8948 curwin->w_cursor.col = 0;
8949
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008950 if ((pos = findmatch(NULL, '(')) == NULL)
8951 pos = findmatch(NULL, '[');
8952 else
8953 {
8954 paren = *pos;
8955 pos = findmatch(NULL, '[');
8956 if (pos == NULL || ltp(pos, &paren))
8957 pos = &paren;
8958 }
8959 if (pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008960 {
8961 /* Extra trick: Take the indent of the first previous non-white
8962 * line that is at the same () level. */
8963 amount = -1;
8964 parencount = 0;
8965
8966 while (--curwin->w_cursor.lnum >= pos->lnum)
8967 {
8968 if (linewhite(curwin->w_cursor.lnum))
8969 continue;
8970 for (that = ml_get_curline(); *that != NUL; ++that)
8971 {
8972 if (*that == ';')
8973 {
8974 while (*(that + 1) != NUL)
8975 ++that;
8976 continue;
8977 }
8978 if (*that == '\\')
8979 {
8980 if (*(that + 1) != NUL)
8981 ++that;
8982 continue;
8983 }
8984 if (*that == '"' && *(that + 1) != NUL)
8985 {
Bram Moolenaar15ff6c12006-09-15 18:18:09 +00008986 while (*++that && *that != '"')
8987 {
8988 /* skipping escaped characters in the string */
8989 if (*that == '\\')
8990 {
8991 if (*++that == NUL)
8992 break;
8993 if (that[1] == NUL)
8994 {
8995 ++that;
8996 break;
8997 }
8998 }
8999 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009000 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009001 if (*that == '(' || *that == '[')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009002 ++parencount;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009003 else if (*that == ')' || *that == ']')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009004 --parencount;
9005 }
9006 if (parencount == 0)
9007 {
9008 amount = get_indent();
9009 break;
9010 }
9011 }
9012
9013 if (amount == -1)
9014 {
9015 curwin->w_cursor.lnum = pos->lnum;
9016 curwin->w_cursor.col = pos->col;
9017 col = pos->col;
9018
9019 that = ml_get_curline();
9020
9021 if (vi_lisp && get_indent() == 0)
9022 amount = 2;
9023 else
9024 {
9025 amount = 0;
9026 while (*that && col)
9027 {
9028 amount += lbr_chartabsize_adv(&that, (colnr_T)amount);
9029 col--;
9030 }
9031
9032 /*
9033 * Some keywords require "body" indenting rules (the
9034 * non-standard-lisp ones are Scheme special forms):
9035 *
9036 * (let ((a 1)) instead (let ((a 1))
9037 * (...)) of (...))
9038 */
9039
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009040 if (!vi_lisp && (*that == '(' || *that == '[')
9041 && lisp_match(that + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009042 amount += 2;
9043 else
9044 {
9045 that++;
9046 amount++;
9047 firsttry = amount;
9048
9049 while (vim_iswhite(*that))
9050 {
9051 amount += lbr_chartabsize(that, (colnr_T)amount);
9052 ++that;
9053 }
9054
9055 if (*that && *that != ';') /* not a comment line */
9056 {
Bram Moolenaare21877a2008-02-13 09:58:14 +00009057 /* test *that != '(' to accommodate first let/do
Bram Moolenaar071d4272004-06-13 20:20:40 +00009058 * argument if it is more than one line */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009059 if (!vi_lisp && *that != '(' && *that != '[')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009060 firsttry++;
9061
9062 parencount = 0;
9063 quotecount = 0;
9064
9065 if (vi_lisp
9066 || (*that != '"'
9067 && *that != '\''
9068 && *that != '#'
9069 && (*that < '0' || *that > '9')))
9070 {
9071 while (*that
9072 && (!vim_iswhite(*that)
9073 || quotecount
9074 || parencount)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009075 && (!((*that == '(' || *that == '[')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009076 && !quotecount
9077 && !parencount
9078 && vi_lisp)))
9079 {
9080 if (*that == '"')
9081 quotecount = !quotecount;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009082 if ((*that == '(' || *that == '[')
9083 && !quotecount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009084 ++parencount;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009085 if ((*that == ')' || *that == ']')
9086 && !quotecount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009087 --parencount;
9088 if (*that == '\\' && *(that+1) != NUL)
9089 amount += lbr_chartabsize_adv(&that,
9090 (colnr_T)amount);
9091 amount += lbr_chartabsize_adv(&that,
9092 (colnr_T)amount);
9093 }
9094 }
9095 while (vim_iswhite(*that))
9096 {
9097 amount += lbr_chartabsize(that, (colnr_T)amount);
9098 that++;
9099 }
9100 if (!*that || *that == ';')
9101 amount = firsttry;
9102 }
9103 }
9104 }
9105 }
9106 }
9107 else
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009108 amount = 0; /* no matching '(' or '[' found, use zero indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009109
9110 curwin->w_cursor = realpos;
9111
9112 return amount;
9113}
9114#endif /* FEAT_LISP */
9115
9116 void
9117prepare_to_exit()
9118{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00009119#if defined(SIGHUP) && defined(SIG_IGN)
9120 /* Ignore SIGHUP, because a dropped connection causes a read error, which
9121 * makes Vim exit and then handling SIGHUP causes various reentrance
9122 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009123 signal(SIGHUP, SIG_IGN);
9124#endif
9125
Bram Moolenaar071d4272004-06-13 20:20:40 +00009126#ifdef FEAT_GUI
9127 if (gui.in_use)
9128 {
9129 gui.dying = TRUE;
9130 out_trash(); /* trash any pending output */
9131 }
9132 else
9133#endif
9134 {
9135 windgoto((int)Rows - 1, 0);
9136
9137 /*
9138 * Switch terminal mode back now, so messages end up on the "normal"
9139 * screen (if there are two screens).
9140 */
9141 settmode(TMODE_COOK);
9142#ifdef WIN3264
9143 if (can_end_termcap_mode(FALSE) == TRUE)
9144#endif
9145 stoptermcap();
9146 out_flush();
9147 }
9148}
9149
9150/*
9151 * Preserve files and exit.
9152 * When called IObuff must contain a message.
9153 */
9154 void
9155preserve_exit()
9156{
9157 buf_T *buf;
9158
9159 prepare_to_exit();
9160
Bram Moolenaar4770d092006-01-12 23:22:24 +00009161 /* Setting this will prevent free() calls. That avoids calling free()
9162 * recursively when free() was invoked with a bad pointer. */
9163 really_exiting = TRUE;
9164
Bram Moolenaar071d4272004-06-13 20:20:40 +00009165 out_str(IObuff);
9166 screen_start(); /* don't know where cursor is now */
9167 out_flush();
9168
9169 ml_close_notmod(); /* close all not-modified buffers */
9170
9171 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
9172 {
9173 if (buf->b_ml.ml_mfp != NULL && buf->b_ml.ml_mfp->mf_fname != NULL)
9174 {
9175 OUT_STR(_("Vim: preserving files...\n"));
9176 screen_start(); /* don't know where cursor is now */
9177 out_flush();
9178 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
9179 break;
9180 }
9181 }
9182
9183 ml_close_all(FALSE); /* close all memfiles, without deleting */
9184
9185 OUT_STR(_("Vim: Finished.\n"));
9186
9187 getout(1);
9188}
9189
9190/*
9191 * return TRUE if "fname" exists.
9192 */
9193 int
9194vim_fexists(fname)
9195 char_u *fname;
9196{
9197 struct stat st;
9198
9199 if (mch_stat((char *)fname, &st))
9200 return FALSE;
9201 return TRUE;
9202}
9203
9204/*
9205 * Check for CTRL-C pressed, but only once in a while.
9206 * Should be used instead of ui_breakcheck() for functions that check for
9207 * each line in the file. Calling ui_breakcheck() each time takes too much
9208 * time, because it can be a system call.
9209 */
9210
9211#ifndef BREAKCHECK_SKIP
9212# ifdef FEAT_GUI /* assume the GUI only runs on fast computers */
9213# define BREAKCHECK_SKIP 200
9214# else
9215# define BREAKCHECK_SKIP 32
9216# endif
9217#endif
9218
9219static int breakcheck_count = 0;
9220
9221 void
9222line_breakcheck()
9223{
9224 if (++breakcheck_count >= BREAKCHECK_SKIP)
9225 {
9226 breakcheck_count = 0;
9227 ui_breakcheck();
9228 }
9229}
9230
9231/*
9232 * Like line_breakcheck() but check 10 times less often.
9233 */
9234 void
9235fast_breakcheck()
9236{
9237 if (++breakcheck_count >= BREAKCHECK_SKIP * 10)
9238 {
9239 breakcheck_count = 0;
9240 ui_breakcheck();
9241 }
9242}
9243
9244/*
Bram Moolenaard7834d32009-12-02 16:14:36 +00009245 * Invoke expand_wildcards() for one pattern.
9246 * Expand items like "%:h" before the expansion.
9247 * Returns OK or FAIL.
9248 */
9249 int
9250expand_wildcards_eval(pat, num_file, file, flags)
9251 char_u **pat; /* pointer to input pattern */
9252 int *num_file; /* resulting number of files */
9253 char_u ***file; /* array of resulting files */
9254 int flags; /* EW_DIR, etc. */
9255{
9256 int ret = FAIL;
9257 char_u *eval_pat = NULL;
9258 char_u *exp_pat = *pat;
9259 char_u *ignored_msg;
9260 int usedlen;
9261
9262 if (*exp_pat == '%' || *exp_pat == '#' || *exp_pat == '<')
9263 {
9264 ++emsg_off;
9265 eval_pat = eval_vars(exp_pat, exp_pat, &usedlen,
9266 NULL, &ignored_msg, NULL);
9267 --emsg_off;
9268 if (eval_pat != NULL)
9269 exp_pat = concat_str(eval_pat, exp_pat + usedlen);
9270 }
9271
9272 if (exp_pat != NULL)
9273 ret = expand_wildcards(1, &exp_pat, num_file, file, flags);
9274
9275 if (eval_pat != NULL)
9276 {
9277 vim_free(exp_pat);
9278 vim_free(eval_pat);
9279 }
9280
9281 return ret;
9282}
9283
9284/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009285 * Expand wildcards. Calls gen_expand_wildcards() and removes files matching
9286 * 'wildignore'.
Bram Moolenaar9e193ac2010-07-19 23:11:27 +02009287 * Returns OK or FAIL. When FAIL then "num_file" won't be set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009288 */
9289 int
9290expand_wildcards(num_pat, pat, num_file, file, flags)
9291 int num_pat; /* number of input patterns */
9292 char_u **pat; /* array of input patterns */
9293 int *num_file; /* resulting number of files */
9294 char_u ***file; /* array of resulting files */
9295 int flags; /* EW_DIR, etc. */
9296{
9297 int retval;
9298 int i, j;
9299 char_u *p;
9300 int non_suf_match; /* number without matching suffix */
9301
9302 retval = gen_expand_wildcards(num_pat, pat, num_file, file, flags);
9303
9304 /* When keeping all matches, return here */
Bram Moolenaar9e193ac2010-07-19 23:11:27 +02009305 if ((flags & EW_KEEPALL) || retval == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009306 return retval;
9307
9308#ifdef FEAT_WILDIGN
9309 /*
9310 * Remove names that match 'wildignore'.
9311 */
9312 if (*p_wig)
9313 {
9314 char_u *ffname;
9315
9316 /* check all files in (*file)[] */
9317 for (i = 0; i < *num_file; ++i)
9318 {
9319 ffname = FullName_save((*file)[i], FALSE);
9320 if (ffname == NULL) /* out of memory */
9321 break;
9322# ifdef VMS
9323 vms_remove_version(ffname);
9324# endif
9325 if (match_file_list(p_wig, (*file)[i], ffname))
9326 {
9327 /* remove this matching file from the list */
9328 vim_free((*file)[i]);
9329 for (j = i; j + 1 < *num_file; ++j)
9330 (*file)[j] = (*file)[j + 1];
9331 --*num_file;
9332 --i;
9333 }
9334 vim_free(ffname);
9335 }
9336 }
9337#endif
9338
9339 /*
9340 * Move the names where 'suffixes' match to the end.
9341 */
9342 if (*num_file > 1)
9343 {
9344 non_suf_match = 0;
9345 for (i = 0; i < *num_file; ++i)
9346 {
9347 if (!match_suffix((*file)[i]))
9348 {
9349 /*
9350 * Move the name without matching suffix to the front
9351 * of the list.
9352 */
9353 p = (*file)[i];
9354 for (j = i; j > non_suf_match; --j)
9355 (*file)[j] = (*file)[j - 1];
9356 (*file)[non_suf_match++] = p;
9357 }
9358 }
9359 }
9360
9361 return retval;
9362}
9363
9364/*
9365 * Return TRUE if "fname" matches with an entry in 'suffixes'.
9366 */
9367 int
9368match_suffix(fname)
9369 char_u *fname;
9370{
9371 int fnamelen, setsuflen;
9372 char_u *setsuf;
9373#define MAXSUFLEN 30 /* maximum length of a file suffix */
9374 char_u suf_buf[MAXSUFLEN];
9375
9376 fnamelen = (int)STRLEN(fname);
9377 setsuflen = 0;
9378 for (setsuf = p_su; *setsuf; )
9379 {
9380 setsuflen = copy_option_part(&setsuf, suf_buf, MAXSUFLEN, ".,");
Bram Moolenaar055a2ba2009-07-14 19:40:21 +00009381 if (setsuflen == 0)
9382 {
9383 char_u *tail = gettail(fname);
9384
9385 /* empty entry: match name without a '.' */
9386 if (vim_strchr(tail, '.') == NULL)
9387 {
9388 setsuflen = 1;
9389 break;
9390 }
9391 }
9392 else
9393 {
9394 if (fnamelen >= setsuflen
9395 && fnamencmp(suf_buf, fname + fnamelen - setsuflen,
9396 (size_t)setsuflen) == 0)
9397 break;
9398 setsuflen = 0;
9399 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009400 }
9401 return (setsuflen != 0);
9402}
9403
9404#if !defined(NO_EXPANDPATH) || defined(PROTO)
9405
9406# ifdef VIM_BACKTICK
9407static int vim_backtick __ARGS((char_u *p));
9408static int expand_backtick __ARGS((garray_T *gap, char_u *pat, int flags));
9409# endif
9410
9411# if defined(MSDOS) || defined(FEAT_GUI_W16) || defined(WIN3264)
9412/*
9413 * File name expansion code for MS-DOS, Win16 and Win32. It's here because
9414 * it's shared between these systems.
9415 */
9416# if defined(DJGPP) || defined(PROTO)
9417# define _cdecl /* DJGPP doesn't have this */
9418# else
9419# ifdef __BORLANDC__
9420# define _cdecl _RTLENTRYF
9421# endif
9422# endif
9423
9424/*
9425 * comparison function for qsort in dos_expandpath()
9426 */
9427 static int _cdecl
9428pstrcmp(const void *a, const void *b)
9429{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00009430 return (pathcmp(*(char **)a, *(char **)b, -1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009431}
9432
9433# ifndef WIN3264
9434 static void
9435namelowcpy(
9436 char_u *d,
9437 char_u *s)
9438{
9439# ifdef DJGPP
9440 if (USE_LONG_FNAME) /* don't lower case on Windows 95/NT systems */
9441 while (*s)
9442 *d++ = *s++;
9443 else
9444# endif
9445 while (*s)
9446 *d++ = TOLOWER_LOC(*s++);
9447 *d = NUL;
9448}
9449# endif
9450
9451/*
Bram Moolenaar231334e2005-07-25 20:46:57 +00009452 * Recursively expand one path component into all matching files and/or
9453 * directories. Adds matches to "gap". Handles "*", "?", "[a-z]", "**", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009454 * Return the number of matches found.
9455 * "path" has backslashes before chars that are not to be expanded, starting
9456 * at "path[wildoff]".
Bram Moolenaar231334e2005-07-25 20:46:57 +00009457 * Return the number of matches found.
9458 * NOTE: much of this is identical to unix_expandpath(), keep in sync!
Bram Moolenaar071d4272004-06-13 20:20:40 +00009459 */
9460 static int
9461dos_expandpath(
9462 garray_T *gap,
9463 char_u *path,
9464 int wildoff,
Bram Moolenaar231334e2005-07-25 20:46:57 +00009465 int flags, /* EW_* flags */
Bram Moolenaar25394022007-05-10 19:06:20 +00009466 int didstar) /* expanded "**" once already */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009467{
Bram Moolenaar231334e2005-07-25 20:46:57 +00009468 char_u *buf;
9469 char_u *path_end;
9470 char_u *p, *s, *e;
9471 int start_len = gap->ga_len;
9472 char_u *pat;
9473 regmatch_T regmatch;
9474 int starts_with_dot;
9475 int matches;
9476 int len;
9477 int starstar = FALSE;
9478 static int stardepth = 0; /* depth for "**" expansion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009479#ifdef WIN3264
9480 WIN32_FIND_DATA fb;
9481 HANDLE hFind = (HANDLE)0;
9482# ifdef FEAT_MBYTE
9483 WIN32_FIND_DATAW wfb;
9484 WCHAR *wn = NULL; /* UCS-2 name, NULL when not used. */
9485# endif
9486#else
9487 struct ffblk fb;
9488#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009489 char_u *matchname;
Bram Moolenaar231334e2005-07-25 20:46:57 +00009490 int ok;
9491
9492 /* Expanding "**" may take a long time, check for CTRL-C. */
9493 if (stardepth > 0)
9494 {
9495 ui_breakcheck();
9496 if (got_int)
9497 return 0;
9498 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009499
9500 /* make room for file name */
Bram Moolenaar231334e2005-07-25 20:46:57 +00009501 buf = alloc((int)STRLEN(path) + BASENAMELEN + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009502 if (buf == NULL)
9503 return 0;
9504
9505 /*
9506 * Find the first part in the path name that contains a wildcard or a ~1.
9507 * Copy it into buf, including the preceding characters.
9508 */
9509 p = buf;
9510 s = buf;
9511 e = NULL;
9512 path_end = path;
9513 while (*path_end != NUL)
9514 {
9515 /* May ignore a wildcard that has a backslash before it; it will
9516 * be removed by rem_backslash() or file_pat_to_reg_pat() below. */
9517 if (path_end >= path + wildoff && rem_backslash(path_end))
9518 *p++ = *path_end++;
9519 else if (*path_end == '\\' || *path_end == ':' || *path_end == '/')
9520 {
9521 if (e != NULL)
9522 break;
9523 s = p + 1;
9524 }
9525 else if (path_end >= path + wildoff
9526 && vim_strchr((char_u *)"*?[~", *path_end) != NULL)
9527 e = p;
9528#ifdef FEAT_MBYTE
9529 if (has_mbyte)
9530 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009531 len = (*mb_ptr2len)(path_end);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009532 STRNCPY(p, path_end, len);
9533 p += len;
9534 path_end += len;
9535 }
9536 else
9537#endif
9538 *p++ = *path_end++;
9539 }
9540 e = p;
9541 *e = NUL;
9542
9543 /* now we have one wildcard component between s and e */
9544 /* Remove backslashes between "wildoff" and the start of the wildcard
9545 * component. */
9546 for (p = buf + wildoff; p < s; ++p)
9547 if (rem_backslash(p))
9548 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009549 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009550 --e;
9551 --s;
9552 }
9553
Bram Moolenaar231334e2005-07-25 20:46:57 +00009554 /* Check for "**" between "s" and "e". */
9555 for (p = s; p < e; ++p)
9556 if (p[0] == '*' && p[1] == '*')
9557 starstar = TRUE;
9558
Bram Moolenaar071d4272004-06-13 20:20:40 +00009559 starts_with_dot = (*s == '.');
9560 pat = file_pat_to_reg_pat(s, e, NULL, FALSE);
9561 if (pat == NULL)
9562 {
9563 vim_free(buf);
9564 return 0;
9565 }
9566
9567 /* compile the regexp into a program */
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009568 if (flags & (EW_NOERROR | EW_NOTWILD))
Bram Moolenaarb5609832011-07-20 15:04:58 +02009569 ++emsg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009570 regmatch.rm_ic = TRUE; /* Always ignore case */
9571 regmatch.regprog = vim_regcomp(pat, RE_MAGIC);
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009572 if (flags & (EW_NOERROR | EW_NOTWILD))
Bram Moolenaarb5609832011-07-20 15:04:58 +02009573 --emsg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009574 vim_free(pat);
9575
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009576 if (regmatch.regprog == NULL && (flags & EW_NOTWILD) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009577 {
9578 vim_free(buf);
9579 return 0;
9580 }
9581
9582 /* remember the pattern or file name being looked for */
9583 matchname = vim_strsave(s);
9584
Bram Moolenaar231334e2005-07-25 20:46:57 +00009585 /* If "**" is by itself, this is the first time we encounter it and more
9586 * is following then find matches without any directory. */
9587 if (!didstar && stardepth < 100 && starstar && e - s == 2
9588 && *path_end == '/')
9589 {
9590 STRCPY(s, path_end + 1);
9591 ++stardepth;
9592 (void)dos_expandpath(gap, buf, (int)(s - buf), flags, TRUE);
9593 --stardepth;
9594 }
9595
Bram Moolenaar071d4272004-06-13 20:20:40 +00009596 /* Scan all files in the directory with "dir/ *.*" */
9597 STRCPY(s, "*.*");
9598#ifdef WIN3264
9599# ifdef FEAT_MBYTE
9600 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
9601 {
9602 /* The active codepage differs from 'encoding'. Attempt using the
9603 * wide function. If it fails because it is not implemented fall back
9604 * to the non-wide version (for Windows 98) */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00009605 wn = enc_to_utf16(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009606 if (wn != NULL)
9607 {
9608 hFind = FindFirstFileW(wn, &wfb);
9609 if (hFind == INVALID_HANDLE_VALUE
9610 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
9611 {
9612 vim_free(wn);
9613 wn = NULL;
9614 }
9615 }
9616 }
9617
9618 if (wn == NULL)
9619# endif
9620 hFind = FindFirstFile(buf, &fb);
9621 ok = (hFind != INVALID_HANDLE_VALUE);
9622#else
9623 /* If we are expanding wildcards we try both files and directories */
9624 ok = (findfirst((char *)buf, &fb,
9625 (*path_end != NUL || (flags & EW_DIR)) ? FA_DIREC : 0) == 0);
9626#endif
9627
9628 while (ok)
9629 {
9630#ifdef WIN3264
9631# ifdef FEAT_MBYTE
9632 if (wn != NULL)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00009633 p = utf16_to_enc(wfb.cFileName, NULL); /* p is allocated here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009634 else
9635# endif
9636 p = (char_u *)fb.cFileName;
9637#else
9638 p = (char_u *)fb.ff_name;
9639#endif
9640 /* Ignore entries starting with a dot, unless when asked for. Accept
9641 * all entries found with "matchname". */
9642 if ((p[0] != '.' || starts_with_dot)
9643 && (matchname == NULL
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009644 || (regmatch.regprog != NULL
9645 && vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaar0b573a52011-07-27 17:31:47 +02009646 || ((flags & EW_NOTWILD)
9647 && fnamencmp(path + (s - buf), p, e - s) == 0)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009648 {
9649#ifdef WIN3264
9650 STRCPY(s, p);
9651#else
9652 namelowcpy(s, p);
9653#endif
9654 len = (int)STRLEN(buf);
Bram Moolenaar231334e2005-07-25 20:46:57 +00009655
9656 if (starstar && stardepth < 100)
9657 {
9658 /* For "**" in the pattern first go deeper in the tree to
9659 * find matches. */
9660 STRCPY(buf + len, "/**");
9661 STRCPY(buf + len + 3, path_end);
9662 ++stardepth;
9663 (void)dos_expandpath(gap, buf, len + 1, flags, TRUE);
9664 --stardepth;
9665 }
9666
Bram Moolenaar071d4272004-06-13 20:20:40 +00009667 STRCPY(buf + len, path_end);
9668 if (mch_has_exp_wildcard(path_end))
9669 {
9670 /* need to expand another component of the path */
9671 /* remove backslashes for the remaining components only */
Bram Moolenaar231334e2005-07-25 20:46:57 +00009672 (void)dos_expandpath(gap, buf, len + 1, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009673 }
9674 else
9675 {
9676 /* no more wildcards, check if there is a match */
9677 /* remove backslashes for the remaining components only */
9678 if (*path_end != 0)
9679 backslash_halve(buf + len + 1);
9680 if (mch_getperm(buf) >= 0) /* add existing file */
9681 addfile(gap, buf, flags);
9682 }
9683 }
9684
9685#ifdef WIN3264
9686# ifdef FEAT_MBYTE
9687 if (wn != NULL)
9688 {
9689 vim_free(p);
9690 ok = FindNextFileW(hFind, &wfb);
9691 }
9692 else
9693# endif
9694 ok = FindNextFile(hFind, &fb);
9695#else
9696 ok = (findnext(&fb) == 0);
9697#endif
9698
9699 /* If no more matches and no match was used, try expanding the name
9700 * itself. Finds the long name of a short filename. */
9701 if (!ok && matchname != NULL && gap->ga_len == start_len)
9702 {
9703 STRCPY(s, matchname);
9704#ifdef WIN3264
9705 FindClose(hFind);
9706# ifdef FEAT_MBYTE
9707 if (wn != NULL)
9708 {
9709 vim_free(wn);
Bram Moolenaar36f692d2008-11-20 16:10:17 +00009710 wn = enc_to_utf16(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009711 if (wn != NULL)
9712 hFind = FindFirstFileW(wn, &wfb);
9713 }
9714 if (wn == NULL)
9715# endif
9716 hFind = FindFirstFile(buf, &fb);
9717 ok = (hFind != INVALID_HANDLE_VALUE);
9718#else
9719 ok = (findfirst((char *)buf, &fb,
9720 (*path_end != NUL || (flags & EW_DIR)) ? FA_DIREC : 0) == 0);
9721#endif
9722 vim_free(matchname);
9723 matchname = NULL;
9724 }
9725 }
9726
9727#ifdef WIN3264
9728 FindClose(hFind);
9729# ifdef FEAT_MBYTE
9730 vim_free(wn);
9731# endif
9732#endif
9733 vim_free(buf);
9734 vim_free(regmatch.regprog);
9735 vim_free(matchname);
9736
9737 matches = gap->ga_len - start_len;
9738 if (matches > 0)
9739 qsort(((char_u **)gap->ga_data) + start_len, (size_t)matches,
9740 sizeof(char_u *), pstrcmp);
9741 return matches;
9742}
9743
9744 int
9745mch_expandpath(
9746 garray_T *gap,
9747 char_u *path,
9748 int flags) /* EW_* flags */
9749{
Bram Moolenaar231334e2005-07-25 20:46:57 +00009750 return dos_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009751}
9752# endif /* MSDOS || FEAT_GUI_W16 || WIN3264 */
9753
Bram Moolenaar231334e2005-07-25 20:46:57 +00009754#if (defined(UNIX) && !defined(VMS)) || defined(USE_UNIXFILENAME) \
9755 || defined(PROTO)
9756/*
9757 * Unix style wildcard expansion code.
9758 * It's here because it's used both for Unix and Mac.
9759 */
9760static int pstrcmp __ARGS((const void *, const void *));
9761
9762 static int
9763pstrcmp(a, b)
9764 const void *a, *b;
9765{
9766 return (pathcmp(*(char **)a, *(char **)b, -1));
9767}
9768
9769/*
9770 * Recursively expand one path component into all matching files and/or
9771 * directories. Adds matches to "gap". Handles "*", "?", "[a-z]", "**", etc.
9772 * "path" has backslashes before chars that are not to be expanded, starting
9773 * at "path + wildoff".
9774 * Return the number of matches found.
9775 * NOTE: much of this is identical to dos_expandpath(), keep in sync!
9776 */
9777 int
9778unix_expandpath(gap, path, wildoff, flags, didstar)
9779 garray_T *gap;
9780 char_u *path;
9781 int wildoff;
9782 int flags; /* EW_* flags */
9783 int didstar; /* expanded "**" once already */
9784{
9785 char_u *buf;
9786 char_u *path_end;
9787 char_u *p, *s, *e;
9788 int start_len = gap->ga_len;
9789 char_u *pat;
9790 regmatch_T regmatch;
9791 int starts_with_dot;
9792 int matches;
9793 int len;
9794 int starstar = FALSE;
9795 static int stardepth = 0; /* depth for "**" expansion */
9796
9797 DIR *dirp;
9798 struct dirent *dp;
9799
9800 /* Expanding "**" may take a long time, check for CTRL-C. */
9801 if (stardepth > 0)
9802 {
9803 ui_breakcheck();
9804 if (got_int)
9805 return 0;
9806 }
9807
9808 /* make room for file name */
9809 buf = alloc((int)STRLEN(path) + BASENAMELEN + 5);
9810 if (buf == NULL)
9811 return 0;
9812
9813 /*
9814 * Find the first part in the path name that contains a wildcard.
Bram Moolenaar2d0b92f2012-04-30 21:09:43 +02009815 * When EW_ICASE is set every letter is considered to be a wildcard.
Bram Moolenaar231334e2005-07-25 20:46:57 +00009816 * Copy it into "buf", including the preceding characters.
9817 */
9818 p = buf;
9819 s = buf;
9820 e = NULL;
9821 path_end = path;
9822 while (*path_end != NUL)
9823 {
9824 /* May ignore a wildcard that has a backslash before it; it will
9825 * be removed by rem_backslash() or file_pat_to_reg_pat() below. */
9826 if (path_end >= path + wildoff && rem_backslash(path_end))
9827 *p++ = *path_end++;
9828 else if (*path_end == '/')
9829 {
9830 if (e != NULL)
9831 break;
9832 s = p + 1;
9833 }
9834 else if (path_end >= path + wildoff
Bram Moolenaar2d0b92f2012-04-30 21:09:43 +02009835 && (vim_strchr((char_u *)"*?[{~$", *path_end) != NULL
9836#ifndef CASE_INSENSITIVE_FILENAME
9837 || ((flags & EW_ICASE)
9838 && isalpha(PTR2CHAR(path_end)))
9839#endif
9840 ))
Bram Moolenaar231334e2005-07-25 20:46:57 +00009841 e = p;
9842#ifdef FEAT_MBYTE
9843 if (has_mbyte)
9844 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009845 len = (*mb_ptr2len)(path_end);
Bram Moolenaar231334e2005-07-25 20:46:57 +00009846 STRNCPY(p, path_end, len);
9847 p += len;
9848 path_end += len;
9849 }
9850 else
9851#endif
9852 *p++ = *path_end++;
9853 }
9854 e = p;
9855 *e = NUL;
9856
Bram Moolenaar0b573a52011-07-27 17:31:47 +02009857 /* Now we have one wildcard component between "s" and "e". */
Bram Moolenaar231334e2005-07-25 20:46:57 +00009858 /* Remove backslashes between "wildoff" and the start of the wildcard
9859 * component. */
9860 for (p = buf + wildoff; p < s; ++p)
9861 if (rem_backslash(p))
9862 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009863 STRMOVE(p, p + 1);
Bram Moolenaar231334e2005-07-25 20:46:57 +00009864 --e;
9865 --s;
9866 }
9867
9868 /* Check for "**" between "s" and "e". */
9869 for (p = s; p < e; ++p)
9870 if (p[0] == '*' && p[1] == '*')
9871 starstar = TRUE;
9872
9873 /* convert the file pattern to a regexp pattern */
9874 starts_with_dot = (*s == '.');
9875 pat = file_pat_to_reg_pat(s, e, NULL, FALSE);
9876 if (pat == NULL)
9877 {
9878 vim_free(buf);
9879 return 0;
9880 }
9881
9882 /* compile the regexp into a program */
Bram Moolenaarcc016f52005-12-10 20:23:46 +00009883#ifdef CASE_INSENSITIVE_FILENAME
Bram Moolenaar231334e2005-07-25 20:46:57 +00009884 regmatch.rm_ic = TRUE; /* Behave like Terminal.app */
9885#else
Bram Moolenaar94950a92010-12-02 16:01:29 +01009886 if (flags & EW_ICASE)
9887 regmatch.rm_ic = TRUE; /* 'wildignorecase' set */
9888 else
9889 regmatch.rm_ic = FALSE; /* Don't ignore case */
Bram Moolenaar231334e2005-07-25 20:46:57 +00009890#endif
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009891 if (flags & (EW_NOERROR | EW_NOTWILD))
9892 ++emsg_silent;
Bram Moolenaar231334e2005-07-25 20:46:57 +00009893 regmatch.regprog = vim_regcomp(pat, RE_MAGIC);
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009894 if (flags & (EW_NOERROR | EW_NOTWILD))
9895 --emsg_silent;
Bram Moolenaar231334e2005-07-25 20:46:57 +00009896 vim_free(pat);
9897
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009898 if (regmatch.regprog == NULL && (flags & EW_NOTWILD) == 0)
Bram Moolenaar231334e2005-07-25 20:46:57 +00009899 {
9900 vim_free(buf);
9901 return 0;
9902 }
9903
9904 /* If "**" is by itself, this is the first time we encounter it and more
9905 * is following then find matches without any directory. */
9906 if (!didstar && stardepth < 100 && starstar && e - s == 2
9907 && *path_end == '/')
9908 {
9909 STRCPY(s, path_end + 1);
9910 ++stardepth;
9911 (void)unix_expandpath(gap, buf, (int)(s - buf), flags, TRUE);
9912 --stardepth;
9913 }
9914
9915 /* open the directory for scanning */
9916 *s = NUL;
9917 dirp = opendir(*buf == NUL ? "." : (char *)buf);
9918
9919 /* Find all matching entries */
9920 if (dirp != NULL)
9921 {
9922 for (;;)
9923 {
9924 dp = readdir(dirp);
9925 if (dp == NULL)
9926 break;
9927 if ((dp->d_name[0] != '.' || starts_with_dot)
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009928 && ((regmatch.regprog != NULL && vim_regexec(&regmatch,
9929 (char_u *)dp->d_name, (colnr_T)0))
Bram Moolenaar0b573a52011-07-27 17:31:47 +02009930 || ((flags & EW_NOTWILD)
9931 && fnamencmp(path + (s - buf), dp->d_name, e - s) == 0)))
Bram Moolenaar231334e2005-07-25 20:46:57 +00009932 {
9933 STRCPY(s, dp->d_name);
9934 len = STRLEN(buf);
9935
9936 if (starstar && stardepth < 100)
9937 {
9938 /* For "**" in the pattern first go deeper in the tree to
9939 * find matches. */
9940 STRCPY(buf + len, "/**");
9941 STRCPY(buf + len + 3, path_end);
9942 ++stardepth;
9943 (void)unix_expandpath(gap, buf, len + 1, flags, TRUE);
9944 --stardepth;
9945 }
9946
9947 STRCPY(buf + len, path_end);
9948 if (mch_has_exp_wildcard(path_end)) /* handle more wildcards */
9949 {
9950 /* need to expand another component of the path */
9951 /* remove backslashes for the remaining components only */
9952 (void)unix_expandpath(gap, buf, len + 1, flags, FALSE);
9953 }
9954 else
9955 {
9956 /* no more wildcards, check if there is a match */
9957 /* remove backslashes for the remaining components only */
9958 if (*path_end != NUL)
9959 backslash_halve(buf + len + 1);
9960 if (mch_getperm(buf) >= 0) /* add existing file */
9961 {
Bram Moolenaar95e9b492006-03-15 23:04:43 +00009962#ifdef MACOS_CONVERT
Bram Moolenaar231334e2005-07-25 20:46:57 +00009963 size_t precomp_len = STRLEN(buf)+1;
9964 char_u *precomp_buf =
9965 mac_precompose_path(buf, precomp_len, &precomp_len);
Bram Moolenaar95e9b492006-03-15 23:04:43 +00009966
Bram Moolenaar231334e2005-07-25 20:46:57 +00009967 if (precomp_buf)
9968 {
9969 mch_memmove(buf, precomp_buf, precomp_len);
9970 vim_free(precomp_buf);
9971 }
9972#endif
9973 addfile(gap, buf, flags);
9974 }
9975 }
9976 }
9977 }
9978
9979 closedir(dirp);
9980 }
9981
9982 vim_free(buf);
9983 vim_free(regmatch.regprog);
9984
9985 matches = gap->ga_len - start_len;
9986 if (matches > 0)
9987 qsort(((char_u **)gap->ga_data) + start_len, matches,
9988 sizeof(char_u *), pstrcmp);
9989 return matches;
9990}
9991#endif
9992
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009993#if defined(FEAT_SEARCHPATH)
9994static int find_previous_pathsep __ARGS((char_u *path, char_u **psep));
9995static int is_unique __ARGS((char_u *maybe_unique, garray_T *gap, int i));
Bram Moolenaar162bd912010-07-28 22:29:10 +02009996static void expand_path_option __ARGS((char_u *curdir, garray_T *gap));
9997static char_u *get_path_cutoff __ARGS((char_u *fname, garray_T *gap));
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009998static void uniquefy_paths __ARGS((garray_T *gap, char_u *pattern));
9999static int expand_in_path __ARGS((garray_T *gap, char_u *pattern, int flags));
10000
10001/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010002 * Moves "*psep" back to the previous path separator in "path".
10003 * Returns FAIL is "*psep" ends up at the beginning of "path".
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010004 */
10005 static int
10006find_previous_pathsep(path, psep)
10007 char_u *path;
10008 char_u **psep;
10009{
10010 /* skip the current separator */
10011 if (*psep > path && vim_ispathsep(**psep))
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010012 --*psep;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010013
10014 /* find the previous separator */
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010015 while (*psep > path)
10016 {
10017 if (vim_ispathsep(**psep))
10018 return OK;
10019 mb_ptr_back(path, *psep);
10020 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010021
10022 return FAIL;
10023}
10024
10025/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010026 * Returns TRUE if "maybe_unique" is unique wrt other_paths in "gap".
10027 * "maybe_unique" is the end portion of "((char_u **)gap->ga_data)[i]".
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010028 */
10029 static int
10030is_unique(maybe_unique, gap, i)
10031 char_u *maybe_unique;
10032 garray_T *gap;
10033 int i;
10034{
10035 int j;
10036 int candidate_len;
10037 int other_path_len;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010038 char_u **other_paths = (char_u **)gap->ga_data;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010039 char_u *rival;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010040
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010041 for (j = 0; j < gap->ga_len; j++)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010042 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010043 if (j == i)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010044 continue; /* don't compare it with itself */
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010045
Bram Moolenaar624c7aa2010-07-16 20:38:52 +020010046 candidate_len = (int)STRLEN(maybe_unique);
10047 other_path_len = (int)STRLEN(other_paths[j]);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010048 if (other_path_len < candidate_len)
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010049 continue; /* it's different when it's shorter */
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010050
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010051 rival = other_paths[j] + other_path_len - candidate_len;
Bram Moolenaarda9836c2010-08-16 21:53:27 +020010052 if (fnamecmp(maybe_unique, rival) == 0
10053 && (rival == other_paths[j] || vim_ispathsep(*(rival - 1))))
Bram Moolenaar162bd912010-07-28 22:29:10 +020010054 return FALSE; /* match */
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010055 }
10056
Bram Moolenaar162bd912010-07-28 22:29:10 +020010057 return TRUE; /* no match found */
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010058}
10059
10060/*
Bram Moolenaar1a509df2010-08-01 17:59:57 +020010061 * Split the 'path' option into an array of strings in garray_T. Relative
Bram Moolenaar162bd912010-07-28 22:29:10 +020010062 * paths are expanded to their equivalent fullpath. This includes the "."
10063 * (relative to current buffer directory) and empty path (relative to current
10064 * directory) notations.
10065 *
10066 * TODO: handle upward search (;) and path limiter (**N) notations by
10067 * expanding each into their equivalent path(s).
10068 */
10069 static void
10070expand_path_option(curdir, gap)
10071 char_u *curdir;
10072 garray_T *gap;
10073{
10074 char_u *path_option = *curbuf->b_p_path == NUL
10075 ? p_path : curbuf->b_p_path;
10076 char_u *buf;
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010077 char_u *p;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010078 int len;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010079
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010080 if ((buf = alloc((int)MAXPATHL)) == NULL)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010081 return;
10082
10083 while (*path_option != NUL)
10084 {
10085 copy_option_part(&path_option, buf, MAXPATHL, " ,");
10086
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010087 if (buf[0] == '.' && (buf[1] == NUL || vim_ispathsep(buf[1])))
Bram Moolenaar162bd912010-07-28 22:29:10 +020010088 {
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010089 /* Relative to current buffer:
10090 * "/path/file" + "." -> "/path/"
10091 * "/path/file" + "./subdir" -> "/path/subdir" */
Bram Moolenaar162bd912010-07-28 22:29:10 +020010092 if (curbuf->b_ffname == NULL)
10093 continue;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010094 p = gettail(curbuf->b_ffname);
10095 len = (int)(p - curbuf->b_ffname);
10096 if (len + (int)STRLEN(buf) >= MAXPATHL)
10097 continue;
10098 if (buf[1] == NUL)
10099 buf[len] = NUL;
10100 else
10101 STRMOVE(buf + len, buf + 2);
10102 mch_memmove(buf, curbuf->b_ffname, len);
10103 simplify_filename(buf);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010104 }
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010105 else if (buf[0] == NUL)
10106 /* relative to current directory */
Bram Moolenaar162bd912010-07-28 22:29:10 +020010107 STRCPY(buf, curdir);
Bram Moolenaar84f888a2010-08-05 21:40:16 +020010108 else if (path_with_url(buf))
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010109 /* URL can't be used here */
Bram Moolenaar84f888a2010-08-05 21:40:16 +020010110 continue;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010111 else if (!mch_isFullName(buf))
10112 {
10113 /* Expand relative path to their full path equivalent */
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010114 len = (int)STRLEN(curdir);
10115 if (len + (int)STRLEN(buf) + 3 > MAXPATHL)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010116 continue;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010117 STRMOVE(buf + len + 1, buf);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010118 STRCPY(buf, curdir);
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010119 buf[len] = PATHSEP;
Bram Moolenaar57adda12010-08-03 22:11:29 +020010120 simplify_filename(buf);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010121 }
10122
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010123 if (ga_grow(gap, 1) == FAIL)
10124 break;
10125 p = vim_strsave(buf);
10126 if (p == NULL)
10127 break;
10128 ((char_u **)gap->ga_data)[gap->ga_len++] = p;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010129 }
10130
10131 vim_free(buf);
10132}
10133
10134/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010135 * Returns a pointer to the file or directory name in "fname" that matches the
10136 * longest path in "ga"p, or NULL if there is no match. For example:
Bram Moolenaar162bd912010-07-28 22:29:10 +020010137 *
10138 * path: /foo/bar/baz
10139 * fname: /foo/bar/baz/quux.txt
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010140 * returns: ^this
Bram Moolenaar162bd912010-07-28 22:29:10 +020010141 */
10142 static char_u *
10143get_path_cutoff(fname, gap)
10144 char_u *fname;
10145 garray_T *gap;
10146{
10147 int i;
10148 int maxlen = 0;
10149 char_u **path_part = (char_u **)gap->ga_data;
10150 char_u *cutoff = NULL;
10151
10152 for (i = 0; i < gap->ga_len; i++)
10153 {
10154 int j = 0;
10155
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010156 while ((fname[j] == path_part[i][j]
Bram Moolenaar2d7c47d2010-08-10 19:50:26 +020010157# if defined(MSWIN) || defined(MSDOS)
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010158 || (vim_ispathsep(fname[j]) && vim_ispathsep(path_part[i][j]))
10159#endif
10160 ) && fname[j] != NUL && path_part[i][j] != NUL)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010161 j++;
10162 if (j > maxlen)
10163 {
10164 maxlen = j;
10165 cutoff = &fname[j];
10166 }
10167 }
10168
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010169 /* skip to the file or directory name */
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010170 if (cutoff != NULL)
Bram Moolenaar31710262010-08-13 13:36:15 +020010171 while (vim_ispathsep(*cutoff))
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010172 mb_ptr_adv(cutoff);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010173
10174 return cutoff;
10175}
10176
10177/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010178 * Sorts, removes duplicates and modifies all the fullpath names in "gap" so
10179 * that they are unique with respect to each other while conserving the part
10180 * that matches the pattern. Beware, this is at least O(n^2) wrt "gap->ga_len".
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010181 */
10182 static void
10183uniquefy_paths(gap, pattern)
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +020010184 garray_T *gap;
10185 char_u *pattern;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010186{
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +020010187 int i;
10188 int len;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010189 char_u **fnames = (char_u **)gap->ga_data;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010190 int sort_again = FALSE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010191 char_u *pat;
10192 char_u *file_pattern;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010193 char_u *curdir;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010194 regmatch_T regmatch;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010195 garray_T path_ga;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010196 char_u **in_curdir = NULL;
10197 char_u *short_name;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010198
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +020010199 remove_duplicates(gap);
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010200 ga_init2(&path_ga, (int)sizeof(char_u *), 1);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010201
10202 /*
10203 * We need to prepend a '*' at the beginning of file_pattern so that the
10204 * regex matches anywhere in the path. FIXME: is this valid for all
Bram Moolenaarb31e4382010-07-24 16:01:56 +020010205 * possible patterns?
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010206 */
Bram Moolenaar624c7aa2010-07-16 20:38:52 +020010207 len = (int)STRLEN(pattern);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010208 file_pattern = alloc(len + 2);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010209 if (file_pattern == NULL)
10210 return;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010211 file_pattern[0] = '*';
Bram Moolenaar162bd912010-07-28 22:29:10 +020010212 file_pattern[1] = NUL;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010213 STRCAT(file_pattern, pattern);
10214 pat = file_pat_to_reg_pat(file_pattern, NULL, NULL, TRUE);
10215 vim_free(file_pattern);
Bram Moolenaarb31e4382010-07-24 16:01:56 +020010216 if (pat == NULL)
10217 return;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010218
Bram Moolenaarb31e4382010-07-24 16:01:56 +020010219 regmatch.rm_ic = TRUE; /* always ignore case */
10220 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
10221 vim_free(pat);
10222 if (regmatch.regprog == NULL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010223 return;
10224
Bram Moolenaar162bd912010-07-28 22:29:10 +020010225 if ((curdir = alloc((int)(MAXPATHL))) == NULL)
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010226 goto theend;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010227 mch_dirname(curdir, MAXPATHL);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010228 expand_path_option(curdir, &path_ga);
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010229
10230 in_curdir = (char_u **)alloc_clear(gap->ga_len * sizeof(char_u *));
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010231 if (in_curdir == NULL)
10232 goto theend;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010233
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010234 for (i = 0; i < gap->ga_len && !got_int; i++)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010235 {
Bram Moolenaar162bd912010-07-28 22:29:10 +020010236 char_u *path = fnames[i];
10237 int is_in_curdir;
Bram Moolenaar31710262010-08-13 13:36:15 +020010238 char_u *dir_end = gettail_dir(path);
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010239 char_u *pathsep_p;
10240 char_u *path_cutoff;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010241
Bram Moolenaar624c7aa2010-07-16 20:38:52 +020010242 len = (int)STRLEN(path);
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010243 is_in_curdir = fnamencmp(curdir, path, dir_end - path) == 0
Bram Moolenaar162bd912010-07-28 22:29:10 +020010244 && curdir[dir_end - path] == NUL;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010245 if (is_in_curdir)
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010246 in_curdir[i] = vim_strsave(path);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010247
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010248 /* Shorten the filename while maintaining its uniqueness */
10249 path_cutoff = get_path_cutoff(path, &path_ga);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010250
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010251 /* we start at the end of the path */
10252 pathsep_p = path + len - 1;
10253
10254 while (find_previous_pathsep(path, &pathsep_p))
10255 if (vim_regexec(&regmatch, pathsep_p + 1, (colnr_T)0)
10256 && is_unique(pathsep_p + 1, gap, i)
10257 && path_cutoff != NULL && pathsep_p + 1 >= path_cutoff)
10258 {
10259 sort_again = TRUE;
10260 mch_memmove(path, pathsep_p + 1, STRLEN(pathsep_p));
10261 break;
10262 }
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010263
10264 if (mch_isFullName(path))
10265 {
10266 /*
10267 * Last resort: shorten relative to curdir if possible.
10268 * 'possible' means:
10269 * 1. It is under the current directory.
10270 * 2. The result is actually shorter than the original.
10271 *
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010272 * Before curdir After
10273 * /foo/bar/file.txt /foo/bar ./file.txt
10274 * c:\foo\bar\file.txt c:\foo\bar .\file.txt
10275 * /file.txt / /file.txt
10276 * c:\file.txt c:\ .\file.txt
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010277 */
10278 short_name = shorten_fname(path, curdir);
Bram Moolenaar31710262010-08-13 13:36:15 +020010279 if (short_name != NULL && short_name > path + 1
10280#if defined(MSWIN) || defined(MSDOS)
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010281 /* On windows,
Bram Moolenaar31710262010-08-13 13:36:15 +020010282 * shorten_fname("c:\a\a.txt", "c:\a\b")
Bram Moolenaar31710262010-08-13 13:36:15 +020010283 * returns "\a\a.txt", which is not really the short
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010284 * name, hence: */
Bram Moolenaar31710262010-08-13 13:36:15 +020010285 && !vim_ispathsep(*short_name)
10286#endif
10287 )
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010288 {
10289 STRCPY(path, ".");
10290 add_pathsep(path);
Bram Moolenaarcda000e2010-08-14 13:34:39 +020010291 STRMOVE(path + STRLEN(path), short_name);
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010292 }
10293 }
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010294 ui_breakcheck();
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010295 }
10296
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010297 /* Shorten filenames in /in/current/directory/{filename} */
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010298 for (i = 0; i < gap->ga_len && !got_int; i++)
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010299 {
10300 char_u *rel_path;
10301 char_u *path = in_curdir[i];
10302
10303 if (path == NULL)
10304 continue;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010305
10306 /* If the {filename} is not unique, change it to ./{filename}.
10307 * Else reduce it to {filename} */
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010308 short_name = shorten_fname(path, curdir);
10309 if (short_name == NULL)
10310 short_name = path;
10311 if (is_unique(short_name, gap, i))
10312 {
10313 STRCPY(fnames[i], short_name);
10314 continue;
10315 }
10316
10317 rel_path = alloc((int)(STRLEN(short_name) + STRLEN(PATHSEPSTR) + 2));
10318 if (rel_path == NULL)
10319 goto theend;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010320 STRCPY(rel_path, ".");
10321 add_pathsep(rel_path);
10322 STRCAT(rel_path, short_name);
10323
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010324 vim_free(fnames[i]);
10325 fnames[i] = rel_path;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010326 sort_again = TRUE;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010327 ui_breakcheck();
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010328 }
10329
Bram Moolenaar162bd912010-07-28 22:29:10 +020010330theend:
10331 vim_free(curdir);
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010332 if (in_curdir != NULL)
10333 {
10334 for (i = 0; i < gap->ga_len; i++)
10335 vim_free(in_curdir[i]);
10336 vim_free(in_curdir);
10337 }
Bram Moolenaar162bd912010-07-28 22:29:10 +020010338 ga_clear_strings(&path_ga);
Bram Moolenaarb31e4382010-07-24 16:01:56 +020010339 vim_free(regmatch.regprog);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010340
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010341 if (sort_again)
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +020010342 remove_duplicates(gap);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010343}
10344
10345/*
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010346 * Calls globpath() with 'path' values for the given pattern and stores the
10347 * result in "gap".
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010348 * Returns the total number of matches.
10349 */
10350 static int
10351expand_in_path(gap, pattern, flags)
10352 garray_T *gap;
10353 char_u *pattern;
10354 int flags; /* EW_* flags */
10355{
Bram Moolenaar162bd912010-07-28 22:29:10 +020010356 char_u *curdir;
10357 garray_T path_ga;
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010358 char_u *files = NULL;
10359 char_u *s; /* start */
10360 char_u *e; /* end */
10361 char_u *paths = NULL;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010362
Bram Moolenaar7f0f6212010-08-03 22:21:00 +020010363 if ((curdir = alloc((unsigned)MAXPATHL)) == NULL)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010364 return 0;
10365 mch_dirname(curdir, MAXPATHL);
10366
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010367 ga_init2(&path_ga, (int)sizeof(char_u *), 1);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010368 expand_path_option(curdir, &path_ga);
10369 vim_free(curdir);
Bram Moolenaar006d2b02010-08-04 12:39:44 +020010370 if (path_ga.ga_len == 0)
10371 return 0;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010372
10373 paths = ga_concat_strings(&path_ga);
10374 ga_clear_strings(&path_ga);
10375 if (paths == NULL)
Bram Moolenaar7f0f6212010-08-03 22:21:00 +020010376 return 0;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010377
Bram Moolenaar94950a92010-12-02 16:01:29 +010010378 files = globpath(paths, pattern, (flags & EW_ICASE) ? WILD_ICASE : 0);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010379 vim_free(paths);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010380 if (files == NULL)
10381 return 0;
10382
10383 /* Copy each path in files into gap */
10384 s = e = files;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010385 while (*s != NUL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010386 {
Bram Moolenaar162bd912010-07-28 22:29:10 +020010387 while (*e != '\n' && *e != NUL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010388 e++;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010389 if (*e == NUL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010390 {
10391 addfile(gap, s, flags);
10392 break;
10393 }
10394 else
10395 {
10396 /* *e is '\n' */
Bram Moolenaar162bd912010-07-28 22:29:10 +020010397 *e = NUL;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010398 addfile(gap, s, flags);
10399 e++;
10400 s = e;
10401 }
10402 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010403 vim_free(files);
10404
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010405 return gap->ga_len;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010406}
10407#endif
10408
Bram Moolenaar1587a1e2010-07-29 20:59:59 +020010409#if defined(FEAT_SEARCHPATH) || defined(FEAT_CMDL_COMPL) || defined(PROTO)
10410/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010411 * Sort "gap" and remove duplicate entries. "gap" is expected to contain a
10412 * list of file names in allocated memory.
Bram Moolenaar1587a1e2010-07-29 20:59:59 +020010413 */
10414 void
10415remove_duplicates(gap)
10416 garray_T *gap;
10417{
10418 int i;
10419 int j;
10420 char_u **fnames = (char_u **)gap->ga_data;
10421
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010422 sort_strings(fnames, gap->ga_len);
Bram Moolenaar1587a1e2010-07-29 20:59:59 +020010423 for (i = gap->ga_len - 1; i > 0; --i)
10424 if (fnamecmp(fnames[i - 1], fnames[i]) == 0)
10425 {
10426 vim_free(fnames[i]);
10427 for (j = i + 1; j < gap->ga_len; ++j)
10428 fnames[j - 1] = fnames[j];
10429 --gap->ga_len;
10430 }
10431}
10432#endif
10433
Bram Moolenaar071d4272004-06-13 20:20:40 +000010434/*
10435 * Generic wildcard expansion code.
10436 *
10437 * Characters in "pat" that should not be expanded must be preceded with a
10438 * backslash. E.g., "/path\ with\ spaces/my\*star*"
10439 *
10440 * Return FAIL when no single file was found. In this case "num_file" is not
10441 * set, and "file" may contain an error message.
10442 * Return OK when some files found. "num_file" is set to the number of
10443 * matches, "file" to the array of matches. Call FreeWild() later.
10444 */
10445 int
10446gen_expand_wildcards(num_pat, pat, num_file, file, flags)
10447 int num_pat; /* number of input patterns */
10448 char_u **pat; /* array of input patterns */
10449 int *num_file; /* resulting number of files */
10450 char_u ***file; /* array of resulting files */
10451 int flags; /* EW_* flags */
10452{
10453 int i;
10454 garray_T ga;
10455 char_u *p;
10456 static int recursive = FALSE;
10457 int add_pat;
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010458#if defined(FEAT_SEARCHPATH)
10459 int did_expand_in_path = FALSE;
10460#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010461
10462 /*
10463 * expand_env() is called to expand things like "~user". If this fails,
10464 * it calls ExpandOne(), which brings us back here. In this case, always
10465 * call the machine specific expansion function, if possible. Otherwise,
10466 * return FAIL.
10467 */
10468 if (recursive)
10469#ifdef SPECIAL_WILDCHAR
10470 return mch_expand_wildcards(num_pat, pat, num_file, file, flags);
10471#else
10472 return FAIL;
10473#endif
10474
10475#ifdef SPECIAL_WILDCHAR
10476 /*
10477 * If there are any special wildcard characters which we cannot handle
10478 * here, call machine specific function for all the expansion. This
10479 * avoids starting the shell for each argument separately.
10480 * For `=expr` do use the internal function.
10481 */
10482 for (i = 0; i < num_pat; i++)
10483 {
10484 if (vim_strpbrk(pat[i], (char_u *)SPECIAL_WILDCHAR) != NULL
10485# ifdef VIM_BACKTICK
10486 && !(vim_backtick(pat[i]) && pat[i][1] == '=')
10487# endif
10488 )
10489 return mch_expand_wildcards(num_pat, pat, num_file, file, flags);
10490 }
10491#endif
10492
10493 recursive = TRUE;
10494
10495 /*
10496 * The matching file names are stored in a growarray. Init it empty.
10497 */
10498 ga_init2(&ga, (int)sizeof(char_u *), 30);
10499
10500 for (i = 0; i < num_pat; ++i)
10501 {
10502 add_pat = -1;
10503 p = pat[i];
10504
10505#ifdef VIM_BACKTICK
10506 if (vim_backtick(p))
10507 add_pat = expand_backtick(&ga, p, flags);
10508 else
10509#endif
10510 {
10511 /*
10512 * First expand environment variables, "~/" and "~user/".
10513 */
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010514 if (vim_strchr(p, '$') != NULL || *p == '~')
Bram Moolenaar071d4272004-06-13 20:20:40 +000010515 {
Bram Moolenaar9f0545d2007-09-26 20:36:32 +000010516 p = expand_env_save_opt(p, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010517 if (p == NULL)
10518 p = pat[i];
10519#ifdef UNIX
10520 /*
10521 * On Unix, if expand_env() can't expand an environment
10522 * variable, use the shell to do that. Discard previously
10523 * found file names and start all over again.
10524 */
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010525 else if (vim_strchr(p, '$') != NULL || *p == '~')
Bram Moolenaar071d4272004-06-13 20:20:40 +000010526 {
10527 vim_free(p);
Bram Moolenaar782027e2009-06-24 14:25:49 +000010528 ga_clear_strings(&ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010529 i = mch_expand_wildcards(num_pat, pat, num_file, file,
10530 flags);
10531 recursive = FALSE;
10532 return i;
10533 }
10534#endif
10535 }
10536
10537 /*
10538 * If there are wildcards: Expand file names and add each match to
10539 * the list. If there is no match, and EW_NOTFOUND is given, add
10540 * the pattern.
10541 * If there are no wildcards: Add the file name if it exists or
10542 * when EW_NOTFOUND is given.
10543 */
10544 if (mch_has_exp_wildcard(p))
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010545 {
10546#if defined(FEAT_SEARCHPATH)
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010547 if ((flags & EW_PATH)
10548 && !mch_isFullName(p)
10549 && !(p[0] == '.'
10550 && (vim_ispathsep(p[1])
10551 || (p[1] == '.' && vim_ispathsep(p[2]))))
10552 )
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010553 {
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010554 /* :find completion where 'path' is used.
10555 * Recursiveness is OK here. */
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010556 recursive = FALSE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010557 add_pat = expand_in_path(&ga, p, flags);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010558 recursive = TRUE;
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010559 did_expand_in_path = TRUE;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010560 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010561 else
10562#endif
10563 add_pat = mch_expandpath(&ga, p, flags);
10564 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010565 }
10566
10567 if (add_pat == -1 || (add_pat == 0 && (flags & EW_NOTFOUND)))
10568 {
10569 char_u *t = backslash_halve_save(p);
10570
10571#if defined(MACOS_CLASSIC)
10572 slash_to_colon(t);
10573#endif
10574 /* When EW_NOTFOUND is used, always add files and dirs. Makes
10575 * "vim c:/" work. */
10576 if (flags & EW_NOTFOUND)
10577 addfile(&ga, t, flags | EW_DIR | EW_FILE);
10578 else if (mch_getperm(t) >= 0)
10579 addfile(&ga, t, flags);
10580 vim_free(t);
10581 }
10582
Bram Moolenaarb28ebbc2010-07-14 16:59:57 +020010583#if defined(FEAT_SEARCHPATH)
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010584 if (did_expand_in_path && ga.ga_len > 0 && (flags & EW_PATH))
Bram Moolenaarb28ebbc2010-07-14 16:59:57 +020010585 uniquefy_paths(&ga, p);
10586#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010587 if (p != pat[i])
10588 vim_free(p);
10589 }
10590
10591 *num_file = ga.ga_len;
10592 *file = (ga.ga_data != NULL) ? (char_u **)ga.ga_data : (char_u **)"";
10593
10594 recursive = FALSE;
10595
10596 return (ga.ga_data != NULL) ? OK : FAIL;
10597}
10598
10599# ifdef VIM_BACKTICK
10600
10601/*
10602 * Return TRUE if we can expand this backtick thing here.
10603 */
10604 static int
10605vim_backtick(p)
10606 char_u *p;
10607{
10608 return (*p == '`' && *(p + 1) != NUL && *(p + STRLEN(p) - 1) == '`');
10609}
10610
10611/*
10612 * Expand an item in `backticks` by executing it as a command.
10613 * Currently only works when pat[] starts and ends with a `.
10614 * Returns number of file names found.
10615 */
10616 static int
10617expand_backtick(gap, pat, flags)
10618 garray_T *gap;
10619 char_u *pat;
10620 int flags; /* EW_* flags */
10621{
10622 char_u *p;
10623 char_u *cmd;
10624 char_u *buffer;
10625 int cnt = 0;
10626 int i;
10627
10628 /* Create the command: lop off the backticks. */
10629 cmd = vim_strnsave(pat + 1, (int)STRLEN(pat) - 2);
10630 if (cmd == NULL)
10631 return 0;
10632
10633#ifdef FEAT_EVAL
10634 if (*cmd == '=') /* `={expr}`: Expand expression */
Bram Moolenaar362e1a32006-03-06 23:29:24 +000010635 buffer = eval_to_string(cmd + 1, &p, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010636 else
10637#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +000010638 buffer = get_cmd_output(cmd, NULL,
10639 (flags & EW_SILENT) ? SHELL_SILENT : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010640 vim_free(cmd);
10641 if (buffer == NULL)
10642 return 0;
10643
10644 cmd = buffer;
10645 while (*cmd != NUL)
10646 {
10647 cmd = skipwhite(cmd); /* skip over white space */
10648 p = cmd;
10649 while (*p != NUL && *p != '\r' && *p != '\n') /* skip over entry */
10650 ++p;
10651 /* add an entry if it is not empty */
10652 if (p > cmd)
10653 {
10654 i = *p;
10655 *p = NUL;
10656 addfile(gap, cmd, flags);
10657 *p = i;
10658 ++cnt;
10659 }
10660 cmd = p;
10661 while (*cmd != NUL && (*cmd == '\r' || *cmd == '\n'))
10662 ++cmd;
10663 }
10664
10665 vim_free(buffer);
10666 return cnt;
10667}
10668# endif /* VIM_BACKTICK */
10669
10670/*
10671 * Add a file to a file list. Accepted flags:
10672 * EW_DIR add directories
10673 * EW_FILE add files
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000010674 * EW_EXEC add executable files
Bram Moolenaar071d4272004-06-13 20:20:40 +000010675 * EW_NOTFOUND add even when it doesn't exist
10676 * EW_ADDSLASH add slash after directory name
10677 */
10678 void
10679addfile(gap, f, flags)
10680 garray_T *gap;
10681 char_u *f; /* filename */
10682 int flags;
10683{
10684 char_u *p;
10685 int isdir;
10686
10687 /* if the file/dir doesn't exist, may not add it */
10688 if (!(flags & EW_NOTFOUND) && mch_getperm(f) < 0)
10689 return;
10690
10691#ifdef FNAME_ILLEGAL
10692 /* if the file/dir contains illegal characters, don't add it */
10693 if (vim_strpbrk(f, (char_u *)FNAME_ILLEGAL) != NULL)
10694 return;
10695#endif
10696
10697 isdir = mch_isdir(f);
10698 if ((isdir && !(flags & EW_DIR)) || (!isdir && !(flags & EW_FILE)))
10699 return;
10700
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000010701 /* If the file isn't executable, may not add it. Do accept directories. */
10702 if (!isdir && (flags & EW_EXEC) && !mch_can_exe(f))
10703 return;
10704
Bram Moolenaar071d4272004-06-13 20:20:40 +000010705 /* Make room for another item in the file list. */
10706 if (ga_grow(gap, 1) == FAIL)
10707 return;
10708
10709 p = alloc((unsigned)(STRLEN(f) + 1 + isdir));
10710 if (p == NULL)
10711 return;
10712
10713 STRCPY(p, f);
10714#ifdef BACKSLASH_IN_FILENAME
10715 slash_adjust(p);
10716#endif
10717 /*
10718 * Append a slash or backslash after directory names if none is present.
10719 */
10720#ifndef DONT_ADD_PATHSEP_TO_DIR
10721 if (isdir && (flags & EW_ADDSLASH))
10722 add_pathsep(p);
10723#endif
10724 ((char_u **)gap->ga_data)[gap->ga_len++] = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010725}
10726#endif /* !NO_EXPANDPATH */
10727
10728#if defined(VIM_BACKTICK) || defined(FEAT_EVAL) || defined(PROTO)
10729
10730#ifndef SEEK_SET
10731# define SEEK_SET 0
10732#endif
10733#ifndef SEEK_END
10734# define SEEK_END 2
10735#endif
10736
10737/*
10738 * Get the stdout of an external command.
10739 * Returns an allocated string, or NULL for error.
10740 */
10741 char_u *
Bram Moolenaarc0197e22004-09-13 20:26:32 +000010742get_cmd_output(cmd, infile, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010743 char_u *cmd;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000010744 char_u *infile; /* optional input file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010745 int flags; /* can be SHELL_SILENT */
10746{
10747 char_u *tempname;
10748 char_u *command;
10749 char_u *buffer = NULL;
10750 int len;
10751 int i = 0;
10752 FILE *fd;
10753
10754 if (check_restricted() || check_secure())
10755 return NULL;
10756
10757 /* get a name for the temp file */
10758 if ((tempname = vim_tempname('o')) == NULL)
10759 {
10760 EMSG(_(e_notmp));
10761 return NULL;
10762 }
10763
10764 /* Add the redirection stuff */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000010765 command = make_filter_cmd(cmd, infile, tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010766 if (command == NULL)
10767 goto done;
10768
10769 /*
10770 * Call the shell to execute the command (errors are ignored).
10771 * Don't check timestamps here.
10772 */
10773 ++no_check_timestamps;
10774 call_shell(command, SHELL_DOOUT | SHELL_EXPAND | flags);
10775 --no_check_timestamps;
10776
10777 vim_free(command);
10778
10779 /*
10780 * read the names from the file into memory
10781 */
10782# ifdef VMS
Bram Moolenaar25394022007-05-10 19:06:20 +000010783 /* created temporary file is not always readable as binary */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010784 fd = mch_fopen((char *)tempname, "r");
10785# else
10786 fd = mch_fopen((char *)tempname, READBIN);
10787# endif
10788
10789 if (fd == NULL)
10790 {
10791 EMSG2(_(e_notopen), tempname);
10792 goto done;
10793 }
10794
10795 fseek(fd, 0L, SEEK_END);
10796 len = ftell(fd); /* get size of temp file */
10797 fseek(fd, 0L, SEEK_SET);
10798
10799 buffer = alloc(len + 1);
10800 if (buffer != NULL)
10801 i = (int)fread((char *)buffer, (size_t)1, (size_t)len, fd);
10802 fclose(fd);
10803 mch_remove(tempname);
10804 if (buffer == NULL)
10805 goto done;
10806#ifdef VMS
10807 len = i; /* VMS doesn't give us what we asked for... */
10808#endif
10809 if (i != len)
10810 {
10811 EMSG2(_(e_notread), tempname);
10812 vim_free(buffer);
10813 buffer = NULL;
10814 }
10815 else
Bram Moolenaar162bd912010-07-28 22:29:10 +020010816 buffer[len] = NUL; /* make sure the buffer is terminated */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010817
10818done:
10819 vim_free(tempname);
10820 return buffer;
10821}
10822#endif
10823
10824/*
10825 * Free the list of files returned by expand_wildcards() or other expansion
10826 * functions.
10827 */
10828 void
10829FreeWild(count, files)
10830 int count;
10831 char_u **files;
10832{
Bram Moolenaarfc1421e2006-04-20 22:17:20 +000010833 if (count <= 0 || files == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010834 return;
10835#if defined(__EMX__) && defined(__ALWAYS_HAS_TRAILING_NULL_POINTER) /* XXX */
10836 /*
10837 * Is this still OK for when other functions than expand_wildcards() have
10838 * been used???
10839 */
10840 _fnexplodefree((char **)files);
10841#else
10842 while (count--)
10843 vim_free(files[count]);
10844 vim_free(files);
10845#endif
10846}
10847
10848/*
Bram Moolenaara9dc3752010-07-11 20:46:53 +020010849 * Return TRUE when need to go to Insert mode because of 'insertmode'.
Bram Moolenaar071d4272004-06-13 20:20:40 +000010850 * Don't do this when still processing a command or a mapping.
10851 * Don't do this when inside a ":normal" command.
10852 */
10853 int
10854goto_im()
10855{
10856 return (p_im && stuff_empty() && typebuf_typed());
10857}