blob: ab42f04db1fc60d0da038ea91fbbce2581527a16 [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
3291/*
3292 * Get a key stroke directly from the user.
3293 * Ignores mouse clicks and scrollbar events, except a click for the left
3294 * button (used at the more prompt).
3295 * Doesn't use vgetc(), because it syncs undo and eats mapped characters.
3296 * Disadvantage: typeahead is ignored.
3297 * Translates the interrupt character for unix to ESC.
3298 */
3299 int
3300get_keystroke()
3301{
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003302 char_u *buf = NULL;
3303 int buflen = 150;
3304 int maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305 int len = 0;
3306 int n;
3307 int save_mapped_ctrl_c = mapped_ctrl_c;
Bram Moolenaar4395a712006-09-05 18:57:57 +00003308 int waited = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003309
3310 mapped_ctrl_c = FALSE; /* mappings are not used here */
3311 for (;;)
3312 {
3313 cursor_on();
3314 out_flush();
3315
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003316 /* Leave some room for check_termcode() to insert a key code into (max
3317 * 5 chars plus NUL). And fix_input_buffer() can triple the number of
3318 * bytes. */
3319 maxlen = (buflen - 6 - len) / 3;
3320 if (buf == NULL)
3321 buf = alloc(buflen);
3322 else if (maxlen < 10)
3323 {
Bram Moolenaardc7e85e2012-06-20 12:40:08 +02003324 /* Need some more space. This might happen when receiving a long
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003325 * escape sequence. */
3326 buflen += 100;
3327 buf = vim_realloc(buf, buflen);
3328 maxlen = (buflen - 6 - len) / 3;
3329 }
3330 if (buf == NULL)
3331 {
3332 do_outofmem_msg((long_u)buflen);
3333 return ESC; /* panic! */
3334 }
3335
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336 /* First time: blocking wait. Second time: wait up to 100ms for a
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003337 * terminal code to complete. */
3338 n = ui_inchar(buf + len, maxlen, len == 0 ? -1L : 100L, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339 if (n > 0)
3340 {
3341 /* Replace zero and CSI by a special key code. */
3342 n = fix_input_buffer(buf + len, n, FALSE);
3343 len += n;
Bram Moolenaar4395a712006-09-05 18:57:57 +00003344 waited = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345 }
Bram Moolenaar4395a712006-09-05 18:57:57 +00003346 else if (len > 0)
3347 ++waited; /* keep track of the waiting time */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348
Bram Moolenaar4395a712006-09-05 18:57:57 +00003349 /* Incomplete termcode and not timed out yet: get more characters */
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003350 if ((n = check_termcode(1, buf, buflen, &len)) < 0
Bram Moolenaar4395a712006-09-05 18:57:57 +00003351 && (!p_ttimeout || waited * 100L < (p_ttm < 0 ? p_tm : p_ttm)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352 continue;
Bram Moolenaar4395a712006-09-05 18:57:57 +00003353
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003354 if (n == KEYLEN_REMOVED) /* key code removed */
Bram Moolenaar6eb634e2011-03-03 15:04:08 +01003355 {
Bram Moolenaarfd30cd42011-03-22 13:07:26 +01003356 if (must_redraw != 0 && !need_wait_return && (State & CMDLINE) == 0)
Bram Moolenaar6eb634e2011-03-03 15:04:08 +01003357 {
3358 /* Redrawing was postponed, do it now. */
3359 update_screen(0);
3360 setcursor(); /* put cursor back where it belongs */
3361 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003362 continue;
Bram Moolenaar6eb634e2011-03-03 15:04:08 +01003363 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003364 if (n > 0) /* found a termcode: adjust length */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365 len = n;
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003366 if (len == 0) /* nothing typed yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367 continue;
3368
3369 /* Handle modifier and/or special key code. */
3370 n = buf[0];
3371 if (n == K_SPECIAL)
3372 {
3373 n = TO_SPECIAL(buf[1], buf[2]);
3374 if (buf[1] == KS_MODIFIER
3375 || n == K_IGNORE
3376#ifdef FEAT_MOUSE
3377 || n == K_LEFTMOUSE_NM
3378 || n == K_LEFTDRAG
3379 || n == K_LEFTRELEASE
3380 || n == K_LEFTRELEASE_NM
3381 || n == K_MIDDLEMOUSE
3382 || n == K_MIDDLEDRAG
3383 || n == K_MIDDLERELEASE
3384 || n == K_RIGHTMOUSE
3385 || n == K_RIGHTDRAG
3386 || n == K_RIGHTRELEASE
3387 || n == K_MOUSEDOWN
3388 || n == K_MOUSEUP
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003389 || n == K_MOUSELEFT
3390 || n == K_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391 || n == K_X1MOUSE
3392 || n == K_X1DRAG
3393 || n == K_X1RELEASE
3394 || n == K_X2MOUSE
3395 || n == K_X2DRAG
3396 || n == K_X2RELEASE
3397# ifdef FEAT_GUI
3398 || n == K_VER_SCROLLBAR
3399 || n == K_HOR_SCROLLBAR
3400# endif
3401#endif
3402 )
3403 {
3404 if (buf[1] == KS_MODIFIER)
3405 mod_mask = buf[2];
3406 len -= 3;
3407 if (len > 0)
3408 mch_memmove(buf, buf + 3, (size_t)len);
3409 continue;
3410 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00003411 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412 }
3413#ifdef FEAT_MBYTE
3414 if (has_mbyte)
3415 {
3416 if (MB_BYTE2LEN(n) > len)
3417 continue; /* more bytes to get */
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003418 buf[len >= buflen ? buflen - 1 : len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419 n = (*mb_ptr2char)(buf);
3420 }
3421#endif
3422#ifdef UNIX
3423 if (n == intr_char)
3424 n = ESC;
3425#endif
3426 break;
3427 }
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003428 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429
3430 mapped_ctrl_c = save_mapped_ctrl_c;
3431 return n;
3432}
3433
3434/*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003435 * Get a number from the user.
3436 * When "mouse_used" is not NULL allow using the mouse.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 */
3438 int
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003439get_number(colon, mouse_used)
3440 int colon; /* allow colon to abort */
3441 int *mouse_used;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442{
3443 int n = 0;
3444 int c;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00003445 int typed = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003447 if (mouse_used != NULL)
3448 *mouse_used = FALSE;
3449
Bram Moolenaar071d4272004-06-13 20:20:40 +00003450 /* When not printing messages, the user won't know what to type, return a
3451 * zero (as if CR was hit). */
3452 if (msg_silent != 0)
3453 return 0;
3454
3455#ifdef USE_ON_FLY_SCROLL
3456 dont_scroll = TRUE; /* disallow scrolling here */
3457#endif
3458 ++no_mapping;
3459 ++allow_keys; /* no mapping here, but recognize keys */
3460 for (;;)
3461 {
3462 windgoto(msg_row, msg_col);
3463 c = safe_vgetc();
3464 if (VIM_ISDIGIT(c))
3465 {
3466 n = n * 10 + c - '0';
3467 msg_putchar(c);
Bram Moolenaar3991dab2006-03-27 17:01:56 +00003468 ++typed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469 }
3470 else if (c == K_DEL || c == K_KDEL || c == K_BS || c == Ctrl_H)
3471 {
Bram Moolenaar3991dab2006-03-27 17:01:56 +00003472 if (typed > 0)
3473 {
3474 MSG_PUTS("\b \b");
3475 --typed;
3476 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477 n /= 10;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478 }
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003479#ifdef FEAT_MOUSE
3480 else if (mouse_used != NULL && c == K_LEFTMOUSE)
3481 {
3482 *mouse_used = TRUE;
3483 n = mouse_row + 1;
3484 break;
3485 }
3486#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487 else if (n == 0 && c == ':' && colon)
3488 {
3489 stuffcharReadbuff(':');
3490 if (!exmode_active)
3491 cmdline_row = msg_row;
3492 skip_redraw = TRUE; /* skip redraw once */
3493 do_redraw = FALSE;
3494 break;
3495 }
3496 else if (c == CAR || c == NL || c == Ctrl_C || c == ESC)
3497 break;
3498 }
3499 --no_mapping;
3500 --allow_keys;
3501 return n;
3502}
3503
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003504/*
3505 * Ask the user to enter a number.
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003506 * When "mouse_used" is not NULL allow using the mouse and in that case return
3507 * the line number.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003508 */
3509 int
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003510prompt_for_number(mouse_used)
3511 int *mouse_used;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003512{
3513 int i;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003514 int save_cmdline_row;
3515 int save_State;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003516
3517 /* When using ":silent" assume that <CR> was entered. */
Bram Moolenaar42eeac32005-06-29 22:40:58 +00003518 if (mouse_used != NULL)
Bram Moolenaard812df62008-11-09 12:46:09 +00003519 MSG_PUTS(_("Type number and <Enter> or click with mouse (empty cancels): "));
Bram Moolenaar42eeac32005-06-29 22:40:58 +00003520 else
Bram Moolenaard812df62008-11-09 12:46:09 +00003521 MSG_PUTS(_("Type number and <Enter> (empty cancels): "));
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003522
Bram Moolenaar203335e2006-09-03 14:35:42 +00003523 /* Set the state such that text can be selected/copied/pasted and we still
3524 * get mouse events. */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003525 save_cmdline_row = cmdline_row;
Bram Moolenaar203335e2006-09-03 14:35:42 +00003526 cmdline_row = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003527 save_State = State;
Bram Moolenaar203335e2006-09-03 14:35:42 +00003528 State = CMDLINE;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003529
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003530 i = get_number(TRUE, mouse_used);
3531 if (KeyTyped)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003532 {
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003533 /* don't call wait_return() now */
3534 /* msg_putchar('\n'); */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003535 cmdline_row = msg_row - 1;
3536 need_wait_return = FALSE;
3537 msg_didany = FALSE;
Bram Moolenaarb2450162009-07-22 09:04:20 +00003538 msg_didout = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003539 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003540 else
3541 cmdline_row = save_cmdline_row;
3542 State = save_State;
3543
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003544 return i;
3545}
3546
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547 void
3548msgmore(n)
3549 long n;
3550{
3551 long pn;
3552
3553 if (global_busy /* no messages now, wait until global is finished */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554 || !messaging()) /* 'lazyredraw' set, don't do messages now */
3555 return;
3556
Bram Moolenaar7df2d662005-01-25 22:18:08 +00003557 /* We don't want to overwrite another important message, but do overwrite
3558 * a previous "more lines" or "fewer lines" message, so that "5dd" and
3559 * then "put" reports the last action. */
3560 if (keep_msg != NULL && !keep_msg_more)
3561 return;
3562
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563 if (n > 0)
3564 pn = n;
3565 else
3566 pn = -n;
3567
3568 if (pn > p_report)
3569 {
3570 if (pn == 1)
3571 {
3572 if (n > 0)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003573 vim_strncpy(msg_buf, (char_u *)_("1 more line"),
3574 MSG_BUF_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003575 else
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003576 vim_strncpy(msg_buf, (char_u *)_("1 line less"),
3577 MSG_BUF_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578 }
3579 else
3580 {
3581 if (n > 0)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003582 vim_snprintf((char *)msg_buf, MSG_BUF_LEN,
3583 _("%ld more lines"), pn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 else
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003585 vim_snprintf((char *)msg_buf, MSG_BUF_LEN,
3586 _("%ld fewer lines"), pn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587 }
3588 if (got_int)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003589 vim_strcat(msg_buf, (char_u *)_(" (Interrupted)"), MSG_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590 if (msg(msg_buf))
3591 {
Bram Moolenaar238a5642006-02-21 22:12:05 +00003592 set_keep_msg(msg_buf, 0);
Bram Moolenaar7df2d662005-01-25 22:18:08 +00003593 keep_msg_more = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003594 }
3595 }
3596}
3597
3598/*
3599 * flush map and typeahead buffers and give a warning for an error
3600 */
3601 void
3602beep_flush()
3603{
3604 if (emsg_silent == 0)
3605 {
3606 flush_buffers(FALSE);
3607 vim_beep();
3608 }
3609}
3610
3611/*
3612 * give a warning for an error
3613 */
3614 void
3615vim_beep()
3616{
3617 if (emsg_silent == 0)
3618 {
3619 if (p_vb
3620#ifdef FEAT_GUI
3621 /* While the GUI is starting up the termcap is set for the GUI
3622 * but the output still goes to a terminal. */
3623 && !(gui.in_use && gui.starting)
3624#endif
3625 )
3626 {
3627 out_str(T_VB);
3628 }
3629 else
3630 {
3631#ifdef MSDOS
3632 /*
3633 * The number of beeps outputted is reduced to avoid having to wait
3634 * for all the beeps to finish. This is only a problem on systems
3635 * where the beeps don't overlap.
3636 */
3637 if (beep_count == 0 || beep_count == 10)
3638 {
3639 out_char(BELL);
3640 beep_count = 1;
3641 }
3642 else
3643 ++beep_count;
3644#else
3645 out_char(BELL);
3646#endif
3647 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003648
3649 /* When 'verbose' is set and we are sourcing a script or executing a
3650 * function give the user a hint where the beep comes from. */
3651 if (vim_strchr(p_debug, 'e') != NULL)
3652 {
3653 msg_source(hl_attr(HLF_W));
3654 msg_attr((char_u *)_("Beep!"), hl_attr(HLF_W));
3655 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656 }
3657}
3658
3659/*
3660 * To get the "real" home directory:
3661 * - get value of $HOME
3662 * For Unix:
3663 * - go to that directory
3664 * - do mch_dirname() to get the real name of that directory.
3665 * This also works with mounts and links.
3666 * Don't do this for MS-DOS, it will change the "current dir" for a drive.
3667 */
3668static char_u *homedir = NULL;
3669
3670 void
3671init_homedir()
3672{
3673 char_u *var;
3674
Bram Moolenaar05159a02005-02-26 23:04:13 +00003675 /* In case we are called a second time (when 'encoding' changes). */
3676 vim_free(homedir);
3677 homedir = NULL;
3678
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679#ifdef VMS
3680 var = mch_getenv((char_u *)"SYS$LOGIN");
3681#else
3682 var = mch_getenv((char_u *)"HOME");
3683#endif
3684
3685 if (var != NULL && *var == NUL) /* empty is same as not set */
3686 var = NULL;
3687
3688#ifdef WIN3264
3689 /*
3690 * Weird but true: $HOME may contain an indirect reference to another
3691 * variable, esp. "%USERPROFILE%". Happens when $USERPROFILE isn't set
3692 * when $HOME is being set.
3693 */
3694 if (var != NULL && *var == '%')
3695 {
3696 char_u *p;
3697 char_u *exp;
3698
3699 p = vim_strchr(var + 1, '%');
3700 if (p != NULL)
3701 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00003702 vim_strncpy(NameBuff, var + 1, p - (var + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 exp = mch_getenv(NameBuff);
3704 if (exp != NULL && *exp != NUL
3705 && STRLEN(exp) + STRLEN(p) < MAXPATHL)
3706 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00003707 vim_snprintf((char *)NameBuff, MAXPATHL, "%s%s", exp, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708 var = NameBuff;
3709 /* Also set $HOME, it's needed for _viminfo. */
3710 vim_setenv((char_u *)"HOME", NameBuff);
3711 }
3712 }
3713 }
3714
3715 /*
3716 * Typically, $HOME is not defined on Windows, unless the user has
3717 * specifically defined it for Vim's sake. However, on Windows NT
3718 * platforms, $HOMEDRIVE and $HOMEPATH are automatically defined for
3719 * each user. Try constructing $HOME from these.
3720 */
3721 if (var == NULL)
3722 {
3723 char_u *homedrive, *homepath;
3724
3725 homedrive = mch_getenv((char_u *)"HOMEDRIVE");
3726 homepath = mch_getenv((char_u *)"HOMEPATH");
Bram Moolenaar6f977012010-01-06 17:53:38 +01003727 if (homepath == NULL || *homepath == NUL)
3728 homepath = "\\";
3729 if (homedrive != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730 && STRLEN(homedrive) + STRLEN(homepath) < MAXPATHL)
3731 {
3732 sprintf((char *)NameBuff, "%s%s", homedrive, homepath);
3733 if (NameBuff[0] != NUL)
3734 {
3735 var = NameBuff;
3736 /* Also set $HOME, it's needed for _viminfo. */
3737 vim_setenv((char_u *)"HOME", NameBuff);
3738 }
3739 }
3740 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00003741
3742# if defined(FEAT_MBYTE)
3743 if (enc_utf8 && var != NULL)
3744 {
3745 int len;
Bram Moolenaarb453a532011-04-28 17:48:44 +02003746 char_u *pp = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003747
3748 /* Convert from active codepage to UTF-8. Other conversions are
3749 * not done, because they would fail for non-ASCII characters. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003750 acp_to_enc(var, (int)STRLEN(var), &pp, &len);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003751 if (pp != NULL)
3752 {
3753 homedir = pp;
3754 return;
3755 }
3756 }
3757# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758#endif
3759
3760#if defined(OS2) || defined(MSDOS) || defined(MSWIN)
3761 /*
3762 * Default home dir is C:/
3763 * Best assumption we can make in such a situation.
3764 */
3765 if (var == NULL)
3766 var = "C:/";
3767#endif
3768 if (var != NULL)
3769 {
3770#ifdef UNIX
3771 /*
3772 * Change to the directory and get the actual path. This resolves
3773 * links. Don't do it when we can't return.
3774 */
3775 if (mch_dirname(NameBuff, MAXPATHL) == OK
3776 && mch_chdir((char *)NameBuff) == 0)
3777 {
3778 if (!mch_chdir((char *)var) && mch_dirname(IObuff, IOSIZE) == OK)
3779 var = IObuff;
3780 if (mch_chdir((char *)NameBuff) != 0)
3781 EMSG(_(e_prev_dir));
3782 }
3783#endif
3784 homedir = vim_strsave(var);
3785 }
3786}
3787
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003788#if defined(EXITFREE) || defined(PROTO)
3789 void
3790free_homedir()
3791{
3792 vim_free(homedir);
3793}
Bram Moolenaar24305862012-08-15 14:05:05 +02003794
3795# ifdef FEAT_CMDL_COMPL
3796 void
3797free_users()
3798{
3799 ga_clear_strings(&ga_users);
3800}
3801# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003802#endif
3803
Bram Moolenaar071d4272004-06-13 20:20:40 +00003804/*
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003805 * Call expand_env() and store the result in an allocated string.
3806 * This is not very memory efficient, this expects the result to be freed
3807 * again soon.
3808 */
3809 char_u *
3810expand_env_save(src)
3811 char_u *src;
3812{
3813 return expand_env_save_opt(src, FALSE);
3814}
3815
3816/*
3817 * Idem, but when "one" is TRUE handle the string as one file name, only
3818 * expand "~" at the start.
3819 */
3820 char_u *
3821expand_env_save_opt(src, one)
3822 char_u *src;
3823 int one;
3824{
3825 char_u *p;
3826
3827 p = alloc(MAXPATHL);
3828 if (p != NULL)
3829 expand_env_esc(src, p, MAXPATHL, FALSE, one, NULL);
3830 return p;
3831}
3832
3833/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 * Expand environment variable with path name.
3835 * "~/" is also expanded, using $HOME. For Unix "~user/" is expanded.
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003836 * Skips over "\ ", "\~" and "\$" (not for Win32 though).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 * If anything fails no expansion is done and dst equals src.
3838 */
3839 void
3840expand_env(src, dst, dstlen)
3841 char_u *src; /* input string e.g. "$HOME/vim.hlp" */
3842 char_u *dst; /* where to put the result */
3843 int dstlen; /* maximum length of the result */
3844{
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003845 expand_env_esc(src, dst, dstlen, FALSE, FALSE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846}
3847
3848 void
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003849expand_env_esc(srcp, dst, dstlen, esc, one, startstr)
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003850 char_u *srcp; /* input string e.g. "$HOME/vim.hlp" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 char_u *dst; /* where to put the result */
3852 int dstlen; /* maximum length of the result */
3853 int esc; /* escape spaces in expanded variables */
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00003854 int one; /* "srcp" is one file name */
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003855 char_u *startstr; /* start again after this (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856{
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003857 char_u *src;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858 char_u *tail;
3859 int c;
3860 char_u *var;
3861 int copy_char;
3862 int mustfree; /* var was allocated, need to free it later */
3863 int at_start = TRUE; /* at start of a name */
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003864 int startstr_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003866 if (startstr != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003867 startstr_len = (int)STRLEN(startstr);
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00003868
3869 src = skipwhite(srcp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870 --dstlen; /* leave one char space for "\," */
3871 while (*src && dstlen > 0)
3872 {
3873 copy_char = TRUE;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003874 if ((*src == '$'
3875#ifdef VMS
3876 && at_start
3877#endif
3878 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3880 || *src == '%'
3881#endif
3882 || (*src == '~' && at_start))
3883 {
3884 mustfree = FALSE;
3885
3886 /*
3887 * The variable name is copied into dst temporarily, because it may
3888 * be a string in read-only memory and a NUL needs to be appended.
3889 */
3890 if (*src != '~') /* environment var */
3891 {
3892 tail = src + 1;
3893 var = dst;
3894 c = dstlen - 1;
3895
3896#ifdef UNIX
3897 /* Unix has ${var-name} type environment vars */
3898 if (*tail == '{' && !vim_isIDc('{'))
3899 {
3900 tail++; /* ignore '{' */
3901 while (c-- > 0 && *tail && *tail != '}')
3902 *var++ = *tail++;
3903 }
3904 else
3905#endif
3906 {
3907 while (c-- > 0 && *tail != NUL && ((vim_isIDc(*tail))
3908#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3909 || (*src == '%' && *tail != '%')
3910#endif
3911 ))
3912 {
3913#ifdef OS2 /* env vars only in uppercase */
3914 *var++ = TOUPPER_LOC(*tail);
3915 tail++; /* toupper() may be a macro! */
3916#else
3917 *var++ = *tail++;
3918#endif
3919 }
3920 }
3921
3922#if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(UNIX)
3923# ifdef UNIX
3924 if (src[1] == '{' && *tail != '}')
3925# else
3926 if (*src == '%' && *tail != '%')
3927# endif
3928 var = NULL;
3929 else
3930 {
3931# ifdef UNIX
3932 if (src[1] == '{')
3933# else
3934 if (*src == '%')
3935#endif
3936 ++tail;
3937#endif
3938 *var = NUL;
3939 var = vim_getenv(dst, &mustfree);
3940#if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(UNIX)
3941 }
3942#endif
3943 }
3944 /* home directory */
3945 else if ( src[1] == NUL
3946 || vim_ispathsep(src[1])
3947 || vim_strchr((char_u *)" ,\t\n", src[1]) != NULL)
3948 {
3949 var = homedir;
3950 tail = src + 1;
3951 }
3952 else /* user directory */
3953 {
3954#if defined(UNIX) || (defined(VMS) && defined(USER_HOME))
3955 /*
3956 * Copy ~user to dst[], so we can put a NUL after it.
3957 */
3958 tail = src;
3959 var = dst;
3960 c = dstlen - 1;
3961 while ( c-- > 0
3962 && *tail
3963 && vim_isfilec(*tail)
3964 && !vim_ispathsep(*tail))
3965 *var++ = *tail++;
3966 *var = NUL;
3967# ifdef UNIX
3968 /*
3969 * If the system supports getpwnam(), use it.
3970 * Otherwise, or if getpwnam() fails, the shell is used to
3971 * expand ~user. This is slower and may fail if the shell
3972 * does not support ~user (old versions of /bin/sh).
3973 */
3974# if defined(HAVE_GETPWNAM) && defined(HAVE_PWD_H)
3975 {
3976 struct passwd *pw;
3977
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003978 /* Note: memory allocated by getpwnam() is never freed.
3979 * Calling endpwent() apparently doesn't help. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 pw = getpwnam((char *)dst + 1);
3981 if (pw != NULL)
3982 var = (char_u *)pw->pw_dir;
3983 else
3984 var = NULL;
3985 }
3986 if (var == NULL)
3987# endif
3988 {
3989 expand_T xpc;
3990
3991 ExpandInit(&xpc);
3992 xpc.xp_context = EXPAND_FILES;
3993 var = ExpandOne(&xpc, dst, NULL,
3994 WILD_ADD_SLASH|WILD_SILENT, WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 mustfree = TRUE;
3996 }
3997
3998# else /* !UNIX, thus VMS */
3999 /*
4000 * USER_HOME is a comma-separated list of
4001 * directories to search for the user account in.
4002 */
4003 {
4004 char_u test[MAXPATHL], paths[MAXPATHL];
4005 char_u *path, *next_path, *ptr;
4006 struct stat st;
4007
4008 STRCPY(paths, USER_HOME);
4009 next_path = paths;
4010 while (*next_path)
4011 {
4012 for (path = next_path; *next_path && *next_path != ',';
4013 next_path++);
4014 if (*next_path)
4015 *next_path++ = NUL;
4016 STRCPY(test, path);
4017 STRCAT(test, "/");
4018 STRCAT(test, dst + 1);
4019 if (mch_stat(test, &st) == 0)
4020 {
4021 var = alloc(STRLEN(test) + 1);
4022 STRCPY(var, test);
4023 mustfree = TRUE;
4024 break;
4025 }
4026 }
4027 }
4028# endif /* UNIX */
4029#else
4030 /* cannot expand user's home directory, so don't try */
4031 var = NULL;
4032 tail = (char_u *)""; /* for gcc */
4033#endif /* UNIX || VMS */
4034 }
4035
4036#ifdef BACKSLASH_IN_FILENAME
4037 /* If 'shellslash' is set change backslashes to forward slashes.
4038 * Can't use slash_adjust(), p_ssl may be set temporarily. */
4039 if (p_ssl && var != NULL && vim_strchr(var, '\\') != NULL)
4040 {
4041 char_u *p = vim_strsave(var);
4042
4043 if (p != NULL)
4044 {
4045 if (mustfree)
4046 vim_free(var);
4047 var = p;
4048 mustfree = TRUE;
4049 forward_slash(var);
4050 }
4051 }
4052#endif
4053
4054 /* If "var" contains white space, escape it with a backslash.
4055 * Required for ":e ~/tt" when $HOME includes a space. */
4056 if (esc && var != NULL && vim_strpbrk(var, (char_u *)" \t") != NULL)
4057 {
4058 char_u *p = vim_strsave_escaped(var, (char_u *)" \t");
4059
4060 if (p != NULL)
4061 {
4062 if (mustfree)
4063 vim_free(var);
4064 var = p;
4065 mustfree = TRUE;
4066 }
4067 }
4068
4069 if (var != NULL && *var != NUL
4070 && (STRLEN(var) + STRLEN(tail) + 1 < (unsigned)dstlen))
4071 {
4072 STRCPY(dst, var);
4073 dstlen -= (int)STRLEN(var);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004074 c = (int)STRLEN(var);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 /* if var[] ends in a path separator and tail[] starts
4076 * with it, skip a character */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004077 if (*var != NUL && after_pathsep(dst, dst + c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA)
4079 && dst[-1] != ':'
4080#endif
4081 && vim_ispathsep(*tail))
4082 ++tail;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004083 dst += c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 src = tail;
4085 copy_char = FALSE;
4086 }
4087 if (mustfree)
4088 vim_free(var);
4089 }
4090
4091 if (copy_char) /* copy at least one char */
4092 {
4093 /*
Bram Moolenaar25394022007-05-10 19:06:20 +00004094 * Recognize the start of a new name, for '~'.
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00004095 * Don't do this when "one" is TRUE, to avoid expanding "~" in
4096 * ":edit foo ~ foo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097 */
4098 at_start = FALSE;
4099 if (src[0] == '\\' && src[1] != NUL)
4100 {
4101 *dst++ = *src++;
4102 --dstlen;
4103 }
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00004104 else if ((src[0] == ' ' || src[0] == ',') && !one)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004105 at_start = TRUE;
4106 *dst++ = *src++;
4107 --dstlen;
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00004108
4109 if (startstr != NULL && src - startstr_len >= srcp
4110 && STRNCMP(src - startstr_len, startstr, startstr_len) == 0)
4111 at_start = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 }
4113 }
4114 *dst = NUL;
4115}
4116
4117/*
4118 * Vim's version of getenv().
4119 * Special handling of $HOME, $VIM and $VIMRUNTIME.
Bram Moolenaar2f6b0b82005-03-08 22:43:10 +00004120 * Also does ACP to 'enc' conversion for Win32.
Bram Moolenaarb453a532011-04-28 17:48:44 +02004121 * "mustfree" is set to TRUE when returned is allocated, it must be
4122 * initialized to FALSE by the caller.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123 */
4124 char_u *
4125vim_getenv(name, mustfree)
4126 char_u *name;
Bram Moolenaarb453a532011-04-28 17:48:44 +02004127 int *mustfree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128{
4129 char_u *p;
4130 char_u *pend;
4131 int vimruntime;
4132
4133#if defined(OS2) || defined(MSDOS) || defined(MSWIN)
4134 /* use "C:/" when $HOME is not set */
4135 if (STRCMP(name, "HOME") == 0)
4136 return homedir;
4137#endif
4138
4139 p = mch_getenv(name);
4140 if (p != NULL && *p == NUL) /* empty is the same as not set */
4141 p = NULL;
4142
4143 if (p != NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00004144 {
4145#if defined(FEAT_MBYTE) && defined(WIN3264)
4146 if (enc_utf8)
4147 {
4148 int len;
Bram Moolenaarb453a532011-04-28 17:48:44 +02004149 char_u *pp = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004150
4151 /* Convert from active codepage to UTF-8. Other conversions are
4152 * not done, because they would fail for non-ASCII characters. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004153 acp_to_enc(p, (int)STRLEN(p), &pp, &len);
Bram Moolenaar05159a02005-02-26 23:04:13 +00004154 if (pp != NULL)
4155 {
4156 p = pp;
4157 *mustfree = TRUE;
4158 }
4159 }
4160#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161 return p;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004162 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163
4164 vimruntime = (STRCMP(name, "VIMRUNTIME") == 0);
4165 if (!vimruntime && STRCMP(name, "VIM") != 0)
4166 return NULL;
4167
4168 /*
4169 * When expanding $VIMRUNTIME fails, try using $VIM/vim<version> or $VIM.
4170 * Don't do this when default_vimruntime_dir is non-empty.
4171 */
4172 if (vimruntime
4173#ifdef HAVE_PATHDEF
4174 && *default_vimruntime_dir == NUL
4175#endif
4176 )
4177 {
4178 p = mch_getenv((char_u *)"VIM");
4179 if (p != NULL && *p == NUL) /* empty is the same as not set */
4180 p = NULL;
4181 if (p != NULL)
4182 {
4183 p = vim_version_dir(p);
4184 if (p != NULL)
4185 *mustfree = TRUE;
4186 else
4187 p = mch_getenv((char_u *)"VIM");
Bram Moolenaar05159a02005-02-26 23:04:13 +00004188
4189#if defined(FEAT_MBYTE) && defined(WIN3264)
4190 if (enc_utf8)
4191 {
4192 int len;
Bram Moolenaarb453a532011-04-28 17:48:44 +02004193 char_u *pp = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004194
4195 /* Convert from active codepage to UTF-8. Other conversions
4196 * are not done, because they would fail for non-ASCII
4197 * characters. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004198 acp_to_enc(p, (int)STRLEN(p), &pp, &len);
Bram Moolenaar05159a02005-02-26 23:04:13 +00004199 if (pp != NULL)
4200 {
Bram Moolenaarb453a532011-04-28 17:48:44 +02004201 if (*mustfree)
Bram Moolenaar05159a02005-02-26 23:04:13 +00004202 vim_free(p);
4203 p = pp;
4204 *mustfree = TRUE;
4205 }
4206 }
4207#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208 }
4209 }
4210
4211 /*
4212 * When expanding $VIM or $VIMRUNTIME fails, try using:
4213 * - the directory name from 'helpfile' (unless it contains '$')
4214 * - the executable name from argv[0]
4215 */
4216 if (p == NULL)
4217 {
4218 if (p_hf != NULL && vim_strchr(p_hf, '$') == NULL)
4219 p = p_hf;
4220#ifdef USE_EXE_NAME
4221 /*
4222 * Use the name of the executable, obtained from argv[0].
4223 */
4224 else
4225 p = exe_name;
4226#endif
4227 if (p != NULL)
4228 {
4229 /* remove the file name */
4230 pend = gettail(p);
4231
4232 /* remove "doc/" from 'helpfile', if present */
4233 if (p == p_hf)
4234 pend = remove_tail(p, pend, (char_u *)"doc");
4235
4236#ifdef USE_EXE_NAME
4237# ifdef MACOS_X
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004238 /* remove "MacOS" from exe_name and add "Resources/vim" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 if (p == exe_name)
4240 {
4241 char_u *pend1;
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004242 char_u *pnew;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004244 pend1 = remove_tail(p, pend, (char_u *)"MacOS");
4245 if (pend1 != pend)
4246 {
4247 pnew = alloc((unsigned)(pend1 - p) + 15);
4248 if (pnew != NULL)
4249 {
4250 STRNCPY(pnew, p, (pend1 - p));
4251 STRCPY(pnew + (pend1 - p), "Resources/vim");
4252 p = pnew;
4253 pend = p + STRLEN(p);
4254 }
4255 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256 }
4257# endif
4258 /* remove "src/" from exe_name, if present */
4259 if (p == exe_name)
4260 pend = remove_tail(p, pend, (char_u *)"src");
4261#endif
4262
4263 /* for $VIM, remove "runtime/" or "vim54/", if present */
4264 if (!vimruntime)
4265 {
4266 pend = remove_tail(p, pend, (char_u *)RUNTIME_DIRNAME);
4267 pend = remove_tail(p, pend, (char_u *)VIM_VERSION_NODOT);
4268 }
4269
4270 /* remove trailing path separator */
4271#ifndef MACOS_CLASSIC
4272 /* With MacOS path (with colons) the final colon is required */
Bram Moolenaare21877a2008-02-13 09:58:14 +00004273 /* to avoid confusion between absolute and relative path */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004274 if (pend > p && after_pathsep(p, pend))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004275 --pend;
4276#endif
4277
Bram Moolenaar95e9b492006-03-15 23:04:43 +00004278#ifdef MACOS_X
4279 if (p == exe_name || p == p_hf)
4280#endif
4281 /* check that the result is a directory name */
4282 p = vim_strnsave(p, (int)(pend - p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004283
4284 if (p != NULL && !mch_isdir(p))
4285 {
4286 vim_free(p);
4287 p = NULL;
4288 }
4289 else
4290 {
4291#ifdef USE_EXE_NAME
4292 /* may add "/vim54" or "/runtime" if it exists */
4293 if (vimruntime && (pend = vim_version_dir(p)) != NULL)
4294 {
4295 vim_free(p);
4296 p = pend;
4297 }
4298#endif
4299 *mustfree = TRUE;
4300 }
4301 }
4302 }
4303
4304#ifdef HAVE_PATHDEF
4305 /* When there is a pathdef.c file we can use default_vim_dir and
4306 * default_vimruntime_dir */
4307 if (p == NULL)
4308 {
4309 /* Only use default_vimruntime_dir when it is not empty */
4310 if (vimruntime && *default_vimruntime_dir != NUL)
4311 {
4312 p = default_vimruntime_dir;
4313 *mustfree = FALSE;
4314 }
4315 else if (*default_vim_dir != NUL)
4316 {
4317 if (vimruntime && (p = vim_version_dir(default_vim_dir)) != NULL)
4318 *mustfree = TRUE;
4319 else
4320 {
4321 p = default_vim_dir;
4322 *mustfree = FALSE;
4323 }
4324 }
4325 }
4326#endif
4327
4328 /*
4329 * Set the environment variable, so that the new value can be found fast
4330 * next time, and others can also use it (e.g. Perl).
4331 */
4332 if (p != NULL)
4333 {
4334 if (vimruntime)
4335 {
4336 vim_setenv((char_u *)"VIMRUNTIME", p);
4337 didset_vimruntime = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338 }
4339 else
4340 {
4341 vim_setenv((char_u *)"VIM", p);
4342 didset_vim = TRUE;
4343 }
4344 }
4345 return p;
4346}
4347
4348/*
4349 * Check if the directory "vimdir/<version>" or "vimdir/runtime" exists.
4350 * Return NULL if not, return its name in allocated memory otherwise.
4351 */
4352 static char_u *
4353vim_version_dir(vimdir)
4354 char_u *vimdir;
4355{
4356 char_u *p;
4357
4358 if (vimdir == NULL || *vimdir == NUL)
4359 return NULL;
4360 p = concat_fnames(vimdir, (char_u *)VIM_VERSION_NODOT, TRUE);
4361 if (p != NULL && mch_isdir(p))
4362 return p;
4363 vim_free(p);
4364 p = concat_fnames(vimdir, (char_u *)RUNTIME_DIRNAME, TRUE);
4365 if (p != NULL && mch_isdir(p))
4366 return p;
4367 vim_free(p);
4368 return NULL;
4369}
4370
4371/*
4372 * If the string between "p" and "pend" ends in "name/", return "pend" minus
4373 * the length of "name/". Otherwise return "pend".
4374 */
4375 static char_u *
4376remove_tail(p, pend, name)
4377 char_u *p;
4378 char_u *pend;
4379 char_u *name;
4380{
4381 int len = (int)STRLEN(name) + 1;
4382 char_u *newend = pend - len;
4383
4384 if (newend >= p
4385 && fnamencmp(newend, name, len - 1) == 0
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004386 && (newend == p || after_pathsep(p, newend)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387 return newend;
4388 return pend;
4389}
4390
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 * Our portable version of setenv.
4393 */
4394 void
4395vim_setenv(name, val)
4396 char_u *name;
4397 char_u *val;
4398{
4399#ifdef HAVE_SETENV
4400 mch_setenv((char *)name, (char *)val, 1);
4401#else
4402 char_u *envbuf;
4403
4404 /*
4405 * Putenv does not copy the string, it has to remain
4406 * valid. The allocated memory will never be freed.
4407 */
4408 envbuf = alloc((unsigned)(STRLEN(name) + STRLEN(val) + 2));
4409 if (envbuf != NULL)
4410 {
4411 sprintf((char *)envbuf, "%s=%s", name, val);
4412 putenv((char *)envbuf);
4413 }
4414#endif
Bram Moolenaar011a34d2012-02-29 13:49:09 +01004415#ifdef FEAT_GETTEXT
4416 /*
4417 * When setting $VIMRUNTIME adjust the directory to find message
4418 * translations to $VIMRUNTIME/lang.
4419 */
4420 if (*val != NUL && STRICMP(name, "VIMRUNTIME") == 0)
4421 {
4422 char_u *buf = concat_str(val, (char_u *)"/lang");
4423
4424 if (buf != NULL)
4425 {
4426 bindtextdomain(VIMPACKAGE, (char *)buf);
4427 vim_free(buf);
4428 }
4429 }
4430#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431}
4432
4433#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4434/*
4435 * Function given to ExpandGeneric() to obtain an environment variable name.
4436 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 char_u *
4438get_env_name(xp, idx)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004439 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004440 int idx;
4441{
4442# if defined(AMIGA) || defined(__MRC__) || defined(__SC__)
4443 /*
4444 * No environ[] on the Amiga and on the Mac (using MPW).
4445 */
4446 return NULL;
4447# else
4448# ifndef __WIN32__
4449 /* Borland C++ 5.2 has this in a header file. */
4450 extern char **environ;
4451# endif
Bram Moolenaar21cf8232004-07-16 20:18:37 +00004452# define ENVNAMELEN 100
4453 static char_u name[ENVNAMELEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004454 char_u *str;
4455 int n;
4456
4457 str = (char_u *)environ[idx];
4458 if (str == NULL)
4459 return NULL;
4460
Bram Moolenaar21cf8232004-07-16 20:18:37 +00004461 for (n = 0; n < ENVNAMELEN - 1; ++n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462 {
4463 if (str[n] == '=' || str[n] == NUL)
4464 break;
4465 name[n] = str[n];
4466 }
4467 name[n] = NUL;
4468 return name;
4469# endif
4470}
Bram Moolenaar24305862012-08-15 14:05:05 +02004471
4472/*
4473 * Find all user names for user completion.
4474 * Done only once and then cached.
4475 */
4476 static void
4477init_users() {
4478 static int lazy_init_done = FALSE;
4479
4480 if (lazy_init_done)
4481 return;
4482
4483 lazy_init_done = TRUE;
4484 ga_init2(&ga_users, sizeof(char_u *), 20);
4485
4486# if defined(HAVE_GETPWENT) && defined(HAVE_PWD_H)
4487 {
4488 char_u* user;
4489 struct passwd* pw;
4490
4491 setpwent();
4492 while ((pw = getpwent()) != NULL)
4493 /* pw->pw_name shouldn't be NULL but just in case... */
4494 if (pw->pw_name != NULL)
4495 {
4496 if (ga_grow(&ga_users, 1) == FAIL)
4497 break;
4498 user = vim_strsave((char_u*)pw->pw_name);
4499 if (user == NULL)
4500 break;
4501 ((char_u **)(ga_users.ga_data))[ga_users.ga_len++] = user;
4502 }
4503 endpwent();
4504 }
4505# endif
4506}
4507
4508/*
4509 * Function given to ExpandGeneric() to obtain an user names.
4510 */
4511 char_u*
4512get_users(xp, idx)
4513 expand_T *xp UNUSED;
4514 int idx;
4515{
4516 init_users();
4517 if (idx < ga_users.ga_len)
4518 return ((char_u **)ga_users.ga_data)[idx];
4519 return NULL;
4520}
4521
4522/*
4523 * Check whether name matches a user name. Return:
4524 * 0 if name does not match any user name.
4525 * 1 if name partially matches the beginning of a user name.
4526 * 2 is name fully matches a user name.
4527 */
4528int match_user(name)
4529 char_u* name;
4530{
4531 int i;
4532 int n = (int)STRLEN(name);
4533 int result = 0;
4534
4535 init_users();
4536 for (i = 0; i < ga_users.ga_len; i++)
4537 {
4538 if (STRCMP(((char_u **)ga_users.ga_data)[i], name) == 0)
4539 return 2; /* full match */
4540 if (STRNCMP(((char_u **)ga_users.ga_data)[i], name, n) == 0)
4541 result = 1; /* partial match */
4542 }
4543 return result;
4544}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545#endif
4546
4547/*
4548 * Replace home directory by "~" in each space or comma separated file name in
4549 * 'src'.
4550 * If anything fails (except when out of space) dst equals src.
4551 */
4552 void
4553home_replace(buf, src, dst, dstlen, one)
4554 buf_T *buf; /* when not NULL, check for help files */
4555 char_u *src; /* input file name */
4556 char_u *dst; /* where to put the result */
4557 int dstlen; /* maximum length of the result */
4558 int one; /* if TRUE, only replace one file name, include
4559 spaces and commas in the file name. */
4560{
4561 size_t dirlen = 0, envlen = 0;
4562 size_t len;
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004563 char_u *homedir_env, *homedir_env_orig;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 char_u *p;
4565
4566 if (src == NULL)
4567 {
4568 *dst = NUL;
4569 return;
4570 }
4571
4572 /*
4573 * If the file is a help file, remove the path completely.
4574 */
4575 if (buf != NULL && buf->b_help)
4576 {
4577 STRCPY(dst, gettail(src));
4578 return;
4579 }
4580
4581 /*
4582 * We check both the value of the $HOME environment variable and the
4583 * "real" home directory.
4584 */
4585 if (homedir != NULL)
4586 dirlen = STRLEN(homedir);
4587
4588#ifdef VMS
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004589 homedir_env_orig = homedir_env = mch_getenv((char_u *)"SYS$LOGIN");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590#else
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004591 homedir_env_orig = homedir_env = mch_getenv((char_u *)"HOME");
4592#endif
Bram Moolenaarbef47902012-07-06 16:49:40 +02004593 /* Empty is the same as not set. */
4594 if (homedir_env != NULL && *homedir_env == NUL)
4595 homedir_env = NULL;
4596
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004597#if defined(FEAT_MODIFY_FNAME) || defined(WIN3264)
Bram Moolenaarbef47902012-07-06 16:49:40 +02004598 if (homedir_env != NULL && vim_strchr(homedir_env, '~') != NULL)
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004599 {
4600 int usedlen = 0;
4601 int flen;
4602 char_u *fbuf = NULL;
4603
4604 flen = (int)STRLEN(homedir_env);
Bram Moolenaard12f8112012-06-20 17:56:09 +02004605 (void)modify_fname((char_u *)":p", &usedlen,
4606 &homedir_env, &fbuf, &flen);
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004607 flen = (int)STRLEN(homedir_env);
4608 if (flen > 0 && vim_ispathsep(homedir_env[flen - 1]))
4609 /* Remove the trailing / that is added to a directory. */
4610 homedir_env[flen - 1] = NUL;
4611 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004612#endif
4613
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 if (homedir_env != NULL)
4615 envlen = STRLEN(homedir_env);
4616
4617 if (!one)
4618 src = skipwhite(src);
4619 while (*src && dstlen > 0)
4620 {
4621 /*
4622 * Here we are at the beginning of a file name.
4623 * First, check to see if the beginning of the file name matches
4624 * $HOME or the "real" home directory. Check that there is a '/'
4625 * after the match (so that if e.g. the file is "/home/pieter/bla",
4626 * and the home directory is "/home/piet", the file does not end up
4627 * as "~er/bla" (which would seem to indicate the file "bla" in user
4628 * er's home directory)).
4629 */
4630 p = homedir;
4631 len = dirlen;
4632 for (;;)
4633 {
4634 if ( len
4635 && fnamencmp(src, p, len) == 0
4636 && (vim_ispathsep(src[len])
4637 || (!one && (src[len] == ',' || src[len] == ' '))
4638 || src[len] == NUL))
4639 {
4640 src += len;
4641 if (--dstlen > 0)
4642 *dst++ = '~';
4643
4644 /*
4645 * If it's just the home directory, add "/".
4646 */
4647 if (!vim_ispathsep(src[0]) && --dstlen > 0)
4648 *dst++ = '/';
4649 break;
4650 }
4651 if (p == homedir_env)
4652 break;
4653 p = homedir_env;
4654 len = envlen;
4655 }
4656
4657 /* if (!one) skip to separator: space or comma */
4658 while (*src && (one || (*src != ',' && *src != ' ')) && --dstlen > 0)
4659 *dst++ = *src++;
4660 /* skip separator */
4661 while ((*src == ' ' || *src == ',') && --dstlen > 0)
4662 *dst++ = *src++;
4663 }
4664 /* if (dstlen == 0) out of space, what to do??? */
4665
4666 *dst = NUL;
Bram Moolenaar9158f9e2012-06-20 14:02:27 +02004667
4668 if (homedir_env != homedir_env_orig)
4669 vim_free(homedir_env);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670}
4671
4672/*
4673 * Like home_replace, store the replaced string in allocated memory.
4674 * When something fails, NULL is returned.
4675 */
4676 char_u *
4677home_replace_save(buf, src)
4678 buf_T *buf; /* when not NULL, check for help files */
4679 char_u *src; /* input file name */
4680{
4681 char_u *dst;
4682 unsigned len;
4683
4684 len = 3; /* space for "~/" and trailing NUL */
4685 if (src != NULL) /* just in case */
4686 len += (unsigned)STRLEN(src);
4687 dst = alloc(len);
4688 if (dst != NULL)
4689 home_replace(buf, src, dst, len, TRUE);
4690 return dst;
4691}
4692
4693/*
4694 * Compare two file names and return:
4695 * FPC_SAME if they both exist and are the same file.
4696 * FPC_SAMEX if they both don't exist and have the same file name.
4697 * FPC_DIFF if they both exist and are different files.
4698 * FPC_NOTX if they both don't exist.
4699 * FPC_DIFFX if one of them doesn't exist.
4700 * For the first name environment variables are expanded
4701 */
4702 int
4703fullpathcmp(s1, s2, checkname)
4704 char_u *s1, *s2;
4705 int checkname; /* when both don't exist, check file names */
4706{
4707#ifdef UNIX
4708 char_u exp1[MAXPATHL];
4709 char_u full1[MAXPATHL];
4710 char_u full2[MAXPATHL];
4711 struct stat st1, st2;
4712 int r1, r2;
4713
4714 expand_env(s1, exp1, MAXPATHL);
4715 r1 = mch_stat((char *)exp1, &st1);
4716 r2 = mch_stat((char *)s2, &st2);
4717 if (r1 != 0 && r2 != 0)
4718 {
4719 /* if mch_stat() doesn't work, may compare the names */
4720 if (checkname)
4721 {
4722 if (fnamecmp(exp1, s2) == 0)
4723 return FPC_SAMEX;
4724 r1 = vim_FullName(exp1, full1, MAXPATHL, FALSE);
4725 r2 = vim_FullName(s2, full2, MAXPATHL, FALSE);
4726 if (r1 == OK && r2 == OK && fnamecmp(full1, full2) == 0)
4727 return FPC_SAMEX;
4728 }
4729 return FPC_NOTX;
4730 }
4731 if (r1 != 0 || r2 != 0)
4732 return FPC_DIFFX;
4733 if (st1.st_dev == st2.st_dev && st1.st_ino == st2.st_ino)
4734 return FPC_SAME;
4735 return FPC_DIFF;
4736#else
4737 char_u *exp1; /* expanded s1 */
4738 char_u *full1; /* full path of s1 */
4739 char_u *full2; /* full path of s2 */
4740 int retval = FPC_DIFF;
4741 int r1, r2;
4742
4743 /* allocate one buffer to store three paths (alloc()/free() is slow!) */
4744 if ((exp1 = alloc(MAXPATHL * 3)) != NULL)
4745 {
4746 full1 = exp1 + MAXPATHL;
4747 full2 = full1 + MAXPATHL;
4748
4749 expand_env(s1, exp1, MAXPATHL);
4750 r1 = vim_FullName(exp1, full1, MAXPATHL, FALSE);
4751 r2 = vim_FullName(s2, full2, MAXPATHL, FALSE);
4752
4753 /* If vim_FullName() fails, the file probably doesn't exist. */
4754 if (r1 != OK && r2 != OK)
4755 {
4756 if (checkname && fnamecmp(exp1, s2) == 0)
4757 retval = FPC_SAMEX;
4758 else
4759 retval = FPC_NOTX;
4760 }
4761 else if (r1 != OK || r2 != OK)
4762 retval = FPC_DIFFX;
4763 else if (fnamecmp(full1, full2))
4764 retval = FPC_DIFF;
4765 else
4766 retval = FPC_SAME;
4767 vim_free(exp1);
4768 }
4769 return retval;
4770#endif
4771}
4772
4773/*
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00004774 * Get the tail of a path: the file name.
Bram Moolenaar31710262010-08-13 13:36:15 +02004775 * When the path ends in a path separator the tail is the NUL after it.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00004776 * Fail safe: never returns NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004777 */
4778 char_u *
4779gettail(fname)
4780 char_u *fname;
4781{
4782 char_u *p1, *p2;
4783
4784 if (fname == NULL)
4785 return (char_u *)"";
4786 for (p1 = p2 = fname; *p2; ) /* find last part of path */
4787 {
4788 if (vim_ispathsep(*p2))
4789 p1 = p2 + 1;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004790 mb_ptr_adv(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791 }
4792 return p1;
4793}
4794
Bram Moolenaar31710262010-08-13 13:36:15 +02004795#if defined(FEAT_SEARCHPATH)
4796static char_u *gettail_dir __ARGS((char_u *fname));
4797
4798/*
4799 * Return the end of the directory name, on the first path
4800 * separator:
4801 * "/path/file", "/path/dir/", "/path//dir", "/file"
4802 * ^ ^ ^ ^
4803 */
4804 static char_u *
4805gettail_dir(fname)
4806 char_u *fname;
4807{
4808 char_u *dir_end = fname;
4809 char_u *next_dir_end = fname;
4810 int look_for_sep = TRUE;
4811 char_u *p;
4812
4813 for (p = fname; *p != NUL; )
4814 {
4815 if (vim_ispathsep(*p))
4816 {
4817 if (look_for_sep)
4818 {
4819 next_dir_end = p;
4820 look_for_sep = FALSE;
4821 }
4822 }
4823 else
4824 {
4825 if (!look_for_sep)
4826 dir_end = next_dir_end;
4827 look_for_sep = TRUE;
4828 }
4829 mb_ptr_adv(p);
4830 }
4831 return dir_end;
4832}
4833#endif
4834
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004836 * Get pointer to tail of "fname", including path separators. Putting a NUL
4837 * here leaves the directory name. Takes care of "c:/" and "//".
4838 * Always returns a valid pointer.
4839 */
4840 char_u *
4841gettail_sep(fname)
4842 char_u *fname;
4843{
4844 char_u *p;
4845 char_u *t;
4846
4847 p = get_past_head(fname); /* don't remove the '/' from "c:/file" */
4848 t = gettail(fname);
4849 while (t > p && after_pathsep(fname, t))
4850 --t;
4851#ifdef VMS
4852 /* path separator is part of the path */
4853 ++t;
4854#endif
4855 return t;
4856}
4857
4858/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004859 * get the next path component (just after the next path separator).
4860 */
4861 char_u *
4862getnextcomp(fname)
4863 char_u *fname;
4864{
4865 while (*fname && !vim_ispathsep(*fname))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004866 mb_ptr_adv(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867 if (*fname)
4868 ++fname;
4869 return fname;
4870}
4871
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872/*
4873 * Get a pointer to one character past the head of a path name.
4874 * Unix: after "/"; DOS: after "c:\"; Amiga: after "disk:/"; Mac: no head.
4875 * If there is no head, path is returned.
4876 */
4877 char_u *
4878get_past_head(path)
4879 char_u *path;
4880{
4881 char_u *retval;
4882
4883#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
4884 /* may skip "c:" */
4885 if (isalpha(path[0]) && path[1] == ':')
4886 retval = path + 2;
4887 else
4888 retval = path;
4889#else
4890# if defined(AMIGA)
4891 /* may skip "label:" */
4892 retval = vim_strchr(path, ':');
4893 if (retval == NULL)
4894 retval = path;
4895# else /* Unix */
4896 retval = path;
4897# endif
4898#endif
4899
4900 while (vim_ispathsep(*retval))
4901 ++retval;
4902
4903 return retval;
4904}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905
4906/*
4907 * return TRUE if 'c' is a path separator.
4908 */
4909 int
4910vim_ispathsep(c)
4911 int c;
4912{
Bram Moolenaare60acc12011-05-10 16:41:25 +02004913#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914 return (c == '/'); /* UNIX has ':' inside file names */
Bram Moolenaare60acc12011-05-10 16:41:25 +02004915#else
4916# ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 return (c == ':' || c == '/' || c == '\\');
Bram Moolenaare60acc12011-05-10 16:41:25 +02004918# else
4919# ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 /* server"user passwd"::device:[full.path.name]fname.extension;version" */
4921 return (c == ':' || c == '[' || c == ']' || c == '/'
4922 || c == '<' || c == '>' || c == '"' );
Bram Moolenaare60acc12011-05-10 16:41:25 +02004923# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924 return (c == ':' || c == '/');
Bram Moolenaare60acc12011-05-10 16:41:25 +02004925# endif /* VMS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926# endif
Bram Moolenaare60acc12011-05-10 16:41:25 +02004927#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928}
4929
4930#if defined(FEAT_SEARCHPATH) || defined(PROTO)
4931/*
4932 * return TRUE if 'c' is a path list separator.
4933 */
4934 int
4935vim_ispathlistsep(c)
4936 int c;
4937{
4938#ifdef UNIX
4939 return (c == ':');
4940#else
Bram Moolenaar25394022007-05-10 19:06:20 +00004941 return (c == ';'); /* might not be right for every system... */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942#endif
4943}
4944#endif
4945
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004946#if defined(FEAT_GUI_TABLINE) || defined(FEAT_WINDOWS) \
4947 || defined(FEAT_EVAL) || defined(PROTO)
4948/*
4949 * Shorten the path of a file from "~/foo/../.bar/fname" to "~/f/../.b/fname"
4950 * It's done in-place.
4951 */
4952 void
4953shorten_dir(str)
4954 char_u *str;
4955{
4956 char_u *tail, *s, *d;
4957 int skip = FALSE;
4958
4959 tail = gettail(str);
4960 d = str;
4961 for (s = str; ; ++s)
4962 {
4963 if (s >= tail) /* copy the whole tail */
4964 {
4965 *d++ = *s;
4966 if (*s == NUL)
4967 break;
4968 }
4969 else if (vim_ispathsep(*s)) /* copy '/' and next char */
4970 {
4971 *d++ = *s;
4972 skip = FALSE;
4973 }
4974 else if (!skip)
4975 {
4976 *d++ = *s; /* copy next char */
4977 if (*s != '~' && *s != '.') /* and leading "~" and "." */
4978 skip = TRUE;
4979# ifdef FEAT_MBYTE
4980 if (has_mbyte)
4981 {
4982 int l = mb_ptr2len(s);
4983
4984 while (--l > 0)
Bram Moolenaarb6baca52006-08-15 20:24:14 +00004985 *d++ = *++s;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004986 }
4987# endif
4988 }
4989 }
4990}
4991#endif
4992
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004993/*
4994 * Return TRUE if the directory of "fname" exists, FALSE otherwise.
4995 * Also returns TRUE if there is no directory name.
4996 * "fname" must be writable!.
4997 */
4998 int
4999dir_of_file_exists(fname)
5000 char_u *fname;
5001{
5002 char_u *p;
5003 int c;
5004 int retval;
5005
5006 p = gettail_sep(fname);
5007 if (p == fname)
5008 return TRUE;
5009 c = *p;
5010 *p = NUL;
5011 retval = mch_isdir(fname);
5012 *p = c;
5013 return retval;
5014}
5015
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016#if (defined(CASE_INSENSITIVE_FILENAME) && defined(BACKSLASH_IN_FILENAME)) \
5017 || defined(PROTO)
5018/*
5019 * Versions of fnamecmp() and fnamencmp() that handle '/' and '\' equally.
5020 */
5021 int
5022vim_fnamecmp(x, y)
5023 char_u *x, *y;
5024{
5025 return vim_fnamencmp(x, y, MAXPATHL);
5026}
5027
5028 int
5029vim_fnamencmp(x, y, len)
5030 char_u *x, *y;
5031 size_t len;
5032{
5033 while (len > 0 && *x && *y)
5034 {
5035 if (TOLOWER_LOC(*x) != TOLOWER_LOC(*y)
5036 && !(*x == '/' && *y == '\\')
5037 && !(*x == '\\' && *y == '/'))
5038 break;
5039 ++x;
5040 ++y;
5041 --len;
5042 }
5043 if (len == 0)
5044 return 0;
5045 return (*x - *y);
5046}
5047#endif
5048
5049/*
5050 * Concatenate file names fname1 and fname2 into allocated memory.
Bram Moolenaar25394022007-05-10 19:06:20 +00005051 * Only add a '/' or '\\' when 'sep' is TRUE and it is necessary.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052 */
5053 char_u *
5054concat_fnames(fname1, fname2, sep)
5055 char_u *fname1;
5056 char_u *fname2;
5057 int sep;
5058{
5059 char_u *dest;
5060
5061 dest = alloc((unsigned)(STRLEN(fname1) + STRLEN(fname2) + 3));
5062 if (dest != NULL)
5063 {
5064 STRCPY(dest, fname1);
5065 if (sep)
5066 add_pathsep(dest);
5067 STRCAT(dest, fname2);
5068 }
5069 return dest;
5070}
5071
Bram Moolenaard6754642005-01-17 22:18:45 +00005072/*
5073 * Concatenate two strings and return the result in allocated memory.
5074 * Returns NULL when out of memory.
5075 */
5076 char_u *
5077concat_str(str1, str2)
5078 char_u *str1;
5079 char_u *str2;
5080{
5081 char_u *dest;
5082 size_t l = STRLEN(str1);
5083
5084 dest = alloc((unsigned)(l + STRLEN(str2) + 1L));
5085 if (dest != NULL)
5086 {
5087 STRCPY(dest, str1);
5088 STRCPY(dest + l, str2);
5089 }
5090 return dest;
5091}
Bram Moolenaard6754642005-01-17 22:18:45 +00005092
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093/*
5094 * Add a path separator to a file name, unless it already ends in a path
5095 * separator.
5096 */
5097 void
5098add_pathsep(p)
5099 char_u *p;
5100{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005101 if (*p != NUL && !after_pathsep(p, p + STRLEN(p)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005102 STRCAT(p, PATHSEPSTR);
5103}
5104
5105/*
5106 * FullName_save - Make an allocated copy of a full file name.
5107 * Returns NULL when out of memory.
5108 */
5109 char_u *
5110FullName_save(fname, force)
5111 char_u *fname;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005112 int force; /* force expansion, even when it already looks
5113 * like a full path name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114{
5115 char_u *buf;
5116 char_u *new_fname = NULL;
5117
5118 if (fname == NULL)
5119 return NULL;
5120
5121 buf = alloc((unsigned)MAXPATHL);
5122 if (buf != NULL)
5123 {
5124 if (vim_FullName(fname, buf, MAXPATHL, force) != FAIL)
5125 new_fname = vim_strsave(buf);
5126 else
5127 new_fname = vim_strsave(fname);
5128 vim_free(buf);
5129 }
5130 return new_fname;
5131}
5132
5133#if defined(FEAT_CINDENT) || defined(FEAT_SYN_HL)
5134
5135static char_u *skip_string __ARGS((char_u *p));
5136
5137/*
5138 * Find the start of a comment, not knowing if we are in a comment right now.
5139 * Search starts at w_cursor.lnum and goes backwards.
5140 */
5141 pos_T *
5142find_start_comment(ind_maxcomment) /* XXX */
5143 int ind_maxcomment;
5144{
5145 pos_T *pos;
5146 char_u *line;
5147 char_u *p;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005148 int cur_maxcomment = ind_maxcomment;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005150 for (;;)
5151 {
5152 pos = findmatchlimit(NULL, '*', FM_BACKWARD, cur_maxcomment);
5153 if (pos == NULL)
5154 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005156 /*
5157 * Check if the comment start we found is inside a string.
5158 * If it is then restrict the search to below this line and try again.
5159 */
5160 line = ml_get(pos->lnum);
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005161 for (p = line; *p && (colnr_T)(p - line) < pos->col; ++p)
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005162 p = skip_string(p);
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005163 if ((colnr_T)(p - line) <= pos->col)
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005164 break;
5165 cur_maxcomment = curwin->w_cursor.lnum - pos->lnum - 1;
5166 if (cur_maxcomment <= 0)
5167 {
5168 pos = NULL;
5169 break;
5170 }
5171 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172 return pos;
5173}
5174
5175/*
5176 * Skip to the end of a "string" and a 'c' character.
5177 * If there is no string or character, return argument unmodified.
5178 */
5179 static char_u *
5180skip_string(p)
5181 char_u *p;
5182{
5183 int i;
5184
5185 /*
5186 * We loop, because strings may be concatenated: "date""time".
5187 */
5188 for ( ; ; ++p)
5189 {
5190 if (p[0] == '\'') /* 'c' or '\n' or '\000' */
5191 {
5192 if (!p[1]) /* ' at end of line */
5193 break;
5194 i = 2;
5195 if (p[1] == '\\') /* '\n' or '\000' */
5196 {
5197 ++i;
5198 while (vim_isdigit(p[i - 1])) /* '\000' */
5199 ++i;
5200 }
5201 if (p[i] == '\'') /* check for trailing ' */
5202 {
5203 p += i;
5204 continue;
5205 }
5206 }
5207 else if (p[0] == '"') /* start of string */
5208 {
5209 for (++p; p[0]; ++p)
5210 {
5211 if (p[0] == '\\' && p[1] != NUL)
5212 ++p;
5213 else if (p[0] == '"') /* end of string */
5214 break;
5215 }
5216 if (p[0] == '"')
5217 continue;
5218 }
5219 break; /* no string found */
5220 }
5221 if (!*p)
5222 --p; /* backup from NUL */
5223 return p;
5224}
5225#endif /* FEAT_CINDENT || FEAT_SYN_HL */
5226
5227#if defined(FEAT_CINDENT) || defined(PROTO)
5228
5229/*
5230 * Do C or expression indenting on the current line.
5231 */
5232 void
5233do_c_expr_indent()
5234{
5235# ifdef FEAT_EVAL
5236 if (*curbuf->b_p_inde != NUL)
5237 fixthisline(get_expr_indent);
5238 else
5239# endif
5240 fixthisline(get_c_indent);
5241}
5242
5243/*
5244 * Functions for C-indenting.
5245 * Most of this originally comes from Eric Fischer.
5246 */
5247/*
5248 * Below "XXX" means that this function may unlock the current line.
5249 */
5250
5251static char_u *cin_skipcomment __ARGS((char_u *));
5252static int cin_nocode __ARGS((char_u *));
5253static pos_T *find_line_comment __ARGS((void));
5254static int cin_islabel_skip __ARGS((char_u **));
5255static int cin_isdefault __ARGS((char_u *));
5256static char_u *after_label __ARGS((char_u *l));
5257static int get_indent_nolabel __ARGS((linenr_T lnum));
5258static int skip_label __ARGS((linenr_T, char_u **pp, int ind_maxcomment));
5259static int cin_first_id_amount __ARGS((void));
5260static int cin_get_equal_amount __ARGS((linenr_T lnum));
5261static int cin_ispreproc __ARGS((char_u *));
5262static int cin_ispreproc_cont __ARGS((char_u **pp, linenr_T *lnump));
5263static int cin_iscomment __ARGS((char_u *));
5264static int cin_islinecomment __ARGS((char_u *));
5265static int cin_isterminated __ARGS((char_u *, int, int));
5266static int cin_isinit __ARGS((void));
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005267static int cin_isfuncdecl __ARGS((char_u **, linenr_T, linenr_T, int, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268static int cin_isif __ARGS((char_u *));
5269static int cin_iselse __ARGS((char_u *));
5270static int cin_isdo __ARGS((char_u *));
5271static int cin_iswhileofdo __ARGS((char_u *, linenr_T, int));
Bram Moolenaarb345d492012-04-09 20:42:26 +02005272static int cin_is_if_for_while_before_offset __ARGS((char_u *line, int *poffset));
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005273static int cin_iswhileofdo_end __ARGS((int terminated, int ind_maxparen, int ind_maxcomment));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274static int cin_isbreak __ARGS((char_u *));
Bram Moolenaare7c56862007-08-04 10:14:52 +00005275static int cin_is_cpp_baseclass __ARGS((colnr_T *col));
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00005276static int get_baseclass_amount __ARGS((int col, int ind_maxparen, int ind_maxcomment, int ind_cpp_baseclass));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277static int cin_ends_in __ARGS((char_u *, char_u *, char_u *));
5278static int cin_skip2pos __ARGS((pos_T *trypos));
5279static pos_T *find_start_brace __ARGS((int));
5280static pos_T *find_match_paren __ARGS((int, int));
5281static int corr_ind_maxparen __ARGS((int ind_maxparen, pos_T *startpos));
5282static int find_last_paren __ARGS((char_u *l, int start, int end));
5283static int find_match __ARGS((int lookfor, linenr_T ourscope, int ind_maxparen, int ind_maxcomment));
Bram Moolenaared38b0a2011-05-25 15:16:18 +02005284static int cin_is_cpp_namespace __ARGS((char_u *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285
Bram Moolenaar39353fd2007-03-27 09:02:11 +00005286static int ind_hash_comment = 0; /* # starts a comment */
5287
Bram Moolenaar071d4272004-06-13 20:20:40 +00005288/*
5289 * Skip over white space and C comments within the line.
Bram Moolenaar39353fd2007-03-27 09:02:11 +00005290 * Also skip over Perl/shell comments if desired.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291 */
5292 static char_u *
5293cin_skipcomment(s)
5294 char_u *s;
5295{
5296 while (*s)
5297 {
Bram Moolenaar39353fd2007-03-27 09:02:11 +00005298 char_u *prev_s = s;
5299
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300 s = skipwhite(s);
Bram Moolenaar39353fd2007-03-27 09:02:11 +00005301
5302 /* Perl/shell # comment comment continues until eol. Require a space
5303 * before # to avoid recognizing $#array. */
5304 if (ind_hash_comment != 0 && s != prev_s && *s == '#')
5305 {
5306 s += STRLEN(s);
5307 break;
5308 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309 if (*s != '/')
5310 break;
5311 ++s;
5312 if (*s == '/') /* slash-slash comment continues till eol */
5313 {
5314 s += STRLEN(s);
5315 break;
5316 }
5317 if (*s != '*')
5318 break;
5319 for (++s; *s; ++s) /* skip slash-star comment */
5320 if (s[0] == '*' && s[1] == '/')
5321 {
5322 s += 2;
5323 break;
5324 }
5325 }
5326 return s;
5327}
5328
5329/*
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005330 * Return TRUE if there is no code at *s. White space and comments are
Bram Moolenaar071d4272004-06-13 20:20:40 +00005331 * not considered code.
5332 */
5333 static int
5334cin_nocode(s)
5335 char_u *s;
5336{
5337 return *cin_skipcomment(s) == NUL;
5338}
5339
5340/*
5341 * Check previous lines for a "//" line comment, skipping over blank lines.
5342 */
5343 static pos_T *
5344find_line_comment() /* XXX */
5345{
5346 static pos_T pos;
5347 char_u *line;
5348 char_u *p;
5349
5350 pos = curwin->w_cursor;
5351 while (--pos.lnum > 0)
5352 {
5353 line = ml_get(pos.lnum);
5354 p = skipwhite(line);
5355 if (cin_islinecomment(p))
5356 {
5357 pos.col = (int)(p - line);
5358 return &pos;
5359 }
5360 if (*p != NUL)
5361 break;
5362 }
5363 return NULL;
5364}
5365
5366/*
5367 * Check if string matches "label:"; move to character after ':' if true.
5368 */
5369 static int
5370cin_islabel_skip(s)
5371 char_u **s;
5372{
5373 if (!vim_isIDc(**s)) /* need at least one ID character */
5374 return FALSE;
5375
5376 while (vim_isIDc(**s))
5377 (*s)++;
5378
5379 *s = cin_skipcomment(*s);
5380
5381 /* "::" is not a label, it's C++ */
5382 return (**s == ':' && *++*s != ':');
5383}
5384
5385/*
5386 * Recognize a label: "label:".
5387 * Note: curwin->w_cursor must be where we are looking for the label.
5388 */
5389 int
5390cin_islabel(ind_maxcomment) /* XXX */
5391 int ind_maxcomment;
5392{
5393 char_u *s;
5394
5395 s = cin_skipcomment(ml_get_curline());
5396
5397 /*
5398 * Exclude "default" from labels, since it should be indented
5399 * like a switch label. Same for C++ scope declarations.
5400 */
5401 if (cin_isdefault(s))
5402 return FALSE;
5403 if (cin_isscopedecl(s))
5404 return FALSE;
5405
5406 if (cin_islabel_skip(&s))
5407 {
5408 /*
5409 * Only accept a label if the previous line is terminated or is a case
5410 * label.
5411 */
5412 pos_T cursor_save;
5413 pos_T *trypos;
5414 char_u *line;
5415
5416 cursor_save = curwin->w_cursor;
5417 while (curwin->w_cursor.lnum > 1)
5418 {
5419 --curwin->w_cursor.lnum;
5420
5421 /*
5422 * If we're in a comment now, skip to the start of the comment.
5423 */
5424 curwin->w_cursor.col = 0;
5425 if ((trypos = find_start_comment(ind_maxcomment)) != NULL) /* XXX */
5426 curwin->w_cursor = *trypos;
5427
5428 line = ml_get_curline();
5429 if (cin_ispreproc(line)) /* ignore #defines, #if, etc. */
5430 continue;
5431 if (*(line = cin_skipcomment(line)) == NUL)
5432 continue;
5433
5434 curwin->w_cursor = cursor_save;
5435 if (cin_isterminated(line, TRUE, FALSE)
5436 || cin_isscopedecl(line)
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005437 || cin_iscase(line, TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438 || (cin_islabel_skip(&line) && cin_nocode(line)))
5439 return TRUE;
5440 return FALSE;
5441 }
5442 curwin->w_cursor = cursor_save;
5443 return TRUE; /* label at start of file??? */
5444 }
5445 return FALSE;
5446}
5447
5448/*
5449 * Recognize structure initialization and enumerations.
5450 * Q&D-Implementation:
5451 * check for "=" at end or "[typedef] enum" at beginning of line.
5452 */
5453 static int
5454cin_isinit(void)
5455{
5456 char_u *s;
5457
5458 s = cin_skipcomment(ml_get_curline());
5459
5460 if (STRNCMP(s, "typedef", 7) == 0 && !vim_isIDc(s[7]))
5461 s = cin_skipcomment(s + 7);
5462
Bram Moolenaara5285652011-12-14 20:05:21 +01005463 if (STRNCMP(s, "static", 6) == 0 && !vim_isIDc(s[6]))
5464 s = cin_skipcomment(s + 6);
5465
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466 if (STRNCMP(s, "enum", 4) == 0 && !vim_isIDc(s[4]))
5467 return TRUE;
5468
5469 if (cin_ends_in(s, (char_u *)"=", (char_u *)"{"))
5470 return TRUE;
5471
5472 return FALSE;
5473}
5474
5475/*
5476 * Recognize a switch label: "case .*:" or "default:".
5477 */
5478 int
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005479cin_iscase(s, strict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480 char_u *s;
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005481 int strict; /* Allow relaxed check of case statement for JS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482{
5483 s = cin_skipcomment(s);
5484 if (STRNCMP(s, "case", 4) == 0 && !vim_isIDc(s[4]))
5485 {
5486 for (s += 4; *s; ++s)
5487 {
5488 s = cin_skipcomment(s);
5489 if (*s == ':')
5490 {
5491 if (s[1] == ':') /* skip over "::" for C++ */
5492 ++s;
5493 else
5494 return TRUE;
5495 }
5496 if (*s == '\'' && s[1] && s[2] == '\'')
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005497 s += 2; /* skip over ':' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498 else if (*s == '/' && (s[1] == '*' || s[1] == '/'))
5499 return FALSE; /* stop at comment */
5500 else if (*s == '"')
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005501 {
5502 /* JS etc. */
5503 if (strict)
5504 return FALSE; /* stop at string */
5505 else
5506 return TRUE;
5507 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508 }
5509 return FALSE;
5510 }
5511
5512 if (cin_isdefault(s))
5513 return TRUE;
5514 return FALSE;
5515}
5516
5517/*
5518 * Recognize a "default" switch label.
5519 */
5520 static int
5521cin_isdefault(s)
5522 char_u *s;
5523{
5524 return (STRNCMP(s, "default", 7) == 0
5525 && *(s = cin_skipcomment(s + 7)) == ':'
5526 && s[1] != ':');
5527}
5528
5529/*
Bram Moolenaar1a509df2010-08-01 17:59:57 +02005530 * Recognize a "public/private/protected" scope declaration label.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531 */
5532 int
5533cin_isscopedecl(s)
5534 char_u *s;
5535{
5536 int i;
5537
5538 s = cin_skipcomment(s);
5539 if (STRNCMP(s, "public", 6) == 0)
5540 i = 6;
5541 else if (STRNCMP(s, "protected", 9) == 0)
5542 i = 9;
5543 else if (STRNCMP(s, "private", 7) == 0)
5544 i = 7;
5545 else
5546 return FALSE;
5547 return (*(s = cin_skipcomment(s + i)) == ':' && s[1] != ':');
5548}
5549
Bram Moolenaared38b0a2011-05-25 15:16:18 +02005550/* Maximum number of lines to search back for a "namespace" line. */
5551#define FIND_NAMESPACE_LIM 20
5552
5553/*
5554 * Recognize a "namespace" scope declaration.
5555 */
5556 static int
5557cin_is_cpp_namespace(s)
5558 char_u *s;
5559{
5560 char_u *p;
5561 int has_name = FALSE;
5562
5563 s = cin_skipcomment(s);
5564 if (STRNCMP(s, "namespace", 9) == 0 && (s[9] == NUL || !vim_iswordc(s[9])))
5565 {
5566 p = cin_skipcomment(skipwhite(s + 9));
5567 while (*p != NUL)
5568 {
5569 if (vim_iswhite(*p))
5570 {
5571 has_name = TRUE; /* found end of a name */
5572 p = cin_skipcomment(skipwhite(p));
5573 }
5574 else if (*p == '{')
5575 {
5576 break;
5577 }
5578 else if (vim_iswordc(*p))
5579 {
5580 if (has_name)
5581 return FALSE; /* word character after skipping past name */
5582 ++p;
5583 }
5584 else
5585 {
5586 return FALSE;
5587 }
5588 }
5589 return TRUE;
5590 }
5591 return FALSE;
5592}
5593
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594/*
5595 * Return a pointer to the first non-empty non-comment character after a ':'.
5596 * Return NULL if not found.
5597 * case 234: a = b;
5598 * ^
5599 */
5600 static char_u *
5601after_label(l)
5602 char_u *l;
5603{
5604 for ( ; *l; ++l)
5605 {
5606 if (*l == ':')
5607 {
5608 if (l[1] == ':') /* skip over "::" for C++ */
5609 ++l;
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005610 else if (!cin_iscase(l + 1, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611 break;
5612 }
5613 else if (*l == '\'' && l[1] && l[2] == '\'')
5614 l += 2; /* skip over 'x' */
5615 }
5616 if (*l == NUL)
5617 return NULL;
5618 l = cin_skipcomment(l + 1);
5619 if (*l == NUL)
5620 return NULL;
5621 return l;
5622}
5623
5624/*
5625 * Get indent of line "lnum", skipping a label.
5626 * Return 0 if there is nothing after the label.
5627 */
5628 static int
5629get_indent_nolabel(lnum) /* XXX */
5630 linenr_T lnum;
5631{
5632 char_u *l;
5633 pos_T fp;
5634 colnr_T col;
5635 char_u *p;
5636
5637 l = ml_get(lnum);
5638 p = after_label(l);
5639 if (p == NULL)
5640 return 0;
5641
5642 fp.col = (colnr_T)(p - l);
5643 fp.lnum = lnum;
5644 getvcol(curwin, &fp, &col, NULL, NULL);
5645 return (int)col;
5646}
5647
5648/*
5649 * Find indent for line "lnum", ignoring any case or jump label.
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005650 * Also return a pointer to the text (after the label) in "pp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005651 * label: if (asdf && asdfasdf)
5652 * ^
5653 */
5654 static int
5655skip_label(lnum, pp, ind_maxcomment)
5656 linenr_T lnum;
5657 char_u **pp;
5658 int ind_maxcomment;
5659{
5660 char_u *l;
5661 int amount;
5662 pos_T cursor_save;
5663
5664 cursor_save = curwin->w_cursor;
5665 curwin->w_cursor.lnum = lnum;
5666 l = ml_get_curline();
5667 /* XXX */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02005668 if (cin_iscase(l, FALSE) || cin_isscopedecl(l)
5669 || cin_islabel(ind_maxcomment))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005670 {
5671 amount = get_indent_nolabel(lnum);
5672 l = after_label(ml_get_curline());
5673 if (l == NULL) /* just in case */
5674 l = ml_get_curline();
5675 }
5676 else
5677 {
5678 amount = get_indent();
5679 l = ml_get_curline();
5680 }
5681 *pp = l;
5682
5683 curwin->w_cursor = cursor_save;
5684 return amount;
5685}
5686
5687/*
5688 * Return the indent of the first variable name after a type in a declaration.
5689 * int a, indent of "a"
5690 * static struct foo b, indent of "b"
5691 * enum bla c, indent of "c"
5692 * Returns zero when it doesn't look like a declaration.
5693 */
5694 static int
5695cin_first_id_amount()
5696{
5697 char_u *line, *p, *s;
5698 int len;
5699 pos_T fp;
5700 colnr_T col;
5701
5702 line = ml_get_curline();
5703 p = skipwhite(line);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005704 len = (int)(skiptowhite(p) - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705 if (len == 6 && STRNCMP(p, "static", 6) == 0)
5706 {
5707 p = skipwhite(p + 6);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00005708 len = (int)(skiptowhite(p) - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005709 }
5710 if (len == 6 && STRNCMP(p, "struct", 6) == 0)
5711 p = skipwhite(p + 6);
5712 else if (len == 4 && STRNCMP(p, "enum", 4) == 0)
5713 p = skipwhite(p + 4);
5714 else if ((len == 8 && STRNCMP(p, "unsigned", 8) == 0)
5715 || (len == 6 && STRNCMP(p, "signed", 6) == 0))
5716 {
5717 s = skipwhite(p + len);
5718 if ((STRNCMP(s, "int", 3) == 0 && vim_iswhite(s[3]))
5719 || (STRNCMP(s, "long", 4) == 0 && vim_iswhite(s[4]))
5720 || (STRNCMP(s, "short", 5) == 0 && vim_iswhite(s[5]))
5721 || (STRNCMP(s, "char", 4) == 0 && vim_iswhite(s[4])))
5722 p = s;
5723 }
5724 for (len = 0; vim_isIDc(p[len]); ++len)
5725 ;
5726 if (len == 0 || !vim_iswhite(p[len]) || cin_nocode(p))
5727 return 0;
5728
5729 p = skipwhite(p + len);
5730 fp.lnum = curwin->w_cursor.lnum;
5731 fp.col = (colnr_T)(p - line);
5732 getvcol(curwin, &fp, &col, NULL, NULL);
5733 return (int)col;
5734}
5735
5736/*
5737 * Return the indent of the first non-blank after an equal sign.
5738 * char *foo = "here";
5739 * Return zero if no (useful) equal sign found.
5740 * Return -1 if the line above "lnum" ends in a backslash.
5741 * foo = "asdf\
5742 * asdf\
5743 * here";
5744 */
5745 static int
5746cin_get_equal_amount(lnum)
5747 linenr_T lnum;
5748{
5749 char_u *line;
5750 char_u *s;
5751 colnr_T col;
5752 pos_T fp;
5753
5754 if (lnum > 1)
5755 {
5756 line = ml_get(lnum - 1);
5757 if (*line != NUL && line[STRLEN(line) - 1] == '\\')
5758 return -1;
5759 }
5760
5761 line = s = ml_get(lnum);
5762 while (*s != NUL && vim_strchr((char_u *)"=;{}\"'", *s) == NULL)
5763 {
5764 if (cin_iscomment(s)) /* ignore comments */
5765 s = cin_skipcomment(s);
5766 else
5767 ++s;
5768 }
5769 if (*s != '=')
5770 return 0;
5771
5772 s = skipwhite(s + 1);
5773 if (cin_nocode(s))
5774 return 0;
5775
5776 if (*s == '"') /* nice alignment for continued strings */
5777 ++s;
5778
5779 fp.lnum = lnum;
5780 fp.col = (colnr_T)(s - line);
5781 getvcol(curwin, &fp, &col, NULL, NULL);
5782 return (int)col;
5783}
5784
5785/*
5786 * Recognize a preprocessor statement: Any line that starts with '#'.
5787 */
5788 static int
5789cin_ispreproc(s)
5790 char_u *s;
5791{
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02005792 if (*skipwhite(s) == '#')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005793 return TRUE;
5794 return FALSE;
5795}
5796
5797/*
5798 * Return TRUE if line "*pp" at "*lnump" is a preprocessor statement or a
5799 * continuation line of a preprocessor statement. Decrease "*lnump" to the
5800 * start and return the line in "*pp".
5801 */
5802 static int
5803cin_ispreproc_cont(pp, lnump)
5804 char_u **pp;
5805 linenr_T *lnump;
5806{
5807 char_u *line = *pp;
5808 linenr_T lnum = *lnump;
5809 int retval = FALSE;
5810
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00005811 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005812 {
5813 if (cin_ispreproc(line))
5814 {
5815 retval = TRUE;
5816 *lnump = lnum;
5817 break;
5818 }
5819 if (lnum == 1)
5820 break;
5821 line = ml_get(--lnum);
5822 if (*line == NUL || line[STRLEN(line) - 1] != '\\')
5823 break;
5824 }
5825
5826 if (lnum != *lnump)
5827 *pp = ml_get(*lnump);
5828 return retval;
5829}
5830
5831/*
5832 * Recognize the start of a C or C++ comment.
5833 */
5834 static int
5835cin_iscomment(p)
5836 char_u *p;
5837{
5838 return (p[0] == '/' && (p[1] == '*' || p[1] == '/'));
5839}
5840
5841/*
5842 * Recognize the start of a "//" comment.
5843 */
5844 static int
5845cin_islinecomment(p)
5846 char_u *p;
5847{
5848 return (p[0] == '/' && p[1] == '/');
5849}
5850
5851/*
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005852 * Recognize a line that starts with '{' or '}', or ends with ';', ',', '{' or
5853 * '}'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854 * Don't consider "} else" a terminated line.
Bram Moolenaar496f9512011-05-19 16:35:09 +02005855 * If a line begins with an "else", only consider it terminated if no unmatched
5856 * opening braces follow (handle "else { foo();" correctly).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857 * Return the character terminating the line (ending char's have precedence if
5858 * both apply in order to determine initializations).
5859 */
5860 static int
5861cin_isterminated(s, incl_open, incl_comma)
5862 char_u *s;
5863 int incl_open; /* include '{' at the end as terminator */
5864 int incl_comma; /* recognize a trailing comma */
5865{
Bram Moolenaar496f9512011-05-19 16:35:09 +02005866 char_u found_start = 0;
5867 unsigned n_open = 0;
5868 int is_else = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005869
5870 s = cin_skipcomment(s);
5871
5872 if (*s == '{' || (*s == '}' && !cin_iselse(s)))
5873 found_start = *s;
5874
Bram Moolenaar496f9512011-05-19 16:35:09 +02005875 if (!found_start)
5876 is_else = cin_iselse(s);
5877
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878 while (*s)
5879 {
5880 /* skip over comments, "" strings and 'c'haracters */
5881 s = skip_string(cin_skipcomment(s));
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005882 if (*s == '}' && n_open > 0)
5883 --n_open;
Bram Moolenaar496f9512011-05-19 16:35:09 +02005884 if ((!is_else || n_open == 0)
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005885 && (*s == ';' || *s == '}' || (incl_comma && *s == ','))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005886 && cin_nocode(s + 1))
5887 return *s;
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02005888 else if (*s == '{')
5889 {
5890 if (incl_open && cin_nocode(s + 1))
5891 return *s;
5892 else
5893 ++n_open;
5894 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005895
5896 if (*s)
5897 s++;
5898 }
5899 return found_start;
5900}
5901
5902/*
5903 * Recognize the basic picture of a function declaration -- it needs to
5904 * have an open paren somewhere and a close paren at the end of the line and
5905 * no semicolons anywhere.
5906 * When a line ends in a comma we continue looking in the next line.
5907 * "sp" points to a string with the line. When looking at other lines it must
5908 * be restored to the line. When it's NULL fetch lines here.
5909 * "lnum" is where we start looking.
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005910 * "min_lnum" is the line before which we will not be looking.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005911 */
5912 static int
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005913cin_isfuncdecl(sp, first_lnum, min_lnum, ind_maxparen, ind_maxcomment)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005914 char_u **sp;
5915 linenr_T first_lnum;
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005916 linenr_T min_lnum;
5917 int ind_maxparen;
5918 int ind_maxcomment;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005919{
5920 char_u *s;
5921 linenr_T lnum = first_lnum;
5922 int retval = FALSE;
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005923 pos_T *trypos;
5924 int just_started = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925
5926 if (sp == NULL)
5927 s = ml_get(lnum);
5928 else
5929 s = *sp;
5930
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005931 if (find_last_paren(s, '(', ')')
5932 && (trypos = find_match_paren(ind_maxparen, ind_maxcomment)) != NULL)
5933 {
5934 lnum = trypos->lnum;
5935 if (lnum < min_lnum)
5936 return FALSE;
5937
5938 s = ml_get(lnum);
5939 }
5940
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02005941 /* Ignore line starting with #. */
5942 if (cin_ispreproc(s))
5943 return FALSE;
5944
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945 while (*s && *s != '(' && *s != ';' && *s != '\'' && *s != '"')
5946 {
5947 if (cin_iscomment(s)) /* ignore comments */
5948 s = cin_skipcomment(s);
5949 else
5950 ++s;
5951 }
5952 if (*s != '(')
5953 return FALSE; /* ';', ' or " before any () or no '(' */
5954
5955 while (*s && *s != ';' && *s != '\'' && *s != '"')
5956 {
5957 if (*s == ')' && cin_nocode(s + 1))
5958 {
5959 /* ')' at the end: may have found a match
5960 * Check for he previous line not to end in a backslash:
5961 * #if defined(x) && \
5962 * defined(y)
5963 */
5964 lnum = first_lnum - 1;
5965 s = ml_get(lnum);
5966 if (*s == NUL || s[STRLEN(s) - 1] != '\\')
5967 retval = TRUE;
5968 goto done;
5969 }
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02005970 if ((*s == ',' && cin_nocode(s + 1)) || s[1] == NUL || cin_nocode(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005971 {
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02005972 int comma = (*s == ',');
5973
5974 /* ',' at the end: continue looking in the next line.
5975 * At the end: check for ',' in the next line, for this style:
5976 * func(arg1
5977 * , arg2) */
5978 for (;;)
5979 {
5980 if (lnum >= curbuf->b_ml.ml_line_count)
5981 break;
5982 s = ml_get(++lnum);
5983 if (!cin_ispreproc(s))
5984 break;
5985 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005986 if (lnum >= curbuf->b_ml.ml_line_count)
5987 break;
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02005988 /* Require a comma at end of the line or a comma or ')' at the
5989 * start of next line. */
5990 s = skipwhite(s);
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005991 if (!just_started && (!comma && *s != ',' && *s != ')'))
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02005992 break;
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005993 just_started = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005994 }
5995 else if (cin_iscomment(s)) /* ignore comments */
5996 s = cin_skipcomment(s);
5997 else
Bram Moolenaarc367faa2011-12-14 20:21:35 +01005998 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005999 ++s;
Bram Moolenaarc367faa2011-12-14 20:21:35 +01006000 just_started = FALSE;
6001 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006002 }
6003
6004done:
6005 if (lnum != first_lnum && sp != NULL)
6006 *sp = ml_get(first_lnum);
6007
6008 return retval;
6009}
6010
6011 static int
6012cin_isif(p)
6013 char_u *p;
6014{
6015 return (STRNCMP(p, "if", 2) == 0 && !vim_isIDc(p[2]));
6016}
6017
6018 static int
6019cin_iselse(p)
6020 char_u *p;
6021{
6022 if (*p == '}') /* accept "} else" */
6023 p = cin_skipcomment(p + 1);
6024 return (STRNCMP(p, "else", 4) == 0 && !vim_isIDc(p[4]));
6025}
6026
6027 static int
6028cin_isdo(p)
6029 char_u *p;
6030{
6031 return (STRNCMP(p, "do", 2) == 0 && !vim_isIDc(p[2]));
6032}
6033
6034/*
6035 * Check if this is a "while" that should have a matching "do".
6036 * We only accept a "while (condition) ;", with only white space between the
6037 * ')' and ';'. The condition may be spread over several lines.
6038 */
6039 static int
6040cin_iswhileofdo(p, lnum, ind_maxparen) /* XXX */
6041 char_u *p;
6042 linenr_T lnum;
6043 int ind_maxparen;
6044{
6045 pos_T cursor_save;
6046 pos_T *trypos;
6047 int retval = FALSE;
6048
6049 p = cin_skipcomment(p);
6050 if (*p == '}') /* accept "} while (cond);" */
6051 p = cin_skipcomment(p + 1);
6052 if (STRNCMP(p, "while", 5) == 0 && !vim_isIDc(p[5]))
6053 {
6054 cursor_save = curwin->w_cursor;
6055 curwin->w_cursor.lnum = lnum;
6056 curwin->w_cursor.col = 0;
6057 p = ml_get_curline();
6058 while (*p && *p != 'w') /* skip any '}', until the 'w' of the "while" */
6059 {
6060 ++p;
6061 ++curwin->w_cursor.col;
6062 }
6063 if ((trypos = findmatchlimit(NULL, 0, 0, ind_maxparen)) != NULL
6064 && *cin_skipcomment(ml_get_pos(trypos) + 1) == ';')
6065 retval = TRUE;
6066 curwin->w_cursor = cursor_save;
6067 }
6068 return retval;
6069}
6070
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006071/*
Bram Moolenaarb345d492012-04-09 20:42:26 +02006072 * Check whether in "p" there is an "if", "for" or "while" before "*poffset".
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006073 * Return 0 if there is none.
6074 * Otherwise return !0 and update "*poffset" to point to the place where the
6075 * string was found.
6076 */
6077 static int
Bram Moolenaarb345d492012-04-09 20:42:26 +02006078cin_is_if_for_while_before_offset(line, poffset)
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006079 char_u *line;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006080 int *poffset;
6081{
Bram Moolenaarb345d492012-04-09 20:42:26 +02006082 int offset = *poffset;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006083
6084 if (offset-- < 2)
6085 return 0;
6086 while (offset > 2 && vim_iswhite(line[offset]))
6087 --offset;
6088
6089 offset -= 1;
6090 if (!STRNCMP(line + offset, "if", 2))
6091 goto probablyFound;
6092
6093 if (offset >= 1)
6094 {
6095 offset -= 1;
6096 if (!STRNCMP(line + offset, "for", 3))
6097 goto probablyFound;
6098
6099 if (offset >= 2)
6100 {
6101 offset -= 2;
6102 if (!STRNCMP(line + offset, "while", 5))
6103 goto probablyFound;
6104 }
6105 }
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006106 return 0;
Bram Moolenaarb345d492012-04-09 20:42:26 +02006107
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006108probablyFound:
6109 if (!offset || !vim_isIDc(line[offset - 1]))
6110 {
6111 *poffset = offset;
6112 return 1;
6113 }
6114 return 0;
6115}
6116
6117/*
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006118 * Return TRUE if we are at the end of a do-while.
6119 * do
6120 * nothing;
6121 * while (foo
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00006122 * && bar); <-- here
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006123 * Adjust the cursor to the line with "while".
6124 */
6125 static int
6126cin_iswhileofdo_end(terminated, ind_maxparen, ind_maxcomment)
6127 int terminated;
6128 int ind_maxparen;
6129 int ind_maxcomment;
6130{
6131 char_u *line;
6132 char_u *p;
6133 char_u *s;
6134 pos_T *trypos;
6135 int i;
6136
6137 if (terminated != ';') /* there must be a ';' at the end */
6138 return FALSE;
6139
6140 p = line = ml_get_curline();
6141 while (*p != NUL)
6142 {
6143 p = cin_skipcomment(p);
6144 if (*p == ')')
6145 {
6146 s = skipwhite(p + 1);
6147 if (*s == ';' && cin_nocode(s + 1))
6148 {
6149 /* Found ");" at end of the line, now check there is "while"
6150 * before the matching '('. XXX */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006151 i = (int)(p - line);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006152 curwin->w_cursor.col = i;
6153 trypos = find_match_paren(ind_maxparen, ind_maxcomment);
6154 if (trypos != NULL)
6155 {
6156 s = cin_skipcomment(ml_get(trypos->lnum));
6157 if (*s == '}') /* accept "} while (cond);" */
6158 s = cin_skipcomment(s + 1);
6159 if (STRNCMP(s, "while", 5) == 0 && !vim_isIDc(s[5]))
6160 {
6161 curwin->w_cursor.lnum = trypos->lnum;
6162 return TRUE;
6163 }
6164 }
6165
6166 /* Searching may have made "line" invalid, get it again. */
6167 line = ml_get_curline();
6168 p = line + i;
6169 }
6170 }
6171 if (*p != NUL)
6172 ++p;
6173 }
6174 return FALSE;
6175}
6176
Bram Moolenaar071d4272004-06-13 20:20:40 +00006177 static int
6178cin_isbreak(p)
6179 char_u *p;
6180{
6181 return (STRNCMP(p, "break", 5) == 0 && !vim_isIDc(p[5]));
6182}
6183
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006184/*
6185 * Find the position of a C++ base-class declaration or
Bram Moolenaar071d4272004-06-13 20:20:40 +00006186 * constructor-initialization. eg:
6187 *
6188 * class MyClass :
6189 * baseClass <-- here
6190 * class MyClass : public baseClass,
6191 * anotherBaseClass <-- here (should probably lineup ??)
6192 * MyClass::MyClass(...) :
6193 * baseClass(...) <-- here (constructor-initialization)
Bram Moolenaar18144c82006-04-12 21:52:12 +00006194 *
6195 * This is a lot of guessing. Watch out for "cond ? func() : foo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006196 */
6197 static int
Bram Moolenaare7c56862007-08-04 10:14:52 +00006198cin_is_cpp_baseclass(col)
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006199 colnr_T *col; /* return: column to align with */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006200{
6201 char_u *s;
6202 int class_or_struct, lookfor_ctor_init, cpp_base_class;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006203 linenr_T lnum = curwin->w_cursor.lnum;
Bram Moolenaare7c56862007-08-04 10:14:52 +00006204 char_u *line = ml_get_curline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205
6206 *col = 0;
6207
Bram Moolenaar21cf8232004-07-16 20:18:37 +00006208 s = skipwhite(line);
6209 if (*s == '#') /* skip #define FOO x ? (x) : x */
6210 return FALSE;
6211 s = cin_skipcomment(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006212 if (*s == NUL)
6213 return FALSE;
6214
6215 cpp_base_class = lookfor_ctor_init = class_or_struct = FALSE;
6216
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006217 /* Search for a line starting with '#', empty, ending in ';' or containing
6218 * '{' or '}' and start below it. This handles the following situations:
6219 * a = cond ?
6220 * func() :
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00006221 * asdf;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006222 * func::foo()
6223 * : something
6224 * {}
6225 * Foo::Foo (int one, int two)
6226 * : something(4),
6227 * somethingelse(3)
6228 * {}
6229 */
6230 while (lnum > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006231 {
Bram Moolenaare7c56862007-08-04 10:14:52 +00006232 line = ml_get(lnum - 1);
6233 s = skipwhite(line);
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006234 if (*s == '#' || *s == NUL)
6235 break;
6236 while (*s != NUL)
6237 {
6238 s = cin_skipcomment(s);
6239 if (*s == '{' || *s == '}'
6240 || (*s == ';' && cin_nocode(s + 1)))
6241 break;
6242 if (*s != NUL)
6243 ++s;
6244 }
6245 if (*s != NUL)
6246 break;
6247 --lnum;
6248 }
6249
Bram Moolenaare7c56862007-08-04 10:14:52 +00006250 line = ml_get(lnum);
6251 s = cin_skipcomment(line);
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006252 for (;;)
6253 {
6254 if (*s == NUL)
6255 {
6256 if (lnum == curwin->w_cursor.lnum)
6257 break;
6258 /* Continue in the cursor line. */
Bram Moolenaare7c56862007-08-04 10:14:52 +00006259 line = ml_get(++lnum);
6260 s = cin_skipcomment(line);
6261 if (*s == NUL)
6262 continue;
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006263 }
6264
Bram Moolenaaraede6ce2011-05-10 11:56:30 +02006265 if (s[0] == '"')
6266 s = skip_string(s) + 1;
6267 else if (s[0] == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006268 {
6269 if (s[1] == ':')
6270 {
6271 /* skip double colon. It can't be a constructor
6272 * initialization any more */
6273 lookfor_ctor_init = FALSE;
6274 s = cin_skipcomment(s + 2);
6275 }
6276 else if (lookfor_ctor_init || class_or_struct)
6277 {
6278 /* we have something found, that looks like the start of
Bram Moolenaare21877a2008-02-13 09:58:14 +00006279 * cpp-base-class-declaration or constructor-initialization */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006280 cpp_base_class = TRUE;
6281 lookfor_ctor_init = class_or_struct = FALSE;
6282 *col = 0;
6283 s = cin_skipcomment(s + 1);
6284 }
6285 else
6286 s = cin_skipcomment(s + 1);
6287 }
6288 else if ((STRNCMP(s, "class", 5) == 0 && !vim_isIDc(s[5]))
6289 || (STRNCMP(s, "struct", 6) == 0 && !vim_isIDc(s[6])))
6290 {
6291 class_or_struct = TRUE;
6292 lookfor_ctor_init = FALSE;
6293
6294 if (*s == 'c')
6295 s = cin_skipcomment(s + 5);
6296 else
6297 s = cin_skipcomment(s + 6);
6298 }
6299 else
6300 {
6301 if (s[0] == '{' || s[0] == '}' || s[0] == ';')
6302 {
6303 cpp_base_class = lookfor_ctor_init = class_or_struct = FALSE;
6304 }
6305 else if (s[0] == ')')
6306 {
6307 /* Constructor-initialization is assumed if we come across
6308 * something like "):" */
6309 class_or_struct = FALSE;
6310 lookfor_ctor_init = TRUE;
6311 }
Bram Moolenaar18144c82006-04-12 21:52:12 +00006312 else if (s[0] == '?')
6313 {
6314 /* Avoid seeing '() :' after '?' as constructor init. */
6315 return FALSE;
6316 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006317 else if (!vim_isIDc(s[0]))
6318 {
6319 /* if it is not an identifier, we are wrong */
6320 class_or_struct = FALSE;
6321 lookfor_ctor_init = FALSE;
6322 }
6323 else if (*col == 0)
6324 {
6325 /* it can't be a constructor-initialization any more */
6326 lookfor_ctor_init = FALSE;
6327
6328 /* the first statement starts here: lineup with this one... */
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006329 if (cpp_base_class)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006330 *col = (colnr_T)(s - line);
6331 }
6332
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006333 /* When the line ends in a comma don't align with it. */
6334 if (lnum == curwin->w_cursor.lnum && *s == ',' && cin_nocode(s + 1))
6335 *col = 0;
6336
Bram Moolenaar071d4272004-06-13 20:20:40 +00006337 s = cin_skipcomment(s + 1);
6338 }
6339 }
6340
6341 return cpp_base_class;
6342}
6343
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006344 static int
6345get_baseclass_amount(col, ind_maxparen, ind_maxcomment, ind_cpp_baseclass)
6346 int col;
6347 int ind_maxparen;
6348 int ind_maxcomment;
6349 int ind_cpp_baseclass;
6350{
6351 int amount;
6352 colnr_T vcol;
6353 pos_T *trypos;
6354
6355 if (col == 0)
6356 {
6357 amount = get_indent();
6358 if (find_last_paren(ml_get_curline(), '(', ')')
6359 && (trypos = find_match_paren(ind_maxparen,
6360 ind_maxcomment)) != NULL)
6361 amount = get_indent_lnum(trypos->lnum); /* XXX */
6362 if (!cin_ends_in(ml_get_curline(), (char_u *)",", NULL))
6363 amount += ind_cpp_baseclass;
6364 }
6365 else
6366 {
6367 curwin->w_cursor.col = col;
6368 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
6369 amount = (int)vcol;
6370 }
6371 if (amount < ind_cpp_baseclass)
6372 amount = ind_cpp_baseclass;
6373 return amount;
6374}
6375
Bram Moolenaar071d4272004-06-13 20:20:40 +00006376/*
6377 * Return TRUE if string "s" ends with the string "find", possibly followed by
6378 * white space and comments. Skip strings and comments.
6379 * Ignore "ignore" after "find" if it's not NULL.
6380 */
6381 static int
6382cin_ends_in(s, find, ignore)
6383 char_u *s;
6384 char_u *find;
6385 char_u *ignore;
6386{
6387 char_u *p = s;
6388 char_u *r;
6389 int len = (int)STRLEN(find);
6390
6391 while (*p != NUL)
6392 {
6393 p = cin_skipcomment(p);
6394 if (STRNCMP(p, find, len) == 0)
6395 {
6396 r = skipwhite(p + len);
6397 if (ignore != NULL && STRNCMP(r, ignore, STRLEN(ignore)) == 0)
6398 r = skipwhite(r + STRLEN(ignore));
6399 if (cin_nocode(r))
6400 return TRUE;
6401 }
6402 if (*p != NUL)
6403 ++p;
6404 }
6405 return FALSE;
6406}
6407
6408/*
6409 * Skip strings, chars and comments until at or past "trypos".
6410 * Return the column found.
6411 */
6412 static int
6413cin_skip2pos(trypos)
6414 pos_T *trypos;
6415{
6416 char_u *line;
6417 char_u *p;
6418
6419 p = line = ml_get(trypos->lnum);
6420 while (*p && (colnr_T)(p - line) < trypos->col)
6421 {
6422 if (cin_iscomment(p))
6423 p = cin_skipcomment(p);
6424 else
6425 {
6426 p = skip_string(p);
6427 ++p;
6428 }
6429 }
6430 return (int)(p - line);
6431}
6432
6433/*
6434 * Find the '{' at the start of the block we are in.
6435 * Return NULL if no match found.
6436 * Ignore a '{' that is in a comment, makes indenting the next three lines
6437 * work. */
6438/* foo() */
6439/* { */
6440/* } */
6441
6442 static pos_T *
6443find_start_brace(ind_maxcomment) /* XXX */
6444 int ind_maxcomment;
6445{
6446 pos_T cursor_save;
6447 pos_T *trypos;
6448 pos_T *pos;
6449 static pos_T pos_copy;
6450
6451 cursor_save = curwin->w_cursor;
6452 while ((trypos = findmatchlimit(NULL, '{', FM_BLOCKSTOP, 0)) != NULL)
6453 {
6454 pos_copy = *trypos; /* copy pos_T, next findmatch will change it */
6455 trypos = &pos_copy;
6456 curwin->w_cursor = *trypos;
6457 pos = NULL;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006458 /* ignore the { if it's in a // or / * * / comment */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006459 if ((colnr_T)cin_skip2pos(trypos) == trypos->col
6460 && (pos = find_start_comment(ind_maxcomment)) == NULL) /* XXX */
6461 break;
6462 if (pos != NULL)
6463 curwin->w_cursor.lnum = pos->lnum;
6464 }
6465 curwin->w_cursor = cursor_save;
6466 return trypos;
6467}
6468
6469/*
6470 * Find the matching '(', failing if it is in a comment.
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006471 * Return NULL if no match found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472 */
6473 static pos_T *
6474find_match_paren(ind_maxparen, ind_maxcomment) /* XXX */
6475 int ind_maxparen;
6476 int ind_maxcomment;
6477{
6478 pos_T cursor_save;
6479 pos_T *trypos;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006480 static pos_T pos_copy;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006481
6482 cursor_save = curwin->w_cursor;
6483 if ((trypos = findmatchlimit(NULL, '(', 0, ind_maxparen)) != NULL)
6484 {
6485 /* check if the ( is in a // comment */
6486 if ((colnr_T)cin_skip2pos(trypos) > trypos->col)
6487 trypos = NULL;
6488 else
6489 {
6490 pos_copy = *trypos; /* copy trypos, findmatch will change it */
6491 trypos = &pos_copy;
6492 curwin->w_cursor = *trypos;
6493 if (find_start_comment(ind_maxcomment) != NULL) /* XXX */
6494 trypos = NULL;
6495 }
6496 }
6497 curwin->w_cursor = cursor_save;
6498 return trypos;
6499}
6500
6501/*
6502 * Return ind_maxparen corrected for the difference in line number between the
6503 * cursor position and "startpos". This makes sure that searching for a
6504 * matching paren above the cursor line doesn't find a match because of
6505 * looking a few lines further.
6506 */
6507 static int
6508corr_ind_maxparen(ind_maxparen, startpos)
6509 int ind_maxparen;
6510 pos_T *startpos;
6511{
6512 long n = (long)startpos->lnum - (long)curwin->w_cursor.lnum;
6513
6514 if (n > 0 && n < ind_maxparen / 2)
6515 return ind_maxparen - (int)n;
6516 return ind_maxparen;
6517}
6518
6519/*
6520 * Set w_cursor.col to the column number of the last unmatched ')' or '{' in
Bram Moolenaar6d8f9c62011-11-30 13:03:28 +01006521 * line "l". "l" must point to the start of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006522 */
6523 static int
6524find_last_paren(l, start, end)
6525 char_u *l;
6526 int start, end;
6527{
6528 int i;
6529 int retval = FALSE;
6530 int open_count = 0;
6531
6532 curwin->w_cursor.col = 0; /* default is start of line */
6533
Bram Moolenaar6d8f9c62011-11-30 13:03:28 +01006534 for (i = 0; l[i] != NUL; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006535 {
6536 i = (int)(cin_skipcomment(l + i) - l); /* ignore parens in comments */
6537 i = (int)(skip_string(l + i) - l); /* ignore parens in quotes */
6538 if (l[i] == start)
6539 ++open_count;
6540 else if (l[i] == end)
6541 {
6542 if (open_count > 0)
6543 --open_count;
6544 else
6545 {
6546 curwin->w_cursor.col = i;
6547 retval = TRUE;
6548 }
6549 }
6550 }
6551 return retval;
6552}
6553
6554 int
6555get_c_indent()
6556{
Bram Moolenaar14f24742012-08-08 18:01:05 +02006557 int sw = (int)get_sw_value();
6558
Bram Moolenaar071d4272004-06-13 20:20:40 +00006559 /*
6560 * spaces from a block's opening brace the prevailing indent for that
6561 * block should be
6562 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006563
6564 int ind_level = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006565
6566 /*
6567 * spaces from the edge of the line an open brace that's at the end of a
6568 * line is imagined to be.
6569 */
6570 int ind_open_imag = 0;
6571
6572 /*
Bram Moolenaar1a509df2010-08-01 17:59:57 +02006573 * spaces from the prevailing indent for a line that is not preceded by
Bram Moolenaar071d4272004-06-13 20:20:40 +00006574 * an opening brace.
6575 */
6576 int ind_no_brace = 0;
6577
6578 /*
6579 * column where the first { of a function should be located }
6580 */
6581 int ind_first_open = 0;
6582
6583 /*
6584 * spaces from the prevailing indent a leftmost open brace should be
6585 * located
6586 */
6587 int ind_open_extra = 0;
6588
6589 /*
6590 * spaces from the matching open brace (real location for one at the left
6591 * edge; imaginary location from one that ends a line) the matching close
6592 * brace should be located
6593 */
6594 int ind_close_extra = 0;
6595
6596 /*
6597 * spaces from the edge of the line an open brace sitting in the leftmost
6598 * column is imagined to be
6599 */
6600 int ind_open_left_imag = 0;
6601
6602 /*
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006603 * Spaces jump labels should be shifted to the left if N is non-negative,
6604 * otherwise the jump label will be put to column 1.
6605 */
6606 int ind_jump_label = -1;
6607
6608 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006609 * spaces from the switch() indent a "case xx" label should be located
6610 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006611 int ind_case = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006612
6613 /*
6614 * spaces from the "case xx:" code after a switch() should be located
6615 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006616 int ind_case_code = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006617
6618 /*
6619 * lineup break at end of case in switch() with case label
6620 */
6621 int ind_case_break = 0;
6622
6623 /*
6624 * spaces from the class declaration indent a scope declaration label
6625 * should be located
6626 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006627 int ind_scopedecl = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006628
6629 /*
6630 * spaces from the scope declaration label code should be located
6631 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006632 int ind_scopedecl_code = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006633
6634 /*
6635 * amount K&R-style parameters should be indented
6636 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006637 int ind_param = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006638
6639 /*
6640 * amount a function type spec should be indented
6641 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006642 int ind_func_type = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006643
6644 /*
6645 * amount a cpp base class declaration or constructor initialization
6646 * should be indented
6647 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006648 int ind_cpp_baseclass = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006649
6650 /*
6651 * additional spaces beyond the prevailing indent a continuation line
6652 * should be located
6653 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006654 int ind_continuation = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006655
6656 /*
6657 * spaces from the indent of the line with an unclosed parentheses
6658 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006659 int ind_unclosed = sw * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006660
6661 /*
6662 * spaces from the indent of the line with an unclosed parentheses, which
6663 * itself is also unclosed
6664 */
Bram Moolenaar14f24742012-08-08 18:01:05 +02006665 int ind_unclosed2 = sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006666
6667 /*
6668 * suppress ignoring spaces from the indent of a line starting with an
6669 * unclosed parentheses.
6670 */
6671 int ind_unclosed_noignore = 0;
6672
6673 /*
6674 * If the opening paren is the last nonwhite character on the line, and
6675 * ind_unclosed_wrapped is nonzero, use this indent relative to the outer
6676 * context (for very long lines).
6677 */
6678 int ind_unclosed_wrapped = 0;
6679
6680 /*
6681 * suppress ignoring white space when lining up with the character after
6682 * an unclosed parentheses.
6683 */
6684 int ind_unclosed_whiteok = 0;
6685
6686 /*
6687 * indent a closing parentheses under the line start of the matching
6688 * opening parentheses.
6689 */
6690 int ind_matching_paren = 0;
6691
6692 /*
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006693 * indent a closing parentheses under the previous line.
6694 */
6695 int ind_paren_prev = 0;
6696
6697 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006698 * Extra indent for comments.
6699 */
6700 int ind_comment = 0;
6701
6702 /*
6703 * spaces from the comment opener when there is nothing after it.
6704 */
6705 int ind_in_comment = 3;
6706
6707 /*
6708 * boolean: if non-zero, use ind_in_comment even if there is something
6709 * after the comment opener.
6710 */
6711 int ind_in_comment2 = 0;
6712
6713 /*
6714 * max lines to search for an open paren
6715 */
6716 int ind_maxparen = 20;
6717
6718 /*
6719 * max lines to search for an open comment
6720 */
6721 int ind_maxcomment = 70;
6722
6723 /*
6724 * handle braces for java code
6725 */
6726 int ind_java = 0;
6727
6728 /*
Bram Moolenaar3acfc302010-07-11 17:23:02 +02006729 * not to confuse JS object properties with labels
6730 */
6731 int ind_js = 0;
6732
6733 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006734 * handle blocked cases correctly
6735 */
6736 int ind_keep_case_label = 0;
6737
Bram Moolenaared38b0a2011-05-25 15:16:18 +02006738 /*
6739 * handle C++ namespace
6740 */
6741 int ind_cpp_namespace = 0;
6742
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006743 /*
6744 * handle continuation lines containing conditions of if(), for() and
6745 * while()
6746 */
6747 int ind_if_for_while = 0;
6748
Bram Moolenaar071d4272004-06-13 20:20:40 +00006749 pos_T cur_curpos;
6750 int amount;
6751 int scope_amount;
Bram Moolenaarb21e5842006-04-16 18:30:08 +00006752 int cur_amount = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006753 colnr_T col;
6754 char_u *theline;
6755 char_u *linecopy;
6756 pos_T *trypos;
6757 pos_T *tryposBrace = NULL;
6758 pos_T our_paren_pos;
6759 char_u *start;
6760 int start_brace;
Bram Moolenaare21877a2008-02-13 09:58:14 +00006761#define BRACE_IN_COL0 1 /* '{' is in column 0 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006762#define BRACE_AT_START 2 /* '{' is at start of line */
6763#define BRACE_AT_END 3 /* '{' is at end of line */
6764 linenr_T ourscope;
6765 char_u *l;
6766 char_u *look;
6767 char_u terminated;
6768 int lookfor;
6769#define LOOKFOR_INITIAL 0
6770#define LOOKFOR_IF 1
6771#define LOOKFOR_DO 2
6772#define LOOKFOR_CASE 3
6773#define LOOKFOR_ANY 4
6774#define LOOKFOR_TERM 5
6775#define LOOKFOR_UNTERM 6
6776#define LOOKFOR_SCOPEDECL 7
6777#define LOOKFOR_NOBREAK 8
6778#define LOOKFOR_CPP_BASECLASS 9
6779#define LOOKFOR_ENUM_OR_INIT 10
6780
6781 int whilelevel;
6782 linenr_T lnum;
6783 char_u *options;
Bram Moolenaar48d27922012-06-13 13:40:48 +02006784 char_u *digits;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006785 int fraction = 0; /* init for GCC */
6786 int divider;
6787 int n;
6788 int iscase;
6789 int lookfor_break;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02006790 int lookfor_cpp_namespace = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006791 int cont_amount = 0; /* amount for continuation line */
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006792 int original_line_islabel;
Bram Moolenaare79d1532011-10-04 18:03:47 +02006793 int added_to_amount = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006794
6795 for (options = curbuf->b_p_cino; *options; )
6796 {
6797 l = options++;
6798 if (*options == '-')
6799 ++options;
Bram Moolenaar48d27922012-06-13 13:40:48 +02006800 digits = options; /* remember where the digits start */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006801 n = getdigits(&options);
6802 divider = 0;
6803 if (*options == '.') /* ".5s" means a fraction */
6804 {
6805 fraction = atol((char *)++options);
6806 while (VIM_ISDIGIT(*options))
6807 {
6808 ++options;
6809 if (divider)
6810 divider *= 10;
6811 else
6812 divider = 10;
6813 }
6814 }
6815 if (*options == 's') /* "2s" means two times 'shiftwidth' */
6816 {
Bram Moolenaar48d27922012-06-13 13:40:48 +02006817 if (options == digits)
Bram Moolenaar14f24742012-08-08 18:01:05 +02006818 n = sw; /* just "s" is one 'shiftwidth' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006819 else
6820 {
Bram Moolenaar14f24742012-08-08 18:01:05 +02006821 n *= sw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006822 if (divider)
Bram Moolenaar14f24742012-08-08 18:01:05 +02006823 n += (sw * fraction + divider / 2) / divider;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006824 }
6825 ++options;
6826 }
6827 if (l[1] == '-')
6828 n = -n;
6829 /* When adding an entry here, also update the default 'cinoptions' in
Bram Moolenaar39353fd2007-03-27 09:02:11 +00006830 * doc/indent.txt, and add explanation for it! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006831 switch (*l)
6832 {
6833 case '>': ind_level = n; break;
6834 case 'e': ind_open_imag = n; break;
6835 case 'n': ind_no_brace = n; break;
6836 case 'f': ind_first_open = n; break;
6837 case '{': ind_open_extra = n; break;
6838 case '}': ind_close_extra = n; break;
6839 case '^': ind_open_left_imag = n; break;
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006840 case 'L': ind_jump_label = n; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006841 case ':': ind_case = n; break;
6842 case '=': ind_case_code = n; break;
6843 case 'b': ind_case_break = n; break;
6844 case 'p': ind_param = n; break;
6845 case 't': ind_func_type = n; break;
6846 case '/': ind_comment = n; break;
6847 case 'c': ind_in_comment = n; break;
6848 case 'C': ind_in_comment2 = n; break;
6849 case 'i': ind_cpp_baseclass = n; break;
6850 case '+': ind_continuation = n; break;
6851 case '(': ind_unclosed = n; break;
6852 case 'u': ind_unclosed2 = n; break;
6853 case 'U': ind_unclosed_noignore = n; break;
6854 case 'W': ind_unclosed_wrapped = n; break;
6855 case 'w': ind_unclosed_whiteok = n; break;
6856 case 'm': ind_matching_paren = n; break;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00006857 case 'M': ind_paren_prev = n; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006858 case ')': ind_maxparen = n; break;
6859 case '*': ind_maxcomment = n; break;
6860 case 'g': ind_scopedecl = n; break;
6861 case 'h': ind_scopedecl_code = n; break;
6862 case 'j': ind_java = n; break;
Bram Moolenaar3acfc302010-07-11 17:23:02 +02006863 case 'J': ind_js = n; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006864 case 'l': ind_keep_case_label = n; break;
Bram Moolenaar39353fd2007-03-27 09:02:11 +00006865 case '#': ind_hash_comment = n; break;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02006866 case 'N': ind_cpp_namespace = n; break;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02006867 case 'k': ind_if_for_while = n; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006868 }
Bram Moolenaardfdf3c42010-03-23 18:22:46 +01006869 if (*options == ',')
6870 ++options;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006871 }
6872
6873 /* remember where the cursor was when we started */
6874 cur_curpos = curwin->w_cursor;
6875
Bram Moolenaar3acfc302010-07-11 17:23:02 +02006876 /* if we are at line 1 0 is fine, right? */
6877 if (cur_curpos.lnum == 1)
6878 return 0;
6879
Bram Moolenaar071d4272004-06-13 20:20:40 +00006880 /* Get a copy of the current contents of the line.
6881 * This is required, because only the most recent line obtained with
6882 * ml_get is valid! */
6883 linecopy = vim_strsave(ml_get(cur_curpos.lnum));
6884 if (linecopy == NULL)
6885 return 0;
6886
6887 /*
6888 * In insert mode and the cursor is on a ')' truncate the line at the
6889 * cursor position. We don't want to line up with the matching '(' when
6890 * inserting new stuff.
6891 * For unknown reasons the cursor might be past the end of the line, thus
6892 * check for that.
6893 */
6894 if ((State & INSERT)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00006895 && curwin->w_cursor.col < (colnr_T)STRLEN(linecopy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006896 && linecopy[curwin->w_cursor.col] == ')')
6897 linecopy[curwin->w_cursor.col] = NUL;
6898
6899 theline = skipwhite(linecopy);
6900
6901 /* move the cursor to the start of the line */
6902
6903 curwin->w_cursor.col = 0;
6904
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006905 original_line_islabel = cin_islabel(ind_maxcomment); /* XXX */
6906
Bram Moolenaar071d4272004-06-13 20:20:40 +00006907 /*
6908 * #defines and so on always go at the left when included in 'cinkeys'.
6909 */
6910 if (*theline == '#' && (*linecopy == '#' || in_cinkeys('#', ' ', TRUE)))
6911 {
6912 amount = 0;
6913 }
6914
6915 /*
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006916 * Is it a non-case label? Then that goes at the left margin too unless:
6917 * - JS flag is set.
6918 * - 'L' item has a positive value.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006919 */
Bram Moolenaar02c707a2010-07-17 17:12:06 +02006920 else if (original_line_islabel && !ind_js && ind_jump_label < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006921 {
6922 amount = 0;
6923 }
6924
6925 /*
6926 * If we're inside a "//" comment and there is a "//" comment in a
6927 * previous line, lineup with that one.
6928 */
6929 else if (cin_islinecomment(theline)
6930 && (trypos = find_line_comment()) != NULL) /* XXX */
6931 {
6932 /* find how indented the line beginning the comment is */
6933 getvcol(curwin, trypos, &col, NULL, NULL);
6934 amount = col;
6935 }
6936
6937 /*
6938 * If we're inside a comment and not looking at the start of the
6939 * comment, try using the 'comments' option.
6940 */
6941 else if (!cin_iscomment(theline)
6942 && (trypos = find_start_comment(ind_maxcomment)) != NULL) /* XXX */
6943 {
6944 int lead_start_len = 2;
6945 int lead_middle_len = 1;
6946 char_u lead_start[COM_MAX_LEN]; /* start-comment string */
6947 char_u lead_middle[COM_MAX_LEN]; /* middle-comment string */
6948 char_u lead_end[COM_MAX_LEN]; /* end-comment string */
6949 char_u *p;
6950 int start_align = 0;
6951 int start_off = 0;
6952 int done = FALSE;
6953
6954 /* find how indented the line beginning the comment is */
6955 getvcol(curwin, trypos, &col, NULL, NULL);
6956 amount = col;
Bram Moolenaar4aa97422011-04-11 14:27:38 +02006957 *lead_start = NUL;
6958 *lead_middle = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006959
6960 p = curbuf->b_p_com;
6961 while (*p != NUL)
6962 {
6963 int align = 0;
6964 int off = 0;
6965 int what = 0;
6966
6967 while (*p != NUL && *p != ':')
6968 {
6969 if (*p == COM_START || *p == COM_END || *p == COM_MIDDLE)
6970 what = *p++;
6971 else if (*p == COM_LEFT || *p == COM_RIGHT)
6972 align = *p++;
6973 else if (VIM_ISDIGIT(*p) || *p == '-')
6974 off = getdigits(&p);
6975 else
6976 ++p;
6977 }
6978
6979 if (*p == ':')
6980 ++p;
6981 (void)copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
6982 if (what == COM_START)
6983 {
6984 STRCPY(lead_start, lead_end);
6985 lead_start_len = (int)STRLEN(lead_start);
6986 start_off = off;
6987 start_align = align;
6988 }
6989 else if (what == COM_MIDDLE)
6990 {
6991 STRCPY(lead_middle, lead_end);
6992 lead_middle_len = (int)STRLEN(lead_middle);
6993 }
6994 else if (what == COM_END)
6995 {
6996 /* If our line starts with the middle comment string, line it
6997 * up with the comment opener per the 'comments' option. */
6998 if (STRNCMP(theline, lead_middle, lead_middle_len) == 0
6999 && STRNCMP(theline, lead_end, STRLEN(lead_end)) != 0)
7000 {
7001 done = TRUE;
7002 if (curwin->w_cursor.lnum > 1)
7003 {
7004 /* If the start comment string matches in the previous
Bram Moolenaare21877a2008-02-13 09:58:14 +00007005 * line, use the indent of that line plus offset. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00007006 * the middle comment string matches in the previous
7007 * line, use the indent of that line. XXX */
7008 look = skipwhite(ml_get(curwin->w_cursor.lnum - 1));
7009 if (STRNCMP(look, lead_start, lead_start_len) == 0)
7010 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
7011 else if (STRNCMP(look, lead_middle,
7012 lead_middle_len) == 0)
7013 {
7014 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
7015 break;
7016 }
7017 /* If the start comment string doesn't match with the
7018 * start of the comment, skip this entry. XXX */
7019 else if (STRNCMP(ml_get(trypos->lnum) + trypos->col,
7020 lead_start, lead_start_len) != 0)
7021 continue;
7022 }
7023 if (start_off != 0)
7024 amount += start_off;
7025 else if (start_align == COM_RIGHT)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00007026 amount += vim_strsize(lead_start)
7027 - vim_strsize(lead_middle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007028 break;
7029 }
7030
7031 /* If our line starts with the end comment string, line it up
7032 * with the middle comment */
7033 if (STRNCMP(theline, lead_middle, lead_middle_len) != 0
7034 && STRNCMP(theline, lead_end, STRLEN(lead_end)) == 0)
7035 {
7036 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
7037 /* XXX */
7038 if (off != 0)
7039 amount += off;
7040 else if (align == COM_RIGHT)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00007041 amount += vim_strsize(lead_start)
7042 - vim_strsize(lead_middle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007043 done = TRUE;
7044 break;
7045 }
7046 }
7047 }
7048
7049 /* If our line starts with an asterisk, line up with the
7050 * asterisk in the comment opener; otherwise, line up
7051 * with the first character of the comment text.
7052 */
7053 if (done)
7054 ;
7055 else if (theline[0] == '*')
7056 amount += 1;
7057 else
7058 {
7059 /*
7060 * If we are more than one line away from the comment opener, take
7061 * the indent of the previous non-empty line. If 'cino' has "CO"
7062 * and we are just below the comment opener and there are any
7063 * white characters after it line up with the text after it;
7064 * otherwise, add the amount specified by "c" in 'cino'
7065 */
7066 amount = -1;
7067 for (lnum = cur_curpos.lnum - 1; lnum > trypos->lnum; --lnum)
7068 {
7069 if (linewhite(lnum)) /* skip blank lines */
7070 continue;
7071 amount = get_indent_lnum(lnum); /* XXX */
7072 break;
7073 }
7074 if (amount == -1) /* use the comment opener */
7075 {
7076 if (!ind_in_comment2)
7077 {
7078 start = ml_get(trypos->lnum);
7079 look = start + trypos->col + 2; /* skip / and * */
7080 if (*look != NUL) /* if something after it */
7081 trypos->col = (colnr_T)(skipwhite(look) - start);
7082 }
7083 getvcol(curwin, trypos, &col, NULL, NULL);
7084 amount = col;
7085 if (ind_in_comment2 || *look == NUL)
7086 amount += ind_in_comment;
7087 }
7088 }
7089 }
7090
7091 /*
7092 * Are we inside parentheses or braces?
7093 */ /* XXX */
7094 else if (((trypos = find_match_paren(ind_maxparen, ind_maxcomment)) != NULL
7095 && ind_java == 0)
7096 || (tryposBrace = find_start_brace(ind_maxcomment)) != NULL
7097 || trypos != NULL)
7098 {
7099 if (trypos != NULL && tryposBrace != NULL)
7100 {
7101 /* Both an unmatched '(' and '{' is found. Use the one which is
7102 * closer to the current cursor position, set the other to NULL. */
7103 if (trypos->lnum != tryposBrace->lnum
7104 ? trypos->lnum < tryposBrace->lnum
7105 : trypos->col < tryposBrace->col)
7106 trypos = NULL;
7107 else
7108 tryposBrace = NULL;
7109 }
7110
7111 if (trypos != NULL)
7112 {
7113 /*
7114 * If the matching paren is more than one line away, use the indent of
7115 * a previous non-empty line that matches the same paren.
7116 */
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007117 if (theline[0] == ')' && ind_paren_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007118 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007119 /* Line up with the start of the matching paren line. */
7120 amount = get_indent_lnum(curwin->w_cursor.lnum - 1); /* XXX */
7121 }
7122 else
7123 {
7124 amount = -1;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007125 our_paren_pos = *trypos;
7126 for (lnum = cur_curpos.lnum - 1; lnum > our_paren_pos.lnum; --lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007127 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007128 l = skipwhite(ml_get(lnum));
7129 if (cin_nocode(l)) /* skip comment lines */
7130 continue;
7131 if (cin_ispreproc_cont(&l, &lnum))
7132 continue; /* ignore #define, #if, etc. */
7133 curwin->w_cursor.lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007134
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007135 /* Skip a comment. XXX */
7136 if ((trypos = find_start_comment(ind_maxcomment)) != NULL)
7137 {
7138 lnum = trypos->lnum + 1;
7139 continue;
7140 }
7141
7142 /* XXX */
7143 if ((trypos = find_match_paren(
7144 corr_ind_maxparen(ind_maxparen, &cur_curpos),
Bram Moolenaar071d4272004-06-13 20:20:40 +00007145 ind_maxcomment)) != NULL
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007146 && trypos->lnum == our_paren_pos.lnum
7147 && trypos->col == our_paren_pos.col)
7148 {
7149 amount = get_indent_lnum(lnum); /* XXX */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007150
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007151 if (theline[0] == ')')
7152 {
7153 if (our_paren_pos.lnum != lnum
7154 && cur_amount > amount)
7155 cur_amount = amount;
7156 amount = -1;
7157 }
7158 break;
7159 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007160 }
7161 }
7162
7163 /*
7164 * Line up with line where the matching paren is. XXX
7165 * If the line starts with a '(' or the indent for unclosed
7166 * parentheses is zero, line up with the unclosed parentheses.
7167 */
7168 if (amount == -1)
7169 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007170 int ignore_paren_col = 0;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007171 int is_if_for_while = 0;
7172
7173 if (ind_if_for_while)
7174 {
7175 /* Look for the outermost opening parenthesis on this line
7176 * and check whether it belongs to an "if", "for" or "while". */
7177
7178 pos_T cursor_save = curwin->w_cursor;
7179 pos_T outermost;
7180 char_u *line;
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007181
7182 trypos = &our_paren_pos;
7183 do {
7184 outermost = *trypos;
7185 curwin->w_cursor.lnum = outermost.lnum;
7186 curwin->w_cursor.col = outermost.col;
7187
7188 trypos = find_match_paren(ind_maxparen, ind_maxcomment);
7189 } while (trypos && trypos->lnum == outermost.lnum);
7190
7191 curwin->w_cursor = cursor_save;
7192
7193 line = ml_get(outermost.lnum);
7194
7195 is_if_for_while =
Bram Moolenaarb345d492012-04-09 20:42:26 +02007196 cin_is_if_for_while_before_offset(line, &outermost.col);
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007197 }
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007198
Bram Moolenaar071d4272004-06-13 20:20:40 +00007199 amount = skip_label(our_paren_pos.lnum, &look, ind_maxcomment);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007200 look = skipwhite(look);
7201 if (*look == '(')
7202 {
7203 linenr_T save_lnum = curwin->w_cursor.lnum;
7204 char_u *line;
7205 int look_col;
7206
7207 /* Ignore a '(' in front of the line that has a match before
7208 * our matching '('. */
7209 curwin->w_cursor.lnum = our_paren_pos.lnum;
7210 line = ml_get_curline();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007211 look_col = (int)(look - line);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007212 curwin->w_cursor.col = look_col + 1;
7213 if ((trypos = findmatchlimit(NULL, ')', 0, ind_maxparen))
7214 != NULL
7215 && trypos->lnum == our_paren_pos.lnum
7216 && trypos->col < our_paren_pos.col)
7217 ignore_paren_col = trypos->col + 1;
7218
7219 curwin->w_cursor.lnum = save_lnum;
7220 look = ml_get(our_paren_pos.lnum) + look_col;
7221 }
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007222 if (theline[0] == ')' || (ind_unclosed == 0 && is_if_for_while == 0)
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007223 || (!ind_unclosed_noignore && *look == '('
7224 && ignore_paren_col == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007225 {
7226 /*
7227 * If we're looking at a close paren, line up right there;
7228 * otherwise, line up with the next (non-white) character.
7229 * When ind_unclosed_wrapped is set and the matching paren is
7230 * the last nonwhite character of the line, use either the
7231 * indent of the current line or the indentation of the next
7232 * outer paren and add ind_unclosed_wrapped (for very long
7233 * lines).
7234 */
7235 if (theline[0] != ')')
7236 {
7237 cur_amount = MAXCOL;
7238 l = ml_get(our_paren_pos.lnum);
7239 if (ind_unclosed_wrapped
7240 && cin_ends_in(l, (char_u *)"(", NULL))
7241 {
7242 /* look for opening unmatched paren, indent one level
7243 * for each additional level */
7244 n = 1;
7245 for (col = 0; col < our_paren_pos.col; ++col)
7246 {
7247 switch (l[col])
7248 {
7249 case '(':
7250 case '{': ++n;
7251 break;
7252
7253 case ')':
7254 case '}': if (n > 1)
7255 --n;
7256 break;
7257 }
7258 }
7259
7260 our_paren_pos.col = 0;
7261 amount += n * ind_unclosed_wrapped;
7262 }
7263 else if (ind_unclosed_whiteok)
7264 our_paren_pos.col++;
7265 else
7266 {
7267 col = our_paren_pos.col + 1;
7268 while (vim_iswhite(l[col]))
7269 col++;
7270 if (l[col] != NUL) /* In case of trailing space */
7271 our_paren_pos.col = col;
7272 else
7273 our_paren_pos.col++;
7274 }
7275 }
7276
7277 /*
7278 * Find how indented the paren is, or the character after it
7279 * if we did the above "if".
7280 */
7281 if (our_paren_pos.col > 0)
7282 {
7283 getvcol(curwin, &our_paren_pos, &col, NULL, NULL);
7284 if (cur_amount > (int)col)
7285 cur_amount = col;
7286 }
7287 }
7288
7289 if (theline[0] == ')' && ind_matching_paren)
7290 {
7291 /* Line up with the start of the matching paren line. */
7292 }
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007293 else if ((ind_unclosed == 0 && is_if_for_while == 0)
7294 || (!ind_unclosed_noignore
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007295 && *look == '(' && ignore_paren_col == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007296 {
7297 if (cur_amount != MAXCOL)
7298 amount = cur_amount;
7299 }
7300 else
7301 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007302 /* Add ind_unclosed2 for each '(' before our matching one, but
7303 * ignore (void) before the line (ignore_paren_col). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007304 col = our_paren_pos.col;
Bram Moolenaarb21e5842006-04-16 18:30:08 +00007305 while ((int)our_paren_pos.col > ignore_paren_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007306 {
7307 --our_paren_pos.col;
7308 switch (*ml_get_pos(&our_paren_pos))
7309 {
7310 case '(': amount += ind_unclosed2;
7311 col = our_paren_pos.col;
7312 break;
7313 case ')': amount -= ind_unclosed2;
7314 col = MAXCOL;
7315 break;
7316 }
7317 }
7318
7319 /* Use ind_unclosed once, when the first '(' is not inside
7320 * braces */
7321 if (col == MAXCOL)
7322 amount += ind_unclosed;
7323 else
7324 {
7325 curwin->w_cursor.lnum = our_paren_pos.lnum;
7326 curwin->w_cursor.col = col;
Bram Moolenaar367bec82011-04-11 14:26:19 +02007327 if (find_match_paren(ind_maxparen, ind_maxcomment) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007328 amount += ind_unclosed2;
7329 else
Bram Moolenaar3675fa02012-04-05 17:17:42 +02007330 {
7331 if (is_if_for_while)
7332 amount += ind_if_for_while;
7333 else
7334 amount += ind_unclosed;
7335 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007336 }
7337 /*
7338 * For a line starting with ')' use the minimum of the two
7339 * positions, to avoid giving it more indent than the previous
7340 * lines:
7341 * func_long_name( if (x
7342 * arg && yy
7343 * ) ^ not here ) ^ not here
7344 */
7345 if (cur_amount < amount)
7346 amount = cur_amount;
7347 }
7348 }
7349
7350 /* add extra indent for a comment */
7351 if (cin_iscomment(theline))
7352 amount += ind_comment;
7353 }
7354
7355 /*
7356 * Are we at least inside braces, then?
7357 */
7358 else
7359 {
7360 trypos = tryposBrace;
7361
7362 ourscope = trypos->lnum;
7363 start = ml_get(ourscope);
7364
7365 /*
7366 * Now figure out how indented the line is in general.
7367 * If the brace was at the start of the line, we use that;
7368 * otherwise, check out the indentation of the line as
7369 * a whole and then add the "imaginary indent" to that.
7370 */
7371 look = skipwhite(start);
7372 if (*look == '{')
7373 {
7374 getvcol(curwin, trypos, &col, NULL, NULL);
7375 amount = col;
7376 if (*start == '{')
7377 start_brace = BRACE_IN_COL0;
7378 else
7379 start_brace = BRACE_AT_START;
7380 }
7381 else
7382 {
7383 /*
7384 * that opening brace might have been on a continuation
7385 * line. if so, find the start of the line.
7386 */
7387 curwin->w_cursor.lnum = ourscope;
7388
7389 /*
7390 * position the cursor over the rightmost paren, so that
7391 * matching it will take us back to the start of the line.
7392 */
7393 lnum = ourscope;
7394 if (find_last_paren(start, '(', ')')
7395 && (trypos = find_match_paren(ind_maxparen,
7396 ind_maxcomment)) != NULL)
7397 lnum = trypos->lnum;
7398
7399 /*
7400 * It could have been something like
7401 * case 1: if (asdf &&
7402 * ldfd) {
7403 * }
7404 */
Bram Moolenaar6ec154b2011-06-12 21:51:08 +02007405 if (ind_js || (ind_keep_case_label
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007406 && cin_iscase(skipwhite(ml_get_curline()), FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007407 amount = get_indent();
7408 else
7409 amount = skip_label(lnum, &l, ind_maxcomment);
7410
7411 start_brace = BRACE_AT_END;
7412 }
7413
7414 /*
7415 * if we're looking at a closing brace, that's where
7416 * we want to be. otherwise, add the amount of room
7417 * that an indent is supposed to be.
7418 */
7419 if (theline[0] == '}')
7420 {
7421 /*
7422 * they may want closing braces to line up with something
7423 * other than the open brace. indulge them, if so.
7424 */
7425 amount += ind_close_extra;
7426 }
7427 else
7428 {
7429 /*
7430 * If we're looking at an "else", try to find an "if"
7431 * to match it with.
7432 * If we're looking at a "while", try to find a "do"
7433 * to match it with.
7434 */
7435 lookfor = LOOKFOR_INITIAL;
7436 if (cin_iselse(theline))
7437 lookfor = LOOKFOR_IF;
7438 else if (cin_iswhileofdo(theline, cur_curpos.lnum, ind_maxparen))
7439 /* XXX */
7440 lookfor = LOOKFOR_DO;
7441 if (lookfor != LOOKFOR_INITIAL)
7442 {
7443 curwin->w_cursor.lnum = cur_curpos.lnum;
7444 if (find_match(lookfor, ourscope, ind_maxparen,
7445 ind_maxcomment) == OK)
7446 {
7447 amount = get_indent(); /* XXX */
7448 goto theend;
7449 }
7450 }
7451
7452 /*
7453 * We get here if we are not on an "while-of-do" or "else" (or
7454 * failed to find a matching "if").
7455 * Search backwards for something to line up with.
7456 * First set amount for when we don't find anything.
7457 */
7458
7459 /*
7460 * if the '{' is _really_ at the left margin, use the imaginary
7461 * location of a left-margin brace. Otherwise, correct the
7462 * location for ind_open_extra.
7463 */
7464
7465 if (start_brace == BRACE_IN_COL0) /* '{' is in column 0 */
7466 {
7467 amount = ind_open_left_imag;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007468 lookfor_cpp_namespace = TRUE;
7469 }
7470 else if (start_brace == BRACE_AT_START &&
7471 lookfor_cpp_namespace) /* '{' is at start */
7472 {
7473
7474 lookfor_cpp_namespace = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007475 }
7476 else
7477 {
7478 if (start_brace == BRACE_AT_END) /* '{' is at end of line */
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007479 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007480 amount += ind_open_imag;
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007481
7482 l = skipwhite(ml_get_curline());
7483 if (cin_is_cpp_namespace(l))
7484 amount += ind_cpp_namespace;
7485 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007486 else
7487 {
7488 /* Compensate for adding ind_open_extra later. */
7489 amount -= ind_open_extra;
7490 if (amount < 0)
7491 amount = 0;
7492 }
7493 }
7494
7495 lookfor_break = FALSE;
7496
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007497 if (cin_iscase(theline, FALSE)) /* it's a switch() label */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007498 {
7499 lookfor = LOOKFOR_CASE; /* find a previous switch() label */
7500 amount += ind_case;
7501 }
7502 else if (cin_isscopedecl(theline)) /* private:, ... */
7503 {
7504 lookfor = LOOKFOR_SCOPEDECL; /* class decl is this block */
7505 amount += ind_scopedecl;
7506 }
7507 else
7508 {
7509 if (ind_case_break && cin_isbreak(theline)) /* break; ... */
7510 lookfor_break = TRUE;
7511
7512 lookfor = LOOKFOR_INITIAL;
7513 amount += ind_level; /* ind_level from start of block */
7514 }
7515 scope_amount = amount;
7516 whilelevel = 0;
7517
7518 /*
7519 * Search backwards. If we find something we recognize, line up
7520 * with that.
7521 *
7522 * if we're looking at an open brace, indent
7523 * the usual amount relative to the conditional
7524 * that opens the block.
7525 */
7526 curwin->w_cursor = cur_curpos;
7527 for (;;)
7528 {
7529 curwin->w_cursor.lnum--;
7530 curwin->w_cursor.col = 0;
7531
7532 /*
7533 * If we went all the way back to the start of our scope, line
7534 * up with it.
7535 */
7536 if (curwin->w_cursor.lnum <= ourscope)
7537 {
7538 /* we reached end of scope:
7539 * if looking for a enum or structure initialization
7540 * go further back:
7541 * if it is an initializer (enum xxx or xxx =), then
7542 * don't add ind_continuation, otherwise it is a variable
7543 * declaration:
7544 * int x,
7545 * here; <-- add ind_continuation
7546 */
7547 if (lookfor == LOOKFOR_ENUM_OR_INIT)
7548 {
7549 if (curwin->w_cursor.lnum == 0
7550 || curwin->w_cursor.lnum
7551 < ourscope - ind_maxparen)
7552 {
7553 /* nothing found (abuse ind_maxparen as limit)
7554 * assume terminated line (i.e. a variable
7555 * initialization) */
7556 if (cont_amount > 0)
7557 amount = cont_amount;
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007558 else if (!ind_js)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007559 amount += ind_continuation;
7560 break;
7561 }
7562
7563 l = ml_get_curline();
7564
7565 /*
7566 * If we're in a comment now, skip to the start of the
7567 * comment.
7568 */
7569 trypos = find_start_comment(ind_maxcomment);
7570 if (trypos != NULL)
7571 {
7572 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007573 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007574 continue;
7575 }
7576
7577 /*
7578 * Skip preprocessor directives and blank lines.
7579 */
7580 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
7581 continue;
7582
7583 if (cin_nocode(l))
7584 continue;
7585
7586 terminated = cin_isterminated(l, FALSE, TRUE);
7587
7588 /*
7589 * If we are at top level and the line looks like a
7590 * function declaration, we are done
7591 * (it's a variable declaration).
7592 */
7593 if (start_brace != BRACE_IN_COL0
Bram Moolenaarc367faa2011-12-14 20:21:35 +01007594 || !cin_isfuncdecl(&l, curwin->w_cursor.lnum,
7595 0, ind_maxparen, ind_maxcomment))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007596 {
7597 /* if the line is terminated with another ','
7598 * it is a continued variable initialization.
7599 * don't add extra indent.
7600 * TODO: does not work, if a function
7601 * declaration is split over multiple lines:
7602 * cin_isfuncdecl returns FALSE then.
7603 */
7604 if (terminated == ',')
7605 break;
7606
7607 /* if it es a enum declaration or an assignment,
7608 * we are done.
7609 */
7610 if (terminated != ';' && cin_isinit())
7611 break;
7612
7613 /* nothing useful found */
7614 if (terminated == 0 || terminated == '{')
7615 continue;
7616 }
7617
7618 if (terminated != ';')
7619 {
7620 /* Skip parens and braces. Position the cursor
7621 * over the rightmost paren, so that matching it
7622 * will take us back to the start of the line.
7623 */ /* XXX */
7624 trypos = NULL;
7625 if (find_last_paren(l, '(', ')'))
7626 trypos = find_match_paren(ind_maxparen,
7627 ind_maxcomment);
7628
7629 if (trypos == NULL && find_last_paren(l, '{', '}'))
7630 trypos = find_start_brace(ind_maxcomment);
7631
7632 if (trypos != NULL)
7633 {
7634 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007635 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007636 continue;
7637 }
7638 }
7639
7640 /* it's a variable declaration, add indentation
7641 * like in
7642 * int a,
7643 * b;
7644 */
7645 if (cont_amount > 0)
7646 amount = cont_amount;
7647 else
7648 amount += ind_continuation;
7649 }
7650 else if (lookfor == LOOKFOR_UNTERM)
7651 {
7652 if (cont_amount > 0)
7653 amount = cont_amount;
7654 else
7655 amount += ind_continuation;
7656 }
Bram Moolenaare79d1532011-10-04 18:03:47 +02007657 else
Bram Moolenaared38b0a2011-05-25 15:16:18 +02007658 {
Bram Moolenaare79d1532011-10-04 18:03:47 +02007659 if (lookfor != LOOKFOR_TERM
Bram Moolenaar071d4272004-06-13 20:20:40 +00007660 && lookfor != LOOKFOR_CPP_BASECLASS)
Bram Moolenaare79d1532011-10-04 18:03:47 +02007661 {
7662 amount = scope_amount;
7663 if (theline[0] == '{')
7664 {
7665 amount += ind_open_extra;
7666 added_to_amount = ind_open_extra;
7667 }
7668 }
7669
7670 if (lookfor_cpp_namespace)
7671 {
7672 /*
7673 * Looking for C++ namespace, need to look further
7674 * back.
7675 */
7676 if (curwin->w_cursor.lnum == ourscope)
7677 continue;
7678
7679 if (curwin->w_cursor.lnum == 0
7680 || curwin->w_cursor.lnum
7681 < ourscope - FIND_NAMESPACE_LIM)
7682 break;
7683
7684 l = ml_get_curline();
7685
7686 /* If we're in a comment now, skip to the start of
7687 * the comment. */
7688 trypos = find_start_comment(ind_maxcomment);
7689 if (trypos != NULL)
7690 {
7691 curwin->w_cursor.lnum = trypos->lnum + 1;
7692 curwin->w_cursor.col = 0;
7693 continue;
7694 }
7695
7696 /* Skip preprocessor directives and blank lines. */
7697 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
7698 continue;
7699
7700 /* Finally the actual check for "namespace". */
7701 if (cin_is_cpp_namespace(l))
7702 {
7703 amount += ind_cpp_namespace - added_to_amount;
7704 break;
7705 }
7706
7707 if (cin_nocode(l))
7708 continue;
7709 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007710 }
7711 break;
7712 }
7713
7714 /*
7715 * If we're in a comment now, skip to the start of the comment.
7716 */ /* XXX */
7717 if ((trypos = find_start_comment(ind_maxcomment)) != NULL)
7718 {
7719 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007720 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007721 continue;
7722 }
7723
7724 l = ml_get_curline();
7725
7726 /*
7727 * If this is a switch() label, may line up relative to that.
Bram Moolenaar18144c82006-04-12 21:52:12 +00007728 * If this is a C++ scope declaration, do the same.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007729 */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007730 iscase = cin_iscase(l, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007731 if (iscase || cin_isscopedecl(l))
7732 {
7733 /* we are only looking for cpp base class
7734 * declaration/initialization any longer */
7735 if (lookfor == LOOKFOR_CPP_BASECLASS)
7736 break;
7737
7738 /* When looking for a "do" we are not interested in
7739 * labels. */
7740 if (whilelevel > 0)
7741 continue;
7742
7743 /*
7744 * case xx:
7745 * c = 99 + <- this indent plus continuation
7746 *-> here;
7747 */
7748 if (lookfor == LOOKFOR_UNTERM
7749 || lookfor == LOOKFOR_ENUM_OR_INIT)
7750 {
7751 if (cont_amount > 0)
7752 amount = cont_amount;
7753 else
7754 amount += ind_continuation;
7755 break;
7756 }
7757
7758 /*
7759 * case xx: <- line up with this case
7760 * x = 333;
7761 * case yy:
7762 */
7763 if ( (iscase && lookfor == LOOKFOR_CASE)
7764 || (iscase && lookfor_break)
7765 || (!iscase && lookfor == LOOKFOR_SCOPEDECL))
7766 {
7767 /*
7768 * Check that this case label is not for another
7769 * switch()
7770 */ /* XXX */
7771 if ((trypos = find_start_brace(ind_maxcomment)) ==
7772 NULL || trypos->lnum == ourscope)
7773 {
7774 amount = get_indent(); /* XXX */
7775 break;
7776 }
7777 continue;
7778 }
7779
7780 n = get_indent_nolabel(curwin->w_cursor.lnum); /* XXX */
7781
7782 /*
7783 * case xx: if (cond) <- line up with this if
7784 * y = y + 1;
7785 * -> s = 99;
7786 *
7787 * case xx:
7788 * if (cond) <- line up with this line
7789 * y = y + 1;
7790 * -> s = 99;
7791 */
7792 if (lookfor == LOOKFOR_TERM)
7793 {
7794 if (n)
7795 amount = n;
7796
7797 if (!lookfor_break)
7798 break;
7799 }
7800
7801 /*
7802 * case xx: x = x + 1; <- line up with this x
7803 * -> y = y + 1;
7804 *
7805 * case xx: if (cond) <- line up with this if
7806 * -> y = y + 1;
7807 */
7808 if (n)
7809 {
7810 amount = n;
7811 l = after_label(ml_get_curline());
7812 if (l != NULL && cin_is_cinword(l))
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00007813 {
7814 if (theline[0] == '{')
7815 amount += ind_open_extra;
7816 else
7817 amount += ind_level + ind_no_brace;
7818 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007819 break;
7820 }
7821
7822 /*
7823 * Try to get the indent of a statement before the switch
7824 * label. If nothing is found, line up relative to the
7825 * switch label.
7826 * break; <- may line up with this line
7827 * case xx:
7828 * -> y = 1;
7829 */
7830 scope_amount = get_indent() + (iscase /* XXX */
7831 ? ind_case_code : ind_scopedecl_code);
7832 lookfor = ind_case_break ? LOOKFOR_NOBREAK : LOOKFOR_ANY;
7833 continue;
7834 }
7835
7836 /*
7837 * Looking for a switch() label or C++ scope declaration,
7838 * ignore other lines, skip {}-blocks.
7839 */
7840 if (lookfor == LOOKFOR_CASE || lookfor == LOOKFOR_SCOPEDECL)
7841 {
7842 if (find_last_paren(l, '{', '}') && (trypos =
7843 find_start_brace(ind_maxcomment)) != NULL)
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007844 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007845 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007846 curwin->w_cursor.col = 0;
7847 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007848 continue;
7849 }
7850
7851 /*
7852 * Ignore jump labels with nothing after them.
7853 */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007854 if (!ind_js && cin_islabel(ind_maxcomment))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007855 {
7856 l = after_label(ml_get_curline());
7857 if (l == NULL || cin_nocode(l))
7858 continue;
7859 }
7860
7861 /*
7862 * Ignore #defines, #if, etc.
7863 * Ignore comment and empty lines.
7864 * (need to get the line again, cin_islabel() may have
7865 * unlocked it)
7866 */
7867 l = ml_get_curline();
7868 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum)
7869 || cin_nocode(l))
7870 continue;
7871
7872 /*
7873 * Are we at the start of a cpp base class declaration or
7874 * constructor initialization?
7875 */ /* XXX */
Bram Moolenaar18144c82006-04-12 21:52:12 +00007876 n = FALSE;
7877 if (lookfor != LOOKFOR_TERM && ind_cpp_baseclass > 0)
7878 {
Bram Moolenaare7c56862007-08-04 10:14:52 +00007879 n = cin_is_cpp_baseclass(&col);
Bram Moolenaar18144c82006-04-12 21:52:12 +00007880 l = ml_get_curline();
7881 }
7882 if (n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007883 {
7884 if (lookfor == LOOKFOR_UNTERM)
7885 {
7886 if (cont_amount > 0)
7887 amount = cont_amount;
7888 else
7889 amount += ind_continuation;
7890 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00007891 else if (theline[0] == '{')
Bram Moolenaar071d4272004-06-13 20:20:40 +00007892 {
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00007893 /* Need to find start of the declaration. */
7894 lookfor = LOOKFOR_UNTERM;
7895 ind_continuation = 0;
7896 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007897 }
7898 else
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00007899 /* XXX */
7900 amount = get_baseclass_amount(col, ind_maxparen,
7901 ind_maxcomment, ind_cpp_baseclass);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007902 break;
7903 }
7904 else if (lookfor == LOOKFOR_CPP_BASECLASS)
7905 {
7906 /* only look, whether there is a cpp base class
Bram Moolenaar18144c82006-04-12 21:52:12 +00007907 * declaration or initialization before the opening brace.
7908 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007909 if (cin_isterminated(l, TRUE, FALSE))
7910 break;
7911 else
7912 continue;
7913 }
7914
7915 /*
7916 * What happens next depends on the line being terminated.
7917 * If terminated with a ',' only consider it terminating if
Bram Moolenaar25394022007-05-10 19:06:20 +00007918 * there is another unterminated statement behind, eg:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007919 * 123,
7920 * sizeof
7921 * here
7922 * Otherwise check whether it is a enumeration or structure
7923 * initialisation (not indented) or a variable declaration
7924 * (indented).
7925 */
7926 terminated = cin_isterminated(l, FALSE, TRUE);
7927
7928 if (terminated == 0 || (lookfor != LOOKFOR_UNTERM
7929 && terminated == ','))
7930 {
7931 /*
7932 * if we're in the middle of a paren thing,
7933 * go back to the line that starts it so
7934 * we can get the right prevailing indent
7935 * if ( foo &&
7936 * bar )
7937 */
7938 /*
7939 * position the cursor over the rightmost paren, so that
7940 * matching it will take us back to the start of the line.
7941 */
7942 (void)find_last_paren(l, '(', ')');
7943 trypos = find_match_paren(
7944 corr_ind_maxparen(ind_maxparen, &cur_curpos),
7945 ind_maxcomment);
7946
7947 /*
7948 * If we are looking for ',', we also look for matching
7949 * braces.
7950 */
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00007951 if (trypos == NULL && terminated == ','
7952 && find_last_paren(l, '{', '}'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007953 trypos = find_start_brace(ind_maxcomment);
7954
7955 if (trypos != NULL)
7956 {
7957 /*
7958 * Check if we are on a case label now. This is
7959 * handled above.
7960 * case xx: if ( asdf &&
7961 * asdf)
7962 */
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007963 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007964 l = ml_get_curline();
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007965 if (cin_iscase(l, FALSE) || cin_isscopedecl(l))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007966 {
7967 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007968 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007969 continue;
7970 }
7971 }
7972
7973 /*
7974 * Skip over continuation lines to find the one to get the
7975 * indent from
7976 * char *usethis = "bla\
7977 * bla",
7978 * here;
7979 */
7980 if (terminated == ',')
7981 {
7982 while (curwin->w_cursor.lnum > 1)
7983 {
7984 l = ml_get(curwin->w_cursor.lnum - 1);
7985 if (*l == NUL || l[STRLEN(l) - 1] != '\\')
7986 break;
7987 --curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00007988 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007989 }
7990 }
7991
7992 /*
7993 * Get indent and pointer to text for current line,
7994 * ignoring any jump label. XXX
7995 */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007996 if (!ind_js)
7997 cur_amount = skip_label(curwin->w_cursor.lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007998 &l, ind_maxcomment);
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007999 else
8000 cur_amount = get_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008001 /*
8002 * If this is just above the line we are indenting, and it
8003 * starts with a '{', line it up with this line.
8004 * while (not)
8005 * -> {
8006 * }
8007 */
8008 if (terminated != ',' && lookfor != LOOKFOR_TERM
8009 && theline[0] == '{')
8010 {
8011 amount = cur_amount;
8012 /*
8013 * Only add ind_open_extra when the current line
8014 * doesn't start with a '{', which must have a match
8015 * in the same line (scope is the same). Probably:
8016 * { 1, 2 },
8017 * -> { 3, 4 }
8018 */
8019 if (*skipwhite(l) != '{')
8020 amount += ind_open_extra;
8021
8022 if (ind_cpp_baseclass)
8023 {
8024 /* have to look back, whether it is a cpp base
8025 * class declaration or initialization */
8026 lookfor = LOOKFOR_CPP_BASECLASS;
8027 continue;
8028 }
8029 break;
8030 }
8031
8032 /*
8033 * Check if we are after an "if", "while", etc.
8034 * Also allow " } else".
8035 */
8036 if (cin_is_cinword(l) || cin_iselse(skipwhite(l)))
8037 {
8038 /*
8039 * Found an unterminated line after an if (), line up
8040 * with the last one.
8041 * if (cond)
8042 * 100 +
8043 * -> here;
8044 */
8045 if (lookfor == LOOKFOR_UNTERM
8046 || lookfor == LOOKFOR_ENUM_OR_INIT)
8047 {
8048 if (cont_amount > 0)
8049 amount = cont_amount;
8050 else
8051 amount += ind_continuation;
8052 break;
8053 }
8054
8055 /*
8056 * If this is just above the line we are indenting, we
8057 * are finished.
8058 * while (not)
8059 * -> here;
8060 * Otherwise this indent can be used when the line
8061 * before this is terminated.
8062 * yyy;
8063 * if (stat)
8064 * while (not)
8065 * xxx;
8066 * -> here;
8067 */
8068 amount = cur_amount;
8069 if (theline[0] == '{')
8070 amount += ind_open_extra;
8071 if (lookfor != LOOKFOR_TERM)
8072 {
8073 amount += ind_level + ind_no_brace;
8074 break;
8075 }
8076
8077 /*
8078 * Special trick: when expecting the while () after a
8079 * do, line up with the while()
8080 * do
8081 * x = 1;
8082 * -> here
8083 */
8084 l = skipwhite(ml_get_curline());
8085 if (cin_isdo(l))
8086 {
8087 if (whilelevel == 0)
8088 break;
8089 --whilelevel;
8090 }
8091
8092 /*
8093 * When searching for a terminated line, don't use the
Bram Moolenaar334adf02011-05-25 13:34:04 +02008094 * one between the "if" and the matching "else".
Bram Moolenaar071d4272004-06-13 20:20:40 +00008095 * Need to use the scope of this "else". XXX
8096 * If whilelevel != 0 continue looking for a "do {".
8097 */
Bram Moolenaar334adf02011-05-25 13:34:04 +02008098 if (cin_iselse(l) && whilelevel == 0)
8099 {
8100 /* If we're looking at "} else", let's make sure we
8101 * find the opening brace of the enclosing scope,
8102 * not the one from "if () {". */
8103 if (*l == '}')
8104 curwin->w_cursor.col =
Bram Moolenaar9b83c2f2011-05-25 17:29:44 +02008105 (colnr_T)(l - ml_get_curline()) + 1;
Bram Moolenaar334adf02011-05-25 13:34:04 +02008106
8107 if ((trypos = find_start_brace(ind_maxcomment))
8108 == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008109 || find_match(LOOKFOR_IF, trypos->lnum,
Bram Moolenaar334adf02011-05-25 13:34:04 +02008110 ind_maxparen, ind_maxcomment) == FAIL)
8111 break;
8112 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008113 }
8114
8115 /*
8116 * If we're below an unterminated line that is not an
8117 * "if" or something, we may line up with this line or
Bram Moolenaar25394022007-05-10 19:06:20 +00008118 * add something for a continuation line, depending on
Bram Moolenaar071d4272004-06-13 20:20:40 +00008119 * the line before this one.
8120 */
8121 else
8122 {
8123 /*
8124 * Found two unterminated lines on a row, line up with
8125 * the last one.
8126 * c = 99 +
8127 * 100 +
8128 * -> here;
8129 */
8130 if (lookfor == LOOKFOR_UNTERM)
8131 {
8132 /* When line ends in a comma add extra indent */
8133 if (terminated == ',')
8134 amount += ind_continuation;
8135 break;
8136 }
8137
8138 if (lookfor == LOOKFOR_ENUM_OR_INIT)
8139 {
8140 /* Found two lines ending in ',', lineup with the
8141 * lowest one, but check for cpp base class
8142 * declaration/initialization, if it is an
8143 * opening brace or we are looking just for
8144 * enumerations/initializations. */
8145 if (terminated == ',')
8146 {
8147 if (ind_cpp_baseclass == 0)
8148 break;
8149
8150 lookfor = LOOKFOR_CPP_BASECLASS;
8151 continue;
8152 }
8153
8154 /* Ignore unterminated lines in between, but
8155 * reduce indent. */
8156 if (amount > cur_amount)
8157 amount = cur_amount;
8158 }
8159 else
8160 {
8161 /*
8162 * Found first unterminated line on a row, may
8163 * line up with this line, remember its indent
8164 * 100 +
8165 * -> here;
8166 */
8167 amount = cur_amount;
8168
8169 /*
8170 * If previous line ends in ',', check whether we
8171 * are in an initialization or enum
8172 * struct xxx =
8173 * {
8174 * sizeof a,
8175 * 124 };
8176 * or a normal possible continuation line.
8177 * but only, of no other statement has been found
8178 * yet.
8179 */
8180 if (lookfor == LOOKFOR_INITIAL && terminated == ',')
8181 {
8182 lookfor = LOOKFOR_ENUM_OR_INIT;
8183 cont_amount = cin_first_id_amount();
8184 }
8185 else
8186 {
8187 if (lookfor == LOOKFOR_INITIAL
8188 && *l != NUL
8189 && l[STRLEN(l) - 1] == '\\')
8190 /* XXX */
8191 cont_amount = cin_get_equal_amount(
8192 curwin->w_cursor.lnum);
8193 if (lookfor != LOOKFOR_TERM)
8194 lookfor = LOOKFOR_UNTERM;
8195 }
8196 }
8197 }
8198 }
8199
8200 /*
8201 * Check if we are after a while (cond);
8202 * If so: Ignore until the matching "do".
8203 */
8204 /* XXX */
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00008205 else if (cin_iswhileofdo_end(terminated, ind_maxparen,
8206 ind_maxcomment))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008207 {
8208 /*
8209 * Found an unterminated line after a while ();, line up
8210 * with the last one.
8211 * while (cond);
8212 * 100 + <- line up with this one
8213 * -> here;
8214 */
8215 if (lookfor == LOOKFOR_UNTERM
8216 || lookfor == LOOKFOR_ENUM_OR_INIT)
8217 {
8218 if (cont_amount > 0)
8219 amount = cont_amount;
8220 else
8221 amount += ind_continuation;
8222 break;
8223 }
8224
8225 if (whilelevel == 0)
8226 {
8227 lookfor = LOOKFOR_TERM;
8228 amount = get_indent(); /* XXX */
8229 if (theline[0] == '{')
8230 amount += ind_open_extra;
8231 }
8232 ++whilelevel;
8233 }
8234
8235 /*
8236 * We are after a "normal" statement.
8237 * If we had another statement we can stop now and use the
8238 * indent of that other statement.
8239 * Otherwise the indent of the current statement may be used,
8240 * search backwards for the next "normal" statement.
8241 */
8242 else
8243 {
8244 /*
8245 * Skip single break line, if before a switch label. It
8246 * may be lined up with the case label.
8247 */
8248 if (lookfor == LOOKFOR_NOBREAK
8249 && cin_isbreak(skipwhite(ml_get_curline())))
8250 {
8251 lookfor = LOOKFOR_ANY;
8252 continue;
8253 }
8254
8255 /*
8256 * Handle "do {" line.
8257 */
8258 if (whilelevel > 0)
8259 {
8260 l = cin_skipcomment(ml_get_curline());
8261 if (cin_isdo(l))
8262 {
8263 amount = get_indent(); /* XXX */
8264 --whilelevel;
8265 continue;
8266 }
8267 }
8268
8269 /*
8270 * Found a terminated line above an unterminated line. Add
8271 * the amount for a continuation line.
8272 * x = 1;
8273 * y = foo +
8274 * -> here;
8275 * or
8276 * int x = 1;
8277 * int foo,
8278 * -> here;
8279 */
8280 if (lookfor == LOOKFOR_UNTERM
8281 || lookfor == LOOKFOR_ENUM_OR_INIT)
8282 {
8283 if (cont_amount > 0)
8284 amount = cont_amount;
8285 else
8286 amount += ind_continuation;
8287 break;
8288 }
8289
8290 /*
8291 * Found a terminated line above a terminated line or "if"
8292 * etc. line. Use the amount of the line below us.
8293 * x = 1; x = 1;
8294 * if (asdf) y = 2;
8295 * while (asdf) ->here;
8296 * here;
8297 * ->foo;
8298 */
8299 if (lookfor == LOOKFOR_TERM)
8300 {
8301 if (!lookfor_break && whilelevel == 0)
8302 break;
8303 }
8304
8305 /*
8306 * First line above the one we're indenting is terminated.
8307 * To know what needs to be done look further backward for
8308 * a terminated line.
8309 */
8310 else
8311 {
8312 /*
8313 * position the cursor over the rightmost paren, so
8314 * that matching it will take us back to the start of
8315 * the line. Helps for:
8316 * func(asdr,
8317 * asdfasdf);
8318 * here;
8319 */
8320term_again:
8321 l = ml_get_curline();
8322 if (find_last_paren(l, '(', ')')
8323 && (trypos = find_match_paren(ind_maxparen,
8324 ind_maxcomment)) != NULL)
8325 {
8326 /*
8327 * Check if we are on a case label now. This is
8328 * handled above.
8329 * case xx: if ( asdf &&
8330 * asdf)
8331 */
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008332 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008333 l = ml_get_curline();
Bram Moolenaar3acfc302010-07-11 17:23:02 +02008334 if (cin_iscase(l, FALSE) || cin_isscopedecl(l))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008335 {
8336 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008337 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008338 continue;
8339 }
8340 }
8341
8342 /* When aligning with the case statement, don't align
8343 * with a statement after it.
8344 * case 1: { <-- don't use this { position
8345 * stat;
8346 * }
8347 * case 2:
8348 * stat;
8349 * }
8350 */
Bram Moolenaar3acfc302010-07-11 17:23:02 +02008351 iscase = (ind_keep_case_label && cin_iscase(l, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008352
8353 /*
8354 * Get indent and pointer to text for current line,
8355 * ignoring any jump label.
8356 */
8357 amount = skip_label(curwin->w_cursor.lnum,
8358 &l, ind_maxcomment);
8359
8360 if (theline[0] == '{')
8361 amount += ind_open_extra;
8362 /* See remark above: "Only add ind_open_extra.." */
Bram Moolenaar18144c82006-04-12 21:52:12 +00008363 l = skipwhite(l);
8364 if (*l == '{')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008365 amount -= ind_open_extra;
8366 lookfor = iscase ? LOOKFOR_ANY : LOOKFOR_TERM;
8367
8368 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00008369 * When a terminated line starts with "else" skip to
8370 * the matching "if":
8371 * else 3;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008372 * indent this;
Bram Moolenaar18144c82006-04-12 21:52:12 +00008373 * Need to use the scope of this "else". XXX
8374 * If whilelevel != 0 continue looking for a "do {".
8375 */
8376 if (lookfor == LOOKFOR_TERM
8377 && *l != '}'
8378 && cin_iselse(l)
8379 && whilelevel == 0)
8380 {
8381 if ((trypos = find_start_brace(ind_maxcomment))
8382 == NULL
8383 || find_match(LOOKFOR_IF, trypos->lnum,
8384 ind_maxparen, ind_maxcomment) == FAIL)
8385 break;
8386 continue;
8387 }
8388
8389 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008390 * If we're at the end of a block, skip to the start of
8391 * that block.
8392 */
Bram Moolenaar6d8f9c62011-11-30 13:03:28 +01008393 l = ml_get_curline();
Bram Moolenaar50f42ca2011-07-15 14:12:30 +02008394 if (find_last_paren(l, '{', '}')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008395 && (trypos = find_start_brace(ind_maxcomment))
8396 != NULL) /* XXX */
8397 {
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008398 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008399 /* if not "else {" check for terminated again */
8400 /* but skip block for "} else {" */
8401 l = cin_skipcomment(ml_get_curline());
8402 if (*l == '}' || !cin_iselse(l))
8403 goto term_again;
8404 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008405 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008406 }
8407 }
8408 }
8409 }
8410 }
8411 }
8412
8413 /* add extra indent for a comment */
8414 if (cin_iscomment(theline))
8415 amount += ind_comment;
Bram Moolenaar02c707a2010-07-17 17:12:06 +02008416
8417 /* subtract extra left-shift for jump labels */
8418 if (ind_jump_label > 0 && original_line_islabel)
8419 amount -= ind_jump_label;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008420 }
8421
8422 /*
8423 * ok -- we're not inside any sort of structure at all!
8424 *
8425 * this means we're at the top level, and everything should
8426 * basically just match where the previous line is, except
8427 * for the lines immediately following a function declaration,
8428 * which are K&R-style parameters and need to be indented.
8429 */
8430 else
8431 {
8432 /*
8433 * if our line starts with an open brace, forget about any
8434 * prevailing indent and make sure it looks like the start
8435 * of a function
8436 */
8437
8438 if (theline[0] == '{')
8439 {
8440 amount = ind_first_open;
8441 }
8442
8443 /*
8444 * If the NEXT line is a function declaration, the current
8445 * line needs to be indented as a function type spec.
Bram Moolenaar1a89bbe2010-03-02 12:38:22 +01008446 * Don't do this if the current line looks like a comment or if the
8447 * current line is terminated, ie. ends in ';', or if the current line
8448 * contains { or }: "void f() {\n if (1)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008449 */
8450 else if (cur_curpos.lnum < curbuf->b_ml.ml_line_count
8451 && !cin_nocode(theline)
Bram Moolenaar1a89bbe2010-03-02 12:38:22 +01008452 && vim_strchr(theline, '{') == NULL
8453 && vim_strchr(theline, '}') == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008454 && !cin_ends_in(theline, (char_u *)":", NULL)
8455 && !cin_ends_in(theline, (char_u *)",", NULL)
Bram Moolenaarc367faa2011-12-14 20:21:35 +01008456 && cin_isfuncdecl(NULL, cur_curpos.lnum + 1,
8457 cur_curpos.lnum + 1,
8458 ind_maxparen, ind_maxcomment)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008459 && !cin_isterminated(theline, FALSE, TRUE))
8460 {
8461 amount = ind_func_type;
8462 }
8463 else
8464 {
8465 amount = 0;
8466 curwin->w_cursor = cur_curpos;
8467
8468 /* search backwards until we find something we recognize */
8469
8470 while (curwin->w_cursor.lnum > 1)
8471 {
8472 curwin->w_cursor.lnum--;
8473 curwin->w_cursor.col = 0;
8474
8475 l = ml_get_curline();
8476
8477 /*
8478 * If we're in a comment now, skip to the start of the comment.
8479 */ /* XXX */
8480 if ((trypos = find_start_comment(ind_maxcomment)) != NULL)
8481 {
8482 curwin->w_cursor.lnum = trypos->lnum + 1;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008483 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008484 continue;
8485 }
8486
8487 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00008488 * Are we at the start of a cpp base class declaration or
8489 * constructor initialization?
Bram Moolenaar071d4272004-06-13 20:20:40 +00008490 */ /* XXX */
Bram Moolenaar18144c82006-04-12 21:52:12 +00008491 n = FALSE;
8492 if (ind_cpp_baseclass != 0 && theline[0] != '{')
8493 {
Bram Moolenaare7c56862007-08-04 10:14:52 +00008494 n = cin_is_cpp_baseclass(&col);
Bram Moolenaar18144c82006-04-12 21:52:12 +00008495 l = ml_get_curline();
8496 }
8497 if (n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008498 {
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00008499 /* XXX */
8500 amount = get_baseclass_amount(col, ind_maxparen,
8501 ind_maxcomment, ind_cpp_baseclass);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008502 break;
8503 }
8504
8505 /*
8506 * Skip preprocessor directives and blank lines.
8507 */
8508 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
8509 continue;
8510
8511 if (cin_nocode(l))
8512 continue;
8513
8514 /*
8515 * If the previous line ends in ',', use one level of
8516 * indentation:
8517 * int foo,
8518 * bar;
8519 * do this before checking for '}' in case of eg.
8520 * enum foobar
8521 * {
8522 * ...
8523 * } foo,
8524 * bar;
8525 */
8526 n = 0;
8527 if (cin_ends_in(l, (char_u *)",", NULL)
8528 || (*l != NUL && (n = l[STRLEN(l) - 1]) == '\\'))
8529 {
8530 /* take us back to opening paren */
8531 if (find_last_paren(l, '(', ')')
8532 && (trypos = find_match_paren(ind_maxparen,
8533 ind_maxcomment)) != NULL)
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008534 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008535
8536 /* For a line ending in ',' that is a continuation line go
8537 * back to the first line with a backslash:
8538 * char *foo = "bla\
8539 * bla",
8540 * here;
8541 */
8542 while (n == 0 && curwin->w_cursor.lnum > 1)
8543 {
8544 l = ml_get(curwin->w_cursor.lnum - 1);
8545 if (*l == NUL || l[STRLEN(l) - 1] != '\\')
8546 break;
8547 --curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008548 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008549 }
8550
8551 amount = get_indent(); /* XXX */
8552
8553 if (amount == 0)
8554 amount = cin_first_id_amount();
8555 if (amount == 0)
8556 amount = ind_continuation;
8557 break;
8558 }
8559
8560 /*
8561 * If the line looks like a function declaration, and we're
8562 * not in a comment, put it the left margin.
8563 */
Bram Moolenaarc367faa2011-12-14 20:21:35 +01008564 if (cin_isfuncdecl(NULL, cur_curpos.lnum, 0,
8565 ind_maxparen, ind_maxcomment)) /* XXX */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008566 break;
8567 l = ml_get_curline();
8568
8569 /*
8570 * Finding the closing '}' of a previous function. Put
8571 * current line at the left margin. For when 'cino' has "fs".
8572 */
8573 if (*skipwhite(l) == '}')
8574 break;
8575
8576 /* (matching {)
8577 * If the previous line ends on '};' (maybe followed by
8578 * comments) align at column 0. For example:
8579 * char *string_array[] = { "foo",
8580 * / * x * / "b};ar" }; / * foobar * /
8581 */
8582 if (cin_ends_in(l, (char_u *)"};", NULL))
8583 break;
8584
8585 /*
Bram Moolenaar3388bb42011-11-30 17:20:23 +01008586 * Find a line only has a semicolon that belongs to a previous
8587 * line ending in '}', e.g. before an #endif. Don't increase
8588 * indent then.
8589 */
8590 if (*(look = skipwhite(l)) == ';' && cin_nocode(look + 1))
8591 {
8592 pos_T curpos_save = curwin->w_cursor;
8593
8594 while (curwin->w_cursor.lnum > 1)
8595 {
8596 look = ml_get(--curwin->w_cursor.lnum);
8597 if (!(cin_nocode(look) || cin_ispreproc_cont(
8598 &look, &curwin->w_cursor.lnum)))
8599 break;
8600 }
8601 if (curwin->w_cursor.lnum > 0
8602 && cin_ends_in(look, (char_u *)"}", NULL))
8603 break;
8604
8605 curwin->w_cursor = curpos_save;
8606 }
8607
8608 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008609 * If the PREVIOUS line is a function declaration, the current
8610 * line (and the ones that follow) needs to be indented as
8611 * parameters.
8612 */
Bram Moolenaarc367faa2011-12-14 20:21:35 +01008613 if (cin_isfuncdecl(&l, curwin->w_cursor.lnum, 0,
8614 ind_maxparen, ind_maxcomment))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008615 {
8616 amount = ind_param;
8617 break;
8618 }
8619
8620 /*
8621 * If the previous line ends in ';' and the line before the
8622 * previous line ends in ',' or '\', ident to column zero:
8623 * int foo,
8624 * bar;
8625 * indent_to_0 here;
8626 */
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00008627 if (cin_ends_in(l, (char_u *)";", NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008628 {
8629 l = ml_get(curwin->w_cursor.lnum - 1);
8630 if (cin_ends_in(l, (char_u *)",", NULL)
8631 || (*l != NUL && l[STRLEN(l) - 1] == '\\'))
8632 break;
8633 l = ml_get_curline();
8634 }
8635
8636 /*
8637 * Doesn't look like anything interesting -- so just
8638 * use the indent of this line.
8639 *
8640 * Position the cursor over the rightmost paren, so that
8641 * matching it will take us back to the start of the line.
8642 */
8643 find_last_paren(l, '(', ')');
8644
8645 if ((trypos = find_match_paren(ind_maxparen,
8646 ind_maxcomment)) != NULL)
Bram Moolenaarddfc9782008-02-25 20:55:22 +00008647 curwin->w_cursor = *trypos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008648 amount = get_indent(); /* XXX */
8649 break;
8650 }
8651
8652 /* add extra indent for a comment */
8653 if (cin_iscomment(theline))
8654 amount += ind_comment;
8655
8656 /* add extra indent if the previous line ended in a backslash:
8657 * "asdfasdf\
8658 * here";
8659 * char *foo = "asdf\
8660 * here";
8661 */
8662 if (cur_curpos.lnum > 1)
8663 {
8664 l = ml_get(cur_curpos.lnum - 1);
8665 if (*l != NUL && l[STRLEN(l) - 1] == '\\')
8666 {
8667 cur_amount = cin_get_equal_amount(cur_curpos.lnum - 1);
8668 if (cur_amount > 0)
8669 amount = cur_amount;
8670 else if (cur_amount == 0)
8671 amount += ind_continuation;
8672 }
8673 }
8674 }
8675 }
8676
8677theend:
8678 /* put the cursor back where it belongs */
8679 curwin->w_cursor = cur_curpos;
8680
8681 vim_free(linecopy);
8682
8683 if (amount < 0)
8684 return 0;
8685 return amount;
8686}
8687
8688 static int
8689find_match(lookfor, ourscope, ind_maxparen, ind_maxcomment)
8690 int lookfor;
8691 linenr_T ourscope;
8692 int ind_maxparen;
8693 int ind_maxcomment;
8694{
8695 char_u *look;
8696 pos_T *theirscope;
8697 char_u *mightbeif;
8698 int elselevel;
8699 int whilelevel;
8700
8701 if (lookfor == LOOKFOR_IF)
8702 {
8703 elselevel = 1;
8704 whilelevel = 0;
8705 }
8706 else
8707 {
8708 elselevel = 0;
8709 whilelevel = 1;
8710 }
8711
8712 curwin->w_cursor.col = 0;
8713
8714 while (curwin->w_cursor.lnum > ourscope + 1)
8715 {
8716 curwin->w_cursor.lnum--;
8717 curwin->w_cursor.col = 0;
8718
8719 look = cin_skipcomment(ml_get_curline());
8720 if (cin_iselse(look)
8721 || cin_isif(look)
8722 || cin_isdo(look) /* XXX */
8723 || cin_iswhileofdo(look, curwin->w_cursor.lnum, ind_maxparen))
8724 {
8725 /*
8726 * if we've gone outside the braces entirely,
8727 * we must be out of scope...
8728 */
8729 theirscope = find_start_brace(ind_maxcomment); /* XXX */
8730 if (theirscope == NULL)
8731 break;
8732
8733 /*
8734 * and if the brace enclosing this is further
8735 * back than the one enclosing the else, we're
8736 * out of luck too.
8737 */
8738 if (theirscope->lnum < ourscope)
8739 break;
8740
8741 /*
8742 * and if they're enclosed in a *deeper* brace,
8743 * then we can ignore it because it's in a
8744 * different scope...
8745 */
8746 if (theirscope->lnum > ourscope)
8747 continue;
8748
8749 /*
8750 * if it was an "else" (that's not an "else if")
8751 * then we need to go back to another if, so
8752 * increment elselevel
8753 */
8754 look = cin_skipcomment(ml_get_curline());
8755 if (cin_iselse(look))
8756 {
8757 mightbeif = cin_skipcomment(look + 4);
8758 if (!cin_isif(mightbeif))
8759 ++elselevel;
8760 continue;
8761 }
8762
8763 /*
8764 * if it was a "while" then we need to go back to
8765 * another "do", so increment whilelevel. XXX
8766 */
8767 if (cin_iswhileofdo(look, curwin->w_cursor.lnum, ind_maxparen))
8768 {
8769 ++whilelevel;
8770 continue;
8771 }
8772
8773 /* If it's an "if" decrement elselevel */
8774 look = cin_skipcomment(ml_get_curline());
8775 if (cin_isif(look))
8776 {
8777 elselevel--;
8778 /*
8779 * When looking for an "if" ignore "while"s that
8780 * get in the way.
8781 */
8782 if (elselevel == 0 && lookfor == LOOKFOR_IF)
8783 whilelevel = 0;
8784 }
8785
8786 /* If it's a "do" decrement whilelevel */
8787 if (cin_isdo(look))
8788 whilelevel--;
8789
8790 /*
8791 * if we've used up all the elses, then
8792 * this must be the if that we want!
8793 * match the indent level of that if.
8794 */
8795 if (elselevel <= 0 && whilelevel <= 0)
8796 {
8797 return OK;
8798 }
8799 }
8800 }
8801 return FAIL;
8802}
8803
8804# if defined(FEAT_EVAL) || defined(PROTO)
8805/*
8806 * Get indent level from 'indentexpr'.
8807 */
8808 int
8809get_expr_indent()
8810{
8811 int indent;
8812 pos_T pos;
8813 int save_State;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00008814 int use_sandbox = was_set_insecurely((char_u *)"indentexpr",
8815 OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008816
8817 pos = curwin->w_cursor;
8818 set_vim_var_nr(VV_LNUM, curwin->w_cursor.lnum);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00008819 if (use_sandbox)
8820 ++sandbox;
8821 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008822 indent = eval_to_number(curbuf->b_p_inde);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00008823 if (use_sandbox)
8824 --sandbox;
8825 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008826
8827 /* Restore the cursor position so that 'indentexpr' doesn't need to.
8828 * Pretend to be in Insert mode, allow cursor past end of line for "o"
8829 * command. */
8830 save_State = State;
8831 State = INSERT;
8832 curwin->w_cursor = pos;
8833 check_cursor();
8834 State = save_State;
8835
8836 /* If there is an error, just keep the current indent. */
8837 if (indent < 0)
8838 indent = get_indent();
8839
8840 return indent;
8841}
8842# endif
8843
8844#endif /* FEAT_CINDENT */
8845
8846#if defined(FEAT_LISP) || defined(PROTO)
8847
8848static int lisp_match __ARGS((char_u *p));
8849
8850 static int
8851lisp_match(p)
8852 char_u *p;
8853{
8854 char_u buf[LSIZE];
8855 int len;
8856 char_u *word = p_lispwords;
8857
8858 while (*word != NUL)
8859 {
8860 (void)copy_option_part(&word, buf, LSIZE, ",");
8861 len = (int)STRLEN(buf);
8862 if (STRNCMP(buf, p, len) == 0 && p[len] == ' ')
8863 return TRUE;
8864 }
8865 return FALSE;
8866}
8867
8868/*
8869 * When 'p' is present in 'cpoptions, a Vi compatible method is used.
8870 * The incompatible newer method is quite a bit better at indenting
8871 * code in lisp-like languages than the traditional one; it's still
8872 * mostly heuristics however -- Dirk van Deun, dirk@rave.org
8873 *
8874 * TODO:
8875 * Findmatch() should be adapted for lisp, also to make showmatch
8876 * work correctly: now (v5.3) it seems all C/C++ oriented:
8877 * - it does not recognize the #\( and #\) notations as character literals
8878 * - it doesn't know about comments starting with a semicolon
8879 * - it incorrectly interprets '(' as a character literal
8880 * All this messes up get_lisp_indent in some rare cases.
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008881 * Update from Sergey Khorev:
8882 * I tried to fix the first two issues.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008883 */
8884 int
8885get_lisp_indent()
8886{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008887 pos_T *pos, realpos, paren;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008888 int amount;
8889 char_u *that;
8890 colnr_T col;
8891 colnr_T firsttry;
8892 int parencount, quotecount;
8893 int vi_lisp;
8894
8895 /* Set vi_lisp to use the vi-compatible method */
8896 vi_lisp = (vim_strchr(p_cpo, CPO_LISP) != NULL);
8897
8898 realpos = curwin->w_cursor;
8899 curwin->w_cursor.col = 0;
8900
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008901 if ((pos = findmatch(NULL, '(')) == NULL)
8902 pos = findmatch(NULL, '[');
8903 else
8904 {
8905 paren = *pos;
8906 pos = findmatch(NULL, '[');
8907 if (pos == NULL || ltp(pos, &paren))
8908 pos = &paren;
8909 }
8910 if (pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008911 {
8912 /* Extra trick: Take the indent of the first previous non-white
8913 * line that is at the same () level. */
8914 amount = -1;
8915 parencount = 0;
8916
8917 while (--curwin->w_cursor.lnum >= pos->lnum)
8918 {
8919 if (linewhite(curwin->w_cursor.lnum))
8920 continue;
8921 for (that = ml_get_curline(); *that != NUL; ++that)
8922 {
8923 if (*that == ';')
8924 {
8925 while (*(that + 1) != NUL)
8926 ++that;
8927 continue;
8928 }
8929 if (*that == '\\')
8930 {
8931 if (*(that + 1) != NUL)
8932 ++that;
8933 continue;
8934 }
8935 if (*that == '"' && *(that + 1) != NUL)
8936 {
Bram Moolenaar15ff6c12006-09-15 18:18:09 +00008937 while (*++that && *that != '"')
8938 {
8939 /* skipping escaped characters in the string */
8940 if (*that == '\\')
8941 {
8942 if (*++that == NUL)
8943 break;
8944 if (that[1] == NUL)
8945 {
8946 ++that;
8947 break;
8948 }
8949 }
8950 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008951 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008952 if (*that == '(' || *that == '[')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008953 ++parencount;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008954 else if (*that == ')' || *that == ']')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008955 --parencount;
8956 }
8957 if (parencount == 0)
8958 {
8959 amount = get_indent();
8960 break;
8961 }
8962 }
8963
8964 if (amount == -1)
8965 {
8966 curwin->w_cursor.lnum = pos->lnum;
8967 curwin->w_cursor.col = pos->col;
8968 col = pos->col;
8969
8970 that = ml_get_curline();
8971
8972 if (vi_lisp && get_indent() == 0)
8973 amount = 2;
8974 else
8975 {
8976 amount = 0;
8977 while (*that && col)
8978 {
8979 amount += lbr_chartabsize_adv(&that, (colnr_T)amount);
8980 col--;
8981 }
8982
8983 /*
8984 * Some keywords require "body" indenting rules (the
8985 * non-standard-lisp ones are Scheme special forms):
8986 *
8987 * (let ((a 1)) instead (let ((a 1))
8988 * (...)) of (...))
8989 */
8990
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008991 if (!vi_lisp && (*that == '(' || *that == '[')
8992 && lisp_match(that + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008993 amount += 2;
8994 else
8995 {
8996 that++;
8997 amount++;
8998 firsttry = amount;
8999
9000 while (vim_iswhite(*that))
9001 {
9002 amount += lbr_chartabsize(that, (colnr_T)amount);
9003 ++that;
9004 }
9005
9006 if (*that && *that != ';') /* not a comment line */
9007 {
Bram Moolenaare21877a2008-02-13 09:58:14 +00009008 /* test *that != '(' to accommodate first let/do
Bram Moolenaar071d4272004-06-13 20:20:40 +00009009 * argument if it is more than one line */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009010 if (!vi_lisp && *that != '(' && *that != '[')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009011 firsttry++;
9012
9013 parencount = 0;
9014 quotecount = 0;
9015
9016 if (vi_lisp
9017 || (*that != '"'
9018 && *that != '\''
9019 && *that != '#'
9020 && (*that < '0' || *that > '9')))
9021 {
9022 while (*that
9023 && (!vim_iswhite(*that)
9024 || quotecount
9025 || parencount)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009026 && (!((*that == '(' || *that == '[')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009027 && !quotecount
9028 && !parencount
9029 && vi_lisp)))
9030 {
9031 if (*that == '"')
9032 quotecount = !quotecount;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009033 if ((*that == '(' || *that == '[')
9034 && !quotecount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009035 ++parencount;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009036 if ((*that == ')' || *that == ']')
9037 && !quotecount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009038 --parencount;
9039 if (*that == '\\' && *(that+1) != NUL)
9040 amount += lbr_chartabsize_adv(&that,
9041 (colnr_T)amount);
9042 amount += lbr_chartabsize_adv(&that,
9043 (colnr_T)amount);
9044 }
9045 }
9046 while (vim_iswhite(*that))
9047 {
9048 amount += lbr_chartabsize(that, (colnr_T)amount);
9049 that++;
9050 }
9051 if (!*that || *that == ';')
9052 amount = firsttry;
9053 }
9054 }
9055 }
9056 }
9057 }
9058 else
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009059 amount = 0; /* no matching '(' or '[' found, use zero indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009060
9061 curwin->w_cursor = realpos;
9062
9063 return amount;
9064}
9065#endif /* FEAT_LISP */
9066
9067 void
9068prepare_to_exit()
9069{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00009070#if defined(SIGHUP) && defined(SIG_IGN)
9071 /* Ignore SIGHUP, because a dropped connection causes a read error, which
9072 * makes Vim exit and then handling SIGHUP causes various reentrance
9073 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009074 signal(SIGHUP, SIG_IGN);
9075#endif
9076
Bram Moolenaar071d4272004-06-13 20:20:40 +00009077#ifdef FEAT_GUI
9078 if (gui.in_use)
9079 {
9080 gui.dying = TRUE;
9081 out_trash(); /* trash any pending output */
9082 }
9083 else
9084#endif
9085 {
9086 windgoto((int)Rows - 1, 0);
9087
9088 /*
9089 * Switch terminal mode back now, so messages end up on the "normal"
9090 * screen (if there are two screens).
9091 */
9092 settmode(TMODE_COOK);
9093#ifdef WIN3264
9094 if (can_end_termcap_mode(FALSE) == TRUE)
9095#endif
9096 stoptermcap();
9097 out_flush();
9098 }
9099}
9100
9101/*
9102 * Preserve files and exit.
9103 * When called IObuff must contain a message.
9104 */
9105 void
9106preserve_exit()
9107{
9108 buf_T *buf;
9109
9110 prepare_to_exit();
9111
Bram Moolenaar4770d092006-01-12 23:22:24 +00009112 /* Setting this will prevent free() calls. That avoids calling free()
9113 * recursively when free() was invoked with a bad pointer. */
9114 really_exiting = TRUE;
9115
Bram Moolenaar071d4272004-06-13 20:20:40 +00009116 out_str(IObuff);
9117 screen_start(); /* don't know where cursor is now */
9118 out_flush();
9119
9120 ml_close_notmod(); /* close all not-modified buffers */
9121
9122 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
9123 {
9124 if (buf->b_ml.ml_mfp != NULL && buf->b_ml.ml_mfp->mf_fname != NULL)
9125 {
9126 OUT_STR(_("Vim: preserving files...\n"));
9127 screen_start(); /* don't know where cursor is now */
9128 out_flush();
9129 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
9130 break;
9131 }
9132 }
9133
9134 ml_close_all(FALSE); /* close all memfiles, without deleting */
9135
9136 OUT_STR(_("Vim: Finished.\n"));
9137
9138 getout(1);
9139}
9140
9141/*
9142 * return TRUE if "fname" exists.
9143 */
9144 int
9145vim_fexists(fname)
9146 char_u *fname;
9147{
9148 struct stat st;
9149
9150 if (mch_stat((char *)fname, &st))
9151 return FALSE;
9152 return TRUE;
9153}
9154
9155/*
9156 * Check for CTRL-C pressed, but only once in a while.
9157 * Should be used instead of ui_breakcheck() for functions that check for
9158 * each line in the file. Calling ui_breakcheck() each time takes too much
9159 * time, because it can be a system call.
9160 */
9161
9162#ifndef BREAKCHECK_SKIP
9163# ifdef FEAT_GUI /* assume the GUI only runs on fast computers */
9164# define BREAKCHECK_SKIP 200
9165# else
9166# define BREAKCHECK_SKIP 32
9167# endif
9168#endif
9169
9170static int breakcheck_count = 0;
9171
9172 void
9173line_breakcheck()
9174{
9175 if (++breakcheck_count >= BREAKCHECK_SKIP)
9176 {
9177 breakcheck_count = 0;
9178 ui_breakcheck();
9179 }
9180}
9181
9182/*
9183 * Like line_breakcheck() but check 10 times less often.
9184 */
9185 void
9186fast_breakcheck()
9187{
9188 if (++breakcheck_count >= BREAKCHECK_SKIP * 10)
9189 {
9190 breakcheck_count = 0;
9191 ui_breakcheck();
9192 }
9193}
9194
9195/*
Bram Moolenaard7834d32009-12-02 16:14:36 +00009196 * Invoke expand_wildcards() for one pattern.
9197 * Expand items like "%:h" before the expansion.
9198 * Returns OK or FAIL.
9199 */
9200 int
9201expand_wildcards_eval(pat, num_file, file, flags)
9202 char_u **pat; /* pointer to input pattern */
9203 int *num_file; /* resulting number of files */
9204 char_u ***file; /* array of resulting files */
9205 int flags; /* EW_DIR, etc. */
9206{
9207 int ret = FAIL;
9208 char_u *eval_pat = NULL;
9209 char_u *exp_pat = *pat;
9210 char_u *ignored_msg;
9211 int usedlen;
9212
9213 if (*exp_pat == '%' || *exp_pat == '#' || *exp_pat == '<')
9214 {
9215 ++emsg_off;
9216 eval_pat = eval_vars(exp_pat, exp_pat, &usedlen,
9217 NULL, &ignored_msg, NULL);
9218 --emsg_off;
9219 if (eval_pat != NULL)
9220 exp_pat = concat_str(eval_pat, exp_pat + usedlen);
9221 }
9222
9223 if (exp_pat != NULL)
9224 ret = expand_wildcards(1, &exp_pat, num_file, file, flags);
9225
9226 if (eval_pat != NULL)
9227 {
9228 vim_free(exp_pat);
9229 vim_free(eval_pat);
9230 }
9231
9232 return ret;
9233}
9234
9235/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009236 * Expand wildcards. Calls gen_expand_wildcards() and removes files matching
9237 * 'wildignore'.
Bram Moolenaar9e193ac2010-07-19 23:11:27 +02009238 * Returns OK or FAIL. When FAIL then "num_file" won't be set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009239 */
9240 int
9241expand_wildcards(num_pat, pat, num_file, file, flags)
9242 int num_pat; /* number of input patterns */
9243 char_u **pat; /* array of input patterns */
9244 int *num_file; /* resulting number of files */
9245 char_u ***file; /* array of resulting files */
9246 int flags; /* EW_DIR, etc. */
9247{
9248 int retval;
9249 int i, j;
9250 char_u *p;
9251 int non_suf_match; /* number without matching suffix */
9252
9253 retval = gen_expand_wildcards(num_pat, pat, num_file, file, flags);
9254
9255 /* When keeping all matches, return here */
Bram Moolenaar9e193ac2010-07-19 23:11:27 +02009256 if ((flags & EW_KEEPALL) || retval == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009257 return retval;
9258
9259#ifdef FEAT_WILDIGN
9260 /*
9261 * Remove names that match 'wildignore'.
9262 */
9263 if (*p_wig)
9264 {
9265 char_u *ffname;
9266
9267 /* check all files in (*file)[] */
9268 for (i = 0; i < *num_file; ++i)
9269 {
9270 ffname = FullName_save((*file)[i], FALSE);
9271 if (ffname == NULL) /* out of memory */
9272 break;
9273# ifdef VMS
9274 vms_remove_version(ffname);
9275# endif
9276 if (match_file_list(p_wig, (*file)[i], ffname))
9277 {
9278 /* remove this matching file from the list */
9279 vim_free((*file)[i]);
9280 for (j = i; j + 1 < *num_file; ++j)
9281 (*file)[j] = (*file)[j + 1];
9282 --*num_file;
9283 --i;
9284 }
9285 vim_free(ffname);
9286 }
9287 }
9288#endif
9289
9290 /*
9291 * Move the names where 'suffixes' match to the end.
9292 */
9293 if (*num_file > 1)
9294 {
9295 non_suf_match = 0;
9296 for (i = 0; i < *num_file; ++i)
9297 {
9298 if (!match_suffix((*file)[i]))
9299 {
9300 /*
9301 * Move the name without matching suffix to the front
9302 * of the list.
9303 */
9304 p = (*file)[i];
9305 for (j = i; j > non_suf_match; --j)
9306 (*file)[j] = (*file)[j - 1];
9307 (*file)[non_suf_match++] = p;
9308 }
9309 }
9310 }
9311
9312 return retval;
9313}
9314
9315/*
9316 * Return TRUE if "fname" matches with an entry in 'suffixes'.
9317 */
9318 int
9319match_suffix(fname)
9320 char_u *fname;
9321{
9322 int fnamelen, setsuflen;
9323 char_u *setsuf;
9324#define MAXSUFLEN 30 /* maximum length of a file suffix */
9325 char_u suf_buf[MAXSUFLEN];
9326
9327 fnamelen = (int)STRLEN(fname);
9328 setsuflen = 0;
9329 for (setsuf = p_su; *setsuf; )
9330 {
9331 setsuflen = copy_option_part(&setsuf, suf_buf, MAXSUFLEN, ".,");
Bram Moolenaar055a2ba2009-07-14 19:40:21 +00009332 if (setsuflen == 0)
9333 {
9334 char_u *tail = gettail(fname);
9335
9336 /* empty entry: match name without a '.' */
9337 if (vim_strchr(tail, '.') == NULL)
9338 {
9339 setsuflen = 1;
9340 break;
9341 }
9342 }
9343 else
9344 {
9345 if (fnamelen >= setsuflen
9346 && fnamencmp(suf_buf, fname + fnamelen - setsuflen,
9347 (size_t)setsuflen) == 0)
9348 break;
9349 setsuflen = 0;
9350 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009351 }
9352 return (setsuflen != 0);
9353}
9354
9355#if !defined(NO_EXPANDPATH) || defined(PROTO)
9356
9357# ifdef VIM_BACKTICK
9358static int vim_backtick __ARGS((char_u *p));
9359static int expand_backtick __ARGS((garray_T *gap, char_u *pat, int flags));
9360# endif
9361
9362# if defined(MSDOS) || defined(FEAT_GUI_W16) || defined(WIN3264)
9363/*
9364 * File name expansion code for MS-DOS, Win16 and Win32. It's here because
9365 * it's shared between these systems.
9366 */
9367# if defined(DJGPP) || defined(PROTO)
9368# define _cdecl /* DJGPP doesn't have this */
9369# else
9370# ifdef __BORLANDC__
9371# define _cdecl _RTLENTRYF
9372# endif
9373# endif
9374
9375/*
9376 * comparison function for qsort in dos_expandpath()
9377 */
9378 static int _cdecl
9379pstrcmp(const void *a, const void *b)
9380{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00009381 return (pathcmp(*(char **)a, *(char **)b, -1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009382}
9383
9384# ifndef WIN3264
9385 static void
9386namelowcpy(
9387 char_u *d,
9388 char_u *s)
9389{
9390# ifdef DJGPP
9391 if (USE_LONG_FNAME) /* don't lower case on Windows 95/NT systems */
9392 while (*s)
9393 *d++ = *s++;
9394 else
9395# endif
9396 while (*s)
9397 *d++ = TOLOWER_LOC(*s++);
9398 *d = NUL;
9399}
9400# endif
9401
9402/*
Bram Moolenaar231334e2005-07-25 20:46:57 +00009403 * Recursively expand one path component into all matching files and/or
9404 * directories. Adds matches to "gap". Handles "*", "?", "[a-z]", "**", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009405 * Return the number of matches found.
9406 * "path" has backslashes before chars that are not to be expanded, starting
9407 * at "path[wildoff]".
Bram Moolenaar231334e2005-07-25 20:46:57 +00009408 * Return the number of matches found.
9409 * NOTE: much of this is identical to unix_expandpath(), keep in sync!
Bram Moolenaar071d4272004-06-13 20:20:40 +00009410 */
9411 static int
9412dos_expandpath(
9413 garray_T *gap,
9414 char_u *path,
9415 int wildoff,
Bram Moolenaar231334e2005-07-25 20:46:57 +00009416 int flags, /* EW_* flags */
Bram Moolenaar25394022007-05-10 19:06:20 +00009417 int didstar) /* expanded "**" once already */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009418{
Bram Moolenaar231334e2005-07-25 20:46:57 +00009419 char_u *buf;
9420 char_u *path_end;
9421 char_u *p, *s, *e;
9422 int start_len = gap->ga_len;
9423 char_u *pat;
9424 regmatch_T regmatch;
9425 int starts_with_dot;
9426 int matches;
9427 int len;
9428 int starstar = FALSE;
9429 static int stardepth = 0; /* depth for "**" expansion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009430#ifdef WIN3264
9431 WIN32_FIND_DATA fb;
9432 HANDLE hFind = (HANDLE)0;
9433# ifdef FEAT_MBYTE
9434 WIN32_FIND_DATAW wfb;
9435 WCHAR *wn = NULL; /* UCS-2 name, NULL when not used. */
9436# endif
9437#else
9438 struct ffblk fb;
9439#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009440 char_u *matchname;
Bram Moolenaar231334e2005-07-25 20:46:57 +00009441 int ok;
9442
9443 /* Expanding "**" may take a long time, check for CTRL-C. */
9444 if (stardepth > 0)
9445 {
9446 ui_breakcheck();
9447 if (got_int)
9448 return 0;
9449 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009450
9451 /* make room for file name */
Bram Moolenaar231334e2005-07-25 20:46:57 +00009452 buf = alloc((int)STRLEN(path) + BASENAMELEN + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009453 if (buf == NULL)
9454 return 0;
9455
9456 /*
9457 * Find the first part in the path name that contains a wildcard or a ~1.
9458 * Copy it into buf, including the preceding characters.
9459 */
9460 p = buf;
9461 s = buf;
9462 e = NULL;
9463 path_end = path;
9464 while (*path_end != NUL)
9465 {
9466 /* May ignore a wildcard that has a backslash before it; it will
9467 * be removed by rem_backslash() or file_pat_to_reg_pat() below. */
9468 if (path_end >= path + wildoff && rem_backslash(path_end))
9469 *p++ = *path_end++;
9470 else if (*path_end == '\\' || *path_end == ':' || *path_end == '/')
9471 {
9472 if (e != NULL)
9473 break;
9474 s = p + 1;
9475 }
9476 else if (path_end >= path + wildoff
9477 && vim_strchr((char_u *)"*?[~", *path_end) != NULL)
9478 e = p;
9479#ifdef FEAT_MBYTE
9480 if (has_mbyte)
9481 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009482 len = (*mb_ptr2len)(path_end);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009483 STRNCPY(p, path_end, len);
9484 p += len;
9485 path_end += len;
9486 }
9487 else
9488#endif
9489 *p++ = *path_end++;
9490 }
9491 e = p;
9492 *e = NUL;
9493
9494 /* now we have one wildcard component between s and e */
9495 /* Remove backslashes between "wildoff" and the start of the wildcard
9496 * component. */
9497 for (p = buf + wildoff; p < s; ++p)
9498 if (rem_backslash(p))
9499 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009500 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009501 --e;
9502 --s;
9503 }
9504
Bram Moolenaar231334e2005-07-25 20:46:57 +00009505 /* Check for "**" between "s" and "e". */
9506 for (p = s; p < e; ++p)
9507 if (p[0] == '*' && p[1] == '*')
9508 starstar = TRUE;
9509
Bram Moolenaar071d4272004-06-13 20:20:40 +00009510 starts_with_dot = (*s == '.');
9511 pat = file_pat_to_reg_pat(s, e, NULL, FALSE);
9512 if (pat == NULL)
9513 {
9514 vim_free(buf);
9515 return 0;
9516 }
9517
9518 /* compile the regexp into a program */
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009519 if (flags & (EW_NOERROR | EW_NOTWILD))
Bram Moolenaarb5609832011-07-20 15:04:58 +02009520 ++emsg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009521 regmatch.rm_ic = TRUE; /* Always ignore case */
9522 regmatch.regprog = vim_regcomp(pat, RE_MAGIC);
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009523 if (flags & (EW_NOERROR | EW_NOTWILD))
Bram Moolenaarb5609832011-07-20 15:04:58 +02009524 --emsg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009525 vim_free(pat);
9526
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009527 if (regmatch.regprog == NULL && (flags & EW_NOTWILD) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009528 {
9529 vim_free(buf);
9530 return 0;
9531 }
9532
9533 /* remember the pattern or file name being looked for */
9534 matchname = vim_strsave(s);
9535
Bram Moolenaar231334e2005-07-25 20:46:57 +00009536 /* If "**" is by itself, this is the first time we encounter it and more
9537 * is following then find matches without any directory. */
9538 if (!didstar && stardepth < 100 && starstar && e - s == 2
9539 && *path_end == '/')
9540 {
9541 STRCPY(s, path_end + 1);
9542 ++stardepth;
9543 (void)dos_expandpath(gap, buf, (int)(s - buf), flags, TRUE);
9544 --stardepth;
9545 }
9546
Bram Moolenaar071d4272004-06-13 20:20:40 +00009547 /* Scan all files in the directory with "dir/ *.*" */
9548 STRCPY(s, "*.*");
9549#ifdef WIN3264
9550# ifdef FEAT_MBYTE
9551 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
9552 {
9553 /* The active codepage differs from 'encoding'. Attempt using the
9554 * wide function. If it fails because it is not implemented fall back
9555 * to the non-wide version (for Windows 98) */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00009556 wn = enc_to_utf16(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009557 if (wn != NULL)
9558 {
9559 hFind = FindFirstFileW(wn, &wfb);
9560 if (hFind == INVALID_HANDLE_VALUE
9561 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
9562 {
9563 vim_free(wn);
9564 wn = NULL;
9565 }
9566 }
9567 }
9568
9569 if (wn == NULL)
9570# endif
9571 hFind = FindFirstFile(buf, &fb);
9572 ok = (hFind != INVALID_HANDLE_VALUE);
9573#else
9574 /* If we are expanding wildcards we try both files and directories */
9575 ok = (findfirst((char *)buf, &fb,
9576 (*path_end != NUL || (flags & EW_DIR)) ? FA_DIREC : 0) == 0);
9577#endif
9578
9579 while (ok)
9580 {
9581#ifdef WIN3264
9582# ifdef FEAT_MBYTE
9583 if (wn != NULL)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00009584 p = utf16_to_enc(wfb.cFileName, NULL); /* p is allocated here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009585 else
9586# endif
9587 p = (char_u *)fb.cFileName;
9588#else
9589 p = (char_u *)fb.ff_name;
9590#endif
9591 /* Ignore entries starting with a dot, unless when asked for. Accept
9592 * all entries found with "matchname". */
9593 if ((p[0] != '.' || starts_with_dot)
9594 && (matchname == NULL
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009595 || (regmatch.regprog != NULL
9596 && vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaar0b573a52011-07-27 17:31:47 +02009597 || ((flags & EW_NOTWILD)
9598 && fnamencmp(path + (s - buf), p, e - s) == 0)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009599 {
9600#ifdef WIN3264
9601 STRCPY(s, p);
9602#else
9603 namelowcpy(s, p);
9604#endif
9605 len = (int)STRLEN(buf);
Bram Moolenaar231334e2005-07-25 20:46:57 +00009606
9607 if (starstar && stardepth < 100)
9608 {
9609 /* For "**" in the pattern first go deeper in the tree to
9610 * find matches. */
9611 STRCPY(buf + len, "/**");
9612 STRCPY(buf + len + 3, path_end);
9613 ++stardepth;
9614 (void)dos_expandpath(gap, buf, len + 1, flags, TRUE);
9615 --stardepth;
9616 }
9617
Bram Moolenaar071d4272004-06-13 20:20:40 +00009618 STRCPY(buf + len, path_end);
9619 if (mch_has_exp_wildcard(path_end))
9620 {
9621 /* need to expand another component of the path */
9622 /* remove backslashes for the remaining components only */
Bram Moolenaar231334e2005-07-25 20:46:57 +00009623 (void)dos_expandpath(gap, buf, len + 1, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009624 }
9625 else
9626 {
9627 /* no more wildcards, check if there is a match */
9628 /* remove backslashes for the remaining components only */
9629 if (*path_end != 0)
9630 backslash_halve(buf + len + 1);
9631 if (mch_getperm(buf) >= 0) /* add existing file */
9632 addfile(gap, buf, flags);
9633 }
9634 }
9635
9636#ifdef WIN3264
9637# ifdef FEAT_MBYTE
9638 if (wn != NULL)
9639 {
9640 vim_free(p);
9641 ok = FindNextFileW(hFind, &wfb);
9642 }
9643 else
9644# endif
9645 ok = FindNextFile(hFind, &fb);
9646#else
9647 ok = (findnext(&fb) == 0);
9648#endif
9649
9650 /* If no more matches and no match was used, try expanding the name
9651 * itself. Finds the long name of a short filename. */
9652 if (!ok && matchname != NULL && gap->ga_len == start_len)
9653 {
9654 STRCPY(s, matchname);
9655#ifdef WIN3264
9656 FindClose(hFind);
9657# ifdef FEAT_MBYTE
9658 if (wn != NULL)
9659 {
9660 vim_free(wn);
Bram Moolenaar36f692d2008-11-20 16:10:17 +00009661 wn = enc_to_utf16(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009662 if (wn != NULL)
9663 hFind = FindFirstFileW(wn, &wfb);
9664 }
9665 if (wn == NULL)
9666# endif
9667 hFind = FindFirstFile(buf, &fb);
9668 ok = (hFind != INVALID_HANDLE_VALUE);
9669#else
9670 ok = (findfirst((char *)buf, &fb,
9671 (*path_end != NUL || (flags & EW_DIR)) ? FA_DIREC : 0) == 0);
9672#endif
9673 vim_free(matchname);
9674 matchname = NULL;
9675 }
9676 }
9677
9678#ifdef WIN3264
9679 FindClose(hFind);
9680# ifdef FEAT_MBYTE
9681 vim_free(wn);
9682# endif
9683#endif
9684 vim_free(buf);
9685 vim_free(regmatch.regprog);
9686 vim_free(matchname);
9687
9688 matches = gap->ga_len - start_len;
9689 if (matches > 0)
9690 qsort(((char_u **)gap->ga_data) + start_len, (size_t)matches,
9691 sizeof(char_u *), pstrcmp);
9692 return matches;
9693}
9694
9695 int
9696mch_expandpath(
9697 garray_T *gap,
9698 char_u *path,
9699 int flags) /* EW_* flags */
9700{
Bram Moolenaar231334e2005-07-25 20:46:57 +00009701 return dos_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009702}
9703# endif /* MSDOS || FEAT_GUI_W16 || WIN3264 */
9704
Bram Moolenaar231334e2005-07-25 20:46:57 +00009705#if (defined(UNIX) && !defined(VMS)) || defined(USE_UNIXFILENAME) \
9706 || defined(PROTO)
9707/*
9708 * Unix style wildcard expansion code.
9709 * It's here because it's used both for Unix and Mac.
9710 */
9711static int pstrcmp __ARGS((const void *, const void *));
9712
9713 static int
9714pstrcmp(a, b)
9715 const void *a, *b;
9716{
9717 return (pathcmp(*(char **)a, *(char **)b, -1));
9718}
9719
9720/*
9721 * Recursively expand one path component into all matching files and/or
9722 * directories. Adds matches to "gap". Handles "*", "?", "[a-z]", "**", etc.
9723 * "path" has backslashes before chars that are not to be expanded, starting
9724 * at "path + wildoff".
9725 * Return the number of matches found.
9726 * NOTE: much of this is identical to dos_expandpath(), keep in sync!
9727 */
9728 int
9729unix_expandpath(gap, path, wildoff, flags, didstar)
9730 garray_T *gap;
9731 char_u *path;
9732 int wildoff;
9733 int flags; /* EW_* flags */
9734 int didstar; /* expanded "**" once already */
9735{
9736 char_u *buf;
9737 char_u *path_end;
9738 char_u *p, *s, *e;
9739 int start_len = gap->ga_len;
9740 char_u *pat;
9741 regmatch_T regmatch;
9742 int starts_with_dot;
9743 int matches;
9744 int len;
9745 int starstar = FALSE;
9746 static int stardepth = 0; /* depth for "**" expansion */
9747
9748 DIR *dirp;
9749 struct dirent *dp;
9750
9751 /* Expanding "**" may take a long time, check for CTRL-C. */
9752 if (stardepth > 0)
9753 {
9754 ui_breakcheck();
9755 if (got_int)
9756 return 0;
9757 }
9758
9759 /* make room for file name */
9760 buf = alloc((int)STRLEN(path) + BASENAMELEN + 5);
9761 if (buf == NULL)
9762 return 0;
9763
9764 /*
9765 * Find the first part in the path name that contains a wildcard.
Bram Moolenaar2d0b92f2012-04-30 21:09:43 +02009766 * When EW_ICASE is set every letter is considered to be a wildcard.
Bram Moolenaar231334e2005-07-25 20:46:57 +00009767 * Copy it into "buf", including the preceding characters.
9768 */
9769 p = buf;
9770 s = buf;
9771 e = NULL;
9772 path_end = path;
9773 while (*path_end != NUL)
9774 {
9775 /* May ignore a wildcard that has a backslash before it; it will
9776 * be removed by rem_backslash() or file_pat_to_reg_pat() below. */
9777 if (path_end >= path + wildoff && rem_backslash(path_end))
9778 *p++ = *path_end++;
9779 else if (*path_end == '/')
9780 {
9781 if (e != NULL)
9782 break;
9783 s = p + 1;
9784 }
9785 else if (path_end >= path + wildoff
Bram Moolenaar2d0b92f2012-04-30 21:09:43 +02009786 && (vim_strchr((char_u *)"*?[{~$", *path_end) != NULL
9787#ifndef CASE_INSENSITIVE_FILENAME
9788 || ((flags & EW_ICASE)
9789 && isalpha(PTR2CHAR(path_end)))
9790#endif
9791 ))
Bram Moolenaar231334e2005-07-25 20:46:57 +00009792 e = p;
9793#ifdef FEAT_MBYTE
9794 if (has_mbyte)
9795 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009796 len = (*mb_ptr2len)(path_end);
Bram Moolenaar231334e2005-07-25 20:46:57 +00009797 STRNCPY(p, path_end, len);
9798 p += len;
9799 path_end += len;
9800 }
9801 else
9802#endif
9803 *p++ = *path_end++;
9804 }
9805 e = p;
9806 *e = NUL;
9807
Bram Moolenaar0b573a52011-07-27 17:31:47 +02009808 /* Now we have one wildcard component between "s" and "e". */
Bram Moolenaar231334e2005-07-25 20:46:57 +00009809 /* Remove backslashes between "wildoff" and the start of the wildcard
9810 * component. */
9811 for (p = buf + wildoff; p < s; ++p)
9812 if (rem_backslash(p))
9813 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009814 STRMOVE(p, p + 1);
Bram Moolenaar231334e2005-07-25 20:46:57 +00009815 --e;
9816 --s;
9817 }
9818
9819 /* Check for "**" between "s" and "e". */
9820 for (p = s; p < e; ++p)
9821 if (p[0] == '*' && p[1] == '*')
9822 starstar = TRUE;
9823
9824 /* convert the file pattern to a regexp pattern */
9825 starts_with_dot = (*s == '.');
9826 pat = file_pat_to_reg_pat(s, e, NULL, FALSE);
9827 if (pat == NULL)
9828 {
9829 vim_free(buf);
9830 return 0;
9831 }
9832
9833 /* compile the regexp into a program */
Bram Moolenaarcc016f52005-12-10 20:23:46 +00009834#ifdef CASE_INSENSITIVE_FILENAME
Bram Moolenaar231334e2005-07-25 20:46:57 +00009835 regmatch.rm_ic = TRUE; /* Behave like Terminal.app */
9836#else
Bram Moolenaar94950a92010-12-02 16:01:29 +01009837 if (flags & EW_ICASE)
9838 regmatch.rm_ic = TRUE; /* 'wildignorecase' set */
9839 else
9840 regmatch.rm_ic = FALSE; /* Don't ignore case */
Bram Moolenaar231334e2005-07-25 20:46:57 +00009841#endif
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009842 if (flags & (EW_NOERROR | EW_NOTWILD))
9843 ++emsg_silent;
Bram Moolenaar231334e2005-07-25 20:46:57 +00009844 regmatch.regprog = vim_regcomp(pat, RE_MAGIC);
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009845 if (flags & (EW_NOERROR | EW_NOTWILD))
9846 --emsg_silent;
Bram Moolenaar231334e2005-07-25 20:46:57 +00009847 vim_free(pat);
9848
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009849 if (regmatch.regprog == NULL && (flags & EW_NOTWILD) == 0)
Bram Moolenaar231334e2005-07-25 20:46:57 +00009850 {
9851 vim_free(buf);
9852 return 0;
9853 }
9854
9855 /* If "**" is by itself, this is the first time we encounter it and more
9856 * is following then find matches without any directory. */
9857 if (!didstar && stardepth < 100 && starstar && e - s == 2
9858 && *path_end == '/')
9859 {
9860 STRCPY(s, path_end + 1);
9861 ++stardepth;
9862 (void)unix_expandpath(gap, buf, (int)(s - buf), flags, TRUE);
9863 --stardepth;
9864 }
9865
9866 /* open the directory for scanning */
9867 *s = NUL;
9868 dirp = opendir(*buf == NUL ? "." : (char *)buf);
9869
9870 /* Find all matching entries */
9871 if (dirp != NULL)
9872 {
9873 for (;;)
9874 {
9875 dp = readdir(dirp);
9876 if (dp == NULL)
9877 break;
9878 if ((dp->d_name[0] != '.' || starts_with_dot)
Bram Moolenaar1f5965b2012-01-10 18:37:58 +01009879 && ((regmatch.regprog != NULL && vim_regexec(&regmatch,
9880 (char_u *)dp->d_name, (colnr_T)0))
Bram Moolenaar0b573a52011-07-27 17:31:47 +02009881 || ((flags & EW_NOTWILD)
9882 && fnamencmp(path + (s - buf), dp->d_name, e - s) == 0)))
Bram Moolenaar231334e2005-07-25 20:46:57 +00009883 {
9884 STRCPY(s, dp->d_name);
9885 len = STRLEN(buf);
9886
9887 if (starstar && stardepth < 100)
9888 {
9889 /* For "**" in the pattern first go deeper in the tree to
9890 * find matches. */
9891 STRCPY(buf + len, "/**");
9892 STRCPY(buf + len + 3, path_end);
9893 ++stardepth;
9894 (void)unix_expandpath(gap, buf, len + 1, flags, TRUE);
9895 --stardepth;
9896 }
9897
9898 STRCPY(buf + len, path_end);
9899 if (mch_has_exp_wildcard(path_end)) /* handle more wildcards */
9900 {
9901 /* need to expand another component of the path */
9902 /* remove backslashes for the remaining components only */
9903 (void)unix_expandpath(gap, buf, len + 1, flags, FALSE);
9904 }
9905 else
9906 {
9907 /* no more wildcards, check if there is a match */
9908 /* remove backslashes for the remaining components only */
9909 if (*path_end != NUL)
9910 backslash_halve(buf + len + 1);
9911 if (mch_getperm(buf) >= 0) /* add existing file */
9912 {
Bram Moolenaar95e9b492006-03-15 23:04:43 +00009913#ifdef MACOS_CONVERT
Bram Moolenaar231334e2005-07-25 20:46:57 +00009914 size_t precomp_len = STRLEN(buf)+1;
9915 char_u *precomp_buf =
9916 mac_precompose_path(buf, precomp_len, &precomp_len);
Bram Moolenaar95e9b492006-03-15 23:04:43 +00009917
Bram Moolenaar231334e2005-07-25 20:46:57 +00009918 if (precomp_buf)
9919 {
9920 mch_memmove(buf, precomp_buf, precomp_len);
9921 vim_free(precomp_buf);
9922 }
9923#endif
9924 addfile(gap, buf, flags);
9925 }
9926 }
9927 }
9928 }
9929
9930 closedir(dirp);
9931 }
9932
9933 vim_free(buf);
9934 vim_free(regmatch.regprog);
9935
9936 matches = gap->ga_len - start_len;
9937 if (matches > 0)
9938 qsort(((char_u **)gap->ga_data) + start_len, matches,
9939 sizeof(char_u *), pstrcmp);
9940 return matches;
9941}
9942#endif
9943
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009944#if defined(FEAT_SEARCHPATH)
9945static int find_previous_pathsep __ARGS((char_u *path, char_u **psep));
9946static int is_unique __ARGS((char_u *maybe_unique, garray_T *gap, int i));
Bram Moolenaar162bd912010-07-28 22:29:10 +02009947static void expand_path_option __ARGS((char_u *curdir, garray_T *gap));
9948static char_u *get_path_cutoff __ARGS((char_u *fname, garray_T *gap));
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009949static void uniquefy_paths __ARGS((garray_T *gap, char_u *pattern));
9950static int expand_in_path __ARGS((garray_T *gap, char_u *pattern, int flags));
9951
9952/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009953 * Moves "*psep" back to the previous path separator in "path".
9954 * Returns FAIL is "*psep" ends up at the beginning of "path".
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009955 */
9956 static int
9957find_previous_pathsep(path, psep)
9958 char_u *path;
9959 char_u **psep;
9960{
9961 /* skip the current separator */
9962 if (*psep > path && vim_ispathsep(**psep))
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009963 --*psep;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009964
9965 /* find the previous separator */
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009966 while (*psep > path)
9967 {
9968 if (vim_ispathsep(**psep))
9969 return OK;
9970 mb_ptr_back(path, *psep);
9971 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009972
9973 return FAIL;
9974}
9975
9976/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009977 * Returns TRUE if "maybe_unique" is unique wrt other_paths in "gap".
9978 * "maybe_unique" is the end portion of "((char_u **)gap->ga_data)[i]".
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009979 */
9980 static int
9981is_unique(maybe_unique, gap, i)
9982 char_u *maybe_unique;
9983 garray_T *gap;
9984 int i;
9985{
9986 int j;
9987 int candidate_len;
9988 int other_path_len;
Bram Moolenaar162bd912010-07-28 22:29:10 +02009989 char_u **other_paths = (char_u **)gap->ga_data;
Bram Moolenaar0be992e2010-08-12 21:50:51 +02009990 char_u *rival;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009991
Bram Moolenaardc685ab2010-08-13 21:16:49 +02009992 for (j = 0; j < gap->ga_len; j++)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009993 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009994 if (j == i)
Bram Moolenaar162bd912010-07-28 22:29:10 +02009995 continue; /* don't compare it with itself */
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009996
Bram Moolenaar624c7aa2010-07-16 20:38:52 +02009997 candidate_len = (int)STRLEN(maybe_unique);
9998 other_path_len = (int)STRLEN(other_paths[j]);
Bram Moolenaarcc448b32010-07-14 16:52:17 +02009999 if (other_path_len < candidate_len)
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010000 continue; /* it's different when it's shorter */
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010001
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010002 rival = other_paths[j] + other_path_len - candidate_len;
Bram Moolenaarda9836c2010-08-16 21:53:27 +020010003 if (fnamecmp(maybe_unique, rival) == 0
10004 && (rival == other_paths[j] || vim_ispathsep(*(rival - 1))))
Bram Moolenaar162bd912010-07-28 22:29:10 +020010005 return FALSE; /* match */
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010006 }
10007
Bram Moolenaar162bd912010-07-28 22:29:10 +020010008 return TRUE; /* no match found */
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010009}
10010
10011/*
Bram Moolenaar1a509df2010-08-01 17:59:57 +020010012 * Split the 'path' option into an array of strings in garray_T. Relative
Bram Moolenaar162bd912010-07-28 22:29:10 +020010013 * paths are expanded to their equivalent fullpath. This includes the "."
10014 * (relative to current buffer directory) and empty path (relative to current
10015 * directory) notations.
10016 *
10017 * TODO: handle upward search (;) and path limiter (**N) notations by
10018 * expanding each into their equivalent path(s).
10019 */
10020 static void
10021expand_path_option(curdir, gap)
10022 char_u *curdir;
10023 garray_T *gap;
10024{
10025 char_u *path_option = *curbuf->b_p_path == NUL
10026 ? p_path : curbuf->b_p_path;
10027 char_u *buf;
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010028 char_u *p;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010029 int len;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010030
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010031 if ((buf = alloc((int)MAXPATHL)) == NULL)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010032 return;
10033
10034 while (*path_option != NUL)
10035 {
10036 copy_option_part(&path_option, buf, MAXPATHL, " ,");
10037
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010038 if (buf[0] == '.' && (buf[1] == NUL || vim_ispathsep(buf[1])))
Bram Moolenaar162bd912010-07-28 22:29:10 +020010039 {
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010040 /* Relative to current buffer:
10041 * "/path/file" + "." -> "/path/"
10042 * "/path/file" + "./subdir" -> "/path/subdir" */
Bram Moolenaar162bd912010-07-28 22:29:10 +020010043 if (curbuf->b_ffname == NULL)
10044 continue;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010045 p = gettail(curbuf->b_ffname);
10046 len = (int)(p - curbuf->b_ffname);
10047 if (len + (int)STRLEN(buf) >= MAXPATHL)
10048 continue;
10049 if (buf[1] == NUL)
10050 buf[len] = NUL;
10051 else
10052 STRMOVE(buf + len, buf + 2);
10053 mch_memmove(buf, curbuf->b_ffname, len);
10054 simplify_filename(buf);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010055 }
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010056 else if (buf[0] == NUL)
10057 /* relative to current directory */
Bram Moolenaar162bd912010-07-28 22:29:10 +020010058 STRCPY(buf, curdir);
Bram Moolenaar84f888a2010-08-05 21:40:16 +020010059 else if (path_with_url(buf))
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010060 /* URL can't be used here */
Bram Moolenaar84f888a2010-08-05 21:40:16 +020010061 continue;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010062 else if (!mch_isFullName(buf))
10063 {
10064 /* Expand relative path to their full path equivalent */
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010065 len = (int)STRLEN(curdir);
10066 if (len + (int)STRLEN(buf) + 3 > MAXPATHL)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010067 continue;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010068 STRMOVE(buf + len + 1, buf);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010069 STRCPY(buf, curdir);
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010070 buf[len] = PATHSEP;
Bram Moolenaar57adda12010-08-03 22:11:29 +020010071 simplify_filename(buf);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010072 }
10073
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010074 if (ga_grow(gap, 1) == FAIL)
10075 break;
10076 p = vim_strsave(buf);
10077 if (p == NULL)
10078 break;
10079 ((char_u **)gap->ga_data)[gap->ga_len++] = p;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010080 }
10081
10082 vim_free(buf);
10083}
10084
10085/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010086 * Returns a pointer to the file or directory name in "fname" that matches the
10087 * longest path in "ga"p, or NULL if there is no match. For example:
Bram Moolenaar162bd912010-07-28 22:29:10 +020010088 *
10089 * path: /foo/bar/baz
10090 * fname: /foo/bar/baz/quux.txt
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010091 * returns: ^this
Bram Moolenaar162bd912010-07-28 22:29:10 +020010092 */
10093 static char_u *
10094get_path_cutoff(fname, gap)
10095 char_u *fname;
10096 garray_T *gap;
10097{
10098 int i;
10099 int maxlen = 0;
10100 char_u **path_part = (char_u **)gap->ga_data;
10101 char_u *cutoff = NULL;
10102
10103 for (i = 0; i < gap->ga_len; i++)
10104 {
10105 int j = 0;
10106
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010107 while ((fname[j] == path_part[i][j]
Bram Moolenaar2d7c47d2010-08-10 19:50:26 +020010108# if defined(MSWIN) || defined(MSDOS)
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010109 || (vim_ispathsep(fname[j]) && vim_ispathsep(path_part[i][j]))
10110#endif
10111 ) && fname[j] != NUL && path_part[i][j] != NUL)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010112 j++;
10113 if (j > maxlen)
10114 {
10115 maxlen = j;
10116 cutoff = &fname[j];
10117 }
10118 }
10119
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010120 /* skip to the file or directory name */
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010121 if (cutoff != NULL)
Bram Moolenaar31710262010-08-13 13:36:15 +020010122 while (vim_ispathsep(*cutoff))
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010123 mb_ptr_adv(cutoff);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010124
10125 return cutoff;
10126}
10127
10128/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010129 * Sorts, removes duplicates and modifies all the fullpath names in "gap" so
10130 * that they are unique with respect to each other while conserving the part
10131 * that matches the pattern. Beware, this is at least O(n^2) wrt "gap->ga_len".
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010132 */
10133 static void
10134uniquefy_paths(gap, pattern)
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +020010135 garray_T *gap;
10136 char_u *pattern;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010137{
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +020010138 int i;
10139 int len;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010140 char_u **fnames = (char_u **)gap->ga_data;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010141 int sort_again = FALSE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010142 char_u *pat;
10143 char_u *file_pattern;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010144 char_u *curdir;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010145 regmatch_T regmatch;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010146 garray_T path_ga;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010147 char_u **in_curdir = NULL;
10148 char_u *short_name;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010149
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +020010150 remove_duplicates(gap);
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010151 ga_init2(&path_ga, (int)sizeof(char_u *), 1);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010152
10153 /*
10154 * We need to prepend a '*' at the beginning of file_pattern so that the
10155 * regex matches anywhere in the path. FIXME: is this valid for all
Bram Moolenaarb31e4382010-07-24 16:01:56 +020010156 * possible patterns?
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010157 */
Bram Moolenaar624c7aa2010-07-16 20:38:52 +020010158 len = (int)STRLEN(pattern);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010159 file_pattern = alloc(len + 2);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010160 if (file_pattern == NULL)
10161 return;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010162 file_pattern[0] = '*';
Bram Moolenaar162bd912010-07-28 22:29:10 +020010163 file_pattern[1] = NUL;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010164 STRCAT(file_pattern, pattern);
10165 pat = file_pat_to_reg_pat(file_pattern, NULL, NULL, TRUE);
10166 vim_free(file_pattern);
Bram Moolenaarb31e4382010-07-24 16:01:56 +020010167 if (pat == NULL)
10168 return;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010169
Bram Moolenaarb31e4382010-07-24 16:01:56 +020010170 regmatch.rm_ic = TRUE; /* always ignore case */
10171 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
10172 vim_free(pat);
10173 if (regmatch.regprog == NULL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010174 return;
10175
Bram Moolenaar162bd912010-07-28 22:29:10 +020010176 if ((curdir = alloc((int)(MAXPATHL))) == NULL)
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010177 goto theend;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010178 mch_dirname(curdir, MAXPATHL);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010179 expand_path_option(curdir, &path_ga);
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010180
10181 in_curdir = (char_u **)alloc_clear(gap->ga_len * sizeof(char_u *));
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010182 if (in_curdir == NULL)
10183 goto theend;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010184
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010185 for (i = 0; i < gap->ga_len && !got_int; i++)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010186 {
Bram Moolenaar162bd912010-07-28 22:29:10 +020010187 char_u *path = fnames[i];
10188 int is_in_curdir;
Bram Moolenaar31710262010-08-13 13:36:15 +020010189 char_u *dir_end = gettail_dir(path);
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010190 char_u *pathsep_p;
10191 char_u *path_cutoff;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010192
Bram Moolenaar624c7aa2010-07-16 20:38:52 +020010193 len = (int)STRLEN(path);
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010194 is_in_curdir = fnamencmp(curdir, path, dir_end - path) == 0
Bram Moolenaar162bd912010-07-28 22:29:10 +020010195 && curdir[dir_end - path] == NUL;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010196 if (is_in_curdir)
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010197 in_curdir[i] = vim_strsave(path);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010198
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010199 /* Shorten the filename while maintaining its uniqueness */
10200 path_cutoff = get_path_cutoff(path, &path_ga);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010201
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010202 /* we start at the end of the path */
10203 pathsep_p = path + len - 1;
10204
10205 while (find_previous_pathsep(path, &pathsep_p))
10206 if (vim_regexec(&regmatch, pathsep_p + 1, (colnr_T)0)
10207 && is_unique(pathsep_p + 1, gap, i)
10208 && path_cutoff != NULL && pathsep_p + 1 >= path_cutoff)
10209 {
10210 sort_again = TRUE;
10211 mch_memmove(path, pathsep_p + 1, STRLEN(pathsep_p));
10212 break;
10213 }
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010214
10215 if (mch_isFullName(path))
10216 {
10217 /*
10218 * Last resort: shorten relative to curdir if possible.
10219 * 'possible' means:
10220 * 1. It is under the current directory.
10221 * 2. The result is actually shorter than the original.
10222 *
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010223 * Before curdir After
10224 * /foo/bar/file.txt /foo/bar ./file.txt
10225 * c:\foo\bar\file.txt c:\foo\bar .\file.txt
10226 * /file.txt / /file.txt
10227 * c:\file.txt c:\ .\file.txt
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010228 */
10229 short_name = shorten_fname(path, curdir);
Bram Moolenaar31710262010-08-13 13:36:15 +020010230 if (short_name != NULL && short_name > path + 1
10231#if defined(MSWIN) || defined(MSDOS)
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010232 /* On windows,
Bram Moolenaar31710262010-08-13 13:36:15 +020010233 * shorten_fname("c:\a\a.txt", "c:\a\b")
Bram Moolenaar31710262010-08-13 13:36:15 +020010234 * returns "\a\a.txt", which is not really the short
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010235 * name, hence: */
Bram Moolenaar31710262010-08-13 13:36:15 +020010236 && !vim_ispathsep(*short_name)
10237#endif
10238 )
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010239 {
10240 STRCPY(path, ".");
10241 add_pathsep(path);
Bram Moolenaarcda000e2010-08-14 13:34:39 +020010242 STRMOVE(path + STRLEN(path), short_name);
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010243 }
10244 }
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010245 ui_breakcheck();
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010246 }
10247
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010248 /* Shorten filenames in /in/current/directory/{filename} */
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010249 for (i = 0; i < gap->ga_len && !got_int; i++)
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010250 {
10251 char_u *rel_path;
10252 char_u *path = in_curdir[i];
10253
10254 if (path == NULL)
10255 continue;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010256
10257 /* If the {filename} is not unique, change it to ./{filename}.
10258 * Else reduce it to {filename} */
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010259 short_name = shorten_fname(path, curdir);
10260 if (short_name == NULL)
10261 short_name = path;
10262 if (is_unique(short_name, gap, i))
10263 {
10264 STRCPY(fnames[i], short_name);
10265 continue;
10266 }
10267
10268 rel_path = alloc((int)(STRLEN(short_name) + STRLEN(PATHSEPSTR) + 2));
10269 if (rel_path == NULL)
10270 goto theend;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010271 STRCPY(rel_path, ".");
10272 add_pathsep(rel_path);
10273 STRCAT(rel_path, short_name);
10274
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010275 vim_free(fnames[i]);
10276 fnames[i] = rel_path;
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010277 sort_again = TRUE;
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010278 ui_breakcheck();
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010279 }
10280
Bram Moolenaar162bd912010-07-28 22:29:10 +020010281theend:
10282 vim_free(curdir);
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010283 if (in_curdir != NULL)
10284 {
10285 for (i = 0; i < gap->ga_len; i++)
10286 vim_free(in_curdir[i]);
10287 vim_free(in_curdir);
10288 }
Bram Moolenaar162bd912010-07-28 22:29:10 +020010289 ga_clear_strings(&path_ga);
Bram Moolenaarb31e4382010-07-24 16:01:56 +020010290 vim_free(regmatch.regprog);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010291
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010292 if (sort_again)
Bram Moolenaarcb9d45c2010-07-20 18:10:15 +020010293 remove_duplicates(gap);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010294}
10295
10296/*
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010297 * Calls globpath() with 'path' values for the given pattern and stores the
10298 * result in "gap".
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010299 * Returns the total number of matches.
10300 */
10301 static int
10302expand_in_path(gap, pattern, flags)
10303 garray_T *gap;
10304 char_u *pattern;
10305 int flags; /* EW_* flags */
10306{
Bram Moolenaar162bd912010-07-28 22:29:10 +020010307 char_u *curdir;
10308 garray_T path_ga;
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010309 char_u *files = NULL;
10310 char_u *s; /* start */
10311 char_u *e; /* end */
10312 char_u *paths = NULL;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010313
Bram Moolenaar7f0f6212010-08-03 22:21:00 +020010314 if ((curdir = alloc((unsigned)MAXPATHL)) == NULL)
Bram Moolenaar162bd912010-07-28 22:29:10 +020010315 return 0;
10316 mch_dirname(curdir, MAXPATHL);
10317
Bram Moolenaar0be992e2010-08-12 21:50:51 +020010318 ga_init2(&path_ga, (int)sizeof(char_u *), 1);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010319 expand_path_option(curdir, &path_ga);
10320 vim_free(curdir);
Bram Moolenaar006d2b02010-08-04 12:39:44 +020010321 if (path_ga.ga_len == 0)
10322 return 0;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010323
10324 paths = ga_concat_strings(&path_ga);
10325 ga_clear_strings(&path_ga);
10326 if (paths == NULL)
Bram Moolenaar7f0f6212010-08-03 22:21:00 +020010327 return 0;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010328
Bram Moolenaar94950a92010-12-02 16:01:29 +010010329 files = globpath(paths, pattern, (flags & EW_ICASE) ? WILD_ICASE : 0);
Bram Moolenaar162bd912010-07-28 22:29:10 +020010330 vim_free(paths);
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010331 if (files == NULL)
10332 return 0;
10333
10334 /* Copy each path in files into gap */
10335 s = e = files;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010336 while (*s != NUL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010337 {
Bram Moolenaar162bd912010-07-28 22:29:10 +020010338 while (*e != '\n' && *e != NUL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010339 e++;
Bram Moolenaar162bd912010-07-28 22:29:10 +020010340 if (*e == NUL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010341 {
10342 addfile(gap, s, flags);
10343 break;
10344 }
10345 else
10346 {
10347 /* *e is '\n' */
Bram Moolenaar162bd912010-07-28 22:29:10 +020010348 *e = NUL;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010349 addfile(gap, s, flags);
10350 e++;
10351 s = e;
10352 }
10353 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010354 vim_free(files);
10355
Bram Moolenaarbdc975c2010-08-02 21:33:37 +020010356 return gap->ga_len;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010357}
10358#endif
10359
Bram Moolenaar1587a1e2010-07-29 20:59:59 +020010360#if defined(FEAT_SEARCHPATH) || defined(FEAT_CMDL_COMPL) || defined(PROTO)
10361/*
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010362 * Sort "gap" and remove duplicate entries. "gap" is expected to contain a
10363 * list of file names in allocated memory.
Bram Moolenaar1587a1e2010-07-29 20:59:59 +020010364 */
10365 void
10366remove_duplicates(gap)
10367 garray_T *gap;
10368{
10369 int i;
10370 int j;
10371 char_u **fnames = (char_u **)gap->ga_data;
10372
Bram Moolenaardc685ab2010-08-13 21:16:49 +020010373 sort_strings(fnames, gap->ga_len);
Bram Moolenaar1587a1e2010-07-29 20:59:59 +020010374 for (i = gap->ga_len - 1; i > 0; --i)
10375 if (fnamecmp(fnames[i - 1], fnames[i]) == 0)
10376 {
10377 vim_free(fnames[i]);
10378 for (j = i + 1; j < gap->ga_len; ++j)
10379 fnames[j - 1] = fnames[j];
10380 --gap->ga_len;
10381 }
10382}
10383#endif
10384
Bram Moolenaar071d4272004-06-13 20:20:40 +000010385/*
10386 * Generic wildcard expansion code.
10387 *
10388 * Characters in "pat" that should not be expanded must be preceded with a
10389 * backslash. E.g., "/path\ with\ spaces/my\*star*"
10390 *
10391 * Return FAIL when no single file was found. In this case "num_file" is not
10392 * set, and "file" may contain an error message.
10393 * Return OK when some files found. "num_file" is set to the number of
10394 * matches, "file" to the array of matches. Call FreeWild() later.
10395 */
10396 int
10397gen_expand_wildcards(num_pat, pat, num_file, file, flags)
10398 int num_pat; /* number of input patterns */
10399 char_u **pat; /* array of input patterns */
10400 int *num_file; /* resulting number of files */
10401 char_u ***file; /* array of resulting files */
10402 int flags; /* EW_* flags */
10403{
10404 int i;
10405 garray_T ga;
10406 char_u *p;
10407 static int recursive = FALSE;
10408 int add_pat;
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010409#if defined(FEAT_SEARCHPATH)
10410 int did_expand_in_path = FALSE;
10411#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010412
10413 /*
10414 * expand_env() is called to expand things like "~user". If this fails,
10415 * it calls ExpandOne(), which brings us back here. In this case, always
10416 * call the machine specific expansion function, if possible. Otherwise,
10417 * return FAIL.
10418 */
10419 if (recursive)
10420#ifdef SPECIAL_WILDCHAR
10421 return mch_expand_wildcards(num_pat, pat, num_file, file, flags);
10422#else
10423 return FAIL;
10424#endif
10425
10426#ifdef SPECIAL_WILDCHAR
10427 /*
10428 * If there are any special wildcard characters which we cannot handle
10429 * here, call machine specific function for all the expansion. This
10430 * avoids starting the shell for each argument separately.
10431 * For `=expr` do use the internal function.
10432 */
10433 for (i = 0; i < num_pat; i++)
10434 {
10435 if (vim_strpbrk(pat[i], (char_u *)SPECIAL_WILDCHAR) != NULL
10436# ifdef VIM_BACKTICK
10437 && !(vim_backtick(pat[i]) && pat[i][1] == '=')
10438# endif
10439 )
10440 return mch_expand_wildcards(num_pat, pat, num_file, file, flags);
10441 }
10442#endif
10443
10444 recursive = TRUE;
10445
10446 /*
10447 * The matching file names are stored in a growarray. Init it empty.
10448 */
10449 ga_init2(&ga, (int)sizeof(char_u *), 30);
10450
10451 for (i = 0; i < num_pat; ++i)
10452 {
10453 add_pat = -1;
10454 p = pat[i];
10455
10456#ifdef VIM_BACKTICK
10457 if (vim_backtick(p))
10458 add_pat = expand_backtick(&ga, p, flags);
10459 else
10460#endif
10461 {
10462 /*
10463 * First expand environment variables, "~/" and "~user/".
10464 */
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010465 if (vim_strchr(p, '$') != NULL || *p == '~')
Bram Moolenaar071d4272004-06-13 20:20:40 +000010466 {
Bram Moolenaar9f0545d2007-09-26 20:36:32 +000010467 p = expand_env_save_opt(p, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010468 if (p == NULL)
10469 p = pat[i];
10470#ifdef UNIX
10471 /*
10472 * On Unix, if expand_env() can't expand an environment
10473 * variable, use the shell to do that. Discard previously
10474 * found file names and start all over again.
10475 */
Bram Moolenaar9bc040c2010-08-11 22:05:57 +020010476 else if (vim_strchr(p, '$') != NULL || *p == '~')
Bram Moolenaar071d4272004-06-13 20:20:40 +000010477 {
10478 vim_free(p);
Bram Moolenaar782027e2009-06-24 14:25:49 +000010479 ga_clear_strings(&ga);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010480 i = mch_expand_wildcards(num_pat, pat, num_file, file,
10481 flags);
10482 recursive = FALSE;
10483 return i;
10484 }
10485#endif
10486 }
10487
10488 /*
10489 * If there are wildcards: Expand file names and add each match to
10490 * the list. If there is no match, and EW_NOTFOUND is given, add
10491 * the pattern.
10492 * If there are no wildcards: Add the file name if it exists or
10493 * when EW_NOTFOUND is given.
10494 */
10495 if (mch_has_exp_wildcard(p))
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010496 {
10497#if defined(FEAT_SEARCHPATH)
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010498 if ((flags & EW_PATH)
10499 && !mch_isFullName(p)
10500 && !(p[0] == '.'
10501 && (vim_ispathsep(p[1])
10502 || (p[1] == '.' && vim_ispathsep(p[2]))))
10503 )
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010504 {
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010505 /* :find completion where 'path' is used.
10506 * Recursiveness is OK here. */
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010507 recursive = FALSE;
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010508 add_pat = expand_in_path(&ga, p, flags);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010509 recursive = TRUE;
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010510 did_expand_in_path = TRUE;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +020010511 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +020010512 else
10513#endif
10514 add_pat = mch_expandpath(&ga, p, flags);
10515 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010516 }
10517
10518 if (add_pat == -1 || (add_pat == 0 && (flags & EW_NOTFOUND)))
10519 {
10520 char_u *t = backslash_halve_save(p);
10521
10522#if defined(MACOS_CLASSIC)
10523 slash_to_colon(t);
10524#endif
10525 /* When EW_NOTFOUND is used, always add files and dirs. Makes
10526 * "vim c:/" work. */
10527 if (flags & EW_NOTFOUND)
10528 addfile(&ga, t, flags | EW_DIR | EW_FILE);
10529 else if (mch_getperm(t) >= 0)
10530 addfile(&ga, t, flags);
10531 vim_free(t);
10532 }
10533
Bram Moolenaarb28ebbc2010-07-14 16:59:57 +020010534#if defined(FEAT_SEARCHPATH)
Bram Moolenaard732f9a2010-08-15 13:29:11 +020010535 if (did_expand_in_path && ga.ga_len > 0 && (flags & EW_PATH))
Bram Moolenaarb28ebbc2010-07-14 16:59:57 +020010536 uniquefy_paths(&ga, p);
10537#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010538 if (p != pat[i])
10539 vim_free(p);
10540 }
10541
10542 *num_file = ga.ga_len;
10543 *file = (ga.ga_data != NULL) ? (char_u **)ga.ga_data : (char_u **)"";
10544
10545 recursive = FALSE;
10546
10547 return (ga.ga_data != NULL) ? OK : FAIL;
10548}
10549
10550# ifdef VIM_BACKTICK
10551
10552/*
10553 * Return TRUE if we can expand this backtick thing here.
10554 */
10555 static int
10556vim_backtick(p)
10557 char_u *p;
10558{
10559 return (*p == '`' && *(p + 1) != NUL && *(p + STRLEN(p) - 1) == '`');
10560}
10561
10562/*
10563 * Expand an item in `backticks` by executing it as a command.
10564 * Currently only works when pat[] starts and ends with a `.
10565 * Returns number of file names found.
10566 */
10567 static int
10568expand_backtick(gap, pat, flags)
10569 garray_T *gap;
10570 char_u *pat;
10571 int flags; /* EW_* flags */
10572{
10573 char_u *p;
10574 char_u *cmd;
10575 char_u *buffer;
10576 int cnt = 0;
10577 int i;
10578
10579 /* Create the command: lop off the backticks. */
10580 cmd = vim_strnsave(pat + 1, (int)STRLEN(pat) - 2);
10581 if (cmd == NULL)
10582 return 0;
10583
10584#ifdef FEAT_EVAL
10585 if (*cmd == '=') /* `={expr}`: Expand expression */
Bram Moolenaar362e1a32006-03-06 23:29:24 +000010586 buffer = eval_to_string(cmd + 1, &p, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010587 else
10588#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +000010589 buffer = get_cmd_output(cmd, NULL,
10590 (flags & EW_SILENT) ? SHELL_SILENT : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010591 vim_free(cmd);
10592 if (buffer == NULL)
10593 return 0;
10594
10595 cmd = buffer;
10596 while (*cmd != NUL)
10597 {
10598 cmd = skipwhite(cmd); /* skip over white space */
10599 p = cmd;
10600 while (*p != NUL && *p != '\r' && *p != '\n') /* skip over entry */
10601 ++p;
10602 /* add an entry if it is not empty */
10603 if (p > cmd)
10604 {
10605 i = *p;
10606 *p = NUL;
10607 addfile(gap, cmd, flags);
10608 *p = i;
10609 ++cnt;
10610 }
10611 cmd = p;
10612 while (*cmd != NUL && (*cmd == '\r' || *cmd == '\n'))
10613 ++cmd;
10614 }
10615
10616 vim_free(buffer);
10617 return cnt;
10618}
10619# endif /* VIM_BACKTICK */
10620
10621/*
10622 * Add a file to a file list. Accepted flags:
10623 * EW_DIR add directories
10624 * EW_FILE add files
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000010625 * EW_EXEC add executable files
Bram Moolenaar071d4272004-06-13 20:20:40 +000010626 * EW_NOTFOUND add even when it doesn't exist
10627 * EW_ADDSLASH add slash after directory name
10628 */
10629 void
10630addfile(gap, f, flags)
10631 garray_T *gap;
10632 char_u *f; /* filename */
10633 int flags;
10634{
10635 char_u *p;
10636 int isdir;
10637
10638 /* if the file/dir doesn't exist, may not add it */
10639 if (!(flags & EW_NOTFOUND) && mch_getperm(f) < 0)
10640 return;
10641
10642#ifdef FNAME_ILLEGAL
10643 /* if the file/dir contains illegal characters, don't add it */
10644 if (vim_strpbrk(f, (char_u *)FNAME_ILLEGAL) != NULL)
10645 return;
10646#endif
10647
10648 isdir = mch_isdir(f);
10649 if ((isdir && !(flags & EW_DIR)) || (!isdir && !(flags & EW_FILE)))
10650 return;
10651
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000010652 /* If the file isn't executable, may not add it. Do accept directories. */
10653 if (!isdir && (flags & EW_EXEC) && !mch_can_exe(f))
10654 return;
10655
Bram Moolenaar071d4272004-06-13 20:20:40 +000010656 /* Make room for another item in the file list. */
10657 if (ga_grow(gap, 1) == FAIL)
10658 return;
10659
10660 p = alloc((unsigned)(STRLEN(f) + 1 + isdir));
10661 if (p == NULL)
10662 return;
10663
10664 STRCPY(p, f);
10665#ifdef BACKSLASH_IN_FILENAME
10666 slash_adjust(p);
10667#endif
10668 /*
10669 * Append a slash or backslash after directory names if none is present.
10670 */
10671#ifndef DONT_ADD_PATHSEP_TO_DIR
10672 if (isdir && (flags & EW_ADDSLASH))
10673 add_pathsep(p);
10674#endif
10675 ((char_u **)gap->ga_data)[gap->ga_len++] = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010676}
10677#endif /* !NO_EXPANDPATH */
10678
10679#if defined(VIM_BACKTICK) || defined(FEAT_EVAL) || defined(PROTO)
10680
10681#ifndef SEEK_SET
10682# define SEEK_SET 0
10683#endif
10684#ifndef SEEK_END
10685# define SEEK_END 2
10686#endif
10687
10688/*
10689 * Get the stdout of an external command.
10690 * Returns an allocated string, or NULL for error.
10691 */
10692 char_u *
Bram Moolenaarc0197e22004-09-13 20:26:32 +000010693get_cmd_output(cmd, infile, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010694 char_u *cmd;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000010695 char_u *infile; /* optional input file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010696 int flags; /* can be SHELL_SILENT */
10697{
10698 char_u *tempname;
10699 char_u *command;
10700 char_u *buffer = NULL;
10701 int len;
10702 int i = 0;
10703 FILE *fd;
10704
10705 if (check_restricted() || check_secure())
10706 return NULL;
10707
10708 /* get a name for the temp file */
10709 if ((tempname = vim_tempname('o')) == NULL)
10710 {
10711 EMSG(_(e_notmp));
10712 return NULL;
10713 }
10714
10715 /* Add the redirection stuff */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000010716 command = make_filter_cmd(cmd, infile, tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010717 if (command == NULL)
10718 goto done;
10719
10720 /*
10721 * Call the shell to execute the command (errors are ignored).
10722 * Don't check timestamps here.
10723 */
10724 ++no_check_timestamps;
10725 call_shell(command, SHELL_DOOUT | SHELL_EXPAND | flags);
10726 --no_check_timestamps;
10727
10728 vim_free(command);
10729
10730 /*
10731 * read the names from the file into memory
10732 */
10733# ifdef VMS
Bram Moolenaar25394022007-05-10 19:06:20 +000010734 /* created temporary file is not always readable as binary */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010735 fd = mch_fopen((char *)tempname, "r");
10736# else
10737 fd = mch_fopen((char *)tempname, READBIN);
10738# endif
10739
10740 if (fd == NULL)
10741 {
10742 EMSG2(_(e_notopen), tempname);
10743 goto done;
10744 }
10745
10746 fseek(fd, 0L, SEEK_END);
10747 len = ftell(fd); /* get size of temp file */
10748 fseek(fd, 0L, SEEK_SET);
10749
10750 buffer = alloc(len + 1);
10751 if (buffer != NULL)
10752 i = (int)fread((char *)buffer, (size_t)1, (size_t)len, fd);
10753 fclose(fd);
10754 mch_remove(tempname);
10755 if (buffer == NULL)
10756 goto done;
10757#ifdef VMS
10758 len = i; /* VMS doesn't give us what we asked for... */
10759#endif
10760 if (i != len)
10761 {
10762 EMSG2(_(e_notread), tempname);
10763 vim_free(buffer);
10764 buffer = NULL;
10765 }
10766 else
Bram Moolenaar162bd912010-07-28 22:29:10 +020010767 buffer[len] = NUL; /* make sure the buffer is terminated */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010768
10769done:
10770 vim_free(tempname);
10771 return buffer;
10772}
10773#endif
10774
10775/*
10776 * Free the list of files returned by expand_wildcards() or other expansion
10777 * functions.
10778 */
10779 void
10780FreeWild(count, files)
10781 int count;
10782 char_u **files;
10783{
Bram Moolenaarfc1421e2006-04-20 22:17:20 +000010784 if (count <= 0 || files == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010785 return;
10786#if defined(__EMX__) && defined(__ALWAYS_HAS_TRAILING_NULL_POINTER) /* XXX */
10787 /*
10788 * Is this still OK for when other functions than expand_wildcards() have
10789 * been used???
10790 */
10791 _fnexplodefree((char **)files);
10792#else
10793 while (count--)
10794 vim_free(files[count]);
10795 vim_free(files);
10796#endif
10797}
10798
10799/*
Bram Moolenaara9dc3752010-07-11 20:46:53 +020010800 * Return TRUE when need to go to Insert mode because of 'insertmode'.
Bram Moolenaar071d4272004-06-13 20:20:40 +000010801 * Don't do this when still processing a command or a mapping.
10802 * Don't do this when inside a ":normal" command.
10803 */
10804 int
10805goto_im()
10806{
10807 return (p_im && stuff_empty() && typebuf_typed());
10808}