Merge branch 'vim-with-runtime' into feat/code-check
[vim_extended.git] / src / misc1.c
blob8bddec33e8324bf2299222c4e1df2d2fbb116d2f
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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 */
11 * misc1.c: functions that didn't seem to fit elsewhere
14 #include "vim.h"
15 #include "version.h"
17 static char_u *vim_version_dir __ARGS((char_u *vimdir));
18 static char_u *remove_tail __ARGS((char_u *p, char_u *pend, char_u *name));
19 static int copy_indent __ARGS((int size, char_u *src));
22 * Count the size (in window cells) of the indent in the current line.
24 int
25 get_indent()
27 return get_indent_str(ml_get_curline(), (int)curbuf->b_p_ts);
31 * Count the size (in window cells) of the indent in line "lnum".
33 int
34 get_indent_lnum(lnum)
35 linenr_T lnum;
37 return get_indent_str(ml_get(lnum), (int)curbuf->b_p_ts);
40 #if defined(FEAT_FOLDING) || defined(PROTO)
42 * Count the size (in window cells) of the indent in line "lnum" of buffer
43 * "buf".
45 int
46 get_indent_buf(buf, lnum)
47 buf_T *buf;
48 linenr_T lnum;
50 return get_indent_str(ml_get_buf(buf, lnum, FALSE), (int)buf->b_p_ts);
52 #endif
55 * count the size (in window cells) of the indent in line "ptr", with
56 * 'tabstop' at "ts"
58 int
59 get_indent_str(ptr, ts)
60 char_u *ptr;
61 int ts;
63 int count = 0;
65 for ( ; *ptr; ++ptr)
67 if (*ptr == TAB) /* count a tab for what it is worth */
68 count += ts - (count % ts);
69 else if (*ptr == ' ')
70 ++count; /* count a space for one */
71 else
72 break;
74 return count;
78 * Set the indent of the current line.
79 * Leaves the cursor on the first non-blank in the line.
80 * Caller must take care of undo.
81 * "flags":
82 * SIN_CHANGED: call changed_bytes() if the line was changed.
83 * SIN_INSERT: insert the indent in front of the line.
84 * SIN_UNDO: save line for undo before changing it.
85 * Returns TRUE if the line was changed.
87 int
88 set_indent(size, flags)
89 int size; /* measured in spaces */
90 int flags;
92 char_u *p;
93 char_u *newline;
94 char_u *oldline;
95 char_u *s;
96 int todo;
97 int ind_len; /* measured in characters */
98 int line_len;
99 int doit = FALSE;
100 int ind_done = 0; /* measured in spaces */
101 int tab_pad;
102 int retval = FALSE;
103 int orig_char_len = -1; /* number of initial whitespace chars when
104 'et' and 'pi' are both set */
107 * First check if there is anything to do and compute the number of
108 * characters needed for the indent.
110 todo = size;
111 ind_len = 0;
112 p = oldline = ml_get_curline();
114 /* Calculate the buffer size for the new indent, and check to see if it
115 * isn't already set */
117 /* if 'expandtab' isn't set: use TABs; if both 'expandtab' and
118 * 'preserveindent' are set count the number of characters at the
119 * beginning of the line to be copied */
120 if (!curbuf->b_p_et || (!(flags & SIN_INSERT) && curbuf->b_p_pi))
122 /* If 'preserveindent' is set then reuse as much as possible of
123 * the existing indent structure for the new indent */
124 if (!(flags & SIN_INSERT) && curbuf->b_p_pi)
126 ind_done = 0;
128 /* count as many characters as we can use */
129 while (todo > 0 && vim_iswhite(*p))
131 if (*p == TAB)
133 tab_pad = (int)curbuf->b_p_ts
134 - (ind_done % (int)curbuf->b_p_ts);
135 /* stop if this tab will overshoot the target */
136 if (todo < tab_pad)
137 break;
138 todo -= tab_pad;
139 ++ind_len;
140 ind_done += tab_pad;
142 else
144 --todo;
145 ++ind_len;
146 ++ind_done;
148 ++p;
151 /* Set initial number of whitespace chars to copy if we are
152 * preserving indent but expandtab is set */
153 if (curbuf->b_p_et)
154 orig_char_len = ind_len;
156 /* Fill to next tabstop with a tab, if possible */
157 tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
158 if (todo >= tab_pad && orig_char_len == -1)
160 doit = TRUE;
161 todo -= tab_pad;
162 ++ind_len;
163 /* ind_done += tab_pad; */
167 /* count tabs required for indent */
168 while (todo >= (int)curbuf->b_p_ts)
170 if (*p != TAB)
171 doit = TRUE;
172 else
173 ++p;
174 todo -= (int)curbuf->b_p_ts;
175 ++ind_len;
176 /* ind_done += (int)curbuf->b_p_ts; */
179 /* count spaces required for indent */
180 while (todo > 0)
182 if (*p != ' ')
183 doit = TRUE;
184 else
185 ++p;
186 --todo;
187 ++ind_len;
188 /* ++ind_done; */
191 /* Return if the indent is OK already. */
192 if (!doit && !vim_iswhite(*p) && !(flags & SIN_INSERT))
193 return FALSE;
195 /* Allocate memory for the new line. */
196 if (flags & SIN_INSERT)
197 p = oldline;
198 else
199 p = skipwhite(p);
200 line_len = (int)STRLEN(p) + 1;
202 /* If 'preserveindent' and 'expandtab' are both set keep the original
203 * characters and allocate accordingly. We will fill the rest with spaces
204 * after the if (!curbuf->b_p_et) below. */
205 if (orig_char_len != -1)
207 newline = alloc(orig_char_len + size - ind_done + line_len);
208 if (newline == NULL)
209 return FALSE;
210 todo = size - ind_done;
211 ind_len = orig_char_len + todo; /* Set total length of indent in
212 * characters, which may have been
213 * undercounted until now */
214 p = oldline;
215 s = newline;
216 while (orig_char_len > 0)
218 *s++ = *p++;
219 orig_char_len--;
222 /* Skip over any additional white space (useful when newindent is less
223 * than old) */
224 while (vim_iswhite(*p))
225 ++p;
228 else
230 todo = size;
231 newline = alloc(ind_len + line_len);
232 if (newline == NULL)
233 return FALSE;
234 s = newline;
237 /* Put the characters in the new line. */
238 /* if 'expandtab' isn't set: use TABs */
239 if (!curbuf->b_p_et)
241 /* If 'preserveindent' is set then reuse as much as possible of
242 * the existing indent structure for the new indent */
243 if (!(flags & SIN_INSERT) && curbuf->b_p_pi)
245 p = oldline;
246 ind_done = 0;
248 while (todo > 0 && vim_iswhite(*p))
250 if (*p == TAB)
252 tab_pad = (int)curbuf->b_p_ts
253 - (ind_done % (int)curbuf->b_p_ts);
254 /* stop if this tab will overshoot the target */
255 if (todo < tab_pad)
256 break;
257 todo -= tab_pad;
258 ind_done += tab_pad;
260 else
262 --todo;
263 ++ind_done;
265 *s++ = *p++;
268 /* Fill to next tabstop with a tab, if possible */
269 tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
270 if (todo >= tab_pad)
272 *s++ = TAB;
273 todo -= tab_pad;
276 p = skipwhite(p);
279 while (todo >= (int)curbuf->b_p_ts)
281 *s++ = TAB;
282 todo -= (int)curbuf->b_p_ts;
285 while (todo > 0)
287 *s++ = ' ';
288 --todo;
290 mch_memmove(s, p, (size_t)line_len);
292 /* Replace the line (unless undo fails). */
293 if (!(flags & SIN_UNDO) || u_savesub(curwin->w_cursor.lnum) == OK)
295 ml_replace(curwin->w_cursor.lnum, newline, FALSE);
296 if (flags & SIN_CHANGED)
297 changed_bytes(curwin->w_cursor.lnum, 0);
298 /* Correct saved cursor position if it's after the indent. */
299 if (saved_cursor.lnum == curwin->w_cursor.lnum
300 && saved_cursor.col >= (colnr_T)(p - oldline))
301 saved_cursor.col += ind_len - (colnr_T)(p - oldline);
302 retval = TRUE;
304 else
305 vim_free(newline);
307 curwin->w_cursor.col = ind_len;
308 return retval;
312 * Copy the indent from ptr to the current line (and fill to size)
313 * Leaves the cursor on the first non-blank in the line.
314 * Returns TRUE if the line was changed.
316 static int
317 copy_indent(size, src)
318 int size;
319 char_u *src;
321 char_u *p = NULL;
322 char_u *line = NULL;
323 char_u *s;
324 int todo;
325 int ind_len;
326 int line_len = 0;
327 int tab_pad;
328 int ind_done;
329 int round;
331 /* Round 1: compute the number of characters needed for the indent
332 * Round 2: copy the characters. */
333 for (round = 1; round <= 2; ++round)
335 todo = size;
336 ind_len = 0;
337 ind_done = 0;
338 s = src;
340 /* Count/copy the usable portion of the source line */
341 while (todo > 0 && vim_iswhite(*s))
343 if (*s == TAB)
345 tab_pad = (int)curbuf->b_p_ts
346 - (ind_done % (int)curbuf->b_p_ts);
347 /* Stop if this tab will overshoot the target */
348 if (todo < tab_pad)
349 break;
350 todo -= tab_pad;
351 ind_done += tab_pad;
353 else
355 --todo;
356 ++ind_done;
358 ++ind_len;
359 if (p != NULL)
360 *p++ = *s;
361 ++s;
364 /* Fill to next tabstop with a tab, if possible */
365 tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
366 if (todo >= tab_pad)
368 todo -= tab_pad;
369 ++ind_len;
370 if (p != NULL)
371 *p++ = TAB;
374 /* Add tabs required for indent */
375 while (todo >= (int)curbuf->b_p_ts)
377 todo -= (int)curbuf->b_p_ts;
378 ++ind_len;
379 if (p != NULL)
380 *p++ = TAB;
383 /* Count/add spaces required for indent */
384 while (todo > 0)
386 --todo;
387 ++ind_len;
388 if (p != NULL)
389 *p++ = ' ';
392 if (p == NULL)
394 /* Allocate memory for the result: the copied indent, new indent
395 * and the rest of the line. */
396 line_len = (int)STRLEN(ml_get_curline()) + 1;
397 line = alloc(ind_len + line_len);
398 if (line == NULL)
399 return FALSE;
400 p = line;
404 /* Append the original line */
405 mch_memmove(p, ml_get_curline(), (size_t)line_len);
407 /* Replace the line */
408 ml_replace(curwin->w_cursor.lnum, line, FALSE);
410 /* Put the cursor after the indent. */
411 curwin->w_cursor.col = ind_len;
412 return TRUE;
416 * Return the indent of the current line after a number. Return -1 if no
417 * number was found. Used for 'n' in 'formatoptions': numbered list.
418 * Since a pattern is used it can actually handle more than numbers.
421 get_number_indent(lnum)
422 linenr_T lnum;
424 colnr_T col;
425 pos_T pos;
426 regmmatch_T regmatch;
428 if (lnum > curbuf->b_ml.ml_line_count)
429 return -1;
430 pos.lnum = 0;
431 regmatch.regprog = vim_regcomp(curbuf->b_p_flp, RE_MAGIC);
432 if (regmatch.regprog != NULL)
434 regmatch.rmm_ic = FALSE;
435 regmatch.rmm_maxcol = 0;
436 if (vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
437 (colnr_T)0, NULL))
439 pos.lnum = regmatch.endpos[0].lnum + lnum;
440 pos.col = regmatch.endpos[0].col;
441 #ifdef FEAT_VIRTUALEDIT
442 pos.coladd = 0;
443 #endif
445 vim_free(regmatch.regprog);
448 if (pos.lnum == 0 || *ml_get_pos(&pos) == NUL)
449 return -1;
450 getvcol(curwin, &pos, &col, NULL, NULL);
451 return (int)col;
454 #if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
456 static int cin_is_cinword __ARGS((char_u *line));
459 * Return TRUE if the string "line" starts with a word from 'cinwords'.
461 static int
462 cin_is_cinword(line)
463 char_u *line;
465 char_u *cinw;
466 char_u *cinw_buf;
467 int cinw_len;
468 int retval = FALSE;
469 int len;
471 cinw_len = (int)STRLEN(curbuf->b_p_cinw) + 1;
472 cinw_buf = alloc((unsigned)cinw_len);
473 if (cinw_buf != NULL)
475 line = skipwhite(line);
476 for (cinw = curbuf->b_p_cinw; *cinw; )
478 len = copy_option_part(&cinw, cinw_buf, cinw_len, ",");
479 if (STRNCMP(line, cinw_buf, len) == 0
480 && (!vim_iswordc(line[len]) || !vim_iswordc(line[len - 1])))
482 retval = TRUE;
483 break;
486 vim_free(cinw_buf);
488 return retval;
490 #endif
493 * open_line: Add a new line below or above the current line.
495 * For VREPLACE mode, we only add a new line when we get to the end of the
496 * file, otherwise we just start replacing the next line.
498 * Caller must take care of undo. Since VREPLACE may affect any number of
499 * lines however, it may call u_save_cursor() again when starting to change a
500 * new line.
501 * "flags": OPENLINE_DELSPACES delete spaces after cursor
502 * OPENLINE_DO_COM format comments
503 * OPENLINE_KEEPTRAIL keep trailing spaces
504 * OPENLINE_MARKFIX adjust mark positions after the line break
506 * Return TRUE for success, FALSE for failure
509 open_line(dir, flags, old_indent)
510 int dir; /* FORWARD or BACKWARD */
511 int flags;
512 int old_indent; /* indent for after ^^D in Insert mode */
514 char_u *saved_line; /* copy of the original line */
515 char_u *next_line = NULL; /* copy of the next line */
516 char_u *p_extra = NULL; /* what goes to next line */
517 int less_cols = 0; /* less columns for mark in new line */
518 int less_cols_off = 0; /* columns to skip for mark adjust */
519 pos_T old_cursor; /* old cursor position */
520 int newcol = 0; /* new cursor column */
521 int newindent = 0; /* auto-indent of the new line */
522 int n;
523 int trunc_line = FALSE; /* truncate current line afterwards */
524 int retval = FALSE; /* return value, default is FAIL */
525 #ifdef FEAT_COMMENTS
526 int extra_len = 0; /* length of p_extra string */
527 int lead_len; /* length of comment leader */
528 char_u *lead_flags; /* position in 'comments' for comment leader */
529 char_u *leader = NULL; /* copy of comment leader */
530 #endif
531 char_u *allocated = NULL; /* allocated memory */
532 #if defined(FEAT_SMARTINDENT) || defined(FEAT_VREPLACE) || defined(FEAT_LISP) \
533 || defined(FEAT_CINDENT) || defined(FEAT_COMMENTS)
534 char_u *p;
535 #endif
536 int saved_char = NUL; /* init for GCC */
537 #if defined(FEAT_SMARTINDENT) || defined(FEAT_COMMENTS)
538 pos_T *pos;
539 #endif
540 #ifdef FEAT_SMARTINDENT
541 int do_si = (!p_paste && curbuf->b_p_si
542 # ifdef FEAT_CINDENT
543 && !curbuf->b_p_cin
544 # endif
546 int no_si = FALSE; /* reset did_si afterwards */
547 int first_char = NUL; /* init for GCC */
548 #endif
549 #if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
550 int vreplace_mode;
551 #endif
552 int did_append; /* appended a new line */
553 int saved_pi = curbuf->b_p_pi; /* copy of preserveindent setting */
556 * make a copy of the current line so we can mess with it
558 saved_line = vim_strsave(ml_get_curline());
559 if (saved_line == NULL) /* out of memory! */
560 return FALSE;
562 #ifdef FEAT_VREPLACE
563 if (State & VREPLACE_FLAG)
566 * With VREPLACE we make a copy of the next line, which we will be
567 * starting to replace. First make the new line empty and let vim play
568 * with the indenting and comment leader to its heart's content. Then
569 * we grab what it ended up putting on the new line, put back the
570 * original line, and call ins_char() to put each new character onto
571 * the line, replacing what was there before and pushing the right
572 * stuff onto the replace stack. -- webb.
574 if (curwin->w_cursor.lnum < orig_line_count)
575 next_line = vim_strsave(ml_get(curwin->w_cursor.lnum + 1));
576 else
577 next_line = vim_strsave((char_u *)"");
578 if (next_line == NULL) /* out of memory! */
579 goto theend;
582 * In VREPLACE mode, a NL replaces the rest of the line, and starts
583 * replacing the next line, so push all of the characters left on the
584 * line onto the replace stack. We'll push any other characters that
585 * might be replaced at the start of the next line (due to autoindent
586 * etc) a bit later.
588 replace_push(NUL); /* Call twice because BS over NL expects it */
589 replace_push(NUL);
590 p = saved_line + curwin->w_cursor.col;
591 while (*p != NUL)
593 #ifdef FEAT_MBYTE
594 if (has_mbyte)
595 p += replace_push_mb(p);
596 else
597 #endif
598 replace_push(*p++);
600 saved_line[curwin->w_cursor.col] = NUL;
602 #endif
604 if ((State & INSERT)
605 #ifdef FEAT_VREPLACE
606 && !(State & VREPLACE_FLAG)
607 #endif
610 p_extra = saved_line + curwin->w_cursor.col;
611 #ifdef FEAT_SMARTINDENT
612 if (do_si) /* need first char after new line break */
614 p = skipwhite(p_extra);
615 first_char = *p;
617 #endif
618 #ifdef FEAT_COMMENTS
619 extra_len = (int)STRLEN(p_extra);
620 #endif
621 saved_char = *p_extra;
622 *p_extra = NUL;
625 u_clearline(); /* cannot do "U" command when adding lines */
626 #ifdef FEAT_SMARTINDENT
627 did_si = FALSE;
628 #endif
629 ai_col = 0;
632 * If we just did an auto-indent, then we didn't type anything on
633 * the prior line, and it should be truncated. Do this even if 'ai' is not
634 * set because automatically inserting a comment leader also sets did_ai.
636 if (dir == FORWARD && did_ai)
637 trunc_line = TRUE;
640 * If 'autoindent' and/or 'smartindent' is set, try to figure out what
641 * indent to use for the new line.
643 if (curbuf->b_p_ai
644 #ifdef FEAT_SMARTINDENT
645 || do_si
646 #endif
650 * count white space on current line
652 newindent = get_indent_str(saved_line, (int)curbuf->b_p_ts);
653 if (newindent == 0)
654 newindent = old_indent; /* for ^^D command in insert mode */
656 #ifdef FEAT_SMARTINDENT
658 * Do smart indenting.
659 * In insert/replace mode (only when dir == FORWARD)
660 * we may move some text to the next line. If it starts with '{'
661 * don't add an indent. Fixes inserting a NL before '{' in line
662 * "if (condition) {"
664 if (!trunc_line && do_si && *saved_line != NUL
665 && (p_extra == NULL || first_char != '{'))
667 char_u *ptr;
668 char_u last_char;
670 old_cursor = curwin->w_cursor;
671 ptr = saved_line;
672 # ifdef FEAT_COMMENTS
673 if (flags & OPENLINE_DO_COM)
674 lead_len = get_leader_len(ptr, NULL, FALSE);
675 else
676 lead_len = 0;
677 # endif
678 if (dir == FORWARD)
681 * Skip preprocessor directives, unless they are
682 * recognised as comments.
684 if (
685 # ifdef FEAT_COMMENTS
686 lead_len == 0 &&
687 # endif
688 ptr[0] == '#')
690 while (ptr[0] == '#' && curwin->w_cursor.lnum > 1)
691 ptr = ml_get(--curwin->w_cursor.lnum);
692 newindent = get_indent();
694 # ifdef FEAT_COMMENTS
695 if (flags & OPENLINE_DO_COM)
696 lead_len = get_leader_len(ptr, NULL, FALSE);
697 else
698 lead_len = 0;
699 if (lead_len > 0)
702 * This case gets the following right:
703 * \*
704 * * A comment (read '\' as '/').
705 * *\
706 * #define IN_THE_WAY
707 * This should line up here;
709 p = skipwhite(ptr);
710 if (p[0] == '/' && p[1] == '*')
711 p++;
712 if (p[0] == '*')
714 for (p++; *p; p++)
716 if (p[0] == '/' && p[-1] == '*')
719 * End of C comment, indent should line up
720 * with the line containing the start of
721 * the comment
723 curwin->w_cursor.col = (colnr_T)(p - ptr);
724 if ((pos = findmatch(NULL, NUL)) != NULL)
726 curwin->w_cursor.lnum = pos->lnum;
727 newindent = get_indent();
733 else /* Not a comment line */
734 # endif
736 /* Find last non-blank in line */
737 p = ptr + STRLEN(ptr) - 1;
738 while (p > ptr && vim_iswhite(*p))
739 --p;
740 last_char = *p;
743 * find the character just before the '{' or ';'
745 if (last_char == '{' || last_char == ';')
747 if (p > ptr)
748 --p;
749 while (p > ptr && vim_iswhite(*p))
750 --p;
753 * Try to catch lines that are split over multiple
754 * lines. eg:
755 * if (condition &&
756 * condition) {
757 * Should line up here!
760 if (*p == ')')
762 curwin->w_cursor.col = (colnr_T)(p - ptr);
763 if ((pos = findmatch(NULL, '(')) != NULL)
765 curwin->w_cursor.lnum = pos->lnum;
766 newindent = get_indent();
767 ptr = ml_get_curline();
771 * If last character is '{' do indent, without
772 * checking for "if" and the like.
774 if (last_char == '{')
776 did_si = TRUE; /* do indent */
777 no_si = TRUE; /* don't delete it when '{' typed */
780 * Look for "if" and the like, use 'cinwords'.
781 * Don't do this if the previous line ended in ';' or
782 * '}'.
784 else if (last_char != ';' && last_char != '}'
785 && cin_is_cinword(ptr))
786 did_si = TRUE;
789 else /* dir == BACKWARD */
792 * Skip preprocessor directives, unless they are
793 * recognised as comments.
795 if (
796 # ifdef FEAT_COMMENTS
797 lead_len == 0 &&
798 # endif
799 ptr[0] == '#')
801 int was_backslashed = FALSE;
803 while ((ptr[0] == '#' || was_backslashed) &&
804 curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
806 if (*ptr && ptr[STRLEN(ptr) - 1] == '\\')
807 was_backslashed = TRUE;
808 else
809 was_backslashed = FALSE;
810 ptr = ml_get(++curwin->w_cursor.lnum);
812 if (was_backslashed)
813 newindent = 0; /* Got to end of file */
814 else
815 newindent = get_indent();
817 p = skipwhite(ptr);
818 if (*p == '}') /* if line starts with '}': do indent */
819 did_si = TRUE;
820 else /* can delete indent when '{' typed */
821 can_si_back = TRUE;
823 curwin->w_cursor = old_cursor;
825 if (do_si)
826 can_si = TRUE;
827 #endif /* FEAT_SMARTINDENT */
829 did_ai = TRUE;
832 #ifdef FEAT_COMMENTS
834 * Find out if the current line starts with a comment leader.
835 * This may then be inserted in front of the new line.
837 end_comment_pending = NUL;
838 if (flags & OPENLINE_DO_COM)
839 lead_len = get_leader_len(saved_line, &lead_flags, dir == BACKWARD);
840 else
841 lead_len = 0;
842 if (lead_len > 0)
844 char_u *lead_repl = NULL; /* replaces comment leader */
845 int lead_repl_len = 0; /* length of *lead_repl */
846 char_u lead_middle[COM_MAX_LEN]; /* middle-comment string */
847 char_u lead_end[COM_MAX_LEN]; /* end-comment string */
848 char_u *comment_end = NULL; /* where lead_end has been found */
849 int extra_space = FALSE; /* append extra space */
850 int current_flag;
851 int require_blank = FALSE; /* requires blank after middle */
852 char_u *p2;
855 * If the comment leader has the start, middle or end flag, it may not
856 * be used or may be replaced with the middle leader.
858 for (p = lead_flags; *p && *p != ':'; ++p)
860 if (*p == COM_BLANK)
862 require_blank = TRUE;
863 continue;
865 if (*p == COM_START || *p == COM_MIDDLE)
867 current_flag = *p;
868 if (*p == COM_START)
871 * Doing "O" on a start of comment does not insert leader.
873 if (dir == BACKWARD)
875 lead_len = 0;
876 break;
879 /* find start of middle part */
880 (void)copy_option_part(&p, lead_middle, COM_MAX_LEN, ",");
881 require_blank = FALSE;
885 * Isolate the strings of the middle and end leader.
887 while (*p && p[-1] != ':') /* find end of middle flags */
889 if (*p == COM_BLANK)
890 require_blank = TRUE;
891 ++p;
893 (void)copy_option_part(&p, lead_middle, COM_MAX_LEN, ",");
895 while (*p && p[-1] != ':') /* find end of end flags */
897 /* Check whether we allow automatic ending of comments */
898 if (*p == COM_AUTO_END)
899 end_comment_pending = -1; /* means we want to set it */
900 ++p;
902 n = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
904 if (end_comment_pending == -1) /* we can set it now */
905 end_comment_pending = lead_end[n - 1];
908 * If the end of the comment is in the same line, don't use
909 * the comment leader.
911 if (dir == FORWARD)
913 for (p = saved_line + lead_len; *p; ++p)
914 if (STRNCMP(p, lead_end, n) == 0)
916 comment_end = p;
917 lead_len = 0;
918 break;
923 * Doing "o" on a start of comment inserts the middle leader.
925 if (lead_len > 0)
927 if (current_flag == COM_START)
929 lead_repl = lead_middle;
930 lead_repl_len = (int)STRLEN(lead_middle);
934 * If we have hit RETURN immediately after the start
935 * comment leader, then put a space after the middle
936 * comment leader on the next line.
938 if (!vim_iswhite(saved_line[lead_len - 1])
939 && ((p_extra != NULL
940 && (int)curwin->w_cursor.col == lead_len)
941 || (p_extra == NULL
942 && saved_line[lead_len] == NUL)
943 || require_blank))
944 extra_space = TRUE;
946 break;
948 if (*p == COM_END)
951 * Doing "o" on the end of a comment does not insert leader.
952 * Remember where the end is, might want to use it to find the
953 * start (for C-comments).
955 if (dir == FORWARD)
957 comment_end = skipwhite(saved_line);
958 lead_len = 0;
959 break;
963 * Doing "O" on the end of a comment inserts the middle leader.
964 * Find the string for the middle leader, searching backwards.
966 while (p > curbuf->b_p_com && *p != ',')
967 --p;
968 for (lead_repl = p; lead_repl > curbuf->b_p_com
969 && lead_repl[-1] != ':'; --lead_repl)
971 lead_repl_len = (int)(p - lead_repl);
973 /* We can probably always add an extra space when doing "O" on
974 * the comment-end */
975 extra_space = TRUE;
977 /* Check whether we allow automatic ending of comments */
978 for (p2 = p; *p2 && *p2 != ':'; p2++)
980 if (*p2 == COM_AUTO_END)
981 end_comment_pending = -1; /* means we want to set it */
983 if (end_comment_pending == -1)
985 /* Find last character in end-comment string */
986 while (*p2 && *p2 != ',')
987 p2++;
988 end_comment_pending = p2[-1];
990 break;
992 if (*p == COM_FIRST)
995 * Comment leader for first line only: Don't repeat leader
996 * when using "O", blank out leader when using "o".
998 if (dir == BACKWARD)
999 lead_len = 0;
1000 else
1002 lead_repl = (char_u *)"";
1003 lead_repl_len = 0;
1005 break;
1008 if (lead_len)
1010 /* allocate buffer (may concatenate p_exta later) */
1011 leader = alloc(lead_len + lead_repl_len + extra_space +
1012 extra_len + 1);
1013 allocated = leader; /* remember to free it later */
1015 if (leader == NULL)
1016 lead_len = 0;
1017 else
1019 vim_strncpy(leader, saved_line, lead_len);
1022 * Replace leader with lead_repl, right or left adjusted
1024 if (lead_repl != NULL)
1026 int c = 0;
1027 int off = 0;
1029 for (p = lead_flags; *p != NUL && *p != ':'; )
1031 if (*p == COM_RIGHT || *p == COM_LEFT)
1032 c = *p++;
1033 else if (VIM_ISDIGIT(*p) || *p == '-')
1034 off = getdigits(&p);
1035 else
1036 ++p;
1038 if (c == COM_RIGHT) /* right adjusted leader */
1040 /* find last non-white in the leader to line up with */
1041 for (p = leader + lead_len - 1; p > leader
1042 && vim_iswhite(*p); --p)
1044 ++p;
1046 #ifdef FEAT_MBYTE
1047 /* Compute the length of the replaced characters in
1048 * screen characters, not bytes. */
1050 int repl_size = vim_strnsize(lead_repl,
1051 lead_repl_len);
1052 int old_size = 0;
1053 char_u *endp = p;
1054 int l;
1056 while (old_size < repl_size && p > leader)
1058 mb_ptr_back(leader, p);
1059 old_size += ptr2cells(p);
1061 l = lead_repl_len - (int)(endp - p);
1062 if (l != 0)
1063 mch_memmove(endp + l, endp,
1064 (size_t)((leader + lead_len) - endp));
1065 lead_len += l;
1067 #else
1068 if (p < leader + lead_repl_len)
1069 p = leader;
1070 else
1071 p -= lead_repl_len;
1072 #endif
1073 mch_memmove(p, lead_repl, (size_t)lead_repl_len);
1074 if (p + lead_repl_len > leader + lead_len)
1075 p[lead_repl_len] = NUL;
1077 /* blank-out any other chars from the old leader. */
1078 while (--p >= leader)
1080 #ifdef FEAT_MBYTE
1081 int l = mb_head_off(leader, p);
1083 if (l > 1)
1085 p -= l;
1086 if (ptr2cells(p) > 1)
1088 p[1] = ' ';
1089 --l;
1091 mch_memmove(p + 1, p + l + 1,
1092 (size_t)((leader + lead_len) - (p + l + 1)));
1093 lead_len -= l;
1094 *p = ' ';
1096 else
1097 #endif
1098 if (!vim_iswhite(*p))
1099 *p = ' ';
1102 else /* left adjusted leader */
1104 p = skipwhite(leader);
1105 #ifdef FEAT_MBYTE
1106 /* Compute the length of the replaced characters in
1107 * screen characters, not bytes. Move the part that is
1108 * not to be overwritten. */
1110 int repl_size = vim_strnsize(lead_repl,
1111 lead_repl_len);
1112 int i;
1113 int l;
1115 for (i = 0; p[i] != NUL && i < lead_len; i += l)
1117 l = (*mb_ptr2len)(p + i);
1118 if (vim_strnsize(p, i + l) > repl_size)
1119 break;
1121 if (i != lead_repl_len)
1123 mch_memmove(p + lead_repl_len, p + i,
1124 (size_t)(lead_len - i - (p - leader)));
1125 lead_len += lead_repl_len - i;
1128 #endif
1129 mch_memmove(p, lead_repl, (size_t)lead_repl_len);
1131 /* Replace any remaining non-white chars in the old
1132 * leader by spaces. Keep Tabs, the indent must
1133 * remain the same. */
1134 for (p += lead_repl_len; p < leader + lead_len; ++p)
1135 if (!vim_iswhite(*p))
1137 /* Don't put a space before a TAB. */
1138 if (p + 1 < leader + lead_len && p[1] == TAB)
1140 --lead_len;
1141 mch_memmove(p, p + 1,
1142 (leader + lead_len) - p);
1144 else
1146 #ifdef FEAT_MBYTE
1147 int l = (*mb_ptr2len)(p);
1149 if (l > 1)
1151 if (ptr2cells(p) > 1)
1153 /* Replace a double-wide char with
1154 * two spaces */
1155 --l;
1156 *p++ = ' ';
1158 mch_memmove(p + 1, p + l,
1159 (leader + lead_len) - p);
1160 lead_len -= l - 1;
1162 #endif
1163 *p = ' ';
1166 *p = NUL;
1169 /* Recompute the indent, it may have changed. */
1170 if (curbuf->b_p_ai
1171 #ifdef FEAT_SMARTINDENT
1172 || do_si
1173 #endif
1175 newindent = get_indent_str(leader, (int)curbuf->b_p_ts);
1177 /* Add the indent offset */
1178 if (newindent + off < 0)
1180 off = -newindent;
1181 newindent = 0;
1183 else
1184 newindent += off;
1186 /* Correct trailing spaces for the shift, so that
1187 * alignment remains equal. */
1188 while (off > 0 && lead_len > 0
1189 && leader[lead_len - 1] == ' ')
1191 /* Don't do it when there is a tab before the space */
1192 if (vim_strchr(skipwhite(leader), '\t') != NULL)
1193 break;
1194 --lead_len;
1195 --off;
1198 /* If the leader ends in white space, don't add an
1199 * extra space */
1200 if (lead_len > 0 && vim_iswhite(leader[lead_len - 1]))
1201 extra_space = FALSE;
1202 leader[lead_len] = NUL;
1205 if (extra_space)
1207 leader[lead_len++] = ' ';
1208 leader[lead_len] = NUL;
1211 newcol = lead_len;
1214 * if a new indent will be set below, remove the indent that
1215 * is in the comment leader
1217 if (newindent
1218 #ifdef FEAT_SMARTINDENT
1219 || did_si
1220 #endif
1223 while (lead_len && vim_iswhite(*leader))
1225 --lead_len;
1226 --newcol;
1227 ++leader;
1232 #ifdef FEAT_SMARTINDENT
1233 did_si = can_si = FALSE;
1234 #endif
1236 else if (comment_end != NULL)
1239 * We have finished a comment, so we don't use the leader.
1240 * If this was a C-comment and 'ai' or 'si' is set do a normal
1241 * indent to align with the line containing the start of the
1242 * comment.
1244 if (comment_end[0] == '*' && comment_end[1] == '/' &&
1245 (curbuf->b_p_ai
1246 #ifdef FEAT_SMARTINDENT
1247 || do_si
1248 #endif
1251 old_cursor = curwin->w_cursor;
1252 curwin->w_cursor.col = (colnr_T)(comment_end - saved_line);
1253 if ((pos = findmatch(NULL, NUL)) != NULL)
1255 curwin->w_cursor.lnum = pos->lnum;
1256 newindent = get_indent();
1258 curwin->w_cursor = old_cursor;
1262 #endif
1264 /* (State == INSERT || State == REPLACE), only when dir == FORWARD */
1265 if (p_extra != NULL)
1267 *p_extra = saved_char; /* restore char that NUL replaced */
1270 * When 'ai' set or "flags" has OPENLINE_DELSPACES, skip to the first
1271 * non-blank.
1273 * When in REPLACE mode, put the deleted blanks on the replace stack,
1274 * preceded by a NUL, so they can be put back when a BS is entered.
1276 if (REPLACE_NORMAL(State))
1277 replace_push(NUL); /* end of extra blanks */
1278 if (curbuf->b_p_ai || (flags & OPENLINE_DELSPACES))
1280 while ((*p_extra == ' ' || *p_extra == '\t')
1281 #ifdef FEAT_MBYTE
1282 && (!enc_utf8
1283 || !utf_iscomposing(utf_ptr2char(p_extra + 1)))
1284 #endif
1287 if (REPLACE_NORMAL(State))
1288 replace_push(*p_extra);
1289 ++p_extra;
1290 ++less_cols_off;
1293 if (*p_extra != NUL)
1294 did_ai = FALSE; /* append some text, don't truncate now */
1296 /* columns for marks adjusted for removed columns */
1297 less_cols = (int)(p_extra - saved_line);
1300 if (p_extra == NULL)
1301 p_extra = (char_u *)""; /* append empty line */
1303 #ifdef FEAT_COMMENTS
1304 /* concatenate leader and p_extra, if there is a leader */
1305 if (lead_len)
1307 STRCAT(leader, p_extra);
1308 p_extra = leader;
1309 did_ai = TRUE; /* So truncating blanks works with comments */
1310 less_cols -= lead_len;
1312 else
1313 end_comment_pending = NUL; /* turns out there was no leader */
1314 #endif
1316 old_cursor = curwin->w_cursor;
1317 if (dir == BACKWARD)
1318 --curwin->w_cursor.lnum;
1319 #ifdef FEAT_VREPLACE
1320 if (!(State & VREPLACE_FLAG) || old_cursor.lnum >= orig_line_count)
1321 #endif
1323 if (ml_append(curwin->w_cursor.lnum, p_extra, (colnr_T)0, FALSE)
1324 == FAIL)
1325 goto theend;
1326 /* Postpone calling changed_lines(), because it would mess up folding
1327 * with markers. */
1328 mark_adjust(curwin->w_cursor.lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
1329 did_append = TRUE;
1331 #ifdef FEAT_VREPLACE
1332 else
1335 * In VREPLACE mode we are starting to replace the next line.
1337 curwin->w_cursor.lnum++;
1338 if (curwin->w_cursor.lnum >= Insstart.lnum + vr_lines_changed)
1340 /* In case we NL to a new line, BS to the previous one, and NL
1341 * again, we don't want to save the new line for undo twice.
1343 (void)u_save_cursor(); /* errors are ignored! */
1344 vr_lines_changed++;
1346 ml_replace(curwin->w_cursor.lnum, p_extra, TRUE);
1347 changed_bytes(curwin->w_cursor.lnum, 0);
1348 curwin->w_cursor.lnum--;
1349 did_append = FALSE;
1351 #endif
1353 if (newindent
1354 #ifdef FEAT_SMARTINDENT
1355 || did_si
1356 #endif
1359 ++curwin->w_cursor.lnum;
1360 #ifdef FEAT_SMARTINDENT
1361 if (did_si)
1363 if (p_sr)
1364 newindent -= newindent % (int)curbuf->b_p_sw;
1365 newindent += (int)curbuf->b_p_sw;
1367 #endif
1368 /* Copy the indent */
1369 if (curbuf->b_p_ci)
1371 (void)copy_indent(newindent, saved_line);
1374 * Set the 'preserveindent' option so that any further screwing
1375 * with the line doesn't entirely destroy our efforts to preserve
1376 * it. It gets restored at the function end.
1378 curbuf->b_p_pi = TRUE;
1380 else
1381 (void)set_indent(newindent, SIN_INSERT);
1382 less_cols -= curwin->w_cursor.col;
1384 ai_col = curwin->w_cursor.col;
1387 * In REPLACE mode, for each character in the new indent, there must
1388 * be a NUL on the replace stack, for when it is deleted with BS
1390 if (REPLACE_NORMAL(State))
1391 for (n = 0; n < (int)curwin->w_cursor.col; ++n)
1392 replace_push(NUL);
1393 newcol += curwin->w_cursor.col;
1394 #ifdef FEAT_SMARTINDENT
1395 if (no_si)
1396 did_si = FALSE;
1397 #endif
1400 #ifdef FEAT_COMMENTS
1402 * In REPLACE mode, for each character in the extra leader, there must be
1403 * a NUL on the replace stack, for when it is deleted with BS.
1405 if (REPLACE_NORMAL(State))
1406 while (lead_len-- > 0)
1407 replace_push(NUL);
1408 #endif
1410 curwin->w_cursor = old_cursor;
1412 if (dir == FORWARD)
1414 if (trunc_line || (State & INSERT))
1416 /* truncate current line at cursor */
1417 saved_line[curwin->w_cursor.col] = NUL;
1418 /* Remove trailing white space, unless OPENLINE_KEEPTRAIL used. */
1419 if (trunc_line && !(flags & OPENLINE_KEEPTRAIL))
1420 truncate_spaces(saved_line);
1421 ml_replace(curwin->w_cursor.lnum, saved_line, FALSE);
1422 saved_line = NULL;
1423 if (did_append)
1425 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1426 curwin->w_cursor.lnum + 1, 1L);
1427 did_append = FALSE;
1429 /* Move marks after the line break to the new line. */
1430 if (flags & OPENLINE_MARKFIX)
1431 mark_col_adjust(curwin->w_cursor.lnum,
1432 curwin->w_cursor.col + less_cols_off,
1433 1L, (long)-less_cols);
1435 else
1436 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
1440 * Put the cursor on the new line. Careful: the scrollup() above may
1441 * have moved w_cursor, we must use old_cursor.
1443 curwin->w_cursor.lnum = old_cursor.lnum + 1;
1445 if (did_append)
1446 changed_lines(curwin->w_cursor.lnum, 0, curwin->w_cursor.lnum, 1L);
1448 curwin->w_cursor.col = newcol;
1449 #ifdef FEAT_VIRTUALEDIT
1450 curwin->w_cursor.coladd = 0;
1451 #endif
1453 #if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
1455 * In VREPLACE mode, we are handling the replace stack ourselves, so stop
1456 * fixthisline() from doing it (via change_indent()) by telling it we're in
1457 * normal INSERT mode.
1459 if (State & VREPLACE_FLAG)
1461 vreplace_mode = State; /* So we know to put things right later */
1462 State = INSERT;
1464 else
1465 vreplace_mode = 0;
1466 #endif
1467 #ifdef FEAT_LISP
1469 * May do lisp indenting.
1471 if (!p_paste
1472 # ifdef FEAT_COMMENTS
1473 && leader == NULL
1474 # endif
1475 && curbuf->b_p_lisp
1476 && curbuf->b_p_ai)
1478 fixthisline(get_lisp_indent);
1479 p = ml_get_curline();
1480 ai_col = (colnr_T)(skipwhite(p) - p);
1482 #endif
1483 #ifdef FEAT_CINDENT
1485 * May do indenting after opening a new line.
1487 if (!p_paste
1488 && (curbuf->b_p_cin
1489 # ifdef FEAT_EVAL
1490 || *curbuf->b_p_inde != NUL
1491 # endif
1493 && in_cinkeys(dir == FORWARD
1494 ? KEY_OPEN_FORW
1495 : KEY_OPEN_BACK, ' ', linewhite(curwin->w_cursor.lnum)))
1497 do_c_expr_indent();
1498 p = ml_get_curline();
1499 ai_col = (colnr_T)(skipwhite(p) - p);
1501 #endif
1502 #if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
1503 if (vreplace_mode != 0)
1504 State = vreplace_mode;
1505 #endif
1507 #ifdef FEAT_VREPLACE
1509 * Finally, VREPLACE gets the stuff on the new line, then puts back the
1510 * original line, and inserts the new stuff char by char, pushing old stuff
1511 * onto the replace stack (via ins_char()).
1513 if (State & VREPLACE_FLAG)
1515 /* Put new line in p_extra */
1516 p_extra = vim_strsave(ml_get_curline());
1517 if (p_extra == NULL)
1518 goto theend;
1520 /* Put back original line */
1521 ml_replace(curwin->w_cursor.lnum, next_line, FALSE);
1523 /* Insert new stuff into line again */
1524 curwin->w_cursor.col = 0;
1525 #ifdef FEAT_VIRTUALEDIT
1526 curwin->w_cursor.coladd = 0;
1527 #endif
1528 ins_bytes(p_extra); /* will call changed_bytes() */
1529 vim_free(p_extra);
1530 next_line = NULL;
1532 #endif
1534 retval = TRUE; /* success! */
1535 theend:
1536 curbuf->b_p_pi = saved_pi;
1537 vim_free(saved_line);
1538 vim_free(next_line);
1539 vim_free(allocated);
1540 return retval;
1543 #if defined(FEAT_COMMENTS) || defined(PROTO)
1545 * get_leader_len() returns the length of the prefix of the given string
1546 * which introduces a comment. If this string is not a comment then 0 is
1547 * returned.
1548 * When "flags" is not NULL, it is set to point to the flags of the recognized
1549 * comment leader.
1550 * "backward" must be true for the "O" command.
1553 get_leader_len(line, flags, backward)
1554 char_u *line;
1555 char_u **flags;
1556 int backward;
1558 int i, j;
1559 int got_com = FALSE;
1560 int found_one;
1561 char_u part_buf[COM_MAX_LEN]; /* buffer for one option part */
1562 char_u *string; /* pointer to comment string */
1563 char_u *list;
1565 i = 0;
1566 while (vim_iswhite(line[i])) /* leading white space is ignored */
1567 ++i;
1570 * Repeat to match several nested comment strings.
1572 while (line[i])
1575 * scan through the 'comments' option for a match
1577 found_one = FALSE;
1578 for (list = curbuf->b_p_com; *list; )
1581 * Get one option part into part_buf[]. Advance list to next one.
1582 * put string at start of string.
1584 if (!got_com && flags != NULL) /* remember where flags started */
1585 *flags = list;
1586 (void)copy_option_part(&list, part_buf, COM_MAX_LEN, ",");
1587 string = vim_strchr(part_buf, ':');
1588 if (string == NULL) /* missing ':', ignore this part */
1589 continue;
1590 *string++ = NUL; /* isolate flags from string */
1593 * When already found a nested comment, only accept further
1594 * nested comments.
1596 if (got_com && vim_strchr(part_buf, COM_NEST) == NULL)
1597 continue;
1599 /* When 'O' flag used don't use for "O" command */
1600 if (backward && vim_strchr(part_buf, COM_NOBACK) != NULL)
1601 continue;
1604 * Line contents and string must match.
1605 * When string starts with white space, must have some white space
1606 * (but the amount does not need to match, there might be a mix of
1607 * TABs and spaces).
1609 if (vim_iswhite(string[0]))
1611 if (i == 0 || !vim_iswhite(line[i - 1]))
1612 continue;
1613 while (vim_iswhite(string[0]))
1614 ++string;
1616 for (j = 0; string[j] != NUL && string[j] == line[i + j]; ++j)
1618 if (string[j] != NUL)
1619 continue;
1622 * When 'b' flag used, there must be white space or an
1623 * end-of-line after the string in the line.
1625 if (vim_strchr(part_buf, COM_BLANK) != NULL
1626 && !vim_iswhite(line[i + j]) && line[i + j] != NUL)
1627 continue;
1630 * We have found a match, stop searching.
1632 i += j;
1633 got_com = TRUE;
1634 found_one = TRUE;
1635 break;
1639 * No match found, stop scanning.
1641 if (!found_one)
1642 break;
1645 * Include any trailing white space.
1647 while (vim_iswhite(line[i]))
1648 ++i;
1651 * If this comment doesn't nest, stop here.
1653 if (vim_strchr(part_buf, COM_NEST) == NULL)
1654 break;
1656 return (got_com ? i : 0);
1658 #endif
1661 * Return the number of window lines occupied by buffer line "lnum".
1664 plines(lnum)
1665 linenr_T lnum;
1667 return plines_win(curwin, lnum, TRUE);
1671 plines_win(wp, lnum, winheight)
1672 win_T *wp;
1673 linenr_T lnum;
1674 int winheight; /* when TRUE limit to window height */
1676 #if defined(FEAT_DIFF) || defined(PROTO)
1677 /* Check for filler lines above this buffer line. When folded the result
1678 * is one line anyway. */
1679 return plines_win_nofill(wp, lnum, winheight) + diff_check_fill(wp, lnum);
1683 plines_nofill(lnum)
1684 linenr_T lnum;
1686 return plines_win_nofill(curwin, lnum, TRUE);
1690 plines_win_nofill(wp, lnum, winheight)
1691 win_T *wp;
1692 linenr_T lnum;
1693 int winheight; /* when TRUE limit to window height */
1695 #endif
1696 int lines;
1698 if (!wp->w_p_wrap)
1699 return 1;
1701 #ifdef FEAT_VERTSPLIT
1702 if (wp->w_width == 0)
1703 return 1;
1704 #endif
1706 #ifdef FEAT_FOLDING
1707 /* A folded lines is handled just like an empty line. */
1708 /* NOTE: Caller must handle lines that are MAYBE folded. */
1709 if (lineFolded(wp, lnum) == TRUE)
1710 return 1;
1711 #endif
1713 lines = plines_win_nofold(wp, lnum);
1714 if (winheight > 0 && lines > wp->w_height)
1715 return (int)wp->w_height;
1716 return lines;
1720 * Return number of window lines physical line "lnum" will occupy in window
1721 * "wp". Does not care about folding, 'wrap' or 'diff'.
1724 plines_win_nofold(wp, lnum)
1725 win_T *wp;
1726 linenr_T lnum;
1728 char_u *s;
1729 long col;
1730 int width;
1732 s = ml_get_buf(wp->w_buffer, lnum, FALSE);
1733 if (*s == NUL) /* empty line */
1734 return 1;
1735 col = win_linetabsize(wp, s, (colnr_T)MAXCOL);
1738 * If list mode is on, then the '$' at the end of the line may take up one
1739 * extra column.
1741 if (wp->w_p_list && lcs_eol != NUL)
1742 col += 1;
1745 * Add column offset for 'number' and 'foldcolumn'.
1747 width = W_WIDTH(wp) - win_col_off(wp);
1748 if (width <= 0)
1749 return 32000;
1750 if (col <= width)
1751 return 1;
1752 col -= width;
1753 width += win_col_off2(wp);
1754 return (col + (width - 1)) / width + 1;
1758 * Like plines_win(), but only reports the number of physical screen lines
1759 * used from the start of the line to the given column number.
1762 plines_win_col(wp, lnum, column)
1763 win_T *wp;
1764 linenr_T lnum;
1765 long column;
1767 long col;
1768 char_u *s;
1769 int lines = 0;
1770 int width;
1772 #ifdef FEAT_DIFF
1773 /* Check for filler lines above this buffer line. When folded the result
1774 * is one line anyway. */
1775 lines = diff_check_fill(wp, lnum);
1776 #endif
1778 if (!wp->w_p_wrap)
1779 return lines + 1;
1781 #ifdef FEAT_VERTSPLIT
1782 if (wp->w_width == 0)
1783 return lines + 1;
1784 #endif
1786 s = ml_get_buf(wp->w_buffer, lnum, FALSE);
1788 col = 0;
1789 while (*s != NUL && --column >= 0)
1791 col += win_lbr_chartabsize(wp, s, (colnr_T)col, NULL);
1792 mb_ptr_adv(s);
1796 * If *s is a TAB, and the TAB is not displayed as ^I, and we're not in
1797 * INSERT mode, then col must be adjusted so that it represents the last
1798 * screen position of the TAB. This only fixes an error when the TAB wraps
1799 * from one screen line to the next (when 'columns' is not a multiple of
1800 * 'ts') -- webb.
1802 if (*s == TAB && (State & NORMAL) && (!wp->w_p_list || lcs_tab1))
1803 col += win_lbr_chartabsize(wp, s, (colnr_T)col, NULL) - 1;
1806 * Add column offset for 'number', 'foldcolumn', etc.
1808 width = W_WIDTH(wp) - win_col_off(wp);
1809 if (width <= 0)
1810 return 9999;
1812 lines += 1;
1813 if (col > width)
1814 lines += (col - width) / (width + win_col_off2(wp)) + 1;
1815 return lines;
1819 plines_m_win(wp, first, last)
1820 win_T *wp;
1821 linenr_T first, last;
1823 int count = 0;
1825 while (first <= last)
1827 #ifdef FEAT_FOLDING
1828 int x;
1830 /* Check if there are any really folded lines, but also included lines
1831 * that are maybe folded. */
1832 x = foldedCount(wp, first, NULL);
1833 if (x > 0)
1835 ++count; /* count 1 for "+-- folded" line */
1836 first += x;
1838 else
1839 #endif
1841 #ifdef FEAT_DIFF
1842 if (first == wp->w_topline)
1843 count += plines_win_nofill(wp, first, TRUE) + wp->w_topfill;
1844 else
1845 #endif
1846 count += plines_win(wp, first, TRUE);
1847 ++first;
1850 return (count);
1853 #if defined(FEAT_VREPLACE) || defined(FEAT_INS_EXPAND) || defined(PROTO)
1855 * Insert string "p" at the cursor position. Stops at a NUL byte.
1856 * Handles Replace mode and multi-byte characters.
1858 void
1859 ins_bytes(p)
1860 char_u *p;
1862 ins_bytes_len(p, (int)STRLEN(p));
1864 #endif
1866 #if defined(FEAT_VREPLACE) || defined(FEAT_INS_EXPAND) \
1867 || defined(FEAT_COMMENTS) || defined(FEAT_MBYTE) || defined(PROTO)
1869 * Insert string "p" with length "len" at the cursor position.
1870 * Handles Replace mode and multi-byte characters.
1872 void
1873 ins_bytes_len(p, len)
1874 char_u *p;
1875 int len;
1877 int i;
1878 # ifdef FEAT_MBYTE
1879 int n;
1881 if (has_mbyte)
1882 for (i = 0; i < len; i += n)
1884 if (enc_utf8)
1885 /* avoid reading past p[len] */
1886 n = utfc_ptr2len_len(p + i, len - i);
1887 else
1888 n = (*mb_ptr2len)(p + i);
1889 ins_char_bytes(p + i, n);
1891 else
1892 # endif
1893 for (i = 0; i < len; ++i)
1894 ins_char(p[i]);
1896 #endif
1899 * Insert or replace a single character at the cursor position.
1900 * When in REPLACE or VREPLACE mode, replace any existing character.
1901 * Caller must have prepared for undo.
1902 * For multi-byte characters we get the whole character, the caller must
1903 * convert bytes to a character.
1905 void
1906 ins_char(c)
1907 int c;
1909 #if defined(FEAT_MBYTE) || defined(PROTO)
1910 char_u buf[MB_MAXBYTES];
1911 int n;
1913 n = (*mb_char2bytes)(c, buf);
1915 /* When "c" is 0x100, 0x200, etc. we don't want to insert a NUL byte.
1916 * Happens for CTRL-Vu9900. */
1917 if (buf[0] == 0)
1918 buf[0] = '\n';
1920 ins_char_bytes(buf, n);
1923 void
1924 ins_char_bytes(buf, charlen)
1925 char_u *buf;
1926 int charlen;
1928 int c = buf[0];
1929 #endif
1930 int newlen; /* nr of bytes inserted */
1931 int oldlen; /* nr of bytes deleted (0 when not replacing) */
1932 char_u *p;
1933 char_u *newp;
1934 char_u *oldp;
1935 int linelen; /* length of old line including NUL */
1936 colnr_T col;
1937 linenr_T lnum = curwin->w_cursor.lnum;
1938 int i;
1940 #ifdef FEAT_VIRTUALEDIT
1941 /* Break tabs if needed. */
1942 if (virtual_active() && curwin->w_cursor.coladd > 0)
1943 coladvance_force(getviscol());
1944 #endif
1946 col = curwin->w_cursor.col;
1947 oldp = ml_get(lnum);
1948 linelen = (int)STRLEN(oldp) + 1;
1950 /* The lengths default to the values for when not replacing. */
1951 oldlen = 0;
1952 #ifdef FEAT_MBYTE
1953 newlen = charlen;
1954 #else
1955 newlen = 1;
1956 #endif
1958 if (State & REPLACE_FLAG)
1960 #ifdef FEAT_VREPLACE
1961 if (State & VREPLACE_FLAG)
1963 colnr_T new_vcol = 0; /* init for GCC */
1964 colnr_T vcol;
1965 int old_list;
1966 #ifndef FEAT_MBYTE
1967 char_u buf[2];
1968 #endif
1971 * Disable 'list' temporarily, unless 'cpo' contains the 'L' flag.
1972 * Returns the old value of list, so when finished,
1973 * curwin->w_p_list should be set back to this.
1975 old_list = curwin->w_p_list;
1976 if (old_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
1977 curwin->w_p_list = FALSE;
1980 * In virtual replace mode each character may replace one or more
1981 * characters (zero if it's a TAB). Count the number of bytes to
1982 * be deleted to make room for the new character, counting screen
1983 * cells. May result in adding spaces to fill a gap.
1985 getvcol(curwin, &curwin->w_cursor, NULL, &vcol, NULL);
1986 #ifndef FEAT_MBYTE
1987 buf[0] = c;
1988 buf[1] = NUL;
1989 #endif
1990 new_vcol = vcol + chartabsize(buf, vcol);
1991 while (oldp[col + oldlen] != NUL && vcol < new_vcol)
1993 vcol += chartabsize(oldp + col + oldlen, vcol);
1994 /* Don't need to remove a TAB that takes us to the right
1995 * position. */
1996 if (vcol > new_vcol && oldp[col + oldlen] == TAB)
1997 break;
1998 #ifdef FEAT_MBYTE
1999 oldlen += (*mb_ptr2len)(oldp + col + oldlen);
2000 #else
2001 ++oldlen;
2002 #endif
2003 /* Deleted a bit too much, insert spaces. */
2004 if (vcol > new_vcol)
2005 newlen += vcol - new_vcol;
2007 curwin->w_p_list = old_list;
2009 else
2010 #endif
2011 if (oldp[col] != NUL)
2013 /* normal replace */
2014 #ifdef FEAT_MBYTE
2015 oldlen = (*mb_ptr2len)(oldp + col);
2016 #else
2017 oldlen = 1;
2018 #endif
2022 /* Push the replaced bytes onto the replace stack, so that they can be
2023 * put back when BS is used. The bytes of a multi-byte character are
2024 * done the other way around, so that the first byte is popped off
2025 * first (it tells the byte length of the character). */
2026 replace_push(NUL);
2027 for (i = 0; i < oldlen; ++i)
2029 #ifdef FEAT_MBYTE
2030 if (has_mbyte)
2031 i += replace_push_mb(oldp + col + i) - 1;
2032 else
2033 #endif
2034 replace_push(oldp[col + i]);
2038 newp = alloc_check((unsigned)(linelen + newlen - oldlen));
2039 if (newp == NULL)
2040 return;
2042 /* Copy bytes before the cursor. */
2043 if (col > 0)
2044 mch_memmove(newp, oldp, (size_t)col);
2046 /* Copy bytes after the changed character(s). */
2047 p = newp + col;
2048 mch_memmove(p + newlen, oldp + col + oldlen,
2049 (size_t)(linelen - col - oldlen));
2051 /* Insert or overwrite the new character. */
2052 #ifdef FEAT_MBYTE
2053 mch_memmove(p, buf, charlen);
2054 i = charlen;
2055 #else
2056 *p = c;
2057 i = 1;
2058 #endif
2060 /* Fill with spaces when necessary. */
2061 while (i < newlen)
2062 p[i++] = ' ';
2064 /* Replace the line in the buffer. */
2065 ml_replace(lnum, newp, FALSE);
2067 /* mark the buffer as changed and prepare for displaying */
2068 changed_bytes(lnum, col);
2071 * If we're in Insert or Replace mode and 'showmatch' is set, then briefly
2072 * show the match for right parens and braces.
2074 if (p_sm && (State & INSERT)
2075 && msg_silent == 0
2076 #ifdef FEAT_MBYTE
2077 && charlen == 1
2078 #endif
2079 #ifdef FEAT_INS_EXPAND
2080 && !ins_compl_active()
2081 #endif
2083 showmatch(c);
2085 #ifdef FEAT_RIGHTLEFT
2086 if (!p_ri || (State & REPLACE_FLAG))
2087 #endif
2089 /* Normal insert: move cursor right */
2090 #ifdef FEAT_MBYTE
2091 curwin->w_cursor.col += charlen;
2092 #else
2093 ++curwin->w_cursor.col;
2094 #endif
2097 * TODO: should try to update w_row here, to avoid recomputing it later.
2102 * Insert a string at the cursor position.
2103 * Note: Does NOT handle Replace mode.
2104 * Caller must have prepared for undo.
2106 void
2107 ins_str(s)
2108 char_u *s;
2110 char_u *oldp, *newp;
2111 int newlen = (int)STRLEN(s);
2112 int oldlen;
2113 colnr_T col;
2114 linenr_T lnum = curwin->w_cursor.lnum;
2116 #ifdef FEAT_VIRTUALEDIT
2117 if (virtual_active() && curwin->w_cursor.coladd > 0)
2118 coladvance_force(getviscol());
2119 #endif
2121 col = curwin->w_cursor.col;
2122 oldp = ml_get(lnum);
2123 oldlen = (int)STRLEN(oldp);
2125 newp = alloc_check((unsigned)(oldlen + newlen + 1));
2126 if (newp == NULL)
2127 return;
2128 if (col > 0)
2129 mch_memmove(newp, oldp, (size_t)col);
2130 mch_memmove(newp + col, s, (size_t)newlen);
2131 mch_memmove(newp + col + newlen, oldp + col, (size_t)(oldlen - col + 1));
2132 ml_replace(lnum, newp, FALSE);
2133 changed_bytes(lnum, col);
2134 curwin->w_cursor.col += newlen;
2138 * Delete one character under the cursor.
2139 * If "fixpos" is TRUE, don't leave the cursor on the NUL after the line.
2140 * Caller must have prepared for undo.
2142 * return FAIL for failure, OK otherwise
2145 del_char(fixpos)
2146 int fixpos;
2148 #ifdef FEAT_MBYTE
2149 if (has_mbyte)
2151 /* Make sure the cursor is at the start of a character. */
2152 mb_adjust_cursor();
2153 if (*ml_get_cursor() == NUL)
2154 return FAIL;
2155 return del_chars(1L, fixpos);
2157 #endif
2158 return del_bytes(1L, fixpos, TRUE);
2161 #if defined(FEAT_MBYTE) || defined(PROTO)
2163 * Like del_bytes(), but delete characters instead of bytes.
2166 del_chars(count, fixpos)
2167 long count;
2168 int fixpos;
2170 long bytes = 0;
2171 long i;
2172 char_u *p;
2173 int l;
2175 p = ml_get_cursor();
2176 for (i = 0; i < count && *p != NUL; ++i)
2178 l = (*mb_ptr2len)(p);
2179 bytes += l;
2180 p += l;
2182 return del_bytes(bytes, fixpos, TRUE);
2184 #endif
2187 * Delete "count" bytes under the cursor.
2188 * If "fixpos" is TRUE, don't leave the cursor on the NUL after the line.
2189 * Caller must have prepared for undo.
2191 * return FAIL for failure, OK otherwise
2194 del_bytes(count, fixpos_arg, use_delcombine)
2195 long count;
2196 int fixpos_arg;
2197 int use_delcombine UNUSED; /* 'delcombine' option applies */
2199 char_u *oldp, *newp;
2200 colnr_T oldlen;
2201 linenr_T lnum = curwin->w_cursor.lnum;
2202 colnr_T col = curwin->w_cursor.col;
2203 int was_alloced;
2204 long movelen;
2205 int fixpos = fixpos_arg;
2207 oldp = ml_get(lnum);
2208 oldlen = (int)STRLEN(oldp);
2211 * Can't do anything when the cursor is on the NUL after the line.
2213 if (col >= oldlen)
2214 return FAIL;
2216 #ifdef FEAT_MBYTE
2217 /* If 'delcombine' is set and deleting (less than) one character, only
2218 * delete the last combining character. */
2219 if (p_deco && use_delcombine && enc_utf8
2220 && utfc_ptr2len(oldp + col) >= count)
2222 int cc[MAX_MCO];
2223 int n;
2225 (void)utfc_ptr2char(oldp + col, cc);
2226 if (cc[0] != NUL)
2228 /* Find the last composing char, there can be several. */
2229 n = col;
2232 col = n;
2233 count = utf_ptr2len(oldp + n);
2234 n += count;
2235 } while (UTF_COMPOSINGLIKE(oldp + col, oldp + n));
2236 fixpos = 0;
2239 #endif
2242 * When count is too big, reduce it.
2244 movelen = (long)oldlen - (long)col - count + 1; /* includes trailing NUL */
2245 if (movelen <= 1)
2248 * If we just took off the last character of a non-blank line, and
2249 * fixpos is TRUE, we don't want to end up positioned at the NUL,
2250 * unless "restart_edit" is set or 'virtualedit' contains "onemore".
2252 if (col > 0 && fixpos && restart_edit == 0
2253 #ifdef FEAT_VIRTUALEDIT
2254 && (ve_flags & VE_ONEMORE) == 0
2255 #endif
2258 --curwin->w_cursor.col;
2259 #ifdef FEAT_VIRTUALEDIT
2260 curwin->w_cursor.coladd = 0;
2261 #endif
2262 #ifdef FEAT_MBYTE
2263 if (has_mbyte)
2264 curwin->w_cursor.col -=
2265 (*mb_head_off)(oldp, oldp + curwin->w_cursor.col);
2266 #endif
2268 count = oldlen - col;
2269 movelen = 1;
2273 * If the old line has been allocated the deletion can be done in the
2274 * existing line. Otherwise a new line has to be allocated
2275 * Can't do this when using Netbeans, because we would need to invoke
2276 * netbeans_removed(), which deallocates the line. Let ml_replace() take
2277 * care of notifiying Netbeans.
2279 #ifdef FEAT_NETBEANS_INTG
2280 if (usingNetbeans)
2281 was_alloced = FALSE;
2282 else
2283 #endif
2284 was_alloced = ml_line_alloced(); /* check if oldp was allocated */
2285 if (was_alloced)
2286 newp = oldp; /* use same allocated memory */
2287 else
2288 { /* need to allocate a new line */
2289 newp = alloc((unsigned)(oldlen + 1 - count));
2290 if (newp == NULL)
2291 return FAIL;
2292 mch_memmove(newp, oldp, (size_t)col);
2294 mch_memmove(newp + col, oldp + col + count, (size_t)movelen);
2295 if (!was_alloced)
2296 ml_replace(lnum, newp, FALSE);
2298 /* mark the buffer as changed and prepare for displaying */
2299 changed_bytes(lnum, curwin->w_cursor.col);
2301 return OK;
2305 * Delete from cursor to end of line.
2306 * Caller must have prepared for undo.
2308 * return FAIL for failure, OK otherwise
2311 truncate_line(fixpos)
2312 int fixpos; /* if TRUE fix the cursor position when done */
2314 char_u *newp;
2315 linenr_T lnum = curwin->w_cursor.lnum;
2316 colnr_T col = curwin->w_cursor.col;
2318 if (col == 0)
2319 newp = vim_strsave((char_u *)"");
2320 else
2321 newp = vim_strnsave(ml_get(lnum), col);
2323 if (newp == NULL)
2324 return FAIL;
2326 ml_replace(lnum, newp, FALSE);
2328 /* mark the buffer as changed and prepare for displaying */
2329 changed_bytes(lnum, curwin->w_cursor.col);
2332 * If "fixpos" is TRUE we don't want to end up positioned at the NUL.
2334 if (fixpos && curwin->w_cursor.col > 0)
2335 --curwin->w_cursor.col;
2337 return OK;
2341 * Delete "nlines" lines at the cursor.
2342 * Saves the lines for undo first if "undo" is TRUE.
2344 void
2345 del_lines(nlines, undo)
2346 long nlines; /* number of lines to delete */
2347 int undo; /* if TRUE, prepare for undo */
2349 long n;
2350 linenr_T first = curwin->w_cursor.lnum;
2352 if (nlines <= 0)
2353 return;
2355 /* save the deleted lines for undo */
2356 if (undo && u_savedel(first, nlines) == FAIL)
2357 return;
2359 for (n = 0; n < nlines; )
2361 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
2362 break;
2364 ml_delete(first, TRUE);
2365 ++n;
2367 /* If we delete the last line in the file, stop */
2368 if (first > curbuf->b_ml.ml_line_count)
2369 break;
2372 /* Correct the cursor position before calling deleted_lines_mark(), it may
2373 * trigger a callback to display the cursor. */
2374 curwin->w_cursor.col = 0;
2375 check_cursor_lnum();
2377 /* adjust marks, mark the buffer as changed and prepare for displaying */
2378 deleted_lines_mark(first, n);
2382 gchar_pos(pos)
2383 pos_T *pos;
2385 char_u *ptr = ml_get_pos(pos);
2387 #ifdef FEAT_MBYTE
2388 if (has_mbyte)
2389 return (*mb_ptr2char)(ptr);
2390 #endif
2391 return (int)*ptr;
2395 gchar_cursor()
2397 #ifdef FEAT_MBYTE
2398 if (has_mbyte)
2399 return (*mb_ptr2char)(ml_get_cursor());
2400 #endif
2401 return (int)*ml_get_cursor();
2405 * Write a character at the current cursor position.
2406 * It is directly written into the block.
2408 void
2409 pchar_cursor(c)
2410 int c;
2412 *(ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE)
2413 + curwin->w_cursor.col) = c;
2416 #if 0 /* not used */
2418 * Put *pos at end of current buffer
2420 void
2421 goto_endofbuf(pos)
2422 pos_T *pos;
2424 char_u *p;
2426 pos->lnum = curbuf->b_ml.ml_line_count;
2427 pos->col = 0;
2428 p = ml_get(pos->lnum);
2429 while (*p++)
2430 ++pos->col;
2432 #endif
2435 * When extra == 0: Return TRUE if the cursor is before or on the first
2436 * non-blank in the line.
2437 * When extra == 1: Return TRUE if the cursor is before the first non-blank in
2438 * the line.
2441 inindent(extra)
2442 int extra;
2444 char_u *ptr;
2445 colnr_T col;
2447 for (col = 0, ptr = ml_get_curline(); vim_iswhite(*ptr); ++col)
2448 ++ptr;
2449 if (col >= curwin->w_cursor.col + extra)
2450 return TRUE;
2451 else
2452 return FALSE;
2456 * Skip to next part of an option argument: Skip space and comma.
2458 char_u *
2459 skip_to_option_part(p)
2460 char_u *p;
2462 if (*p == ',')
2463 ++p;
2464 while (*p == ' ')
2465 ++p;
2466 return p;
2470 * Call this function when something in the current buffer is changed.
2472 * Most often called through changed_bytes() and changed_lines(), which also
2473 * mark the area of the display to be redrawn.
2475 * Careful: may trigger autocommands that reload the buffer.
2477 void
2478 changed()
2480 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2481 /* The text of the preediting area is inserted, but this doesn't
2482 * mean a change of the buffer yet. That is delayed until the
2483 * text is committed. (this means preedit becomes empty) */
2484 if (im_is_preediting() && !xim_changed_while_preediting)
2485 return;
2486 xim_changed_while_preediting = FALSE;
2487 #endif
2489 if (!curbuf->b_changed)
2491 int save_msg_scroll = msg_scroll;
2493 /* Give a warning about changing a read-only file. This may also
2494 * check-out the file, thus change "curbuf"! */
2495 change_warning(0);
2497 /* Create a swap file if that is wanted.
2498 * Don't do this for "nofile" and "nowrite" buffer types. */
2499 if (curbuf->b_may_swap
2500 #ifdef FEAT_QUICKFIX
2501 && !bt_dontwrite(curbuf)
2502 #endif
2505 ml_open_file(curbuf);
2507 /* The ml_open_file() can cause an ATTENTION message.
2508 * Wait two seconds, to make sure the user reads this unexpected
2509 * message. Since we could be anywhere, call wait_return() now,
2510 * and don't let the emsg() set msg_scroll. */
2511 if (need_wait_return && emsg_silent == 0)
2513 out_flush();
2514 ui_delay(2000L, TRUE);
2515 wait_return(TRUE);
2516 msg_scroll = save_msg_scroll;
2519 curbuf->b_changed = TRUE;
2520 ml_setflags(curbuf);
2521 #ifdef FEAT_WINDOWS
2522 check_status(curbuf);
2523 redraw_tabline = TRUE;
2524 #endif
2525 #ifdef FEAT_TITLE
2526 need_maketitle = TRUE; /* set window title later */
2527 #endif
2529 ++curbuf->b_changedtick;
2532 static void changedOneline __ARGS((buf_T *buf, linenr_T lnum));
2533 static void changed_lines_buf __ARGS((buf_T *buf, linenr_T lnum, linenr_T lnume, long xtra));
2534 static void changed_common __ARGS((linenr_T lnum, colnr_T col, linenr_T lnume, long xtra));
2537 * Changed bytes within a single line for the current buffer.
2538 * - marks the windows on this buffer to be redisplayed
2539 * - marks the buffer changed by calling changed()
2540 * - invalidates cached values
2541 * Careful: may trigger autocommands that reload the buffer.
2543 void
2544 changed_bytes(lnum, col)
2545 linenr_T lnum;
2546 colnr_T col;
2548 changedOneline(curbuf, lnum);
2549 changed_common(lnum, col, lnum + 1, 0L);
2551 #ifdef FEAT_DIFF
2552 /* Diff highlighting in other diff windows may need to be updated too. */
2553 if (curwin->w_p_diff)
2555 win_T *wp;
2556 linenr_T wlnum;
2558 for (wp = firstwin; wp != NULL; wp = wp->w_next)
2559 if (wp->w_p_diff && wp != curwin)
2561 redraw_win_later(wp, VALID);
2562 wlnum = diff_lnum_win(lnum, wp);
2563 if (wlnum > 0)
2564 changedOneline(wp->w_buffer, wlnum);
2567 #endif
2570 static void
2571 changedOneline(buf, lnum)
2572 buf_T *buf;
2573 linenr_T lnum;
2575 if (buf->b_mod_set)
2577 /* find the maximum area that must be redisplayed */
2578 if (lnum < buf->b_mod_top)
2579 buf->b_mod_top = lnum;
2580 else if (lnum >= buf->b_mod_bot)
2581 buf->b_mod_bot = lnum + 1;
2583 else
2585 /* set the area that must be redisplayed to one line */
2586 buf->b_mod_set = TRUE;
2587 buf->b_mod_top = lnum;
2588 buf->b_mod_bot = lnum + 1;
2589 buf->b_mod_xlines = 0;
2594 * Appended "count" lines below line "lnum" in the current buffer.
2595 * Must be called AFTER the change and after mark_adjust().
2596 * Takes care of marking the buffer to be redrawn and sets the changed flag.
2598 void
2599 appended_lines(lnum, count)
2600 linenr_T lnum;
2601 long count;
2603 changed_lines(lnum + 1, 0, lnum + 1, count);
2607 * Like appended_lines(), but adjust marks first.
2609 void
2610 appended_lines_mark(lnum, count)
2611 linenr_T lnum;
2612 long count;
2614 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, count, 0L);
2615 changed_lines(lnum + 1, 0, lnum + 1, count);
2619 * Deleted "count" lines at line "lnum" in the current buffer.
2620 * Must be called AFTER the change and after mark_adjust().
2621 * Takes care of marking the buffer to be redrawn and sets the changed flag.
2623 void
2624 deleted_lines(lnum, count)
2625 linenr_T lnum;
2626 long count;
2628 changed_lines(lnum, 0, lnum + count, -count);
2632 * Like deleted_lines(), but adjust marks first.
2633 * Make sure the cursor is on a valid line before calling, a GUI callback may
2634 * be triggered to display the cursor.
2636 void
2637 deleted_lines_mark(lnum, count)
2638 linenr_T lnum;
2639 long count;
2641 mark_adjust(lnum, (linenr_T)(lnum + count - 1), (long)MAXLNUM, -count);
2642 changed_lines(lnum, 0, lnum + count, -count);
2646 * Changed lines for the current buffer.
2647 * Must be called AFTER the change and after mark_adjust().
2648 * - mark the buffer changed by calling changed()
2649 * - mark the windows on this buffer to be redisplayed
2650 * - invalidate cached values
2651 * "lnum" is the first line that needs displaying, "lnume" the first line
2652 * below the changed lines (BEFORE the change).
2653 * When only inserting lines, "lnum" and "lnume" are equal.
2654 * Takes care of calling changed() and updating b_mod_*.
2655 * Careful: may trigger autocommands that reload the buffer.
2657 void
2658 changed_lines(lnum, col, lnume, xtra)
2659 linenr_T lnum; /* first line with change */
2660 colnr_T col; /* column in first line with change */
2661 linenr_T lnume; /* line below last changed line */
2662 long xtra; /* number of extra lines (negative when deleting) */
2664 changed_lines_buf(curbuf, lnum, lnume, xtra);
2666 #ifdef FEAT_DIFF
2667 if (xtra == 0 && curwin->w_p_diff)
2669 /* When the number of lines doesn't change then mark_adjust() isn't
2670 * called and other diff buffers still need to be marked for
2671 * displaying. */
2672 win_T *wp;
2673 linenr_T wlnum;
2675 for (wp = firstwin; wp != NULL; wp = wp->w_next)
2676 if (wp->w_p_diff && wp != curwin)
2678 redraw_win_later(wp, VALID);
2679 wlnum = diff_lnum_win(lnum, wp);
2680 if (wlnum > 0)
2681 changed_lines_buf(wp->w_buffer, wlnum,
2682 lnume - lnum + wlnum, 0L);
2685 #endif
2687 changed_common(lnum, col, lnume, xtra);
2689 /* update ew linenumbers for CodeCheck if the current buffer is
2690 * being watched. */
2691 if (cc_is_buf_watched(curbuf))
2692 cc_update_ew_lnums(curbuf, lnum, col, xtra);
2695 static void
2696 changed_lines_buf(buf, lnum, lnume, xtra)
2697 buf_T *buf;
2698 linenr_T lnum; /* first line with change */
2699 linenr_T lnume; /* line below last changed line */
2700 long xtra; /* number of extra lines (negative when deleting) */
2702 if (buf->b_mod_set)
2704 /* find the maximum area that must be redisplayed */
2705 if (lnum < buf->b_mod_top)
2706 buf->b_mod_top = lnum;
2707 if (lnum < buf->b_mod_bot)
2709 /* adjust old bot position for xtra lines */
2710 buf->b_mod_bot += xtra;
2711 if (buf->b_mod_bot < lnum)
2712 buf->b_mod_bot = lnum;
2714 if (lnume + xtra > buf->b_mod_bot)
2715 buf->b_mod_bot = lnume + xtra;
2716 buf->b_mod_xlines += xtra;
2718 else
2720 /* set the area that must be redisplayed */
2721 buf->b_mod_set = TRUE;
2722 buf->b_mod_top = lnum;
2723 buf->b_mod_bot = lnume + xtra;
2724 buf->b_mod_xlines = xtra;
2729 * Common code for when a change is was made.
2730 * See changed_lines() for the arguments.
2731 * Careful: may trigger autocommands that reload the buffer.
2733 static void
2734 changed_common(lnum, col, lnume, xtra)
2735 linenr_T lnum;
2736 colnr_T col;
2737 linenr_T lnume;
2738 long xtra;
2740 win_T *wp;
2741 #ifdef FEAT_WINDOWS
2742 tabpage_T *tp;
2743 #endif
2744 int i;
2745 #ifdef FEAT_JUMPLIST
2746 int cols;
2747 pos_T *p;
2748 int add;
2749 #endif
2751 /* mark the buffer as modified */
2752 changed();
2754 /* set the '. mark */
2755 if (!cmdmod.keepjumps)
2757 curbuf->b_last_change.lnum = lnum;
2758 curbuf->b_last_change.col = col;
2760 #ifdef FEAT_JUMPLIST
2761 /* Create a new entry if a new undo-able change was started or we
2762 * don't have an entry yet. */
2763 if (curbuf->b_new_change || curbuf->b_changelistlen == 0)
2765 if (curbuf->b_changelistlen == 0)
2766 add = TRUE;
2767 else
2769 /* Don't create a new entry when the line number is the same
2770 * as the last one and the column is not too far away. Avoids
2771 * creating many entries for typing "xxxxx". */
2772 p = &curbuf->b_changelist[curbuf->b_changelistlen - 1];
2773 if (p->lnum != lnum)
2774 add = TRUE;
2775 else
2777 cols = comp_textwidth(FALSE);
2778 if (cols == 0)
2779 cols = 79;
2780 add = (p->col + cols < col || col + cols < p->col);
2783 if (add)
2785 /* This is the first of a new sequence of undo-able changes
2786 * and it's at some distance of the last change. Use a new
2787 * position in the changelist. */
2788 curbuf->b_new_change = FALSE;
2790 if (curbuf->b_changelistlen == JUMPLISTSIZE)
2792 /* changelist is full: remove oldest entry */
2793 curbuf->b_changelistlen = JUMPLISTSIZE - 1;
2794 mch_memmove(curbuf->b_changelist, curbuf->b_changelist + 1,
2795 sizeof(pos_T) * (JUMPLISTSIZE - 1));
2796 FOR_ALL_TAB_WINDOWS(tp, wp)
2798 /* Correct position in changelist for other windows on
2799 * this buffer. */
2800 if (wp->w_buffer == curbuf && wp->w_changelistidx > 0)
2801 --wp->w_changelistidx;
2804 FOR_ALL_TAB_WINDOWS(tp, wp)
2806 /* For other windows, if the position in the changelist is
2807 * at the end it stays at the end. */
2808 if (wp->w_buffer == curbuf
2809 && wp->w_changelistidx == curbuf->b_changelistlen)
2810 ++wp->w_changelistidx;
2812 ++curbuf->b_changelistlen;
2815 curbuf->b_changelist[curbuf->b_changelistlen - 1] =
2816 curbuf->b_last_change;
2817 /* The current window is always after the last change, so that "g,"
2818 * takes you back to it. */
2819 curwin->w_changelistidx = curbuf->b_changelistlen;
2820 #endif
2823 FOR_ALL_TAB_WINDOWS(tp, wp)
2825 if (wp->w_buffer == curbuf)
2827 /* Mark this window to be redrawn later. */
2828 if (wp->w_redr_type < VALID)
2829 wp->w_redr_type = VALID;
2831 /* Check if a change in the buffer has invalidated the cached
2832 * values for the cursor. */
2833 #ifdef FEAT_FOLDING
2835 * Update the folds for this window. Can't postpone this, because
2836 * a following operator might work on the whole fold: ">>dd".
2838 foldUpdate(wp, lnum, lnume + xtra - 1);
2840 /* The change may cause lines above or below the change to become
2841 * included in a fold. Set lnum/lnume to the first/last line that
2842 * might be displayed differently.
2843 * Set w_cline_folded here as an efficient way to update it when
2844 * inserting lines just above a closed fold. */
2845 i = hasFoldingWin(wp, lnum, &lnum, NULL, FALSE, NULL);
2846 if (wp->w_cursor.lnum == lnum)
2847 wp->w_cline_folded = i;
2848 i = hasFoldingWin(wp, lnume, NULL, &lnume, FALSE, NULL);
2849 if (wp->w_cursor.lnum == lnume)
2850 wp->w_cline_folded = i;
2852 /* If the changed line is in a range of previously folded lines,
2853 * compare with the first line in that range. */
2854 if (wp->w_cursor.lnum <= lnum)
2856 i = find_wl_entry(wp, lnum);
2857 if (i >= 0 && wp->w_cursor.lnum > wp->w_lines[i].wl_lnum)
2858 changed_line_abv_curs_win(wp);
2860 #endif
2862 if (wp->w_cursor.lnum > lnum)
2863 changed_line_abv_curs_win(wp);
2864 else if (wp->w_cursor.lnum == lnum && wp->w_cursor.col >= col)
2865 changed_cline_bef_curs_win(wp);
2866 if (wp->w_botline >= lnum)
2868 /* Assume that botline doesn't change (inserted lines make
2869 * other lines scroll down below botline). */
2870 approximate_botline_win(wp);
2873 /* Check if any w_lines[] entries have become invalid.
2874 * For entries below the change: Correct the lnums for
2875 * inserted/deleted lines. Makes it possible to stop displaying
2876 * after the change. */
2877 for (i = 0; i < wp->w_lines_valid; ++i)
2878 if (wp->w_lines[i].wl_valid)
2880 if (wp->w_lines[i].wl_lnum >= lnum)
2882 if (wp->w_lines[i].wl_lnum < lnume)
2884 /* line included in change */
2885 wp->w_lines[i].wl_valid = FALSE;
2887 else if (xtra != 0)
2889 /* line below change */
2890 wp->w_lines[i].wl_lnum += xtra;
2891 #ifdef FEAT_FOLDING
2892 wp->w_lines[i].wl_lastlnum += xtra;
2893 #endif
2896 #ifdef FEAT_FOLDING
2897 else if (wp->w_lines[i].wl_lastlnum >= lnum)
2899 /* change somewhere inside this range of folded lines,
2900 * may need to be redrawn */
2901 wp->w_lines[i].wl_valid = FALSE;
2903 #endif
2906 #ifdef FEAT_FOLDING
2907 /* Take care of side effects for setting w_topline when folds have
2908 * changed. Esp. when the buffer was changed in another window. */
2909 if (hasAnyFolding(wp))
2910 set_topline(wp, wp->w_topline);
2911 #endif
2915 /* Call update_screen() later, which checks out what needs to be redrawn,
2916 * since it notices b_mod_set and then uses b_mod_*. */
2917 if (must_redraw < VALID)
2918 must_redraw = VALID;
2920 #ifdef FEAT_AUTOCMD
2921 /* when the cursor line is changed always trigger CursorMoved */
2922 if (lnum <= curwin->w_cursor.lnum
2923 && lnume + (xtra < 0 ? -xtra : xtra) > curwin->w_cursor.lnum)
2924 last_cursormoved.lnum = 0;
2925 #endif
2929 * unchanged() is called when the changed flag must be reset for buffer 'buf'
2931 void
2932 unchanged(buf, ff)
2933 buf_T *buf;
2934 int ff; /* also reset 'fileformat' */
2936 if (buf->b_changed || (ff && file_ff_differs(buf)))
2938 buf->b_changed = 0;
2939 ml_setflags(buf);
2940 if (ff)
2941 save_file_ff(buf);
2942 #ifdef FEAT_WINDOWS
2943 check_status(buf);
2944 redraw_tabline = TRUE;
2945 #endif
2946 #ifdef FEAT_TITLE
2947 need_maketitle = TRUE; /* set window title later */
2948 #endif
2950 ++buf->b_changedtick;
2951 #ifdef FEAT_NETBEANS_INTG
2952 netbeans_unmodified(buf);
2953 #endif
2956 #if defined(FEAT_WINDOWS) || defined(PROTO)
2958 * check_status: called when the status bars for the buffer 'buf'
2959 * need to be updated
2961 void
2962 check_status(buf)
2963 buf_T *buf;
2965 win_T *wp;
2967 for (wp = firstwin; wp != NULL; wp = wp->w_next)
2968 if (wp->w_buffer == buf && wp->w_status_height)
2970 wp->w_redr_status = TRUE;
2971 if (must_redraw < VALID)
2972 must_redraw = VALID;
2975 #endif
2978 * If the file is readonly, give a warning message with the first change.
2979 * Don't do this for autocommands.
2980 * Don't use emsg(), because it flushes the macro buffer.
2981 * If we have undone all changes b_changed will be FALSE, but "b_did_warn"
2982 * will be TRUE.
2983 * Careful: may trigger autocommands that reload the buffer.
2985 void
2986 change_warning(col)
2987 int col; /* column for message; non-zero when in insert
2988 mode and 'showmode' is on */
2990 static char *w_readonly = N_("W10: Warning: Changing a readonly file");
2992 if (curbuf->b_did_warn == FALSE
2993 && curbufIsChanged() == 0
2994 #ifdef FEAT_AUTOCMD
2995 && !autocmd_busy
2996 #endif
2997 && curbuf->b_p_ro)
2999 #ifdef FEAT_AUTOCMD
3000 ++curbuf_lock;
3001 apply_autocmds(EVENT_FILECHANGEDRO, NULL, NULL, FALSE, curbuf);
3002 --curbuf_lock;
3003 if (!curbuf->b_p_ro)
3004 return;
3005 #endif
3007 * Do what msg() does, but with a column offset if the warning should
3008 * be after the mode message.
3010 msg_start();
3011 if (msg_row == Rows - 1)
3012 msg_col = col;
3013 msg_source(hl_attr(HLF_W));
3014 MSG_PUTS_ATTR(_(w_readonly), hl_attr(HLF_W) | MSG_HIST);
3015 #ifdef FEAT_EVAL
3016 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_readonly), -1);
3017 #endif
3018 msg_clr_eos();
3019 (void)msg_end();
3020 if (msg_silent == 0 && !silent_mode)
3022 out_flush();
3023 ui_delay(1000L, TRUE); /* give the user time to think about it */
3025 curbuf->b_did_warn = TRUE;
3026 redraw_cmdline = FALSE; /* don't redraw and erase the message */
3027 if (msg_row < Rows - 1)
3028 showmode();
3033 * Ask for a reply from the user, a 'y' or a 'n'.
3034 * No other characters are accepted, the message is repeated until a valid
3035 * reply is entered or CTRL-C is hit.
3036 * If direct is TRUE, don't use vgetc() but ui_inchar(), don't get characters
3037 * from any buffers but directly from the user.
3039 * return the 'y' or 'n'
3042 ask_yesno(str, direct)
3043 char_u *str;
3044 int direct;
3046 int r = ' ';
3047 int save_State = State;
3049 if (exiting) /* put terminal in raw mode for this question */
3050 settmode(TMODE_RAW);
3051 ++no_wait_return;
3052 #ifdef USE_ON_FLY_SCROLL
3053 dont_scroll = TRUE; /* disallow scrolling here */
3054 #endif
3055 State = CONFIRM; /* mouse behaves like with :confirm */
3056 #ifdef FEAT_MOUSE
3057 setmouse(); /* disables mouse for xterm */
3058 #endif
3059 ++no_mapping;
3060 ++allow_keys; /* no mapping here, but recognize keys */
3062 while (r != 'y' && r != 'n')
3064 /* same highlighting as for wait_return */
3065 smsg_attr(hl_attr(HLF_R), (char_u *)"%s (y/n)?", str);
3066 if (direct)
3067 r = get_keystroke();
3068 else
3069 r = plain_vgetc();
3070 if (r == Ctrl_C || r == ESC)
3071 r = 'n';
3072 msg_putchar(r); /* show what you typed */
3073 out_flush();
3075 --no_wait_return;
3076 State = save_State;
3077 #ifdef FEAT_MOUSE
3078 setmouse();
3079 #endif
3080 --no_mapping;
3081 --allow_keys;
3083 return r;
3087 * Get a key stroke directly from the user.
3088 * Ignores mouse clicks and scrollbar events, except a click for the left
3089 * button (used at the more prompt).
3090 * Doesn't use vgetc(), because it syncs undo and eats mapped characters.
3091 * Disadvantage: typeahead is ignored.
3092 * Translates the interrupt character for unix to ESC.
3095 get_keystroke()
3097 #define CBUFLEN 151
3098 char_u buf[CBUFLEN];
3099 int len = 0;
3100 int n;
3101 int save_mapped_ctrl_c = mapped_ctrl_c;
3102 int waited = 0;
3104 mapped_ctrl_c = FALSE; /* mappings are not used here */
3105 for (;;)
3107 cursor_on();
3108 out_flush();
3110 /* First time: blocking wait. Second time: wait up to 100ms for a
3111 * terminal code to complete. Leave some room for check_termcode() to
3112 * insert a key code into (max 5 chars plus NUL). And
3113 * fix_input_buffer() can triple the number of bytes. */
3114 n = ui_inchar(buf + len, (CBUFLEN - 6 - len) / 3,
3115 len == 0 ? -1L : 100L, 0);
3116 if (n > 0)
3118 /* Replace zero and CSI by a special key code. */
3119 n = fix_input_buffer(buf + len, n, FALSE);
3120 len += n;
3121 waited = 0;
3123 else if (len > 0)
3124 ++waited; /* keep track of the waiting time */
3126 /* Incomplete termcode and not timed out yet: get more characters */
3127 if ((n = check_termcode(1, buf, len)) < 0
3128 && (!p_ttimeout || waited * 100L < (p_ttm < 0 ? p_tm : p_ttm)))
3129 continue;
3131 /* found a termcode: adjust length */
3132 if (n > 0)
3133 len = n;
3134 if (len == 0) /* nothing typed yet */
3135 continue;
3137 /* Handle modifier and/or special key code. */
3138 n = buf[0];
3139 if (n == K_SPECIAL)
3141 n = TO_SPECIAL(buf[1], buf[2]);
3142 if (buf[1] == KS_MODIFIER
3143 || n == K_IGNORE
3144 #ifdef FEAT_MOUSE
3145 || n == K_LEFTMOUSE_NM
3146 || n == K_LEFTDRAG
3147 || n == K_LEFTRELEASE
3148 || n == K_LEFTRELEASE_NM
3149 || n == K_MIDDLEMOUSE
3150 || n == K_MIDDLEDRAG
3151 || n == K_MIDDLERELEASE
3152 || n == K_RIGHTMOUSE
3153 || n == K_RIGHTDRAG
3154 || n == K_RIGHTRELEASE
3155 || n == K_MOUSEDOWN
3156 || n == K_MOUSEUP
3157 || n == K_X1MOUSE
3158 || n == K_X1DRAG
3159 || n == K_X1RELEASE
3160 || n == K_X2MOUSE
3161 || n == K_X2DRAG
3162 || n == K_X2RELEASE
3163 # ifdef FEAT_GUI
3164 || n == K_VER_SCROLLBAR
3165 || n == K_HOR_SCROLLBAR
3166 # endif
3167 #endif
3170 if (buf[1] == KS_MODIFIER)
3171 mod_mask = buf[2];
3172 len -= 3;
3173 if (len > 0)
3174 mch_memmove(buf, buf + 3, (size_t)len);
3175 continue;
3177 break;
3179 #ifdef FEAT_MBYTE
3180 if (has_mbyte)
3182 if (MB_BYTE2LEN(n) > len)
3183 continue; /* more bytes to get */
3184 buf[len >= CBUFLEN ? CBUFLEN - 1 : len] = NUL;
3185 n = (*mb_ptr2char)(buf);
3187 #endif
3188 #ifdef UNIX
3189 if (n == intr_char)
3190 n = ESC;
3191 #endif
3192 break;
3195 mapped_ctrl_c = save_mapped_ctrl_c;
3196 return n;
3200 * Get a number from the user.
3201 * When "mouse_used" is not NULL allow using the mouse.
3204 get_number(colon, mouse_used)
3205 int colon; /* allow colon to abort */
3206 int *mouse_used;
3208 int n = 0;
3209 int c;
3210 int typed = 0;
3212 if (mouse_used != NULL)
3213 *mouse_used = FALSE;
3215 /* When not printing messages, the user won't know what to type, return a
3216 * zero (as if CR was hit). */
3217 if (msg_silent != 0)
3218 return 0;
3220 #ifdef USE_ON_FLY_SCROLL
3221 dont_scroll = TRUE; /* disallow scrolling here */
3222 #endif
3223 ++no_mapping;
3224 ++allow_keys; /* no mapping here, but recognize keys */
3225 for (;;)
3227 windgoto(msg_row, msg_col);
3228 c = safe_vgetc();
3229 if (VIM_ISDIGIT(c))
3231 n = n * 10 + c - '0';
3232 msg_putchar(c);
3233 ++typed;
3235 else if (c == K_DEL || c == K_KDEL || c == K_BS || c == Ctrl_H)
3237 if (typed > 0)
3239 MSG_PUTS("\b \b");
3240 --typed;
3242 n /= 10;
3244 #ifdef FEAT_MOUSE
3245 else if (mouse_used != NULL && c == K_LEFTMOUSE)
3247 *mouse_used = TRUE;
3248 n = mouse_row + 1;
3249 break;
3251 #endif
3252 else if (n == 0 && c == ':' && colon)
3254 stuffcharReadbuff(':');
3255 if (!exmode_active)
3256 cmdline_row = msg_row;
3257 skip_redraw = TRUE; /* skip redraw once */
3258 do_redraw = FALSE;
3259 break;
3261 else if (c == CAR || c == NL || c == Ctrl_C || c == ESC)
3262 break;
3264 --no_mapping;
3265 --allow_keys;
3266 return n;
3270 * Ask the user to enter a number.
3271 * When "mouse_used" is not NULL allow using the mouse and in that case return
3272 * the line number.
3275 prompt_for_number(mouse_used)
3276 int *mouse_used;
3278 int i;
3279 int save_cmdline_row;
3280 int save_State;
3282 /* When using ":silent" assume that <CR> was entered. */
3283 if (mouse_used != NULL)
3284 MSG_PUTS(_("Type number and <Enter> or click with mouse (empty cancels): "));
3285 else
3286 MSG_PUTS(_("Type number and <Enter> (empty cancels): "));
3288 /* Set the state such that text can be selected/copied/pasted and we still
3289 * get mouse events. */
3290 save_cmdline_row = cmdline_row;
3291 cmdline_row = 0;
3292 save_State = State;
3293 State = CMDLINE;
3295 i = get_number(TRUE, mouse_used);
3296 if (KeyTyped)
3298 /* don't call wait_return() now */
3299 /* msg_putchar('\n'); */
3300 cmdline_row = msg_row - 1;
3301 need_wait_return = FALSE;
3302 msg_didany = FALSE;
3303 msg_didout = FALSE;
3305 else
3306 cmdline_row = save_cmdline_row;
3307 State = save_State;
3309 return i;
3312 void
3313 msgmore(n)
3314 long n;
3316 long pn;
3318 if (global_busy /* no messages now, wait until global is finished */
3319 || !messaging()) /* 'lazyredraw' set, don't do messages now */
3320 return;
3322 /* We don't want to overwrite another important message, but do overwrite
3323 * a previous "more lines" or "fewer lines" message, so that "5dd" and
3324 * then "put" reports the last action. */
3325 if (keep_msg != NULL && !keep_msg_more)
3326 return;
3328 if (n > 0)
3329 pn = n;
3330 else
3331 pn = -n;
3333 if (pn > p_report)
3335 if (pn == 1)
3337 if (n > 0)
3338 STRCPY(msg_buf, _("1 more line"));
3339 else
3340 STRCPY(msg_buf, _("1 line less"));
3342 else
3344 if (n > 0)
3345 sprintf((char *)msg_buf, _("%ld more lines"), pn);
3346 else
3347 sprintf((char *)msg_buf, _("%ld fewer lines"), pn);
3349 if (got_int)
3350 STRCAT(msg_buf, _(" (Interrupted)"));
3351 if (msg(msg_buf))
3353 set_keep_msg(msg_buf, 0);
3354 keep_msg_more = TRUE;
3360 * flush map and typeahead buffers and give a warning for an error
3362 void
3363 beep_flush()
3365 if (emsg_silent == 0)
3367 flush_buffers(FALSE);
3368 vim_beep();
3373 * give a warning for an error
3375 void
3376 vim_beep()
3378 if (emsg_silent == 0)
3380 if (p_vb
3381 #ifdef FEAT_GUI
3382 /* While the GUI is starting up the termcap is set for the GUI
3383 * but the output still goes to a terminal. */
3384 && !(gui.in_use && gui.starting)
3385 #endif
3388 out_str(T_VB);
3390 else
3392 #ifdef MSDOS
3394 * The number of beeps outputted is reduced to avoid having to wait
3395 * for all the beeps to finish. This is only a problem on systems
3396 * where the beeps don't overlap.
3398 if (beep_count == 0 || beep_count == 10)
3400 out_char(BELL);
3401 beep_count = 1;
3403 else
3404 ++beep_count;
3405 #else
3406 out_char(BELL);
3407 #endif
3410 /* When 'verbose' is set and we are sourcing a script or executing a
3411 * function give the user a hint where the beep comes from. */
3412 if (vim_strchr(p_debug, 'e') != NULL)
3414 msg_source(hl_attr(HLF_W));
3415 msg_attr((char_u *)_("Beep!"), hl_attr(HLF_W));
3421 * To get the "real" home directory:
3422 * - get value of $HOME
3423 * For Unix:
3424 * - go to that directory
3425 * - do mch_dirname() to get the real name of that directory.
3426 * This also works with mounts and links.
3427 * Don't do this for MS-DOS, it will change the "current dir" for a drive.
3429 static char_u *homedir = NULL;
3431 void
3432 init_homedir()
3434 char_u *var;
3436 /* In case we are called a second time (when 'encoding' changes). */
3437 vim_free(homedir);
3438 homedir = NULL;
3440 #ifdef VMS
3441 var = mch_getenv((char_u *)"SYS$LOGIN");
3442 #else
3443 var = mch_getenv((char_u *)"HOME");
3444 #endif
3446 if (var != NULL && *var == NUL) /* empty is same as not set */
3447 var = NULL;
3449 #ifdef WIN3264
3451 * Weird but true: $HOME may contain an indirect reference to another
3452 * variable, esp. "%USERPROFILE%". Happens when $USERPROFILE isn't set
3453 * when $HOME is being set.
3455 if (var != NULL && *var == '%')
3457 char_u *p;
3458 char_u *exp;
3460 p = vim_strchr(var + 1, '%');
3461 if (p != NULL)
3463 vim_strncpy(NameBuff, var + 1, p - (var + 1));
3464 exp = mch_getenv(NameBuff);
3465 if (exp != NULL && *exp != NUL
3466 && STRLEN(exp) + STRLEN(p) < MAXPATHL)
3468 vim_snprintf((char *)NameBuff, MAXPATHL, "%s%s", exp, p + 1);
3469 var = NameBuff;
3470 /* Also set $HOME, it's needed for _viminfo. */
3471 vim_setenv((char_u *)"HOME", NameBuff);
3477 * Typically, $HOME is not defined on Windows, unless the user has
3478 * specifically defined it for Vim's sake. However, on Windows NT
3479 * platforms, $HOMEDRIVE and $HOMEPATH are automatically defined for
3480 * each user. Try constructing $HOME from these.
3482 if (var == NULL)
3484 char_u *homedrive, *homepath;
3486 homedrive = mch_getenv((char_u *)"HOMEDRIVE");
3487 homepath = mch_getenv((char_u *)"HOMEPATH");
3488 if (homepath == NULL || *homepath == NUL)
3489 homepath = "\\";
3490 if (homedrive != NULL
3491 && STRLEN(homedrive) + STRLEN(homepath) < MAXPATHL)
3493 sprintf((char *)NameBuff, "%s%s", homedrive, homepath);
3494 if (NameBuff[0] != NUL)
3496 var = NameBuff;
3497 /* Also set $HOME, it's needed for _viminfo. */
3498 vim_setenv((char_u *)"HOME", NameBuff);
3503 # if defined(FEAT_MBYTE)
3504 if (enc_utf8 && var != NULL)
3506 int len;
3507 char_u *pp;
3509 /* Convert from active codepage to UTF-8. Other conversions are
3510 * not done, because they would fail for non-ASCII characters. */
3511 acp_to_enc(var, (int)STRLEN(var), &pp, &len);
3512 if (pp != NULL)
3514 homedir = pp;
3515 return;
3518 # endif
3519 #endif
3521 #if defined(OS2) || defined(MSDOS) || defined(MSWIN)
3523 * Default home dir is C:/
3524 * Best assumption we can make in such a situation.
3526 if (var == NULL)
3527 var = "C:/";
3528 #endif
3529 if (var != NULL)
3531 #ifdef UNIX
3533 * Change to the directory and get the actual path. This resolves
3534 * links. Don't do it when we can't return.
3536 if (mch_dirname(NameBuff, MAXPATHL) == OK
3537 && mch_chdir((char *)NameBuff) == 0)
3539 if (!mch_chdir((char *)var) && mch_dirname(IObuff, IOSIZE) == OK)
3540 var = IObuff;
3541 if (mch_chdir((char *)NameBuff) != 0)
3542 EMSG(_(e_prev_dir));
3544 #endif
3545 homedir = vim_strsave(var);
3549 #if defined(EXITFREE) || defined(PROTO)
3550 void
3551 free_homedir()
3553 vim_free(homedir);
3555 #endif
3558 * Call expand_env() and store the result in an allocated string.
3559 * This is not very memory efficient, this expects the result to be freed
3560 * again soon.
3562 char_u *
3563 expand_env_save(src)
3564 char_u *src;
3566 return expand_env_save_opt(src, FALSE);
3570 * Idem, but when "one" is TRUE handle the string as one file name, only
3571 * expand "~" at the start.
3573 char_u *
3574 expand_env_save_opt(src, one)
3575 char_u *src;
3576 int one;
3578 char_u *p;
3580 p = alloc(MAXPATHL);
3581 if (p != NULL)
3582 expand_env_esc(src, p, MAXPATHL, FALSE, one, NULL);
3583 return p;
3587 * Expand environment variable with path name.
3588 * "~/" is also expanded, using $HOME. For Unix "~user/" is expanded.
3589 * Skips over "\ ", "\~" and "\$" (not for Win32 though).
3590 * If anything fails no expansion is done and dst equals src.
3592 void
3593 expand_env(src, dst, dstlen)
3594 char_u *src; /* input string e.g. "$HOME/vim.hlp" */
3595 char_u *dst; /* where to put the result */
3596 int dstlen; /* maximum length of the result */
3598 expand_env_esc(src, dst, dstlen, FALSE, FALSE, NULL);
3601 void
3602 expand_env_esc(srcp, dst, dstlen, esc, one, startstr)
3603 char_u *srcp; /* input string e.g. "$HOME/vim.hlp" */
3604 char_u *dst; /* where to put the result */
3605 int dstlen; /* maximum length of the result */
3606 int esc; /* escape spaces in expanded variables */
3607 int one; /* "srcp" is one file name */
3608 char_u *startstr; /* start again after this (can be NULL) */
3610 char_u *src;
3611 char_u *tail;
3612 int c;
3613 char_u *var;
3614 int copy_char;
3615 int mustfree; /* var was allocated, need to free it later */
3616 int at_start = TRUE; /* at start of a name */
3617 int startstr_len = 0;
3619 if (startstr != NULL)
3620 startstr_len = (int)STRLEN(startstr);
3622 src = skipwhite(srcp);
3623 --dstlen; /* leave one char space for "\," */
3624 while (*src && dstlen > 0)
3626 copy_char = TRUE;
3627 if ((*src == '$'
3628 #ifdef VMS
3629 && at_start
3630 #endif
3632 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3633 || *src == '%'
3634 #endif
3635 || (*src == '~' && at_start))
3637 mustfree = FALSE;
3640 * The variable name is copied into dst temporarily, because it may
3641 * be a string in read-only memory and a NUL needs to be appended.
3643 if (*src != '~') /* environment var */
3645 tail = src + 1;
3646 var = dst;
3647 c = dstlen - 1;
3649 #ifdef UNIX
3650 /* Unix has ${var-name} type environment vars */
3651 if (*tail == '{' && !vim_isIDc('{'))
3653 tail++; /* ignore '{' */
3654 while (c-- > 0 && *tail && *tail != '}')
3655 *var++ = *tail++;
3657 else
3658 #endif
3660 while (c-- > 0 && *tail != NUL && ((vim_isIDc(*tail))
3661 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3662 || (*src == '%' && *tail != '%')
3663 #endif
3666 #ifdef OS2 /* env vars only in uppercase */
3667 *var++ = TOUPPER_LOC(*tail);
3668 tail++; /* toupper() may be a macro! */
3669 #else
3670 *var++ = *tail++;
3671 #endif
3675 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(UNIX)
3676 # ifdef UNIX
3677 if (src[1] == '{' && *tail != '}')
3678 # else
3679 if (*src == '%' && *tail != '%')
3680 # endif
3681 var = NULL;
3682 else
3684 # ifdef UNIX
3685 if (src[1] == '{')
3686 # else
3687 if (*src == '%')
3688 #endif
3689 ++tail;
3690 #endif
3691 *var = NUL;
3692 var = vim_getenv(dst, &mustfree);
3693 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(UNIX)
3695 #endif
3697 /* home directory */
3698 else if ( src[1] == NUL
3699 || vim_ispathsep(src[1])
3700 || vim_strchr((char_u *)" ,\t\n", src[1]) != NULL)
3702 var = homedir;
3703 tail = src + 1;
3705 else /* user directory */
3707 #if defined(UNIX) || (defined(VMS) && defined(USER_HOME))
3709 * Copy ~user to dst[], so we can put a NUL after it.
3711 tail = src;
3712 var = dst;
3713 c = dstlen - 1;
3714 while ( c-- > 0
3715 && *tail
3716 && vim_isfilec(*tail)
3717 && !vim_ispathsep(*tail))
3718 *var++ = *tail++;
3719 *var = NUL;
3720 # ifdef UNIX
3722 * If the system supports getpwnam(), use it.
3723 * Otherwise, or if getpwnam() fails, the shell is used to
3724 * expand ~user. This is slower and may fail if the shell
3725 * does not support ~user (old versions of /bin/sh).
3727 # if defined(HAVE_GETPWNAM) && defined(HAVE_PWD_H)
3729 struct passwd *pw;
3731 /* Note: memory allocated by getpwnam() is never freed.
3732 * Calling endpwent() apparently doesn't help. */
3733 pw = getpwnam((char *)dst + 1);
3734 if (pw != NULL)
3735 var = (char_u *)pw->pw_dir;
3736 else
3737 var = NULL;
3739 if (var == NULL)
3740 # endif
3742 expand_T xpc;
3744 ExpandInit(&xpc);
3745 xpc.xp_context = EXPAND_FILES;
3746 var = ExpandOne(&xpc, dst, NULL,
3747 WILD_ADD_SLASH|WILD_SILENT, WILD_EXPAND_FREE);
3748 mustfree = TRUE;
3751 # else /* !UNIX, thus VMS */
3753 * USER_HOME is a comma-separated list of
3754 * directories to search for the user account in.
3757 char_u test[MAXPATHL], paths[MAXPATHL];
3758 char_u *path, *next_path, *ptr;
3759 struct stat st;
3761 STRCPY(paths, USER_HOME);
3762 next_path = paths;
3763 while (*next_path)
3765 for (path = next_path; *next_path && *next_path != ',';
3766 next_path++);
3767 if (*next_path)
3768 *next_path++ = NUL;
3769 STRCPY(test, path);
3770 STRCAT(test, "/");
3771 STRCAT(test, dst + 1);
3772 if (mch_stat(test, &st) == 0)
3774 var = alloc(STRLEN(test) + 1);
3775 STRCPY(var, test);
3776 mustfree = TRUE;
3777 break;
3781 # endif /* UNIX */
3782 #else
3783 /* cannot expand user's home directory, so don't try */
3784 var = NULL;
3785 tail = (char_u *)""; /* for gcc */
3786 #endif /* UNIX || VMS */
3789 #ifdef BACKSLASH_IN_FILENAME
3790 /* If 'shellslash' is set change backslashes to forward slashes.
3791 * Can't use slash_adjust(), p_ssl may be set temporarily. */
3792 if (p_ssl && var != NULL && vim_strchr(var, '\\') != NULL)
3794 char_u *p = vim_strsave(var);
3796 if (p != NULL)
3798 if (mustfree)
3799 vim_free(var);
3800 var = p;
3801 mustfree = TRUE;
3802 forward_slash(var);
3805 #endif
3807 /* If "var" contains white space, escape it with a backslash.
3808 * Required for ":e ~/tt" when $HOME includes a space. */
3809 if (esc && var != NULL && vim_strpbrk(var, (char_u *)" \t") != NULL)
3811 char_u *p = vim_strsave_escaped(var, (char_u *)" \t");
3813 if (p != NULL)
3815 if (mustfree)
3816 vim_free(var);
3817 var = p;
3818 mustfree = TRUE;
3822 if (var != NULL && *var != NUL
3823 && (STRLEN(var) + STRLEN(tail) + 1 < (unsigned)dstlen))
3825 STRCPY(dst, var);
3826 dstlen -= (int)STRLEN(var);
3827 c = (int)STRLEN(var);
3828 /* if var[] ends in a path separator and tail[] starts
3829 * with it, skip a character */
3830 if (*var != NUL && after_pathsep(dst, dst + c)
3831 #if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA)
3832 && dst[-1] != ':'
3833 #endif
3834 && vim_ispathsep(*tail))
3835 ++tail;
3836 dst += c;
3837 src = tail;
3838 copy_char = FALSE;
3840 if (mustfree)
3841 vim_free(var);
3844 if (copy_char) /* copy at least one char */
3847 * Recognize the start of a new name, for '~'.
3848 * Don't do this when "one" is TRUE, to avoid expanding "~" in
3849 * ":edit foo ~ foo".
3851 at_start = FALSE;
3852 if (src[0] == '\\' && src[1] != NUL)
3854 *dst++ = *src++;
3855 --dstlen;
3857 else if ((src[0] == ' ' || src[0] == ',') && !one)
3858 at_start = TRUE;
3859 *dst++ = *src++;
3860 --dstlen;
3862 if (startstr != NULL && src - startstr_len >= srcp
3863 && STRNCMP(src - startstr_len, startstr, startstr_len) == 0)
3864 at_start = TRUE;
3867 *dst = NUL;
3871 * Vim's version of getenv().
3872 * Special handling of $HOME, $VIM and $VIMRUNTIME.
3873 * Also does ACP to 'enc' conversion for Win32.
3875 char_u *
3876 vim_getenv(name, mustfree)
3877 char_u *name;
3878 int *mustfree; /* set to TRUE when returned is allocated */
3880 char_u *p;
3881 char_u *pend;
3882 int vimruntime;
3884 #if defined(OS2) || defined(MSDOS) || defined(MSWIN)
3885 /* use "C:/" when $HOME is not set */
3886 if (STRCMP(name, "HOME") == 0)
3887 return homedir;
3888 #endif
3890 p = mch_getenv(name);
3891 if (p != NULL && *p == NUL) /* empty is the same as not set */
3892 p = NULL;
3894 if (p != NULL)
3896 #if defined(FEAT_MBYTE) && defined(WIN3264)
3897 if (enc_utf8)
3899 int len;
3900 char_u *pp;
3902 /* Convert from active codepage to UTF-8. Other conversions are
3903 * not done, because they would fail for non-ASCII characters. */
3904 acp_to_enc(p, (int)STRLEN(p), &pp, &len);
3905 if (pp != NULL)
3907 p = pp;
3908 *mustfree = TRUE;
3911 #endif
3912 return p;
3915 vimruntime = (STRCMP(name, "VIMRUNTIME") == 0);
3916 if (!vimruntime && STRCMP(name, "VIM") != 0)
3917 return NULL;
3920 * When expanding $VIMRUNTIME fails, try using $VIM/vim<version> or $VIM.
3921 * Don't do this when default_vimruntime_dir is non-empty.
3923 if (vimruntime
3924 #ifdef HAVE_PATHDEF
3925 && *default_vimruntime_dir == NUL
3926 #endif
3929 p = mch_getenv((char_u *)"VIM");
3930 if (p != NULL && *p == NUL) /* empty is the same as not set */
3931 p = NULL;
3932 if (p != NULL)
3934 p = vim_version_dir(p);
3935 if (p != NULL)
3936 *mustfree = TRUE;
3937 else
3938 p = mch_getenv((char_u *)"VIM");
3940 #if defined(FEAT_MBYTE) && defined(WIN3264)
3941 if (enc_utf8)
3943 int len;
3944 char_u *pp;
3946 /* Convert from active codepage to UTF-8. Other conversions
3947 * are not done, because they would fail for non-ASCII
3948 * characters. */
3949 acp_to_enc(p, (int)STRLEN(p), &pp, &len);
3950 if (pp != NULL)
3952 if (mustfree)
3953 vim_free(p);
3954 p = pp;
3955 *mustfree = TRUE;
3958 #endif
3963 * When expanding $VIM or $VIMRUNTIME fails, try using:
3964 * - the directory name from 'helpfile' (unless it contains '$')
3965 * - the executable name from argv[0]
3967 if (p == NULL)
3969 if (p_hf != NULL && vim_strchr(p_hf, '$') == NULL)
3970 p = p_hf;
3971 #ifdef USE_EXE_NAME
3973 * Use the name of the executable, obtained from argv[0].
3975 else
3976 p = exe_name;
3977 #endif
3978 if (p != NULL)
3980 /* remove the file name */
3981 pend = gettail(p);
3983 /* remove "doc/" from 'helpfile', if present */
3984 if (p == p_hf)
3985 pend = remove_tail(p, pend, (char_u *)"doc");
3987 #ifdef USE_EXE_NAME
3988 # ifdef MACOS_X
3989 /* remove "MacOS" from exe_name and add "Resources/vim" */
3990 if (p == exe_name)
3992 char_u *pend1;
3993 char_u *pnew;
3995 pend1 = remove_tail(p, pend, (char_u *)"MacOS");
3996 if (pend1 != pend)
3998 pnew = alloc((unsigned)(pend1 - p) + 15);
3999 if (pnew != NULL)
4001 STRNCPY(pnew, p, (pend1 - p));
4002 STRCPY(pnew + (pend1 - p), "Resources/vim");
4003 p = pnew;
4004 pend = p + STRLEN(p);
4008 # endif
4009 /* remove "src/" from exe_name, if present */
4010 if (p == exe_name)
4011 pend = remove_tail(p, pend, (char_u *)"src");
4012 #endif
4014 /* for $VIM, remove "runtime/" or "vim54/", if present */
4015 if (!vimruntime)
4017 pend = remove_tail(p, pend, (char_u *)RUNTIME_DIRNAME);
4018 pend = remove_tail(p, pend, (char_u *)VIM_VERSION_NODOT);
4021 /* remove trailing path separator */
4022 #ifndef MACOS_CLASSIC
4023 /* With MacOS path (with colons) the final colon is required */
4024 /* to avoid confusion between absolute and relative path */
4025 if (pend > p && after_pathsep(p, pend))
4026 --pend;
4027 #endif
4029 #ifdef MACOS_X
4030 if (p == exe_name || p == p_hf)
4031 #endif
4032 /* check that the result is a directory name */
4033 p = vim_strnsave(p, (int)(pend - p));
4035 if (p != NULL && !mch_isdir(p))
4037 vim_free(p);
4038 p = NULL;
4040 else
4042 #ifdef USE_EXE_NAME
4043 /* may add "/vim54" or "/runtime" if it exists */
4044 if (vimruntime && (pend = vim_version_dir(p)) != NULL)
4046 vim_free(p);
4047 p = pend;
4049 #endif
4050 *mustfree = TRUE;
4055 #ifdef HAVE_PATHDEF
4056 /* When there is a pathdef.c file we can use default_vim_dir and
4057 * default_vimruntime_dir */
4058 if (p == NULL)
4060 /* Only use default_vimruntime_dir when it is not empty */
4061 if (vimruntime && *default_vimruntime_dir != NUL)
4063 p = default_vimruntime_dir;
4064 *mustfree = FALSE;
4066 else if (*default_vim_dir != NUL)
4068 if (vimruntime && (p = vim_version_dir(default_vim_dir)) != NULL)
4069 *mustfree = TRUE;
4070 else
4072 p = default_vim_dir;
4073 *mustfree = FALSE;
4077 #endif
4080 * Set the environment variable, so that the new value can be found fast
4081 * next time, and others can also use it (e.g. Perl).
4083 if (p != NULL)
4085 if (vimruntime)
4087 vim_setenv((char_u *)"VIMRUNTIME", p);
4088 didset_vimruntime = TRUE;
4089 #ifdef FEAT_GETTEXT
4091 char_u *buf = concat_str(p, (char_u *)"/lang");
4093 if (buf != NULL)
4095 bindtextdomain(VIMPACKAGE, (char *)buf);
4096 vim_free(buf);
4099 #endif
4101 else
4103 vim_setenv((char_u *)"VIM", p);
4104 didset_vim = TRUE;
4107 return p;
4111 * Check if the directory "vimdir/<version>" or "vimdir/runtime" exists.
4112 * Return NULL if not, return its name in allocated memory otherwise.
4114 static char_u *
4115 vim_version_dir(vimdir)
4116 char_u *vimdir;
4118 char_u *p;
4120 if (vimdir == NULL || *vimdir == NUL)
4121 return NULL;
4122 p = concat_fnames(vimdir, (char_u *)VIM_VERSION_NODOT, TRUE);
4123 if (p != NULL && mch_isdir(p))
4124 return p;
4125 vim_free(p);
4126 p = concat_fnames(vimdir, (char_u *)RUNTIME_DIRNAME, TRUE);
4127 if (p != NULL && mch_isdir(p))
4128 return p;
4129 vim_free(p);
4130 return NULL;
4134 * If the string between "p" and "pend" ends in "name/", return "pend" minus
4135 * the length of "name/". Otherwise return "pend".
4137 static char_u *
4138 remove_tail(p, pend, name)
4139 char_u *p;
4140 char_u *pend;
4141 char_u *name;
4143 int len = (int)STRLEN(name) + 1;
4144 char_u *newend = pend - len;
4146 if (newend >= p
4147 && fnamencmp(newend, name, len - 1) == 0
4148 && (newend == p || after_pathsep(p, newend)))
4149 return newend;
4150 return pend;
4154 * Our portable version of setenv.
4156 void
4157 vim_setenv(name, val)
4158 char_u *name;
4159 char_u *val;
4161 #ifdef HAVE_SETENV
4162 mch_setenv((char *)name, (char *)val, 1);
4163 #else
4164 char_u *envbuf;
4167 * Putenv does not copy the string, it has to remain
4168 * valid. The allocated memory will never be freed.
4170 envbuf = alloc((unsigned)(STRLEN(name) + STRLEN(val) + 2));
4171 if (envbuf != NULL)
4173 sprintf((char *)envbuf, "%s=%s", name, val);
4174 putenv((char *)envbuf);
4176 #endif
4179 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4181 * Function given to ExpandGeneric() to obtain an environment variable name.
4183 char_u *
4184 get_env_name(xp, idx)
4185 expand_T *xp UNUSED;
4186 int idx;
4188 # if defined(AMIGA) || defined(__MRC__) || defined(__SC__)
4190 * No environ[] on the Amiga and on the Mac (using MPW).
4192 return NULL;
4193 # else
4194 # ifndef __WIN32__
4195 /* Borland C++ 5.2 has this in a header file. */
4196 extern char **environ;
4197 # endif
4198 # define ENVNAMELEN 100
4199 static char_u name[ENVNAMELEN];
4200 char_u *str;
4201 int n;
4203 str = (char_u *)environ[idx];
4204 if (str == NULL)
4205 return NULL;
4207 for (n = 0; n < ENVNAMELEN - 1; ++n)
4209 if (str[n] == '=' || str[n] == NUL)
4210 break;
4211 name[n] = str[n];
4213 name[n] = NUL;
4214 return name;
4215 # endif
4217 #endif
4220 * Replace home directory by "~" in each space or comma separated file name in
4221 * 'src'.
4222 * If anything fails (except when out of space) dst equals src.
4224 void
4225 home_replace(buf, src, dst, dstlen, one)
4226 buf_T *buf; /* when not NULL, check for help files */
4227 char_u *src; /* input file name */
4228 char_u *dst; /* where to put the result */
4229 int dstlen; /* maximum length of the result */
4230 int one; /* if TRUE, only replace one file name, include
4231 spaces and commas in the file name. */
4233 size_t dirlen = 0, envlen = 0;
4234 size_t len;
4235 char_u *homedir_env;
4236 char_u *p;
4238 if (src == NULL)
4240 *dst = NUL;
4241 return;
4245 * If the file is a help file, remove the path completely.
4247 if (buf != NULL && buf->b_help)
4249 STRCPY(dst, gettail(src));
4250 return;
4254 * We check both the value of the $HOME environment variable and the
4255 * "real" home directory.
4257 if (homedir != NULL)
4258 dirlen = STRLEN(homedir);
4260 #ifdef VMS
4261 homedir_env = mch_getenv((char_u *)"SYS$LOGIN");
4262 #else
4263 homedir_env = mch_getenv((char_u *)"HOME");
4264 #endif
4266 if (homedir_env != NULL && *homedir_env == NUL)
4267 homedir_env = NULL;
4268 if (homedir_env != NULL)
4269 envlen = STRLEN(homedir_env);
4271 if (!one)
4272 src = skipwhite(src);
4273 while (*src && dstlen > 0)
4276 * Here we are at the beginning of a file name.
4277 * First, check to see if the beginning of the file name matches
4278 * $HOME or the "real" home directory. Check that there is a '/'
4279 * after the match (so that if e.g. the file is "/home/pieter/bla",
4280 * and the home directory is "/home/piet", the file does not end up
4281 * as "~er/bla" (which would seem to indicate the file "bla" in user
4282 * er's home directory)).
4284 p = homedir;
4285 len = dirlen;
4286 for (;;)
4288 if ( len
4289 && fnamencmp(src, p, len) == 0
4290 && (vim_ispathsep(src[len])
4291 || (!one && (src[len] == ',' || src[len] == ' '))
4292 || src[len] == NUL))
4294 src += len;
4295 if (--dstlen > 0)
4296 *dst++ = '~';
4299 * If it's just the home directory, add "/".
4301 if (!vim_ispathsep(src[0]) && --dstlen > 0)
4302 *dst++ = '/';
4303 break;
4305 if (p == homedir_env)
4306 break;
4307 p = homedir_env;
4308 len = envlen;
4311 /* if (!one) skip to separator: space or comma */
4312 while (*src && (one || (*src != ',' && *src != ' ')) && --dstlen > 0)
4313 *dst++ = *src++;
4314 /* skip separator */
4315 while ((*src == ' ' || *src == ',') && --dstlen > 0)
4316 *dst++ = *src++;
4318 /* if (dstlen == 0) out of space, what to do??? */
4320 *dst = NUL;
4324 * Like home_replace, store the replaced string in allocated memory.
4325 * When something fails, NULL is returned.
4327 char_u *
4328 home_replace_save(buf, src)
4329 buf_T *buf; /* when not NULL, check for help files */
4330 char_u *src; /* input file name */
4332 char_u *dst;
4333 unsigned len;
4335 len = 3; /* space for "~/" and trailing NUL */
4336 if (src != NULL) /* just in case */
4337 len += (unsigned)STRLEN(src);
4338 dst = alloc(len);
4339 if (dst != NULL)
4340 home_replace(buf, src, dst, len, TRUE);
4341 return dst;
4345 * Compare two file names and return:
4346 * FPC_SAME if they both exist and are the same file.
4347 * FPC_SAMEX if they both don't exist and have the same file name.
4348 * FPC_DIFF if they both exist and are different files.
4349 * FPC_NOTX if they both don't exist.
4350 * FPC_DIFFX if one of them doesn't exist.
4351 * For the first name environment variables are expanded
4354 fullpathcmp(s1, s2, checkname)
4355 char_u *s1, *s2;
4356 int checkname; /* when both don't exist, check file names */
4358 #ifdef UNIX
4359 char_u exp1[MAXPATHL];
4360 char_u full1[MAXPATHL];
4361 char_u full2[MAXPATHL];
4362 struct stat st1, st2;
4363 int r1, r2;
4365 expand_env(s1, exp1, MAXPATHL);
4366 r1 = mch_stat((char *)exp1, &st1);
4367 r2 = mch_stat((char *)s2, &st2);
4368 if (r1 != 0 && r2 != 0)
4370 /* if mch_stat() doesn't work, may compare the names */
4371 if (checkname)
4373 if (fnamecmp(exp1, s2) == 0)
4374 return FPC_SAMEX;
4375 r1 = vim_FullName(exp1, full1, MAXPATHL, FALSE);
4376 r2 = vim_FullName(s2, full2, MAXPATHL, FALSE);
4377 if (r1 == OK && r2 == OK && fnamecmp(full1, full2) == 0)
4378 return FPC_SAMEX;
4380 return FPC_NOTX;
4382 if (r1 != 0 || r2 != 0)
4383 return FPC_DIFFX;
4384 if (st1.st_dev == st2.st_dev && st1.st_ino == st2.st_ino)
4385 return FPC_SAME;
4386 return FPC_DIFF;
4387 #else
4388 char_u *exp1; /* expanded s1 */
4389 char_u *full1; /* full path of s1 */
4390 char_u *full2; /* full path of s2 */
4391 int retval = FPC_DIFF;
4392 int r1, r2;
4394 /* allocate one buffer to store three paths (alloc()/free() is slow!) */
4395 if ((exp1 = alloc(MAXPATHL * 3)) != NULL)
4397 full1 = exp1 + MAXPATHL;
4398 full2 = full1 + MAXPATHL;
4400 expand_env(s1, exp1, MAXPATHL);
4401 r1 = vim_FullName(exp1, full1, MAXPATHL, FALSE);
4402 r2 = vim_FullName(s2, full2, MAXPATHL, FALSE);
4404 /* If vim_FullName() fails, the file probably doesn't exist. */
4405 if (r1 != OK && r2 != OK)
4407 if (checkname && fnamecmp(exp1, s2) == 0)
4408 retval = FPC_SAMEX;
4409 else
4410 retval = FPC_NOTX;
4412 else if (r1 != OK || r2 != OK)
4413 retval = FPC_DIFFX;
4414 else if (fnamecmp(full1, full2))
4415 retval = FPC_DIFF;
4416 else
4417 retval = FPC_SAME;
4418 vim_free(exp1);
4420 return retval;
4421 #endif
4425 * Get the tail of a path: the file name.
4426 * Fail safe: never returns NULL.
4428 char_u *
4429 gettail(fname)
4430 char_u *fname;
4432 char_u *p1, *p2;
4434 if (fname == NULL)
4435 return (char_u *)"";
4436 for (p1 = p2 = fname; *p2; ) /* find last part of path */
4438 if (vim_ispathsep(*p2))
4439 p1 = p2 + 1;
4440 mb_ptr_adv(p2);
4442 return p1;
4446 * Get pointer to tail of "fname", including path separators. Putting a NUL
4447 * here leaves the directory name. Takes care of "c:/" and "//".
4448 * Always returns a valid pointer.
4450 char_u *
4451 gettail_sep(fname)
4452 char_u *fname;
4454 char_u *p;
4455 char_u *t;
4457 p = get_past_head(fname); /* don't remove the '/' from "c:/file" */
4458 t = gettail(fname);
4459 while (t > p && after_pathsep(fname, t))
4460 --t;
4461 #ifdef VMS
4462 /* path separator is part of the path */
4463 ++t;
4464 #endif
4465 return t;
4469 * get the next path component (just after the next path separator).
4471 char_u *
4472 getnextcomp(fname)
4473 char_u *fname;
4475 while (*fname && !vim_ispathsep(*fname))
4476 mb_ptr_adv(fname);
4477 if (*fname)
4478 ++fname;
4479 return fname;
4483 * Get a pointer to one character past the head of a path name.
4484 * Unix: after "/"; DOS: after "c:\"; Amiga: after "disk:/"; Mac: no head.
4485 * If there is no head, path is returned.
4487 char_u *
4488 get_past_head(path)
4489 char_u *path;
4491 char_u *retval;
4493 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
4494 /* may skip "c:" */
4495 if (isalpha(path[0]) && path[1] == ':')
4496 retval = path + 2;
4497 else
4498 retval = path;
4499 #else
4500 # if defined(AMIGA)
4501 /* may skip "label:" */
4502 retval = vim_strchr(path, ':');
4503 if (retval == NULL)
4504 retval = path;
4505 # else /* Unix */
4506 retval = path;
4507 # endif
4508 #endif
4510 while (vim_ispathsep(*retval))
4511 ++retval;
4513 return retval;
4517 * return TRUE if 'c' is a path separator.
4520 vim_ispathsep(c)
4521 int c;
4523 #ifdef RISCOS
4524 return (c == '.' || c == ':');
4525 #else
4526 # ifdef UNIX
4527 return (c == '/'); /* UNIX has ':' inside file names */
4528 # else
4529 # ifdef BACKSLASH_IN_FILENAME
4530 return (c == ':' || c == '/' || c == '\\');
4531 # else
4532 # ifdef VMS
4533 /* server"user passwd"::device:[full.path.name]fname.extension;version" */
4534 return (c == ':' || c == '[' || c == ']' || c == '/'
4535 || c == '<' || c == '>' || c == '"' );
4536 # else /* Amiga */
4537 return (c == ':' || c == '/');
4538 # endif /* VMS */
4539 # endif
4540 # endif
4541 #endif /* RISC OS */
4544 #if defined(FEAT_SEARCHPATH) || defined(PROTO)
4546 * return TRUE if 'c' is a path list separator.
4549 vim_ispathlistsep(c)
4550 int c;
4552 #ifdef UNIX
4553 return (c == ':');
4554 #else
4555 return (c == ';'); /* might not be right for every system... */
4556 #endif
4558 #endif
4560 #if defined(FEAT_GUI_TABLINE) || defined(FEAT_WINDOWS) \
4561 || defined(FEAT_EVAL) || defined(PROTO)
4563 * Shorten the path of a file from "~/foo/../.bar/fname" to "~/f/../.b/fname"
4564 * It's done in-place.
4566 void
4567 shorten_dir(str)
4568 char_u *str;
4570 char_u *tail, *s, *d;
4571 int skip = FALSE;
4573 tail = gettail(str);
4574 d = str;
4575 for (s = str; ; ++s)
4577 if (s >= tail) /* copy the whole tail */
4579 *d++ = *s;
4580 if (*s == NUL)
4581 break;
4583 else if (vim_ispathsep(*s)) /* copy '/' and next char */
4585 *d++ = *s;
4586 skip = FALSE;
4588 else if (!skip)
4590 *d++ = *s; /* copy next char */
4591 if (*s != '~' && *s != '.') /* and leading "~" and "." */
4592 skip = TRUE;
4593 # ifdef FEAT_MBYTE
4594 if (has_mbyte)
4596 int l = mb_ptr2len(s);
4598 while (--l > 0)
4599 *d++ = *++s;
4601 # endif
4605 #endif
4608 * Return TRUE if the directory of "fname" exists, FALSE otherwise.
4609 * Also returns TRUE if there is no directory name.
4610 * "fname" must be writable!.
4613 dir_of_file_exists(fname)
4614 char_u *fname;
4616 char_u *p;
4617 int c;
4618 int retval;
4620 p = gettail_sep(fname);
4621 if (p == fname)
4622 return TRUE;
4623 c = *p;
4624 *p = NUL;
4625 retval = mch_isdir(fname);
4626 *p = c;
4627 return retval;
4630 #if (defined(CASE_INSENSITIVE_FILENAME) && defined(BACKSLASH_IN_FILENAME)) \
4631 || defined(PROTO)
4633 * Versions of fnamecmp() and fnamencmp() that handle '/' and '\' equally.
4636 vim_fnamecmp(x, y)
4637 char_u *x, *y;
4639 return vim_fnamencmp(x, y, MAXPATHL);
4643 vim_fnamencmp(x, y, len)
4644 char_u *x, *y;
4645 size_t len;
4647 while (len > 0 && *x && *y)
4649 if (TOLOWER_LOC(*x) != TOLOWER_LOC(*y)
4650 && !(*x == '/' && *y == '\\')
4651 && !(*x == '\\' && *y == '/'))
4652 break;
4653 ++x;
4654 ++y;
4655 --len;
4657 if (len == 0)
4658 return 0;
4659 return (*x - *y);
4661 #endif
4664 * Concatenate file names fname1 and fname2 into allocated memory.
4665 * Only add a '/' or '\\' when 'sep' is TRUE and it is necessary.
4667 char_u *
4668 concat_fnames(fname1, fname2, sep)
4669 char_u *fname1;
4670 char_u *fname2;
4671 int sep;
4673 char_u *dest;
4675 dest = alloc((unsigned)(STRLEN(fname1) + STRLEN(fname2) + 3));
4676 if (dest != NULL)
4678 STRCPY(dest, fname1);
4679 if (sep)
4680 add_pathsep(dest);
4681 STRCAT(dest, fname2);
4683 return dest;
4687 * Concatenate two strings and return the result in allocated memory.
4688 * Returns NULL when out of memory.
4690 char_u *
4691 concat_str(str1, str2)
4692 char_u *str1;
4693 char_u *str2;
4695 char_u *dest;
4696 size_t l = STRLEN(str1);
4698 dest = alloc((unsigned)(l + STRLEN(str2) + 1L));
4699 if (dest != NULL)
4701 STRCPY(dest, str1);
4702 STRCPY(dest + l, str2);
4704 return dest;
4708 * Add a path separator to a file name, unless it already ends in a path
4709 * separator.
4711 void
4712 add_pathsep(p)
4713 char_u *p;
4715 if (*p != NUL && !after_pathsep(p, p + STRLEN(p)))
4716 STRCAT(p, PATHSEPSTR);
4720 * FullName_save - Make an allocated copy of a full file name.
4721 * Returns NULL when out of memory.
4723 char_u *
4724 FullName_save(fname, force)
4725 char_u *fname;
4726 int force; /* force expansion, even when it already looks
4727 like a full path name */
4729 char_u *buf;
4730 char_u *new_fname = NULL;
4732 if (fname == NULL)
4733 return NULL;
4735 buf = alloc((unsigned)MAXPATHL);
4736 if (buf != NULL)
4738 if (vim_FullName(fname, buf, MAXPATHL, force) != FAIL)
4739 new_fname = vim_strsave(buf);
4740 else
4741 new_fname = vim_strsave(fname);
4742 vim_free(buf);
4744 return new_fname;
4747 #if defined(FEAT_CINDENT) || defined(FEAT_SYN_HL)
4749 static char_u *skip_string __ARGS((char_u *p));
4752 * Find the start of a comment, not knowing if we are in a comment right now.
4753 * Search starts at w_cursor.lnum and goes backwards.
4755 pos_T *
4756 find_start_comment(ind_maxcomment) /* XXX */
4757 int ind_maxcomment;
4759 pos_T *pos;
4760 char_u *line;
4761 char_u *p;
4762 int cur_maxcomment = ind_maxcomment;
4764 for (;;)
4766 pos = findmatchlimit(NULL, '*', FM_BACKWARD, cur_maxcomment);
4767 if (pos == NULL)
4768 break;
4771 * Check if the comment start we found is inside a string.
4772 * If it is then restrict the search to below this line and try again.
4774 line = ml_get(pos->lnum);
4775 for (p = line; *p && (colnr_T)(p - line) < pos->col; ++p)
4776 p = skip_string(p);
4777 if ((colnr_T)(p - line) <= pos->col)
4778 break;
4779 cur_maxcomment = curwin->w_cursor.lnum - pos->lnum - 1;
4780 if (cur_maxcomment <= 0)
4782 pos = NULL;
4783 break;
4786 return pos;
4790 * Skip to the end of a "string" and a 'c' character.
4791 * If there is no string or character, return argument unmodified.
4793 static char_u *
4794 skip_string(p)
4795 char_u *p;
4797 int i;
4800 * We loop, because strings may be concatenated: "date""time".
4802 for ( ; ; ++p)
4804 if (p[0] == '\'') /* 'c' or '\n' or '\000' */
4806 if (!p[1]) /* ' at end of line */
4807 break;
4808 i = 2;
4809 if (p[1] == '\\') /* '\n' or '\000' */
4811 ++i;
4812 while (vim_isdigit(p[i - 1])) /* '\000' */
4813 ++i;
4815 if (p[i] == '\'') /* check for trailing ' */
4817 p += i;
4818 continue;
4821 else if (p[0] == '"') /* start of string */
4823 for (++p; p[0]; ++p)
4825 if (p[0] == '\\' && p[1] != NUL)
4826 ++p;
4827 else if (p[0] == '"') /* end of string */
4828 break;
4830 if (p[0] == '"')
4831 continue;
4833 break; /* no string found */
4835 if (!*p)
4836 --p; /* backup from NUL */
4837 return p;
4839 #endif /* FEAT_CINDENT || FEAT_SYN_HL */
4841 #if defined(FEAT_CINDENT) || defined(PROTO)
4844 * Do C or expression indenting on the current line.
4846 void
4847 do_c_expr_indent()
4849 # ifdef FEAT_EVAL
4850 if (*curbuf->b_p_inde != NUL)
4851 fixthisline(get_expr_indent);
4852 else
4853 # endif
4854 fixthisline(get_c_indent);
4858 * Functions for C-indenting.
4859 * Most of this originally comes from Eric Fischer.
4862 * Below "XXX" means that this function may unlock the current line.
4865 static char_u *cin_skipcomment __ARGS((char_u *));
4866 static int cin_nocode __ARGS((char_u *));
4867 static pos_T *find_line_comment __ARGS((void));
4868 static int cin_islabel_skip __ARGS((char_u **));
4869 static int cin_isdefault __ARGS((char_u *));
4870 static char_u *after_label __ARGS((char_u *l));
4871 static int get_indent_nolabel __ARGS((linenr_T lnum));
4872 static int skip_label __ARGS((linenr_T, char_u **pp, int ind_maxcomment));
4873 static int cin_first_id_amount __ARGS((void));
4874 static int cin_get_equal_amount __ARGS((linenr_T lnum));
4875 static int cin_ispreproc __ARGS((char_u *));
4876 static int cin_ispreproc_cont __ARGS((char_u **pp, linenr_T *lnump));
4877 static int cin_iscomment __ARGS((char_u *));
4878 static int cin_islinecomment __ARGS((char_u *));
4879 static int cin_isterminated __ARGS((char_u *, int, int));
4880 static int cin_isinit __ARGS((void));
4881 static int cin_isfuncdecl __ARGS((char_u **, linenr_T));
4882 static int cin_isif __ARGS((char_u *));
4883 static int cin_iselse __ARGS((char_u *));
4884 static int cin_isdo __ARGS((char_u *));
4885 static int cin_iswhileofdo __ARGS((char_u *, linenr_T, int));
4886 static int cin_iswhileofdo_end __ARGS((int terminated, int ind_maxparen, int ind_maxcomment));
4887 static int cin_isbreak __ARGS((char_u *));
4888 static int cin_is_cpp_baseclass __ARGS((colnr_T *col));
4889 static int get_baseclass_amount __ARGS((int col, int ind_maxparen, int ind_maxcomment, int ind_cpp_baseclass));
4890 static int cin_ends_in __ARGS((char_u *, char_u *, char_u *));
4891 static int cin_skip2pos __ARGS((pos_T *trypos));
4892 static pos_T *find_start_brace __ARGS((int));
4893 static pos_T *find_match_paren __ARGS((int, int));
4894 static int corr_ind_maxparen __ARGS((int ind_maxparen, pos_T *startpos));
4895 static int find_last_paren __ARGS((char_u *l, int start, int end));
4896 static int find_match __ARGS((int lookfor, linenr_T ourscope, int ind_maxparen, int ind_maxcomment));
4898 static int ind_hash_comment = 0; /* # starts a comment */
4901 * Skip over white space and C comments within the line.
4902 * Also skip over Perl/shell comments if desired.
4904 static char_u *
4905 cin_skipcomment(s)
4906 char_u *s;
4908 while (*s)
4910 char_u *prev_s = s;
4912 s = skipwhite(s);
4914 /* Perl/shell # comment comment continues until eol. Require a space
4915 * before # to avoid recognizing $#array. */
4916 if (ind_hash_comment != 0 && s != prev_s && *s == '#')
4918 s += STRLEN(s);
4919 break;
4921 if (*s != '/')
4922 break;
4923 ++s;
4924 if (*s == '/') /* slash-slash comment continues till eol */
4926 s += STRLEN(s);
4927 break;
4929 if (*s != '*')
4930 break;
4931 for (++s; *s; ++s) /* skip slash-star comment */
4932 if (s[0] == '*' && s[1] == '/')
4934 s += 2;
4935 break;
4938 return s;
4942 * Return TRUE if there there is no code at *s. White space and comments are
4943 * not considered code.
4945 static int
4946 cin_nocode(s)
4947 char_u *s;
4949 return *cin_skipcomment(s) == NUL;
4953 * Check previous lines for a "//" line comment, skipping over blank lines.
4955 static pos_T *
4956 find_line_comment() /* XXX */
4958 static pos_T pos;
4959 char_u *line;
4960 char_u *p;
4962 pos = curwin->w_cursor;
4963 while (--pos.lnum > 0)
4965 line = ml_get(pos.lnum);
4966 p = skipwhite(line);
4967 if (cin_islinecomment(p))
4969 pos.col = (int)(p - line);
4970 return &pos;
4972 if (*p != NUL)
4973 break;
4975 return NULL;
4979 * Check if string matches "label:"; move to character after ':' if true.
4981 static int
4982 cin_islabel_skip(s)
4983 char_u **s;
4985 if (!vim_isIDc(**s)) /* need at least one ID character */
4986 return FALSE;
4988 while (vim_isIDc(**s))
4989 (*s)++;
4991 *s = cin_skipcomment(*s);
4993 /* "::" is not a label, it's C++ */
4994 return (**s == ':' && *++*s != ':');
4998 * Recognize a label: "label:".
4999 * Note: curwin->w_cursor must be where we are looking for the label.
5002 cin_islabel(ind_maxcomment) /* XXX */
5003 int ind_maxcomment;
5005 char_u *s;
5007 s = cin_skipcomment(ml_get_curline());
5010 * Exclude "default" from labels, since it should be indented
5011 * like a switch label. Same for C++ scope declarations.
5013 if (cin_isdefault(s))
5014 return FALSE;
5015 if (cin_isscopedecl(s))
5016 return FALSE;
5018 if (cin_islabel_skip(&s))
5021 * Only accept a label if the previous line is terminated or is a case
5022 * label.
5024 pos_T cursor_save;
5025 pos_T *trypos;
5026 char_u *line;
5028 cursor_save = curwin->w_cursor;
5029 while (curwin->w_cursor.lnum > 1)
5031 --curwin->w_cursor.lnum;
5034 * If we're in a comment now, skip to the start of the comment.
5036 curwin->w_cursor.col = 0;
5037 if ((trypos = find_start_comment(ind_maxcomment)) != NULL) /* XXX */
5038 curwin->w_cursor = *trypos;
5040 line = ml_get_curline();
5041 if (cin_ispreproc(line)) /* ignore #defines, #if, etc. */
5042 continue;
5043 if (*(line = cin_skipcomment(line)) == NUL)
5044 continue;
5046 curwin->w_cursor = cursor_save;
5047 if (cin_isterminated(line, TRUE, FALSE)
5048 || cin_isscopedecl(line)
5049 || cin_iscase(line)
5050 || (cin_islabel_skip(&line) && cin_nocode(line)))
5051 return TRUE;
5052 return FALSE;
5054 curwin->w_cursor = cursor_save;
5055 return TRUE; /* label at start of file??? */
5057 return FALSE;
5061 * Recognize structure initialization and enumerations.
5062 * Q&D-Implementation:
5063 * check for "=" at end or "[typedef] enum" at beginning of line.
5065 static int
5066 cin_isinit(void)
5068 char_u *s;
5070 s = cin_skipcomment(ml_get_curline());
5072 if (STRNCMP(s, "typedef", 7) == 0 && !vim_isIDc(s[7]))
5073 s = cin_skipcomment(s + 7);
5075 if (STRNCMP(s, "enum", 4) == 0 && !vim_isIDc(s[4]))
5076 return TRUE;
5078 if (cin_ends_in(s, (char_u *)"=", (char_u *)"{"))
5079 return TRUE;
5081 return FALSE;
5085 * Recognize a switch label: "case .*:" or "default:".
5088 cin_iscase(s)
5089 char_u *s;
5091 s = cin_skipcomment(s);
5092 if (STRNCMP(s, "case", 4) == 0 && !vim_isIDc(s[4]))
5094 for (s += 4; *s; ++s)
5096 s = cin_skipcomment(s);
5097 if (*s == ':')
5099 if (s[1] == ':') /* skip over "::" for C++ */
5100 ++s;
5101 else
5102 return TRUE;
5104 if (*s == '\'' && s[1] && s[2] == '\'')
5105 s += 2; /* skip over '.' */
5106 else if (*s == '/' && (s[1] == '*' || s[1] == '/'))
5107 return FALSE; /* stop at comment */
5108 else if (*s == '"')
5109 return FALSE; /* stop at string */
5111 return FALSE;
5114 if (cin_isdefault(s))
5115 return TRUE;
5116 return FALSE;
5120 * Recognize a "default" switch label.
5122 static int
5123 cin_isdefault(s)
5124 char_u *s;
5126 return (STRNCMP(s, "default", 7) == 0
5127 && *(s = cin_skipcomment(s + 7)) == ':'
5128 && s[1] != ':');
5132 * Recognize a "public/private/proctected" scope declaration label.
5135 cin_isscopedecl(s)
5136 char_u *s;
5138 int i;
5140 s = cin_skipcomment(s);
5141 if (STRNCMP(s, "public", 6) == 0)
5142 i = 6;
5143 else if (STRNCMP(s, "protected", 9) == 0)
5144 i = 9;
5145 else if (STRNCMP(s, "private", 7) == 0)
5146 i = 7;
5147 else
5148 return FALSE;
5149 return (*(s = cin_skipcomment(s + i)) == ':' && s[1] != ':');
5153 * Return a pointer to the first non-empty non-comment character after a ':'.
5154 * Return NULL if not found.
5155 * case 234: a = b;
5158 static char_u *
5159 after_label(l)
5160 char_u *l;
5162 for ( ; *l; ++l)
5164 if (*l == ':')
5166 if (l[1] == ':') /* skip over "::" for C++ */
5167 ++l;
5168 else if (!cin_iscase(l + 1))
5169 break;
5171 else if (*l == '\'' && l[1] && l[2] == '\'')
5172 l += 2; /* skip over 'x' */
5174 if (*l == NUL)
5175 return NULL;
5176 l = cin_skipcomment(l + 1);
5177 if (*l == NUL)
5178 return NULL;
5179 return l;
5183 * Get indent of line "lnum", skipping a label.
5184 * Return 0 if there is nothing after the label.
5186 static int
5187 get_indent_nolabel(lnum) /* XXX */
5188 linenr_T lnum;
5190 char_u *l;
5191 pos_T fp;
5192 colnr_T col;
5193 char_u *p;
5195 l = ml_get(lnum);
5196 p = after_label(l);
5197 if (p == NULL)
5198 return 0;
5200 fp.col = (colnr_T)(p - l);
5201 fp.lnum = lnum;
5202 getvcol(curwin, &fp, &col, NULL, NULL);
5203 return (int)col;
5207 * Find indent for line "lnum", ignoring any case or jump label.
5208 * Also return a pointer to the text (after the label) in "pp".
5209 * label: if (asdf && asdfasdf)
5212 static int
5213 skip_label(lnum, pp, ind_maxcomment)
5214 linenr_T lnum;
5215 char_u **pp;
5216 int ind_maxcomment;
5218 char_u *l;
5219 int amount;
5220 pos_T cursor_save;
5222 cursor_save = curwin->w_cursor;
5223 curwin->w_cursor.lnum = lnum;
5224 l = ml_get_curline();
5225 /* XXX */
5226 if (cin_iscase(l) || cin_isscopedecl(l) || cin_islabel(ind_maxcomment))
5228 amount = get_indent_nolabel(lnum);
5229 l = after_label(ml_get_curline());
5230 if (l == NULL) /* just in case */
5231 l = ml_get_curline();
5233 else
5235 amount = get_indent();
5236 l = ml_get_curline();
5238 *pp = l;
5240 curwin->w_cursor = cursor_save;
5241 return amount;
5245 * Return the indent of the first variable name after a type in a declaration.
5246 * int a, indent of "a"
5247 * static struct foo b, indent of "b"
5248 * enum bla c, indent of "c"
5249 * Returns zero when it doesn't look like a declaration.
5251 static int
5252 cin_first_id_amount()
5254 char_u *line, *p, *s;
5255 int len;
5256 pos_T fp;
5257 colnr_T col;
5259 line = ml_get_curline();
5260 p = skipwhite(line);
5261 len = (int)(skiptowhite(p) - p);
5262 if (len == 6 && STRNCMP(p, "static", 6) == 0)
5264 p = skipwhite(p + 6);
5265 len = (int)(skiptowhite(p) - p);
5267 if (len == 6 && STRNCMP(p, "struct", 6) == 0)
5268 p = skipwhite(p + 6);
5269 else if (len == 4 && STRNCMP(p, "enum", 4) == 0)
5270 p = skipwhite(p + 4);
5271 else if ((len == 8 && STRNCMP(p, "unsigned", 8) == 0)
5272 || (len == 6 && STRNCMP(p, "signed", 6) == 0))
5274 s = skipwhite(p + len);
5275 if ((STRNCMP(s, "int", 3) == 0 && vim_iswhite(s[3]))
5276 || (STRNCMP(s, "long", 4) == 0 && vim_iswhite(s[4]))
5277 || (STRNCMP(s, "short", 5) == 0 && vim_iswhite(s[5]))
5278 || (STRNCMP(s, "char", 4) == 0 && vim_iswhite(s[4])))
5279 p = s;
5281 for (len = 0; vim_isIDc(p[len]); ++len)
5283 if (len == 0 || !vim_iswhite(p[len]) || cin_nocode(p))
5284 return 0;
5286 p = skipwhite(p + len);
5287 fp.lnum = curwin->w_cursor.lnum;
5288 fp.col = (colnr_T)(p - line);
5289 getvcol(curwin, &fp, &col, NULL, NULL);
5290 return (int)col;
5294 * Return the indent of the first non-blank after an equal sign.
5295 * char *foo = "here";
5296 * Return zero if no (useful) equal sign found.
5297 * Return -1 if the line above "lnum" ends in a backslash.
5298 * foo = "asdf\
5299 * asdf\
5300 * here";
5302 static int
5303 cin_get_equal_amount(lnum)
5304 linenr_T lnum;
5306 char_u *line;
5307 char_u *s;
5308 colnr_T col;
5309 pos_T fp;
5311 if (lnum > 1)
5313 line = ml_get(lnum - 1);
5314 if (*line != NUL && line[STRLEN(line) - 1] == '\\')
5315 return -1;
5318 line = s = ml_get(lnum);
5319 while (*s != NUL && vim_strchr((char_u *)"=;{}\"'", *s) == NULL)
5321 if (cin_iscomment(s)) /* ignore comments */
5322 s = cin_skipcomment(s);
5323 else
5324 ++s;
5326 if (*s != '=')
5327 return 0;
5329 s = skipwhite(s + 1);
5330 if (cin_nocode(s))
5331 return 0;
5333 if (*s == '"') /* nice alignment for continued strings */
5334 ++s;
5336 fp.lnum = lnum;
5337 fp.col = (colnr_T)(s - line);
5338 getvcol(curwin, &fp, &col, NULL, NULL);
5339 return (int)col;
5343 * Recognize a preprocessor statement: Any line that starts with '#'.
5345 static int
5346 cin_ispreproc(s)
5347 char_u *s;
5349 s = skipwhite(s);
5350 if (*s == '#')
5351 return TRUE;
5352 return FALSE;
5356 * Return TRUE if line "*pp" at "*lnump" is a preprocessor statement or a
5357 * continuation line of a preprocessor statement. Decrease "*lnump" to the
5358 * start and return the line in "*pp".
5360 static int
5361 cin_ispreproc_cont(pp, lnump)
5362 char_u **pp;
5363 linenr_T *lnump;
5365 char_u *line = *pp;
5366 linenr_T lnum = *lnump;
5367 int retval = FALSE;
5369 for (;;)
5371 if (cin_ispreproc(line))
5373 retval = TRUE;
5374 *lnump = lnum;
5375 break;
5377 if (lnum == 1)
5378 break;
5379 line = ml_get(--lnum);
5380 if (*line == NUL || line[STRLEN(line) - 1] != '\\')
5381 break;
5384 if (lnum != *lnump)
5385 *pp = ml_get(*lnump);
5386 return retval;
5390 * Recognize the start of a C or C++ comment.
5392 static int
5393 cin_iscomment(p)
5394 char_u *p;
5396 return (p[0] == '/' && (p[1] == '*' || p[1] == '/'));
5400 * Recognize the start of a "//" comment.
5402 static int
5403 cin_islinecomment(p)
5404 char_u *p;
5406 return (p[0] == '/' && p[1] == '/');
5410 * Recognize a line that starts with '{' or '}', or ends with ';', '{' or '}'.
5411 * Don't consider "} else" a terminated line.
5412 * Return the character terminating the line (ending char's have precedence if
5413 * both apply in order to determine initializations).
5415 static int
5416 cin_isterminated(s, incl_open, incl_comma)
5417 char_u *s;
5418 int incl_open; /* include '{' at the end as terminator */
5419 int incl_comma; /* recognize a trailing comma */
5421 char_u found_start = 0;
5423 s = cin_skipcomment(s);
5425 if (*s == '{' || (*s == '}' && !cin_iselse(s)))
5426 found_start = *s;
5428 while (*s)
5430 /* skip over comments, "" strings and 'c'haracters */
5431 s = skip_string(cin_skipcomment(s));
5432 if ((*s == ';' || (incl_open && *s == '{') || *s == '}'
5433 || (incl_comma && *s == ','))
5434 && cin_nocode(s + 1))
5435 return *s;
5437 if (*s)
5438 s++;
5440 return found_start;
5444 * Recognize the basic picture of a function declaration -- it needs to
5445 * have an open paren somewhere and a close paren at the end of the line and
5446 * no semicolons anywhere.
5447 * When a line ends in a comma we continue looking in the next line.
5448 * "sp" points to a string with the line. When looking at other lines it must
5449 * be restored to the line. When it's NULL fetch lines here.
5450 * "lnum" is where we start looking.
5452 static int
5453 cin_isfuncdecl(sp, first_lnum)
5454 char_u **sp;
5455 linenr_T first_lnum;
5457 char_u *s;
5458 linenr_T lnum = first_lnum;
5459 int retval = FALSE;
5461 if (sp == NULL)
5462 s = ml_get(lnum);
5463 else
5464 s = *sp;
5466 while (*s && *s != '(' && *s != ';' && *s != '\'' && *s != '"')
5468 if (cin_iscomment(s)) /* ignore comments */
5469 s = cin_skipcomment(s);
5470 else
5471 ++s;
5473 if (*s != '(')
5474 return FALSE; /* ';', ' or " before any () or no '(' */
5476 while (*s && *s != ';' && *s != '\'' && *s != '"')
5478 if (*s == ')' && cin_nocode(s + 1))
5480 /* ')' at the end: may have found a match
5481 * Check for he previous line not to end in a backslash:
5482 * #if defined(x) && \
5483 * defined(y)
5485 lnum = first_lnum - 1;
5486 s = ml_get(lnum);
5487 if (*s == NUL || s[STRLEN(s) - 1] != '\\')
5488 retval = TRUE;
5489 goto done;
5491 if (*s == ',' && cin_nocode(s + 1))
5493 /* ',' at the end: continue looking in the next line */
5494 if (lnum >= curbuf->b_ml.ml_line_count)
5495 break;
5497 s = ml_get(++lnum);
5499 else if (cin_iscomment(s)) /* ignore comments */
5500 s = cin_skipcomment(s);
5501 else
5502 ++s;
5505 done:
5506 if (lnum != first_lnum && sp != NULL)
5507 *sp = ml_get(first_lnum);
5509 return retval;
5512 static int
5513 cin_isif(p)
5514 char_u *p;
5516 return (STRNCMP(p, "if", 2) == 0 && !vim_isIDc(p[2]));
5519 static int
5520 cin_iselse(p)
5521 char_u *p;
5523 if (*p == '}') /* accept "} else" */
5524 p = cin_skipcomment(p + 1);
5525 return (STRNCMP(p, "else", 4) == 0 && !vim_isIDc(p[4]));
5528 static int
5529 cin_isdo(p)
5530 char_u *p;
5532 return (STRNCMP(p, "do", 2) == 0 && !vim_isIDc(p[2]));
5536 * Check if this is a "while" that should have a matching "do".
5537 * We only accept a "while (condition) ;", with only white space between the
5538 * ')' and ';'. The condition may be spread over several lines.
5540 static int
5541 cin_iswhileofdo(p, lnum, ind_maxparen) /* XXX */
5542 char_u *p;
5543 linenr_T lnum;
5544 int ind_maxparen;
5546 pos_T cursor_save;
5547 pos_T *trypos;
5548 int retval = FALSE;
5550 p = cin_skipcomment(p);
5551 if (*p == '}') /* accept "} while (cond);" */
5552 p = cin_skipcomment(p + 1);
5553 if (STRNCMP(p, "while", 5) == 0 && !vim_isIDc(p[5]))
5555 cursor_save = curwin->w_cursor;
5556 curwin->w_cursor.lnum = lnum;
5557 curwin->w_cursor.col = 0;
5558 p = ml_get_curline();
5559 while (*p && *p != 'w') /* skip any '}', until the 'w' of the "while" */
5561 ++p;
5562 ++curwin->w_cursor.col;
5564 if ((trypos = findmatchlimit(NULL, 0, 0, ind_maxparen)) != NULL
5565 && *cin_skipcomment(ml_get_pos(trypos) + 1) == ';')
5566 retval = TRUE;
5567 curwin->w_cursor = cursor_save;
5569 return retval;
5573 * Return TRUE if we are at the end of a do-while.
5574 * do
5575 * nothing;
5576 * while (foo
5577 * && bar); <-- here
5578 * Adjust the cursor to the line with "while".
5580 static int
5581 cin_iswhileofdo_end(terminated, ind_maxparen, ind_maxcomment)
5582 int terminated;
5583 int ind_maxparen;
5584 int ind_maxcomment;
5586 char_u *line;
5587 char_u *p;
5588 char_u *s;
5589 pos_T *trypos;
5590 int i;
5592 if (terminated != ';') /* there must be a ';' at the end */
5593 return FALSE;
5595 p = line = ml_get_curline();
5596 while (*p != NUL)
5598 p = cin_skipcomment(p);
5599 if (*p == ')')
5601 s = skipwhite(p + 1);
5602 if (*s == ';' && cin_nocode(s + 1))
5604 /* Found ");" at end of the line, now check there is "while"
5605 * before the matching '('. XXX */
5606 i = (int)(p - line);
5607 curwin->w_cursor.col = i;
5608 trypos = find_match_paren(ind_maxparen, ind_maxcomment);
5609 if (trypos != NULL)
5611 s = cin_skipcomment(ml_get(trypos->lnum));
5612 if (*s == '}') /* accept "} while (cond);" */
5613 s = cin_skipcomment(s + 1);
5614 if (STRNCMP(s, "while", 5) == 0 && !vim_isIDc(s[5]))
5616 curwin->w_cursor.lnum = trypos->lnum;
5617 return TRUE;
5621 /* Searching may have made "line" invalid, get it again. */
5622 line = ml_get_curline();
5623 p = line + i;
5626 if (*p != NUL)
5627 ++p;
5629 return FALSE;
5632 static int
5633 cin_isbreak(p)
5634 char_u *p;
5636 return (STRNCMP(p, "break", 5) == 0 && !vim_isIDc(p[5]));
5640 * Find the position of a C++ base-class declaration or
5641 * constructor-initialization. eg:
5643 * class MyClass :
5644 * baseClass <-- here
5645 * class MyClass : public baseClass,
5646 * anotherBaseClass <-- here (should probably lineup ??)
5647 * MyClass::MyClass(...) :
5648 * baseClass(...) <-- here (constructor-initialization)
5650 * This is a lot of guessing. Watch out for "cond ? func() : foo".
5652 static int
5653 cin_is_cpp_baseclass(col)
5654 colnr_T *col; /* return: column to align with */
5656 char_u *s;
5657 int class_or_struct, lookfor_ctor_init, cpp_base_class;
5658 linenr_T lnum = curwin->w_cursor.lnum;
5659 char_u *line = ml_get_curline();
5661 *col = 0;
5663 s = skipwhite(line);
5664 if (*s == '#') /* skip #define FOO x ? (x) : x */
5665 return FALSE;
5666 s = cin_skipcomment(s);
5667 if (*s == NUL)
5668 return FALSE;
5670 cpp_base_class = lookfor_ctor_init = class_or_struct = FALSE;
5672 /* Search for a line starting with '#', empty, ending in ';' or containing
5673 * '{' or '}' and start below it. This handles the following situations:
5674 * a = cond ?
5675 * func() :
5676 * asdf;
5677 * func::foo()
5678 * : something
5679 * {}
5680 * Foo::Foo (int one, int two)
5681 * : something(4),
5682 * somethingelse(3)
5683 * {}
5685 while (lnum > 1)
5687 line = ml_get(lnum - 1);
5688 s = skipwhite(line);
5689 if (*s == '#' || *s == NUL)
5690 break;
5691 while (*s != NUL)
5693 s = cin_skipcomment(s);
5694 if (*s == '{' || *s == '}'
5695 || (*s == ';' && cin_nocode(s + 1)))
5696 break;
5697 if (*s != NUL)
5698 ++s;
5700 if (*s != NUL)
5701 break;
5702 --lnum;
5705 line = ml_get(lnum);
5706 s = cin_skipcomment(line);
5707 for (;;)
5709 if (*s == NUL)
5711 if (lnum == curwin->w_cursor.lnum)
5712 break;
5713 /* Continue in the cursor line. */
5714 line = ml_get(++lnum);
5715 s = cin_skipcomment(line);
5716 if (*s == NUL)
5717 continue;
5720 if (s[0] == ':')
5722 if (s[1] == ':')
5724 /* skip double colon. It can't be a constructor
5725 * initialization any more */
5726 lookfor_ctor_init = FALSE;
5727 s = cin_skipcomment(s + 2);
5729 else if (lookfor_ctor_init || class_or_struct)
5731 /* we have something found, that looks like the start of
5732 * cpp-base-class-declaration or constructor-initialization */
5733 cpp_base_class = TRUE;
5734 lookfor_ctor_init = class_or_struct = FALSE;
5735 *col = 0;
5736 s = cin_skipcomment(s + 1);
5738 else
5739 s = cin_skipcomment(s + 1);
5741 else if ((STRNCMP(s, "class", 5) == 0 && !vim_isIDc(s[5]))
5742 || (STRNCMP(s, "struct", 6) == 0 && !vim_isIDc(s[6])))
5744 class_or_struct = TRUE;
5745 lookfor_ctor_init = FALSE;
5747 if (*s == 'c')
5748 s = cin_skipcomment(s + 5);
5749 else
5750 s = cin_skipcomment(s + 6);
5752 else
5754 if (s[0] == '{' || s[0] == '}' || s[0] == ';')
5756 cpp_base_class = lookfor_ctor_init = class_or_struct = FALSE;
5758 else if (s[0] == ')')
5760 /* Constructor-initialization is assumed if we come across
5761 * something like "):" */
5762 class_or_struct = FALSE;
5763 lookfor_ctor_init = TRUE;
5765 else if (s[0] == '?')
5767 /* Avoid seeing '() :' after '?' as constructor init. */
5768 return FALSE;
5770 else if (!vim_isIDc(s[0]))
5772 /* if it is not an identifier, we are wrong */
5773 class_or_struct = FALSE;
5774 lookfor_ctor_init = FALSE;
5776 else if (*col == 0)
5778 /* it can't be a constructor-initialization any more */
5779 lookfor_ctor_init = FALSE;
5781 /* the first statement starts here: lineup with this one... */
5782 if (cpp_base_class)
5783 *col = (colnr_T)(s - line);
5786 /* When the line ends in a comma don't align with it. */
5787 if (lnum == curwin->w_cursor.lnum && *s == ',' && cin_nocode(s + 1))
5788 *col = 0;
5790 s = cin_skipcomment(s + 1);
5794 return cpp_base_class;
5797 static int
5798 get_baseclass_amount(col, ind_maxparen, ind_maxcomment, ind_cpp_baseclass)
5799 int col;
5800 int ind_maxparen;
5801 int ind_maxcomment;
5802 int ind_cpp_baseclass;
5804 int amount;
5805 colnr_T vcol;
5806 pos_T *trypos;
5808 if (col == 0)
5810 amount = get_indent();
5811 if (find_last_paren(ml_get_curline(), '(', ')')
5812 && (trypos = find_match_paren(ind_maxparen,
5813 ind_maxcomment)) != NULL)
5814 amount = get_indent_lnum(trypos->lnum); /* XXX */
5815 if (!cin_ends_in(ml_get_curline(), (char_u *)",", NULL))
5816 amount += ind_cpp_baseclass;
5818 else
5820 curwin->w_cursor.col = col;
5821 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
5822 amount = (int)vcol;
5824 if (amount < ind_cpp_baseclass)
5825 amount = ind_cpp_baseclass;
5826 return amount;
5830 * Return TRUE if string "s" ends with the string "find", possibly followed by
5831 * white space and comments. Skip strings and comments.
5832 * Ignore "ignore" after "find" if it's not NULL.
5834 static int
5835 cin_ends_in(s, find, ignore)
5836 char_u *s;
5837 char_u *find;
5838 char_u *ignore;
5840 char_u *p = s;
5841 char_u *r;
5842 int len = (int)STRLEN(find);
5844 while (*p != NUL)
5846 p = cin_skipcomment(p);
5847 if (STRNCMP(p, find, len) == 0)
5849 r = skipwhite(p + len);
5850 if (ignore != NULL && STRNCMP(r, ignore, STRLEN(ignore)) == 0)
5851 r = skipwhite(r + STRLEN(ignore));
5852 if (cin_nocode(r))
5853 return TRUE;
5855 if (*p != NUL)
5856 ++p;
5858 return FALSE;
5862 * Skip strings, chars and comments until at or past "trypos".
5863 * Return the column found.
5865 static int
5866 cin_skip2pos(trypos)
5867 pos_T *trypos;
5869 char_u *line;
5870 char_u *p;
5872 p = line = ml_get(trypos->lnum);
5873 while (*p && (colnr_T)(p - line) < trypos->col)
5875 if (cin_iscomment(p))
5876 p = cin_skipcomment(p);
5877 else
5879 p = skip_string(p);
5880 ++p;
5883 return (int)(p - line);
5887 * Find the '{' at the start of the block we are in.
5888 * Return NULL if no match found.
5889 * Ignore a '{' that is in a comment, makes indenting the next three lines
5890 * work. */
5891 /* foo() */
5892 /* { */
5893 /* } */
5895 static pos_T *
5896 find_start_brace(ind_maxcomment) /* XXX */
5897 int ind_maxcomment;
5899 pos_T cursor_save;
5900 pos_T *trypos;
5901 pos_T *pos;
5902 static pos_T pos_copy;
5904 cursor_save = curwin->w_cursor;
5905 while ((trypos = findmatchlimit(NULL, '{', FM_BLOCKSTOP, 0)) != NULL)
5907 pos_copy = *trypos; /* copy pos_T, next findmatch will change it */
5908 trypos = &pos_copy;
5909 curwin->w_cursor = *trypos;
5910 pos = NULL;
5911 /* ignore the { if it's in a // or / * * / comment */
5912 if ((colnr_T)cin_skip2pos(trypos) == trypos->col
5913 && (pos = find_start_comment(ind_maxcomment)) == NULL) /* XXX */
5914 break;
5915 if (pos != NULL)
5916 curwin->w_cursor.lnum = pos->lnum;
5918 curwin->w_cursor = cursor_save;
5919 return trypos;
5923 * Find the matching '(', failing if it is in a comment.
5924 * Return NULL of no match found.
5926 static pos_T *
5927 find_match_paren(ind_maxparen, ind_maxcomment) /* XXX */
5928 int ind_maxparen;
5929 int ind_maxcomment;
5931 pos_T cursor_save;
5932 pos_T *trypos;
5933 static pos_T pos_copy;
5935 cursor_save = curwin->w_cursor;
5936 if ((trypos = findmatchlimit(NULL, '(', 0, ind_maxparen)) != NULL)
5938 /* check if the ( is in a // comment */
5939 if ((colnr_T)cin_skip2pos(trypos) > trypos->col)
5940 trypos = NULL;
5941 else
5943 pos_copy = *trypos; /* copy trypos, findmatch will change it */
5944 trypos = &pos_copy;
5945 curwin->w_cursor = *trypos;
5946 if (find_start_comment(ind_maxcomment) != NULL) /* XXX */
5947 trypos = NULL;
5950 curwin->w_cursor = cursor_save;
5951 return trypos;
5955 * Return ind_maxparen corrected for the difference in line number between the
5956 * cursor position and "startpos". This makes sure that searching for a
5957 * matching paren above the cursor line doesn't find a match because of
5958 * looking a few lines further.
5960 static int
5961 corr_ind_maxparen(ind_maxparen, startpos)
5962 int ind_maxparen;
5963 pos_T *startpos;
5965 long n = (long)startpos->lnum - (long)curwin->w_cursor.lnum;
5967 if (n > 0 && n < ind_maxparen / 2)
5968 return ind_maxparen - (int)n;
5969 return ind_maxparen;
5973 * Set w_cursor.col to the column number of the last unmatched ')' or '{' in
5974 * line "l".
5976 static int
5977 find_last_paren(l, start, end)
5978 char_u *l;
5979 int start, end;
5981 int i;
5982 int retval = FALSE;
5983 int open_count = 0;
5985 curwin->w_cursor.col = 0; /* default is start of line */
5987 for (i = 0; l[i]; i++)
5989 i = (int)(cin_skipcomment(l + i) - l); /* ignore parens in comments */
5990 i = (int)(skip_string(l + i) - l); /* ignore parens in quotes */
5991 if (l[i] == start)
5992 ++open_count;
5993 else if (l[i] == end)
5995 if (open_count > 0)
5996 --open_count;
5997 else
5999 curwin->w_cursor.col = i;
6000 retval = TRUE;
6004 return retval;
6008 get_c_indent()
6011 * spaces from a block's opening brace the prevailing indent for that
6012 * block should be
6014 int ind_level = curbuf->b_p_sw;
6017 * spaces from the edge of the line an open brace that's at the end of a
6018 * line is imagined to be.
6020 int ind_open_imag = 0;
6023 * spaces from the prevailing indent for a line that is not precededof by
6024 * an opening brace.
6026 int ind_no_brace = 0;
6029 * column where the first { of a function should be located }
6031 int ind_first_open = 0;
6034 * spaces from the prevailing indent a leftmost open brace should be
6035 * located
6037 int ind_open_extra = 0;
6040 * spaces from the matching open brace (real location for one at the left
6041 * edge; imaginary location from one that ends a line) the matching close
6042 * brace should be located
6044 int ind_close_extra = 0;
6047 * spaces from the edge of the line an open brace sitting in the leftmost
6048 * column is imagined to be
6050 int ind_open_left_imag = 0;
6053 * spaces from the switch() indent a "case xx" label should be located
6055 int ind_case = curbuf->b_p_sw;
6058 * spaces from the "case xx:" code after a switch() should be located
6060 int ind_case_code = curbuf->b_p_sw;
6063 * lineup break at end of case in switch() with case label
6065 int ind_case_break = 0;
6068 * spaces from the class declaration indent a scope declaration label
6069 * should be located
6071 int ind_scopedecl = curbuf->b_p_sw;
6074 * spaces from the scope declaration label code should be located
6076 int ind_scopedecl_code = curbuf->b_p_sw;
6079 * amount K&R-style parameters should be indented
6081 int ind_param = curbuf->b_p_sw;
6084 * amount a function type spec should be indented
6086 int ind_func_type = curbuf->b_p_sw;
6089 * amount a cpp base class declaration or constructor initialization
6090 * should be indented
6092 int ind_cpp_baseclass = curbuf->b_p_sw;
6095 * additional spaces beyond the prevailing indent a continuation line
6096 * should be located
6098 int ind_continuation = curbuf->b_p_sw;
6101 * spaces from the indent of the line with an unclosed parentheses
6103 int ind_unclosed = curbuf->b_p_sw * 2;
6106 * spaces from the indent of the line with an unclosed parentheses, which
6107 * itself is also unclosed
6109 int ind_unclosed2 = curbuf->b_p_sw;
6112 * suppress ignoring spaces from the indent of a line starting with an
6113 * unclosed parentheses.
6115 int ind_unclosed_noignore = 0;
6118 * If the opening paren is the last nonwhite character on the line, and
6119 * ind_unclosed_wrapped is nonzero, use this indent relative to the outer
6120 * context (for very long lines).
6122 int ind_unclosed_wrapped = 0;
6125 * suppress ignoring white space when lining up with the character after
6126 * an unclosed parentheses.
6128 int ind_unclosed_whiteok = 0;
6131 * indent a closing parentheses under the line start of the matching
6132 * opening parentheses.
6134 int ind_matching_paren = 0;
6137 * indent a closing parentheses under the previous line.
6139 int ind_paren_prev = 0;
6142 * Extra indent for comments.
6144 int ind_comment = 0;
6147 * spaces from the comment opener when there is nothing after it.
6149 int ind_in_comment = 3;
6152 * boolean: if non-zero, use ind_in_comment even if there is something
6153 * after the comment opener.
6155 int ind_in_comment2 = 0;
6158 * max lines to search for an open paren
6160 int ind_maxparen = 20;
6163 * max lines to search for an open comment
6165 int ind_maxcomment = 70;
6168 * handle braces for java code
6170 int ind_java = 0;
6173 * handle blocked cases correctly
6175 int ind_keep_case_label = 0;
6177 pos_T cur_curpos;
6178 int amount;
6179 int scope_amount;
6180 int cur_amount = MAXCOL;
6181 colnr_T col;
6182 char_u *theline;
6183 char_u *linecopy;
6184 pos_T *trypos;
6185 pos_T *tryposBrace = NULL;
6186 pos_T our_paren_pos;
6187 char_u *start;
6188 int start_brace;
6189 #define BRACE_IN_COL0 1 /* '{' is in column 0 */
6190 #define BRACE_AT_START 2 /* '{' is at start of line */
6191 #define BRACE_AT_END 3 /* '{' is at end of line */
6192 linenr_T ourscope;
6193 char_u *l;
6194 char_u *look;
6195 char_u terminated;
6196 int lookfor;
6197 #define LOOKFOR_INITIAL 0
6198 #define LOOKFOR_IF 1
6199 #define LOOKFOR_DO 2
6200 #define LOOKFOR_CASE 3
6201 #define LOOKFOR_ANY 4
6202 #define LOOKFOR_TERM 5
6203 #define LOOKFOR_UNTERM 6
6204 #define LOOKFOR_SCOPEDECL 7
6205 #define LOOKFOR_NOBREAK 8
6206 #define LOOKFOR_CPP_BASECLASS 9
6207 #define LOOKFOR_ENUM_OR_INIT 10
6209 int whilelevel;
6210 linenr_T lnum;
6211 char_u *options;
6212 int fraction = 0; /* init for GCC */
6213 int divider;
6214 int n;
6215 int iscase;
6216 int lookfor_break;
6217 int cont_amount = 0; /* amount for continuation line */
6219 for (options = curbuf->b_p_cino; *options; )
6221 l = options++;
6222 if (*options == '-')
6223 ++options;
6224 n = getdigits(&options);
6225 divider = 0;
6226 if (*options == '.') /* ".5s" means a fraction */
6228 fraction = atol((char *)++options);
6229 while (VIM_ISDIGIT(*options))
6231 ++options;
6232 if (divider)
6233 divider *= 10;
6234 else
6235 divider = 10;
6238 if (*options == 's') /* "2s" means two times 'shiftwidth' */
6240 if (n == 0 && fraction == 0)
6241 n = curbuf->b_p_sw; /* just "s" is one 'shiftwidth' */
6242 else
6244 n *= curbuf->b_p_sw;
6245 if (divider)
6246 n += (curbuf->b_p_sw * fraction + divider / 2) / divider;
6248 ++options;
6250 if (l[1] == '-')
6251 n = -n;
6252 /* When adding an entry here, also update the default 'cinoptions' in
6253 * doc/indent.txt, and add explanation for it! */
6254 switch (*l)
6256 case '>': ind_level = n; break;
6257 case 'e': ind_open_imag = n; break;
6258 case 'n': ind_no_brace = n; break;
6259 case 'f': ind_first_open = n; break;
6260 case '{': ind_open_extra = n; break;
6261 case '}': ind_close_extra = n; break;
6262 case '^': ind_open_left_imag = n; break;
6263 case ':': ind_case = n; break;
6264 case '=': ind_case_code = n; break;
6265 case 'b': ind_case_break = n; break;
6266 case 'p': ind_param = n; break;
6267 case 't': ind_func_type = n; break;
6268 case '/': ind_comment = n; break;
6269 case 'c': ind_in_comment = n; break;
6270 case 'C': ind_in_comment2 = n; break;
6271 case 'i': ind_cpp_baseclass = n; break;
6272 case '+': ind_continuation = n; break;
6273 case '(': ind_unclosed = n; break;
6274 case 'u': ind_unclosed2 = n; break;
6275 case 'U': ind_unclosed_noignore = n; break;
6276 case 'W': ind_unclosed_wrapped = n; break;
6277 case 'w': ind_unclosed_whiteok = n; break;
6278 case 'm': ind_matching_paren = n; break;
6279 case 'M': ind_paren_prev = n; break;
6280 case ')': ind_maxparen = n; break;
6281 case '*': ind_maxcomment = n; break;
6282 case 'g': ind_scopedecl = n; break;
6283 case 'h': ind_scopedecl_code = n; break;
6284 case 'j': ind_java = n; break;
6285 case 'l': ind_keep_case_label = n; break;
6286 case '#': ind_hash_comment = n; break;
6288 if (*options == ',')
6289 ++options;
6292 /* remember where the cursor was when we started */
6293 cur_curpos = curwin->w_cursor;
6295 /* Get a copy of the current contents of the line.
6296 * This is required, because only the most recent line obtained with
6297 * ml_get is valid! */
6298 linecopy = vim_strsave(ml_get(cur_curpos.lnum));
6299 if (linecopy == NULL)
6300 return 0;
6303 * In insert mode and the cursor is on a ')' truncate the line at the
6304 * cursor position. We don't want to line up with the matching '(' when
6305 * inserting new stuff.
6306 * For unknown reasons the cursor might be past the end of the line, thus
6307 * check for that.
6309 if ((State & INSERT)
6310 && curwin->w_cursor.col < (colnr_T)STRLEN(linecopy)
6311 && linecopy[curwin->w_cursor.col] == ')')
6312 linecopy[curwin->w_cursor.col] = NUL;
6314 theline = skipwhite(linecopy);
6316 /* move the cursor to the start of the line */
6318 curwin->w_cursor.col = 0;
6321 * #defines and so on always go at the left when included in 'cinkeys'.
6323 if (*theline == '#' && (*linecopy == '#' || in_cinkeys('#', ' ', TRUE)))
6325 amount = 0;
6329 * Is it a non-case label? Then that goes at the left margin too.
6331 else if (cin_islabel(ind_maxcomment)) /* XXX */
6333 amount = 0;
6337 * If we're inside a "//" comment and there is a "//" comment in a
6338 * previous line, lineup with that one.
6340 else if (cin_islinecomment(theline)
6341 && (trypos = find_line_comment()) != NULL) /* XXX */
6343 /* find how indented the line beginning the comment is */
6344 getvcol(curwin, trypos, &col, NULL, NULL);
6345 amount = col;
6349 * If we're inside a comment and not looking at the start of the
6350 * comment, try using the 'comments' option.
6352 else if (!cin_iscomment(theline)
6353 && (trypos = find_start_comment(ind_maxcomment)) != NULL) /* XXX */
6355 int lead_start_len = 2;
6356 int lead_middle_len = 1;
6357 char_u lead_start[COM_MAX_LEN]; /* start-comment string */
6358 char_u lead_middle[COM_MAX_LEN]; /* middle-comment string */
6359 char_u lead_end[COM_MAX_LEN]; /* end-comment string */
6360 char_u *p;
6361 int start_align = 0;
6362 int start_off = 0;
6363 int done = FALSE;
6365 /* find how indented the line beginning the comment is */
6366 getvcol(curwin, trypos, &col, NULL, NULL);
6367 amount = col;
6369 p = curbuf->b_p_com;
6370 while (*p != NUL)
6372 int align = 0;
6373 int off = 0;
6374 int what = 0;
6376 while (*p != NUL && *p != ':')
6378 if (*p == COM_START || *p == COM_END || *p == COM_MIDDLE)
6379 what = *p++;
6380 else if (*p == COM_LEFT || *p == COM_RIGHT)
6381 align = *p++;
6382 else if (VIM_ISDIGIT(*p) || *p == '-')
6383 off = getdigits(&p);
6384 else
6385 ++p;
6388 if (*p == ':')
6389 ++p;
6390 (void)copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
6391 if (what == COM_START)
6393 STRCPY(lead_start, lead_end);
6394 lead_start_len = (int)STRLEN(lead_start);
6395 start_off = off;
6396 start_align = align;
6398 else if (what == COM_MIDDLE)
6400 STRCPY(lead_middle, lead_end);
6401 lead_middle_len = (int)STRLEN(lead_middle);
6403 else if (what == COM_END)
6405 /* If our line starts with the middle comment string, line it
6406 * up with the comment opener per the 'comments' option. */
6407 if (STRNCMP(theline, lead_middle, lead_middle_len) == 0
6408 && STRNCMP(theline, lead_end, STRLEN(lead_end)) != 0)
6410 done = TRUE;
6411 if (curwin->w_cursor.lnum > 1)
6413 /* If the start comment string matches in the previous
6414 * line, use the indent of that line plus offset. If
6415 * the middle comment string matches in the previous
6416 * line, use the indent of that line. XXX */
6417 look = skipwhite(ml_get(curwin->w_cursor.lnum - 1));
6418 if (STRNCMP(look, lead_start, lead_start_len) == 0)
6419 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
6420 else if (STRNCMP(look, lead_middle,
6421 lead_middle_len) == 0)
6423 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
6424 break;
6426 /* If the start comment string doesn't match with the
6427 * start of the comment, skip this entry. XXX */
6428 else if (STRNCMP(ml_get(trypos->lnum) + trypos->col,
6429 lead_start, lead_start_len) != 0)
6430 continue;
6432 if (start_off != 0)
6433 amount += start_off;
6434 else if (start_align == COM_RIGHT)
6435 amount += vim_strsize(lead_start)
6436 - vim_strsize(lead_middle);
6437 break;
6440 /* If our line starts with the end comment string, line it up
6441 * with the middle comment */
6442 if (STRNCMP(theline, lead_middle, lead_middle_len) != 0
6443 && STRNCMP(theline, lead_end, STRLEN(lead_end)) == 0)
6445 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
6446 /* XXX */
6447 if (off != 0)
6448 amount += off;
6449 else if (align == COM_RIGHT)
6450 amount += vim_strsize(lead_start)
6451 - vim_strsize(lead_middle);
6452 done = TRUE;
6453 break;
6458 /* If our line starts with an asterisk, line up with the
6459 * asterisk in the comment opener; otherwise, line up
6460 * with the first character of the comment text.
6462 if (done)
6464 else if (theline[0] == '*')
6465 amount += 1;
6466 else
6469 * If we are more than one line away from the comment opener, take
6470 * the indent of the previous non-empty line. If 'cino' has "CO"
6471 * and we are just below the comment opener and there are any
6472 * white characters after it line up with the text after it;
6473 * otherwise, add the amount specified by "c" in 'cino'
6475 amount = -1;
6476 for (lnum = cur_curpos.lnum - 1; lnum > trypos->lnum; --lnum)
6478 if (linewhite(lnum)) /* skip blank lines */
6479 continue;
6480 amount = get_indent_lnum(lnum); /* XXX */
6481 break;
6483 if (amount == -1) /* use the comment opener */
6485 if (!ind_in_comment2)
6487 start = ml_get(trypos->lnum);
6488 look = start + trypos->col + 2; /* skip / and * */
6489 if (*look != NUL) /* if something after it */
6490 trypos->col = (colnr_T)(skipwhite(look) - start);
6492 getvcol(curwin, trypos, &col, NULL, NULL);
6493 amount = col;
6494 if (ind_in_comment2 || *look == NUL)
6495 amount += ind_in_comment;
6501 * Are we inside parentheses or braces?
6502 */ /* XXX */
6503 else if (((trypos = find_match_paren(ind_maxparen, ind_maxcomment)) != NULL
6504 && ind_java == 0)
6505 || (tryposBrace = find_start_brace(ind_maxcomment)) != NULL
6506 || trypos != NULL)
6508 if (trypos != NULL && tryposBrace != NULL)
6510 /* Both an unmatched '(' and '{' is found. Use the one which is
6511 * closer to the current cursor position, set the other to NULL. */
6512 if (trypos->lnum != tryposBrace->lnum
6513 ? trypos->lnum < tryposBrace->lnum
6514 : trypos->col < tryposBrace->col)
6515 trypos = NULL;
6516 else
6517 tryposBrace = NULL;
6520 if (trypos != NULL)
6523 * If the matching paren is more than one line away, use the indent of
6524 * a previous non-empty line that matches the same paren.
6526 if (theline[0] == ')' && ind_paren_prev)
6528 /* Line up with the start of the matching paren line. */
6529 amount = get_indent_lnum(curwin->w_cursor.lnum - 1); /* XXX */
6531 else
6533 amount = -1;
6534 our_paren_pos = *trypos;
6535 for (lnum = cur_curpos.lnum - 1; lnum > our_paren_pos.lnum; --lnum)
6537 l = skipwhite(ml_get(lnum));
6538 if (cin_nocode(l)) /* skip comment lines */
6539 continue;
6540 if (cin_ispreproc_cont(&l, &lnum))
6541 continue; /* ignore #define, #if, etc. */
6542 curwin->w_cursor.lnum = lnum;
6544 /* Skip a comment. XXX */
6545 if ((trypos = find_start_comment(ind_maxcomment)) != NULL)
6547 lnum = trypos->lnum + 1;
6548 continue;
6551 /* XXX */
6552 if ((trypos = find_match_paren(
6553 corr_ind_maxparen(ind_maxparen, &cur_curpos),
6554 ind_maxcomment)) != NULL
6555 && trypos->lnum == our_paren_pos.lnum
6556 && trypos->col == our_paren_pos.col)
6558 amount = get_indent_lnum(lnum); /* XXX */
6560 if (theline[0] == ')')
6562 if (our_paren_pos.lnum != lnum
6563 && cur_amount > amount)
6564 cur_amount = amount;
6565 amount = -1;
6567 break;
6573 * Line up with line where the matching paren is. XXX
6574 * If the line starts with a '(' or the indent for unclosed
6575 * parentheses is zero, line up with the unclosed parentheses.
6577 if (amount == -1)
6579 int ignore_paren_col = 0;
6581 amount = skip_label(our_paren_pos.lnum, &look, ind_maxcomment);
6582 look = skipwhite(look);
6583 if (*look == '(')
6585 linenr_T save_lnum = curwin->w_cursor.lnum;
6586 char_u *line;
6587 int look_col;
6589 /* Ignore a '(' in front of the line that has a match before
6590 * our matching '('. */
6591 curwin->w_cursor.lnum = our_paren_pos.lnum;
6592 line = ml_get_curline();
6593 look_col = (int)(look - line);
6594 curwin->w_cursor.col = look_col + 1;
6595 if ((trypos = findmatchlimit(NULL, ')', 0, ind_maxparen))
6596 != NULL
6597 && trypos->lnum == our_paren_pos.lnum
6598 && trypos->col < our_paren_pos.col)
6599 ignore_paren_col = trypos->col + 1;
6601 curwin->w_cursor.lnum = save_lnum;
6602 look = ml_get(our_paren_pos.lnum) + look_col;
6604 if (theline[0] == ')' || ind_unclosed == 0
6605 || (!ind_unclosed_noignore && *look == '('
6606 && ignore_paren_col == 0))
6609 * If we're looking at a close paren, line up right there;
6610 * otherwise, line up with the next (non-white) character.
6611 * When ind_unclosed_wrapped is set and the matching paren is
6612 * the last nonwhite character of the line, use either the
6613 * indent of the current line or the indentation of the next
6614 * outer paren and add ind_unclosed_wrapped (for very long
6615 * lines).
6617 if (theline[0] != ')')
6619 cur_amount = MAXCOL;
6620 l = ml_get(our_paren_pos.lnum);
6621 if (ind_unclosed_wrapped
6622 && cin_ends_in(l, (char_u *)"(", NULL))
6624 /* look for opening unmatched paren, indent one level
6625 * for each additional level */
6626 n = 1;
6627 for (col = 0; col < our_paren_pos.col; ++col)
6629 switch (l[col])
6631 case '(':
6632 case '{': ++n;
6633 break;
6635 case ')':
6636 case '}': if (n > 1)
6637 --n;
6638 break;
6642 our_paren_pos.col = 0;
6643 amount += n * ind_unclosed_wrapped;
6645 else if (ind_unclosed_whiteok)
6646 our_paren_pos.col++;
6647 else
6649 col = our_paren_pos.col + 1;
6650 while (vim_iswhite(l[col]))
6651 col++;
6652 if (l[col] != NUL) /* In case of trailing space */
6653 our_paren_pos.col = col;
6654 else
6655 our_paren_pos.col++;
6660 * Find how indented the paren is, or the character after it
6661 * if we did the above "if".
6663 if (our_paren_pos.col > 0)
6665 getvcol(curwin, &our_paren_pos, &col, NULL, NULL);
6666 if (cur_amount > (int)col)
6667 cur_amount = col;
6671 if (theline[0] == ')' && ind_matching_paren)
6673 /* Line up with the start of the matching paren line. */
6675 else if (ind_unclosed == 0 || (!ind_unclosed_noignore
6676 && *look == '(' && ignore_paren_col == 0))
6678 if (cur_amount != MAXCOL)
6679 amount = cur_amount;
6681 else
6683 /* Add ind_unclosed2 for each '(' before our matching one, but
6684 * ignore (void) before the line (ignore_paren_col). */
6685 col = our_paren_pos.col;
6686 while ((int)our_paren_pos.col > ignore_paren_col)
6688 --our_paren_pos.col;
6689 switch (*ml_get_pos(&our_paren_pos))
6691 case '(': amount += ind_unclosed2;
6692 col = our_paren_pos.col;
6693 break;
6694 case ')': amount -= ind_unclosed2;
6695 col = MAXCOL;
6696 break;
6700 /* Use ind_unclosed once, when the first '(' is not inside
6701 * braces */
6702 if (col == MAXCOL)
6703 amount += ind_unclosed;
6704 else
6706 curwin->w_cursor.lnum = our_paren_pos.lnum;
6707 curwin->w_cursor.col = col;
6708 if ((trypos = find_match_paren(ind_maxparen,
6709 ind_maxcomment)) != NULL)
6710 amount += ind_unclosed2;
6711 else
6712 amount += ind_unclosed;
6715 * For a line starting with ')' use the minimum of the two
6716 * positions, to avoid giving it more indent than the previous
6717 * lines:
6718 * func_long_name( if (x
6719 * arg && yy
6720 * ) ^ not here ) ^ not here
6722 if (cur_amount < amount)
6723 amount = cur_amount;
6727 /* add extra indent for a comment */
6728 if (cin_iscomment(theline))
6729 amount += ind_comment;
6733 * Are we at least inside braces, then?
6735 else
6737 trypos = tryposBrace;
6739 ourscope = trypos->lnum;
6740 start = ml_get(ourscope);
6743 * Now figure out how indented the line is in general.
6744 * If the brace was at the start of the line, we use that;
6745 * otherwise, check out the indentation of the line as
6746 * a whole and then add the "imaginary indent" to that.
6748 look = skipwhite(start);
6749 if (*look == '{')
6751 getvcol(curwin, trypos, &col, NULL, NULL);
6752 amount = col;
6753 if (*start == '{')
6754 start_brace = BRACE_IN_COL0;
6755 else
6756 start_brace = BRACE_AT_START;
6758 else
6761 * that opening brace might have been on a continuation
6762 * line. if so, find the start of the line.
6764 curwin->w_cursor.lnum = ourscope;
6767 * position the cursor over the rightmost paren, so that
6768 * matching it will take us back to the start of the line.
6770 lnum = ourscope;
6771 if (find_last_paren(start, '(', ')')
6772 && (trypos = find_match_paren(ind_maxparen,
6773 ind_maxcomment)) != NULL)
6774 lnum = trypos->lnum;
6777 * It could have been something like
6778 * case 1: if (asdf &&
6779 * ldfd) {
6782 if (ind_keep_case_label && cin_iscase(skipwhite(ml_get_curline())))
6783 amount = get_indent();
6784 else
6785 amount = skip_label(lnum, &l, ind_maxcomment);
6787 start_brace = BRACE_AT_END;
6791 * if we're looking at a closing brace, that's where
6792 * we want to be. otherwise, add the amount of room
6793 * that an indent is supposed to be.
6795 if (theline[0] == '}')
6798 * they may want closing braces to line up with something
6799 * other than the open brace. indulge them, if so.
6801 amount += ind_close_extra;
6803 else
6806 * If we're looking at an "else", try to find an "if"
6807 * to match it with.
6808 * If we're looking at a "while", try to find a "do"
6809 * to match it with.
6811 lookfor = LOOKFOR_INITIAL;
6812 if (cin_iselse(theline))
6813 lookfor = LOOKFOR_IF;
6814 else if (cin_iswhileofdo(theline, cur_curpos.lnum, ind_maxparen))
6815 /* XXX */
6816 lookfor = LOOKFOR_DO;
6817 if (lookfor != LOOKFOR_INITIAL)
6819 curwin->w_cursor.lnum = cur_curpos.lnum;
6820 if (find_match(lookfor, ourscope, ind_maxparen,
6821 ind_maxcomment) == OK)
6823 amount = get_indent(); /* XXX */
6824 goto theend;
6829 * We get here if we are not on an "while-of-do" or "else" (or
6830 * failed to find a matching "if").
6831 * Search backwards for something to line up with.
6832 * First set amount for when we don't find anything.
6836 * if the '{' is _really_ at the left margin, use the imaginary
6837 * location of a left-margin brace. Otherwise, correct the
6838 * location for ind_open_extra.
6841 if (start_brace == BRACE_IN_COL0) /* '{' is in column 0 */
6843 amount = ind_open_left_imag;
6845 else
6847 if (start_brace == BRACE_AT_END) /* '{' is at end of line */
6848 amount += ind_open_imag;
6849 else
6851 /* Compensate for adding ind_open_extra later. */
6852 amount -= ind_open_extra;
6853 if (amount < 0)
6854 amount = 0;
6858 lookfor_break = FALSE;
6860 if (cin_iscase(theline)) /* it's a switch() label */
6862 lookfor = LOOKFOR_CASE; /* find a previous switch() label */
6863 amount += ind_case;
6865 else if (cin_isscopedecl(theline)) /* private:, ... */
6867 lookfor = LOOKFOR_SCOPEDECL; /* class decl is this block */
6868 amount += ind_scopedecl;
6870 else
6872 if (ind_case_break && cin_isbreak(theline)) /* break; ... */
6873 lookfor_break = TRUE;
6875 lookfor = LOOKFOR_INITIAL;
6876 amount += ind_level; /* ind_level from start of block */
6878 scope_amount = amount;
6879 whilelevel = 0;
6882 * Search backwards. If we find something we recognize, line up
6883 * with that.
6885 * if we're looking at an open brace, indent
6886 * the usual amount relative to the conditional
6887 * that opens the block.
6889 curwin->w_cursor = cur_curpos;
6890 for (;;)
6892 curwin->w_cursor.lnum--;
6893 curwin->w_cursor.col = 0;
6896 * If we went all the way back to the start of our scope, line
6897 * up with it.
6899 if (curwin->w_cursor.lnum <= ourscope)
6901 /* we reached end of scope:
6902 * if looking for a enum or structure initialization
6903 * go further back:
6904 * if it is an initializer (enum xxx or xxx =), then
6905 * don't add ind_continuation, otherwise it is a variable
6906 * declaration:
6907 * int x,
6908 * here; <-- add ind_continuation
6910 if (lookfor == LOOKFOR_ENUM_OR_INIT)
6912 if (curwin->w_cursor.lnum == 0
6913 || curwin->w_cursor.lnum
6914 < ourscope - ind_maxparen)
6916 /* nothing found (abuse ind_maxparen as limit)
6917 * assume terminated line (i.e. a variable
6918 * initialization) */
6919 if (cont_amount > 0)
6920 amount = cont_amount;
6921 else
6922 amount += ind_continuation;
6923 break;
6926 l = ml_get_curline();
6929 * If we're in a comment now, skip to the start of the
6930 * comment.
6932 trypos = find_start_comment(ind_maxcomment);
6933 if (trypos != NULL)
6935 curwin->w_cursor.lnum = trypos->lnum + 1;
6936 curwin->w_cursor.col = 0;
6937 continue;
6941 * Skip preprocessor directives and blank lines.
6943 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
6944 continue;
6946 if (cin_nocode(l))
6947 continue;
6949 terminated = cin_isterminated(l, FALSE, TRUE);
6952 * If we are at top level and the line looks like a
6953 * function declaration, we are done
6954 * (it's a variable declaration).
6956 if (start_brace != BRACE_IN_COL0
6957 || !cin_isfuncdecl(&l, curwin->w_cursor.lnum))
6959 /* if the line is terminated with another ','
6960 * it is a continued variable initialization.
6961 * don't add extra indent.
6962 * TODO: does not work, if a function
6963 * declaration is split over multiple lines:
6964 * cin_isfuncdecl returns FALSE then.
6966 if (terminated == ',')
6967 break;
6969 /* if it es a enum declaration or an assignment,
6970 * we are done.
6972 if (terminated != ';' && cin_isinit())
6973 break;
6975 /* nothing useful found */
6976 if (terminated == 0 || terminated == '{')
6977 continue;
6980 if (terminated != ';')
6982 /* Skip parens and braces. Position the cursor
6983 * over the rightmost paren, so that matching it
6984 * will take us back to the start of the line.
6985 */ /* XXX */
6986 trypos = NULL;
6987 if (find_last_paren(l, '(', ')'))
6988 trypos = find_match_paren(ind_maxparen,
6989 ind_maxcomment);
6991 if (trypos == NULL && find_last_paren(l, '{', '}'))
6992 trypos = find_start_brace(ind_maxcomment);
6994 if (trypos != NULL)
6996 curwin->w_cursor.lnum = trypos->lnum + 1;
6997 curwin->w_cursor.col = 0;
6998 continue;
7002 /* it's a variable declaration, add indentation
7003 * like in
7004 * int a,
7005 * b;
7007 if (cont_amount > 0)
7008 amount = cont_amount;
7009 else
7010 amount += ind_continuation;
7012 else if (lookfor == LOOKFOR_UNTERM)
7014 if (cont_amount > 0)
7015 amount = cont_amount;
7016 else
7017 amount += ind_continuation;
7019 else if (lookfor != LOOKFOR_TERM
7020 && lookfor != LOOKFOR_CPP_BASECLASS)
7022 amount = scope_amount;
7023 if (theline[0] == '{')
7024 amount += ind_open_extra;
7026 break;
7030 * If we're in a comment now, skip to the start of the comment.
7031 */ /* XXX */
7032 if ((trypos = find_start_comment(ind_maxcomment)) != NULL)
7034 curwin->w_cursor.lnum = trypos->lnum + 1;
7035 curwin->w_cursor.col = 0;
7036 continue;
7039 l = ml_get_curline();
7042 * If this is a switch() label, may line up relative to that.
7043 * If this is a C++ scope declaration, do the same.
7045 iscase = cin_iscase(l);
7046 if (iscase || cin_isscopedecl(l))
7048 /* we are only looking for cpp base class
7049 * declaration/initialization any longer */
7050 if (lookfor == LOOKFOR_CPP_BASECLASS)
7051 break;
7053 /* When looking for a "do" we are not interested in
7054 * labels. */
7055 if (whilelevel > 0)
7056 continue;
7059 * case xx:
7060 * c = 99 + <- this indent plus continuation
7061 *-> here;
7063 if (lookfor == LOOKFOR_UNTERM
7064 || lookfor == LOOKFOR_ENUM_OR_INIT)
7066 if (cont_amount > 0)
7067 amount = cont_amount;
7068 else
7069 amount += ind_continuation;
7070 break;
7074 * case xx: <- line up with this case
7075 * x = 333;
7076 * case yy:
7078 if ( (iscase && lookfor == LOOKFOR_CASE)
7079 || (iscase && lookfor_break)
7080 || (!iscase && lookfor == LOOKFOR_SCOPEDECL))
7083 * Check that this case label is not for another
7084 * switch()
7085 */ /* XXX */
7086 if ((trypos = find_start_brace(ind_maxcomment)) ==
7087 NULL || trypos->lnum == ourscope)
7089 amount = get_indent(); /* XXX */
7090 break;
7092 continue;
7095 n = get_indent_nolabel(curwin->w_cursor.lnum); /* XXX */
7098 * case xx: if (cond) <- line up with this if
7099 * y = y + 1;
7100 * -> s = 99;
7102 * case xx:
7103 * if (cond) <- line up with this line
7104 * y = y + 1;
7105 * -> s = 99;
7107 if (lookfor == LOOKFOR_TERM)
7109 if (n)
7110 amount = n;
7112 if (!lookfor_break)
7113 break;
7117 * case xx: x = x + 1; <- line up with this x
7118 * -> y = y + 1;
7120 * case xx: if (cond) <- line up with this if
7121 * -> y = y + 1;
7123 if (n)
7125 amount = n;
7126 l = after_label(ml_get_curline());
7127 if (l != NULL && cin_is_cinword(l))
7129 if (theline[0] == '{')
7130 amount += ind_open_extra;
7131 else
7132 amount += ind_level + ind_no_brace;
7134 break;
7138 * Try to get the indent of a statement before the switch
7139 * label. If nothing is found, line up relative to the
7140 * switch label.
7141 * break; <- may line up with this line
7142 * case xx:
7143 * -> y = 1;
7145 scope_amount = get_indent() + (iscase /* XXX */
7146 ? ind_case_code : ind_scopedecl_code);
7147 lookfor = ind_case_break ? LOOKFOR_NOBREAK : LOOKFOR_ANY;
7148 continue;
7152 * Looking for a switch() label or C++ scope declaration,
7153 * ignore other lines, skip {}-blocks.
7155 if (lookfor == LOOKFOR_CASE || lookfor == LOOKFOR_SCOPEDECL)
7157 if (find_last_paren(l, '{', '}') && (trypos =
7158 find_start_brace(ind_maxcomment)) != NULL)
7160 curwin->w_cursor.lnum = trypos->lnum + 1;
7161 curwin->w_cursor.col = 0;
7163 continue;
7167 * Ignore jump labels with nothing after them.
7169 if (cin_islabel(ind_maxcomment))
7171 l = after_label(ml_get_curline());
7172 if (l == NULL || cin_nocode(l))
7173 continue;
7177 * Ignore #defines, #if, etc.
7178 * Ignore comment and empty lines.
7179 * (need to get the line again, cin_islabel() may have
7180 * unlocked it)
7182 l = ml_get_curline();
7183 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum)
7184 || cin_nocode(l))
7185 continue;
7188 * Are we at the start of a cpp base class declaration or
7189 * constructor initialization?
7190 */ /* XXX */
7191 n = FALSE;
7192 if (lookfor != LOOKFOR_TERM && ind_cpp_baseclass > 0)
7194 n = cin_is_cpp_baseclass(&col);
7195 l = ml_get_curline();
7197 if (n)
7199 if (lookfor == LOOKFOR_UNTERM)
7201 if (cont_amount > 0)
7202 amount = cont_amount;
7203 else
7204 amount += ind_continuation;
7206 else if (theline[0] == '{')
7208 /* Need to find start of the declaration. */
7209 lookfor = LOOKFOR_UNTERM;
7210 ind_continuation = 0;
7211 continue;
7213 else
7214 /* XXX */
7215 amount = get_baseclass_amount(col, ind_maxparen,
7216 ind_maxcomment, ind_cpp_baseclass);
7217 break;
7219 else if (lookfor == LOOKFOR_CPP_BASECLASS)
7221 /* only look, whether there is a cpp base class
7222 * declaration or initialization before the opening brace.
7224 if (cin_isterminated(l, TRUE, FALSE))
7225 break;
7226 else
7227 continue;
7231 * What happens next depends on the line being terminated.
7232 * If terminated with a ',' only consider it terminating if
7233 * there is another unterminated statement behind, eg:
7234 * 123,
7235 * sizeof
7236 * here
7237 * Otherwise check whether it is a enumeration or structure
7238 * initialisation (not indented) or a variable declaration
7239 * (indented).
7241 terminated = cin_isterminated(l, FALSE, TRUE);
7243 if (terminated == 0 || (lookfor != LOOKFOR_UNTERM
7244 && terminated == ','))
7247 * if we're in the middle of a paren thing,
7248 * go back to the line that starts it so
7249 * we can get the right prevailing indent
7250 * if ( foo &&
7251 * bar )
7254 * position the cursor over the rightmost paren, so that
7255 * matching it will take us back to the start of the line.
7257 (void)find_last_paren(l, '(', ')');
7258 trypos = find_match_paren(
7259 corr_ind_maxparen(ind_maxparen, &cur_curpos),
7260 ind_maxcomment);
7263 * If we are looking for ',', we also look for matching
7264 * braces.
7266 if (trypos == NULL && terminated == ','
7267 && find_last_paren(l, '{', '}'))
7268 trypos = find_start_brace(ind_maxcomment);
7270 if (trypos != NULL)
7273 * Check if we are on a case label now. This is
7274 * handled above.
7275 * case xx: if ( asdf &&
7276 * asdf)
7278 curwin->w_cursor = *trypos;
7279 l = ml_get_curline();
7280 if (cin_iscase(l) || cin_isscopedecl(l))
7282 ++curwin->w_cursor.lnum;
7283 curwin->w_cursor.col = 0;
7284 continue;
7289 * Skip over continuation lines to find the one to get the
7290 * indent from
7291 * char *usethis = "bla\
7292 * bla",
7293 * here;
7295 if (terminated == ',')
7297 while (curwin->w_cursor.lnum > 1)
7299 l = ml_get(curwin->w_cursor.lnum - 1);
7300 if (*l == NUL || l[STRLEN(l) - 1] != '\\')
7301 break;
7302 --curwin->w_cursor.lnum;
7303 curwin->w_cursor.col = 0;
7308 * Get indent and pointer to text for current line,
7309 * ignoring any jump label. XXX
7311 cur_amount = skip_label(curwin->w_cursor.lnum,
7312 &l, ind_maxcomment);
7315 * If this is just above the line we are indenting, and it
7316 * starts with a '{', line it up with this line.
7317 * while (not)
7318 * -> {
7321 if (terminated != ',' && lookfor != LOOKFOR_TERM
7322 && theline[0] == '{')
7324 amount = cur_amount;
7326 * Only add ind_open_extra when the current line
7327 * doesn't start with a '{', which must have a match
7328 * in the same line (scope is the same). Probably:
7329 * { 1, 2 },
7330 * -> { 3, 4 }
7332 if (*skipwhite(l) != '{')
7333 amount += ind_open_extra;
7335 if (ind_cpp_baseclass)
7337 /* have to look back, whether it is a cpp base
7338 * class declaration or initialization */
7339 lookfor = LOOKFOR_CPP_BASECLASS;
7340 continue;
7342 break;
7346 * Check if we are after an "if", "while", etc.
7347 * Also allow " } else".
7349 if (cin_is_cinword(l) || cin_iselse(skipwhite(l)))
7352 * Found an unterminated line after an if (), line up
7353 * with the last one.
7354 * if (cond)
7355 * 100 +
7356 * -> here;
7358 if (lookfor == LOOKFOR_UNTERM
7359 || lookfor == LOOKFOR_ENUM_OR_INIT)
7361 if (cont_amount > 0)
7362 amount = cont_amount;
7363 else
7364 amount += ind_continuation;
7365 break;
7369 * If this is just above the line we are indenting, we
7370 * are finished.
7371 * while (not)
7372 * -> here;
7373 * Otherwise this indent can be used when the line
7374 * before this is terminated.
7375 * yyy;
7376 * if (stat)
7377 * while (not)
7378 * xxx;
7379 * -> here;
7381 amount = cur_amount;
7382 if (theline[0] == '{')
7383 amount += ind_open_extra;
7384 if (lookfor != LOOKFOR_TERM)
7386 amount += ind_level + ind_no_brace;
7387 break;
7391 * Special trick: when expecting the while () after a
7392 * do, line up with the while()
7393 * do
7394 * x = 1;
7395 * -> here
7397 l = skipwhite(ml_get_curline());
7398 if (cin_isdo(l))
7400 if (whilelevel == 0)
7401 break;
7402 --whilelevel;
7406 * When searching for a terminated line, don't use the
7407 * one between the "if" and the "else".
7408 * Need to use the scope of this "else". XXX
7409 * If whilelevel != 0 continue looking for a "do {".
7411 if (cin_iselse(l)
7412 && whilelevel == 0
7413 && ((trypos = find_start_brace(ind_maxcomment))
7414 == NULL
7415 || find_match(LOOKFOR_IF, trypos->lnum,
7416 ind_maxparen, ind_maxcomment) == FAIL))
7417 break;
7421 * If we're below an unterminated line that is not an
7422 * "if" or something, we may line up with this line or
7423 * add something for a continuation line, depending on
7424 * the line before this one.
7426 else
7429 * Found two unterminated lines on a row, line up with
7430 * the last one.
7431 * c = 99 +
7432 * 100 +
7433 * -> here;
7435 if (lookfor == LOOKFOR_UNTERM)
7437 /* When line ends in a comma add extra indent */
7438 if (terminated == ',')
7439 amount += ind_continuation;
7440 break;
7443 if (lookfor == LOOKFOR_ENUM_OR_INIT)
7445 /* Found two lines ending in ',', lineup with the
7446 * lowest one, but check for cpp base class
7447 * declaration/initialization, if it is an
7448 * opening brace or we are looking just for
7449 * enumerations/initializations. */
7450 if (terminated == ',')
7452 if (ind_cpp_baseclass == 0)
7453 break;
7455 lookfor = LOOKFOR_CPP_BASECLASS;
7456 continue;
7459 /* Ignore unterminated lines in between, but
7460 * reduce indent. */
7461 if (amount > cur_amount)
7462 amount = cur_amount;
7464 else
7467 * Found first unterminated line on a row, may
7468 * line up with this line, remember its indent
7469 * 100 +
7470 * -> here;
7472 amount = cur_amount;
7475 * If previous line ends in ',', check whether we
7476 * are in an initialization or enum
7477 * struct xxx =
7479 * sizeof a,
7480 * 124 };
7481 * or a normal possible continuation line.
7482 * but only, of no other statement has been found
7483 * yet.
7485 if (lookfor == LOOKFOR_INITIAL && terminated == ',')
7487 lookfor = LOOKFOR_ENUM_OR_INIT;
7488 cont_amount = cin_first_id_amount();
7490 else
7492 if (lookfor == LOOKFOR_INITIAL
7493 && *l != NUL
7494 && l[STRLEN(l) - 1] == '\\')
7495 /* XXX */
7496 cont_amount = cin_get_equal_amount(
7497 curwin->w_cursor.lnum);
7498 if (lookfor != LOOKFOR_TERM)
7499 lookfor = LOOKFOR_UNTERM;
7506 * Check if we are after a while (cond);
7507 * If so: Ignore until the matching "do".
7509 /* XXX */
7510 else if (cin_iswhileofdo_end(terminated, ind_maxparen,
7511 ind_maxcomment))
7514 * Found an unterminated line after a while ();, line up
7515 * with the last one.
7516 * while (cond);
7517 * 100 + <- line up with this one
7518 * -> here;
7520 if (lookfor == LOOKFOR_UNTERM
7521 || lookfor == LOOKFOR_ENUM_OR_INIT)
7523 if (cont_amount > 0)
7524 amount = cont_amount;
7525 else
7526 amount += ind_continuation;
7527 break;
7530 if (whilelevel == 0)
7532 lookfor = LOOKFOR_TERM;
7533 amount = get_indent(); /* XXX */
7534 if (theline[0] == '{')
7535 amount += ind_open_extra;
7537 ++whilelevel;
7541 * We are after a "normal" statement.
7542 * If we had another statement we can stop now and use the
7543 * indent of that other statement.
7544 * Otherwise the indent of the current statement may be used,
7545 * search backwards for the next "normal" statement.
7547 else
7550 * Skip single break line, if before a switch label. It
7551 * may be lined up with the case label.
7553 if (lookfor == LOOKFOR_NOBREAK
7554 && cin_isbreak(skipwhite(ml_get_curline())))
7556 lookfor = LOOKFOR_ANY;
7557 continue;
7561 * Handle "do {" line.
7563 if (whilelevel > 0)
7565 l = cin_skipcomment(ml_get_curline());
7566 if (cin_isdo(l))
7568 amount = get_indent(); /* XXX */
7569 --whilelevel;
7570 continue;
7575 * Found a terminated line above an unterminated line. Add
7576 * the amount for a continuation line.
7577 * x = 1;
7578 * y = foo +
7579 * -> here;
7580 * or
7581 * int x = 1;
7582 * int foo,
7583 * -> here;
7585 if (lookfor == LOOKFOR_UNTERM
7586 || lookfor == LOOKFOR_ENUM_OR_INIT)
7588 if (cont_amount > 0)
7589 amount = cont_amount;
7590 else
7591 amount += ind_continuation;
7592 break;
7596 * Found a terminated line above a terminated line or "if"
7597 * etc. line. Use the amount of the line below us.
7598 * x = 1; x = 1;
7599 * if (asdf) y = 2;
7600 * while (asdf) ->here;
7601 * here;
7602 * ->foo;
7604 if (lookfor == LOOKFOR_TERM)
7606 if (!lookfor_break && whilelevel == 0)
7607 break;
7611 * First line above the one we're indenting is terminated.
7612 * To know what needs to be done look further backward for
7613 * a terminated line.
7615 else
7618 * position the cursor over the rightmost paren, so
7619 * that matching it will take us back to the start of
7620 * the line. Helps for:
7621 * func(asdr,
7622 * asdfasdf);
7623 * here;
7625 term_again:
7626 l = ml_get_curline();
7627 if (find_last_paren(l, '(', ')')
7628 && (trypos = find_match_paren(ind_maxparen,
7629 ind_maxcomment)) != NULL)
7632 * Check if we are on a case label now. This is
7633 * handled above.
7634 * case xx: if ( asdf &&
7635 * asdf)
7637 curwin->w_cursor = *trypos;
7638 l = ml_get_curline();
7639 if (cin_iscase(l) || cin_isscopedecl(l))
7641 ++curwin->w_cursor.lnum;
7642 curwin->w_cursor.col = 0;
7643 continue;
7647 /* When aligning with the case statement, don't align
7648 * with a statement after it.
7649 * case 1: { <-- don't use this { position
7650 * stat;
7652 * case 2:
7653 * stat;
7656 iscase = (ind_keep_case_label && cin_iscase(l));
7659 * Get indent and pointer to text for current line,
7660 * ignoring any jump label.
7662 amount = skip_label(curwin->w_cursor.lnum,
7663 &l, ind_maxcomment);
7665 if (theline[0] == '{')
7666 amount += ind_open_extra;
7667 /* See remark above: "Only add ind_open_extra.." */
7668 l = skipwhite(l);
7669 if (*l == '{')
7670 amount -= ind_open_extra;
7671 lookfor = iscase ? LOOKFOR_ANY : LOOKFOR_TERM;
7674 * When a terminated line starts with "else" skip to
7675 * the matching "if":
7676 * else 3;
7677 * indent this;
7678 * Need to use the scope of this "else". XXX
7679 * If whilelevel != 0 continue looking for a "do {".
7681 if (lookfor == LOOKFOR_TERM
7682 && *l != '}'
7683 && cin_iselse(l)
7684 && whilelevel == 0)
7686 if ((trypos = find_start_brace(ind_maxcomment))
7687 == NULL
7688 || find_match(LOOKFOR_IF, trypos->lnum,
7689 ind_maxparen, ind_maxcomment) == FAIL)
7690 break;
7691 continue;
7695 * If we're at the end of a block, skip to the start of
7696 * that block.
7698 curwin->w_cursor.col = 0;
7699 if (*cin_skipcomment(l) == '}'
7700 && (trypos = find_start_brace(ind_maxcomment))
7701 != NULL) /* XXX */
7703 curwin->w_cursor = *trypos;
7704 /* if not "else {" check for terminated again */
7705 /* but skip block for "} else {" */
7706 l = cin_skipcomment(ml_get_curline());
7707 if (*l == '}' || !cin_iselse(l))
7708 goto term_again;
7709 ++curwin->w_cursor.lnum;
7710 curwin->w_cursor.col = 0;
7718 /* add extra indent for a comment */
7719 if (cin_iscomment(theline))
7720 amount += ind_comment;
7724 * ok -- we're not inside any sort of structure at all!
7726 * this means we're at the top level, and everything should
7727 * basically just match where the previous line is, except
7728 * for the lines immediately following a function declaration,
7729 * which are K&R-style parameters and need to be indented.
7731 else
7734 * if our line starts with an open brace, forget about any
7735 * prevailing indent and make sure it looks like the start
7736 * of a function
7739 if (theline[0] == '{')
7741 amount = ind_first_open;
7745 * If the NEXT line is a function declaration, the current
7746 * line needs to be indented as a function type spec.
7747 * Don't do this if the current line looks like a comment or if the
7748 * current line is terminated, ie. ends in ';', or if the current line
7749 * contains { or }: "void f() {\n if (1)"
7751 else if (cur_curpos.lnum < curbuf->b_ml.ml_line_count
7752 && !cin_nocode(theline)
7753 && vim_strchr(theline, '{') == NULL
7754 && vim_strchr(theline, '}') == NULL
7755 && !cin_ends_in(theline, (char_u *)":", NULL)
7756 && !cin_ends_in(theline, (char_u *)",", NULL)
7757 && cin_isfuncdecl(NULL, cur_curpos.lnum + 1)
7758 && !cin_isterminated(theline, FALSE, TRUE))
7760 amount = ind_func_type;
7762 else
7764 amount = 0;
7765 curwin->w_cursor = cur_curpos;
7767 /* search backwards until we find something we recognize */
7769 while (curwin->w_cursor.lnum > 1)
7771 curwin->w_cursor.lnum--;
7772 curwin->w_cursor.col = 0;
7774 l = ml_get_curline();
7777 * If we're in a comment now, skip to the start of the comment.
7778 */ /* XXX */
7779 if ((trypos = find_start_comment(ind_maxcomment)) != NULL)
7781 curwin->w_cursor.lnum = trypos->lnum + 1;
7782 curwin->w_cursor.col = 0;
7783 continue;
7787 * Are we at the start of a cpp base class declaration or
7788 * constructor initialization?
7789 */ /* XXX */
7790 n = FALSE;
7791 if (ind_cpp_baseclass != 0 && theline[0] != '{')
7793 n = cin_is_cpp_baseclass(&col);
7794 l = ml_get_curline();
7796 if (n)
7798 /* XXX */
7799 amount = get_baseclass_amount(col, ind_maxparen,
7800 ind_maxcomment, ind_cpp_baseclass);
7801 break;
7805 * Skip preprocessor directives and blank lines.
7807 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
7808 continue;
7810 if (cin_nocode(l))
7811 continue;
7814 * If the previous line ends in ',', use one level of
7815 * indentation:
7816 * int foo,
7817 * bar;
7818 * do this before checking for '}' in case of eg.
7819 * enum foobar
7821 * ...
7822 * } foo,
7823 * bar;
7825 n = 0;
7826 if (cin_ends_in(l, (char_u *)",", NULL)
7827 || (*l != NUL && (n = l[STRLEN(l) - 1]) == '\\'))
7829 /* take us back to opening paren */
7830 if (find_last_paren(l, '(', ')')
7831 && (trypos = find_match_paren(ind_maxparen,
7832 ind_maxcomment)) != NULL)
7833 curwin->w_cursor = *trypos;
7835 /* For a line ending in ',' that is a continuation line go
7836 * back to the first line with a backslash:
7837 * char *foo = "bla\
7838 * bla",
7839 * here;
7841 while (n == 0 && curwin->w_cursor.lnum > 1)
7843 l = ml_get(curwin->w_cursor.lnum - 1);
7844 if (*l == NUL || l[STRLEN(l) - 1] != '\\')
7845 break;
7846 --curwin->w_cursor.lnum;
7847 curwin->w_cursor.col = 0;
7850 amount = get_indent(); /* XXX */
7852 if (amount == 0)
7853 amount = cin_first_id_amount();
7854 if (amount == 0)
7855 amount = ind_continuation;
7856 break;
7860 * If the line looks like a function declaration, and we're
7861 * not in a comment, put it the left margin.
7863 if (cin_isfuncdecl(NULL, cur_curpos.lnum)) /* XXX */
7864 break;
7865 l = ml_get_curline();
7868 * Finding the closing '}' of a previous function. Put
7869 * current line at the left margin. For when 'cino' has "fs".
7871 if (*skipwhite(l) == '}')
7872 break;
7874 /* (matching {)
7875 * If the previous line ends on '};' (maybe followed by
7876 * comments) align at column 0. For example:
7877 * char *string_array[] = { "foo",
7878 * / * x * / "b};ar" }; / * foobar * /
7880 if (cin_ends_in(l, (char_u *)"};", NULL))
7881 break;
7884 * If the PREVIOUS line is a function declaration, the current
7885 * line (and the ones that follow) needs to be indented as
7886 * parameters.
7888 if (cin_isfuncdecl(&l, curwin->w_cursor.lnum))
7890 amount = ind_param;
7891 break;
7895 * If the previous line ends in ';' and the line before the
7896 * previous line ends in ',' or '\', ident to column zero:
7897 * int foo,
7898 * bar;
7899 * indent_to_0 here;
7901 if (cin_ends_in(l, (char_u *)";", NULL))
7903 l = ml_get(curwin->w_cursor.lnum - 1);
7904 if (cin_ends_in(l, (char_u *)",", NULL)
7905 || (*l != NUL && l[STRLEN(l) - 1] == '\\'))
7906 break;
7907 l = ml_get_curline();
7911 * Doesn't look like anything interesting -- so just
7912 * use the indent of this line.
7914 * Position the cursor over the rightmost paren, so that
7915 * matching it will take us back to the start of the line.
7917 find_last_paren(l, '(', ')');
7919 if ((trypos = find_match_paren(ind_maxparen,
7920 ind_maxcomment)) != NULL)
7921 curwin->w_cursor = *trypos;
7922 amount = get_indent(); /* XXX */
7923 break;
7926 /* add extra indent for a comment */
7927 if (cin_iscomment(theline))
7928 amount += ind_comment;
7930 /* add extra indent if the previous line ended in a backslash:
7931 * "asdfasdf\
7932 * here";
7933 * char *foo = "asdf\
7934 * here";
7936 if (cur_curpos.lnum > 1)
7938 l = ml_get(cur_curpos.lnum - 1);
7939 if (*l != NUL && l[STRLEN(l) - 1] == '\\')
7941 cur_amount = cin_get_equal_amount(cur_curpos.lnum - 1);
7942 if (cur_amount > 0)
7943 amount = cur_amount;
7944 else if (cur_amount == 0)
7945 amount += ind_continuation;
7951 theend:
7952 /* put the cursor back where it belongs */
7953 curwin->w_cursor = cur_curpos;
7955 vim_free(linecopy);
7957 if (amount < 0)
7958 return 0;
7959 return amount;
7962 static int
7963 find_match(lookfor, ourscope, ind_maxparen, ind_maxcomment)
7964 int lookfor;
7965 linenr_T ourscope;
7966 int ind_maxparen;
7967 int ind_maxcomment;
7969 char_u *look;
7970 pos_T *theirscope;
7971 char_u *mightbeif;
7972 int elselevel;
7973 int whilelevel;
7975 if (lookfor == LOOKFOR_IF)
7977 elselevel = 1;
7978 whilelevel = 0;
7980 else
7982 elselevel = 0;
7983 whilelevel = 1;
7986 curwin->w_cursor.col = 0;
7988 while (curwin->w_cursor.lnum > ourscope + 1)
7990 curwin->w_cursor.lnum--;
7991 curwin->w_cursor.col = 0;
7993 look = cin_skipcomment(ml_get_curline());
7994 if (cin_iselse(look)
7995 || cin_isif(look)
7996 || cin_isdo(look) /* XXX */
7997 || cin_iswhileofdo(look, curwin->w_cursor.lnum, ind_maxparen))
8000 * if we've gone outside the braces entirely,
8001 * we must be out of scope...
8003 theirscope = find_start_brace(ind_maxcomment); /* XXX */
8004 if (theirscope == NULL)
8005 break;
8008 * and if the brace enclosing this is further
8009 * back than the one enclosing the else, we're
8010 * out of luck too.
8012 if (theirscope->lnum < ourscope)
8013 break;
8016 * and if they're enclosed in a *deeper* brace,
8017 * then we can ignore it because it's in a
8018 * different scope...
8020 if (theirscope->lnum > ourscope)
8021 continue;
8024 * if it was an "else" (that's not an "else if")
8025 * then we need to go back to another if, so
8026 * increment elselevel
8028 look = cin_skipcomment(ml_get_curline());
8029 if (cin_iselse(look))
8031 mightbeif = cin_skipcomment(look + 4);
8032 if (!cin_isif(mightbeif))
8033 ++elselevel;
8034 continue;
8038 * if it was a "while" then we need to go back to
8039 * another "do", so increment whilelevel. XXX
8041 if (cin_iswhileofdo(look, curwin->w_cursor.lnum, ind_maxparen))
8043 ++whilelevel;
8044 continue;
8047 /* If it's an "if" decrement elselevel */
8048 look = cin_skipcomment(ml_get_curline());
8049 if (cin_isif(look))
8051 elselevel--;
8053 * When looking for an "if" ignore "while"s that
8054 * get in the way.
8056 if (elselevel == 0 && lookfor == LOOKFOR_IF)
8057 whilelevel = 0;
8060 /* If it's a "do" decrement whilelevel */
8061 if (cin_isdo(look))
8062 whilelevel--;
8065 * if we've used up all the elses, then
8066 * this must be the if that we want!
8067 * match the indent level of that if.
8069 if (elselevel <= 0 && whilelevel <= 0)
8071 return OK;
8075 return FAIL;
8078 # if defined(FEAT_EVAL) || defined(PROTO)
8080 * Get indent level from 'indentexpr'.
8083 get_expr_indent()
8085 int indent;
8086 pos_T pos;
8087 int save_State;
8088 int use_sandbox = was_set_insecurely((char_u *)"indentexpr",
8089 OPT_LOCAL);
8091 pos = curwin->w_cursor;
8092 set_vim_var_nr(VV_LNUM, curwin->w_cursor.lnum);
8093 if (use_sandbox)
8094 ++sandbox;
8095 ++textlock;
8096 indent = eval_to_number(curbuf->b_p_inde);
8097 if (use_sandbox)
8098 --sandbox;
8099 --textlock;
8101 /* Restore the cursor position so that 'indentexpr' doesn't need to.
8102 * Pretend to be in Insert mode, allow cursor past end of line for "o"
8103 * command. */
8104 save_State = State;
8105 State = INSERT;
8106 curwin->w_cursor = pos;
8107 check_cursor();
8108 State = save_State;
8110 /* If there is an error, just keep the current indent. */
8111 if (indent < 0)
8112 indent = get_indent();
8114 return indent;
8116 # endif
8118 #endif /* FEAT_CINDENT */
8120 #if defined(FEAT_LISP) || defined(PROTO)
8122 static int lisp_match __ARGS((char_u *p));
8124 static int
8125 lisp_match(p)
8126 char_u *p;
8128 char_u buf[LSIZE];
8129 int len;
8130 char_u *word = p_lispwords;
8132 while (*word != NUL)
8134 (void)copy_option_part(&word, buf, LSIZE, ",");
8135 len = (int)STRLEN(buf);
8136 if (STRNCMP(buf, p, len) == 0 && p[len] == ' ')
8137 return TRUE;
8139 return FALSE;
8143 * When 'p' is present in 'cpoptions, a Vi compatible method is used.
8144 * The incompatible newer method is quite a bit better at indenting
8145 * code in lisp-like languages than the traditional one; it's still
8146 * mostly heuristics however -- Dirk van Deun, dirk@rave.org
8148 * TODO:
8149 * Findmatch() should be adapted for lisp, also to make showmatch
8150 * work correctly: now (v5.3) it seems all C/C++ oriented:
8151 * - it does not recognize the #\( and #\) notations as character literals
8152 * - it doesn't know about comments starting with a semicolon
8153 * - it incorrectly interprets '(' as a character literal
8154 * All this messes up get_lisp_indent in some rare cases.
8155 * Update from Sergey Khorev:
8156 * I tried to fix the first two issues.
8159 get_lisp_indent()
8161 pos_T *pos, realpos, paren;
8162 int amount;
8163 char_u *that;
8164 colnr_T col;
8165 colnr_T firsttry;
8166 int parencount, quotecount;
8167 int vi_lisp;
8169 /* Set vi_lisp to use the vi-compatible method */
8170 vi_lisp = (vim_strchr(p_cpo, CPO_LISP) != NULL);
8172 realpos = curwin->w_cursor;
8173 curwin->w_cursor.col = 0;
8175 if ((pos = findmatch(NULL, '(')) == NULL)
8176 pos = findmatch(NULL, '[');
8177 else
8179 paren = *pos;
8180 pos = findmatch(NULL, '[');
8181 if (pos == NULL || ltp(pos, &paren))
8182 pos = &paren;
8184 if (pos != NULL)
8186 /* Extra trick: Take the indent of the first previous non-white
8187 * line that is at the same () level. */
8188 amount = -1;
8189 parencount = 0;
8191 while (--curwin->w_cursor.lnum >= pos->lnum)
8193 if (linewhite(curwin->w_cursor.lnum))
8194 continue;
8195 for (that = ml_get_curline(); *that != NUL; ++that)
8197 if (*that == ';')
8199 while (*(that + 1) != NUL)
8200 ++that;
8201 continue;
8203 if (*that == '\\')
8205 if (*(that + 1) != NUL)
8206 ++that;
8207 continue;
8209 if (*that == '"' && *(that + 1) != NUL)
8211 while (*++that && *that != '"')
8213 /* skipping escaped characters in the string */
8214 if (*that == '\\')
8216 if (*++that == NUL)
8217 break;
8218 if (that[1] == NUL)
8220 ++that;
8221 break;
8226 if (*that == '(' || *that == '[')
8227 ++parencount;
8228 else if (*that == ')' || *that == ']')
8229 --parencount;
8231 if (parencount == 0)
8233 amount = get_indent();
8234 break;
8238 if (amount == -1)
8240 curwin->w_cursor.lnum = pos->lnum;
8241 curwin->w_cursor.col = pos->col;
8242 col = pos->col;
8244 that = ml_get_curline();
8246 if (vi_lisp && get_indent() == 0)
8247 amount = 2;
8248 else
8250 amount = 0;
8251 while (*that && col)
8253 amount += lbr_chartabsize_adv(&that, (colnr_T)amount);
8254 col--;
8258 * Some keywords require "body" indenting rules (the
8259 * non-standard-lisp ones are Scheme special forms):
8261 * (let ((a 1)) instead (let ((a 1))
8262 * (...)) of (...))
8265 if (!vi_lisp && (*that == '(' || *that == '[')
8266 && lisp_match(that + 1))
8267 amount += 2;
8268 else
8270 that++;
8271 amount++;
8272 firsttry = amount;
8274 while (vim_iswhite(*that))
8276 amount += lbr_chartabsize(that, (colnr_T)amount);
8277 ++that;
8280 if (*that && *that != ';') /* not a comment line */
8282 /* test *that != '(' to accommodate first let/do
8283 * argument if it is more than one line */
8284 if (!vi_lisp && *that != '(' && *that != '[')
8285 firsttry++;
8287 parencount = 0;
8288 quotecount = 0;
8290 if (vi_lisp
8291 || (*that != '"'
8292 && *that != '\''
8293 && *that != '#'
8294 && (*that < '0' || *that > '9')))
8296 while (*that
8297 && (!vim_iswhite(*that)
8298 || quotecount
8299 || parencount)
8300 && (!((*that == '(' || *that == '[')
8301 && !quotecount
8302 && !parencount
8303 && vi_lisp)))
8305 if (*that == '"')
8306 quotecount = !quotecount;
8307 if ((*that == '(' || *that == '[')
8308 && !quotecount)
8309 ++parencount;
8310 if ((*that == ')' || *that == ']')
8311 && !quotecount)
8312 --parencount;
8313 if (*that == '\\' && *(that+1) != NUL)
8314 amount += lbr_chartabsize_adv(&that,
8315 (colnr_T)amount);
8316 amount += lbr_chartabsize_adv(&that,
8317 (colnr_T)amount);
8320 while (vim_iswhite(*that))
8322 amount += lbr_chartabsize(that, (colnr_T)amount);
8323 that++;
8325 if (!*that || *that == ';')
8326 amount = firsttry;
8332 else
8333 amount = 0; /* no matching '(' or '[' found, use zero indent */
8335 curwin->w_cursor = realpos;
8337 return amount;
8339 #endif /* FEAT_LISP */
8341 void
8342 prepare_to_exit()
8344 #if defined(SIGHUP) && defined(SIG_IGN)
8345 /* Ignore SIGHUP, because a dropped connection causes a read error, which
8346 * makes Vim exit and then handling SIGHUP causes various reentrance
8347 * problems. */
8348 signal(SIGHUP, SIG_IGN);
8349 #endif
8351 #ifdef FEAT_GUI
8352 if (gui.in_use)
8354 gui.dying = TRUE;
8355 out_trash(); /* trash any pending output */
8357 else
8358 #endif
8360 windgoto((int)Rows - 1, 0);
8363 * Switch terminal mode back now, so messages end up on the "normal"
8364 * screen (if there are two screens).
8366 settmode(TMODE_COOK);
8367 #ifdef WIN3264
8368 if (can_end_termcap_mode(FALSE) == TRUE)
8369 #endif
8370 stoptermcap();
8371 out_flush();
8376 * Preserve files and exit.
8377 * When called IObuff must contain a message.
8379 void
8380 preserve_exit()
8382 buf_T *buf;
8384 prepare_to_exit();
8386 /* Setting this will prevent free() calls. That avoids calling free()
8387 * recursively when free() was invoked with a bad pointer. */
8388 really_exiting = TRUE;
8390 out_str(IObuff);
8391 screen_start(); /* don't know where cursor is now */
8392 out_flush();
8394 ml_close_notmod(); /* close all not-modified buffers */
8396 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
8398 if (buf->b_ml.ml_mfp != NULL && buf->b_ml.ml_mfp->mf_fname != NULL)
8400 OUT_STR(_("Vim: preserving files...\n"));
8401 screen_start(); /* don't know where cursor is now */
8402 out_flush();
8403 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
8404 break;
8408 ml_close_all(FALSE); /* close all memfiles, without deleting */
8410 OUT_STR(_("Vim: Finished.\n"));
8412 getout(1);
8416 * return TRUE if "fname" exists.
8419 vim_fexists(fname)
8420 char_u *fname;
8422 struct stat st;
8424 if (mch_stat((char *)fname, &st))
8425 return FALSE;
8426 return TRUE;
8430 * Check for CTRL-C pressed, but only once in a while.
8431 * Should be used instead of ui_breakcheck() for functions that check for
8432 * each line in the file. Calling ui_breakcheck() each time takes too much
8433 * time, because it can be a system call.
8436 #ifndef BREAKCHECK_SKIP
8437 # ifdef FEAT_GUI /* assume the GUI only runs on fast computers */
8438 # define BREAKCHECK_SKIP 200
8439 # else
8440 # define BREAKCHECK_SKIP 32
8441 # endif
8442 #endif
8444 static int breakcheck_count = 0;
8446 void
8447 line_breakcheck()
8449 if (++breakcheck_count >= BREAKCHECK_SKIP)
8451 breakcheck_count = 0;
8452 ui_breakcheck();
8457 * Like line_breakcheck() but check 10 times less often.
8459 void
8460 fast_breakcheck()
8462 if (++breakcheck_count >= BREAKCHECK_SKIP * 10)
8464 breakcheck_count = 0;
8465 ui_breakcheck();
8470 * Invoke expand_wildcards() for one pattern.
8471 * Expand items like "%:h" before the expansion.
8472 * Returns OK or FAIL.
8475 expand_wildcards_eval(pat, num_file, file, flags)
8476 char_u **pat; /* pointer to input pattern */
8477 int *num_file; /* resulting number of files */
8478 char_u ***file; /* array of resulting files */
8479 int flags; /* EW_DIR, etc. */
8481 int ret = FAIL;
8482 char_u *eval_pat = NULL;
8483 char_u *exp_pat = *pat;
8484 char_u *ignored_msg;
8485 int usedlen;
8487 if (*exp_pat == '%' || *exp_pat == '#' || *exp_pat == '<')
8489 ++emsg_off;
8490 eval_pat = eval_vars(exp_pat, exp_pat, &usedlen,
8491 NULL, &ignored_msg, NULL);
8492 --emsg_off;
8493 if (eval_pat != NULL)
8494 exp_pat = concat_str(eval_pat, exp_pat + usedlen);
8497 if (exp_pat != NULL)
8498 ret = expand_wildcards(1, &exp_pat, num_file, file, flags);
8500 if (eval_pat != NULL)
8502 vim_free(exp_pat);
8503 vim_free(eval_pat);
8506 return ret;
8510 * Expand wildcards. Calls gen_expand_wildcards() and removes files matching
8511 * 'wildignore'.
8512 * Returns OK or FAIL.
8515 expand_wildcards(num_pat, pat, num_file, file, flags)
8516 int num_pat; /* number of input patterns */
8517 char_u **pat; /* array of input patterns */
8518 int *num_file; /* resulting number of files */
8519 char_u ***file; /* array of resulting files */
8520 int flags; /* EW_DIR, etc. */
8522 int retval;
8523 int i, j;
8524 char_u *p;
8525 int non_suf_match; /* number without matching suffix */
8527 retval = gen_expand_wildcards(num_pat, pat, num_file, file, flags);
8529 /* When keeping all matches, return here */
8530 if (flags & EW_KEEPALL)
8531 return retval;
8533 #ifdef FEAT_WILDIGN
8535 * Remove names that match 'wildignore'.
8537 if (*p_wig)
8539 char_u *ffname;
8541 /* check all files in (*file)[] */
8542 for (i = 0; i < *num_file; ++i)
8544 ffname = FullName_save((*file)[i], FALSE);
8545 if (ffname == NULL) /* out of memory */
8546 break;
8547 # ifdef VMS
8548 vms_remove_version(ffname);
8549 # endif
8550 if (match_file_list(p_wig, (*file)[i], ffname))
8552 /* remove this matching file from the list */
8553 vim_free((*file)[i]);
8554 for (j = i; j + 1 < *num_file; ++j)
8555 (*file)[j] = (*file)[j + 1];
8556 --*num_file;
8557 --i;
8559 vim_free(ffname);
8562 #endif
8565 * Move the names where 'suffixes' match to the end.
8567 if (*num_file > 1)
8569 non_suf_match = 0;
8570 for (i = 0; i < *num_file; ++i)
8572 if (!match_suffix((*file)[i]))
8575 * Move the name without matching suffix to the front
8576 * of the list.
8578 p = (*file)[i];
8579 for (j = i; j > non_suf_match; --j)
8580 (*file)[j] = (*file)[j - 1];
8581 (*file)[non_suf_match++] = p;
8586 return retval;
8590 * Return TRUE if "fname" matches with an entry in 'suffixes'.
8593 match_suffix(fname)
8594 char_u *fname;
8596 int fnamelen, setsuflen;
8597 char_u *setsuf;
8598 #define MAXSUFLEN 30 /* maximum length of a file suffix */
8599 char_u suf_buf[MAXSUFLEN];
8601 fnamelen = (int)STRLEN(fname);
8602 setsuflen = 0;
8603 for (setsuf = p_su; *setsuf; )
8605 setsuflen = copy_option_part(&setsuf, suf_buf, MAXSUFLEN, ".,");
8606 if (setsuflen == 0)
8608 char_u *tail = gettail(fname);
8610 /* empty entry: match name without a '.' */
8611 if (vim_strchr(tail, '.') == NULL)
8613 setsuflen = 1;
8614 break;
8617 else
8619 if (fnamelen >= setsuflen
8620 && fnamencmp(suf_buf, fname + fnamelen - setsuflen,
8621 (size_t)setsuflen) == 0)
8622 break;
8623 setsuflen = 0;
8626 return (setsuflen != 0);
8629 #if !defined(NO_EXPANDPATH) || defined(PROTO)
8631 # ifdef VIM_BACKTICK
8632 static int vim_backtick __ARGS((char_u *p));
8633 static int expand_backtick __ARGS((garray_T *gap, char_u *pat, int flags));
8634 # endif
8636 # if defined(MSDOS) || defined(FEAT_GUI_W16) || defined(WIN3264)
8638 * File name expansion code for MS-DOS, Win16 and Win32. It's here because
8639 * it's shared between these systems.
8641 # if defined(DJGPP) || defined(PROTO)
8642 # define _cdecl /* DJGPP doesn't have this */
8643 # else
8644 # ifdef __BORLANDC__
8645 # define _cdecl _RTLENTRYF
8646 # endif
8647 # endif
8650 * comparison function for qsort in dos_expandpath()
8652 static int _cdecl
8653 pstrcmp(const void *a, const void *b)
8655 return (pathcmp(*(char **)a, *(char **)b, -1));
8658 # ifndef WIN3264
8659 static void
8660 namelowcpy(
8661 char_u *d,
8662 char_u *s)
8664 # ifdef DJGPP
8665 if (USE_LONG_FNAME) /* don't lower case on Windows 95/NT systems */
8666 while (*s)
8667 *d++ = *s++;
8668 else
8669 # endif
8670 while (*s)
8671 *d++ = TOLOWER_LOC(*s++);
8672 *d = NUL;
8674 # endif
8677 * Recursively expand one path component into all matching files and/or
8678 * directories. Adds matches to "gap". Handles "*", "?", "[a-z]", "**", etc.
8679 * Return the number of matches found.
8680 * "path" has backslashes before chars that are not to be expanded, starting
8681 * at "path[wildoff]".
8682 * Return the number of matches found.
8683 * NOTE: much of this is identical to unix_expandpath(), keep in sync!
8685 static int
8686 dos_expandpath(
8687 garray_T *gap,
8688 char_u *path,
8689 int wildoff,
8690 int flags, /* EW_* flags */
8691 int didstar) /* expanded "**" once already */
8693 char_u *buf;
8694 char_u *path_end;
8695 char_u *p, *s, *e;
8696 int start_len = gap->ga_len;
8697 char_u *pat;
8698 regmatch_T regmatch;
8699 int starts_with_dot;
8700 int matches;
8701 int len;
8702 int starstar = FALSE;
8703 static int stardepth = 0; /* depth for "**" expansion */
8704 #ifdef WIN3264
8705 WIN32_FIND_DATA fb;
8706 HANDLE hFind = (HANDLE)0;
8707 # ifdef FEAT_MBYTE
8708 WIN32_FIND_DATAW wfb;
8709 WCHAR *wn = NULL; /* UCS-2 name, NULL when not used. */
8710 # endif
8711 #else
8712 struct ffblk fb;
8713 #endif
8714 char_u *matchname;
8715 int ok;
8717 /* Expanding "**" may take a long time, check for CTRL-C. */
8718 if (stardepth > 0)
8720 ui_breakcheck();
8721 if (got_int)
8722 return 0;
8725 /* make room for file name */
8726 buf = alloc((int)STRLEN(path) + BASENAMELEN + 5);
8727 if (buf == NULL)
8728 return 0;
8731 * Find the first part in the path name that contains a wildcard or a ~1.
8732 * Copy it into buf, including the preceding characters.
8734 p = buf;
8735 s = buf;
8736 e = NULL;
8737 path_end = path;
8738 while (*path_end != NUL)
8740 /* May ignore a wildcard that has a backslash before it; it will
8741 * be removed by rem_backslash() or file_pat_to_reg_pat() below. */
8742 if (path_end >= path + wildoff && rem_backslash(path_end))
8743 *p++ = *path_end++;
8744 else if (*path_end == '\\' || *path_end == ':' || *path_end == '/')
8746 if (e != NULL)
8747 break;
8748 s = p + 1;
8750 else if (path_end >= path + wildoff
8751 && vim_strchr((char_u *)"*?[~", *path_end) != NULL)
8752 e = p;
8753 #ifdef FEAT_MBYTE
8754 if (has_mbyte)
8756 len = (*mb_ptr2len)(path_end);
8757 STRNCPY(p, path_end, len);
8758 p += len;
8759 path_end += len;
8761 else
8762 #endif
8763 *p++ = *path_end++;
8765 e = p;
8766 *e = NUL;
8768 /* now we have one wildcard component between s and e */
8769 /* Remove backslashes between "wildoff" and the start of the wildcard
8770 * component. */
8771 for (p = buf + wildoff; p < s; ++p)
8772 if (rem_backslash(p))
8774 STRMOVE(p, p + 1);
8775 --e;
8776 --s;
8779 /* Check for "**" between "s" and "e". */
8780 for (p = s; p < e; ++p)
8781 if (p[0] == '*' && p[1] == '*')
8782 starstar = TRUE;
8784 starts_with_dot = (*s == '.');
8785 pat = file_pat_to_reg_pat(s, e, NULL, FALSE);
8786 if (pat == NULL)
8788 vim_free(buf);
8789 return 0;
8792 /* compile the regexp into a program */
8793 regmatch.rm_ic = TRUE; /* Always ignore case */
8794 regmatch.regprog = vim_regcomp(pat, RE_MAGIC);
8795 vim_free(pat);
8797 if (regmatch.regprog == NULL)
8799 vim_free(buf);
8800 return 0;
8803 /* remember the pattern or file name being looked for */
8804 matchname = vim_strsave(s);
8806 /* If "**" is by itself, this is the first time we encounter it and more
8807 * is following then find matches without any directory. */
8808 if (!didstar && stardepth < 100 && starstar && e - s == 2
8809 && *path_end == '/')
8811 STRCPY(s, path_end + 1);
8812 ++stardepth;
8813 (void)dos_expandpath(gap, buf, (int)(s - buf), flags, TRUE);
8814 --stardepth;
8817 /* Scan all files in the directory with "dir/ *.*" */
8818 STRCPY(s, "*.*");
8819 #ifdef WIN3264
8820 # ifdef FEAT_MBYTE
8821 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
8823 /* The active codepage differs from 'encoding'. Attempt using the
8824 * wide function. If it fails because it is not implemented fall back
8825 * to the non-wide version (for Windows 98) */
8826 wn = enc_to_utf16(buf, NULL);
8827 if (wn != NULL)
8829 hFind = FindFirstFileW(wn, &wfb);
8830 if (hFind == INVALID_HANDLE_VALUE
8831 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
8833 vim_free(wn);
8834 wn = NULL;
8839 if (wn == NULL)
8840 # endif
8841 hFind = FindFirstFile(buf, &fb);
8842 ok = (hFind != INVALID_HANDLE_VALUE);
8843 #else
8844 /* If we are expanding wildcards we try both files and directories */
8845 ok = (findfirst((char *)buf, &fb,
8846 (*path_end != NUL || (flags & EW_DIR)) ? FA_DIREC : 0) == 0);
8847 #endif
8849 while (ok)
8851 #ifdef WIN3264
8852 # ifdef FEAT_MBYTE
8853 if (wn != NULL)
8854 p = utf16_to_enc(wfb.cFileName, NULL); /* p is allocated here */
8855 else
8856 # endif
8857 p = (char_u *)fb.cFileName;
8858 #else
8859 p = (char_u *)fb.ff_name;
8860 #endif
8861 /* Ignore entries starting with a dot, unless when asked for. Accept
8862 * all entries found with "matchname". */
8863 if ((p[0] != '.' || starts_with_dot)
8864 && (matchname == NULL
8865 || vim_regexec(&regmatch, p, (colnr_T)0)))
8867 #ifdef WIN3264
8868 STRCPY(s, p);
8869 #else
8870 namelowcpy(s, p);
8871 #endif
8872 len = (int)STRLEN(buf);
8874 if (starstar && stardepth < 100)
8876 /* For "**" in the pattern first go deeper in the tree to
8877 * find matches. */
8878 STRCPY(buf + len, "/**");
8879 STRCPY(buf + len + 3, path_end);
8880 ++stardepth;
8881 (void)dos_expandpath(gap, buf, len + 1, flags, TRUE);
8882 --stardepth;
8885 STRCPY(buf + len, path_end);
8886 if (mch_has_exp_wildcard(path_end))
8888 /* need to expand another component of the path */
8889 /* remove backslashes for the remaining components only */
8890 (void)dos_expandpath(gap, buf, len + 1, flags, FALSE);
8892 else
8894 /* no more wildcards, check if there is a match */
8895 /* remove backslashes for the remaining components only */
8896 if (*path_end != 0)
8897 backslash_halve(buf + len + 1);
8898 if (mch_getperm(buf) >= 0) /* add existing file */
8899 addfile(gap, buf, flags);
8903 #ifdef WIN3264
8904 # ifdef FEAT_MBYTE
8905 if (wn != NULL)
8907 vim_free(p);
8908 ok = FindNextFileW(hFind, &wfb);
8910 else
8911 # endif
8912 ok = FindNextFile(hFind, &fb);
8913 #else
8914 ok = (findnext(&fb) == 0);
8915 #endif
8917 /* If no more matches and no match was used, try expanding the name
8918 * itself. Finds the long name of a short filename. */
8919 if (!ok && matchname != NULL && gap->ga_len == start_len)
8921 STRCPY(s, matchname);
8922 #ifdef WIN3264
8923 FindClose(hFind);
8924 # ifdef FEAT_MBYTE
8925 if (wn != NULL)
8927 vim_free(wn);
8928 wn = enc_to_utf16(buf, NULL);
8929 if (wn != NULL)
8930 hFind = FindFirstFileW(wn, &wfb);
8932 if (wn == NULL)
8933 # endif
8934 hFind = FindFirstFile(buf, &fb);
8935 ok = (hFind != INVALID_HANDLE_VALUE);
8936 #else
8937 ok = (findfirst((char *)buf, &fb,
8938 (*path_end != NUL || (flags & EW_DIR)) ? FA_DIREC : 0) == 0);
8939 #endif
8940 vim_free(matchname);
8941 matchname = NULL;
8945 #ifdef WIN3264
8946 FindClose(hFind);
8947 # ifdef FEAT_MBYTE
8948 vim_free(wn);
8949 # endif
8950 #endif
8951 vim_free(buf);
8952 vim_free(regmatch.regprog);
8953 vim_free(matchname);
8955 matches = gap->ga_len - start_len;
8956 if (matches > 0)
8957 qsort(((char_u **)gap->ga_data) + start_len, (size_t)matches,
8958 sizeof(char_u *), pstrcmp);
8959 return matches;
8963 mch_expandpath(
8964 garray_T *gap,
8965 char_u *path,
8966 int flags) /* EW_* flags */
8968 return dos_expandpath(gap, path, 0, flags, FALSE);
8970 # endif /* MSDOS || FEAT_GUI_W16 || WIN3264 */
8972 #if (defined(UNIX) && !defined(VMS)) || defined(USE_UNIXFILENAME) \
8973 || defined(PROTO)
8975 * Unix style wildcard expansion code.
8976 * It's here because it's used both for Unix and Mac.
8978 static int pstrcmp __ARGS((const void *, const void *));
8980 static int
8981 pstrcmp(a, b)
8982 const void *a, *b;
8984 return (pathcmp(*(char **)a, *(char **)b, -1));
8988 * Recursively expand one path component into all matching files and/or
8989 * directories. Adds matches to "gap". Handles "*", "?", "[a-z]", "**", etc.
8990 * "path" has backslashes before chars that are not to be expanded, starting
8991 * at "path + wildoff".
8992 * Return the number of matches found.
8993 * NOTE: much of this is identical to dos_expandpath(), keep in sync!
8996 unix_expandpath(gap, path, wildoff, flags, didstar)
8997 garray_T *gap;
8998 char_u *path;
8999 int wildoff;
9000 int flags; /* EW_* flags */
9001 int didstar; /* expanded "**" once already */
9003 char_u *buf;
9004 char_u *path_end;
9005 char_u *p, *s, *e;
9006 int start_len = gap->ga_len;
9007 char_u *pat;
9008 regmatch_T regmatch;
9009 int starts_with_dot;
9010 int matches;
9011 int len;
9012 int starstar = FALSE;
9013 static int stardepth = 0; /* depth for "**" expansion */
9015 DIR *dirp;
9016 struct dirent *dp;
9018 /* Expanding "**" may take a long time, check for CTRL-C. */
9019 if (stardepth > 0)
9021 ui_breakcheck();
9022 if (got_int)
9023 return 0;
9026 /* make room for file name */
9027 buf = alloc((int)STRLEN(path) + BASENAMELEN + 5);
9028 if (buf == NULL)
9029 return 0;
9032 * Find the first part in the path name that contains a wildcard.
9033 * Copy it into "buf", including the preceding characters.
9035 p = buf;
9036 s = buf;
9037 e = NULL;
9038 path_end = path;
9039 while (*path_end != NUL)
9041 /* May ignore a wildcard that has a backslash before it; it will
9042 * be removed by rem_backslash() or file_pat_to_reg_pat() below. */
9043 if (path_end >= path + wildoff && rem_backslash(path_end))
9044 *p++ = *path_end++;
9045 else if (*path_end == '/')
9047 if (e != NULL)
9048 break;
9049 s = p + 1;
9051 else if (path_end >= path + wildoff
9052 && vim_strchr((char_u *)"*?[{~$", *path_end) != NULL)
9053 e = p;
9054 #ifdef FEAT_MBYTE
9055 if (has_mbyte)
9057 len = (*mb_ptr2len)(path_end);
9058 STRNCPY(p, path_end, len);
9059 p += len;
9060 path_end += len;
9062 else
9063 #endif
9064 *p++ = *path_end++;
9066 e = p;
9067 *e = NUL;
9069 /* now we have one wildcard component between "s" and "e" */
9070 /* Remove backslashes between "wildoff" and the start of the wildcard
9071 * component. */
9072 for (p = buf + wildoff; p < s; ++p)
9073 if (rem_backslash(p))
9075 STRMOVE(p, p + 1);
9076 --e;
9077 --s;
9080 /* Check for "**" between "s" and "e". */
9081 for (p = s; p < e; ++p)
9082 if (p[0] == '*' && p[1] == '*')
9083 starstar = TRUE;
9085 /* convert the file pattern to a regexp pattern */
9086 starts_with_dot = (*s == '.');
9087 pat = file_pat_to_reg_pat(s, e, NULL, FALSE);
9088 if (pat == NULL)
9090 vim_free(buf);
9091 return 0;
9094 /* compile the regexp into a program */
9095 #ifdef CASE_INSENSITIVE_FILENAME
9096 regmatch.rm_ic = TRUE; /* Behave like Terminal.app */
9097 #else
9098 regmatch.rm_ic = FALSE; /* Don't ever ignore case */
9099 #endif
9100 regmatch.regprog = vim_regcomp(pat, RE_MAGIC);
9101 vim_free(pat);
9103 if (regmatch.regprog == NULL)
9105 vim_free(buf);
9106 return 0;
9109 /* If "**" is by itself, this is the first time we encounter it and more
9110 * is following then find matches without any directory. */
9111 if (!didstar && stardepth < 100 && starstar && e - s == 2
9112 && *path_end == '/')
9114 STRCPY(s, path_end + 1);
9115 ++stardepth;
9116 (void)unix_expandpath(gap, buf, (int)(s - buf), flags, TRUE);
9117 --stardepth;
9120 /* open the directory for scanning */
9121 *s = NUL;
9122 dirp = opendir(*buf == NUL ? "." : (char *)buf);
9124 /* Find all matching entries */
9125 if (dirp != NULL)
9127 for (;;)
9129 dp = readdir(dirp);
9130 if (dp == NULL)
9131 break;
9132 if ((dp->d_name[0] != '.' || starts_with_dot)
9133 && vim_regexec(&regmatch, (char_u *)dp->d_name, (colnr_T)0))
9135 STRCPY(s, dp->d_name);
9136 len = STRLEN(buf);
9138 if (starstar && stardepth < 100)
9140 /* For "**" in the pattern first go deeper in the tree to
9141 * find matches. */
9142 STRCPY(buf + len, "/**");
9143 STRCPY(buf + len + 3, path_end);
9144 ++stardepth;
9145 (void)unix_expandpath(gap, buf, len + 1, flags, TRUE);
9146 --stardepth;
9149 STRCPY(buf + len, path_end);
9150 if (mch_has_exp_wildcard(path_end)) /* handle more wildcards */
9152 /* need to expand another component of the path */
9153 /* remove backslashes for the remaining components only */
9154 (void)unix_expandpath(gap, buf, len + 1, flags, FALSE);
9156 else
9158 /* no more wildcards, check if there is a match */
9159 /* remove backslashes for the remaining components only */
9160 if (*path_end != NUL)
9161 backslash_halve(buf + len + 1);
9162 if (mch_getperm(buf) >= 0) /* add existing file */
9164 #ifdef MACOS_CONVERT
9165 size_t precomp_len = STRLEN(buf)+1;
9166 char_u *precomp_buf =
9167 mac_precompose_path(buf, precomp_len, &precomp_len);
9169 if (precomp_buf)
9171 mch_memmove(buf, precomp_buf, precomp_len);
9172 vim_free(precomp_buf);
9174 #endif
9175 addfile(gap, buf, flags);
9181 closedir(dirp);
9184 vim_free(buf);
9185 vim_free(regmatch.regprog);
9187 matches = gap->ga_len - start_len;
9188 if (matches > 0)
9189 qsort(((char_u **)gap->ga_data) + start_len, matches,
9190 sizeof(char_u *), pstrcmp);
9191 return matches;
9193 #endif
9196 * Generic wildcard expansion code.
9198 * Characters in "pat" that should not be expanded must be preceded with a
9199 * backslash. E.g., "/path\ with\ spaces/my\*star*"
9201 * Return FAIL when no single file was found. In this case "num_file" is not
9202 * set, and "file" may contain an error message.
9203 * Return OK when some files found. "num_file" is set to the number of
9204 * matches, "file" to the array of matches. Call FreeWild() later.
9207 gen_expand_wildcards(num_pat, pat, num_file, file, flags)
9208 int num_pat; /* number of input patterns */
9209 char_u **pat; /* array of input patterns */
9210 int *num_file; /* resulting number of files */
9211 char_u ***file; /* array of resulting files */
9212 int flags; /* EW_* flags */
9214 int i;
9215 garray_T ga;
9216 char_u *p;
9217 static int recursive = FALSE;
9218 int add_pat;
9221 * expand_env() is called to expand things like "~user". If this fails,
9222 * it calls ExpandOne(), which brings us back here. In this case, always
9223 * call the machine specific expansion function, if possible. Otherwise,
9224 * return FAIL.
9226 if (recursive)
9227 #ifdef SPECIAL_WILDCHAR
9228 return mch_expand_wildcards(num_pat, pat, num_file, file, flags);
9229 #else
9230 return FAIL;
9231 #endif
9233 #ifdef SPECIAL_WILDCHAR
9235 * If there are any special wildcard characters which we cannot handle
9236 * here, call machine specific function for all the expansion. This
9237 * avoids starting the shell for each argument separately.
9238 * For `=expr` do use the internal function.
9240 for (i = 0; i < num_pat; i++)
9242 if (vim_strpbrk(pat[i], (char_u *)SPECIAL_WILDCHAR) != NULL
9243 # ifdef VIM_BACKTICK
9244 && !(vim_backtick(pat[i]) && pat[i][1] == '=')
9245 # endif
9247 return mch_expand_wildcards(num_pat, pat, num_file, file, flags);
9249 #endif
9251 recursive = TRUE;
9254 * The matching file names are stored in a growarray. Init it empty.
9256 ga_init2(&ga, (int)sizeof(char_u *), 30);
9258 for (i = 0; i < num_pat; ++i)
9260 add_pat = -1;
9261 p = pat[i];
9263 #ifdef VIM_BACKTICK
9264 if (vim_backtick(p))
9265 add_pat = expand_backtick(&ga, p, flags);
9266 else
9267 #endif
9270 * First expand environment variables, "~/" and "~user/".
9272 if (vim_strpbrk(p, (char_u *)"$~") != NULL)
9274 p = expand_env_save_opt(p, TRUE);
9275 if (p == NULL)
9276 p = pat[i];
9277 #ifdef UNIX
9279 * On Unix, if expand_env() can't expand an environment
9280 * variable, use the shell to do that. Discard previously
9281 * found file names and start all over again.
9283 else if (vim_strpbrk(p, (char_u *)"$~") != NULL)
9285 vim_free(p);
9286 ga_clear_strings(&ga);
9287 i = mch_expand_wildcards(num_pat, pat, num_file, file,
9288 flags);
9289 recursive = FALSE;
9290 return i;
9292 #endif
9296 * If there are wildcards: Expand file names and add each match to
9297 * the list. If there is no match, and EW_NOTFOUND is given, add
9298 * the pattern.
9299 * If there are no wildcards: Add the file name if it exists or
9300 * when EW_NOTFOUND is given.
9302 if (mch_has_exp_wildcard(p))
9303 add_pat = mch_expandpath(&ga, p, flags);
9306 if (add_pat == -1 || (add_pat == 0 && (flags & EW_NOTFOUND)))
9308 char_u *t = backslash_halve_save(p);
9310 #if defined(MACOS_CLASSIC)
9311 slash_to_colon(t);
9312 #endif
9313 /* When EW_NOTFOUND is used, always add files and dirs. Makes
9314 * "vim c:/" work. */
9315 if (flags & EW_NOTFOUND)
9316 addfile(&ga, t, flags | EW_DIR | EW_FILE);
9317 else if (mch_getperm(t) >= 0)
9318 addfile(&ga, t, flags);
9319 vim_free(t);
9322 if (p != pat[i])
9323 vim_free(p);
9326 *num_file = ga.ga_len;
9327 *file = (ga.ga_data != NULL) ? (char_u **)ga.ga_data : (char_u **)"";
9329 recursive = FALSE;
9331 return (ga.ga_data != NULL) ? OK : FAIL;
9334 # ifdef VIM_BACKTICK
9337 * Return TRUE if we can expand this backtick thing here.
9339 static int
9340 vim_backtick(p)
9341 char_u *p;
9343 return (*p == '`' && *(p + 1) != NUL && *(p + STRLEN(p) - 1) == '`');
9347 * Expand an item in `backticks` by executing it as a command.
9348 * Currently only works when pat[] starts and ends with a `.
9349 * Returns number of file names found.
9351 static int
9352 expand_backtick(gap, pat, flags)
9353 garray_T *gap;
9354 char_u *pat;
9355 int flags; /* EW_* flags */
9357 char_u *p;
9358 char_u *cmd;
9359 char_u *buffer;
9360 int cnt = 0;
9361 int i;
9363 /* Create the command: lop off the backticks. */
9364 cmd = vim_strnsave(pat + 1, (int)STRLEN(pat) - 2);
9365 if (cmd == NULL)
9366 return 0;
9368 #ifdef FEAT_EVAL
9369 if (*cmd == '=') /* `={expr}`: Expand expression */
9370 buffer = eval_to_string(cmd + 1, &p, TRUE);
9371 else
9372 #endif
9373 buffer = get_cmd_output(cmd, NULL,
9374 (flags & EW_SILENT) ? SHELL_SILENT : 0);
9375 vim_free(cmd);
9376 if (buffer == NULL)
9377 return 0;
9379 cmd = buffer;
9380 while (*cmd != NUL)
9382 cmd = skipwhite(cmd); /* skip over white space */
9383 p = cmd;
9384 while (*p != NUL && *p != '\r' && *p != '\n') /* skip over entry */
9385 ++p;
9386 /* add an entry if it is not empty */
9387 if (p > cmd)
9389 i = *p;
9390 *p = NUL;
9391 addfile(gap, cmd, flags);
9392 *p = i;
9393 ++cnt;
9395 cmd = p;
9396 while (*cmd != NUL && (*cmd == '\r' || *cmd == '\n'))
9397 ++cmd;
9400 vim_free(buffer);
9401 return cnt;
9403 # endif /* VIM_BACKTICK */
9406 * Add a file to a file list. Accepted flags:
9407 * EW_DIR add directories
9408 * EW_FILE add files
9409 * EW_EXEC add executable files
9410 * EW_NOTFOUND add even when it doesn't exist
9411 * EW_ADDSLASH add slash after directory name
9413 void
9414 addfile(gap, f, flags)
9415 garray_T *gap;
9416 char_u *f; /* filename */
9417 int flags;
9419 char_u *p;
9420 int isdir;
9422 /* if the file/dir doesn't exist, may not add it */
9423 if (!(flags & EW_NOTFOUND) && mch_getperm(f) < 0)
9424 return;
9426 #ifdef FNAME_ILLEGAL
9427 /* if the file/dir contains illegal characters, don't add it */
9428 if (vim_strpbrk(f, (char_u *)FNAME_ILLEGAL) != NULL)
9429 return;
9430 #endif
9432 isdir = mch_isdir(f);
9433 if ((isdir && !(flags & EW_DIR)) || (!isdir && !(flags & EW_FILE)))
9434 return;
9436 /* If the file isn't executable, may not add it. Do accept directories. */
9437 if (!isdir && (flags & EW_EXEC) && !mch_can_exe(f))
9438 return;
9440 /* Make room for another item in the file list. */
9441 if (ga_grow(gap, 1) == FAIL)
9442 return;
9444 p = alloc((unsigned)(STRLEN(f) + 1 + isdir));
9445 if (p == NULL)
9446 return;
9448 STRCPY(p, f);
9449 #ifdef BACKSLASH_IN_FILENAME
9450 slash_adjust(p);
9451 #endif
9453 * Append a slash or backslash after directory names if none is present.
9455 #ifndef DONT_ADD_PATHSEP_TO_DIR
9456 if (isdir && (flags & EW_ADDSLASH))
9457 add_pathsep(p);
9458 #endif
9459 ((char_u **)gap->ga_data)[gap->ga_len++] = p;
9461 #endif /* !NO_EXPANDPATH */
9463 #if defined(VIM_BACKTICK) || defined(FEAT_EVAL) || defined(PROTO)
9465 #ifndef SEEK_SET
9466 # define SEEK_SET 0
9467 #endif
9468 #ifndef SEEK_END
9469 # define SEEK_END 2
9470 #endif
9473 * Get the stdout of an external command.
9474 * Returns an allocated string, or NULL for error.
9476 char_u *
9477 get_cmd_output(cmd, infile, flags)
9478 char_u *cmd;
9479 char_u *infile; /* optional input file name */
9480 int flags; /* can be SHELL_SILENT */
9482 char_u *tempname;
9483 char_u *command;
9484 char_u *buffer = NULL;
9485 int len;
9486 int i = 0;
9487 FILE *fd;
9489 if (check_restricted() || check_secure())
9490 return NULL;
9492 /* get a name for the temp file */
9493 if ((tempname = vim_tempname('o')) == NULL)
9495 EMSG(_(e_notmp));
9496 return NULL;
9499 /* Add the redirection stuff */
9500 command = make_filter_cmd(cmd, infile, tempname);
9501 if (command == NULL)
9502 goto done;
9505 * Call the shell to execute the command (errors are ignored).
9506 * Don't check timestamps here.
9508 ++no_check_timestamps;
9509 call_shell(command, SHELL_DOOUT | SHELL_EXPAND | flags);
9510 --no_check_timestamps;
9512 vim_free(command);
9515 * read the names from the file into memory
9517 # ifdef VMS
9518 /* created temporary file is not always readable as binary */
9519 fd = mch_fopen((char *)tempname, "r");
9520 # else
9521 fd = mch_fopen((char *)tempname, READBIN);
9522 # endif
9524 if (fd == NULL)
9526 EMSG2(_(e_notopen), tempname);
9527 goto done;
9530 fseek(fd, 0L, SEEK_END);
9531 len = ftell(fd); /* get size of temp file */
9532 fseek(fd, 0L, SEEK_SET);
9534 buffer = alloc(len + 1);
9535 if (buffer != NULL)
9536 i = (int)fread((char *)buffer, (size_t)1, (size_t)len, fd);
9537 fclose(fd);
9538 mch_remove(tempname);
9539 if (buffer == NULL)
9540 goto done;
9541 #ifdef VMS
9542 len = i; /* VMS doesn't give us what we asked for... */
9543 #endif
9544 if (i != len)
9546 EMSG2(_(e_notread), tempname);
9547 vim_free(buffer);
9548 buffer = NULL;
9550 else
9551 buffer[len] = '\0'; /* make sure the buffer is terminated */
9553 done:
9554 vim_free(tempname);
9555 return buffer;
9557 #endif
9560 * Free the list of files returned by expand_wildcards() or other expansion
9561 * functions.
9563 void
9564 FreeWild(count, files)
9565 int count;
9566 char_u **files;
9568 if (count <= 0 || files == NULL)
9569 return;
9570 #if defined(__EMX__) && defined(__ALWAYS_HAS_TRAILING_NULL_POINTER) /* XXX */
9572 * Is this still OK for when other functions than expand_wildcards() have
9573 * been used???
9575 _fnexplodefree((char **)files);
9576 #else
9577 while (count--)
9578 vim_free(files[count]);
9579 vim_free(files);
9580 #endif
9584 * return TRUE when need to go to Insert mode because of 'insertmode'.
9585 * Don't do this when still processing a command or a mapping.
9586 * Don't do this when inside a ":normal" command.
9589 goto_im()
9591 return (p_im && stuff_empty() && typebuf_typed());