Merged from the latest developing branch.
[MacVim.git] / src / misc1.c
blobbb15d429d6739893de10b640fccde6f1fd2d5c5c
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 && *p != ':'; ++p)
1031 if (*p == COM_RIGHT || *p == COM_LEFT)
1032 c = *p;
1033 else if (VIM_ISDIGIT(*p) || *p == '-')
1034 off = getdigits(&p);
1036 if (c == COM_RIGHT) /* right adjusted leader */
1038 /* find last non-white in the leader to line up with */
1039 for (p = leader + lead_len - 1; p > leader
1040 && vim_iswhite(*p); --p)
1042 ++p;
1044 #ifdef FEAT_MBYTE
1045 /* Compute the length of the replaced characters in
1046 * screen characters, not bytes. */
1048 int repl_size = vim_strnsize(lead_repl,
1049 lead_repl_len);
1050 int old_size = 0;
1051 char_u *endp = p;
1052 int l;
1054 while (old_size < repl_size && p > leader)
1056 mb_ptr_back(leader, p);
1057 old_size += ptr2cells(p);
1059 l = lead_repl_len - (int)(endp - p);
1060 if (l != 0)
1061 mch_memmove(endp + l, endp,
1062 (size_t)((leader + lead_len) - endp));
1063 lead_len += l;
1065 #else
1066 if (p < leader + lead_repl_len)
1067 p = leader;
1068 else
1069 p -= lead_repl_len;
1070 #endif
1071 mch_memmove(p, lead_repl, (size_t)lead_repl_len);
1072 if (p + lead_repl_len > leader + lead_len)
1073 p[lead_repl_len] = NUL;
1075 /* blank-out any other chars from the old leader. */
1076 while (--p >= leader)
1078 #ifdef FEAT_MBYTE
1079 int l = mb_head_off(leader, p);
1081 if (l > 1)
1083 p -= l;
1084 if (ptr2cells(p) > 1)
1086 p[1] = ' ';
1087 --l;
1089 mch_memmove(p + 1, p + l + 1,
1090 (size_t)((leader + lead_len) - (p + l + 1)));
1091 lead_len -= l;
1092 *p = ' ';
1094 else
1095 #endif
1096 if (!vim_iswhite(*p))
1097 *p = ' ';
1100 else /* left adjusted leader */
1102 p = skipwhite(leader);
1103 #ifdef FEAT_MBYTE
1104 /* Compute the length of the replaced characters in
1105 * screen characters, not bytes. Move the part that is
1106 * not to be overwritten. */
1108 int repl_size = vim_strnsize(lead_repl,
1109 lead_repl_len);
1110 int i;
1111 int l;
1113 for (i = 0; p[i] != NUL && i < lead_len; i += l)
1115 l = (*mb_ptr2len)(p + i);
1116 if (vim_strnsize(p, i + l) > repl_size)
1117 break;
1119 if (i != lead_repl_len)
1121 mch_memmove(p + lead_repl_len, p + i,
1122 (size_t)(lead_len - i - (leader - p)));
1123 lead_len += lead_repl_len - i;
1126 #endif
1127 mch_memmove(p, lead_repl, (size_t)lead_repl_len);
1129 /* Replace any remaining non-white chars in the old
1130 * leader by spaces. Keep Tabs, the indent must
1131 * remain the same. */
1132 for (p += lead_repl_len; p < leader + lead_len; ++p)
1133 if (!vim_iswhite(*p))
1135 /* Don't put a space before a TAB. */
1136 if (p + 1 < leader + lead_len && p[1] == TAB)
1138 --lead_len;
1139 mch_memmove(p, p + 1,
1140 (leader + lead_len) - p);
1142 else
1144 #ifdef FEAT_MBYTE
1145 int l = (*mb_ptr2len)(p);
1147 if (l > 1)
1149 if (ptr2cells(p) > 1)
1151 /* Replace a double-wide char with
1152 * two spaces */
1153 --l;
1154 *p++ = ' ';
1156 mch_memmove(p + 1, p + l,
1157 (leader + lead_len) - p);
1158 lead_len -= l - 1;
1160 #endif
1161 *p = ' ';
1164 *p = NUL;
1167 /* Recompute the indent, it may have changed. */
1168 if (curbuf->b_p_ai
1169 #ifdef FEAT_SMARTINDENT
1170 || do_si
1171 #endif
1173 newindent = get_indent_str(leader, (int)curbuf->b_p_ts);
1175 /* Add the indent offset */
1176 if (newindent + off < 0)
1178 off = -newindent;
1179 newindent = 0;
1181 else
1182 newindent += off;
1184 /* Correct trailing spaces for the shift, so that
1185 * alignment remains equal. */
1186 while (off > 0 && lead_len > 0
1187 && leader[lead_len - 1] == ' ')
1189 /* Don't do it when there is a tab before the space */
1190 if (vim_strchr(skipwhite(leader), '\t') != NULL)
1191 break;
1192 --lead_len;
1193 --off;
1196 /* If the leader ends in white space, don't add an
1197 * extra space */
1198 if (lead_len > 0 && vim_iswhite(leader[lead_len - 1]))
1199 extra_space = FALSE;
1200 leader[lead_len] = NUL;
1203 if (extra_space)
1205 leader[lead_len++] = ' ';
1206 leader[lead_len] = NUL;
1209 newcol = lead_len;
1212 * if a new indent will be set below, remove the indent that
1213 * is in the comment leader
1215 if (newindent
1216 #ifdef FEAT_SMARTINDENT
1217 || did_si
1218 #endif
1221 while (lead_len && vim_iswhite(*leader))
1223 --lead_len;
1224 --newcol;
1225 ++leader;
1230 #ifdef FEAT_SMARTINDENT
1231 did_si = can_si = FALSE;
1232 #endif
1234 else if (comment_end != NULL)
1237 * We have finished a comment, so we don't use the leader.
1238 * If this was a C-comment and 'ai' or 'si' is set do a normal
1239 * indent to align with the line containing the start of the
1240 * comment.
1242 if (comment_end[0] == '*' && comment_end[1] == '/' &&
1243 (curbuf->b_p_ai
1244 #ifdef FEAT_SMARTINDENT
1245 || do_si
1246 #endif
1249 old_cursor = curwin->w_cursor;
1250 curwin->w_cursor.col = (colnr_T)(comment_end - saved_line);
1251 if ((pos = findmatch(NULL, NUL)) != NULL)
1253 curwin->w_cursor.lnum = pos->lnum;
1254 newindent = get_indent();
1256 curwin->w_cursor = old_cursor;
1260 #endif
1262 /* (State == INSERT || State == REPLACE), only when dir == FORWARD */
1263 if (p_extra != NULL)
1265 *p_extra = saved_char; /* restore char that NUL replaced */
1268 * When 'ai' set or "flags" has OPENLINE_DELSPACES, skip to the first
1269 * non-blank.
1271 * When in REPLACE mode, put the deleted blanks on the replace stack,
1272 * preceded by a NUL, so they can be put back when a BS is entered.
1274 if (REPLACE_NORMAL(State))
1275 replace_push(NUL); /* end of extra blanks */
1276 if (curbuf->b_p_ai || (flags & OPENLINE_DELSPACES))
1278 while ((*p_extra == ' ' || *p_extra == '\t')
1279 #ifdef FEAT_MBYTE
1280 && (!enc_utf8
1281 || !utf_iscomposing(utf_ptr2char(p_extra + 1)))
1282 #endif
1285 if (REPLACE_NORMAL(State))
1286 replace_push(*p_extra);
1287 ++p_extra;
1288 ++less_cols_off;
1291 if (*p_extra != NUL)
1292 did_ai = FALSE; /* append some text, don't truncate now */
1294 /* columns for marks adjusted for removed columns */
1295 less_cols = (int)(p_extra - saved_line);
1298 if (p_extra == NULL)
1299 p_extra = (char_u *)""; /* append empty line */
1301 #ifdef FEAT_COMMENTS
1302 /* concatenate leader and p_extra, if there is a leader */
1303 if (lead_len)
1305 STRCAT(leader, p_extra);
1306 p_extra = leader;
1307 did_ai = TRUE; /* So truncating blanks works with comments */
1308 less_cols -= lead_len;
1310 else
1311 end_comment_pending = NUL; /* turns out there was no leader */
1312 #endif
1314 old_cursor = curwin->w_cursor;
1315 if (dir == BACKWARD)
1316 --curwin->w_cursor.lnum;
1317 #ifdef FEAT_VREPLACE
1318 if (!(State & VREPLACE_FLAG) || old_cursor.lnum >= orig_line_count)
1319 #endif
1321 if (ml_append(curwin->w_cursor.lnum, p_extra, (colnr_T)0, FALSE)
1322 == FAIL)
1323 goto theend;
1324 /* Postpone calling changed_lines(), because it would mess up folding
1325 * with markers. */
1326 mark_adjust(curwin->w_cursor.lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
1327 did_append = TRUE;
1329 #ifdef FEAT_VREPLACE
1330 else
1333 * In VREPLACE mode we are starting to replace the next line.
1335 curwin->w_cursor.lnum++;
1336 if (curwin->w_cursor.lnum >= Insstart.lnum + vr_lines_changed)
1338 /* In case we NL to a new line, BS to the previous one, and NL
1339 * again, we don't want to save the new line for undo twice.
1341 (void)u_save_cursor(); /* errors are ignored! */
1342 vr_lines_changed++;
1344 ml_replace(curwin->w_cursor.lnum, p_extra, TRUE);
1345 changed_bytes(curwin->w_cursor.lnum, 0);
1346 curwin->w_cursor.lnum--;
1347 did_append = FALSE;
1349 #endif
1351 if (newindent
1352 #ifdef FEAT_SMARTINDENT
1353 || did_si
1354 #endif
1357 ++curwin->w_cursor.lnum;
1358 #ifdef FEAT_SMARTINDENT
1359 if (did_si)
1361 if (p_sr)
1362 newindent -= newindent % (int)curbuf->b_p_sw;
1363 newindent += (int)curbuf->b_p_sw;
1365 #endif
1366 /* Copy the indent */
1367 if (curbuf->b_p_ci)
1369 (void)copy_indent(newindent, saved_line);
1372 * Set the 'preserveindent' option so that any further screwing
1373 * with the line doesn't entirely destroy our efforts to preserve
1374 * it. It gets restored at the function end.
1376 curbuf->b_p_pi = TRUE;
1378 else
1379 (void)set_indent(newindent, SIN_INSERT);
1380 less_cols -= curwin->w_cursor.col;
1382 ai_col = curwin->w_cursor.col;
1385 * In REPLACE mode, for each character in the new indent, there must
1386 * be a NUL on the replace stack, for when it is deleted with BS
1388 if (REPLACE_NORMAL(State))
1389 for (n = 0; n < (int)curwin->w_cursor.col; ++n)
1390 replace_push(NUL);
1391 newcol += curwin->w_cursor.col;
1392 #ifdef FEAT_SMARTINDENT
1393 if (no_si)
1394 did_si = FALSE;
1395 #endif
1398 #ifdef FEAT_COMMENTS
1400 * In REPLACE mode, for each character in the extra leader, there must be
1401 * a NUL on the replace stack, for when it is deleted with BS.
1403 if (REPLACE_NORMAL(State))
1404 while (lead_len-- > 0)
1405 replace_push(NUL);
1406 #endif
1408 curwin->w_cursor = old_cursor;
1410 if (dir == FORWARD)
1412 if (trunc_line || (State & INSERT))
1414 /* truncate current line at cursor */
1415 saved_line[curwin->w_cursor.col] = NUL;
1416 /* Remove trailing white space, unless OPENLINE_KEEPTRAIL used. */
1417 if (trunc_line && !(flags & OPENLINE_KEEPTRAIL))
1418 truncate_spaces(saved_line);
1419 ml_replace(curwin->w_cursor.lnum, saved_line, FALSE);
1420 saved_line = NULL;
1421 if (did_append)
1423 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1424 curwin->w_cursor.lnum + 1, 1L);
1425 did_append = FALSE;
1427 /* Move marks after the line break to the new line. */
1428 if (flags & OPENLINE_MARKFIX)
1429 mark_col_adjust(curwin->w_cursor.lnum,
1430 curwin->w_cursor.col + less_cols_off,
1431 1L, (long)-less_cols);
1433 else
1434 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
1438 * Put the cursor on the new line. Careful: the scrollup() above may
1439 * have moved w_cursor, we must use old_cursor.
1441 curwin->w_cursor.lnum = old_cursor.lnum + 1;
1443 if (did_append)
1444 changed_lines(curwin->w_cursor.lnum, 0, curwin->w_cursor.lnum, 1L);
1446 curwin->w_cursor.col = newcol;
1447 #ifdef FEAT_VIRTUALEDIT
1448 curwin->w_cursor.coladd = 0;
1449 #endif
1451 #if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
1453 * In VREPLACE mode, we are handling the replace stack ourselves, so stop
1454 * fixthisline() from doing it (via change_indent()) by telling it we're in
1455 * normal INSERT mode.
1457 if (State & VREPLACE_FLAG)
1459 vreplace_mode = State; /* So we know to put things right later */
1460 State = INSERT;
1462 else
1463 vreplace_mode = 0;
1464 #endif
1465 #ifdef FEAT_LISP
1467 * May do lisp indenting.
1469 if (!p_paste
1470 # ifdef FEAT_COMMENTS
1471 && leader == NULL
1472 # endif
1473 && curbuf->b_p_lisp
1474 && curbuf->b_p_ai)
1476 fixthisline(get_lisp_indent);
1477 p = ml_get_curline();
1478 ai_col = (colnr_T)(skipwhite(p) - p);
1480 #endif
1481 #ifdef FEAT_CINDENT
1483 * May do indenting after opening a new line.
1485 if (!p_paste
1486 && (curbuf->b_p_cin
1487 # ifdef FEAT_EVAL
1488 || *curbuf->b_p_inde != NUL
1489 # endif
1491 && in_cinkeys(dir == FORWARD
1492 ? KEY_OPEN_FORW
1493 : KEY_OPEN_BACK, ' ', linewhite(curwin->w_cursor.lnum)))
1495 do_c_expr_indent();
1496 p = ml_get_curline();
1497 ai_col = (colnr_T)(skipwhite(p) - p);
1499 #endif
1500 #if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
1501 if (vreplace_mode != 0)
1502 State = vreplace_mode;
1503 #endif
1505 #ifdef FEAT_VREPLACE
1507 * Finally, VREPLACE gets the stuff on the new line, then puts back the
1508 * original line, and inserts the new stuff char by char, pushing old stuff
1509 * onto the replace stack (via ins_char()).
1511 if (State & VREPLACE_FLAG)
1513 /* Put new line in p_extra */
1514 p_extra = vim_strsave(ml_get_curline());
1515 if (p_extra == NULL)
1516 goto theend;
1518 /* Put back original line */
1519 ml_replace(curwin->w_cursor.lnum, next_line, FALSE);
1521 /* Insert new stuff into line again */
1522 curwin->w_cursor.col = 0;
1523 #ifdef FEAT_VIRTUALEDIT
1524 curwin->w_cursor.coladd = 0;
1525 #endif
1526 ins_bytes(p_extra); /* will call changed_bytes() */
1527 vim_free(p_extra);
1528 next_line = NULL;
1530 #endif
1532 retval = TRUE; /* success! */
1533 theend:
1534 curbuf->b_p_pi = saved_pi;
1535 vim_free(saved_line);
1536 vim_free(next_line);
1537 vim_free(allocated);
1538 return retval;
1541 #if defined(FEAT_COMMENTS) || defined(PROTO)
1543 * get_leader_len() returns the length of the prefix of the given string
1544 * which introduces a comment. If this string is not a comment then 0 is
1545 * returned.
1546 * When "flags" is not NULL, it is set to point to the flags of the recognized
1547 * comment leader.
1548 * "backward" must be true for the "O" command.
1551 get_leader_len(line, flags, backward)
1552 char_u *line;
1553 char_u **flags;
1554 int backward;
1556 int i, j;
1557 int got_com = FALSE;
1558 int found_one;
1559 char_u part_buf[COM_MAX_LEN]; /* buffer for one option part */
1560 char_u *string; /* pointer to comment string */
1561 char_u *list;
1563 i = 0;
1564 while (vim_iswhite(line[i])) /* leading white space is ignored */
1565 ++i;
1568 * Repeat to match several nested comment strings.
1570 while (line[i])
1573 * scan through the 'comments' option for a match
1575 found_one = FALSE;
1576 for (list = curbuf->b_p_com; *list; )
1579 * Get one option part into part_buf[]. Advance list to next one.
1580 * put string at start of string.
1582 if (!got_com && flags != NULL) /* remember where flags started */
1583 *flags = list;
1584 (void)copy_option_part(&list, part_buf, COM_MAX_LEN, ",");
1585 string = vim_strchr(part_buf, ':');
1586 if (string == NULL) /* missing ':', ignore this part */
1587 continue;
1588 *string++ = NUL; /* isolate flags from string */
1591 * When already found a nested comment, only accept further
1592 * nested comments.
1594 if (got_com && vim_strchr(part_buf, COM_NEST) == NULL)
1595 continue;
1597 /* When 'O' flag used don't use for "O" command */
1598 if (backward && vim_strchr(part_buf, COM_NOBACK) != NULL)
1599 continue;
1602 * Line contents and string must match.
1603 * When string starts with white space, must have some white space
1604 * (but the amount does not need to match, there might be a mix of
1605 * TABs and spaces).
1607 if (vim_iswhite(string[0]))
1609 if (i == 0 || !vim_iswhite(line[i - 1]))
1610 continue;
1611 while (vim_iswhite(string[0]))
1612 ++string;
1614 for (j = 0; string[j] != NUL && string[j] == line[i + j]; ++j)
1616 if (string[j] != NUL)
1617 continue;
1620 * When 'b' flag used, there must be white space or an
1621 * end-of-line after the string in the line.
1623 if (vim_strchr(part_buf, COM_BLANK) != NULL
1624 && !vim_iswhite(line[i + j]) && line[i + j] != NUL)
1625 continue;
1628 * We have found a match, stop searching.
1630 i += j;
1631 got_com = TRUE;
1632 found_one = TRUE;
1633 break;
1637 * No match found, stop scanning.
1639 if (!found_one)
1640 break;
1643 * Include any trailing white space.
1645 while (vim_iswhite(line[i]))
1646 ++i;
1649 * If this comment doesn't nest, stop here.
1651 if (vim_strchr(part_buf, COM_NEST) == NULL)
1652 break;
1654 return (got_com ? i : 0);
1656 #endif
1659 * Return the number of window lines occupied by buffer line "lnum".
1662 plines(lnum)
1663 linenr_T lnum;
1665 return plines_win(curwin, lnum, TRUE);
1669 plines_win(wp, lnum, winheight)
1670 win_T *wp;
1671 linenr_T lnum;
1672 int winheight; /* when TRUE limit to window height */
1674 #if defined(FEAT_DIFF) || defined(PROTO)
1675 /* Check for filler lines above this buffer line. When folded the result
1676 * is one line anyway. */
1677 return plines_win_nofill(wp, lnum, winheight) + diff_check_fill(wp, lnum);
1681 plines_nofill(lnum)
1682 linenr_T lnum;
1684 return plines_win_nofill(curwin, lnum, TRUE);
1688 plines_win_nofill(wp, lnum, winheight)
1689 win_T *wp;
1690 linenr_T lnum;
1691 int winheight; /* when TRUE limit to window height */
1693 #endif
1694 int lines;
1696 if (!wp->w_p_wrap)
1697 return 1;
1699 #ifdef FEAT_VERTSPLIT
1700 if (wp->w_width == 0)
1701 return 1;
1702 #endif
1704 #ifdef FEAT_FOLDING
1705 /* A folded lines is handled just like an empty line. */
1706 /* NOTE: Caller must handle lines that are MAYBE folded. */
1707 if (lineFolded(wp, lnum) == TRUE)
1708 return 1;
1709 #endif
1711 lines = plines_win_nofold(wp, lnum);
1712 if (winheight > 0 && lines > wp->w_height)
1713 return (int)wp->w_height;
1714 return lines;
1718 * Return number of window lines physical line "lnum" will occupy in window
1719 * "wp". Does not care about folding, 'wrap' or 'diff'.
1722 plines_win_nofold(wp, lnum)
1723 win_T *wp;
1724 linenr_T lnum;
1726 char_u *s;
1727 long col;
1728 int width;
1730 s = ml_get_buf(wp->w_buffer, lnum, FALSE);
1731 if (*s == NUL) /* empty line */
1732 return 1;
1733 col = win_linetabsize(wp, s, (colnr_T)MAXCOL);
1736 * If list mode is on, then the '$' at the end of the line may take up one
1737 * extra column.
1739 if (wp->w_p_list && lcs_eol != NUL)
1740 col += 1;
1743 * Add column offset for 'number' and 'foldcolumn'.
1745 width = W_WIDTH(wp) - win_col_off(wp);
1746 if (width <= 0)
1747 return 32000;
1748 if (col <= width)
1749 return 1;
1750 col -= width;
1751 width += win_col_off2(wp);
1752 return (col + (width - 1)) / width + 1;
1756 * Like plines_win(), but only reports the number of physical screen lines
1757 * used from the start of the line to the given column number.
1760 plines_win_col(wp, lnum, column)
1761 win_T *wp;
1762 linenr_T lnum;
1763 long column;
1765 long col;
1766 char_u *s;
1767 int lines = 0;
1768 int width;
1770 #ifdef FEAT_DIFF
1771 /* Check for filler lines above this buffer line. When folded the result
1772 * is one line anyway. */
1773 lines = diff_check_fill(wp, lnum);
1774 #endif
1776 if (!wp->w_p_wrap)
1777 return lines + 1;
1779 #ifdef FEAT_VERTSPLIT
1780 if (wp->w_width == 0)
1781 return lines + 1;
1782 #endif
1784 s = ml_get_buf(wp->w_buffer, lnum, FALSE);
1786 col = 0;
1787 while (*s != NUL && --column >= 0)
1789 col += win_lbr_chartabsize(wp, s, (colnr_T)col, NULL);
1790 mb_ptr_adv(s);
1794 * If *s is a TAB, and the TAB is not displayed as ^I, and we're not in
1795 * INSERT mode, then col must be adjusted so that it represents the last
1796 * screen position of the TAB. This only fixes an error when the TAB wraps
1797 * from one screen line to the next (when 'columns' is not a multiple of
1798 * 'ts') -- webb.
1800 if (*s == TAB && (State & NORMAL) && (!wp->w_p_list || lcs_tab1))
1801 col += win_lbr_chartabsize(wp, s, (colnr_T)col, NULL) - 1;
1804 * Add column offset for 'number', 'foldcolumn', etc.
1806 width = W_WIDTH(wp) - win_col_off(wp);
1807 if (width <= 0)
1808 return 9999;
1810 lines += 1;
1811 if (col > width)
1812 lines += (col - width) / (width + win_col_off2(wp)) + 1;
1813 return lines;
1817 plines_m_win(wp, first, last)
1818 win_T *wp;
1819 linenr_T first, last;
1821 int count = 0;
1823 while (first <= last)
1825 #ifdef FEAT_FOLDING
1826 int x;
1828 /* Check if there are any really folded lines, but also included lines
1829 * that are maybe folded. */
1830 x = foldedCount(wp, first, NULL);
1831 if (x > 0)
1833 ++count; /* count 1 for "+-- folded" line */
1834 first += x;
1836 else
1837 #endif
1839 #ifdef FEAT_DIFF
1840 if (first == wp->w_topline)
1841 count += plines_win_nofill(wp, first, TRUE) + wp->w_topfill;
1842 else
1843 #endif
1844 count += plines_win(wp, first, TRUE);
1845 ++first;
1848 return (count);
1851 #if defined(FEAT_VREPLACE) || defined(FEAT_INS_EXPAND) || defined(PROTO)
1853 * Insert string "p" at the cursor position. Stops at a NUL byte.
1854 * Handles Replace mode and multi-byte characters.
1856 void
1857 ins_bytes(p)
1858 char_u *p;
1860 ins_bytes_len(p, (int)STRLEN(p));
1862 #endif
1864 #if defined(FEAT_VREPLACE) || defined(FEAT_INS_EXPAND) \
1865 || defined(FEAT_COMMENTS) || defined(FEAT_MBYTE) || defined(PROTO)
1867 * Insert string "p" with length "len" at the cursor position.
1868 * Handles Replace mode and multi-byte characters.
1870 void
1871 ins_bytes_len(p, len)
1872 char_u *p;
1873 int len;
1875 int i;
1876 # ifdef FEAT_MBYTE
1877 int n;
1879 if (has_mbyte)
1880 for (i = 0; i < len; i += n)
1882 if (enc_utf8)
1883 /* avoid reading past p[len] */
1884 n = utfc_ptr2len_len(p + i, len - i);
1885 else
1886 n = (*mb_ptr2len)(p + i);
1887 ins_char_bytes(p + i, n);
1889 else
1890 # endif
1891 for (i = 0; i < len; ++i)
1892 ins_char(p[i]);
1894 #endif
1897 * Insert or replace a single character at the cursor position.
1898 * When in REPLACE or VREPLACE mode, replace any existing character.
1899 * Caller must have prepared for undo.
1900 * For multi-byte characters we get the whole character, the caller must
1901 * convert bytes to a character.
1903 void
1904 ins_char(c)
1905 int c;
1907 #if defined(FEAT_MBYTE) || defined(PROTO)
1908 char_u buf[MB_MAXBYTES];
1909 int n;
1911 n = (*mb_char2bytes)(c, buf);
1913 /* When "c" is 0x100, 0x200, etc. we don't want to insert a NUL byte.
1914 * Happens for CTRL-Vu9900. */
1915 if (buf[0] == 0)
1916 buf[0] = '\n';
1918 ins_char_bytes(buf, n);
1921 void
1922 ins_char_bytes(buf, charlen)
1923 char_u *buf;
1924 int charlen;
1926 int c = buf[0];
1927 #endif
1928 int newlen; /* nr of bytes inserted */
1929 int oldlen; /* nr of bytes deleted (0 when not replacing) */
1930 char_u *p;
1931 char_u *newp;
1932 char_u *oldp;
1933 int linelen; /* length of old line including NUL */
1934 colnr_T col;
1935 linenr_T lnum = curwin->w_cursor.lnum;
1936 int i;
1938 #ifdef FEAT_VIRTUALEDIT
1939 /* Break tabs if needed. */
1940 if (virtual_active() && curwin->w_cursor.coladd > 0)
1941 coladvance_force(getviscol());
1942 #endif
1944 col = curwin->w_cursor.col;
1945 oldp = ml_get(lnum);
1946 linelen = (int)STRLEN(oldp) + 1;
1948 /* The lengths default to the values for when not replacing. */
1949 oldlen = 0;
1950 #ifdef FEAT_MBYTE
1951 newlen = charlen;
1952 #else
1953 newlen = 1;
1954 #endif
1956 if (State & REPLACE_FLAG)
1958 #ifdef FEAT_VREPLACE
1959 if (State & VREPLACE_FLAG)
1961 colnr_T new_vcol = 0; /* init for GCC */
1962 colnr_T vcol;
1963 int old_list;
1964 #ifndef FEAT_MBYTE
1965 char_u buf[2];
1966 #endif
1969 * Disable 'list' temporarily, unless 'cpo' contains the 'L' flag.
1970 * Returns the old value of list, so when finished,
1971 * curwin->w_p_list should be set back to this.
1973 old_list = curwin->w_p_list;
1974 if (old_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
1975 curwin->w_p_list = FALSE;
1978 * In virtual replace mode each character may replace one or more
1979 * characters (zero if it's a TAB). Count the number of bytes to
1980 * be deleted to make room for the new character, counting screen
1981 * cells. May result in adding spaces to fill a gap.
1983 getvcol(curwin, &curwin->w_cursor, NULL, &vcol, NULL);
1984 #ifndef FEAT_MBYTE
1985 buf[0] = c;
1986 buf[1] = NUL;
1987 #endif
1988 new_vcol = vcol + chartabsize(buf, vcol);
1989 while (oldp[col + oldlen] != NUL && vcol < new_vcol)
1991 vcol += chartabsize(oldp + col + oldlen, vcol);
1992 /* Don't need to remove a TAB that takes us to the right
1993 * position. */
1994 if (vcol > new_vcol && oldp[col + oldlen] == TAB)
1995 break;
1996 #ifdef FEAT_MBYTE
1997 oldlen += (*mb_ptr2len)(oldp + col + oldlen);
1998 #else
1999 ++oldlen;
2000 #endif
2001 /* Deleted a bit too much, insert spaces. */
2002 if (vcol > new_vcol)
2003 newlen += vcol - new_vcol;
2005 curwin->w_p_list = old_list;
2007 else
2008 #endif
2009 if (oldp[col] != NUL)
2011 /* normal replace */
2012 #ifdef FEAT_MBYTE
2013 oldlen = (*mb_ptr2len)(oldp + col);
2014 #else
2015 oldlen = 1;
2016 #endif
2020 /* Push the replaced bytes onto the replace stack, so that they can be
2021 * put back when BS is used. The bytes of a multi-byte character are
2022 * done the other way around, so that the first byte is popped off
2023 * first (it tells the byte length of the character). */
2024 replace_push(NUL);
2025 for (i = 0; i < oldlen; ++i)
2027 #ifdef FEAT_MBYTE
2028 if (has_mbyte)
2029 i += replace_push_mb(oldp + col + i) - 1;
2030 else
2031 #endif
2032 replace_push(oldp[col + i]);
2036 newp = alloc_check((unsigned)(linelen + newlen - oldlen));
2037 if (newp == NULL)
2038 return;
2040 /* Copy bytes before the cursor. */
2041 if (col > 0)
2042 mch_memmove(newp, oldp, (size_t)col);
2044 /* Copy bytes after the changed character(s). */
2045 p = newp + col;
2046 mch_memmove(p + newlen, oldp + col + oldlen,
2047 (size_t)(linelen - col - oldlen));
2049 /* Insert or overwrite the new character. */
2050 #ifdef FEAT_MBYTE
2051 mch_memmove(p, buf, charlen);
2052 i = charlen;
2053 #else
2054 *p = c;
2055 i = 1;
2056 #endif
2058 /* Fill with spaces when necessary. */
2059 while (i < newlen)
2060 p[i++] = ' ';
2062 /* Replace the line in the buffer. */
2063 ml_replace(lnum, newp, FALSE);
2065 /* mark the buffer as changed and prepare for displaying */
2066 changed_bytes(lnum, col);
2069 * If we're in Insert or Replace mode and 'showmatch' is set, then briefly
2070 * show the match for right parens and braces.
2072 if (p_sm && (State & INSERT)
2073 && msg_silent == 0
2074 #ifdef FEAT_MBYTE
2075 && charlen == 1
2076 #endif
2077 #ifdef FEAT_INS_EXPAND
2078 && !ins_compl_active()
2079 #endif
2081 showmatch(c);
2083 #ifdef FEAT_RIGHTLEFT
2084 if (!p_ri || (State & REPLACE_FLAG))
2085 #endif
2087 /* Normal insert: move cursor right */
2088 #ifdef FEAT_MBYTE
2089 curwin->w_cursor.col += charlen;
2090 #else
2091 ++curwin->w_cursor.col;
2092 #endif
2095 * TODO: should try to update w_row here, to avoid recomputing it later.
2100 * Insert a string at the cursor position.
2101 * Note: Does NOT handle Replace mode.
2102 * Caller must have prepared for undo.
2104 void
2105 ins_str(s)
2106 char_u *s;
2108 char_u *oldp, *newp;
2109 int newlen = (int)STRLEN(s);
2110 int oldlen;
2111 colnr_T col;
2112 linenr_T lnum = curwin->w_cursor.lnum;
2114 #ifdef FEAT_VIRTUALEDIT
2115 if (virtual_active() && curwin->w_cursor.coladd > 0)
2116 coladvance_force(getviscol());
2117 #endif
2119 col = curwin->w_cursor.col;
2120 oldp = ml_get(lnum);
2121 oldlen = (int)STRLEN(oldp);
2123 newp = alloc_check((unsigned)(oldlen + newlen + 1));
2124 if (newp == NULL)
2125 return;
2126 if (col > 0)
2127 mch_memmove(newp, oldp, (size_t)col);
2128 mch_memmove(newp + col, s, (size_t)newlen);
2129 mch_memmove(newp + col + newlen, oldp + col, (size_t)(oldlen - col + 1));
2130 ml_replace(lnum, newp, FALSE);
2131 changed_bytes(lnum, col);
2132 curwin->w_cursor.col += newlen;
2136 * Delete one character under the cursor.
2137 * If "fixpos" is TRUE, don't leave the cursor on the NUL after the line.
2138 * Caller must have prepared for undo.
2140 * return FAIL for failure, OK otherwise
2143 del_char(fixpos)
2144 int fixpos;
2146 #ifdef FEAT_MBYTE
2147 if (has_mbyte)
2149 /* Make sure the cursor is at the start of a character. */
2150 mb_adjust_cursor();
2151 if (*ml_get_cursor() == NUL)
2152 return FAIL;
2153 return del_chars(1L, fixpos);
2155 #endif
2156 return del_bytes(1L, fixpos, TRUE);
2159 #if defined(FEAT_MBYTE) || defined(PROTO)
2161 * Like del_bytes(), but delete characters instead of bytes.
2164 del_chars(count, fixpos)
2165 long count;
2166 int fixpos;
2168 long bytes = 0;
2169 long i;
2170 char_u *p;
2171 int l;
2173 p = ml_get_cursor();
2174 for (i = 0; i < count && *p != NUL; ++i)
2176 l = (*mb_ptr2len)(p);
2177 bytes += l;
2178 p += l;
2180 return del_bytes(bytes, fixpos, TRUE);
2182 #endif
2185 * Delete "count" bytes under the cursor.
2186 * If "fixpos" is TRUE, don't leave the cursor on the NUL after the line.
2187 * Caller must have prepared for undo.
2189 * return FAIL for failure, OK otherwise
2192 del_bytes(count, fixpos_arg, use_delcombine)
2193 long count;
2194 int fixpos_arg;
2195 int use_delcombine UNUSED; /* 'delcombine' option applies */
2197 char_u *oldp, *newp;
2198 colnr_T oldlen;
2199 linenr_T lnum = curwin->w_cursor.lnum;
2200 colnr_T col = curwin->w_cursor.col;
2201 int was_alloced;
2202 long movelen;
2203 int fixpos = fixpos_arg;
2205 oldp = ml_get(lnum);
2206 oldlen = (int)STRLEN(oldp);
2209 * Can't do anything when the cursor is on the NUL after the line.
2211 if (col >= oldlen)
2212 return FAIL;
2214 #ifdef FEAT_MBYTE
2215 /* If 'delcombine' is set and deleting (less than) one character, only
2216 * delete the last combining character. */
2217 if (p_deco && use_delcombine && enc_utf8
2218 && utfc_ptr2len(oldp + col) >= count)
2220 int cc[MAX_MCO];
2221 int n;
2223 (void)utfc_ptr2char(oldp + col, cc);
2224 if (cc[0] != NUL)
2226 /* Find the last composing char, there can be several. */
2227 n = col;
2230 col = n;
2231 count = utf_ptr2len(oldp + n);
2232 n += count;
2233 } while (UTF_COMPOSINGLIKE(oldp + col, oldp + n));
2234 fixpos = 0;
2237 #endif
2240 * When count is too big, reduce it.
2242 movelen = (long)oldlen - (long)col - count + 1; /* includes trailing NUL */
2243 if (movelen <= 1)
2246 * If we just took off the last character of a non-blank line, and
2247 * fixpos is TRUE, we don't want to end up positioned at the NUL,
2248 * unless "restart_edit" is set or 'virtualedit' contains "onemore".
2250 if (col > 0 && fixpos && restart_edit == 0
2251 #ifdef FEAT_VIRTUALEDIT
2252 && (ve_flags & VE_ONEMORE) == 0
2253 #endif
2256 --curwin->w_cursor.col;
2257 #ifdef FEAT_VIRTUALEDIT
2258 curwin->w_cursor.coladd = 0;
2259 #endif
2260 #ifdef FEAT_MBYTE
2261 if (has_mbyte)
2262 curwin->w_cursor.col -=
2263 (*mb_head_off)(oldp, oldp + curwin->w_cursor.col);
2264 #endif
2266 count = oldlen - col;
2267 movelen = 1;
2271 * If the old line has been allocated the deletion can be done in the
2272 * existing line. Otherwise a new line has to be allocated
2273 * Can't do this when using Netbeans, because we would need to invoke
2274 * netbeans_removed(), which deallocates the line. Let ml_replace() take
2275 * care of notifiying Netbeans.
2277 #ifdef FEAT_NETBEANS_INTG
2278 if (usingNetbeans)
2279 was_alloced = FALSE;
2280 else
2281 #endif
2282 was_alloced = ml_line_alloced(); /* check if oldp was allocated */
2283 if (was_alloced)
2284 newp = oldp; /* use same allocated memory */
2285 else
2286 { /* need to allocate a new line */
2287 newp = alloc((unsigned)(oldlen + 1 - count));
2288 if (newp == NULL)
2289 return FAIL;
2290 mch_memmove(newp, oldp, (size_t)col);
2292 mch_memmove(newp + col, oldp + col + count, (size_t)movelen);
2293 if (!was_alloced)
2294 ml_replace(lnum, newp, FALSE);
2296 /* mark the buffer as changed and prepare for displaying */
2297 changed_bytes(lnum, curwin->w_cursor.col);
2299 return OK;
2303 * Delete from cursor to end of line.
2304 * Caller must have prepared for undo.
2306 * return FAIL for failure, OK otherwise
2309 truncate_line(fixpos)
2310 int fixpos; /* if TRUE fix the cursor position when done */
2312 char_u *newp;
2313 linenr_T lnum = curwin->w_cursor.lnum;
2314 colnr_T col = curwin->w_cursor.col;
2316 if (col == 0)
2317 newp = vim_strsave((char_u *)"");
2318 else
2319 newp = vim_strnsave(ml_get(lnum), col);
2321 if (newp == NULL)
2322 return FAIL;
2324 ml_replace(lnum, newp, FALSE);
2326 /* mark the buffer as changed and prepare for displaying */
2327 changed_bytes(lnum, curwin->w_cursor.col);
2330 * If "fixpos" is TRUE we don't want to end up positioned at the NUL.
2332 if (fixpos && curwin->w_cursor.col > 0)
2333 --curwin->w_cursor.col;
2335 return OK;
2339 * Delete "nlines" lines at the cursor.
2340 * Saves the lines for undo first if "undo" is TRUE.
2342 void
2343 del_lines(nlines, undo)
2344 long nlines; /* number of lines to delete */
2345 int undo; /* if TRUE, prepare for undo */
2347 long n;
2348 linenr_T first = curwin->w_cursor.lnum;
2350 if (nlines <= 0)
2351 return;
2353 /* save the deleted lines for undo */
2354 if (undo && u_savedel(first, nlines) == FAIL)
2355 return;
2357 for (n = 0; n < nlines; )
2359 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
2360 break;
2362 ml_delete(first, TRUE);
2363 ++n;
2365 /* If we delete the last line in the file, stop */
2366 if (first > curbuf->b_ml.ml_line_count)
2367 break;
2370 /* Correct the cursor position before calling deleted_lines_mark(), it may
2371 * trigger a callback to display the cursor. */
2372 curwin->w_cursor.col = 0;
2373 check_cursor_lnum();
2375 /* adjust marks, mark the buffer as changed and prepare for displaying */
2376 deleted_lines_mark(first, n);
2380 gchar_pos(pos)
2381 pos_T *pos;
2383 char_u *ptr = ml_get_pos(pos);
2385 #ifdef FEAT_MBYTE
2386 if (has_mbyte)
2387 return (*mb_ptr2char)(ptr);
2388 #endif
2389 return (int)*ptr;
2393 gchar_cursor()
2395 #ifdef FEAT_MBYTE
2396 if (has_mbyte)
2397 return (*mb_ptr2char)(ml_get_cursor());
2398 #endif
2399 return (int)*ml_get_cursor();
2403 * Write a character at the current cursor position.
2404 * It is directly written into the block.
2406 void
2407 pchar_cursor(c)
2408 int c;
2410 *(ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE)
2411 + curwin->w_cursor.col) = c;
2414 #if 0 /* not used */
2416 * Put *pos at end of current buffer
2418 void
2419 goto_endofbuf(pos)
2420 pos_T *pos;
2422 char_u *p;
2424 pos->lnum = curbuf->b_ml.ml_line_count;
2425 pos->col = 0;
2426 p = ml_get(pos->lnum);
2427 while (*p++)
2428 ++pos->col;
2430 #endif
2433 * When extra == 0: Return TRUE if the cursor is before or on the first
2434 * non-blank in the line.
2435 * When extra == 1: Return TRUE if the cursor is before the first non-blank in
2436 * the line.
2439 inindent(extra)
2440 int extra;
2442 char_u *ptr;
2443 colnr_T col;
2445 for (col = 0, ptr = ml_get_curline(); vim_iswhite(*ptr); ++col)
2446 ++ptr;
2447 if (col >= curwin->w_cursor.col + extra)
2448 return TRUE;
2449 else
2450 return FALSE;
2454 * Skip to next part of an option argument: Skip space and comma.
2456 char_u *
2457 skip_to_option_part(p)
2458 char_u *p;
2460 if (*p == ',')
2461 ++p;
2462 while (*p == ' ')
2463 ++p;
2464 return p;
2468 * changed() is called when something in the current buffer is changed.
2470 * Most often called through changed_bytes() and changed_lines(), which also
2471 * mark the area of the display to be redrawn.
2473 void
2474 changed()
2476 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2477 /* The text of the preediting area is inserted, but this doesn't
2478 * mean a change of the buffer yet. That is delayed until the
2479 * text is committed. (this means preedit becomes empty) */
2480 if (im_is_preediting() && !xim_changed_while_preediting)
2481 return;
2482 xim_changed_while_preediting = FALSE;
2483 #endif
2485 if (!curbuf->b_changed)
2487 int save_msg_scroll = msg_scroll;
2489 /* Give a warning about changing a read-only file. This may also
2490 * check-out the file, thus change "curbuf"! */
2491 change_warning(0);
2493 /* Create a swap file if that is wanted.
2494 * Don't do this for "nofile" and "nowrite" buffer types. */
2495 if (curbuf->b_may_swap
2496 #ifdef FEAT_QUICKFIX
2497 && !bt_dontwrite(curbuf)
2498 #endif
2501 ml_open_file(curbuf);
2503 /* The ml_open_file() can cause an ATTENTION message.
2504 * Wait two seconds, to make sure the user reads this unexpected
2505 * message. Since we could be anywhere, call wait_return() now,
2506 * and don't let the emsg() set msg_scroll. */
2507 if (need_wait_return && emsg_silent == 0)
2509 out_flush();
2510 ui_delay(2000L, TRUE);
2511 wait_return(TRUE);
2512 msg_scroll = save_msg_scroll;
2515 curbuf->b_changed = TRUE;
2516 ml_setflags(curbuf);
2517 #ifdef FEAT_WINDOWS
2518 check_status(curbuf);
2519 redraw_tabline = TRUE;
2520 #endif
2521 #ifdef FEAT_TITLE
2522 need_maketitle = TRUE; /* set window title later */
2523 #endif
2525 ++curbuf->b_changedtick;
2528 static void changedOneline __ARGS((buf_T *buf, linenr_T lnum));
2529 static void changed_lines_buf __ARGS((buf_T *buf, linenr_T lnum, linenr_T lnume, long xtra));
2530 static void changed_common __ARGS((linenr_T lnum, colnr_T col, linenr_T lnume, long xtra));
2533 * Changed bytes within a single line for the current buffer.
2534 * - marks the windows on this buffer to be redisplayed
2535 * - marks the buffer changed by calling changed()
2536 * - invalidates cached values
2538 void
2539 changed_bytes(lnum, col)
2540 linenr_T lnum;
2541 colnr_T col;
2543 changedOneline(curbuf, lnum);
2544 changed_common(lnum, col, lnum + 1, 0L);
2546 #ifdef FEAT_DIFF
2547 /* Diff highlighting in other diff windows may need to be updated too. */
2548 if (curwin->w_p_diff)
2550 win_T *wp;
2551 linenr_T wlnum;
2553 for (wp = firstwin; wp != NULL; wp = wp->w_next)
2554 if (wp->w_p_diff && wp != curwin)
2556 redraw_win_later(wp, VALID);
2557 wlnum = diff_lnum_win(lnum, wp);
2558 if (wlnum > 0)
2559 changedOneline(wp->w_buffer, wlnum);
2562 #endif
2565 static void
2566 changedOneline(buf, lnum)
2567 buf_T *buf;
2568 linenr_T lnum;
2570 if (buf->b_mod_set)
2572 /* find the maximum area that must be redisplayed */
2573 if (lnum < buf->b_mod_top)
2574 buf->b_mod_top = lnum;
2575 else if (lnum >= buf->b_mod_bot)
2576 buf->b_mod_bot = lnum + 1;
2578 else
2580 /* set the area that must be redisplayed to one line */
2581 buf->b_mod_set = TRUE;
2582 buf->b_mod_top = lnum;
2583 buf->b_mod_bot = lnum + 1;
2584 buf->b_mod_xlines = 0;
2589 * Appended "count" lines below line "lnum" in the current buffer.
2590 * Must be called AFTER the change and after mark_adjust().
2591 * Takes care of marking the buffer to be redrawn and sets the changed flag.
2593 void
2594 appended_lines(lnum, count)
2595 linenr_T lnum;
2596 long count;
2598 changed_lines(lnum + 1, 0, lnum + 1, count);
2602 * Like appended_lines(), but adjust marks first.
2604 void
2605 appended_lines_mark(lnum, count)
2606 linenr_T lnum;
2607 long count;
2609 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, count, 0L);
2610 changed_lines(lnum + 1, 0, lnum + 1, count);
2614 * Deleted "count" lines at line "lnum" in the current buffer.
2615 * Must be called AFTER the change and after mark_adjust().
2616 * Takes care of marking the buffer to be redrawn and sets the changed flag.
2618 void
2619 deleted_lines(lnum, count)
2620 linenr_T lnum;
2621 long count;
2623 changed_lines(lnum, 0, lnum + count, -count);
2627 * Like deleted_lines(), but adjust marks first.
2628 * Make sure the cursor is on a valid line before calling, a GUI callback may
2629 * be triggered to display the cursor.
2631 void
2632 deleted_lines_mark(lnum, count)
2633 linenr_T lnum;
2634 long count;
2636 mark_adjust(lnum, (linenr_T)(lnum + count - 1), (long)MAXLNUM, -count);
2637 changed_lines(lnum, 0, lnum + count, -count);
2641 * Changed lines for the current buffer.
2642 * Must be called AFTER the change and after mark_adjust().
2643 * - mark the buffer changed by calling changed()
2644 * - mark the windows on this buffer to be redisplayed
2645 * - invalidate cached values
2646 * "lnum" is the first line that needs displaying, "lnume" the first line
2647 * below the changed lines (BEFORE the change).
2648 * When only inserting lines, "lnum" and "lnume" are equal.
2649 * Takes care of calling changed() and updating b_mod_*.
2651 void
2652 changed_lines(lnum, col, lnume, xtra)
2653 linenr_T lnum; /* first line with change */
2654 colnr_T col; /* column in first line with change */
2655 linenr_T lnume; /* line below last changed line */
2656 long xtra; /* number of extra lines (negative when deleting) */
2658 changed_lines_buf(curbuf, lnum, lnume, xtra);
2660 #ifdef FEAT_DIFF
2661 if (xtra == 0 && curwin->w_p_diff)
2663 /* When the number of lines doesn't change then mark_adjust() isn't
2664 * called and other diff buffers still need to be marked for
2665 * displaying. */
2666 win_T *wp;
2667 linenr_T wlnum;
2669 for (wp = firstwin; wp != NULL; wp = wp->w_next)
2670 if (wp->w_p_diff && wp != curwin)
2672 redraw_win_later(wp, VALID);
2673 wlnum = diff_lnum_win(lnum, wp);
2674 if (wlnum > 0)
2675 changed_lines_buf(wp->w_buffer, wlnum,
2676 lnume - lnum + wlnum, 0L);
2679 #endif
2681 changed_common(lnum, col, lnume, xtra);
2684 static void
2685 changed_lines_buf(buf, lnum, lnume, xtra)
2686 buf_T *buf;
2687 linenr_T lnum; /* first line with change */
2688 linenr_T lnume; /* line below last changed line */
2689 long xtra; /* number of extra lines (negative when deleting) */
2691 if (buf->b_mod_set)
2693 /* find the maximum area that must be redisplayed */
2694 if (lnum < buf->b_mod_top)
2695 buf->b_mod_top = lnum;
2696 if (lnum < buf->b_mod_bot)
2698 /* adjust old bot position for xtra lines */
2699 buf->b_mod_bot += xtra;
2700 if (buf->b_mod_bot < lnum)
2701 buf->b_mod_bot = lnum;
2703 if (lnume + xtra > buf->b_mod_bot)
2704 buf->b_mod_bot = lnume + xtra;
2705 buf->b_mod_xlines += xtra;
2707 else
2709 /* set the area that must be redisplayed */
2710 buf->b_mod_set = TRUE;
2711 buf->b_mod_top = lnum;
2712 buf->b_mod_bot = lnume + xtra;
2713 buf->b_mod_xlines = xtra;
2717 static void
2718 changed_common(lnum, col, lnume, xtra)
2719 linenr_T lnum;
2720 colnr_T col;
2721 linenr_T lnume;
2722 long xtra;
2724 win_T *wp;
2725 #ifdef FEAT_WINDOWS
2726 tabpage_T *tp;
2727 #endif
2728 int i;
2729 #ifdef FEAT_JUMPLIST
2730 int cols;
2731 pos_T *p;
2732 int add;
2733 #endif
2735 /* mark the buffer as modified */
2736 changed();
2738 /* set the '. mark */
2739 if (!cmdmod.keepjumps)
2741 curbuf->b_last_change.lnum = lnum;
2742 curbuf->b_last_change.col = col;
2744 #ifdef FEAT_JUMPLIST
2745 /* Create a new entry if a new undo-able change was started or we
2746 * don't have an entry yet. */
2747 if (curbuf->b_new_change || curbuf->b_changelistlen == 0)
2749 if (curbuf->b_changelistlen == 0)
2750 add = TRUE;
2751 else
2753 /* Don't create a new entry when the line number is the same
2754 * as the last one and the column is not too far away. Avoids
2755 * creating many entries for typing "xxxxx". */
2756 p = &curbuf->b_changelist[curbuf->b_changelistlen - 1];
2757 if (p->lnum != lnum)
2758 add = TRUE;
2759 else
2761 cols = comp_textwidth(FALSE);
2762 if (cols == 0)
2763 cols = 79;
2764 add = (p->col + cols < col || col + cols < p->col);
2767 if (add)
2769 /* This is the first of a new sequence of undo-able changes
2770 * and it's at some distance of the last change. Use a new
2771 * position in the changelist. */
2772 curbuf->b_new_change = FALSE;
2774 if (curbuf->b_changelistlen == JUMPLISTSIZE)
2776 /* changelist is full: remove oldest entry */
2777 curbuf->b_changelistlen = JUMPLISTSIZE - 1;
2778 mch_memmove(curbuf->b_changelist, curbuf->b_changelist + 1,
2779 sizeof(pos_T) * (JUMPLISTSIZE - 1));
2780 FOR_ALL_TAB_WINDOWS(tp, wp)
2782 /* Correct position in changelist for other windows on
2783 * this buffer. */
2784 if (wp->w_buffer == curbuf && wp->w_changelistidx > 0)
2785 --wp->w_changelistidx;
2788 FOR_ALL_TAB_WINDOWS(tp, wp)
2790 /* For other windows, if the position in the changelist is
2791 * at the end it stays at the end. */
2792 if (wp->w_buffer == curbuf
2793 && wp->w_changelistidx == curbuf->b_changelistlen)
2794 ++wp->w_changelistidx;
2796 ++curbuf->b_changelistlen;
2799 curbuf->b_changelist[curbuf->b_changelistlen - 1] =
2800 curbuf->b_last_change;
2801 /* The current window is always after the last change, so that "g,"
2802 * takes you back to it. */
2803 curwin->w_changelistidx = curbuf->b_changelistlen;
2804 #endif
2807 FOR_ALL_TAB_WINDOWS(tp, wp)
2809 if (wp->w_buffer == curbuf)
2811 /* Mark this window to be redrawn later. */
2812 if (wp->w_redr_type < VALID)
2813 wp->w_redr_type = VALID;
2815 /* Check if a change in the buffer has invalidated the cached
2816 * values for the cursor. */
2817 #ifdef FEAT_FOLDING
2819 * Update the folds for this window. Can't postpone this, because
2820 * a following operator might work on the whole fold: ">>dd".
2822 foldUpdate(wp, lnum, lnume + xtra - 1);
2824 /* The change may cause lines above or below the change to become
2825 * included in a fold. Set lnum/lnume to the first/last line that
2826 * might be displayed differently.
2827 * Set w_cline_folded here as an efficient way to update it when
2828 * inserting lines just above a closed fold. */
2829 i = hasFoldingWin(wp, lnum, &lnum, NULL, FALSE, NULL);
2830 if (wp->w_cursor.lnum == lnum)
2831 wp->w_cline_folded = i;
2832 i = hasFoldingWin(wp, lnume, NULL, &lnume, FALSE, NULL);
2833 if (wp->w_cursor.lnum == lnume)
2834 wp->w_cline_folded = i;
2836 /* If the changed line is in a range of previously folded lines,
2837 * compare with the first line in that range. */
2838 if (wp->w_cursor.lnum <= lnum)
2840 i = find_wl_entry(wp, lnum);
2841 if (i >= 0 && wp->w_cursor.lnum > wp->w_lines[i].wl_lnum)
2842 changed_line_abv_curs_win(wp);
2844 #endif
2846 if (wp->w_cursor.lnum > lnum)
2847 changed_line_abv_curs_win(wp);
2848 else if (wp->w_cursor.lnum == lnum && wp->w_cursor.col >= col)
2849 changed_cline_bef_curs_win(wp);
2850 if (wp->w_botline >= lnum)
2852 /* Assume that botline doesn't change (inserted lines make
2853 * other lines scroll down below botline). */
2854 approximate_botline_win(wp);
2857 /* Check if any w_lines[] entries have become invalid.
2858 * For entries below the change: Correct the lnums for
2859 * inserted/deleted lines. Makes it possible to stop displaying
2860 * after the change. */
2861 for (i = 0; i < wp->w_lines_valid; ++i)
2862 if (wp->w_lines[i].wl_valid)
2864 if (wp->w_lines[i].wl_lnum >= lnum)
2866 if (wp->w_lines[i].wl_lnum < lnume)
2868 /* line included in change */
2869 wp->w_lines[i].wl_valid = FALSE;
2871 else if (xtra != 0)
2873 /* line below change */
2874 wp->w_lines[i].wl_lnum += xtra;
2875 #ifdef FEAT_FOLDING
2876 wp->w_lines[i].wl_lastlnum += xtra;
2877 #endif
2880 #ifdef FEAT_FOLDING
2881 else if (wp->w_lines[i].wl_lastlnum >= lnum)
2883 /* change somewhere inside this range of folded lines,
2884 * may need to be redrawn */
2885 wp->w_lines[i].wl_valid = FALSE;
2887 #endif
2890 #ifdef FEAT_FOLDING
2891 /* Take care of side effects for setting w_topline when folds have
2892 * changed. Esp. when the buffer was changed in another window. */
2893 if (hasAnyFolding(wp))
2894 set_topline(wp, wp->w_topline);
2895 #endif
2899 /* Call update_screen() later, which checks out what needs to be redrawn,
2900 * since it notices b_mod_set and then uses b_mod_*. */
2901 if (must_redraw < VALID)
2902 must_redraw = VALID;
2904 #ifdef FEAT_AUTOCMD
2905 /* when the cursor line is changed always trigger CursorMoved */
2906 if (lnum <= curwin->w_cursor.lnum
2907 && lnume + (xtra < 0 ? -xtra : xtra) > curwin->w_cursor.lnum)
2908 last_cursormoved.lnum = 0;
2909 #endif
2913 * unchanged() is called when the changed flag must be reset for buffer 'buf'
2915 void
2916 unchanged(buf, ff)
2917 buf_T *buf;
2918 int ff; /* also reset 'fileformat' */
2920 if (buf->b_changed || (ff && file_ff_differs(buf)))
2922 buf->b_changed = 0;
2923 ml_setflags(buf);
2924 if (ff)
2925 save_file_ff(buf);
2926 #ifdef FEAT_WINDOWS
2927 check_status(buf);
2928 redraw_tabline = TRUE;
2929 #endif
2930 #ifdef FEAT_TITLE
2931 need_maketitle = TRUE; /* set window title later */
2932 #endif
2934 ++buf->b_changedtick;
2935 #ifdef FEAT_NETBEANS_INTG
2936 netbeans_unmodified(buf);
2937 #endif
2940 #if defined(FEAT_WINDOWS) || defined(PROTO)
2942 * check_status: called when the status bars for the buffer 'buf'
2943 * need to be updated
2945 void
2946 check_status(buf)
2947 buf_T *buf;
2949 win_T *wp;
2951 for (wp = firstwin; wp != NULL; wp = wp->w_next)
2952 if (wp->w_buffer == buf && wp->w_status_height)
2954 wp->w_redr_status = TRUE;
2955 if (must_redraw < VALID)
2956 must_redraw = VALID;
2959 #endif
2962 * If the file is readonly, give a warning message with the first change.
2963 * Don't do this for autocommands.
2964 * Don't use emsg(), because it flushes the macro buffer.
2965 * If we have undone all changes b_changed will be FALSE, but "b_did_warn"
2966 * will be TRUE.
2968 void
2969 change_warning(col)
2970 int col; /* column for message; non-zero when in insert
2971 mode and 'showmode' is on */
2973 static char *w_readonly = N_("W10: Warning: Changing a readonly file");
2975 if (curbuf->b_did_warn == FALSE
2976 && curbufIsChanged() == 0
2977 #ifdef FEAT_AUTOCMD
2978 && !autocmd_busy
2979 #endif
2980 && curbuf->b_p_ro)
2982 #ifdef FEAT_AUTOCMD
2983 ++curbuf_lock;
2984 apply_autocmds(EVENT_FILECHANGEDRO, NULL, NULL, FALSE, curbuf);
2985 --curbuf_lock;
2986 if (!curbuf->b_p_ro)
2987 return;
2988 #endif
2990 * Do what msg() does, but with a column offset if the warning should
2991 * be after the mode message.
2993 msg_start();
2994 if (msg_row == Rows - 1)
2995 msg_col = col;
2996 msg_source(hl_attr(HLF_W));
2997 MSG_PUTS_ATTR(_(w_readonly), hl_attr(HLF_W) | MSG_HIST);
2998 #ifdef FEAT_EVAL
2999 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_readonly), -1);
3000 #endif
3001 msg_clr_eos();
3002 (void)msg_end();
3003 if (msg_silent == 0 && !silent_mode)
3005 out_flush();
3006 ui_delay(1000L, TRUE); /* give the user time to think about it */
3008 curbuf->b_did_warn = TRUE;
3009 redraw_cmdline = FALSE; /* don't redraw and erase the message */
3010 if (msg_row < Rows - 1)
3011 showmode();
3016 * Ask for a reply from the user, a 'y' or a 'n'.
3017 * No other characters are accepted, the message is repeated until a valid
3018 * reply is entered or CTRL-C is hit.
3019 * If direct is TRUE, don't use vgetc() but ui_inchar(), don't get characters
3020 * from any buffers but directly from the user.
3022 * return the 'y' or 'n'
3025 ask_yesno(str, direct)
3026 char_u *str;
3027 int direct;
3029 int r = ' ';
3030 int save_State = State;
3032 if (exiting) /* put terminal in raw mode for this question */
3033 settmode(TMODE_RAW);
3034 ++no_wait_return;
3035 #ifdef USE_ON_FLY_SCROLL
3036 dont_scroll = TRUE; /* disallow scrolling here */
3037 #endif
3038 State = CONFIRM; /* mouse behaves like with :confirm */
3039 #ifdef FEAT_MOUSE
3040 setmouse(); /* disables mouse for xterm */
3041 #endif
3042 ++no_mapping;
3043 ++allow_keys; /* no mapping here, but recognize keys */
3045 while (r != 'y' && r != 'n')
3047 /* same highlighting as for wait_return */
3048 smsg_attr(hl_attr(HLF_R), (char_u *)"%s (y/n)?", str);
3049 if (direct)
3050 r = get_keystroke();
3051 else
3052 r = plain_vgetc();
3053 if (r == Ctrl_C || r == ESC)
3054 r = 'n';
3055 msg_putchar(r); /* show what you typed */
3056 out_flush();
3058 --no_wait_return;
3059 State = save_State;
3060 #ifdef FEAT_MOUSE
3061 setmouse();
3062 #endif
3063 --no_mapping;
3064 --allow_keys;
3066 return r;
3070 * Get a key stroke directly from the user.
3071 * Ignores mouse clicks and scrollbar events, except a click for the left
3072 * button (used at the more prompt).
3073 * Doesn't use vgetc(), because it syncs undo and eats mapped characters.
3074 * Disadvantage: typeahead is ignored.
3075 * Translates the interrupt character for unix to ESC.
3078 get_keystroke()
3080 #define CBUFLEN 151
3081 char_u buf[CBUFLEN];
3082 int len = 0;
3083 int n;
3084 int save_mapped_ctrl_c = mapped_ctrl_c;
3085 int waited = 0;
3087 mapped_ctrl_c = FALSE; /* mappings are not used here */
3088 for (;;)
3090 cursor_on();
3091 out_flush();
3093 /* First time: blocking wait. Second time: wait up to 100ms for a
3094 * terminal code to complete. Leave some room for check_termcode() to
3095 * insert a key code into (max 5 chars plus NUL). And
3096 * fix_input_buffer() can triple the number of bytes. */
3097 n = ui_inchar(buf + len, (CBUFLEN - 6 - len) / 3,
3098 len == 0 ? -1L : 100L, 0);
3099 if (n > 0)
3101 /* Replace zero and CSI by a special key code. */
3102 n = fix_input_buffer(buf + len, n, FALSE);
3103 len += n;
3104 waited = 0;
3106 else if (len > 0)
3107 ++waited; /* keep track of the waiting time */
3109 /* Incomplete termcode and not timed out yet: get more characters */
3110 if ((n = check_termcode(1, buf, len)) < 0
3111 && (!p_ttimeout || waited * 100L < (p_ttm < 0 ? p_tm : p_ttm)))
3112 continue;
3114 /* found a termcode: adjust length */
3115 if (n > 0)
3116 len = n;
3117 if (len == 0) /* nothing typed yet */
3118 continue;
3120 /* Handle modifier and/or special key code. */
3121 n = buf[0];
3122 if (n == K_SPECIAL)
3124 n = TO_SPECIAL(buf[1], buf[2]);
3125 if (buf[1] == KS_MODIFIER
3126 || n == K_IGNORE
3127 #ifdef FEAT_MOUSE
3128 || n == K_LEFTMOUSE_NM
3129 || n == K_LEFTDRAG
3130 || n == K_LEFTRELEASE
3131 || n == K_LEFTRELEASE_NM
3132 || n == K_MIDDLEMOUSE
3133 || n == K_MIDDLEDRAG
3134 || n == K_MIDDLERELEASE
3135 || n == K_RIGHTMOUSE
3136 || n == K_RIGHTDRAG
3137 || n == K_RIGHTRELEASE
3138 || n == K_MOUSEDOWN
3139 || n == K_MOUSEUP
3140 || n == K_X1MOUSE
3141 || n == K_X1DRAG
3142 || n == K_X1RELEASE
3143 || n == K_X2MOUSE
3144 || n == K_X2DRAG
3145 || n == K_X2RELEASE
3146 # ifdef FEAT_GUI
3147 || n == K_VER_SCROLLBAR
3148 || n == K_HOR_SCROLLBAR
3149 # endif
3150 #endif
3153 if (buf[1] == KS_MODIFIER)
3154 mod_mask = buf[2];
3155 len -= 3;
3156 if (len > 0)
3157 mch_memmove(buf, buf + 3, (size_t)len);
3158 continue;
3160 break;
3162 #ifdef FEAT_MBYTE
3163 if (has_mbyte)
3165 if (MB_BYTE2LEN(n) > len)
3166 continue; /* more bytes to get */
3167 buf[len >= CBUFLEN ? CBUFLEN - 1 : len] = NUL;
3168 n = (*mb_ptr2char)(buf);
3170 #endif
3171 #ifdef UNIX
3172 if (n == intr_char)
3173 n = ESC;
3174 #endif
3175 break;
3178 mapped_ctrl_c = save_mapped_ctrl_c;
3179 return n;
3183 * Get a number from the user.
3184 * When "mouse_used" is not NULL allow using the mouse.
3187 get_number(colon, mouse_used)
3188 int colon; /* allow colon to abort */
3189 int *mouse_used;
3191 int n = 0;
3192 int c;
3193 int typed = 0;
3195 if (mouse_used != NULL)
3196 *mouse_used = FALSE;
3198 /* When not printing messages, the user won't know what to type, return a
3199 * zero (as if CR was hit). */
3200 if (msg_silent != 0)
3201 return 0;
3203 #ifdef USE_ON_FLY_SCROLL
3204 dont_scroll = TRUE; /* disallow scrolling here */
3205 #endif
3206 ++no_mapping;
3207 ++allow_keys; /* no mapping here, but recognize keys */
3208 for (;;)
3210 windgoto(msg_row, msg_col);
3211 c = safe_vgetc();
3212 if (VIM_ISDIGIT(c))
3214 n = n * 10 + c - '0';
3215 msg_putchar(c);
3216 ++typed;
3218 else if (c == K_DEL || c == K_KDEL || c == K_BS || c == Ctrl_H)
3220 if (typed > 0)
3222 MSG_PUTS("\b \b");
3223 --typed;
3225 n /= 10;
3227 #ifdef FEAT_MOUSE
3228 else if (mouse_used != NULL && c == K_LEFTMOUSE)
3230 *mouse_used = TRUE;
3231 n = mouse_row + 1;
3232 break;
3234 #endif
3235 else if (n == 0 && c == ':' && colon)
3237 stuffcharReadbuff(':');
3238 if (!exmode_active)
3239 cmdline_row = msg_row;
3240 skip_redraw = TRUE; /* skip redraw once */
3241 do_redraw = FALSE;
3242 break;
3244 else if (c == CAR || c == NL || c == Ctrl_C || c == ESC)
3245 break;
3247 --no_mapping;
3248 --allow_keys;
3249 return n;
3253 * Ask the user to enter a number.
3254 * When "mouse_used" is not NULL allow using the mouse and in that case return
3255 * the line number.
3258 prompt_for_number(mouse_used)
3259 int *mouse_used;
3261 int i;
3262 int save_cmdline_row;
3263 int save_State;
3265 /* When using ":silent" assume that <CR> was entered. */
3266 if (mouse_used != NULL)
3267 MSG_PUTS(_("Type number and <Enter> or click with mouse (empty cancels): "));
3268 else
3269 MSG_PUTS(_("Type number and <Enter> (empty cancels): "));
3271 /* Set the state such that text can be selected/copied/pasted and we still
3272 * get mouse events. */
3273 save_cmdline_row = cmdline_row;
3274 cmdline_row = 0;
3275 save_State = State;
3276 State = CMDLINE;
3278 i = get_number(TRUE, mouse_used);
3279 if (KeyTyped)
3281 /* don't call wait_return() now */
3282 /* msg_putchar('\n'); */
3283 cmdline_row = msg_row - 1;
3284 need_wait_return = FALSE;
3285 msg_didany = FALSE;
3286 msg_didout = FALSE;
3288 else
3289 cmdline_row = save_cmdline_row;
3290 State = save_State;
3292 return i;
3295 void
3296 msgmore(n)
3297 long n;
3299 long pn;
3301 if (global_busy /* no messages now, wait until global is finished */
3302 || !messaging()) /* 'lazyredraw' set, don't do messages now */
3303 return;
3305 /* We don't want to overwrite another important message, but do overwrite
3306 * a previous "more lines" or "fewer lines" message, so that "5dd" and
3307 * then "put" reports the last action. */
3308 if (keep_msg != NULL && !keep_msg_more)
3309 return;
3311 if (n > 0)
3312 pn = n;
3313 else
3314 pn = -n;
3316 if (pn > p_report)
3318 if (pn == 1)
3320 if (n > 0)
3321 STRCPY(msg_buf, _("1 more line"));
3322 else
3323 STRCPY(msg_buf, _("1 line less"));
3325 else
3327 if (n > 0)
3328 sprintf((char *)msg_buf, _("%ld more lines"), pn);
3329 else
3330 sprintf((char *)msg_buf, _("%ld fewer lines"), pn);
3332 if (got_int)
3333 STRCAT(msg_buf, _(" (Interrupted)"));
3334 if (msg(msg_buf))
3336 set_keep_msg(msg_buf, 0);
3337 keep_msg_more = TRUE;
3343 * flush map and typeahead buffers and give a warning for an error
3345 void
3346 beep_flush()
3348 if (emsg_silent == 0)
3350 flush_buffers(FALSE);
3351 vim_beep();
3356 * give a warning for an error
3358 void
3359 vim_beep()
3361 if (emsg_silent == 0)
3363 if (p_vb
3364 #ifdef FEAT_GUI
3365 /* While the GUI is starting up the termcap is set for the GUI
3366 * but the output still goes to a terminal. */
3367 && !(gui.in_use && gui.starting)
3368 #endif
3371 out_str(T_VB);
3373 else
3375 #ifdef MSDOS
3377 * The number of beeps outputted is reduced to avoid having to wait
3378 * for all the beeps to finish. This is only a problem on systems
3379 * where the beeps don't overlap.
3381 if (beep_count == 0 || beep_count == 10)
3383 out_char(BELL);
3384 beep_count = 1;
3386 else
3387 ++beep_count;
3388 #else
3389 out_char(BELL);
3390 #endif
3393 /* When 'verbose' is set and we are sourcing a script or executing a
3394 * function give the user a hint where the beep comes from. */
3395 if (vim_strchr(p_debug, 'e') != NULL)
3397 msg_source(hl_attr(HLF_W));
3398 msg_attr((char_u *)_("Beep!"), hl_attr(HLF_W));
3404 * To get the "real" home directory:
3405 * - get value of $HOME
3406 * For Unix:
3407 * - go to that directory
3408 * - do mch_dirname() to get the real name of that directory.
3409 * This also works with mounts and links.
3410 * Don't do this for MS-DOS, it will change the "current dir" for a drive.
3412 static char_u *homedir = NULL;
3414 void
3415 init_homedir()
3417 char_u *var;
3419 /* In case we are called a second time (when 'encoding' changes). */
3420 vim_free(homedir);
3421 homedir = NULL;
3423 #ifdef VMS
3424 var = mch_getenv((char_u *)"SYS$LOGIN");
3425 #else
3426 var = mch_getenv((char_u *)"HOME");
3427 #endif
3429 if (var != NULL && *var == NUL) /* empty is same as not set */
3430 var = NULL;
3432 #ifdef WIN3264
3434 * Weird but true: $HOME may contain an indirect reference to another
3435 * variable, esp. "%USERPROFILE%". Happens when $USERPROFILE isn't set
3436 * when $HOME is being set.
3438 if (var != NULL && *var == '%')
3440 char_u *p;
3441 char_u *exp;
3443 p = vim_strchr(var + 1, '%');
3444 if (p != NULL)
3446 vim_strncpy(NameBuff, var + 1, p - (var + 1));
3447 exp = mch_getenv(NameBuff);
3448 if (exp != NULL && *exp != NUL
3449 && STRLEN(exp) + STRLEN(p) < MAXPATHL)
3451 vim_snprintf((char *)NameBuff, MAXPATHL, "%s%s", exp, p + 1);
3452 var = NameBuff;
3453 /* Also set $HOME, it's needed for _viminfo. */
3454 vim_setenv((char_u *)"HOME", NameBuff);
3460 * Typically, $HOME is not defined on Windows, unless the user has
3461 * specifically defined it for Vim's sake. However, on Windows NT
3462 * platforms, $HOMEDRIVE and $HOMEPATH are automatically defined for
3463 * each user. Try constructing $HOME from these.
3465 if (var == NULL)
3467 char_u *homedrive, *homepath;
3469 homedrive = mch_getenv((char_u *)"HOMEDRIVE");
3470 homepath = mch_getenv((char_u *)"HOMEPATH");
3471 if (homedrive != NULL && homepath != NULL
3472 && STRLEN(homedrive) + STRLEN(homepath) < MAXPATHL)
3474 sprintf((char *)NameBuff, "%s%s", homedrive, homepath);
3475 if (NameBuff[0] != NUL)
3477 var = NameBuff;
3478 /* Also set $HOME, it's needed for _viminfo. */
3479 vim_setenv((char_u *)"HOME", NameBuff);
3484 # if defined(FEAT_MBYTE)
3485 if (enc_utf8 && var != NULL)
3487 int len;
3488 char_u *pp;
3490 /* Convert from active codepage to UTF-8. Other conversions are
3491 * not done, because they would fail for non-ASCII characters. */
3492 acp_to_enc(var, (int)STRLEN(var), &pp, &len);
3493 if (pp != NULL)
3495 homedir = pp;
3496 return;
3499 # endif
3500 #endif
3502 #if defined(OS2) || defined(MSDOS) || defined(MSWIN)
3504 * Default home dir is C:/
3505 * Best assumption we can make in such a situation.
3507 if (var == NULL)
3508 var = "C:/";
3509 #endif
3510 if (var != NULL)
3512 #ifdef UNIX
3514 * Change to the directory and get the actual path. This resolves
3515 * links. Don't do it when we can't return.
3517 if (mch_dirname(NameBuff, MAXPATHL) == OK
3518 && mch_chdir((char *)NameBuff) == 0)
3520 if (!mch_chdir((char *)var) && mch_dirname(IObuff, IOSIZE) == OK)
3521 var = IObuff;
3522 if (mch_chdir((char *)NameBuff) != 0)
3523 EMSG(_(e_prev_dir));
3525 #endif
3526 homedir = vim_strsave(var);
3530 #if defined(EXITFREE) || defined(PROTO)
3531 void
3532 free_homedir()
3534 vim_free(homedir);
3536 #endif
3539 * Call expand_env() and store the result in an allocated string.
3540 * This is not very memory efficient, this expects the result to be freed
3541 * again soon.
3543 char_u *
3544 expand_env_save(src)
3545 char_u *src;
3547 return expand_env_save_opt(src, FALSE);
3551 * Idem, but when "one" is TRUE handle the string as one file name, only
3552 * expand "~" at the start.
3554 char_u *
3555 expand_env_save_opt(src, one)
3556 char_u *src;
3557 int one;
3559 char_u *p;
3561 p = alloc(MAXPATHL);
3562 if (p != NULL)
3563 expand_env_esc(src, p, MAXPATHL, FALSE, one, NULL);
3564 return p;
3568 * Expand environment variable with path name.
3569 * "~/" is also expanded, using $HOME. For Unix "~user/" is expanded.
3570 * Skips over "\ ", "\~" and "\$" (not for Win32 though).
3571 * If anything fails no expansion is done and dst equals src.
3573 void
3574 expand_env(src, dst, dstlen)
3575 char_u *src; /* input string e.g. "$HOME/vim.hlp" */
3576 char_u *dst; /* where to put the result */
3577 int dstlen; /* maximum length of the result */
3579 expand_env_esc(src, dst, dstlen, FALSE, FALSE, NULL);
3582 void
3583 expand_env_esc(srcp, dst, dstlen, esc, one, startstr)
3584 char_u *srcp; /* input string e.g. "$HOME/vim.hlp" */
3585 char_u *dst; /* where to put the result */
3586 int dstlen; /* maximum length of the result */
3587 int esc; /* escape spaces in expanded variables */
3588 int one; /* "srcp" is one file name */
3589 char_u *startstr; /* start again after this (can be NULL) */
3591 char_u *src;
3592 char_u *tail;
3593 int c;
3594 char_u *var;
3595 int copy_char;
3596 int mustfree; /* var was allocated, need to free it later */
3597 int at_start = TRUE; /* at start of a name */
3598 int startstr_len = 0;
3600 if (startstr != NULL)
3601 startstr_len = (int)STRLEN(startstr);
3603 src = skipwhite(srcp);
3604 --dstlen; /* leave one char space for "\," */
3605 while (*src && dstlen > 0)
3607 copy_char = TRUE;
3608 if ((*src == '$'
3609 #ifdef VMS
3610 && at_start
3611 #endif
3613 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3614 || *src == '%'
3615 #endif
3616 || (*src == '~' && at_start))
3618 mustfree = FALSE;
3621 * The variable name is copied into dst temporarily, because it may
3622 * be a string in read-only memory and a NUL needs to be appended.
3624 if (*src != '~') /* environment var */
3626 tail = src + 1;
3627 var = dst;
3628 c = dstlen - 1;
3630 #ifdef UNIX
3631 /* Unix has ${var-name} type environment vars */
3632 if (*tail == '{' && !vim_isIDc('{'))
3634 tail++; /* ignore '{' */
3635 while (c-- > 0 && *tail && *tail != '}')
3636 *var++ = *tail++;
3638 else
3639 #endif
3641 while (c-- > 0 && *tail != NUL && ((vim_isIDc(*tail))
3642 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3643 || (*src == '%' && *tail != '%')
3644 #endif
3647 #ifdef OS2 /* env vars only in uppercase */
3648 *var++ = TOUPPER_LOC(*tail);
3649 tail++; /* toupper() may be a macro! */
3650 #else
3651 *var++ = *tail++;
3652 #endif
3656 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(UNIX)
3657 # ifdef UNIX
3658 if (src[1] == '{' && *tail != '}')
3659 # else
3660 if (*src == '%' && *tail != '%')
3661 # endif
3662 var = NULL;
3663 else
3665 # ifdef UNIX
3666 if (src[1] == '{')
3667 # else
3668 if (*src == '%')
3669 #endif
3670 ++tail;
3671 #endif
3672 *var = NUL;
3673 var = vim_getenv(dst, &mustfree);
3674 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(UNIX)
3676 #endif
3678 /* home directory */
3679 else if ( src[1] == NUL
3680 || vim_ispathsep(src[1])
3681 || vim_strchr((char_u *)" ,\t\n", src[1]) != NULL)
3683 var = homedir;
3684 tail = src + 1;
3686 else /* user directory */
3688 #if defined(UNIX) || (defined(VMS) && defined(USER_HOME))
3690 * Copy ~user to dst[], so we can put a NUL after it.
3692 tail = src;
3693 var = dst;
3694 c = dstlen - 1;
3695 while ( c-- > 0
3696 && *tail
3697 && vim_isfilec(*tail)
3698 && !vim_ispathsep(*tail))
3699 *var++ = *tail++;
3700 *var = NUL;
3701 # ifdef UNIX
3703 * If the system supports getpwnam(), use it.
3704 * Otherwise, or if getpwnam() fails, the shell is used to
3705 * expand ~user. This is slower and may fail if the shell
3706 * does not support ~user (old versions of /bin/sh).
3708 # if defined(HAVE_GETPWNAM) && defined(HAVE_PWD_H)
3710 struct passwd *pw;
3712 /* Note: memory allocated by getpwnam() is never freed.
3713 * Calling endpwent() apparently doesn't help. */
3714 pw = getpwnam((char *)dst + 1);
3715 if (pw != NULL)
3716 var = (char_u *)pw->pw_dir;
3717 else
3718 var = NULL;
3720 if (var == NULL)
3721 # endif
3723 expand_T xpc;
3725 ExpandInit(&xpc);
3726 xpc.xp_context = EXPAND_FILES;
3727 var = ExpandOne(&xpc, dst, NULL,
3728 WILD_ADD_SLASH|WILD_SILENT, WILD_EXPAND_FREE);
3729 mustfree = TRUE;
3732 # else /* !UNIX, thus VMS */
3734 * USER_HOME is a comma-separated list of
3735 * directories to search for the user account in.
3738 char_u test[MAXPATHL], paths[MAXPATHL];
3739 char_u *path, *next_path, *ptr;
3740 struct stat st;
3742 STRCPY(paths, USER_HOME);
3743 next_path = paths;
3744 while (*next_path)
3746 for (path = next_path; *next_path && *next_path != ',';
3747 next_path++);
3748 if (*next_path)
3749 *next_path++ = NUL;
3750 STRCPY(test, path);
3751 STRCAT(test, "/");
3752 STRCAT(test, dst + 1);
3753 if (mch_stat(test, &st) == 0)
3755 var = alloc(STRLEN(test) + 1);
3756 STRCPY(var, test);
3757 mustfree = TRUE;
3758 break;
3762 # endif /* UNIX */
3763 #else
3764 /* cannot expand user's home directory, so don't try */
3765 var = NULL;
3766 tail = (char_u *)""; /* for gcc */
3767 #endif /* UNIX || VMS */
3770 #ifdef BACKSLASH_IN_FILENAME
3771 /* If 'shellslash' is set change backslashes to forward slashes.
3772 * Can't use slash_adjust(), p_ssl may be set temporarily. */
3773 if (p_ssl && var != NULL && vim_strchr(var, '\\') != NULL)
3775 char_u *p = vim_strsave(var);
3777 if (p != NULL)
3779 if (mustfree)
3780 vim_free(var);
3781 var = p;
3782 mustfree = TRUE;
3783 forward_slash(var);
3786 #endif
3788 /* If "var" contains white space, escape it with a backslash.
3789 * Required for ":e ~/tt" when $HOME includes a space. */
3790 if (esc && var != NULL && vim_strpbrk(var, (char_u *)" \t") != NULL)
3792 char_u *p = vim_strsave_escaped(var, (char_u *)" \t");
3794 if (p != NULL)
3796 if (mustfree)
3797 vim_free(var);
3798 var = p;
3799 mustfree = TRUE;
3803 if (var != NULL && *var != NUL
3804 && (STRLEN(var) + STRLEN(tail) + 1 < (unsigned)dstlen))
3806 STRCPY(dst, var);
3807 dstlen -= (int)STRLEN(var);
3808 c = (int)STRLEN(var);
3809 /* if var[] ends in a path separator and tail[] starts
3810 * with it, skip a character */
3811 if (*var != NUL && after_pathsep(dst, dst + c)
3812 #if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA)
3813 && dst[-1] != ':'
3814 #endif
3815 && vim_ispathsep(*tail))
3816 ++tail;
3817 dst += c;
3818 src = tail;
3819 copy_char = FALSE;
3821 if (mustfree)
3822 vim_free(var);
3825 if (copy_char) /* copy at least one char */
3828 * Recognize the start of a new name, for '~'.
3829 * Don't do this when "one" is TRUE, to avoid expanding "~" in
3830 * ":edit foo ~ foo".
3832 at_start = FALSE;
3833 if (src[0] == '\\' && src[1] != NUL)
3835 *dst++ = *src++;
3836 --dstlen;
3838 else if ((src[0] == ' ' || src[0] == ',') && !one)
3839 at_start = TRUE;
3840 *dst++ = *src++;
3841 --dstlen;
3843 if (startstr != NULL && src - startstr_len >= srcp
3844 && STRNCMP(src - startstr_len, startstr, startstr_len) == 0)
3845 at_start = TRUE;
3848 *dst = NUL;
3852 * Vim's version of getenv().
3853 * Special handling of $HOME, $VIM and $VIMRUNTIME.
3854 * Also does ACP to 'enc' conversion for Win32.
3856 char_u *
3857 vim_getenv(name, mustfree)
3858 char_u *name;
3859 int *mustfree; /* set to TRUE when returned is allocated */
3861 char_u *p;
3862 char_u *pend;
3863 int vimruntime;
3865 #if defined(OS2) || defined(MSDOS) || defined(MSWIN)
3866 /* use "C:/" when $HOME is not set */
3867 if (STRCMP(name, "HOME") == 0)
3868 return homedir;
3869 #endif
3871 p = mch_getenv(name);
3872 if (p != NULL && *p == NUL) /* empty is the same as not set */
3873 p = NULL;
3875 if (p != NULL)
3877 #if defined(FEAT_MBYTE) && defined(WIN3264)
3878 if (enc_utf8)
3880 int len;
3881 char_u *pp;
3883 /* Convert from active codepage to UTF-8. Other conversions are
3884 * not done, because they would fail for non-ASCII characters. */
3885 acp_to_enc(p, (int)STRLEN(p), &pp, &len);
3886 if (pp != NULL)
3888 p = pp;
3889 *mustfree = TRUE;
3892 #endif
3893 return p;
3896 vimruntime = (STRCMP(name, "VIMRUNTIME") == 0);
3897 if (!vimruntime && STRCMP(name, "VIM") != 0)
3898 return NULL;
3901 * When expanding $VIMRUNTIME fails, try using $VIM/vim<version> or $VIM.
3902 * Don't do this when default_vimruntime_dir is non-empty.
3904 if (vimruntime
3905 #ifdef HAVE_PATHDEF
3906 && *default_vimruntime_dir == NUL
3907 #endif
3910 p = mch_getenv((char_u *)"VIM");
3911 if (p != NULL && *p == NUL) /* empty is the same as not set */
3912 p = NULL;
3913 if (p != NULL)
3915 p = vim_version_dir(p);
3916 if (p != NULL)
3917 *mustfree = TRUE;
3918 else
3919 p = mch_getenv((char_u *)"VIM");
3921 #if defined(FEAT_MBYTE) && defined(WIN3264)
3922 if (enc_utf8)
3924 int len;
3925 char_u *pp;
3927 /* Convert from active codepage to UTF-8. Other conversions
3928 * are not done, because they would fail for non-ASCII
3929 * characters. */
3930 acp_to_enc(p, (int)STRLEN(p), &pp, &len);
3931 if (pp != NULL)
3933 if (mustfree)
3934 vim_free(p);
3935 p = pp;
3936 *mustfree = TRUE;
3939 #endif
3944 * When expanding $VIM or $VIMRUNTIME fails, try using:
3945 * - the directory name from 'helpfile' (unless it contains '$')
3946 * - the executable name from argv[0]
3948 if (p == NULL)
3950 if (p_hf != NULL && vim_strchr(p_hf, '$') == NULL)
3951 p = p_hf;
3952 #ifdef USE_EXE_NAME
3954 * Use the name of the executable, obtained from argv[0].
3956 else
3957 p = exe_name;
3958 #endif
3959 if (p != NULL)
3961 /* remove the file name */
3962 pend = gettail(p);
3964 /* remove "doc/" from 'helpfile', if present */
3965 if (p == p_hf)
3966 pend = remove_tail(p, pend, (char_u *)"doc");
3968 #ifdef USE_EXE_NAME
3969 # ifdef MACOS_X
3970 /* remove "MacOS" from exe_name and add "Resources/vim" */
3971 if (p == exe_name)
3973 char_u *pend1;
3974 char_u *pnew;
3976 pend1 = remove_tail(p, pend, (char_u *)"MacOS");
3977 if (pend1 != pend)
3979 pnew = alloc((unsigned)(pend1 - p) + 15);
3980 if (pnew != NULL)
3982 STRNCPY(pnew, p, (pend1 - p));
3983 STRCPY(pnew + (pend1 - p), "Resources/vim");
3984 p = pnew;
3985 pend = p + STRLEN(p);
3989 # endif
3990 /* remove "src/" from exe_name, if present */
3991 if (p == exe_name)
3992 pend = remove_tail(p, pend, (char_u *)"src");
3993 #endif
3995 /* for $VIM, remove "runtime/" or "vim54/", if present */
3996 if (!vimruntime)
3998 pend = remove_tail(p, pend, (char_u *)RUNTIME_DIRNAME);
3999 pend = remove_tail(p, pend, (char_u *)VIM_VERSION_NODOT);
4002 /* remove trailing path separator */
4003 #ifndef MACOS_CLASSIC
4004 /* With MacOS path (with colons) the final colon is required */
4005 /* to avoid confusion between absolute and relative path */
4006 if (pend > p && after_pathsep(p, pend))
4007 --pend;
4008 #endif
4010 #ifdef MACOS_X
4011 if (p == exe_name || p == p_hf)
4012 #endif
4013 /* check that the result is a directory name */
4014 p = vim_strnsave(p, (int)(pend - p));
4016 if (p != NULL && !mch_isdir(p))
4018 vim_free(p);
4019 p = NULL;
4021 else
4023 #ifdef USE_EXE_NAME
4024 /* may add "/vim54" or "/runtime" if it exists */
4025 if (vimruntime && (pend = vim_version_dir(p)) != NULL)
4027 vim_free(p);
4028 p = pend;
4030 #endif
4031 *mustfree = TRUE;
4036 #ifdef HAVE_PATHDEF
4037 /* When there is a pathdef.c file we can use default_vim_dir and
4038 * default_vimruntime_dir */
4039 if (p == NULL)
4041 /* Only use default_vimruntime_dir when it is not empty */
4042 if (vimruntime && *default_vimruntime_dir != NUL)
4044 p = default_vimruntime_dir;
4045 *mustfree = FALSE;
4047 else if (*default_vim_dir != NUL)
4049 if (vimruntime && (p = vim_version_dir(default_vim_dir)) != NULL)
4050 *mustfree = TRUE;
4051 else
4053 p = default_vim_dir;
4054 *mustfree = FALSE;
4058 #endif
4061 * Set the environment variable, so that the new value can be found fast
4062 * next time, and others can also use it (e.g. Perl).
4064 if (p != NULL)
4066 if (vimruntime)
4068 vim_setenv((char_u *)"VIMRUNTIME", p);
4069 didset_vimruntime = TRUE;
4070 #ifdef FEAT_GETTEXT
4072 char_u *buf = concat_str(p, (char_u *)"/lang");
4074 if (buf != NULL)
4076 bindtextdomain(VIMPACKAGE, (char *)buf);
4077 vim_free(buf);
4080 #endif
4082 else
4084 vim_setenv((char_u *)"VIM", p);
4085 didset_vim = TRUE;
4088 return p;
4092 * Check if the directory "vimdir/<version>" or "vimdir/runtime" exists.
4093 * Return NULL if not, return its name in allocated memory otherwise.
4095 static char_u *
4096 vim_version_dir(vimdir)
4097 char_u *vimdir;
4099 char_u *p;
4101 if (vimdir == NULL || *vimdir == NUL)
4102 return NULL;
4103 p = concat_fnames(vimdir, (char_u *)VIM_VERSION_NODOT, TRUE);
4104 if (p != NULL && mch_isdir(p))
4105 return p;
4106 vim_free(p);
4107 p = concat_fnames(vimdir, (char_u *)RUNTIME_DIRNAME, TRUE);
4108 if (p != NULL && mch_isdir(p))
4109 return p;
4110 vim_free(p);
4111 return NULL;
4115 * If the string between "p" and "pend" ends in "name/", return "pend" minus
4116 * the length of "name/". Otherwise return "pend".
4118 static char_u *
4119 remove_tail(p, pend, name)
4120 char_u *p;
4121 char_u *pend;
4122 char_u *name;
4124 int len = (int)STRLEN(name) + 1;
4125 char_u *newend = pend - len;
4127 if (newend >= p
4128 && fnamencmp(newend, name, len - 1) == 0
4129 && (newend == p || after_pathsep(p, newend)))
4130 return newend;
4131 return pend;
4135 * Our portable version of setenv.
4137 void
4138 vim_setenv(name, val)
4139 char_u *name;
4140 char_u *val;
4142 #ifdef HAVE_SETENV
4143 mch_setenv((char *)name, (char *)val, 1);
4144 #else
4145 char_u *envbuf;
4148 * Putenv does not copy the string, it has to remain
4149 * valid. The allocated memory will never be freed.
4151 envbuf = alloc((unsigned)(STRLEN(name) + STRLEN(val) + 2));
4152 if (envbuf != NULL)
4154 sprintf((char *)envbuf, "%s=%s", name, val);
4155 putenv((char *)envbuf);
4157 #endif
4160 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4162 * Function given to ExpandGeneric() to obtain an environment variable name.
4164 char_u *
4165 get_env_name(xp, idx)
4166 expand_T *xp UNUSED;
4167 int idx;
4169 # if defined(AMIGA) || defined(__MRC__) || defined(__SC__)
4171 * No environ[] on the Amiga and on the Mac (using MPW).
4173 return NULL;
4174 # else
4175 # ifndef __WIN32__
4176 /* Borland C++ 5.2 has this in a header file. */
4177 extern char **environ;
4178 # endif
4179 # define ENVNAMELEN 100
4180 static char_u name[ENVNAMELEN];
4181 char_u *str;
4182 int n;
4184 str = (char_u *)environ[idx];
4185 if (str == NULL)
4186 return NULL;
4188 for (n = 0; n < ENVNAMELEN - 1; ++n)
4190 if (str[n] == '=' || str[n] == NUL)
4191 break;
4192 name[n] = str[n];
4194 name[n] = NUL;
4195 return name;
4196 # endif
4198 #endif
4201 * Replace home directory by "~" in each space or comma separated file name in
4202 * 'src'.
4203 * If anything fails (except when out of space) dst equals src.
4205 void
4206 home_replace(buf, src, dst, dstlen, one)
4207 buf_T *buf; /* when not NULL, check for help files */
4208 char_u *src; /* input file name */
4209 char_u *dst; /* where to put the result */
4210 int dstlen; /* maximum length of the result */
4211 int one; /* if TRUE, only replace one file name, include
4212 spaces and commas in the file name. */
4214 size_t dirlen = 0, envlen = 0;
4215 size_t len;
4216 char_u *homedir_env;
4217 char_u *p;
4219 if (src == NULL)
4221 *dst = NUL;
4222 return;
4226 * If the file is a help file, remove the path completely.
4228 if (buf != NULL && buf->b_help)
4230 STRCPY(dst, gettail(src));
4231 return;
4235 * We check both the value of the $HOME environment variable and the
4236 * "real" home directory.
4238 if (homedir != NULL)
4239 dirlen = STRLEN(homedir);
4241 #ifdef VMS
4242 homedir_env = mch_getenv((char_u *)"SYS$LOGIN");
4243 #else
4244 homedir_env = mch_getenv((char_u *)"HOME");
4245 #endif
4247 if (homedir_env != NULL && *homedir_env == NUL)
4248 homedir_env = NULL;
4249 if (homedir_env != NULL)
4250 envlen = STRLEN(homedir_env);
4252 if (!one)
4253 src = skipwhite(src);
4254 while (*src && dstlen > 0)
4257 * Here we are at the beginning of a file name.
4258 * First, check to see if the beginning of the file name matches
4259 * $HOME or the "real" home directory. Check that there is a '/'
4260 * after the match (so that if e.g. the file is "/home/pieter/bla",
4261 * and the home directory is "/home/piet", the file does not end up
4262 * as "~er/bla" (which would seem to indicate the file "bla" in user
4263 * er's home directory)).
4265 p = homedir;
4266 len = dirlen;
4267 for (;;)
4269 if ( len
4270 && fnamencmp(src, p, len) == 0
4271 && (vim_ispathsep(src[len])
4272 || (!one && (src[len] == ',' || src[len] == ' '))
4273 || src[len] == NUL))
4275 src += len;
4276 if (--dstlen > 0)
4277 *dst++ = '~';
4280 * If it's just the home directory, add "/".
4282 if (!vim_ispathsep(src[0]) && --dstlen > 0)
4283 *dst++ = '/';
4284 break;
4286 if (p == homedir_env)
4287 break;
4288 p = homedir_env;
4289 len = envlen;
4292 /* if (!one) skip to separator: space or comma */
4293 while (*src && (one || (*src != ',' && *src != ' ')) && --dstlen > 0)
4294 *dst++ = *src++;
4295 /* skip separator */
4296 while ((*src == ' ' || *src == ',') && --dstlen > 0)
4297 *dst++ = *src++;
4299 /* if (dstlen == 0) out of space, what to do??? */
4301 *dst = NUL;
4305 * Like home_replace, store the replaced string in allocated memory.
4306 * When something fails, NULL is returned.
4308 char_u *
4309 home_replace_save(buf, src)
4310 buf_T *buf; /* when not NULL, check for help files */
4311 char_u *src; /* input file name */
4313 char_u *dst;
4314 unsigned len;
4316 len = 3; /* space for "~/" and trailing NUL */
4317 if (src != NULL) /* just in case */
4318 len += (unsigned)STRLEN(src);
4319 dst = alloc(len);
4320 if (dst != NULL)
4321 home_replace(buf, src, dst, len, TRUE);
4322 return dst;
4326 * Compare two file names and return:
4327 * FPC_SAME if they both exist and are the same file.
4328 * FPC_SAMEX if they both don't exist and have the same file name.
4329 * FPC_DIFF if they both exist and are different files.
4330 * FPC_NOTX if they both don't exist.
4331 * FPC_DIFFX if one of them doesn't exist.
4332 * For the first name environment variables are expanded
4335 fullpathcmp(s1, s2, checkname)
4336 char_u *s1, *s2;
4337 int checkname; /* when both don't exist, check file names */
4339 #ifdef UNIX
4340 char_u exp1[MAXPATHL];
4341 char_u full1[MAXPATHL];
4342 char_u full2[MAXPATHL];
4343 struct stat st1, st2;
4344 int r1, r2;
4346 expand_env(s1, exp1, MAXPATHL);
4347 r1 = mch_stat((char *)exp1, &st1);
4348 r2 = mch_stat((char *)s2, &st2);
4349 if (r1 != 0 && r2 != 0)
4351 /* if mch_stat() doesn't work, may compare the names */
4352 if (checkname)
4354 if (fnamecmp(exp1, s2) == 0)
4355 return FPC_SAMEX;
4356 r1 = vim_FullName(exp1, full1, MAXPATHL, FALSE);
4357 r2 = vim_FullName(s2, full2, MAXPATHL, FALSE);
4358 if (r1 == OK && r2 == OK && fnamecmp(full1, full2) == 0)
4359 return FPC_SAMEX;
4361 return FPC_NOTX;
4363 if (r1 != 0 || r2 != 0)
4364 return FPC_DIFFX;
4365 if (st1.st_dev == st2.st_dev && st1.st_ino == st2.st_ino)
4366 return FPC_SAME;
4367 return FPC_DIFF;
4368 #else
4369 char_u *exp1; /* expanded s1 */
4370 char_u *full1; /* full path of s1 */
4371 char_u *full2; /* full path of s2 */
4372 int retval = FPC_DIFF;
4373 int r1, r2;
4375 /* allocate one buffer to store three paths (alloc()/free() is slow!) */
4376 if ((exp1 = alloc(MAXPATHL * 3)) != NULL)
4378 full1 = exp1 + MAXPATHL;
4379 full2 = full1 + MAXPATHL;
4381 expand_env(s1, exp1, MAXPATHL);
4382 r1 = vim_FullName(exp1, full1, MAXPATHL, FALSE);
4383 r2 = vim_FullName(s2, full2, MAXPATHL, FALSE);
4385 /* If vim_FullName() fails, the file probably doesn't exist. */
4386 if (r1 != OK && r2 != OK)
4388 if (checkname && fnamecmp(exp1, s2) == 0)
4389 retval = FPC_SAMEX;
4390 else
4391 retval = FPC_NOTX;
4393 else if (r1 != OK || r2 != OK)
4394 retval = FPC_DIFFX;
4395 else if (fnamecmp(full1, full2))
4396 retval = FPC_DIFF;
4397 else
4398 retval = FPC_SAME;
4399 vim_free(exp1);
4401 return retval;
4402 #endif
4406 * Get the tail of a path: the file name.
4407 * Fail safe: never returns NULL.
4409 char_u *
4410 gettail(fname)
4411 char_u *fname;
4413 char_u *p1, *p2;
4415 if (fname == NULL)
4416 return (char_u *)"";
4417 for (p1 = p2 = fname; *p2; ) /* find last part of path */
4419 if (vim_ispathsep(*p2))
4420 p1 = p2 + 1;
4421 mb_ptr_adv(p2);
4423 return p1;
4427 * Get pointer to tail of "fname", including path separators. Putting a NUL
4428 * here leaves the directory name. Takes care of "c:/" and "//".
4429 * Always returns a valid pointer.
4431 char_u *
4432 gettail_sep(fname)
4433 char_u *fname;
4435 char_u *p;
4436 char_u *t;
4438 p = get_past_head(fname); /* don't remove the '/' from "c:/file" */
4439 t = gettail(fname);
4440 while (t > p && after_pathsep(fname, t))
4441 --t;
4442 #ifdef VMS
4443 /* path separator is part of the path */
4444 ++t;
4445 #endif
4446 return t;
4450 * get the next path component (just after the next path separator).
4452 char_u *
4453 getnextcomp(fname)
4454 char_u *fname;
4456 while (*fname && !vim_ispathsep(*fname))
4457 mb_ptr_adv(fname);
4458 if (*fname)
4459 ++fname;
4460 return fname;
4464 * Get a pointer to one character past the head of a path name.
4465 * Unix: after "/"; DOS: after "c:\"; Amiga: after "disk:/"; Mac: no head.
4466 * If there is no head, path is returned.
4468 char_u *
4469 get_past_head(path)
4470 char_u *path;
4472 char_u *retval;
4474 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
4475 /* may skip "c:" */
4476 if (isalpha(path[0]) && path[1] == ':')
4477 retval = path + 2;
4478 else
4479 retval = path;
4480 #else
4481 # if defined(AMIGA)
4482 /* may skip "label:" */
4483 retval = vim_strchr(path, ':');
4484 if (retval == NULL)
4485 retval = path;
4486 # else /* Unix */
4487 retval = path;
4488 # endif
4489 #endif
4491 while (vim_ispathsep(*retval))
4492 ++retval;
4494 return retval;
4498 * return TRUE if 'c' is a path separator.
4501 vim_ispathsep(c)
4502 int c;
4504 #ifdef RISCOS
4505 return (c == '.' || c == ':');
4506 #else
4507 # ifdef UNIX
4508 return (c == '/'); /* UNIX has ':' inside file names */
4509 # else
4510 # ifdef BACKSLASH_IN_FILENAME
4511 return (c == ':' || c == '/' || c == '\\');
4512 # else
4513 # ifdef VMS
4514 /* server"user passwd"::device:[full.path.name]fname.extension;version" */
4515 return (c == ':' || c == '[' || c == ']' || c == '/'
4516 || c == '<' || c == '>' || c == '"' );
4517 # else /* Amiga */
4518 return (c == ':' || c == '/');
4519 # endif /* VMS */
4520 # endif
4521 # endif
4522 #endif /* RISC OS */
4525 #if defined(FEAT_SEARCHPATH) || defined(PROTO)
4527 * return TRUE if 'c' is a path list separator.
4530 vim_ispathlistsep(c)
4531 int c;
4533 #ifdef UNIX
4534 return (c == ':');
4535 #else
4536 return (c == ';'); /* might not be right for every system... */
4537 #endif
4539 #endif
4541 #if defined(FEAT_GUI_TABLINE) || defined(FEAT_WINDOWS) \
4542 || defined(FEAT_EVAL) || defined(PROTO)
4544 * Shorten the path of a file from "~/foo/../.bar/fname" to "~/f/../.b/fname"
4545 * It's done in-place.
4547 void
4548 shorten_dir(str)
4549 char_u *str;
4551 char_u *tail, *s, *d;
4552 int skip = FALSE;
4554 tail = gettail(str);
4555 d = str;
4556 for (s = str; ; ++s)
4558 if (s >= tail) /* copy the whole tail */
4560 *d++ = *s;
4561 if (*s == NUL)
4562 break;
4564 else if (vim_ispathsep(*s)) /* copy '/' and next char */
4566 *d++ = *s;
4567 skip = FALSE;
4569 else if (!skip)
4571 *d++ = *s; /* copy next char */
4572 if (*s != '~' && *s != '.') /* and leading "~" and "." */
4573 skip = TRUE;
4574 # ifdef FEAT_MBYTE
4575 if (has_mbyte)
4577 int l = mb_ptr2len(s);
4579 while (--l > 0)
4580 *d++ = *++s;
4582 # endif
4586 #endif
4589 * Return TRUE if the directory of "fname" exists, FALSE otherwise.
4590 * Also returns TRUE if there is no directory name.
4591 * "fname" must be writable!.
4594 dir_of_file_exists(fname)
4595 char_u *fname;
4597 char_u *p;
4598 int c;
4599 int retval;
4601 p = gettail_sep(fname);
4602 if (p == fname)
4603 return TRUE;
4604 c = *p;
4605 *p = NUL;
4606 retval = mch_isdir(fname);
4607 *p = c;
4608 return retval;
4611 #if (defined(CASE_INSENSITIVE_FILENAME) && defined(BACKSLASH_IN_FILENAME)) \
4612 || defined(PROTO)
4614 * Versions of fnamecmp() and fnamencmp() that handle '/' and '\' equally.
4617 vim_fnamecmp(x, y)
4618 char_u *x, *y;
4620 return vim_fnamencmp(x, y, MAXPATHL);
4624 vim_fnamencmp(x, y, len)
4625 char_u *x, *y;
4626 size_t len;
4628 while (len > 0 && *x && *y)
4630 if (TOLOWER_LOC(*x) != TOLOWER_LOC(*y)
4631 && !(*x == '/' && *y == '\\')
4632 && !(*x == '\\' && *y == '/'))
4633 break;
4634 ++x;
4635 ++y;
4636 --len;
4638 if (len == 0)
4639 return 0;
4640 return (*x - *y);
4642 #endif
4645 * Concatenate file names fname1 and fname2 into allocated memory.
4646 * Only add a '/' or '\\' when 'sep' is TRUE and it is necessary.
4648 char_u *
4649 concat_fnames(fname1, fname2, sep)
4650 char_u *fname1;
4651 char_u *fname2;
4652 int sep;
4654 char_u *dest;
4656 dest = alloc((unsigned)(STRLEN(fname1) + STRLEN(fname2) + 3));
4657 if (dest != NULL)
4659 STRCPY(dest, fname1);
4660 if (sep)
4661 add_pathsep(dest);
4662 STRCAT(dest, fname2);
4664 return dest;
4667 #if defined(FEAT_EVAL) || defined(FEAT_GETTEXT) || defined(PROTO)
4669 * Concatenate two strings and return the result in allocated memory.
4670 * Returns NULL when out of memory.
4672 char_u *
4673 concat_str(str1, str2)
4674 char_u *str1;
4675 char_u *str2;
4677 char_u *dest;
4678 size_t l = STRLEN(str1);
4680 dest = alloc((unsigned)(l + STRLEN(str2) + 1L));
4681 if (dest != NULL)
4683 STRCPY(dest, str1);
4684 STRCPY(dest + l, str2);
4686 return dest;
4688 #endif
4691 * Add a path separator to a file name, unless it already ends in a path
4692 * separator.
4694 void
4695 add_pathsep(p)
4696 char_u *p;
4698 if (*p != NUL && !after_pathsep(p, p + STRLEN(p)))
4699 STRCAT(p, PATHSEPSTR);
4703 * FullName_save - Make an allocated copy of a full file name.
4704 * Returns NULL when out of memory.
4706 char_u *
4707 FullName_save(fname, force)
4708 char_u *fname;
4709 int force; /* force expansion, even when it already looks
4710 like a full path name */
4712 char_u *buf;
4713 char_u *new_fname = NULL;
4715 if (fname == NULL)
4716 return NULL;
4718 buf = alloc((unsigned)MAXPATHL);
4719 if (buf != NULL)
4721 if (vim_FullName(fname, buf, MAXPATHL, force) != FAIL)
4722 new_fname = vim_strsave(buf);
4723 else
4724 new_fname = vim_strsave(fname);
4725 vim_free(buf);
4727 return new_fname;
4730 #if defined(FEAT_CINDENT) || defined(FEAT_SYN_HL)
4732 static char_u *skip_string __ARGS((char_u *p));
4735 * Find the start of a comment, not knowing if we are in a comment right now.
4736 * Search starts at w_cursor.lnum and goes backwards.
4738 pos_T *
4739 find_start_comment(ind_maxcomment) /* XXX */
4740 int ind_maxcomment;
4742 pos_T *pos;
4743 char_u *line;
4744 char_u *p;
4745 int cur_maxcomment = ind_maxcomment;
4747 for (;;)
4749 pos = findmatchlimit(NULL, '*', FM_BACKWARD, cur_maxcomment);
4750 if (pos == NULL)
4751 break;
4754 * Check if the comment start we found is inside a string.
4755 * If it is then restrict the search to below this line and try again.
4757 line = ml_get(pos->lnum);
4758 for (p = line; *p && (colnr_T)(p - line) < pos->col; ++p)
4759 p = skip_string(p);
4760 if ((colnr_T)(p - line) <= pos->col)
4761 break;
4762 cur_maxcomment = curwin->w_cursor.lnum - pos->lnum - 1;
4763 if (cur_maxcomment <= 0)
4765 pos = NULL;
4766 break;
4769 return pos;
4773 * Skip to the end of a "string" and a 'c' character.
4774 * If there is no string or character, return argument unmodified.
4776 static char_u *
4777 skip_string(p)
4778 char_u *p;
4780 int i;
4783 * We loop, because strings may be concatenated: "date""time".
4785 for ( ; ; ++p)
4787 if (p[0] == '\'') /* 'c' or '\n' or '\000' */
4789 if (!p[1]) /* ' at end of line */
4790 break;
4791 i = 2;
4792 if (p[1] == '\\') /* '\n' or '\000' */
4794 ++i;
4795 while (vim_isdigit(p[i - 1])) /* '\000' */
4796 ++i;
4798 if (p[i] == '\'') /* check for trailing ' */
4800 p += i;
4801 continue;
4804 else if (p[0] == '"') /* start of string */
4806 for (++p; p[0]; ++p)
4808 if (p[0] == '\\' && p[1] != NUL)
4809 ++p;
4810 else if (p[0] == '"') /* end of string */
4811 break;
4813 if (p[0] == '"')
4814 continue;
4816 break; /* no string found */
4818 if (!*p)
4819 --p; /* backup from NUL */
4820 return p;
4822 #endif /* FEAT_CINDENT || FEAT_SYN_HL */
4824 #if defined(FEAT_CINDENT) || defined(PROTO)
4827 * Do C or expression indenting on the current line.
4829 void
4830 do_c_expr_indent()
4832 # ifdef FEAT_EVAL
4833 if (*curbuf->b_p_inde != NUL)
4834 fixthisline(get_expr_indent);
4835 else
4836 # endif
4837 fixthisline(get_c_indent);
4841 * Functions for C-indenting.
4842 * Most of this originally comes from Eric Fischer.
4845 * Below "XXX" means that this function may unlock the current line.
4848 static char_u *cin_skipcomment __ARGS((char_u *));
4849 static int cin_nocode __ARGS((char_u *));
4850 static pos_T *find_line_comment __ARGS((void));
4851 static int cin_islabel_skip __ARGS((char_u **));
4852 static int cin_isdefault __ARGS((char_u *));
4853 static char_u *after_label __ARGS((char_u *l));
4854 static int get_indent_nolabel __ARGS((linenr_T lnum));
4855 static int skip_label __ARGS((linenr_T, char_u **pp, int ind_maxcomment));
4856 static int cin_first_id_amount __ARGS((void));
4857 static int cin_get_equal_amount __ARGS((linenr_T lnum));
4858 static int cin_ispreproc __ARGS((char_u *));
4859 static int cin_ispreproc_cont __ARGS((char_u **pp, linenr_T *lnump));
4860 static int cin_iscomment __ARGS((char_u *));
4861 static int cin_islinecomment __ARGS((char_u *));
4862 static int cin_isterminated __ARGS((char_u *, int, int));
4863 static int cin_isinit __ARGS((void));
4864 static int cin_isfuncdecl __ARGS((char_u **, linenr_T));
4865 static int cin_isif __ARGS((char_u *));
4866 static int cin_iselse __ARGS((char_u *));
4867 static int cin_isdo __ARGS((char_u *));
4868 static int cin_iswhileofdo __ARGS((char_u *, linenr_T, int));
4869 static int cin_iswhileofdo_end __ARGS((int terminated, int ind_maxparen, int ind_maxcomment));
4870 static int cin_isbreak __ARGS((char_u *));
4871 static int cin_is_cpp_baseclass __ARGS((colnr_T *col));
4872 static int get_baseclass_amount __ARGS((int col, int ind_maxparen, int ind_maxcomment, int ind_cpp_baseclass));
4873 static int cin_ends_in __ARGS((char_u *, char_u *, char_u *));
4874 static int cin_skip2pos __ARGS((pos_T *trypos));
4875 static pos_T *find_start_brace __ARGS((int));
4876 static pos_T *find_match_paren __ARGS((int, int));
4877 static int corr_ind_maxparen __ARGS((int ind_maxparen, pos_T *startpos));
4878 static int find_last_paren __ARGS((char_u *l, int start, int end));
4879 static int find_match __ARGS((int lookfor, linenr_T ourscope, int ind_maxparen, int ind_maxcomment));
4881 static int ind_hash_comment = 0; /* # starts a comment */
4884 * Skip over white space and C comments within the line.
4885 * Also skip over Perl/shell comments if desired.
4887 static char_u *
4888 cin_skipcomment(s)
4889 char_u *s;
4891 while (*s)
4893 char_u *prev_s = s;
4895 s = skipwhite(s);
4897 /* Perl/shell # comment comment continues until eol. Require a space
4898 * before # to avoid recognizing $#array. */
4899 if (ind_hash_comment != 0 && s != prev_s && *s == '#')
4901 s += STRLEN(s);
4902 break;
4904 if (*s != '/')
4905 break;
4906 ++s;
4907 if (*s == '/') /* slash-slash comment continues till eol */
4909 s += STRLEN(s);
4910 break;
4912 if (*s != '*')
4913 break;
4914 for (++s; *s; ++s) /* skip slash-star comment */
4915 if (s[0] == '*' && s[1] == '/')
4917 s += 2;
4918 break;
4921 return s;
4925 * Return TRUE if there there is no code at *s. White space and comments are
4926 * not considered code.
4928 static int
4929 cin_nocode(s)
4930 char_u *s;
4932 return *cin_skipcomment(s) == NUL;
4936 * Check previous lines for a "//" line comment, skipping over blank lines.
4938 static pos_T *
4939 find_line_comment() /* XXX */
4941 static pos_T pos;
4942 char_u *line;
4943 char_u *p;
4945 pos = curwin->w_cursor;
4946 while (--pos.lnum > 0)
4948 line = ml_get(pos.lnum);
4949 p = skipwhite(line);
4950 if (cin_islinecomment(p))
4952 pos.col = (int)(p - line);
4953 return &pos;
4955 if (*p != NUL)
4956 break;
4958 return NULL;
4962 * Check if string matches "label:"; move to character after ':' if true.
4964 static int
4965 cin_islabel_skip(s)
4966 char_u **s;
4968 if (!vim_isIDc(**s)) /* need at least one ID character */
4969 return FALSE;
4971 while (vim_isIDc(**s))
4972 (*s)++;
4974 *s = cin_skipcomment(*s);
4976 /* "::" is not a label, it's C++ */
4977 return (**s == ':' && *++*s != ':');
4981 * Recognize a label: "label:".
4982 * Note: curwin->w_cursor must be where we are looking for the label.
4985 cin_islabel(ind_maxcomment) /* XXX */
4986 int ind_maxcomment;
4988 char_u *s;
4990 s = cin_skipcomment(ml_get_curline());
4993 * Exclude "default" from labels, since it should be indented
4994 * like a switch label. Same for C++ scope declarations.
4996 if (cin_isdefault(s))
4997 return FALSE;
4998 if (cin_isscopedecl(s))
4999 return FALSE;
5001 if (cin_islabel_skip(&s))
5004 * Only accept a label if the previous line is terminated or is a case
5005 * label.
5007 pos_T cursor_save;
5008 pos_T *trypos;
5009 char_u *line;
5011 cursor_save = curwin->w_cursor;
5012 while (curwin->w_cursor.lnum > 1)
5014 --curwin->w_cursor.lnum;
5017 * If we're in a comment now, skip to the start of the comment.
5019 curwin->w_cursor.col = 0;
5020 if ((trypos = find_start_comment(ind_maxcomment)) != NULL) /* XXX */
5021 curwin->w_cursor = *trypos;
5023 line = ml_get_curline();
5024 if (cin_ispreproc(line)) /* ignore #defines, #if, etc. */
5025 continue;
5026 if (*(line = cin_skipcomment(line)) == NUL)
5027 continue;
5029 curwin->w_cursor = cursor_save;
5030 if (cin_isterminated(line, TRUE, FALSE)
5031 || cin_isscopedecl(line)
5032 || cin_iscase(line)
5033 || (cin_islabel_skip(&line) && cin_nocode(line)))
5034 return TRUE;
5035 return FALSE;
5037 curwin->w_cursor = cursor_save;
5038 return TRUE; /* label at start of file??? */
5040 return FALSE;
5044 * Recognize structure initialization and enumerations.
5045 * Q&D-Implementation:
5046 * check for "=" at end or "[typedef] enum" at beginning of line.
5048 static int
5049 cin_isinit(void)
5051 char_u *s;
5053 s = cin_skipcomment(ml_get_curline());
5055 if (STRNCMP(s, "typedef", 7) == 0 && !vim_isIDc(s[7]))
5056 s = cin_skipcomment(s + 7);
5058 if (STRNCMP(s, "enum", 4) == 0 && !vim_isIDc(s[4]))
5059 return TRUE;
5061 if (cin_ends_in(s, (char_u *)"=", (char_u *)"{"))
5062 return TRUE;
5064 return FALSE;
5068 * Recognize a switch label: "case .*:" or "default:".
5071 cin_iscase(s)
5072 char_u *s;
5074 s = cin_skipcomment(s);
5075 if (STRNCMP(s, "case", 4) == 0 && !vim_isIDc(s[4]))
5077 for (s += 4; *s; ++s)
5079 s = cin_skipcomment(s);
5080 if (*s == ':')
5082 if (s[1] == ':') /* skip over "::" for C++ */
5083 ++s;
5084 else
5085 return TRUE;
5087 if (*s == '\'' && s[1] && s[2] == '\'')
5088 s += 2; /* skip over '.' */
5089 else if (*s == '/' && (s[1] == '*' || s[1] == '/'))
5090 return FALSE; /* stop at comment */
5091 else if (*s == '"')
5092 return FALSE; /* stop at string */
5094 return FALSE;
5097 if (cin_isdefault(s))
5098 return TRUE;
5099 return FALSE;
5103 * Recognize a "default" switch label.
5105 static int
5106 cin_isdefault(s)
5107 char_u *s;
5109 return (STRNCMP(s, "default", 7) == 0
5110 && *(s = cin_skipcomment(s + 7)) == ':'
5111 && s[1] != ':');
5115 * Recognize a "public/private/proctected" scope declaration label.
5118 cin_isscopedecl(s)
5119 char_u *s;
5121 int i;
5123 s = cin_skipcomment(s);
5124 if (STRNCMP(s, "public", 6) == 0)
5125 i = 6;
5126 else if (STRNCMP(s, "protected", 9) == 0)
5127 i = 9;
5128 else if (STRNCMP(s, "private", 7) == 0)
5129 i = 7;
5130 else
5131 return FALSE;
5132 return (*(s = cin_skipcomment(s + i)) == ':' && s[1] != ':');
5136 * Return a pointer to the first non-empty non-comment character after a ':'.
5137 * Return NULL if not found.
5138 * case 234: a = b;
5141 static char_u *
5142 after_label(l)
5143 char_u *l;
5145 for ( ; *l; ++l)
5147 if (*l == ':')
5149 if (l[1] == ':') /* skip over "::" for C++ */
5150 ++l;
5151 else if (!cin_iscase(l + 1))
5152 break;
5154 else if (*l == '\'' && l[1] && l[2] == '\'')
5155 l += 2; /* skip over 'x' */
5157 if (*l == NUL)
5158 return NULL;
5159 l = cin_skipcomment(l + 1);
5160 if (*l == NUL)
5161 return NULL;
5162 return l;
5166 * Get indent of line "lnum", skipping a label.
5167 * Return 0 if there is nothing after the label.
5169 static int
5170 get_indent_nolabel(lnum) /* XXX */
5171 linenr_T lnum;
5173 char_u *l;
5174 pos_T fp;
5175 colnr_T col;
5176 char_u *p;
5178 l = ml_get(lnum);
5179 p = after_label(l);
5180 if (p == NULL)
5181 return 0;
5183 fp.col = (colnr_T)(p - l);
5184 fp.lnum = lnum;
5185 getvcol(curwin, &fp, &col, NULL, NULL);
5186 return (int)col;
5190 * Find indent for line "lnum", ignoring any case or jump label.
5191 * Also return a pointer to the text (after the label) in "pp".
5192 * label: if (asdf && asdfasdf)
5195 static int
5196 skip_label(lnum, pp, ind_maxcomment)
5197 linenr_T lnum;
5198 char_u **pp;
5199 int ind_maxcomment;
5201 char_u *l;
5202 int amount;
5203 pos_T cursor_save;
5205 cursor_save = curwin->w_cursor;
5206 curwin->w_cursor.lnum = lnum;
5207 l = ml_get_curline();
5208 /* XXX */
5209 if (cin_iscase(l) || cin_isscopedecl(l) || cin_islabel(ind_maxcomment))
5211 amount = get_indent_nolabel(lnum);
5212 l = after_label(ml_get_curline());
5213 if (l == NULL) /* just in case */
5214 l = ml_get_curline();
5216 else
5218 amount = get_indent();
5219 l = ml_get_curline();
5221 *pp = l;
5223 curwin->w_cursor = cursor_save;
5224 return amount;
5228 * Return the indent of the first variable name after a type in a declaration.
5229 * int a, indent of "a"
5230 * static struct foo b, indent of "b"
5231 * enum bla c, indent of "c"
5232 * Returns zero when it doesn't look like a declaration.
5234 static int
5235 cin_first_id_amount()
5237 char_u *line, *p, *s;
5238 int len;
5239 pos_T fp;
5240 colnr_T col;
5242 line = ml_get_curline();
5243 p = skipwhite(line);
5244 len = (int)(skiptowhite(p) - p);
5245 if (len == 6 && STRNCMP(p, "static", 6) == 0)
5247 p = skipwhite(p + 6);
5248 len = (int)(skiptowhite(p) - p);
5250 if (len == 6 && STRNCMP(p, "struct", 6) == 0)
5251 p = skipwhite(p + 6);
5252 else if (len == 4 && STRNCMP(p, "enum", 4) == 0)
5253 p = skipwhite(p + 4);
5254 else if ((len == 8 && STRNCMP(p, "unsigned", 8) == 0)
5255 || (len == 6 && STRNCMP(p, "signed", 6) == 0))
5257 s = skipwhite(p + len);
5258 if ((STRNCMP(s, "int", 3) == 0 && vim_iswhite(s[3]))
5259 || (STRNCMP(s, "long", 4) == 0 && vim_iswhite(s[4]))
5260 || (STRNCMP(s, "short", 5) == 0 && vim_iswhite(s[5]))
5261 || (STRNCMP(s, "char", 4) == 0 && vim_iswhite(s[4])))
5262 p = s;
5264 for (len = 0; vim_isIDc(p[len]); ++len)
5266 if (len == 0 || !vim_iswhite(p[len]) || cin_nocode(p))
5267 return 0;
5269 p = skipwhite(p + len);
5270 fp.lnum = curwin->w_cursor.lnum;
5271 fp.col = (colnr_T)(p - line);
5272 getvcol(curwin, &fp, &col, NULL, NULL);
5273 return (int)col;
5277 * Return the indent of the first non-blank after an equal sign.
5278 * char *foo = "here";
5279 * Return zero if no (useful) equal sign found.
5280 * Return -1 if the line above "lnum" ends in a backslash.
5281 * foo = "asdf\
5282 * asdf\
5283 * here";
5285 static int
5286 cin_get_equal_amount(lnum)
5287 linenr_T lnum;
5289 char_u *line;
5290 char_u *s;
5291 colnr_T col;
5292 pos_T fp;
5294 if (lnum > 1)
5296 line = ml_get(lnum - 1);
5297 if (*line != NUL && line[STRLEN(line) - 1] == '\\')
5298 return -1;
5301 line = s = ml_get(lnum);
5302 while (*s != NUL && vim_strchr((char_u *)"=;{}\"'", *s) == NULL)
5304 if (cin_iscomment(s)) /* ignore comments */
5305 s = cin_skipcomment(s);
5306 else
5307 ++s;
5309 if (*s != '=')
5310 return 0;
5312 s = skipwhite(s + 1);
5313 if (cin_nocode(s))
5314 return 0;
5316 if (*s == '"') /* nice alignment for continued strings */
5317 ++s;
5319 fp.lnum = lnum;
5320 fp.col = (colnr_T)(s - line);
5321 getvcol(curwin, &fp, &col, NULL, NULL);
5322 return (int)col;
5326 * Recognize a preprocessor statement: Any line that starts with '#'.
5328 static int
5329 cin_ispreproc(s)
5330 char_u *s;
5332 s = skipwhite(s);
5333 if (*s == '#')
5334 return TRUE;
5335 return FALSE;
5339 * Return TRUE if line "*pp" at "*lnump" is a preprocessor statement or a
5340 * continuation line of a preprocessor statement. Decrease "*lnump" to the
5341 * start and return the line in "*pp".
5343 static int
5344 cin_ispreproc_cont(pp, lnump)
5345 char_u **pp;
5346 linenr_T *lnump;
5348 char_u *line = *pp;
5349 linenr_T lnum = *lnump;
5350 int retval = FALSE;
5352 for (;;)
5354 if (cin_ispreproc(line))
5356 retval = TRUE;
5357 *lnump = lnum;
5358 break;
5360 if (lnum == 1)
5361 break;
5362 line = ml_get(--lnum);
5363 if (*line == NUL || line[STRLEN(line) - 1] != '\\')
5364 break;
5367 if (lnum != *lnump)
5368 *pp = ml_get(*lnump);
5369 return retval;
5373 * Recognize the start of a C or C++ comment.
5375 static int
5376 cin_iscomment(p)
5377 char_u *p;
5379 return (p[0] == '/' && (p[1] == '*' || p[1] == '/'));
5383 * Recognize the start of a "//" comment.
5385 static int
5386 cin_islinecomment(p)
5387 char_u *p;
5389 return (p[0] == '/' && p[1] == '/');
5393 * Recognize a line that starts with '{' or '}', or ends with ';', '{' or '}'.
5394 * Don't consider "} else" a terminated line.
5395 * Return the character terminating the line (ending char's have precedence if
5396 * both apply in order to determine initializations).
5398 static int
5399 cin_isterminated(s, incl_open, incl_comma)
5400 char_u *s;
5401 int incl_open; /* include '{' at the end as terminator */
5402 int incl_comma; /* recognize a trailing comma */
5404 char_u found_start = 0;
5406 s = cin_skipcomment(s);
5408 if (*s == '{' || (*s == '}' && !cin_iselse(s)))
5409 found_start = *s;
5411 while (*s)
5413 /* skip over comments, "" strings and 'c'haracters */
5414 s = skip_string(cin_skipcomment(s));
5415 if ((*s == ';' || (incl_open && *s == '{') || *s == '}'
5416 || (incl_comma && *s == ','))
5417 && cin_nocode(s + 1))
5418 return *s;
5420 if (*s)
5421 s++;
5423 return found_start;
5427 * Recognize the basic picture of a function declaration -- it needs to
5428 * have an open paren somewhere and a close paren at the end of the line and
5429 * no semicolons anywhere.
5430 * When a line ends in a comma we continue looking in the next line.
5431 * "sp" points to a string with the line. When looking at other lines it must
5432 * be restored to the line. When it's NULL fetch lines here.
5433 * "lnum" is where we start looking.
5435 static int
5436 cin_isfuncdecl(sp, first_lnum)
5437 char_u **sp;
5438 linenr_T first_lnum;
5440 char_u *s;
5441 linenr_T lnum = first_lnum;
5442 int retval = FALSE;
5444 if (sp == NULL)
5445 s = ml_get(lnum);
5446 else
5447 s = *sp;
5449 while (*s && *s != '(' && *s != ';' && *s != '\'' && *s != '"')
5451 if (cin_iscomment(s)) /* ignore comments */
5452 s = cin_skipcomment(s);
5453 else
5454 ++s;
5456 if (*s != '(')
5457 return FALSE; /* ';', ' or " before any () or no '(' */
5459 while (*s && *s != ';' && *s != '\'' && *s != '"')
5461 if (*s == ')' && cin_nocode(s + 1))
5463 /* ')' at the end: may have found a match
5464 * Check for he previous line not to end in a backslash:
5465 * #if defined(x) && \
5466 * defined(y)
5468 lnum = first_lnum - 1;
5469 s = ml_get(lnum);
5470 if (*s == NUL || s[STRLEN(s) - 1] != '\\')
5471 retval = TRUE;
5472 goto done;
5474 if (*s == ',' && cin_nocode(s + 1))
5476 /* ',' at the end: continue looking in the next line */
5477 if (lnum >= curbuf->b_ml.ml_line_count)
5478 break;
5480 s = ml_get(++lnum);
5482 else if (cin_iscomment(s)) /* ignore comments */
5483 s = cin_skipcomment(s);
5484 else
5485 ++s;
5488 done:
5489 if (lnum != first_lnum && sp != NULL)
5490 *sp = ml_get(first_lnum);
5492 return retval;
5495 static int
5496 cin_isif(p)
5497 char_u *p;
5499 return (STRNCMP(p, "if", 2) == 0 && !vim_isIDc(p[2]));
5502 static int
5503 cin_iselse(p)
5504 char_u *p;
5506 if (*p == '}') /* accept "} else" */
5507 p = cin_skipcomment(p + 1);
5508 return (STRNCMP(p, "else", 4) == 0 && !vim_isIDc(p[4]));
5511 static int
5512 cin_isdo(p)
5513 char_u *p;
5515 return (STRNCMP(p, "do", 2) == 0 && !vim_isIDc(p[2]));
5519 * Check if this is a "while" that should have a matching "do".
5520 * We only accept a "while (condition) ;", with only white space between the
5521 * ')' and ';'. The condition may be spread over several lines.
5523 static int
5524 cin_iswhileofdo(p, lnum, ind_maxparen) /* XXX */
5525 char_u *p;
5526 linenr_T lnum;
5527 int ind_maxparen;
5529 pos_T cursor_save;
5530 pos_T *trypos;
5531 int retval = FALSE;
5533 p = cin_skipcomment(p);
5534 if (*p == '}') /* accept "} while (cond);" */
5535 p = cin_skipcomment(p + 1);
5536 if (STRNCMP(p, "while", 5) == 0 && !vim_isIDc(p[5]))
5538 cursor_save = curwin->w_cursor;
5539 curwin->w_cursor.lnum = lnum;
5540 curwin->w_cursor.col = 0;
5541 p = ml_get_curline();
5542 while (*p && *p != 'w') /* skip any '}', until the 'w' of the "while" */
5544 ++p;
5545 ++curwin->w_cursor.col;
5547 if ((trypos = findmatchlimit(NULL, 0, 0, ind_maxparen)) != NULL
5548 && *cin_skipcomment(ml_get_pos(trypos) + 1) == ';')
5549 retval = TRUE;
5550 curwin->w_cursor = cursor_save;
5552 return retval;
5556 * Return TRUE if we are at the end of a do-while.
5557 * do
5558 * nothing;
5559 * while (foo
5560 * && bar); <-- here
5561 * Adjust the cursor to the line with "while".
5563 static int
5564 cin_iswhileofdo_end(terminated, ind_maxparen, ind_maxcomment)
5565 int terminated;
5566 int ind_maxparen;
5567 int ind_maxcomment;
5569 char_u *line;
5570 char_u *p;
5571 char_u *s;
5572 pos_T *trypos;
5573 int i;
5575 if (terminated != ';') /* there must be a ';' at the end */
5576 return FALSE;
5578 p = line = ml_get_curline();
5579 while (*p != NUL)
5581 p = cin_skipcomment(p);
5582 if (*p == ')')
5584 s = skipwhite(p + 1);
5585 if (*s == ';' && cin_nocode(s + 1))
5587 /* Found ");" at end of the line, now check there is "while"
5588 * before the matching '('. XXX */
5589 i = (int)(p - line);
5590 curwin->w_cursor.col = i;
5591 trypos = find_match_paren(ind_maxparen, ind_maxcomment);
5592 if (trypos != NULL)
5594 s = cin_skipcomment(ml_get(trypos->lnum));
5595 if (*s == '}') /* accept "} while (cond);" */
5596 s = cin_skipcomment(s + 1);
5597 if (STRNCMP(s, "while", 5) == 0 && !vim_isIDc(s[5]))
5599 curwin->w_cursor.lnum = trypos->lnum;
5600 return TRUE;
5604 /* Searching may have made "line" invalid, get it again. */
5605 line = ml_get_curline();
5606 p = line + i;
5609 if (*p != NUL)
5610 ++p;
5612 return FALSE;
5615 static int
5616 cin_isbreak(p)
5617 char_u *p;
5619 return (STRNCMP(p, "break", 5) == 0 && !vim_isIDc(p[5]));
5623 * Find the position of a C++ base-class declaration or
5624 * constructor-initialization. eg:
5626 * class MyClass :
5627 * baseClass <-- here
5628 * class MyClass : public baseClass,
5629 * anotherBaseClass <-- here (should probably lineup ??)
5630 * MyClass::MyClass(...) :
5631 * baseClass(...) <-- here (constructor-initialization)
5633 * This is a lot of guessing. Watch out for "cond ? func() : foo".
5635 static int
5636 cin_is_cpp_baseclass(col)
5637 colnr_T *col; /* return: column to align with */
5639 char_u *s;
5640 int class_or_struct, lookfor_ctor_init, cpp_base_class;
5641 linenr_T lnum = curwin->w_cursor.lnum;
5642 char_u *line = ml_get_curline();
5644 *col = 0;
5646 s = skipwhite(line);
5647 if (*s == '#') /* skip #define FOO x ? (x) : x */
5648 return FALSE;
5649 s = cin_skipcomment(s);
5650 if (*s == NUL)
5651 return FALSE;
5653 cpp_base_class = lookfor_ctor_init = class_or_struct = FALSE;
5655 /* Search for a line starting with '#', empty, ending in ';' or containing
5656 * '{' or '}' and start below it. This handles the following situations:
5657 * a = cond ?
5658 * func() :
5659 * asdf;
5660 * func::foo()
5661 * : something
5662 * {}
5663 * Foo::Foo (int one, int two)
5664 * : something(4),
5665 * somethingelse(3)
5666 * {}
5668 while (lnum > 1)
5670 line = ml_get(lnum - 1);
5671 s = skipwhite(line);
5672 if (*s == '#' || *s == NUL)
5673 break;
5674 while (*s != NUL)
5676 s = cin_skipcomment(s);
5677 if (*s == '{' || *s == '}'
5678 || (*s == ';' && cin_nocode(s + 1)))
5679 break;
5680 if (*s != NUL)
5681 ++s;
5683 if (*s != NUL)
5684 break;
5685 --lnum;
5688 line = ml_get(lnum);
5689 s = cin_skipcomment(line);
5690 for (;;)
5692 if (*s == NUL)
5694 if (lnum == curwin->w_cursor.lnum)
5695 break;
5696 /* Continue in the cursor line. */
5697 line = ml_get(++lnum);
5698 s = cin_skipcomment(line);
5699 if (*s == NUL)
5700 continue;
5703 if (s[0] == ':')
5705 if (s[1] == ':')
5707 /* skip double colon. It can't be a constructor
5708 * initialization any more */
5709 lookfor_ctor_init = FALSE;
5710 s = cin_skipcomment(s + 2);
5712 else if (lookfor_ctor_init || class_or_struct)
5714 /* we have something found, that looks like the start of
5715 * cpp-base-class-declaration or constructor-initialization */
5716 cpp_base_class = TRUE;
5717 lookfor_ctor_init = class_or_struct = FALSE;
5718 *col = 0;
5719 s = cin_skipcomment(s + 1);
5721 else
5722 s = cin_skipcomment(s + 1);
5724 else if ((STRNCMP(s, "class", 5) == 0 && !vim_isIDc(s[5]))
5725 || (STRNCMP(s, "struct", 6) == 0 && !vim_isIDc(s[6])))
5727 class_or_struct = TRUE;
5728 lookfor_ctor_init = FALSE;
5730 if (*s == 'c')
5731 s = cin_skipcomment(s + 5);
5732 else
5733 s = cin_skipcomment(s + 6);
5735 else
5737 if (s[0] == '{' || s[0] == '}' || s[0] == ';')
5739 cpp_base_class = lookfor_ctor_init = class_or_struct = FALSE;
5741 else if (s[0] == ')')
5743 /* Constructor-initialization is assumed if we come across
5744 * something like "):" */
5745 class_or_struct = FALSE;
5746 lookfor_ctor_init = TRUE;
5748 else if (s[0] == '?')
5750 /* Avoid seeing '() :' after '?' as constructor init. */
5751 return FALSE;
5753 else if (!vim_isIDc(s[0]))
5755 /* if it is not an identifier, we are wrong */
5756 class_or_struct = FALSE;
5757 lookfor_ctor_init = FALSE;
5759 else if (*col == 0)
5761 /* it can't be a constructor-initialization any more */
5762 lookfor_ctor_init = FALSE;
5764 /* the first statement starts here: lineup with this one... */
5765 if (cpp_base_class)
5766 *col = (colnr_T)(s - line);
5769 /* When the line ends in a comma don't align with it. */
5770 if (lnum == curwin->w_cursor.lnum && *s == ',' && cin_nocode(s + 1))
5771 *col = 0;
5773 s = cin_skipcomment(s + 1);
5777 return cpp_base_class;
5780 static int
5781 get_baseclass_amount(col, ind_maxparen, ind_maxcomment, ind_cpp_baseclass)
5782 int col;
5783 int ind_maxparen;
5784 int ind_maxcomment;
5785 int ind_cpp_baseclass;
5787 int amount;
5788 colnr_T vcol;
5789 pos_T *trypos;
5791 if (col == 0)
5793 amount = get_indent();
5794 if (find_last_paren(ml_get_curline(), '(', ')')
5795 && (trypos = find_match_paren(ind_maxparen,
5796 ind_maxcomment)) != NULL)
5797 amount = get_indent_lnum(trypos->lnum); /* XXX */
5798 if (!cin_ends_in(ml_get_curline(), (char_u *)",", NULL))
5799 amount += ind_cpp_baseclass;
5801 else
5803 curwin->w_cursor.col = col;
5804 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
5805 amount = (int)vcol;
5807 if (amount < ind_cpp_baseclass)
5808 amount = ind_cpp_baseclass;
5809 return amount;
5813 * Return TRUE if string "s" ends with the string "find", possibly followed by
5814 * white space and comments. Skip strings and comments.
5815 * Ignore "ignore" after "find" if it's not NULL.
5817 static int
5818 cin_ends_in(s, find, ignore)
5819 char_u *s;
5820 char_u *find;
5821 char_u *ignore;
5823 char_u *p = s;
5824 char_u *r;
5825 int len = (int)STRLEN(find);
5827 while (*p != NUL)
5829 p = cin_skipcomment(p);
5830 if (STRNCMP(p, find, len) == 0)
5832 r = skipwhite(p + len);
5833 if (ignore != NULL && STRNCMP(r, ignore, STRLEN(ignore)) == 0)
5834 r = skipwhite(r + STRLEN(ignore));
5835 if (cin_nocode(r))
5836 return TRUE;
5838 if (*p != NUL)
5839 ++p;
5841 return FALSE;
5845 * Skip strings, chars and comments until at or past "trypos".
5846 * Return the column found.
5848 static int
5849 cin_skip2pos(trypos)
5850 pos_T *trypos;
5852 char_u *line;
5853 char_u *p;
5855 p = line = ml_get(trypos->lnum);
5856 while (*p && (colnr_T)(p - line) < trypos->col)
5858 if (cin_iscomment(p))
5859 p = cin_skipcomment(p);
5860 else
5862 p = skip_string(p);
5863 ++p;
5866 return (int)(p - line);
5870 * Find the '{' at the start of the block we are in.
5871 * Return NULL if no match found.
5872 * Ignore a '{' that is in a comment, makes indenting the next three lines
5873 * work. */
5874 /* foo() */
5875 /* { */
5876 /* } */
5878 static pos_T *
5879 find_start_brace(ind_maxcomment) /* XXX */
5880 int ind_maxcomment;
5882 pos_T cursor_save;
5883 pos_T *trypos;
5884 pos_T *pos;
5885 static pos_T pos_copy;
5887 cursor_save = curwin->w_cursor;
5888 while ((trypos = findmatchlimit(NULL, '{', FM_BLOCKSTOP, 0)) != NULL)
5890 pos_copy = *trypos; /* copy pos_T, next findmatch will change it */
5891 trypos = &pos_copy;
5892 curwin->w_cursor = *trypos;
5893 pos = NULL;
5894 /* ignore the { if it's in a // or / * * / comment */
5895 if ((colnr_T)cin_skip2pos(trypos) == trypos->col
5896 && (pos = find_start_comment(ind_maxcomment)) == NULL) /* XXX */
5897 break;
5898 if (pos != NULL)
5899 curwin->w_cursor.lnum = pos->lnum;
5901 curwin->w_cursor = cursor_save;
5902 return trypos;
5906 * Find the matching '(', failing if it is in a comment.
5907 * Return NULL of no match found.
5909 static pos_T *
5910 find_match_paren(ind_maxparen, ind_maxcomment) /* XXX */
5911 int ind_maxparen;
5912 int ind_maxcomment;
5914 pos_T cursor_save;
5915 pos_T *trypos;
5916 static pos_T pos_copy;
5918 cursor_save = curwin->w_cursor;
5919 if ((trypos = findmatchlimit(NULL, '(', 0, ind_maxparen)) != NULL)
5921 /* check if the ( is in a // comment */
5922 if ((colnr_T)cin_skip2pos(trypos) > trypos->col)
5923 trypos = NULL;
5924 else
5926 pos_copy = *trypos; /* copy trypos, findmatch will change it */
5927 trypos = &pos_copy;
5928 curwin->w_cursor = *trypos;
5929 if (find_start_comment(ind_maxcomment) != NULL) /* XXX */
5930 trypos = NULL;
5933 curwin->w_cursor = cursor_save;
5934 return trypos;
5938 * Return ind_maxparen corrected for the difference in line number between the
5939 * cursor position and "startpos". This makes sure that searching for a
5940 * matching paren above the cursor line doesn't find a match because of
5941 * looking a few lines further.
5943 static int
5944 corr_ind_maxparen(ind_maxparen, startpos)
5945 int ind_maxparen;
5946 pos_T *startpos;
5948 long n = (long)startpos->lnum - (long)curwin->w_cursor.lnum;
5950 if (n > 0 && n < ind_maxparen / 2)
5951 return ind_maxparen - (int)n;
5952 return ind_maxparen;
5956 * Set w_cursor.col to the column number of the last unmatched ')' or '{' in
5957 * line "l".
5959 static int
5960 find_last_paren(l, start, end)
5961 char_u *l;
5962 int start, end;
5964 int i;
5965 int retval = FALSE;
5966 int open_count = 0;
5968 curwin->w_cursor.col = 0; /* default is start of line */
5970 for (i = 0; l[i]; i++)
5972 i = (int)(cin_skipcomment(l + i) - l); /* ignore parens in comments */
5973 i = (int)(skip_string(l + i) - l); /* ignore parens in quotes */
5974 if (l[i] == start)
5975 ++open_count;
5976 else if (l[i] == end)
5978 if (open_count > 0)
5979 --open_count;
5980 else
5982 curwin->w_cursor.col = i;
5983 retval = TRUE;
5987 return retval;
5991 get_c_indent()
5994 * spaces from a block's opening brace the prevailing indent for that
5995 * block should be
5997 int ind_level = curbuf->b_p_sw;
6000 * spaces from the edge of the line an open brace that's at the end of a
6001 * line is imagined to be.
6003 int ind_open_imag = 0;
6006 * spaces from the prevailing indent for a line that is not precededof by
6007 * an opening brace.
6009 int ind_no_brace = 0;
6012 * column where the first { of a function should be located }
6014 int ind_first_open = 0;
6017 * spaces from the prevailing indent a leftmost open brace should be
6018 * located
6020 int ind_open_extra = 0;
6023 * spaces from the matching open brace (real location for one at the left
6024 * edge; imaginary location from one that ends a line) the matching close
6025 * brace should be located
6027 int ind_close_extra = 0;
6030 * spaces from the edge of the line an open brace sitting in the leftmost
6031 * column is imagined to be
6033 int ind_open_left_imag = 0;
6036 * spaces from the switch() indent a "case xx" label should be located
6038 int ind_case = curbuf->b_p_sw;
6041 * spaces from the "case xx:" code after a switch() should be located
6043 int ind_case_code = curbuf->b_p_sw;
6046 * lineup break at end of case in switch() with case label
6048 int ind_case_break = 0;
6051 * spaces from the class declaration indent a scope declaration label
6052 * should be located
6054 int ind_scopedecl = curbuf->b_p_sw;
6057 * spaces from the scope declaration label code should be located
6059 int ind_scopedecl_code = curbuf->b_p_sw;
6062 * amount K&R-style parameters should be indented
6064 int ind_param = curbuf->b_p_sw;
6067 * amount a function type spec should be indented
6069 int ind_func_type = curbuf->b_p_sw;
6072 * amount a cpp base class declaration or constructor initialization
6073 * should be indented
6075 int ind_cpp_baseclass = curbuf->b_p_sw;
6078 * additional spaces beyond the prevailing indent a continuation line
6079 * should be located
6081 int ind_continuation = curbuf->b_p_sw;
6084 * spaces from the indent of the line with an unclosed parentheses
6086 int ind_unclosed = curbuf->b_p_sw * 2;
6089 * spaces from the indent of the line with an unclosed parentheses, which
6090 * itself is also unclosed
6092 int ind_unclosed2 = curbuf->b_p_sw;
6095 * suppress ignoring spaces from the indent of a line starting with an
6096 * unclosed parentheses.
6098 int ind_unclosed_noignore = 0;
6101 * If the opening paren is the last nonwhite character on the line, and
6102 * ind_unclosed_wrapped is nonzero, use this indent relative to the outer
6103 * context (for very long lines).
6105 int ind_unclosed_wrapped = 0;
6108 * suppress ignoring white space when lining up with the character after
6109 * an unclosed parentheses.
6111 int ind_unclosed_whiteok = 0;
6114 * indent a closing parentheses under the line start of the matching
6115 * opening parentheses.
6117 int ind_matching_paren = 0;
6120 * indent a closing parentheses under the previous line.
6122 int ind_paren_prev = 0;
6125 * Extra indent for comments.
6127 int ind_comment = 0;
6130 * spaces from the comment opener when there is nothing after it.
6132 int ind_in_comment = 3;
6135 * boolean: if non-zero, use ind_in_comment even if there is something
6136 * after the comment opener.
6138 int ind_in_comment2 = 0;
6141 * max lines to search for an open paren
6143 int ind_maxparen = 20;
6146 * max lines to search for an open comment
6148 int ind_maxcomment = 70;
6151 * handle braces for java code
6153 int ind_java = 0;
6156 * handle blocked cases correctly
6158 int ind_keep_case_label = 0;
6160 pos_T cur_curpos;
6161 int amount;
6162 int scope_amount;
6163 int cur_amount = MAXCOL;
6164 colnr_T col;
6165 char_u *theline;
6166 char_u *linecopy;
6167 pos_T *trypos;
6168 pos_T *tryposBrace = NULL;
6169 pos_T our_paren_pos;
6170 char_u *start;
6171 int start_brace;
6172 #define BRACE_IN_COL0 1 /* '{' is in column 0 */
6173 #define BRACE_AT_START 2 /* '{' is at start of line */
6174 #define BRACE_AT_END 3 /* '{' is at end of line */
6175 linenr_T ourscope;
6176 char_u *l;
6177 char_u *look;
6178 char_u terminated;
6179 int lookfor;
6180 #define LOOKFOR_INITIAL 0
6181 #define LOOKFOR_IF 1
6182 #define LOOKFOR_DO 2
6183 #define LOOKFOR_CASE 3
6184 #define LOOKFOR_ANY 4
6185 #define LOOKFOR_TERM 5
6186 #define LOOKFOR_UNTERM 6
6187 #define LOOKFOR_SCOPEDECL 7
6188 #define LOOKFOR_NOBREAK 8
6189 #define LOOKFOR_CPP_BASECLASS 9
6190 #define LOOKFOR_ENUM_OR_INIT 10
6192 int whilelevel;
6193 linenr_T lnum;
6194 char_u *options;
6195 int fraction = 0; /* init for GCC */
6196 int divider;
6197 int n;
6198 int iscase;
6199 int lookfor_break;
6200 int cont_amount = 0; /* amount for continuation line */
6202 for (options = curbuf->b_p_cino; *options; )
6204 l = options++;
6205 if (*options == '-')
6206 ++options;
6207 n = getdigits(&options);
6208 divider = 0;
6209 if (*options == '.') /* ".5s" means a fraction */
6211 fraction = atol((char *)++options);
6212 while (VIM_ISDIGIT(*options))
6214 ++options;
6215 if (divider)
6216 divider *= 10;
6217 else
6218 divider = 10;
6221 if (*options == 's') /* "2s" means two times 'shiftwidth' */
6223 if (n == 0 && fraction == 0)
6224 n = curbuf->b_p_sw; /* just "s" is one 'shiftwidth' */
6225 else
6227 n *= curbuf->b_p_sw;
6228 if (divider)
6229 n += (curbuf->b_p_sw * fraction + divider / 2) / divider;
6231 ++options;
6233 if (l[1] == '-')
6234 n = -n;
6235 /* When adding an entry here, also update the default 'cinoptions' in
6236 * doc/indent.txt, and add explanation for it! */
6237 switch (*l)
6239 case '>': ind_level = n; break;
6240 case 'e': ind_open_imag = n; break;
6241 case 'n': ind_no_brace = n; break;
6242 case 'f': ind_first_open = n; break;
6243 case '{': ind_open_extra = n; break;
6244 case '}': ind_close_extra = n; break;
6245 case '^': ind_open_left_imag = n; break;
6246 case ':': ind_case = n; break;
6247 case '=': ind_case_code = n; break;
6248 case 'b': ind_case_break = n; break;
6249 case 'p': ind_param = n; break;
6250 case 't': ind_func_type = n; break;
6251 case '/': ind_comment = n; break;
6252 case 'c': ind_in_comment = n; break;
6253 case 'C': ind_in_comment2 = n; break;
6254 case 'i': ind_cpp_baseclass = n; break;
6255 case '+': ind_continuation = n; break;
6256 case '(': ind_unclosed = n; break;
6257 case 'u': ind_unclosed2 = n; break;
6258 case 'U': ind_unclosed_noignore = n; break;
6259 case 'W': ind_unclosed_wrapped = n; break;
6260 case 'w': ind_unclosed_whiteok = n; break;
6261 case 'm': ind_matching_paren = n; break;
6262 case 'M': ind_paren_prev = n; break;
6263 case ')': ind_maxparen = n; break;
6264 case '*': ind_maxcomment = n; break;
6265 case 'g': ind_scopedecl = n; break;
6266 case 'h': ind_scopedecl_code = n; break;
6267 case 'j': ind_java = n; break;
6268 case 'l': ind_keep_case_label = n; break;
6269 case '#': ind_hash_comment = n; break;
6273 /* remember where the cursor was when we started */
6274 cur_curpos = curwin->w_cursor;
6276 /* Get a copy of the current contents of the line.
6277 * This is required, because only the most recent line obtained with
6278 * ml_get is valid! */
6279 linecopy = vim_strsave(ml_get(cur_curpos.lnum));
6280 if (linecopy == NULL)
6281 return 0;
6284 * In insert mode and the cursor is on a ')' truncate the line at the
6285 * cursor position. We don't want to line up with the matching '(' when
6286 * inserting new stuff.
6287 * For unknown reasons the cursor might be past the end of the line, thus
6288 * check for that.
6290 if ((State & INSERT)
6291 && curwin->w_cursor.col < (colnr_T)STRLEN(linecopy)
6292 && linecopy[curwin->w_cursor.col] == ')')
6293 linecopy[curwin->w_cursor.col] = NUL;
6295 theline = skipwhite(linecopy);
6297 /* move the cursor to the start of the line */
6299 curwin->w_cursor.col = 0;
6302 * #defines and so on always go at the left when included in 'cinkeys'.
6304 if (*theline == '#' && (*linecopy == '#' || in_cinkeys('#', ' ', TRUE)))
6306 amount = 0;
6310 * Is it a non-case label? Then that goes at the left margin too.
6312 else if (cin_islabel(ind_maxcomment)) /* XXX */
6314 amount = 0;
6318 * If we're inside a "//" comment and there is a "//" comment in a
6319 * previous line, lineup with that one.
6321 else if (cin_islinecomment(theline)
6322 && (trypos = find_line_comment()) != NULL) /* XXX */
6324 /* find how indented the line beginning the comment is */
6325 getvcol(curwin, trypos, &col, NULL, NULL);
6326 amount = col;
6330 * If we're inside a comment and not looking at the start of the
6331 * comment, try using the 'comments' option.
6333 else if (!cin_iscomment(theline)
6334 && (trypos = find_start_comment(ind_maxcomment)) != NULL) /* XXX */
6336 int lead_start_len = 2;
6337 int lead_middle_len = 1;
6338 char_u lead_start[COM_MAX_LEN]; /* start-comment string */
6339 char_u lead_middle[COM_MAX_LEN]; /* middle-comment string */
6340 char_u lead_end[COM_MAX_LEN]; /* end-comment string */
6341 char_u *p;
6342 int start_align = 0;
6343 int start_off = 0;
6344 int done = FALSE;
6346 /* find how indented the line beginning the comment is */
6347 getvcol(curwin, trypos, &col, NULL, NULL);
6348 amount = col;
6350 p = curbuf->b_p_com;
6351 while (*p != NUL)
6353 int align = 0;
6354 int off = 0;
6355 int what = 0;
6357 while (*p != NUL && *p != ':')
6359 if (*p == COM_START || *p == COM_END || *p == COM_MIDDLE)
6360 what = *p++;
6361 else if (*p == COM_LEFT || *p == COM_RIGHT)
6362 align = *p++;
6363 else if (VIM_ISDIGIT(*p) || *p == '-')
6364 off = getdigits(&p);
6365 else
6366 ++p;
6369 if (*p == ':')
6370 ++p;
6371 (void)copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
6372 if (what == COM_START)
6374 STRCPY(lead_start, lead_end);
6375 lead_start_len = (int)STRLEN(lead_start);
6376 start_off = off;
6377 start_align = align;
6379 else if (what == COM_MIDDLE)
6381 STRCPY(lead_middle, lead_end);
6382 lead_middle_len = (int)STRLEN(lead_middle);
6384 else if (what == COM_END)
6386 /* If our line starts with the middle comment string, line it
6387 * up with the comment opener per the 'comments' option. */
6388 if (STRNCMP(theline, lead_middle, lead_middle_len) == 0
6389 && STRNCMP(theline, lead_end, STRLEN(lead_end)) != 0)
6391 done = TRUE;
6392 if (curwin->w_cursor.lnum > 1)
6394 /* If the start comment string matches in the previous
6395 * line, use the indent of that line plus offset. If
6396 * the middle comment string matches in the previous
6397 * line, use the indent of that line. XXX */
6398 look = skipwhite(ml_get(curwin->w_cursor.lnum - 1));
6399 if (STRNCMP(look, lead_start, lead_start_len) == 0)
6400 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
6401 else if (STRNCMP(look, lead_middle,
6402 lead_middle_len) == 0)
6404 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
6405 break;
6407 /* If the start comment string doesn't match with the
6408 * start of the comment, skip this entry. XXX */
6409 else if (STRNCMP(ml_get(trypos->lnum) + trypos->col,
6410 lead_start, lead_start_len) != 0)
6411 continue;
6413 if (start_off != 0)
6414 amount += start_off;
6415 else if (start_align == COM_RIGHT)
6416 amount += vim_strsize(lead_start)
6417 - vim_strsize(lead_middle);
6418 break;
6421 /* If our line starts with the end comment string, line it up
6422 * with the middle comment */
6423 if (STRNCMP(theline, lead_middle, lead_middle_len) != 0
6424 && STRNCMP(theline, lead_end, STRLEN(lead_end)) == 0)
6426 amount = get_indent_lnum(curwin->w_cursor.lnum - 1);
6427 /* XXX */
6428 if (off != 0)
6429 amount += off;
6430 else if (align == COM_RIGHT)
6431 amount += vim_strsize(lead_start)
6432 - vim_strsize(lead_middle);
6433 done = TRUE;
6434 break;
6439 /* If our line starts with an asterisk, line up with the
6440 * asterisk in the comment opener; otherwise, line up
6441 * with the first character of the comment text.
6443 if (done)
6445 else if (theline[0] == '*')
6446 amount += 1;
6447 else
6450 * If we are more than one line away from the comment opener, take
6451 * the indent of the previous non-empty line. If 'cino' has "CO"
6452 * and we are just below the comment opener and there are any
6453 * white characters after it line up with the text after it;
6454 * otherwise, add the amount specified by "c" in 'cino'
6456 amount = -1;
6457 for (lnum = cur_curpos.lnum - 1; lnum > trypos->lnum; --lnum)
6459 if (linewhite(lnum)) /* skip blank lines */
6460 continue;
6461 amount = get_indent_lnum(lnum); /* XXX */
6462 break;
6464 if (amount == -1) /* use the comment opener */
6466 if (!ind_in_comment2)
6468 start = ml_get(trypos->lnum);
6469 look = start + trypos->col + 2; /* skip / and * */
6470 if (*look != NUL) /* if something after it */
6471 trypos->col = (colnr_T)(skipwhite(look) - start);
6473 getvcol(curwin, trypos, &col, NULL, NULL);
6474 amount = col;
6475 if (ind_in_comment2 || *look == NUL)
6476 amount += ind_in_comment;
6482 * Are we inside parentheses or braces?
6483 */ /* XXX */
6484 else if (((trypos = find_match_paren(ind_maxparen, ind_maxcomment)) != NULL
6485 && ind_java == 0)
6486 || (tryposBrace = find_start_brace(ind_maxcomment)) != NULL
6487 || trypos != NULL)
6489 if (trypos != NULL && tryposBrace != NULL)
6491 /* Both an unmatched '(' and '{' is found. Use the one which is
6492 * closer to the current cursor position, set the other to NULL. */
6493 if (trypos->lnum != tryposBrace->lnum
6494 ? trypos->lnum < tryposBrace->lnum
6495 : trypos->col < tryposBrace->col)
6496 trypos = NULL;
6497 else
6498 tryposBrace = NULL;
6501 if (trypos != NULL)
6504 * If the matching paren is more than one line away, use the indent of
6505 * a previous non-empty line that matches the same paren.
6507 if (theline[0] == ')' && ind_paren_prev)
6509 /* Line up with the start of the matching paren line. */
6510 amount = get_indent_lnum(curwin->w_cursor.lnum - 1); /* XXX */
6512 else
6514 amount = -1;
6515 our_paren_pos = *trypos;
6516 for (lnum = cur_curpos.lnum - 1; lnum > our_paren_pos.lnum; --lnum)
6518 l = skipwhite(ml_get(lnum));
6519 if (cin_nocode(l)) /* skip comment lines */
6520 continue;
6521 if (cin_ispreproc_cont(&l, &lnum))
6522 continue; /* ignore #define, #if, etc. */
6523 curwin->w_cursor.lnum = lnum;
6525 /* Skip a comment. XXX */
6526 if ((trypos = find_start_comment(ind_maxcomment)) != NULL)
6528 lnum = trypos->lnum + 1;
6529 continue;
6532 /* XXX */
6533 if ((trypos = find_match_paren(
6534 corr_ind_maxparen(ind_maxparen, &cur_curpos),
6535 ind_maxcomment)) != NULL
6536 && trypos->lnum == our_paren_pos.lnum
6537 && trypos->col == our_paren_pos.col)
6539 amount = get_indent_lnum(lnum); /* XXX */
6541 if (theline[0] == ')')
6543 if (our_paren_pos.lnum != lnum
6544 && cur_amount > amount)
6545 cur_amount = amount;
6546 amount = -1;
6548 break;
6554 * Line up with line where the matching paren is. XXX
6555 * If the line starts with a '(' or the indent for unclosed
6556 * parentheses is zero, line up with the unclosed parentheses.
6558 if (amount == -1)
6560 int ignore_paren_col = 0;
6562 amount = skip_label(our_paren_pos.lnum, &look, ind_maxcomment);
6563 look = skipwhite(look);
6564 if (*look == '(')
6566 linenr_T save_lnum = curwin->w_cursor.lnum;
6567 char_u *line;
6568 int look_col;
6570 /* Ignore a '(' in front of the line that has a match before
6571 * our matching '('. */
6572 curwin->w_cursor.lnum = our_paren_pos.lnum;
6573 line = ml_get_curline();
6574 look_col = (int)(look - line);
6575 curwin->w_cursor.col = look_col + 1;
6576 if ((trypos = findmatchlimit(NULL, ')', 0, ind_maxparen))
6577 != NULL
6578 && trypos->lnum == our_paren_pos.lnum
6579 && trypos->col < our_paren_pos.col)
6580 ignore_paren_col = trypos->col + 1;
6582 curwin->w_cursor.lnum = save_lnum;
6583 look = ml_get(our_paren_pos.lnum) + look_col;
6585 if (theline[0] == ')' || ind_unclosed == 0
6586 || (!ind_unclosed_noignore && *look == '('
6587 && ignore_paren_col == 0))
6590 * If we're looking at a close paren, line up right there;
6591 * otherwise, line up with the next (non-white) character.
6592 * When ind_unclosed_wrapped is set and the matching paren is
6593 * the last nonwhite character of the line, use either the
6594 * indent of the current line or the indentation of the next
6595 * outer paren and add ind_unclosed_wrapped (for very long
6596 * lines).
6598 if (theline[0] != ')')
6600 cur_amount = MAXCOL;
6601 l = ml_get(our_paren_pos.lnum);
6602 if (ind_unclosed_wrapped
6603 && cin_ends_in(l, (char_u *)"(", NULL))
6605 /* look for opening unmatched paren, indent one level
6606 * for each additional level */
6607 n = 1;
6608 for (col = 0; col < our_paren_pos.col; ++col)
6610 switch (l[col])
6612 case '(':
6613 case '{': ++n;
6614 break;
6616 case ')':
6617 case '}': if (n > 1)
6618 --n;
6619 break;
6623 our_paren_pos.col = 0;
6624 amount += n * ind_unclosed_wrapped;
6626 else if (ind_unclosed_whiteok)
6627 our_paren_pos.col++;
6628 else
6630 col = our_paren_pos.col + 1;
6631 while (vim_iswhite(l[col]))
6632 col++;
6633 if (l[col] != NUL) /* In case of trailing space */
6634 our_paren_pos.col = col;
6635 else
6636 our_paren_pos.col++;
6641 * Find how indented the paren is, or the character after it
6642 * if we did the above "if".
6644 if (our_paren_pos.col > 0)
6646 getvcol(curwin, &our_paren_pos, &col, NULL, NULL);
6647 if (cur_amount > (int)col)
6648 cur_amount = col;
6652 if (theline[0] == ')' && ind_matching_paren)
6654 /* Line up with the start of the matching paren line. */
6656 else if (ind_unclosed == 0 || (!ind_unclosed_noignore
6657 && *look == '(' && ignore_paren_col == 0))
6659 if (cur_amount != MAXCOL)
6660 amount = cur_amount;
6662 else
6664 /* Add ind_unclosed2 for each '(' before our matching one, but
6665 * ignore (void) before the line (ignore_paren_col). */
6666 col = our_paren_pos.col;
6667 while ((int)our_paren_pos.col > ignore_paren_col)
6669 --our_paren_pos.col;
6670 switch (*ml_get_pos(&our_paren_pos))
6672 case '(': amount += ind_unclosed2;
6673 col = our_paren_pos.col;
6674 break;
6675 case ')': amount -= ind_unclosed2;
6676 col = MAXCOL;
6677 break;
6681 /* Use ind_unclosed once, when the first '(' is not inside
6682 * braces */
6683 if (col == MAXCOL)
6684 amount += ind_unclosed;
6685 else
6687 curwin->w_cursor.lnum = our_paren_pos.lnum;
6688 curwin->w_cursor.col = col;
6689 if ((trypos = find_match_paren(ind_maxparen,
6690 ind_maxcomment)) != NULL)
6691 amount += ind_unclosed2;
6692 else
6693 amount += ind_unclosed;
6696 * For a line starting with ')' use the minimum of the two
6697 * positions, to avoid giving it more indent than the previous
6698 * lines:
6699 * func_long_name( if (x
6700 * arg && yy
6701 * ) ^ not here ) ^ not here
6703 if (cur_amount < amount)
6704 amount = cur_amount;
6708 /* add extra indent for a comment */
6709 if (cin_iscomment(theline))
6710 amount += ind_comment;
6714 * Are we at least inside braces, then?
6716 else
6718 trypos = tryposBrace;
6720 ourscope = trypos->lnum;
6721 start = ml_get(ourscope);
6724 * Now figure out how indented the line is in general.
6725 * If the brace was at the start of the line, we use that;
6726 * otherwise, check out the indentation of the line as
6727 * a whole and then add the "imaginary indent" to that.
6729 look = skipwhite(start);
6730 if (*look == '{')
6732 getvcol(curwin, trypos, &col, NULL, NULL);
6733 amount = col;
6734 if (*start == '{')
6735 start_brace = BRACE_IN_COL0;
6736 else
6737 start_brace = BRACE_AT_START;
6739 else
6742 * that opening brace might have been on a continuation
6743 * line. if so, find the start of the line.
6745 curwin->w_cursor.lnum = ourscope;
6748 * position the cursor over the rightmost paren, so that
6749 * matching it will take us back to the start of the line.
6751 lnum = ourscope;
6752 if (find_last_paren(start, '(', ')')
6753 && (trypos = find_match_paren(ind_maxparen,
6754 ind_maxcomment)) != NULL)
6755 lnum = trypos->lnum;
6758 * It could have been something like
6759 * case 1: if (asdf &&
6760 * ldfd) {
6763 if (ind_keep_case_label && cin_iscase(skipwhite(ml_get_curline())))
6764 amount = get_indent();
6765 else
6766 amount = skip_label(lnum, &l, ind_maxcomment);
6768 start_brace = BRACE_AT_END;
6772 * if we're looking at a closing brace, that's where
6773 * we want to be. otherwise, add the amount of room
6774 * that an indent is supposed to be.
6776 if (theline[0] == '}')
6779 * they may want closing braces to line up with something
6780 * other than the open brace. indulge them, if so.
6782 amount += ind_close_extra;
6784 else
6787 * If we're looking at an "else", try to find an "if"
6788 * to match it with.
6789 * If we're looking at a "while", try to find a "do"
6790 * to match it with.
6792 lookfor = LOOKFOR_INITIAL;
6793 if (cin_iselse(theline))
6794 lookfor = LOOKFOR_IF;
6795 else if (cin_iswhileofdo(theline, cur_curpos.lnum, ind_maxparen))
6796 /* XXX */
6797 lookfor = LOOKFOR_DO;
6798 if (lookfor != LOOKFOR_INITIAL)
6800 curwin->w_cursor.lnum = cur_curpos.lnum;
6801 if (find_match(lookfor, ourscope, ind_maxparen,
6802 ind_maxcomment) == OK)
6804 amount = get_indent(); /* XXX */
6805 goto theend;
6810 * We get here if we are not on an "while-of-do" or "else" (or
6811 * failed to find a matching "if").
6812 * Search backwards for something to line up with.
6813 * First set amount for when we don't find anything.
6817 * if the '{' is _really_ at the left margin, use the imaginary
6818 * location of a left-margin brace. Otherwise, correct the
6819 * location for ind_open_extra.
6822 if (start_brace == BRACE_IN_COL0) /* '{' is in column 0 */
6824 amount = ind_open_left_imag;
6826 else
6828 if (start_brace == BRACE_AT_END) /* '{' is at end of line */
6829 amount += ind_open_imag;
6830 else
6832 /* Compensate for adding ind_open_extra later. */
6833 amount -= ind_open_extra;
6834 if (amount < 0)
6835 amount = 0;
6839 lookfor_break = FALSE;
6841 if (cin_iscase(theline)) /* it's a switch() label */
6843 lookfor = LOOKFOR_CASE; /* find a previous switch() label */
6844 amount += ind_case;
6846 else if (cin_isscopedecl(theline)) /* private:, ... */
6848 lookfor = LOOKFOR_SCOPEDECL; /* class decl is this block */
6849 amount += ind_scopedecl;
6851 else
6853 if (ind_case_break && cin_isbreak(theline)) /* break; ... */
6854 lookfor_break = TRUE;
6856 lookfor = LOOKFOR_INITIAL;
6857 amount += ind_level; /* ind_level from start of block */
6859 scope_amount = amount;
6860 whilelevel = 0;
6863 * Search backwards. If we find something we recognize, line up
6864 * with that.
6866 * if we're looking at an open brace, indent
6867 * the usual amount relative to the conditional
6868 * that opens the block.
6870 curwin->w_cursor = cur_curpos;
6871 for (;;)
6873 curwin->w_cursor.lnum--;
6874 curwin->w_cursor.col = 0;
6877 * If we went all the way back to the start of our scope, line
6878 * up with it.
6880 if (curwin->w_cursor.lnum <= ourscope)
6882 /* we reached end of scope:
6883 * if looking for a enum or structure initialization
6884 * go further back:
6885 * if it is an initializer (enum xxx or xxx =), then
6886 * don't add ind_continuation, otherwise it is a variable
6887 * declaration:
6888 * int x,
6889 * here; <-- add ind_continuation
6891 if (lookfor == LOOKFOR_ENUM_OR_INIT)
6893 if (curwin->w_cursor.lnum == 0
6894 || curwin->w_cursor.lnum
6895 < ourscope - ind_maxparen)
6897 /* nothing found (abuse ind_maxparen as limit)
6898 * assume terminated line (i.e. a variable
6899 * initialization) */
6900 if (cont_amount > 0)
6901 amount = cont_amount;
6902 else
6903 amount += ind_continuation;
6904 break;
6907 l = ml_get_curline();
6910 * If we're in a comment now, skip to the start of the
6911 * comment.
6913 trypos = find_start_comment(ind_maxcomment);
6914 if (trypos != NULL)
6916 curwin->w_cursor.lnum = trypos->lnum + 1;
6917 curwin->w_cursor.col = 0;
6918 continue;
6922 * Skip preprocessor directives and blank lines.
6924 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
6925 continue;
6927 if (cin_nocode(l))
6928 continue;
6930 terminated = cin_isterminated(l, FALSE, TRUE);
6933 * If we are at top level and the line looks like a
6934 * function declaration, we are done
6935 * (it's a variable declaration).
6937 if (start_brace != BRACE_IN_COL0
6938 || !cin_isfuncdecl(&l, curwin->w_cursor.lnum))
6940 /* if the line is terminated with another ','
6941 * it is a continued variable initialization.
6942 * don't add extra indent.
6943 * TODO: does not work, if a function
6944 * declaration is split over multiple lines:
6945 * cin_isfuncdecl returns FALSE then.
6947 if (terminated == ',')
6948 break;
6950 /* if it es a enum declaration or an assignment,
6951 * we are done.
6953 if (terminated != ';' && cin_isinit())
6954 break;
6956 /* nothing useful found */
6957 if (terminated == 0 || terminated == '{')
6958 continue;
6961 if (terminated != ';')
6963 /* Skip parens and braces. Position the cursor
6964 * over the rightmost paren, so that matching it
6965 * will take us back to the start of the line.
6966 */ /* XXX */
6967 trypos = NULL;
6968 if (find_last_paren(l, '(', ')'))
6969 trypos = find_match_paren(ind_maxparen,
6970 ind_maxcomment);
6972 if (trypos == NULL && find_last_paren(l, '{', '}'))
6973 trypos = find_start_brace(ind_maxcomment);
6975 if (trypos != NULL)
6977 curwin->w_cursor.lnum = trypos->lnum + 1;
6978 curwin->w_cursor.col = 0;
6979 continue;
6983 /* it's a variable declaration, add indentation
6984 * like in
6985 * int a,
6986 * b;
6988 if (cont_amount > 0)
6989 amount = cont_amount;
6990 else
6991 amount += ind_continuation;
6993 else if (lookfor == LOOKFOR_UNTERM)
6995 if (cont_amount > 0)
6996 amount = cont_amount;
6997 else
6998 amount += ind_continuation;
7000 else if (lookfor != LOOKFOR_TERM
7001 && lookfor != LOOKFOR_CPP_BASECLASS)
7003 amount = scope_amount;
7004 if (theline[0] == '{')
7005 amount += ind_open_extra;
7007 break;
7011 * If we're in a comment now, skip to the start of the comment.
7012 */ /* XXX */
7013 if ((trypos = find_start_comment(ind_maxcomment)) != NULL)
7015 curwin->w_cursor.lnum = trypos->lnum + 1;
7016 curwin->w_cursor.col = 0;
7017 continue;
7020 l = ml_get_curline();
7023 * If this is a switch() label, may line up relative to that.
7024 * If this is a C++ scope declaration, do the same.
7026 iscase = cin_iscase(l);
7027 if (iscase || cin_isscopedecl(l))
7029 /* we are only looking for cpp base class
7030 * declaration/initialization any longer */
7031 if (lookfor == LOOKFOR_CPP_BASECLASS)
7032 break;
7034 /* When looking for a "do" we are not interested in
7035 * labels. */
7036 if (whilelevel > 0)
7037 continue;
7040 * case xx:
7041 * c = 99 + <- this indent plus continuation
7042 *-> here;
7044 if (lookfor == LOOKFOR_UNTERM
7045 || lookfor == LOOKFOR_ENUM_OR_INIT)
7047 if (cont_amount > 0)
7048 amount = cont_amount;
7049 else
7050 amount += ind_continuation;
7051 break;
7055 * case xx: <- line up with this case
7056 * x = 333;
7057 * case yy:
7059 if ( (iscase && lookfor == LOOKFOR_CASE)
7060 || (iscase && lookfor_break)
7061 || (!iscase && lookfor == LOOKFOR_SCOPEDECL))
7064 * Check that this case label is not for another
7065 * switch()
7066 */ /* XXX */
7067 if ((trypos = find_start_brace(ind_maxcomment)) ==
7068 NULL || trypos->lnum == ourscope)
7070 amount = get_indent(); /* XXX */
7071 break;
7073 continue;
7076 n = get_indent_nolabel(curwin->w_cursor.lnum); /* XXX */
7079 * case xx: if (cond) <- line up with this if
7080 * y = y + 1;
7081 * -> s = 99;
7083 * case xx:
7084 * if (cond) <- line up with this line
7085 * y = y + 1;
7086 * -> s = 99;
7088 if (lookfor == LOOKFOR_TERM)
7090 if (n)
7091 amount = n;
7093 if (!lookfor_break)
7094 break;
7098 * case xx: x = x + 1; <- line up with this x
7099 * -> y = y + 1;
7101 * case xx: if (cond) <- line up with this if
7102 * -> y = y + 1;
7104 if (n)
7106 amount = n;
7107 l = after_label(ml_get_curline());
7108 if (l != NULL && cin_is_cinword(l))
7110 if (theline[0] == '{')
7111 amount += ind_open_extra;
7112 else
7113 amount += ind_level + ind_no_brace;
7115 break;
7119 * Try to get the indent of a statement before the switch
7120 * label. If nothing is found, line up relative to the
7121 * switch label.
7122 * break; <- may line up with this line
7123 * case xx:
7124 * -> y = 1;
7126 scope_amount = get_indent() + (iscase /* XXX */
7127 ? ind_case_code : ind_scopedecl_code);
7128 lookfor = ind_case_break ? LOOKFOR_NOBREAK : LOOKFOR_ANY;
7129 continue;
7133 * Looking for a switch() label or C++ scope declaration,
7134 * ignore other lines, skip {}-blocks.
7136 if (lookfor == LOOKFOR_CASE || lookfor == LOOKFOR_SCOPEDECL)
7138 if (find_last_paren(l, '{', '}') && (trypos =
7139 find_start_brace(ind_maxcomment)) != NULL)
7141 curwin->w_cursor.lnum = trypos->lnum + 1;
7142 curwin->w_cursor.col = 0;
7144 continue;
7148 * Ignore jump labels with nothing after them.
7150 if (cin_islabel(ind_maxcomment))
7152 l = after_label(ml_get_curline());
7153 if (l == NULL || cin_nocode(l))
7154 continue;
7158 * Ignore #defines, #if, etc.
7159 * Ignore comment and empty lines.
7160 * (need to get the line again, cin_islabel() may have
7161 * unlocked it)
7163 l = ml_get_curline();
7164 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum)
7165 || cin_nocode(l))
7166 continue;
7169 * Are we at the start of a cpp base class declaration or
7170 * constructor initialization?
7171 */ /* XXX */
7172 n = FALSE;
7173 if (lookfor != LOOKFOR_TERM && ind_cpp_baseclass > 0)
7175 n = cin_is_cpp_baseclass(&col);
7176 l = ml_get_curline();
7178 if (n)
7180 if (lookfor == LOOKFOR_UNTERM)
7182 if (cont_amount > 0)
7183 amount = cont_amount;
7184 else
7185 amount += ind_continuation;
7187 else if (theline[0] == '{')
7189 /* Need to find start of the declaration. */
7190 lookfor = LOOKFOR_UNTERM;
7191 ind_continuation = 0;
7192 continue;
7194 else
7195 /* XXX */
7196 amount = get_baseclass_amount(col, ind_maxparen,
7197 ind_maxcomment, ind_cpp_baseclass);
7198 break;
7200 else if (lookfor == LOOKFOR_CPP_BASECLASS)
7202 /* only look, whether there is a cpp base class
7203 * declaration or initialization before the opening brace.
7205 if (cin_isterminated(l, TRUE, FALSE))
7206 break;
7207 else
7208 continue;
7212 * What happens next depends on the line being terminated.
7213 * If terminated with a ',' only consider it terminating if
7214 * there is another unterminated statement behind, eg:
7215 * 123,
7216 * sizeof
7217 * here
7218 * Otherwise check whether it is a enumeration or structure
7219 * initialisation (not indented) or a variable declaration
7220 * (indented).
7222 terminated = cin_isterminated(l, FALSE, TRUE);
7224 if (terminated == 0 || (lookfor != LOOKFOR_UNTERM
7225 && terminated == ','))
7228 * if we're in the middle of a paren thing,
7229 * go back to the line that starts it so
7230 * we can get the right prevailing indent
7231 * if ( foo &&
7232 * bar )
7235 * position the cursor over the rightmost paren, so that
7236 * matching it will take us back to the start of the line.
7238 (void)find_last_paren(l, '(', ')');
7239 trypos = find_match_paren(
7240 corr_ind_maxparen(ind_maxparen, &cur_curpos),
7241 ind_maxcomment);
7244 * If we are looking for ',', we also look for matching
7245 * braces.
7247 if (trypos == NULL && terminated == ','
7248 && find_last_paren(l, '{', '}'))
7249 trypos = find_start_brace(ind_maxcomment);
7251 if (trypos != NULL)
7254 * Check if we are on a case label now. This is
7255 * handled above.
7256 * case xx: if ( asdf &&
7257 * asdf)
7259 curwin->w_cursor = *trypos;
7260 l = ml_get_curline();
7261 if (cin_iscase(l) || cin_isscopedecl(l))
7263 ++curwin->w_cursor.lnum;
7264 curwin->w_cursor.col = 0;
7265 continue;
7270 * Skip over continuation lines to find the one to get the
7271 * indent from
7272 * char *usethis = "bla\
7273 * bla",
7274 * here;
7276 if (terminated == ',')
7278 while (curwin->w_cursor.lnum > 1)
7280 l = ml_get(curwin->w_cursor.lnum - 1);
7281 if (*l == NUL || l[STRLEN(l) - 1] != '\\')
7282 break;
7283 --curwin->w_cursor.lnum;
7284 curwin->w_cursor.col = 0;
7289 * Get indent and pointer to text for current line,
7290 * ignoring any jump label. XXX
7292 cur_amount = skip_label(curwin->w_cursor.lnum,
7293 &l, ind_maxcomment);
7296 * If this is just above the line we are indenting, and it
7297 * starts with a '{', line it up with this line.
7298 * while (not)
7299 * -> {
7302 if (terminated != ',' && lookfor != LOOKFOR_TERM
7303 && theline[0] == '{')
7305 amount = cur_amount;
7307 * Only add ind_open_extra when the current line
7308 * doesn't start with a '{', which must have a match
7309 * in the same line (scope is the same). Probably:
7310 * { 1, 2 },
7311 * -> { 3, 4 }
7313 if (*skipwhite(l) != '{')
7314 amount += ind_open_extra;
7316 if (ind_cpp_baseclass)
7318 /* have to look back, whether it is a cpp base
7319 * class declaration or initialization */
7320 lookfor = LOOKFOR_CPP_BASECLASS;
7321 continue;
7323 break;
7327 * Check if we are after an "if", "while", etc.
7328 * Also allow " } else".
7330 if (cin_is_cinword(l) || cin_iselse(skipwhite(l)))
7333 * Found an unterminated line after an if (), line up
7334 * with the last one.
7335 * if (cond)
7336 * 100 +
7337 * -> here;
7339 if (lookfor == LOOKFOR_UNTERM
7340 || lookfor == LOOKFOR_ENUM_OR_INIT)
7342 if (cont_amount > 0)
7343 amount = cont_amount;
7344 else
7345 amount += ind_continuation;
7346 break;
7350 * If this is just above the line we are indenting, we
7351 * are finished.
7352 * while (not)
7353 * -> here;
7354 * Otherwise this indent can be used when the line
7355 * before this is terminated.
7356 * yyy;
7357 * if (stat)
7358 * while (not)
7359 * xxx;
7360 * -> here;
7362 amount = cur_amount;
7363 if (theline[0] == '{')
7364 amount += ind_open_extra;
7365 if (lookfor != LOOKFOR_TERM)
7367 amount += ind_level + ind_no_brace;
7368 break;
7372 * Special trick: when expecting the while () after a
7373 * do, line up with the while()
7374 * do
7375 * x = 1;
7376 * -> here
7378 l = skipwhite(ml_get_curline());
7379 if (cin_isdo(l))
7381 if (whilelevel == 0)
7382 break;
7383 --whilelevel;
7387 * When searching for a terminated line, don't use the
7388 * one between the "if" and the "else".
7389 * Need to use the scope of this "else". XXX
7390 * If whilelevel != 0 continue looking for a "do {".
7392 if (cin_iselse(l)
7393 && whilelevel == 0
7394 && ((trypos = find_start_brace(ind_maxcomment))
7395 == NULL
7396 || find_match(LOOKFOR_IF, trypos->lnum,
7397 ind_maxparen, ind_maxcomment) == FAIL))
7398 break;
7402 * If we're below an unterminated line that is not an
7403 * "if" or something, we may line up with this line or
7404 * add something for a continuation line, depending on
7405 * the line before this one.
7407 else
7410 * Found two unterminated lines on a row, line up with
7411 * the last one.
7412 * c = 99 +
7413 * 100 +
7414 * -> here;
7416 if (lookfor == LOOKFOR_UNTERM)
7418 /* When line ends in a comma add extra indent */
7419 if (terminated == ',')
7420 amount += ind_continuation;
7421 break;
7424 if (lookfor == LOOKFOR_ENUM_OR_INIT)
7426 /* Found two lines ending in ',', lineup with the
7427 * lowest one, but check for cpp base class
7428 * declaration/initialization, if it is an
7429 * opening brace or we are looking just for
7430 * enumerations/initializations. */
7431 if (terminated == ',')
7433 if (ind_cpp_baseclass == 0)
7434 break;
7436 lookfor = LOOKFOR_CPP_BASECLASS;
7437 continue;
7440 /* Ignore unterminated lines in between, but
7441 * reduce indent. */
7442 if (amount > cur_amount)
7443 amount = cur_amount;
7445 else
7448 * Found first unterminated line on a row, may
7449 * line up with this line, remember its indent
7450 * 100 +
7451 * -> here;
7453 amount = cur_amount;
7456 * If previous line ends in ',', check whether we
7457 * are in an initialization or enum
7458 * struct xxx =
7460 * sizeof a,
7461 * 124 };
7462 * or a normal possible continuation line.
7463 * but only, of no other statement has been found
7464 * yet.
7466 if (lookfor == LOOKFOR_INITIAL && terminated == ',')
7468 lookfor = LOOKFOR_ENUM_OR_INIT;
7469 cont_amount = cin_first_id_amount();
7471 else
7473 if (lookfor == LOOKFOR_INITIAL
7474 && *l != NUL
7475 && l[STRLEN(l) - 1] == '\\')
7476 /* XXX */
7477 cont_amount = cin_get_equal_amount(
7478 curwin->w_cursor.lnum);
7479 if (lookfor != LOOKFOR_TERM)
7480 lookfor = LOOKFOR_UNTERM;
7487 * Check if we are after a while (cond);
7488 * If so: Ignore until the matching "do".
7490 /* XXX */
7491 else if (cin_iswhileofdo_end(terminated, ind_maxparen,
7492 ind_maxcomment))
7495 * Found an unterminated line after a while ();, line up
7496 * with the last one.
7497 * while (cond);
7498 * 100 + <- line up with this one
7499 * -> here;
7501 if (lookfor == LOOKFOR_UNTERM
7502 || lookfor == LOOKFOR_ENUM_OR_INIT)
7504 if (cont_amount > 0)
7505 amount = cont_amount;
7506 else
7507 amount += ind_continuation;
7508 break;
7511 if (whilelevel == 0)
7513 lookfor = LOOKFOR_TERM;
7514 amount = get_indent(); /* XXX */
7515 if (theline[0] == '{')
7516 amount += ind_open_extra;
7518 ++whilelevel;
7522 * We are after a "normal" statement.
7523 * If we had another statement we can stop now and use the
7524 * indent of that other statement.
7525 * Otherwise the indent of the current statement may be used,
7526 * search backwards for the next "normal" statement.
7528 else
7531 * Skip single break line, if before a switch label. It
7532 * may be lined up with the case label.
7534 if (lookfor == LOOKFOR_NOBREAK
7535 && cin_isbreak(skipwhite(ml_get_curline())))
7537 lookfor = LOOKFOR_ANY;
7538 continue;
7542 * Handle "do {" line.
7544 if (whilelevel > 0)
7546 l = cin_skipcomment(ml_get_curline());
7547 if (cin_isdo(l))
7549 amount = get_indent(); /* XXX */
7550 --whilelevel;
7551 continue;
7556 * Found a terminated line above an unterminated line. Add
7557 * the amount for a continuation line.
7558 * x = 1;
7559 * y = foo +
7560 * -> here;
7561 * or
7562 * int x = 1;
7563 * int foo,
7564 * -> here;
7566 if (lookfor == LOOKFOR_UNTERM
7567 || lookfor == LOOKFOR_ENUM_OR_INIT)
7569 if (cont_amount > 0)
7570 amount = cont_amount;
7571 else
7572 amount += ind_continuation;
7573 break;
7577 * Found a terminated line above a terminated line or "if"
7578 * etc. line. Use the amount of the line below us.
7579 * x = 1; x = 1;
7580 * if (asdf) y = 2;
7581 * while (asdf) ->here;
7582 * here;
7583 * ->foo;
7585 if (lookfor == LOOKFOR_TERM)
7587 if (!lookfor_break && whilelevel == 0)
7588 break;
7592 * First line above the one we're indenting is terminated.
7593 * To know what needs to be done look further backward for
7594 * a terminated line.
7596 else
7599 * position the cursor over the rightmost paren, so
7600 * that matching it will take us back to the start of
7601 * the line. Helps for:
7602 * func(asdr,
7603 * asdfasdf);
7604 * here;
7606 term_again:
7607 l = ml_get_curline();
7608 if (find_last_paren(l, '(', ')')
7609 && (trypos = find_match_paren(ind_maxparen,
7610 ind_maxcomment)) != NULL)
7613 * Check if we are on a case label now. This is
7614 * handled above.
7615 * case xx: if ( asdf &&
7616 * asdf)
7618 curwin->w_cursor = *trypos;
7619 l = ml_get_curline();
7620 if (cin_iscase(l) || cin_isscopedecl(l))
7622 ++curwin->w_cursor.lnum;
7623 curwin->w_cursor.col = 0;
7624 continue;
7628 /* When aligning with the case statement, don't align
7629 * with a statement after it.
7630 * case 1: { <-- don't use this { position
7631 * stat;
7633 * case 2:
7634 * stat;
7637 iscase = (ind_keep_case_label && cin_iscase(l));
7640 * Get indent and pointer to text for current line,
7641 * ignoring any jump label.
7643 amount = skip_label(curwin->w_cursor.lnum,
7644 &l, ind_maxcomment);
7646 if (theline[0] == '{')
7647 amount += ind_open_extra;
7648 /* See remark above: "Only add ind_open_extra.." */
7649 l = skipwhite(l);
7650 if (*l == '{')
7651 amount -= ind_open_extra;
7652 lookfor = iscase ? LOOKFOR_ANY : LOOKFOR_TERM;
7655 * When a terminated line starts with "else" skip to
7656 * the matching "if":
7657 * else 3;
7658 * indent this;
7659 * Need to use the scope of this "else". XXX
7660 * If whilelevel != 0 continue looking for a "do {".
7662 if (lookfor == LOOKFOR_TERM
7663 && *l != '}'
7664 && cin_iselse(l)
7665 && whilelevel == 0)
7667 if ((trypos = find_start_brace(ind_maxcomment))
7668 == NULL
7669 || find_match(LOOKFOR_IF, trypos->lnum,
7670 ind_maxparen, ind_maxcomment) == FAIL)
7671 break;
7672 continue;
7676 * If we're at the end of a block, skip to the start of
7677 * that block.
7679 curwin->w_cursor.col = 0;
7680 if (*cin_skipcomment(l) == '}'
7681 && (trypos = find_start_brace(ind_maxcomment))
7682 != NULL) /* XXX */
7684 curwin->w_cursor = *trypos;
7685 /* if not "else {" check for terminated again */
7686 /* but skip block for "} else {" */
7687 l = cin_skipcomment(ml_get_curline());
7688 if (*l == '}' || !cin_iselse(l))
7689 goto term_again;
7690 ++curwin->w_cursor.lnum;
7691 curwin->w_cursor.col = 0;
7699 /* add extra indent for a comment */
7700 if (cin_iscomment(theline))
7701 amount += ind_comment;
7705 * ok -- we're not inside any sort of structure at all!
7707 * this means we're at the top level, and everything should
7708 * basically just match where the previous line is, except
7709 * for the lines immediately following a function declaration,
7710 * which are K&R-style parameters and need to be indented.
7712 else
7715 * if our line starts with an open brace, forget about any
7716 * prevailing indent and make sure it looks like the start
7717 * of a function
7720 if (theline[0] == '{')
7722 amount = ind_first_open;
7726 * If the NEXT line is a function declaration, the current
7727 * line needs to be indented as a function type spec.
7728 * Don't do this if the current line looks like a comment
7729 * or if the current line is terminated, ie. ends in ';'.
7731 else if (cur_curpos.lnum < curbuf->b_ml.ml_line_count
7732 && !cin_nocode(theline)
7733 && !cin_ends_in(theline, (char_u *)":", NULL)
7734 && !cin_ends_in(theline, (char_u *)",", NULL)
7735 && cin_isfuncdecl(NULL, cur_curpos.lnum + 1)
7736 && !cin_isterminated(theline, FALSE, TRUE))
7738 amount = ind_func_type;
7740 else
7742 amount = 0;
7743 curwin->w_cursor = cur_curpos;
7745 /* search backwards until we find something we recognize */
7747 while (curwin->w_cursor.lnum > 1)
7749 curwin->w_cursor.lnum--;
7750 curwin->w_cursor.col = 0;
7752 l = ml_get_curline();
7755 * If we're in a comment now, skip to the start of the comment.
7756 */ /* XXX */
7757 if ((trypos = find_start_comment(ind_maxcomment)) != NULL)
7759 curwin->w_cursor.lnum = trypos->lnum + 1;
7760 curwin->w_cursor.col = 0;
7761 continue;
7765 * Are we at the start of a cpp base class declaration or
7766 * constructor initialization?
7767 */ /* XXX */
7768 n = FALSE;
7769 if (ind_cpp_baseclass != 0 && theline[0] != '{')
7771 n = cin_is_cpp_baseclass(&col);
7772 l = ml_get_curline();
7774 if (n)
7776 /* XXX */
7777 amount = get_baseclass_amount(col, ind_maxparen,
7778 ind_maxcomment, ind_cpp_baseclass);
7779 break;
7783 * Skip preprocessor directives and blank lines.
7785 if (cin_ispreproc_cont(&l, &curwin->w_cursor.lnum))
7786 continue;
7788 if (cin_nocode(l))
7789 continue;
7792 * If the previous line ends in ',', use one level of
7793 * indentation:
7794 * int foo,
7795 * bar;
7796 * do this before checking for '}' in case of eg.
7797 * enum foobar
7799 * ...
7800 * } foo,
7801 * bar;
7803 n = 0;
7804 if (cin_ends_in(l, (char_u *)",", NULL)
7805 || (*l != NUL && (n = l[STRLEN(l) - 1]) == '\\'))
7807 /* take us back to opening paren */
7808 if (find_last_paren(l, '(', ')')
7809 && (trypos = find_match_paren(ind_maxparen,
7810 ind_maxcomment)) != NULL)
7811 curwin->w_cursor = *trypos;
7813 /* For a line ending in ',' that is a continuation line go
7814 * back to the first line with a backslash:
7815 * char *foo = "bla\
7816 * bla",
7817 * here;
7819 while (n == 0 && curwin->w_cursor.lnum > 1)
7821 l = ml_get(curwin->w_cursor.lnum - 1);
7822 if (*l == NUL || l[STRLEN(l) - 1] != '\\')
7823 break;
7824 --curwin->w_cursor.lnum;
7825 curwin->w_cursor.col = 0;
7828 amount = get_indent(); /* XXX */
7830 if (amount == 0)
7831 amount = cin_first_id_amount();
7832 if (amount == 0)
7833 amount = ind_continuation;
7834 break;
7838 * If the line looks like a function declaration, and we're
7839 * not in a comment, put it the left margin.
7841 if (cin_isfuncdecl(NULL, cur_curpos.lnum)) /* XXX */
7842 break;
7843 l = ml_get_curline();
7846 * Finding the closing '}' of a previous function. Put
7847 * current line at the left margin. For when 'cino' has "fs".
7849 if (*skipwhite(l) == '}')
7850 break;
7852 /* (matching {)
7853 * If the previous line ends on '};' (maybe followed by
7854 * comments) align at column 0. For example:
7855 * char *string_array[] = { "foo",
7856 * / * x * / "b};ar" }; / * foobar * /
7858 if (cin_ends_in(l, (char_u *)"};", NULL))
7859 break;
7862 * If the PREVIOUS line is a function declaration, the current
7863 * line (and the ones that follow) needs to be indented as
7864 * parameters.
7866 if (cin_isfuncdecl(&l, curwin->w_cursor.lnum))
7868 amount = ind_param;
7869 break;
7873 * If the previous line ends in ';' and the line before the
7874 * previous line ends in ',' or '\', ident to column zero:
7875 * int foo,
7876 * bar;
7877 * indent_to_0 here;
7879 if (cin_ends_in(l, (char_u *)";", NULL))
7881 l = ml_get(curwin->w_cursor.lnum - 1);
7882 if (cin_ends_in(l, (char_u *)",", NULL)
7883 || (*l != NUL && l[STRLEN(l) - 1] == '\\'))
7884 break;
7885 l = ml_get_curline();
7889 * Doesn't look like anything interesting -- so just
7890 * use the indent of this line.
7892 * Position the cursor over the rightmost paren, so that
7893 * matching it will take us back to the start of the line.
7895 find_last_paren(l, '(', ')');
7897 if ((trypos = find_match_paren(ind_maxparen,
7898 ind_maxcomment)) != NULL)
7899 curwin->w_cursor = *trypos;
7900 amount = get_indent(); /* XXX */
7901 break;
7904 /* add extra indent for a comment */
7905 if (cin_iscomment(theline))
7906 amount += ind_comment;
7908 /* add extra indent if the previous line ended in a backslash:
7909 * "asdfasdf\
7910 * here";
7911 * char *foo = "asdf\
7912 * here";
7914 if (cur_curpos.lnum > 1)
7916 l = ml_get(cur_curpos.lnum - 1);
7917 if (*l != NUL && l[STRLEN(l) - 1] == '\\')
7919 cur_amount = cin_get_equal_amount(cur_curpos.lnum - 1);
7920 if (cur_amount > 0)
7921 amount = cur_amount;
7922 else if (cur_amount == 0)
7923 amount += ind_continuation;
7929 theend:
7930 /* put the cursor back where it belongs */
7931 curwin->w_cursor = cur_curpos;
7933 vim_free(linecopy);
7935 if (amount < 0)
7936 return 0;
7937 return amount;
7940 static int
7941 find_match(lookfor, ourscope, ind_maxparen, ind_maxcomment)
7942 int lookfor;
7943 linenr_T ourscope;
7944 int ind_maxparen;
7945 int ind_maxcomment;
7947 char_u *look;
7948 pos_T *theirscope;
7949 char_u *mightbeif;
7950 int elselevel;
7951 int whilelevel;
7953 if (lookfor == LOOKFOR_IF)
7955 elselevel = 1;
7956 whilelevel = 0;
7958 else
7960 elselevel = 0;
7961 whilelevel = 1;
7964 curwin->w_cursor.col = 0;
7966 while (curwin->w_cursor.lnum > ourscope + 1)
7968 curwin->w_cursor.lnum--;
7969 curwin->w_cursor.col = 0;
7971 look = cin_skipcomment(ml_get_curline());
7972 if (cin_iselse(look)
7973 || cin_isif(look)
7974 || cin_isdo(look) /* XXX */
7975 || cin_iswhileofdo(look, curwin->w_cursor.lnum, ind_maxparen))
7978 * if we've gone outside the braces entirely,
7979 * we must be out of scope...
7981 theirscope = find_start_brace(ind_maxcomment); /* XXX */
7982 if (theirscope == NULL)
7983 break;
7986 * and if the brace enclosing this is further
7987 * back than the one enclosing the else, we're
7988 * out of luck too.
7990 if (theirscope->lnum < ourscope)
7991 break;
7994 * and if they're enclosed in a *deeper* brace,
7995 * then we can ignore it because it's in a
7996 * different scope...
7998 if (theirscope->lnum > ourscope)
7999 continue;
8002 * if it was an "else" (that's not an "else if")
8003 * then we need to go back to another if, so
8004 * increment elselevel
8006 look = cin_skipcomment(ml_get_curline());
8007 if (cin_iselse(look))
8009 mightbeif = cin_skipcomment(look + 4);
8010 if (!cin_isif(mightbeif))
8011 ++elselevel;
8012 continue;
8016 * if it was a "while" then we need to go back to
8017 * another "do", so increment whilelevel. XXX
8019 if (cin_iswhileofdo(look, curwin->w_cursor.lnum, ind_maxparen))
8021 ++whilelevel;
8022 continue;
8025 /* If it's an "if" decrement elselevel */
8026 look = cin_skipcomment(ml_get_curline());
8027 if (cin_isif(look))
8029 elselevel--;
8031 * When looking for an "if" ignore "while"s that
8032 * get in the way.
8034 if (elselevel == 0 && lookfor == LOOKFOR_IF)
8035 whilelevel = 0;
8038 /* If it's a "do" decrement whilelevel */
8039 if (cin_isdo(look))
8040 whilelevel--;
8043 * if we've used up all the elses, then
8044 * this must be the if that we want!
8045 * match the indent level of that if.
8047 if (elselevel <= 0 && whilelevel <= 0)
8049 return OK;
8053 return FAIL;
8056 # if defined(FEAT_EVAL) || defined(PROTO)
8058 * Get indent level from 'indentexpr'.
8061 get_expr_indent()
8063 int indent;
8064 pos_T pos;
8065 int save_State;
8066 int use_sandbox = was_set_insecurely((char_u *)"indentexpr",
8067 OPT_LOCAL);
8069 pos = curwin->w_cursor;
8070 set_vim_var_nr(VV_LNUM, curwin->w_cursor.lnum);
8071 if (use_sandbox)
8072 ++sandbox;
8073 ++textlock;
8074 indent = eval_to_number(curbuf->b_p_inde);
8075 if (use_sandbox)
8076 --sandbox;
8077 --textlock;
8079 /* Restore the cursor position so that 'indentexpr' doesn't need to.
8080 * Pretend to be in Insert mode, allow cursor past end of line for "o"
8081 * command. */
8082 save_State = State;
8083 State = INSERT;
8084 curwin->w_cursor = pos;
8085 check_cursor();
8086 State = save_State;
8088 /* If there is an error, just keep the current indent. */
8089 if (indent < 0)
8090 indent = get_indent();
8092 return indent;
8094 # endif
8096 #endif /* FEAT_CINDENT */
8098 #if defined(FEAT_LISP) || defined(PROTO)
8100 static int lisp_match __ARGS((char_u *p));
8102 static int
8103 lisp_match(p)
8104 char_u *p;
8106 char_u buf[LSIZE];
8107 int len;
8108 char_u *word = p_lispwords;
8110 while (*word != NUL)
8112 (void)copy_option_part(&word, buf, LSIZE, ",");
8113 len = (int)STRLEN(buf);
8114 if (STRNCMP(buf, p, len) == 0 && p[len] == ' ')
8115 return TRUE;
8117 return FALSE;
8121 * When 'p' is present in 'cpoptions, a Vi compatible method is used.
8122 * The incompatible newer method is quite a bit better at indenting
8123 * code in lisp-like languages than the traditional one; it's still
8124 * mostly heuristics however -- Dirk van Deun, dirk@rave.org
8126 * TODO:
8127 * Findmatch() should be adapted for lisp, also to make showmatch
8128 * work correctly: now (v5.3) it seems all C/C++ oriented:
8129 * - it does not recognize the #\( and #\) notations as character literals
8130 * - it doesn't know about comments starting with a semicolon
8131 * - it incorrectly interprets '(' as a character literal
8132 * All this messes up get_lisp_indent in some rare cases.
8133 * Update from Sergey Khorev:
8134 * I tried to fix the first two issues.
8137 get_lisp_indent()
8139 pos_T *pos, realpos, paren;
8140 int amount;
8141 char_u *that;
8142 colnr_T col;
8143 colnr_T firsttry;
8144 int parencount, quotecount;
8145 int vi_lisp;
8147 /* Set vi_lisp to use the vi-compatible method */
8148 vi_lisp = (vim_strchr(p_cpo, CPO_LISP) != NULL);
8150 realpos = curwin->w_cursor;
8151 curwin->w_cursor.col = 0;
8153 if ((pos = findmatch(NULL, '(')) == NULL)
8154 pos = findmatch(NULL, '[');
8155 else
8157 paren = *pos;
8158 pos = findmatch(NULL, '[');
8159 if (pos == NULL || ltp(pos, &paren))
8160 pos = &paren;
8162 if (pos != NULL)
8164 /* Extra trick: Take the indent of the first previous non-white
8165 * line that is at the same () level. */
8166 amount = -1;
8167 parencount = 0;
8169 while (--curwin->w_cursor.lnum >= pos->lnum)
8171 if (linewhite(curwin->w_cursor.lnum))
8172 continue;
8173 for (that = ml_get_curline(); *that != NUL; ++that)
8175 if (*that == ';')
8177 while (*(that + 1) != NUL)
8178 ++that;
8179 continue;
8181 if (*that == '\\')
8183 if (*(that + 1) != NUL)
8184 ++that;
8185 continue;
8187 if (*that == '"' && *(that + 1) != NUL)
8189 while (*++that && *that != '"')
8191 /* skipping escaped characters in the string */
8192 if (*that == '\\')
8194 if (*++that == NUL)
8195 break;
8196 if (that[1] == NUL)
8198 ++that;
8199 break;
8204 if (*that == '(' || *that == '[')
8205 ++parencount;
8206 else if (*that == ')' || *that == ']')
8207 --parencount;
8209 if (parencount == 0)
8211 amount = get_indent();
8212 break;
8216 if (amount == -1)
8218 curwin->w_cursor.lnum = pos->lnum;
8219 curwin->w_cursor.col = pos->col;
8220 col = pos->col;
8222 that = ml_get_curline();
8224 if (vi_lisp && get_indent() == 0)
8225 amount = 2;
8226 else
8228 amount = 0;
8229 while (*that && col)
8231 amount += lbr_chartabsize_adv(&that, (colnr_T)amount);
8232 col--;
8236 * Some keywords require "body" indenting rules (the
8237 * non-standard-lisp ones are Scheme special forms):
8239 * (let ((a 1)) instead (let ((a 1))
8240 * (...)) of (...))
8243 if (!vi_lisp && (*that == '(' || *that == '[')
8244 && lisp_match(that + 1))
8245 amount += 2;
8246 else
8248 that++;
8249 amount++;
8250 firsttry = amount;
8252 while (vim_iswhite(*that))
8254 amount += lbr_chartabsize(that, (colnr_T)amount);
8255 ++that;
8258 if (*that && *that != ';') /* not a comment line */
8260 /* test *that != '(' to accommodate first let/do
8261 * argument if it is more than one line */
8262 if (!vi_lisp && *that != '(' && *that != '[')
8263 firsttry++;
8265 parencount = 0;
8266 quotecount = 0;
8268 if (vi_lisp
8269 || (*that != '"'
8270 && *that != '\''
8271 && *that != '#'
8272 && (*that < '0' || *that > '9')))
8274 while (*that
8275 && (!vim_iswhite(*that)
8276 || quotecount
8277 || parencount)
8278 && (!((*that == '(' || *that == '[')
8279 && !quotecount
8280 && !parencount
8281 && vi_lisp)))
8283 if (*that == '"')
8284 quotecount = !quotecount;
8285 if ((*that == '(' || *that == '[')
8286 && !quotecount)
8287 ++parencount;
8288 if ((*that == ')' || *that == ']')
8289 && !quotecount)
8290 --parencount;
8291 if (*that == '\\' && *(that+1) != NUL)
8292 amount += lbr_chartabsize_adv(&that,
8293 (colnr_T)amount);
8294 amount += lbr_chartabsize_adv(&that,
8295 (colnr_T)amount);
8298 while (vim_iswhite(*that))
8300 amount += lbr_chartabsize(that, (colnr_T)amount);
8301 that++;
8303 if (!*that || *that == ';')
8304 amount = firsttry;
8310 else
8311 amount = 0; /* no matching '(' or '[' found, use zero indent */
8313 curwin->w_cursor = realpos;
8315 return amount;
8317 #endif /* FEAT_LISP */
8319 void
8320 prepare_to_exit()
8322 #if defined(SIGHUP) && defined(SIG_IGN)
8323 /* Ignore SIGHUP, because a dropped connection causes a read error, which
8324 * makes Vim exit and then handling SIGHUP causes various reentrance
8325 * problems. */
8326 signal(SIGHUP, SIG_IGN);
8327 #endif
8329 #ifdef FEAT_GUI
8330 if (gui.in_use)
8332 gui.dying = TRUE;
8333 out_trash(); /* trash any pending output */
8335 else
8336 #endif
8338 windgoto((int)Rows - 1, 0);
8341 * Switch terminal mode back now, so messages end up on the "normal"
8342 * screen (if there are two screens).
8344 settmode(TMODE_COOK);
8345 #ifdef WIN3264
8346 if (can_end_termcap_mode(FALSE) == TRUE)
8347 #endif
8348 stoptermcap();
8349 out_flush();
8354 * Preserve files and exit.
8355 * When called IObuff must contain a message.
8357 void
8358 preserve_exit()
8360 buf_T *buf;
8362 prepare_to_exit();
8364 /* Setting this will prevent free() calls. That avoids calling free()
8365 * recursively when free() was invoked with a bad pointer. */
8366 really_exiting = TRUE;
8368 out_str(IObuff);
8369 screen_start(); /* don't know where cursor is now */
8370 out_flush();
8372 ml_close_notmod(); /* close all not-modified buffers */
8374 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
8376 if (buf->b_ml.ml_mfp != NULL && buf->b_ml.ml_mfp->mf_fname != NULL)
8378 OUT_STR(_("Vim: preserving files...\n"));
8379 screen_start(); /* don't know where cursor is now */
8380 out_flush();
8381 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
8382 break;
8386 ml_close_all(FALSE); /* close all memfiles, without deleting */
8388 OUT_STR(_("Vim: Finished.\n"));
8390 getout(1);
8394 * return TRUE if "fname" exists.
8397 vim_fexists(fname)
8398 char_u *fname;
8400 struct stat st;
8402 if (mch_stat((char *)fname, &st))
8403 return FALSE;
8404 return TRUE;
8408 * Check for CTRL-C pressed, but only once in a while.
8409 * Should be used instead of ui_breakcheck() for functions that check for
8410 * each line in the file. Calling ui_breakcheck() each time takes too much
8411 * time, because it can be a system call.
8414 #ifndef BREAKCHECK_SKIP
8415 # ifdef FEAT_GUI /* assume the GUI only runs on fast computers */
8416 # define BREAKCHECK_SKIP 200
8417 # else
8418 # define BREAKCHECK_SKIP 32
8419 # endif
8420 #endif
8422 static int breakcheck_count = 0;
8424 void
8425 line_breakcheck()
8427 if (++breakcheck_count >= BREAKCHECK_SKIP)
8429 breakcheck_count = 0;
8430 ui_breakcheck();
8435 * Like line_breakcheck() but check 10 times less often.
8437 void
8438 fast_breakcheck()
8440 if (++breakcheck_count >= BREAKCHECK_SKIP * 10)
8442 breakcheck_count = 0;
8443 ui_breakcheck();
8448 * Expand wildcards. Calls gen_expand_wildcards() and removes files matching
8449 * 'wildignore'.
8450 * Returns OK or FAIL.
8453 expand_wildcards(num_pat, pat, num_file, file, flags)
8454 int num_pat; /* number of input patterns */
8455 char_u **pat; /* array of input patterns */
8456 int *num_file; /* resulting number of files */
8457 char_u ***file; /* array of resulting files */
8458 int flags; /* EW_DIR, etc. */
8460 int retval;
8461 int i, j;
8462 char_u *p;
8463 int non_suf_match; /* number without matching suffix */
8465 retval = gen_expand_wildcards(num_pat, pat, num_file, file, flags);
8467 /* When keeping all matches, return here */
8468 if (flags & EW_KEEPALL)
8469 return retval;
8471 #ifdef FEAT_WILDIGN
8473 * Remove names that match 'wildignore'.
8475 if (*p_wig)
8477 char_u *ffname;
8479 /* check all files in (*file)[] */
8480 for (i = 0; i < *num_file; ++i)
8482 ffname = FullName_save((*file)[i], FALSE);
8483 if (ffname == NULL) /* out of memory */
8484 break;
8485 # ifdef VMS
8486 vms_remove_version(ffname);
8487 # endif
8488 if (match_file_list(p_wig, (*file)[i], ffname))
8490 /* remove this matching file from the list */
8491 vim_free((*file)[i]);
8492 for (j = i; j + 1 < *num_file; ++j)
8493 (*file)[j] = (*file)[j + 1];
8494 --*num_file;
8495 --i;
8497 vim_free(ffname);
8500 #endif
8503 * Move the names where 'suffixes' match to the end.
8505 if (*num_file > 1)
8507 non_suf_match = 0;
8508 for (i = 0; i < *num_file; ++i)
8510 if (!match_suffix((*file)[i]))
8513 * Move the name without matching suffix to the front
8514 * of the list.
8516 p = (*file)[i];
8517 for (j = i; j > non_suf_match; --j)
8518 (*file)[j] = (*file)[j - 1];
8519 (*file)[non_suf_match++] = p;
8524 return retval;
8528 * Return TRUE if "fname" matches with an entry in 'suffixes'.
8531 match_suffix(fname)
8532 char_u *fname;
8534 int fnamelen, setsuflen;
8535 char_u *setsuf;
8536 #define MAXSUFLEN 30 /* maximum length of a file suffix */
8537 char_u suf_buf[MAXSUFLEN];
8539 fnamelen = (int)STRLEN(fname);
8540 setsuflen = 0;
8541 for (setsuf = p_su; *setsuf; )
8543 setsuflen = copy_option_part(&setsuf, suf_buf, MAXSUFLEN, ".,");
8544 if (setsuflen == 0)
8546 char_u *tail = gettail(fname);
8548 /* empty entry: match name without a '.' */
8549 if (vim_strchr(tail, '.') == NULL)
8551 setsuflen = 1;
8552 break;
8555 else
8557 if (fnamelen >= setsuflen
8558 && fnamencmp(suf_buf, fname + fnamelen - setsuflen,
8559 (size_t)setsuflen) == 0)
8560 break;
8561 setsuflen = 0;
8564 return (setsuflen != 0);
8567 #if !defined(NO_EXPANDPATH) || defined(PROTO)
8569 # ifdef VIM_BACKTICK
8570 static int vim_backtick __ARGS((char_u *p));
8571 static int expand_backtick __ARGS((garray_T *gap, char_u *pat, int flags));
8572 # endif
8574 # if defined(MSDOS) || defined(FEAT_GUI_W16) || defined(WIN3264)
8576 * File name expansion code for MS-DOS, Win16 and Win32. It's here because
8577 * it's shared between these systems.
8579 # if defined(DJGPP) || defined(PROTO)
8580 # define _cdecl /* DJGPP doesn't have this */
8581 # else
8582 # ifdef __BORLANDC__
8583 # define _cdecl _RTLENTRYF
8584 # endif
8585 # endif
8588 * comparison function for qsort in dos_expandpath()
8590 static int _cdecl
8591 pstrcmp(const void *a, const void *b)
8593 return (pathcmp(*(char **)a, *(char **)b, -1));
8596 # ifndef WIN3264
8597 static void
8598 namelowcpy(
8599 char_u *d,
8600 char_u *s)
8602 # ifdef DJGPP
8603 if (USE_LONG_FNAME) /* don't lower case on Windows 95/NT systems */
8604 while (*s)
8605 *d++ = *s++;
8606 else
8607 # endif
8608 while (*s)
8609 *d++ = TOLOWER_LOC(*s++);
8610 *d = NUL;
8612 # endif
8615 * Recursively expand one path component into all matching files and/or
8616 * directories. Adds matches to "gap". Handles "*", "?", "[a-z]", "**", etc.
8617 * Return the number of matches found.
8618 * "path" has backslashes before chars that are not to be expanded, starting
8619 * at "path[wildoff]".
8620 * Return the number of matches found.
8621 * NOTE: much of this is identical to unix_expandpath(), keep in sync!
8623 static int
8624 dos_expandpath(
8625 garray_T *gap,
8626 char_u *path,
8627 int wildoff,
8628 int flags, /* EW_* flags */
8629 int didstar) /* expanded "**" once already */
8631 char_u *buf;
8632 char_u *path_end;
8633 char_u *p, *s, *e;
8634 int start_len = gap->ga_len;
8635 char_u *pat;
8636 regmatch_T regmatch;
8637 int starts_with_dot;
8638 int matches;
8639 int len;
8640 int starstar = FALSE;
8641 static int stardepth = 0; /* depth for "**" expansion */
8642 #ifdef WIN3264
8643 WIN32_FIND_DATA fb;
8644 HANDLE hFind = (HANDLE)0;
8645 # ifdef FEAT_MBYTE
8646 WIN32_FIND_DATAW wfb;
8647 WCHAR *wn = NULL; /* UCS-2 name, NULL when not used. */
8648 # endif
8649 #else
8650 struct ffblk fb;
8651 #endif
8652 char_u *matchname;
8653 int ok;
8655 /* Expanding "**" may take a long time, check for CTRL-C. */
8656 if (stardepth > 0)
8658 ui_breakcheck();
8659 if (got_int)
8660 return 0;
8663 /* make room for file name */
8664 buf = alloc((int)STRLEN(path) + BASENAMELEN + 5);
8665 if (buf == NULL)
8666 return 0;
8669 * Find the first part in the path name that contains a wildcard or a ~1.
8670 * Copy it into buf, including the preceding characters.
8672 p = buf;
8673 s = buf;
8674 e = NULL;
8675 path_end = path;
8676 while (*path_end != NUL)
8678 /* May ignore a wildcard that has a backslash before it; it will
8679 * be removed by rem_backslash() or file_pat_to_reg_pat() below. */
8680 if (path_end >= path + wildoff && rem_backslash(path_end))
8681 *p++ = *path_end++;
8682 else if (*path_end == '\\' || *path_end == ':' || *path_end == '/')
8684 if (e != NULL)
8685 break;
8686 s = p + 1;
8688 else if (path_end >= path + wildoff
8689 && vim_strchr((char_u *)"*?[~", *path_end) != NULL)
8690 e = p;
8691 #ifdef FEAT_MBYTE
8692 if (has_mbyte)
8694 len = (*mb_ptr2len)(path_end);
8695 STRNCPY(p, path_end, len);
8696 p += len;
8697 path_end += len;
8699 else
8700 #endif
8701 *p++ = *path_end++;
8703 e = p;
8704 *e = NUL;
8706 /* now we have one wildcard component between s and e */
8707 /* Remove backslashes between "wildoff" and the start of the wildcard
8708 * component. */
8709 for (p = buf + wildoff; p < s; ++p)
8710 if (rem_backslash(p))
8712 STRMOVE(p, p + 1);
8713 --e;
8714 --s;
8717 /* Check for "**" between "s" and "e". */
8718 for (p = s; p < e; ++p)
8719 if (p[0] == '*' && p[1] == '*')
8720 starstar = TRUE;
8722 starts_with_dot = (*s == '.');
8723 pat = file_pat_to_reg_pat(s, e, NULL, FALSE);
8724 if (pat == NULL)
8726 vim_free(buf);
8727 return 0;
8730 /* compile the regexp into a program */
8731 regmatch.rm_ic = TRUE; /* Always ignore case */
8732 regmatch.regprog = vim_regcomp(pat, RE_MAGIC);
8733 vim_free(pat);
8735 if (regmatch.regprog == NULL)
8737 vim_free(buf);
8738 return 0;
8741 /* remember the pattern or file name being looked for */
8742 matchname = vim_strsave(s);
8744 /* If "**" is by itself, this is the first time we encounter it and more
8745 * is following then find matches without any directory. */
8746 if (!didstar && stardepth < 100 && starstar && e - s == 2
8747 && *path_end == '/')
8749 STRCPY(s, path_end + 1);
8750 ++stardepth;
8751 (void)dos_expandpath(gap, buf, (int)(s - buf), flags, TRUE);
8752 --stardepth;
8755 /* Scan all files in the directory with "dir/ *.*" */
8756 STRCPY(s, "*.*");
8757 #ifdef WIN3264
8758 # ifdef FEAT_MBYTE
8759 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
8761 /* The active codepage differs from 'encoding'. Attempt using the
8762 * wide function. If it fails because it is not implemented fall back
8763 * to the non-wide version (for Windows 98) */
8764 wn = enc_to_utf16(buf, NULL);
8765 if (wn != NULL)
8767 hFind = FindFirstFileW(wn, &wfb);
8768 if (hFind == INVALID_HANDLE_VALUE
8769 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
8771 vim_free(wn);
8772 wn = NULL;
8777 if (wn == NULL)
8778 # endif
8779 hFind = FindFirstFile(buf, &fb);
8780 ok = (hFind != INVALID_HANDLE_VALUE);
8781 #else
8782 /* If we are expanding wildcards we try both files and directories */
8783 ok = (findfirst((char *)buf, &fb,
8784 (*path_end != NUL || (flags & EW_DIR)) ? FA_DIREC : 0) == 0);
8785 #endif
8787 while (ok)
8789 #ifdef WIN3264
8790 # ifdef FEAT_MBYTE
8791 if (wn != NULL)
8792 p = utf16_to_enc(wfb.cFileName, NULL); /* p is allocated here */
8793 else
8794 # endif
8795 p = (char_u *)fb.cFileName;
8796 #else
8797 p = (char_u *)fb.ff_name;
8798 #endif
8799 /* Ignore entries starting with a dot, unless when asked for. Accept
8800 * all entries found with "matchname". */
8801 if ((p[0] != '.' || starts_with_dot)
8802 && (matchname == NULL
8803 || vim_regexec(&regmatch, p, (colnr_T)0)))
8805 #ifdef WIN3264
8806 STRCPY(s, p);
8807 #else
8808 namelowcpy(s, p);
8809 #endif
8810 len = (int)STRLEN(buf);
8812 if (starstar && stardepth < 100)
8814 /* For "**" in the pattern first go deeper in the tree to
8815 * find matches. */
8816 STRCPY(buf + len, "/**");
8817 STRCPY(buf + len + 3, path_end);
8818 ++stardepth;
8819 (void)dos_expandpath(gap, buf, len + 1, flags, TRUE);
8820 --stardepth;
8823 STRCPY(buf + len, path_end);
8824 if (mch_has_exp_wildcard(path_end))
8826 /* need to expand another component of the path */
8827 /* remove backslashes for the remaining components only */
8828 (void)dos_expandpath(gap, buf, len + 1, flags, FALSE);
8830 else
8832 /* no more wildcards, check if there is a match */
8833 /* remove backslashes for the remaining components only */
8834 if (*path_end != 0)
8835 backslash_halve(buf + len + 1);
8836 if (mch_getperm(buf) >= 0) /* add existing file */
8837 addfile(gap, buf, flags);
8841 #ifdef WIN3264
8842 # ifdef FEAT_MBYTE
8843 if (wn != NULL)
8845 vim_free(p);
8846 ok = FindNextFileW(hFind, &wfb);
8848 else
8849 # endif
8850 ok = FindNextFile(hFind, &fb);
8851 #else
8852 ok = (findnext(&fb) == 0);
8853 #endif
8855 /* If no more matches and no match was used, try expanding the name
8856 * itself. Finds the long name of a short filename. */
8857 if (!ok && matchname != NULL && gap->ga_len == start_len)
8859 STRCPY(s, matchname);
8860 #ifdef WIN3264
8861 FindClose(hFind);
8862 # ifdef FEAT_MBYTE
8863 if (wn != NULL)
8865 vim_free(wn);
8866 wn = enc_to_utf16(buf, NULL);
8867 if (wn != NULL)
8868 hFind = FindFirstFileW(wn, &wfb);
8870 if (wn == NULL)
8871 # endif
8872 hFind = FindFirstFile(buf, &fb);
8873 ok = (hFind != INVALID_HANDLE_VALUE);
8874 #else
8875 ok = (findfirst((char *)buf, &fb,
8876 (*path_end != NUL || (flags & EW_DIR)) ? FA_DIREC : 0) == 0);
8877 #endif
8878 vim_free(matchname);
8879 matchname = NULL;
8883 #ifdef WIN3264
8884 FindClose(hFind);
8885 # ifdef FEAT_MBYTE
8886 vim_free(wn);
8887 # endif
8888 #endif
8889 vim_free(buf);
8890 vim_free(regmatch.regprog);
8891 vim_free(matchname);
8893 matches = gap->ga_len - start_len;
8894 if (matches > 0)
8895 qsort(((char_u **)gap->ga_data) + start_len, (size_t)matches,
8896 sizeof(char_u *), pstrcmp);
8897 return matches;
8901 mch_expandpath(
8902 garray_T *gap,
8903 char_u *path,
8904 int flags) /* EW_* flags */
8906 return dos_expandpath(gap, path, 0, flags, FALSE);
8908 # endif /* MSDOS || FEAT_GUI_W16 || WIN3264 */
8910 #if (defined(UNIX) && !defined(VMS)) || defined(USE_UNIXFILENAME) \
8911 || defined(PROTO)
8913 * Unix style wildcard expansion code.
8914 * It's here because it's used both for Unix and Mac.
8916 static int pstrcmp __ARGS((const void *, const void *));
8918 static int
8919 pstrcmp(a, b)
8920 const void *a, *b;
8922 return (pathcmp(*(char **)a, *(char **)b, -1));
8926 * Recursively expand one path component into all matching files and/or
8927 * directories. Adds matches to "gap". Handles "*", "?", "[a-z]", "**", etc.
8928 * "path" has backslashes before chars that are not to be expanded, starting
8929 * at "path + wildoff".
8930 * Return the number of matches found.
8931 * NOTE: much of this is identical to dos_expandpath(), keep in sync!
8934 unix_expandpath(gap, path, wildoff, flags, didstar)
8935 garray_T *gap;
8936 char_u *path;
8937 int wildoff;
8938 int flags; /* EW_* flags */
8939 int didstar; /* expanded "**" once already */
8941 char_u *buf;
8942 char_u *path_end;
8943 char_u *p, *s, *e;
8944 int start_len = gap->ga_len;
8945 char_u *pat;
8946 regmatch_T regmatch;
8947 int starts_with_dot;
8948 int matches;
8949 int len;
8950 int starstar = FALSE;
8951 static int stardepth = 0; /* depth for "**" expansion */
8953 DIR *dirp;
8954 struct dirent *dp;
8956 /* Expanding "**" may take a long time, check for CTRL-C. */
8957 if (stardepth > 0)
8959 ui_breakcheck();
8960 if (got_int)
8961 return 0;
8964 /* make room for file name */
8965 buf = alloc((int)STRLEN(path) + BASENAMELEN + 5);
8966 if (buf == NULL)
8967 return 0;
8970 * Find the first part in the path name that contains a wildcard.
8971 * Copy it into "buf", including the preceding characters.
8973 p = buf;
8974 s = buf;
8975 e = NULL;
8976 path_end = path;
8977 while (*path_end != NUL)
8979 /* May ignore a wildcard that has a backslash before it; it will
8980 * be removed by rem_backslash() or file_pat_to_reg_pat() below. */
8981 if (path_end >= path + wildoff && rem_backslash(path_end))
8982 *p++ = *path_end++;
8983 else if (*path_end == '/')
8985 if (e != NULL)
8986 break;
8987 s = p + 1;
8989 else if (path_end >= path + wildoff
8990 && vim_strchr((char_u *)"*?[{~$", *path_end) != NULL)
8991 e = p;
8992 #ifdef FEAT_MBYTE
8993 if (has_mbyte)
8995 len = (*mb_ptr2len)(path_end);
8996 STRNCPY(p, path_end, len);
8997 p += len;
8998 path_end += len;
9000 else
9001 #endif
9002 *p++ = *path_end++;
9004 e = p;
9005 *e = NUL;
9007 /* now we have one wildcard component between "s" and "e" */
9008 /* Remove backslashes between "wildoff" and the start of the wildcard
9009 * component. */
9010 for (p = buf + wildoff; p < s; ++p)
9011 if (rem_backslash(p))
9013 STRMOVE(p, p + 1);
9014 --e;
9015 --s;
9018 /* Check for "**" between "s" and "e". */
9019 for (p = s; p < e; ++p)
9020 if (p[0] == '*' && p[1] == '*')
9021 starstar = TRUE;
9023 /* convert the file pattern to a regexp pattern */
9024 starts_with_dot = (*s == '.');
9025 pat = file_pat_to_reg_pat(s, e, NULL, FALSE);
9026 if (pat == NULL)
9028 vim_free(buf);
9029 return 0;
9032 /* compile the regexp into a program */
9033 #ifdef CASE_INSENSITIVE_FILENAME
9034 regmatch.rm_ic = TRUE; /* Behave like Terminal.app */
9035 #else
9036 regmatch.rm_ic = FALSE; /* Don't ever ignore case */
9037 #endif
9038 regmatch.regprog = vim_regcomp(pat, RE_MAGIC);
9039 vim_free(pat);
9041 if (regmatch.regprog == NULL)
9043 vim_free(buf);
9044 return 0;
9047 /* If "**" is by itself, this is the first time we encounter it and more
9048 * is following then find matches without any directory. */
9049 if (!didstar && stardepth < 100 && starstar && e - s == 2
9050 && *path_end == '/')
9052 STRCPY(s, path_end + 1);
9053 ++stardepth;
9054 (void)unix_expandpath(gap, buf, (int)(s - buf), flags, TRUE);
9055 --stardepth;
9058 /* open the directory for scanning */
9059 *s = NUL;
9060 dirp = opendir(*buf == NUL ? "." : (char *)buf);
9062 /* Find all matching entries */
9063 if (dirp != NULL)
9065 for (;;)
9067 dp = readdir(dirp);
9068 if (dp == NULL)
9069 break;
9070 if ((dp->d_name[0] != '.' || starts_with_dot)
9071 && vim_regexec(&regmatch, (char_u *)dp->d_name, (colnr_T)0))
9073 STRCPY(s, dp->d_name);
9074 len = STRLEN(buf);
9076 if (starstar && stardepth < 100)
9078 /* For "**" in the pattern first go deeper in the tree to
9079 * find matches. */
9080 STRCPY(buf + len, "/**");
9081 STRCPY(buf + len + 3, path_end);
9082 ++stardepth;
9083 (void)unix_expandpath(gap, buf, len + 1, flags, TRUE);
9084 --stardepth;
9087 STRCPY(buf + len, path_end);
9088 if (mch_has_exp_wildcard(path_end)) /* handle more wildcards */
9090 /* need to expand another component of the path */
9091 /* remove backslashes for the remaining components only */
9092 (void)unix_expandpath(gap, buf, len + 1, flags, FALSE);
9094 else
9096 /* no more wildcards, check if there is a match */
9097 /* remove backslashes for the remaining components only */
9098 if (*path_end != NUL)
9099 backslash_halve(buf + len + 1);
9100 if (mch_getperm(buf) >= 0) /* add existing file */
9102 #ifdef MACOS_CONVERT
9103 size_t precomp_len = STRLEN(buf)+1;
9104 char_u *precomp_buf =
9105 mac_precompose_path(buf, precomp_len, &precomp_len);
9107 if (precomp_buf)
9109 mch_memmove(buf, precomp_buf, precomp_len);
9110 vim_free(precomp_buf);
9112 #endif
9113 addfile(gap, buf, flags);
9119 closedir(dirp);
9122 vim_free(buf);
9123 vim_free(regmatch.regprog);
9125 matches = gap->ga_len - start_len;
9126 if (matches > 0)
9127 qsort(((char_u **)gap->ga_data) + start_len, matches,
9128 sizeof(char_u *), pstrcmp);
9129 return matches;
9131 #endif
9134 * Generic wildcard expansion code.
9136 * Characters in "pat" that should not be expanded must be preceded with a
9137 * backslash. E.g., "/path\ with\ spaces/my\*star*"
9139 * Return FAIL when no single file was found. In this case "num_file" is not
9140 * set, and "file" may contain an error message.
9141 * Return OK when some files found. "num_file" is set to the number of
9142 * matches, "file" to the array of matches. Call FreeWild() later.
9145 gen_expand_wildcards(num_pat, pat, num_file, file, flags)
9146 int num_pat; /* number of input patterns */
9147 char_u **pat; /* array of input patterns */
9148 int *num_file; /* resulting number of files */
9149 char_u ***file; /* array of resulting files */
9150 int flags; /* EW_* flags */
9152 int i;
9153 garray_T ga;
9154 char_u *p;
9155 static int recursive = FALSE;
9156 int add_pat;
9159 * expand_env() is called to expand things like "~user". If this fails,
9160 * it calls ExpandOne(), which brings us back here. In this case, always
9161 * call the machine specific expansion function, if possible. Otherwise,
9162 * return FAIL.
9164 if (recursive)
9165 #ifdef SPECIAL_WILDCHAR
9166 return mch_expand_wildcards(num_pat, pat, num_file, file, flags);
9167 #else
9168 return FAIL;
9169 #endif
9171 #ifdef SPECIAL_WILDCHAR
9173 * If there are any special wildcard characters which we cannot handle
9174 * here, call machine specific function for all the expansion. This
9175 * avoids starting the shell for each argument separately.
9176 * For `=expr` do use the internal function.
9178 for (i = 0; i < num_pat; i++)
9180 if (vim_strpbrk(pat[i], (char_u *)SPECIAL_WILDCHAR) != NULL
9181 # ifdef VIM_BACKTICK
9182 && !(vim_backtick(pat[i]) && pat[i][1] == '=')
9183 # endif
9185 return mch_expand_wildcards(num_pat, pat, num_file, file, flags);
9187 #endif
9189 recursive = TRUE;
9192 * The matching file names are stored in a growarray. Init it empty.
9194 ga_init2(&ga, (int)sizeof(char_u *), 30);
9196 for (i = 0; i < num_pat; ++i)
9198 add_pat = -1;
9199 p = pat[i];
9201 #ifdef VIM_BACKTICK
9202 if (vim_backtick(p))
9203 add_pat = expand_backtick(&ga, p, flags);
9204 else
9205 #endif
9208 * First expand environment variables, "~/" and "~user/".
9210 if (vim_strpbrk(p, (char_u *)"$~") != NULL)
9212 p = expand_env_save_opt(p, TRUE);
9213 if (p == NULL)
9214 p = pat[i];
9215 #ifdef UNIX
9217 * On Unix, if expand_env() can't expand an environment
9218 * variable, use the shell to do that. Discard previously
9219 * found file names and start all over again.
9221 else if (vim_strpbrk(p, (char_u *)"$~") != NULL)
9223 vim_free(p);
9224 ga_clear_strings(&ga);
9225 i = mch_expand_wildcards(num_pat, pat, num_file, file,
9226 flags);
9227 recursive = FALSE;
9228 return i;
9230 #endif
9234 * If there are wildcards: Expand file names and add each match to
9235 * the list. If there is no match, and EW_NOTFOUND is given, add
9236 * the pattern.
9237 * If there are no wildcards: Add the file name if it exists or
9238 * when EW_NOTFOUND is given.
9240 if (mch_has_exp_wildcard(p))
9241 add_pat = mch_expandpath(&ga, p, flags);
9244 if (add_pat == -1 || (add_pat == 0 && (flags & EW_NOTFOUND)))
9246 char_u *t = backslash_halve_save(p);
9248 #if defined(MACOS_CLASSIC)
9249 slash_to_colon(t);
9250 #endif
9251 /* When EW_NOTFOUND is used, always add files and dirs. Makes
9252 * "vim c:/" work. */
9253 if (flags & EW_NOTFOUND)
9254 addfile(&ga, t, flags | EW_DIR | EW_FILE);
9255 else if (mch_getperm(t) >= 0)
9256 addfile(&ga, t, flags);
9257 vim_free(t);
9260 if (p != pat[i])
9261 vim_free(p);
9264 *num_file = ga.ga_len;
9265 *file = (ga.ga_data != NULL) ? (char_u **)ga.ga_data : (char_u **)"";
9267 recursive = FALSE;
9269 return (ga.ga_data != NULL) ? OK : FAIL;
9272 # ifdef VIM_BACKTICK
9275 * Return TRUE if we can expand this backtick thing here.
9277 static int
9278 vim_backtick(p)
9279 char_u *p;
9281 return (*p == '`' && *(p + 1) != NUL && *(p + STRLEN(p) - 1) == '`');
9285 * Expand an item in `backticks` by executing it as a command.
9286 * Currently only works when pat[] starts and ends with a `.
9287 * Returns number of file names found.
9289 static int
9290 expand_backtick(gap, pat, flags)
9291 garray_T *gap;
9292 char_u *pat;
9293 int flags; /* EW_* flags */
9295 char_u *p;
9296 char_u *cmd;
9297 char_u *buffer;
9298 int cnt = 0;
9299 int i;
9301 /* Create the command: lop off the backticks. */
9302 cmd = vim_strnsave(pat + 1, (int)STRLEN(pat) - 2);
9303 if (cmd == NULL)
9304 return 0;
9306 #ifdef FEAT_EVAL
9307 if (*cmd == '=') /* `={expr}`: Expand expression */
9308 buffer = eval_to_string(cmd + 1, &p, TRUE);
9309 else
9310 #endif
9311 buffer = get_cmd_output(cmd, NULL,
9312 (flags & EW_SILENT) ? SHELL_SILENT : 0);
9313 vim_free(cmd);
9314 if (buffer == NULL)
9315 return 0;
9317 cmd = buffer;
9318 while (*cmd != NUL)
9320 cmd = skipwhite(cmd); /* skip over white space */
9321 p = cmd;
9322 while (*p != NUL && *p != '\r' && *p != '\n') /* skip over entry */
9323 ++p;
9324 /* add an entry if it is not empty */
9325 if (p > cmd)
9327 i = *p;
9328 *p = NUL;
9329 addfile(gap, cmd, flags);
9330 *p = i;
9331 ++cnt;
9333 cmd = p;
9334 while (*cmd != NUL && (*cmd == '\r' || *cmd == '\n'))
9335 ++cmd;
9338 vim_free(buffer);
9339 return cnt;
9341 # endif /* VIM_BACKTICK */
9344 * Add a file to a file list. Accepted flags:
9345 * EW_DIR add directories
9346 * EW_FILE add files
9347 * EW_EXEC add executable files
9348 * EW_NOTFOUND add even when it doesn't exist
9349 * EW_ADDSLASH add slash after directory name
9351 void
9352 addfile(gap, f, flags)
9353 garray_T *gap;
9354 char_u *f; /* filename */
9355 int flags;
9357 char_u *p;
9358 int isdir;
9360 /* if the file/dir doesn't exist, may not add it */
9361 if (!(flags & EW_NOTFOUND) && mch_getperm(f) < 0)
9362 return;
9364 #ifdef FNAME_ILLEGAL
9365 /* if the file/dir contains illegal characters, don't add it */
9366 if (vim_strpbrk(f, (char_u *)FNAME_ILLEGAL) != NULL)
9367 return;
9368 #endif
9370 isdir = mch_isdir(f);
9371 if ((isdir && !(flags & EW_DIR)) || (!isdir && !(flags & EW_FILE)))
9372 return;
9374 /* If the file isn't executable, may not add it. Do accept directories. */
9375 if (!isdir && (flags & EW_EXEC) && !mch_can_exe(f))
9376 return;
9378 /* Make room for another item in the file list. */
9379 if (ga_grow(gap, 1) == FAIL)
9380 return;
9382 p = alloc((unsigned)(STRLEN(f) + 1 + isdir));
9383 if (p == NULL)
9384 return;
9386 STRCPY(p, f);
9387 #ifdef BACKSLASH_IN_FILENAME
9388 slash_adjust(p);
9389 #endif
9391 * Append a slash or backslash after directory names if none is present.
9393 #ifndef DONT_ADD_PATHSEP_TO_DIR
9394 if (isdir && (flags & EW_ADDSLASH))
9395 add_pathsep(p);
9396 #endif
9397 ((char_u **)gap->ga_data)[gap->ga_len++] = p;
9399 #endif /* !NO_EXPANDPATH */
9401 #if defined(VIM_BACKTICK) || defined(FEAT_EVAL) || defined(PROTO)
9403 #ifndef SEEK_SET
9404 # define SEEK_SET 0
9405 #endif
9406 #ifndef SEEK_END
9407 # define SEEK_END 2
9408 #endif
9411 * Get the stdout of an external command.
9412 * Returns an allocated string, or NULL for error.
9414 char_u *
9415 get_cmd_output(cmd, infile, flags)
9416 char_u *cmd;
9417 char_u *infile; /* optional input file name */
9418 int flags; /* can be SHELL_SILENT */
9420 char_u *tempname;
9421 char_u *command;
9422 char_u *buffer = NULL;
9423 int len;
9424 int i = 0;
9425 FILE *fd;
9427 if (check_restricted() || check_secure())
9428 return NULL;
9430 /* get a name for the temp file */
9431 if ((tempname = vim_tempname('o')) == NULL)
9433 EMSG(_(e_notmp));
9434 return NULL;
9437 /* Add the redirection stuff */
9438 command = make_filter_cmd(cmd, infile, tempname);
9439 if (command == NULL)
9440 goto done;
9443 * Call the shell to execute the command (errors are ignored).
9444 * Don't check timestamps here.
9446 ++no_check_timestamps;
9447 call_shell(command, SHELL_DOOUT | SHELL_EXPAND | flags);
9448 --no_check_timestamps;
9450 vim_free(command);
9453 * read the names from the file into memory
9455 # ifdef VMS
9456 /* created temporary file is not always readable as binary */
9457 fd = mch_fopen((char *)tempname, "r");
9458 # else
9459 fd = mch_fopen((char *)tempname, READBIN);
9460 # endif
9462 if (fd == NULL)
9464 EMSG2(_(e_notopen), tempname);
9465 goto done;
9468 fseek(fd, 0L, SEEK_END);
9469 len = ftell(fd); /* get size of temp file */
9470 fseek(fd, 0L, SEEK_SET);
9472 buffer = alloc(len + 1);
9473 if (buffer != NULL)
9474 i = (int)fread((char *)buffer, (size_t)1, (size_t)len, fd);
9475 fclose(fd);
9476 mch_remove(tempname);
9477 if (buffer == NULL)
9478 goto done;
9479 #ifdef VMS
9480 len = i; /* VMS doesn't give us what we asked for... */
9481 #endif
9482 if (i != len)
9484 EMSG2(_(e_notread), tempname);
9485 vim_free(buffer);
9486 buffer = NULL;
9488 else
9489 buffer[len] = '\0'; /* make sure the buffer is terminated */
9491 done:
9492 vim_free(tempname);
9493 return buffer;
9495 #endif
9498 * Free the list of files returned by expand_wildcards() or other expansion
9499 * functions.
9501 void
9502 FreeWild(count, files)
9503 int count;
9504 char_u **files;
9506 if (count <= 0 || files == NULL)
9507 return;
9508 #if defined(__EMX__) && defined(__ALWAYS_HAS_TRAILING_NULL_POINTER) /* XXX */
9510 * Is this still OK for when other functions than expand_wildcards() have
9511 * been used???
9513 _fnexplodefree((char **)files);
9514 #else
9515 while (count--)
9516 vim_free(files[count]);
9517 vim_free(files);
9518 #endif
9522 * return TRUE when need to go to Insert mode because of 'insertmode'.
9523 * Don't do this when still processing a command or a mapping.
9524 * Don't do this when inside a ":normal" command.
9527 goto_im()
9529 return (p_im && stuff_empty() && typebuf_typed());