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.
11 * misc1.c: functions that didn't seem to fit elsewhere
18 # include <fcntl.h> /* for chdir() */
21 static char_u
*vim_version_dir
__ARGS((char_u
*vimdir
));
22 static char_u
*remove_tail
__ARGS((char_u
*p
, char_u
*pend
, char_u
*name
));
23 static int copy_indent
__ARGS((int size
, char_u
*src
));
26 * Count the size (in window cells) of the indent in the current line.
31 return get_indent_str(ml_get_curline(), (int)curbuf
->b_p_ts
);
35 * Count the size (in window cells) of the indent in line "lnum".
41 return get_indent_str(ml_get(lnum
), (int)curbuf
->b_p_ts
);
44 #if defined(FEAT_FOLDING) || defined(PROTO)
46 * Count the size (in window cells) of the indent in line "lnum" of buffer
50 get_indent_buf(buf
, lnum
)
54 return get_indent_str(ml_get_buf(buf
, lnum
, FALSE
), (int)buf
->b_p_ts
);
59 * count the size (in window cells) of the indent in line "ptr", with
63 get_indent_str(ptr
, ts
)
71 if (*ptr
== TAB
) /* count a tab for what it is worth */
72 count
+= ts
- (count
% ts
);
74 ++count
; /* count a space for one */
82 * Set the indent of the current line.
83 * Leaves the cursor on the first non-blank in the line.
84 * Caller must take care of undo.
86 * SIN_CHANGED: call changed_bytes() if the line was changed.
87 * SIN_INSERT: insert the indent in front of the line.
88 * SIN_UNDO: save line for undo before changing it.
89 * Returns TRUE if the line was changed.
92 set_indent(size
, flags
)
93 int size
; /* measured in spaces */
101 int ind_len
; /* measured in characters */
104 int ind_done
= 0; /* measured in spaces */
107 int orig_char_len
= -1; /* number of initial whitespace chars when
108 'et' and 'pi' are both set */
111 * First check if there is anything to do and compute the number of
112 * characters needed for the indent.
116 p
= oldline
= ml_get_curline();
118 /* Calculate the buffer size for the new indent, and check to see if it
119 * isn't already set */
121 /* if 'expandtab' isn't set: use TABs; if both 'expandtab' and
122 * 'preserveindent' are set count the number of characters at the
123 * beginning of the line to be copied */
124 if (!curbuf
->b_p_et
|| (!(flags
& SIN_INSERT
) && curbuf
->b_p_pi
))
126 /* If 'preserveindent' is set then reuse as much as possible of
127 * the existing indent structure for the new indent */
128 if (!(flags
& SIN_INSERT
) && curbuf
->b_p_pi
)
132 /* count as many characters as we can use */
133 while (todo
> 0 && vim_iswhite(*p
))
137 tab_pad
= (int)curbuf
->b_p_ts
138 - (ind_done
% (int)curbuf
->b_p_ts
);
139 /* stop if this tab will overshoot the target */
155 /* Set initial number of whitespace chars to copy if we are
156 * preserving indent but expandtab is set */
158 orig_char_len
= ind_len
;
160 /* Fill to next tabstop with a tab, if possible */
161 tab_pad
= (int)curbuf
->b_p_ts
- (ind_done
% (int)curbuf
->b_p_ts
);
162 if (todo
>= tab_pad
&& orig_char_len
== -1)
167 /* ind_done += tab_pad; */
171 /* count tabs required for indent */
172 while (todo
>= (int)curbuf
->b_p_ts
)
178 todo
-= (int)curbuf
->b_p_ts
;
180 /* ind_done += (int)curbuf->b_p_ts; */
183 /* count spaces required for indent */
195 /* Return if the indent is OK already. */
196 if (!doit
&& !vim_iswhite(*p
) && !(flags
& SIN_INSERT
))
199 /* Allocate memory for the new line. */
200 if (flags
& SIN_INSERT
)
204 line_len
= (int)STRLEN(p
) + 1;
206 /* If 'preserveindent' and 'expandtab' are both set keep the original
207 * characters and allocate accordingly. We will fill the rest with spaces
208 * after the if (!curbuf->b_p_et) below. */
209 if (orig_char_len
!= -1)
211 newline
= alloc(orig_char_len
+ size
- ind_done
+ line_len
);
214 todo
= size
- ind_done
;
215 ind_len
= orig_char_len
+ todo
; /* Set total length of indent in
216 * characters, which may have been
217 * undercounted until now */
220 while (orig_char_len
> 0)
226 /* Skip over any additional white space (useful when newindent is less
228 while (vim_iswhite(*p
))
235 newline
= alloc(ind_len
+ line_len
);
241 /* Put the characters in the new line. */
242 /* if 'expandtab' isn't set: use TABs */
245 /* If 'preserveindent' is set then reuse as much as possible of
246 * the existing indent structure for the new indent */
247 if (!(flags
& SIN_INSERT
) && curbuf
->b_p_pi
)
252 while (todo
> 0 && vim_iswhite(*p
))
256 tab_pad
= (int)curbuf
->b_p_ts
257 - (ind_done
% (int)curbuf
->b_p_ts
);
258 /* stop if this tab will overshoot the target */
272 /* Fill to next tabstop with a tab, if possible */
273 tab_pad
= (int)curbuf
->b_p_ts
- (ind_done
% (int)curbuf
->b_p_ts
);
283 while (todo
>= (int)curbuf
->b_p_ts
)
286 todo
-= (int)curbuf
->b_p_ts
;
294 mch_memmove(s
, p
, (size_t)line_len
);
296 /* Replace the line (unless undo fails). */
297 if (!(flags
& SIN_UNDO
) || u_savesub(curwin
->w_cursor
.lnum
) == OK
)
299 ml_replace(curwin
->w_cursor
.lnum
, newline
, FALSE
);
300 if (flags
& SIN_CHANGED
)
301 changed_bytes(curwin
->w_cursor
.lnum
, 0);
302 /* Correct saved cursor position if it's after the indent. */
303 if (saved_cursor
.lnum
== curwin
->w_cursor
.lnum
304 && saved_cursor
.col
>= (colnr_T
)(p
- oldline
))
305 saved_cursor
.col
+= ind_len
- (colnr_T
)(p
- oldline
);
311 curwin
->w_cursor
.col
= ind_len
;
316 * Copy the indent from ptr to the current line (and fill to size)
317 * Leaves the cursor on the first non-blank in the line.
318 * Returns TRUE if the line was changed.
321 copy_indent(size
, src
)
335 /* Round 1: compute the number of characters needed for the indent
336 * Round 2: copy the characters. */
337 for (round
= 1; round
<= 2; ++round
)
344 /* Count/copy the usable portion of the source line */
345 while (todo
> 0 && vim_iswhite(*s
))
349 tab_pad
= (int)curbuf
->b_p_ts
350 - (ind_done
% (int)curbuf
->b_p_ts
);
351 /* Stop if this tab will overshoot the target */
368 /* Fill to next tabstop with a tab, if possible */
369 tab_pad
= (int)curbuf
->b_p_ts
- (ind_done
% (int)curbuf
->b_p_ts
);
378 /* Add tabs required for indent */
379 while (todo
>= (int)curbuf
->b_p_ts
)
381 todo
-= (int)curbuf
->b_p_ts
;
387 /* Count/add spaces required for indent */
398 /* Allocate memory for the result: the copied indent, new indent
399 * and the rest of the line. */
400 line_len
= (int)STRLEN(ml_get_curline()) + 1;
401 line
= alloc(ind_len
+ line_len
);
408 /* Append the original line */
409 mch_memmove(p
, ml_get_curline(), (size_t)line_len
);
411 /* Replace the line */
412 ml_replace(curwin
->w_cursor
.lnum
, line
, FALSE
);
414 /* Put the cursor after the indent. */
415 curwin
->w_cursor
.col
= ind_len
;
420 * Return the indent of the current line after a number. Return -1 if no
421 * number was found. Used for 'n' in 'formatoptions': numbered list.
422 * Since a pattern is used it can actually handle more than numbers.
425 get_number_indent(lnum
)
430 regmmatch_T regmatch
;
432 if (lnum
> curbuf
->b_ml
.ml_line_count
)
435 regmatch
.regprog
= vim_regcomp(curbuf
->b_p_flp
, RE_MAGIC
);
436 if (regmatch
.regprog
!= NULL
)
438 regmatch
.rmm_ic
= FALSE
;
439 regmatch
.rmm_maxcol
= 0;
440 if (vim_regexec_multi(®match
, curwin
, curbuf
, lnum
,
443 pos
.lnum
= regmatch
.endpos
[0].lnum
+ lnum
;
444 pos
.col
= regmatch
.endpos
[0].col
;
445 #ifdef FEAT_VIRTUALEDIT
449 vim_free(regmatch
.regprog
);
452 if (pos
.lnum
== 0 || *ml_get_pos(&pos
) == NUL
)
454 getvcol(curwin
, &pos
, &col
, NULL
, NULL
);
458 #if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
460 static int cin_is_cinword
__ARGS((char_u
*line
));
463 * Return TRUE if the string "line" starts with a word from 'cinwords'.
475 cinw_len
= (int)STRLEN(curbuf
->b_p_cinw
) + 1;
476 cinw_buf
= alloc((unsigned)cinw_len
);
477 if (cinw_buf
!= NULL
)
479 line
= skipwhite(line
);
480 for (cinw
= curbuf
->b_p_cinw
; *cinw
; )
482 len
= copy_option_part(&cinw
, cinw_buf
, cinw_len
, ",");
483 if (STRNCMP(line
, cinw_buf
, len
) == 0
484 && (!vim_iswordc(line
[len
]) || !vim_iswordc(line
[len
- 1])))
497 * open_line: Add a new line below or above the current line.
499 * For VREPLACE mode, we only add a new line when we get to the end of the
500 * file, otherwise we just start replacing the next line.
502 * Caller must take care of undo. Since VREPLACE may affect any number of
503 * lines however, it may call u_save_cursor() again when starting to change a
505 * "flags": OPENLINE_DELSPACES delete spaces after cursor
506 * OPENLINE_DO_COM format comments
507 * OPENLINE_KEEPTRAIL keep trailing spaces
508 * OPENLINE_MARKFIX adjust mark positions after the line break
510 * Return TRUE for success, FALSE for failure
513 open_line(dir
, flags
, old_indent
)
514 int dir
; /* FORWARD or BACKWARD */
516 int old_indent
; /* indent for after ^^D in Insert mode */
518 char_u
*saved_line
; /* copy of the original line */
519 char_u
*next_line
= NULL
; /* copy of the next line */
520 char_u
*p_extra
= NULL
; /* what goes to next line */
521 int less_cols
= 0; /* less columns for mark in new line */
522 int less_cols_off
= 0; /* columns to skip for mark adjust */
523 pos_T old_cursor
; /* old cursor position */
524 int newcol
= 0; /* new cursor column */
525 int newindent
= 0; /* auto-indent of the new line */
527 int trunc_line
= FALSE
; /* truncate current line afterwards */
528 int retval
= FALSE
; /* return value, default is FAIL */
530 int extra_len
= 0; /* length of p_extra string */
531 int lead_len
; /* length of comment leader */
532 char_u
*lead_flags
; /* position in 'comments' for comment leader */
533 char_u
*leader
= NULL
; /* copy of comment leader */
535 char_u
*allocated
= NULL
; /* allocated memory */
536 #if defined(FEAT_SMARTINDENT) || defined(FEAT_VREPLACE) || defined(FEAT_LISP) \
537 || defined(FEAT_CINDENT) || defined(FEAT_COMMENTS)
540 int saved_char
= NUL
; /* init for GCC */
541 #if defined(FEAT_SMARTINDENT) || defined(FEAT_COMMENTS)
544 #ifdef FEAT_SMARTINDENT
545 int do_si
= (!p_paste
&& curbuf
->b_p_si
550 int no_si
= FALSE
; /* reset did_si afterwards */
551 int first_char
= NUL
; /* init for GCC */
553 #if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
556 int did_append
; /* appended a new line */
557 int saved_pi
= curbuf
->b_p_pi
; /* copy of preserveindent setting */
560 * make a copy of the current line so we can mess with it
562 saved_line
= vim_strsave(ml_get_curline());
563 if (saved_line
== NULL
) /* out of memory! */
567 if (State
& VREPLACE_FLAG
)
570 * With VREPLACE we make a copy of the next line, which we will be
571 * starting to replace. First make the new line empty and let vim play
572 * with the indenting and comment leader to its heart's content. Then
573 * we grab what it ended up putting on the new line, put back the
574 * original line, and call ins_char() to put each new character onto
575 * the line, replacing what was there before and pushing the right
576 * stuff onto the replace stack. -- webb.
578 if (curwin
->w_cursor
.lnum
< orig_line_count
)
579 next_line
= vim_strsave(ml_get(curwin
->w_cursor
.lnum
+ 1));
581 next_line
= vim_strsave((char_u
*)"");
582 if (next_line
== NULL
) /* out of memory! */
586 * In VREPLACE mode, a NL replaces the rest of the line, and starts
587 * replacing the next line, so push all of the characters left on the
588 * line onto the replace stack. We'll push any other characters that
589 * might be replaced at the start of the next line (due to autoindent
592 replace_push(NUL
); /* Call twice because BS over NL expects it */
594 p
= saved_line
+ curwin
->w_cursor
.col
;
599 p
+= replace_push_mb(p
);
604 saved_line
[curwin
->w_cursor
.col
] = NUL
;
610 && !(State
& VREPLACE_FLAG
)
614 p_extra
= saved_line
+ curwin
->w_cursor
.col
;
615 #ifdef FEAT_SMARTINDENT
616 if (do_si
) /* need first char after new line break */
618 p
= skipwhite(p_extra
);
623 extra_len
= (int)STRLEN(p_extra
);
625 saved_char
= *p_extra
;
629 u_clearline(); /* cannot do "U" command when adding lines */
630 #ifdef FEAT_SMARTINDENT
636 * If we just did an auto-indent, then we didn't type anything on
637 * the prior line, and it should be truncated. Do this even if 'ai' is not
638 * set because automatically inserting a comment leader also sets did_ai.
640 if (dir
== FORWARD
&& did_ai
)
644 * If 'autoindent' and/or 'smartindent' is set, try to figure out what
645 * indent to use for the new line.
648 #ifdef FEAT_SMARTINDENT
654 * count white space on current line
656 newindent
= get_indent_str(saved_line
, (int)curbuf
->b_p_ts
);
658 newindent
= old_indent
; /* for ^^D command in insert mode */
660 #ifdef FEAT_SMARTINDENT
662 * Do smart indenting.
663 * In insert/replace mode (only when dir == FORWARD)
664 * we may move some text to the next line. If it starts with '{'
665 * don't add an indent. Fixes inserting a NL before '{' in line
668 if (!trunc_line
&& do_si
&& *saved_line
!= NUL
669 && (p_extra
== NULL
|| first_char
!= '{'))
674 old_cursor
= curwin
->w_cursor
;
676 # ifdef FEAT_COMMENTS
677 if (flags
& OPENLINE_DO_COM
)
678 lead_len
= get_leader_len(ptr
, NULL
, FALSE
);
685 * Skip preprocessor directives, unless they are
686 * recognised as comments.
689 # ifdef FEAT_COMMENTS
694 while (ptr
[0] == '#' && curwin
->w_cursor
.lnum
> 1)
695 ptr
= ml_get(--curwin
->w_cursor
.lnum
);
696 newindent
= get_indent();
698 # ifdef FEAT_COMMENTS
699 if (flags
& OPENLINE_DO_COM
)
700 lead_len
= get_leader_len(ptr
, NULL
, FALSE
);
706 * This case gets the following right:
708 * * A comment (read '\' as '/').
711 * This should line up here;
714 if (p
[0] == '/' && p
[1] == '*')
720 if (p
[0] == '/' && p
[-1] == '*')
723 * End of C comment, indent should line up
724 * with the line containing the start of
727 curwin
->w_cursor
.col
= (colnr_T
)(p
- ptr
);
728 if ((pos
= findmatch(NULL
, NUL
)) != NULL
)
730 curwin
->w_cursor
.lnum
= pos
->lnum
;
731 newindent
= get_indent();
737 else /* Not a comment line */
740 /* Find last non-blank in line */
741 p
= ptr
+ STRLEN(ptr
) - 1;
742 while (p
> ptr
&& vim_iswhite(*p
))
747 * find the character just before the '{' or ';'
749 if (last_char
== '{' || last_char
== ';')
753 while (p
> ptr
&& vim_iswhite(*p
))
757 * Try to catch lines that are split over multiple
761 * Should line up here!
766 curwin
->w_cursor
.col
= (colnr_T
)(p
- ptr
);
767 if ((pos
= findmatch(NULL
, '(')) != NULL
)
769 curwin
->w_cursor
.lnum
= pos
->lnum
;
770 newindent
= get_indent();
771 ptr
= ml_get_curline();
775 * If last character is '{' do indent, without
776 * checking for "if" and the like.
778 if (last_char
== '{')
780 did_si
= TRUE
; /* do indent */
781 no_si
= TRUE
; /* don't delete it when '{' typed */
784 * Look for "if" and the like, use 'cinwords'.
785 * Don't do this if the previous line ended in ';' or
788 else if (last_char
!= ';' && last_char
!= '}'
789 && cin_is_cinword(ptr
))
793 else /* dir == BACKWARD */
796 * Skip preprocessor directives, unless they are
797 * recognised as comments.
800 # ifdef FEAT_COMMENTS
805 int was_backslashed
= FALSE
;
807 while ((ptr
[0] == '#' || was_backslashed
) &&
808 curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
)
810 if (*ptr
&& ptr
[STRLEN(ptr
) - 1] == '\\')
811 was_backslashed
= TRUE
;
813 was_backslashed
= FALSE
;
814 ptr
= ml_get(++curwin
->w_cursor
.lnum
);
817 newindent
= 0; /* Got to end of file */
819 newindent
= get_indent();
822 if (*p
== '}') /* if line starts with '}': do indent */
824 else /* can delete indent when '{' typed */
827 curwin
->w_cursor
= old_cursor
;
831 #endif /* FEAT_SMARTINDENT */
838 * Find out if the current line starts with a comment leader.
839 * This may then be inserted in front of the new line.
841 end_comment_pending
= NUL
;
842 if (flags
& OPENLINE_DO_COM
)
843 lead_len
= get_leader_len(saved_line
, &lead_flags
, dir
== BACKWARD
);
848 char_u
*lead_repl
= NULL
; /* replaces comment leader */
849 int lead_repl_len
= 0; /* length of *lead_repl */
850 char_u lead_middle
[COM_MAX_LEN
]; /* middle-comment string */
851 char_u lead_end
[COM_MAX_LEN
]; /* end-comment string */
852 char_u
*comment_end
= NULL
; /* where lead_end has been found */
853 int extra_space
= FALSE
; /* append extra space */
855 int require_blank
= FALSE
; /* requires blank after middle */
859 * If the comment leader has the start, middle or end flag, it may not
860 * be used or may be replaced with the middle leader.
862 for (p
= lead_flags
; *p
&& *p
!= ':'; ++p
)
866 require_blank
= TRUE
;
869 if (*p
== COM_START
|| *p
== COM_MIDDLE
)
875 * Doing "O" on a start of comment does not insert leader.
883 /* find start of middle part */
884 (void)copy_option_part(&p
, lead_middle
, COM_MAX_LEN
, ",");
885 require_blank
= FALSE
;
889 * Isolate the strings of the middle and end leader.
891 while (*p
&& p
[-1] != ':') /* find end of middle flags */
894 require_blank
= TRUE
;
897 (void)copy_option_part(&p
, lead_middle
, COM_MAX_LEN
, ",");
899 while (*p
&& p
[-1] != ':') /* find end of end flags */
901 /* Check whether we allow automatic ending of comments */
902 if (*p
== COM_AUTO_END
)
903 end_comment_pending
= -1; /* means we want to set it */
906 n
= copy_option_part(&p
, lead_end
, COM_MAX_LEN
, ",");
908 if (end_comment_pending
== -1) /* we can set it now */
909 end_comment_pending
= lead_end
[n
- 1];
912 * If the end of the comment is in the same line, don't use
913 * the comment leader.
917 for (p
= saved_line
+ lead_len
; *p
; ++p
)
918 if (STRNCMP(p
, lead_end
, n
) == 0)
927 * Doing "o" on a start of comment inserts the middle leader.
931 if (current_flag
== COM_START
)
933 lead_repl
= lead_middle
;
934 lead_repl_len
= (int)STRLEN(lead_middle
);
938 * If we have hit RETURN immediately after the start
939 * comment leader, then put a space after the middle
940 * comment leader on the next line.
942 if (!vim_iswhite(saved_line
[lead_len
- 1])
944 && (int)curwin
->w_cursor
.col
== lead_len
)
946 && saved_line
[lead_len
] == NUL
)
955 * Doing "o" on the end of a comment does not insert leader.
956 * Remember where the end is, might want to use it to find the
957 * start (for C-comments).
961 comment_end
= skipwhite(saved_line
);
967 * Doing "O" on the end of a comment inserts the middle leader.
968 * Find the string for the middle leader, searching backwards.
970 while (p
> curbuf
->b_p_com
&& *p
!= ',')
972 for (lead_repl
= p
; lead_repl
> curbuf
->b_p_com
973 && lead_repl
[-1] != ':'; --lead_repl
)
975 lead_repl_len
= (int)(p
- lead_repl
);
977 /* We can probably always add an extra space when doing "O" on
981 /* Check whether we allow automatic ending of comments */
982 for (p2
= p
; *p2
&& *p2
!= ':'; p2
++)
984 if (*p2
== COM_AUTO_END
)
985 end_comment_pending
= -1; /* means we want to set it */
987 if (end_comment_pending
== -1)
989 /* Find last character in end-comment string */
990 while (*p2
&& *p2
!= ',')
992 end_comment_pending
= p2
[-1];
999 * Comment leader for first line only: Don't repeat leader
1000 * when using "O", blank out leader when using "o".
1002 if (dir
== BACKWARD
)
1006 lead_repl
= (char_u
*)"";
1014 /* allocate buffer (may concatenate p_exta later) */
1015 leader
= alloc(lead_len
+ lead_repl_len
+ extra_space
+
1017 allocated
= leader
; /* remember to free it later */
1023 vim_strncpy(leader
, saved_line
, lead_len
);
1026 * Replace leader with lead_repl, right or left adjusted
1028 if (lead_repl
!= NULL
)
1033 for (p
= lead_flags
; *p
&& *p
!= ':'; ++p
)
1035 if (*p
== COM_RIGHT
|| *p
== COM_LEFT
)
1037 else if (VIM_ISDIGIT(*p
) || *p
== '-')
1038 off
= getdigits(&p
);
1040 if (c
== COM_RIGHT
) /* right adjusted leader */
1042 /* find last non-white in the leader to line up with */
1043 for (p
= leader
+ lead_len
- 1; p
> leader
1044 && vim_iswhite(*p
); --p
)
1049 /* Compute the length of the replaced characters in
1050 * screen characters, not bytes. */
1052 int repl_size
= vim_strnsize(lead_repl
,
1058 while (old_size
< repl_size
&& p
> leader
)
1060 mb_ptr_back(leader
, p
);
1061 old_size
+= ptr2cells(p
);
1063 l
= lead_repl_len
- (int)(endp
- p
);
1065 mch_memmove(endp
+ l
, endp
,
1066 (size_t)((leader
+ lead_len
) - endp
));
1070 if (p
< leader
+ lead_repl_len
)
1075 mch_memmove(p
, lead_repl
, (size_t)lead_repl_len
);
1076 if (p
+ lead_repl_len
> leader
+ lead_len
)
1077 p
[lead_repl_len
] = NUL
;
1079 /* blank-out any other chars from the old leader. */
1080 while (--p
>= leader
)
1083 int l
= mb_head_off(leader
, p
);
1088 if (ptr2cells(p
) > 1)
1093 mch_memmove(p
+ 1, p
+ l
+ 1,
1094 (size_t)((leader
+ lead_len
) - (p
+ l
+ 1)));
1100 if (!vim_iswhite(*p
))
1104 else /* left adjusted leader */
1106 p
= skipwhite(leader
);
1108 /* Compute the length of the replaced characters in
1109 * screen characters, not bytes. Move the part that is
1110 * not to be overwritten. */
1112 int repl_size
= vim_strnsize(lead_repl
,
1117 for (i
= 0; p
[i
] != NUL
&& i
< lead_len
; i
+= l
)
1119 l
= (*mb_ptr2len
)(p
+ i
);
1120 if (vim_strnsize(p
, i
+ l
) > repl_size
)
1123 if (i
!= lead_repl_len
)
1125 mch_memmove(p
+ lead_repl_len
, p
+ i
,
1126 (size_t)(lead_len
- i
- (leader
- p
)));
1127 lead_len
+= lead_repl_len
- i
;
1131 mch_memmove(p
, lead_repl
, (size_t)lead_repl_len
);
1133 /* Replace any remaining non-white chars in the old
1134 * leader by spaces. Keep Tabs, the indent must
1135 * remain the same. */
1136 for (p
+= lead_repl_len
; p
< leader
+ lead_len
; ++p
)
1137 if (!vim_iswhite(*p
))
1139 /* Don't put a space before a TAB. */
1140 if (p
+ 1 < leader
+ lead_len
&& p
[1] == TAB
)
1143 mch_memmove(p
, p
+ 1,
1144 (leader
+ lead_len
) - p
);
1149 int l
= (*mb_ptr2len
)(p
);
1153 if (ptr2cells(p
) > 1)
1155 /* Replace a double-wide char with
1160 mch_memmove(p
+ 1, p
+ l
,
1161 (leader
+ lead_len
) - p
);
1171 /* Recompute the indent, it may have changed. */
1173 #ifdef FEAT_SMARTINDENT
1177 newindent
= get_indent_str(leader
, (int)curbuf
->b_p_ts
);
1179 /* Add the indent offset */
1180 if (newindent
+ off
< 0)
1188 /* Correct trailing spaces for the shift, so that
1189 * alignment remains equal. */
1190 while (off
> 0 && lead_len
> 0
1191 && leader
[lead_len
- 1] == ' ')
1193 /* Don't do it when there is a tab before the space */
1194 if (vim_strchr(skipwhite(leader
), '\t') != NULL
)
1200 /* If the leader ends in white space, don't add an
1202 if (lead_len
> 0 && vim_iswhite(leader
[lead_len
- 1]))
1203 extra_space
= FALSE
;
1204 leader
[lead_len
] = NUL
;
1209 leader
[lead_len
++] = ' ';
1210 leader
[lead_len
] = NUL
;
1216 * if a new indent will be set below, remove the indent that
1217 * is in the comment leader
1220 #ifdef FEAT_SMARTINDENT
1225 while (lead_len
&& vim_iswhite(*leader
))
1234 #ifdef FEAT_SMARTINDENT
1235 did_si
= can_si
= FALSE
;
1238 else if (comment_end
!= NULL
)
1241 * We have finished a comment, so we don't use the leader.
1242 * If this was a C-comment and 'ai' or 'si' is set do a normal
1243 * indent to align with the line containing the start of the
1246 if (comment_end
[0] == '*' && comment_end
[1] == '/' &&
1248 #ifdef FEAT_SMARTINDENT
1253 old_cursor
= curwin
->w_cursor
;
1254 curwin
->w_cursor
.col
= (colnr_T
)(comment_end
- saved_line
);
1255 if ((pos
= findmatch(NULL
, NUL
)) != NULL
)
1257 curwin
->w_cursor
.lnum
= pos
->lnum
;
1258 newindent
= get_indent();
1260 curwin
->w_cursor
= old_cursor
;
1266 /* (State == INSERT || State == REPLACE), only when dir == FORWARD */
1267 if (p_extra
!= NULL
)
1269 *p_extra
= saved_char
; /* restore char that NUL replaced */
1272 * When 'ai' set or "flags" has OPENLINE_DELSPACES, skip to the first
1275 * When in REPLACE mode, put the deleted blanks on the replace stack,
1276 * preceded by a NUL, so they can be put back when a BS is entered.
1278 if (REPLACE_NORMAL(State
))
1279 replace_push(NUL
); /* end of extra blanks */
1280 if (curbuf
->b_p_ai
|| (flags
& OPENLINE_DELSPACES
))
1282 while ((*p_extra
== ' ' || *p_extra
== '\t')
1285 || !utf_iscomposing(utf_ptr2char(p_extra
+ 1)))
1289 if (REPLACE_NORMAL(State
))
1290 replace_push(*p_extra
);
1295 if (*p_extra
!= NUL
)
1296 did_ai
= FALSE
; /* append some text, don't truncate now */
1298 /* columns for marks adjusted for removed columns */
1299 less_cols
= (int)(p_extra
- saved_line
);
1302 if (p_extra
== NULL
)
1303 p_extra
= (char_u
*)""; /* append empty line */
1305 #ifdef FEAT_COMMENTS
1306 /* concatenate leader and p_extra, if there is a leader */
1309 STRCAT(leader
, p_extra
);
1311 did_ai
= TRUE
; /* So truncating blanks works with comments */
1312 less_cols
-= lead_len
;
1315 end_comment_pending
= NUL
; /* turns out there was no leader */
1318 old_cursor
= curwin
->w_cursor
;
1319 if (dir
== BACKWARD
)
1320 --curwin
->w_cursor
.lnum
;
1321 #ifdef FEAT_VREPLACE
1322 if (!(State
& VREPLACE_FLAG
) || old_cursor
.lnum
>= orig_line_count
)
1325 if (ml_append(curwin
->w_cursor
.lnum
, p_extra
, (colnr_T
)0, FALSE
)
1328 /* Postpone calling changed_lines(), because it would mess up folding
1330 mark_adjust(curwin
->w_cursor
.lnum
+ 1, (linenr_T
)MAXLNUM
, 1L, 0L);
1333 #ifdef FEAT_VREPLACE
1337 * In VREPLACE mode we are starting to replace the next line.
1339 curwin
->w_cursor
.lnum
++;
1340 if (curwin
->w_cursor
.lnum
>= Insstart
.lnum
+ vr_lines_changed
)
1342 /* In case we NL to a new line, BS to the previous one, and NL
1343 * again, we don't want to save the new line for undo twice.
1345 (void)u_save_cursor(); /* errors are ignored! */
1348 ml_replace(curwin
->w_cursor
.lnum
, p_extra
, TRUE
);
1349 changed_bytes(curwin
->w_cursor
.lnum
, 0);
1350 curwin
->w_cursor
.lnum
--;
1356 #ifdef FEAT_SMARTINDENT
1361 ++curwin
->w_cursor
.lnum
;
1362 #ifdef FEAT_SMARTINDENT
1366 newindent
-= newindent
% (int)curbuf
->b_p_sw
;
1367 newindent
+= (int)curbuf
->b_p_sw
;
1370 /* Copy the indent */
1373 (void)copy_indent(newindent
, saved_line
);
1376 * Set the 'preserveindent' option so that any further screwing
1377 * with the line doesn't entirely destroy our efforts to preserve
1378 * it. It gets restored at the function end.
1380 curbuf
->b_p_pi
= TRUE
;
1383 (void)set_indent(newindent
, SIN_INSERT
);
1384 less_cols
-= curwin
->w_cursor
.col
;
1386 ai_col
= curwin
->w_cursor
.col
;
1389 * In REPLACE mode, for each character in the new indent, there must
1390 * be a NUL on the replace stack, for when it is deleted with BS
1392 if (REPLACE_NORMAL(State
))
1393 for (n
= 0; n
< (int)curwin
->w_cursor
.col
; ++n
)
1395 newcol
+= curwin
->w_cursor
.col
;
1396 #ifdef FEAT_SMARTINDENT
1402 #ifdef FEAT_COMMENTS
1404 * In REPLACE mode, for each character in the extra leader, there must be
1405 * a NUL on the replace stack, for when it is deleted with BS.
1407 if (REPLACE_NORMAL(State
))
1408 while (lead_len
-- > 0)
1412 curwin
->w_cursor
= old_cursor
;
1416 if (trunc_line
|| (State
& INSERT
))
1418 /* truncate current line at cursor */
1419 saved_line
[curwin
->w_cursor
.col
] = NUL
;
1420 /* Remove trailing white space, unless OPENLINE_KEEPTRAIL used. */
1421 if (trunc_line
&& !(flags
& OPENLINE_KEEPTRAIL
))
1422 truncate_spaces(saved_line
);
1423 ml_replace(curwin
->w_cursor
.lnum
, saved_line
, FALSE
);
1427 changed_lines(curwin
->w_cursor
.lnum
, curwin
->w_cursor
.col
,
1428 curwin
->w_cursor
.lnum
+ 1, 1L);
1431 /* Move marks after the line break to the new line. */
1432 if (flags
& OPENLINE_MARKFIX
)
1433 mark_col_adjust(curwin
->w_cursor
.lnum
,
1434 curwin
->w_cursor
.col
+ less_cols_off
,
1435 1L, (long)-less_cols
);
1438 changed_bytes(curwin
->w_cursor
.lnum
, curwin
->w_cursor
.col
);
1442 * Put the cursor on the new line. Careful: the scrollup() above may
1443 * have moved w_cursor, we must use old_cursor.
1445 curwin
->w_cursor
.lnum
= old_cursor
.lnum
+ 1;
1448 changed_lines(curwin
->w_cursor
.lnum
, 0, curwin
->w_cursor
.lnum
, 1L);
1450 curwin
->w_cursor
.col
= newcol
;
1451 #ifdef FEAT_VIRTUALEDIT
1452 curwin
->w_cursor
.coladd
= 0;
1455 #if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
1457 * In VREPLACE mode, we are handling the replace stack ourselves, so stop
1458 * fixthisline() from doing it (via change_indent()) by telling it we're in
1459 * normal INSERT mode.
1461 if (State
& VREPLACE_FLAG
)
1463 vreplace_mode
= State
; /* So we know to put things right later */
1471 * May do lisp indenting.
1474 # ifdef FEAT_COMMENTS
1480 fixthisline(get_lisp_indent
);
1481 p
= ml_get_curline();
1482 ai_col
= (colnr_T
)(skipwhite(p
) - p
);
1487 * May do indenting after opening a new line.
1492 || *curbuf
->b_p_inde
!= NUL
1495 && in_cinkeys(dir
== FORWARD
1497 : KEY_OPEN_BACK
, ' ', linewhite(curwin
->w_cursor
.lnum
)))
1500 p
= ml_get_curline();
1501 ai_col
= (colnr_T
)(skipwhite(p
) - p
);
1504 #if defined(FEAT_VREPLACE) && (defined(FEAT_LISP) || defined(FEAT_CINDENT))
1505 if (vreplace_mode
!= 0)
1506 State
= vreplace_mode
;
1509 #ifdef FEAT_VREPLACE
1511 * Finally, VREPLACE gets the stuff on the new line, then puts back the
1512 * original line, and inserts the new stuff char by char, pushing old stuff
1513 * onto the replace stack (via ins_char()).
1515 if (State
& VREPLACE_FLAG
)
1517 /* Put new line in p_extra */
1518 p_extra
= vim_strsave(ml_get_curline());
1519 if (p_extra
== NULL
)
1522 /* Put back original line */
1523 ml_replace(curwin
->w_cursor
.lnum
, next_line
, FALSE
);
1525 /* Insert new stuff into line again */
1526 curwin
->w_cursor
.col
= 0;
1527 #ifdef FEAT_VIRTUALEDIT
1528 curwin
->w_cursor
.coladd
= 0;
1530 ins_bytes(p_extra
); /* will call changed_bytes() */
1536 retval
= TRUE
; /* success! */
1538 curbuf
->b_p_pi
= saved_pi
;
1539 vim_free(saved_line
);
1540 vim_free(next_line
);
1541 vim_free(allocated
);
1545 #if defined(FEAT_COMMENTS) || defined(PROTO)
1547 * get_leader_len() returns the length of the prefix of the given string
1548 * which introduces a comment. If this string is not a comment then 0 is
1550 * When "flags" is not NULL, it is set to point to the flags of the recognized
1552 * "backward" must be true for the "O" command.
1555 get_leader_len(line
, flags
, backward
)
1561 int got_com
= FALSE
;
1563 char_u part_buf
[COM_MAX_LEN
]; /* buffer for one option part */
1564 char_u
*string
; /* pointer to comment string */
1568 while (vim_iswhite(line
[i
])) /* leading white space is ignored */
1572 * Repeat to match several nested comment strings.
1577 * scan through the 'comments' option for a match
1580 for (list
= curbuf
->b_p_com
; *list
; )
1583 * Get one option part into part_buf[]. Advance list to next one.
1584 * put string at start of string.
1586 if (!got_com
&& flags
!= NULL
) /* remember where flags started */
1588 (void)copy_option_part(&list
, part_buf
, COM_MAX_LEN
, ",");
1589 string
= vim_strchr(part_buf
, ':');
1590 if (string
== NULL
) /* missing ':', ignore this part */
1592 *string
++ = NUL
; /* isolate flags from string */
1595 * When already found a nested comment, only accept further
1598 if (got_com
&& vim_strchr(part_buf
, COM_NEST
) == NULL
)
1601 /* When 'O' flag used don't use for "O" command */
1602 if (backward
&& vim_strchr(part_buf
, COM_NOBACK
) != NULL
)
1606 * Line contents and string must match.
1607 * When string starts with white space, must have some white space
1608 * (but the amount does not need to match, there might be a mix of
1611 if (vim_iswhite(string
[0]))
1613 if (i
== 0 || !vim_iswhite(line
[i
- 1]))
1615 while (vim_iswhite(string
[0]))
1618 for (j
= 0; string
[j
] != NUL
&& string
[j
] == line
[i
+ j
]; ++j
)
1620 if (string
[j
] != NUL
)
1624 * When 'b' flag used, there must be white space or an
1625 * end-of-line after the string in the line.
1627 if (vim_strchr(part_buf
, COM_BLANK
) != NULL
1628 && !vim_iswhite(line
[i
+ j
]) && line
[i
+ j
] != NUL
)
1632 * We have found a match, stop searching.
1641 * No match found, stop scanning.
1647 * Include any trailing white space.
1649 while (vim_iswhite(line
[i
]))
1653 * If this comment doesn't nest, stop here.
1655 if (vim_strchr(part_buf
, COM_NEST
) == NULL
)
1658 return (got_com
? i
: 0);
1663 * Return the number of window lines occupied by buffer line "lnum".
1669 return plines_win(curwin
, lnum
, TRUE
);
1673 plines_win(wp
, lnum
, winheight
)
1676 int winheight
; /* when TRUE limit to window height */
1678 #if defined(FEAT_DIFF) || defined(PROTO)
1679 /* Check for filler lines above this buffer line. When folded the result
1680 * is one line anyway. */
1681 return plines_win_nofill(wp
, lnum
, winheight
) + diff_check_fill(wp
, lnum
);
1688 return plines_win_nofill(curwin
, lnum
, TRUE
);
1692 plines_win_nofill(wp
, lnum
, winheight
)
1695 int winheight
; /* when TRUE limit to window height */
1703 #ifdef FEAT_VERTSPLIT
1704 if (wp
->w_width
== 0)
1709 /* A folded lines is handled just like an empty line. */
1710 /* NOTE: Caller must handle lines that are MAYBE folded. */
1711 if (lineFolded(wp
, lnum
) == TRUE
)
1715 lines
= plines_win_nofold(wp
, lnum
);
1716 if (winheight
> 0 && lines
> wp
->w_height
)
1717 return (int)wp
->w_height
;
1722 * Return number of window lines physical line "lnum" will occupy in window
1723 * "wp". Does not care about folding, 'wrap' or 'diff'.
1726 plines_win_nofold(wp
, lnum
)
1734 s
= ml_get_buf(wp
->w_buffer
, lnum
, FALSE
);
1735 if (*s
== NUL
) /* empty line */
1737 col
= win_linetabsize(wp
, s
, (colnr_T
)MAXCOL
);
1740 * If list mode is on, then the '$' at the end of the line may take up one
1743 if (wp
->w_p_list
&& lcs_eol
!= NUL
)
1747 * Add column offset for 'number' and 'foldcolumn'.
1749 width
= W_WIDTH(wp
) - win_col_off(wp
);
1755 width
+= win_col_off2(wp
);
1756 return (col
+ (width
- 1)) / width
+ 1;
1760 * Like plines_win(), but only reports the number of physical screen lines
1761 * used from the start of the line to the given column number.
1764 plines_win_col(wp
, lnum
, column
)
1775 /* Check for filler lines above this buffer line. When folded the result
1776 * is one line anyway. */
1777 lines
= diff_check_fill(wp
, lnum
);
1783 #ifdef FEAT_VERTSPLIT
1784 if (wp
->w_width
== 0)
1788 s
= ml_get_buf(wp
->w_buffer
, lnum
, FALSE
);
1791 while (*s
!= NUL
&& --column
>= 0)
1793 col
+= win_lbr_chartabsize(wp
, s
, (colnr_T
)col
, NULL
);
1798 * If *s is a TAB, and the TAB is not displayed as ^I, and we're not in
1799 * INSERT mode, then col must be adjusted so that it represents the last
1800 * screen position of the TAB. This only fixes an error when the TAB wraps
1801 * from one screen line to the next (when 'columns' is not a multiple of
1804 if (*s
== TAB
&& (State
& NORMAL
) && (!wp
->w_p_list
|| lcs_tab1
))
1805 col
+= win_lbr_chartabsize(wp
, s
, (colnr_T
)col
, NULL
) - 1;
1808 * Add column offset for 'number', 'foldcolumn', etc.
1810 width
= W_WIDTH(wp
) - win_col_off(wp
);
1816 lines
+= (col
- width
) / (width
+ win_col_off2(wp
)) + 1;
1821 plines_m_win(wp
, first
, last
)
1823 linenr_T first
, last
;
1827 while (first
<= last
)
1832 /* Check if there are any really folded lines, but also included lines
1833 * that are maybe folded. */
1834 x
= foldedCount(wp
, first
, NULL
);
1837 ++count
; /* count 1 for "+-- folded" line */
1844 if (first
== wp
->w_topline
)
1845 count
+= plines_win_nofill(wp
, first
, TRUE
) + wp
->w_topfill
;
1848 count
+= plines_win(wp
, first
, TRUE
);
1855 #if defined(FEAT_VREPLACE) || defined(FEAT_INS_EXPAND) || defined(PROTO)
1857 * Insert string "p" at the cursor position. Stops at a NUL byte.
1858 * Handles Replace mode and multi-byte characters.
1864 ins_bytes_len(p
, (int)STRLEN(p
));
1868 #if defined(FEAT_VREPLACE) || defined(FEAT_INS_EXPAND) \
1869 || defined(FEAT_COMMENTS) || defined(FEAT_MBYTE) || defined(PROTO)
1871 * Insert string "p" with length "len" at the cursor position.
1872 * Handles Replace mode and multi-byte characters.
1875 ins_bytes_len(p
, len
)
1883 for (i
= 0; i
< len
; i
+= n
)
1885 n
= (*mb_ptr2len
)(p
+ i
);
1886 ins_char_bytes(p
+ i
, n
);
1889 for (i
= 0; i
< len
; ++i
)
1896 * Insert or replace a single character at the cursor position.
1897 * When in REPLACE or VREPLACE mode, replace any existing character.
1898 * Caller must have prepared for undo.
1899 * For multi-byte characters we get the whole character, the caller must
1900 * convert bytes to a character.
1906 #if defined(FEAT_MBYTE) || defined(PROTO)
1907 char_u buf
[MB_MAXBYTES
];
1910 n
= (*mb_char2bytes
)(c
, buf
);
1912 /* When "c" is 0x100, 0x200, etc. we don't want to insert a NUL byte.
1913 * Happens for CTRL-Vu9900. */
1917 ins_char_bytes(buf
, n
);
1921 ins_char_bytes(buf
, charlen
)
1927 int newlen
; /* nr of bytes inserted */
1928 int oldlen
; /* nr of bytes deleted (0 when not replacing) */
1932 int linelen
; /* length of old line including NUL */
1934 linenr_T lnum
= curwin
->w_cursor
.lnum
;
1937 #ifdef FEAT_VIRTUALEDIT
1938 /* Break tabs if needed. */
1939 if (virtual_active() && curwin
->w_cursor
.coladd
> 0)
1940 coladvance_force(getviscol());
1943 col
= curwin
->w_cursor
.col
;
1944 oldp
= ml_get(lnum
);
1945 linelen
= (int)STRLEN(oldp
) + 1;
1947 /* The lengths default to the values for when not replacing. */
1955 if (State
& REPLACE_FLAG
)
1957 #ifdef FEAT_VREPLACE
1958 if (State
& VREPLACE_FLAG
)
1960 colnr_T new_vcol
= 0; /* init for GCC */
1968 * Disable 'list' temporarily, unless 'cpo' contains the 'L' flag.
1969 * Returns the old value of list, so when finished,
1970 * curwin->w_p_list should be set back to this.
1972 old_list
= curwin
->w_p_list
;
1973 if (old_list
&& vim_strchr(p_cpo
, CPO_LISTWM
) == NULL
)
1974 curwin
->w_p_list
= FALSE
;
1977 * In virtual replace mode each character may replace one or more
1978 * characters (zero if it's a TAB). Count the number of bytes to
1979 * be deleted to make room for the new character, counting screen
1980 * cells. May result in adding spaces to fill a gap.
1982 getvcol(curwin
, &curwin
->w_cursor
, NULL
, &vcol
, NULL
);
1987 new_vcol
= vcol
+ chartabsize(buf
, vcol
);
1988 while (oldp
[col
+ oldlen
] != NUL
&& vcol
< new_vcol
)
1990 vcol
+= chartabsize(oldp
+ col
+ oldlen
, vcol
);
1991 /* Don't need to remove a TAB that takes us to the right
1993 if (vcol
> new_vcol
&& oldp
[col
+ oldlen
] == TAB
)
1996 oldlen
+= (*mb_ptr2len
)(oldp
+ col
+ oldlen
);
2000 /* Deleted a bit too much, insert spaces. */
2001 if (vcol
> new_vcol
)
2002 newlen
+= vcol
- new_vcol
;
2004 curwin
->w_p_list
= old_list
;
2008 if (oldp
[col
] != NUL
)
2010 /* normal replace */
2012 oldlen
= (*mb_ptr2len
)(oldp
+ col
);
2019 /* Push the replaced bytes onto the replace stack, so that they can be
2020 * put back when BS is used. The bytes of a multi-byte character are
2021 * done the other way around, so that the first byte is popped off
2022 * first (it tells the byte length of the character). */
2024 for (i
= 0; i
< oldlen
; ++i
)
2028 i
+= replace_push_mb(oldp
+ col
+ i
) - 1;
2031 replace_push(oldp
[col
+ i
]);
2035 newp
= alloc_check((unsigned)(linelen
+ newlen
- oldlen
));
2039 /* Copy bytes before the cursor. */
2041 mch_memmove(newp
, oldp
, (size_t)col
);
2043 /* Copy bytes after the changed character(s). */
2045 mch_memmove(p
+ newlen
, oldp
+ col
+ oldlen
,
2046 (size_t)(linelen
- col
- oldlen
));
2048 /* Insert or overwrite the new character. */
2050 mch_memmove(p
, buf
, charlen
);
2057 /* Fill with spaces when necessary. */
2061 /* Replace the line in the buffer. */
2062 ml_replace(lnum
, newp
, FALSE
);
2064 /* mark the buffer as changed and prepare for displaying */
2065 changed_bytes(lnum
, col
);
2068 * If we're in Insert or Replace mode and 'showmatch' is set, then briefly
2069 * show the match for right parens and braces.
2071 if (p_sm
&& (State
& INSERT
)
2076 #ifdef FEAT_INS_EXPAND
2077 && !ins_compl_active()
2082 #ifdef FEAT_RIGHTLEFT
2083 if (!p_ri
|| (State
& REPLACE_FLAG
))
2086 /* Normal insert: move cursor right */
2088 curwin
->w_cursor
.col
+= charlen
;
2090 ++curwin
->w_cursor
.col
;
2094 * TODO: should try to update w_row here, to avoid recomputing it later.
2099 * Insert a string at the cursor position.
2100 * Note: Does NOT handle Replace mode.
2101 * Caller must have prepared for undo.
2107 char_u
*oldp
, *newp
;
2108 int newlen
= (int)STRLEN(s
);
2111 linenr_T lnum
= curwin
->w_cursor
.lnum
;
2113 #ifdef FEAT_VIRTUALEDIT
2114 if (virtual_active() && curwin
->w_cursor
.coladd
> 0)
2115 coladvance_force(getviscol());
2118 col
= curwin
->w_cursor
.col
;
2119 oldp
= ml_get(lnum
);
2120 oldlen
= (int)STRLEN(oldp
);
2122 newp
= alloc_check((unsigned)(oldlen
+ newlen
+ 1));
2126 mch_memmove(newp
, oldp
, (size_t)col
);
2127 mch_memmove(newp
+ col
, s
, (size_t)newlen
);
2128 mch_memmove(newp
+ col
+ newlen
, oldp
+ col
, (size_t)(oldlen
- col
+ 1));
2129 ml_replace(lnum
, newp
, FALSE
);
2130 changed_bytes(lnum
, col
);
2131 curwin
->w_cursor
.col
+= newlen
;
2135 * Delete one character under the cursor.
2136 * If "fixpos" is TRUE, don't leave the cursor on the NUL after the line.
2137 * Caller must have prepared for undo.
2139 * return FAIL for failure, OK otherwise
2148 /* Make sure the cursor is at the start of a character. */
2150 if (*ml_get_cursor() == NUL
)
2152 return del_chars(1L, fixpos
);
2155 return del_bytes(1L, fixpos
, TRUE
);
2158 #if defined(FEAT_MBYTE) || defined(PROTO)
2160 * Like del_bytes(), but delete characters instead of bytes.
2163 del_chars(count
, fixpos
)
2172 p
= ml_get_cursor();
2173 for (i
= 0; i
< count
&& *p
!= NUL
; ++i
)
2175 l
= (*mb_ptr2len
)(p
);
2179 return del_bytes(bytes
, fixpos
, TRUE
);
2184 * Delete "count" bytes under the cursor.
2185 * If "fixpos" is TRUE, don't leave the cursor on the NUL after the line.
2186 * Caller must have prepared for undo.
2188 * return FAIL for failure, OK otherwise
2192 del_bytes(count
, fixpos_arg
, use_delcombine
)
2195 int use_delcombine
; /* 'delcombine' option applies */
2197 char_u
*oldp
, *newp
;
2199 linenr_T lnum
= curwin
->w_cursor
.lnum
;
2200 colnr_T col
= curwin
->w_cursor
.col
;
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.
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
)
2223 (void)utfc_ptr2char(oldp
+ col
, cc
);
2226 /* Find the last composing char, there can be several. */
2231 count
= utf_ptr2len(oldp
+ n
);
2233 } while (UTF_COMPOSINGLIKE(oldp
+ col
, oldp
+ n
));
2240 * When count is too big, reduce it.
2242 movelen
= (long)oldlen
- (long)col
- count
+ 1; /* includes trailing NUL */
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
2256 --curwin
->w_cursor
.col
;
2257 #ifdef FEAT_VIRTUALEDIT
2258 curwin
->w_cursor
.coladd
= 0;
2262 curwin
->w_cursor
.col
-=
2263 (*mb_head_off
)(oldp
, oldp
+ curwin
->w_cursor
.col
);
2266 count
= oldlen
- col
;
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
2279 was_alloced
= FALSE
;
2282 was_alloced
= ml_line_alloced(); /* check if oldp was allocated */
2284 newp
= oldp
; /* use same allocated memory */
2286 { /* need to allocate a new line */
2287 newp
= alloc((unsigned)(oldlen
+ 1 - count
));
2290 mch_memmove(newp
, oldp
, (size_t)col
);
2292 mch_memmove(newp
+ col
, oldp
+ col
+ count
, (size_t)movelen
);
2294 ml_replace(lnum
, newp
, FALSE
);
2296 /* mark the buffer as changed and prepare for displaying */
2297 changed_bytes(lnum
, curwin
->w_cursor
.col
);
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 */
2313 linenr_T lnum
= curwin
->w_cursor
.lnum
;
2314 colnr_T col
= curwin
->w_cursor
.col
;
2317 newp
= vim_strsave((char_u
*)"");
2319 newp
= vim_strnsave(ml_get(lnum
), col
);
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
;
2339 * Delete "nlines" lines at the cursor.
2340 * Saves the lines for undo first if "undo" is TRUE.
2343 del_lines(nlines
, undo
)
2344 long nlines
; /* number of lines to delete */
2345 int undo
; /* if TRUE, prepare for undo */
2352 /* save the deleted lines for undo */
2353 if (undo
&& u_savedel(curwin
->w_cursor
.lnum
, nlines
) == FAIL
)
2356 for (n
= 0; n
< nlines
; )
2358 if (curbuf
->b_ml
.ml_flags
& ML_EMPTY
) /* nothing to delete */
2361 ml_delete(curwin
->w_cursor
.lnum
, TRUE
);
2364 /* If we delete the last line in the file, stop */
2365 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
2368 /* adjust marks, mark the buffer as changed and prepare for displaying */
2369 deleted_lines_mark(curwin
->w_cursor
.lnum
, n
);
2371 curwin
->w_cursor
.col
= 0;
2372 check_cursor_lnum();
2379 char_u
*ptr
= ml_get_pos(pos
);
2383 return (*mb_ptr2char
)(ptr
);
2393 return (*mb_ptr2char
)(ml_get_cursor());
2395 return (int)*ml_get_cursor();
2399 * Write a character at the current cursor position.
2400 * It is directly written into the block.
2406 *(ml_get_buf(curbuf
, curwin
->w_cursor
.lnum
, TRUE
)
2407 + curwin
->w_cursor
.col
) = c
;
2410 #if 0 /* not used */
2412 * Put *pos at end of current buffer
2420 pos
->lnum
= curbuf
->b_ml
.ml_line_count
;
2422 p
= ml_get(pos
->lnum
);
2429 * When extra == 0: Return TRUE if the cursor is before or on the first
2430 * non-blank in the line.
2431 * When extra == 1: Return TRUE if the cursor is before the first non-blank in
2441 for (col
= 0, ptr
= ml_get_curline(); vim_iswhite(*ptr
); ++col
)
2443 if (col
>= curwin
->w_cursor
.col
+ extra
)
2450 * Skip to next part of an option argument: Skip space and comma.
2453 skip_to_option_part(p
)
2464 * changed() is called when something in the current buffer is changed.
2466 * Most often called through changed_bytes() and changed_lines(), which also
2467 * mark the area of the display to be redrawn.
2472 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2473 /* The text of the preediting area is inserted, but this doesn't
2474 * mean a change of the buffer yet. That is delayed until the
2475 * text is committed. (this means preedit becomes empty) */
2476 if (im_is_preediting() && !xim_changed_while_preediting
)
2478 xim_changed_while_preediting
= FALSE
;
2481 if (!curbuf
->b_changed
)
2483 int save_msg_scroll
= msg_scroll
;
2485 /* Give a warning about changing a read-only file. This may also
2486 * check-out the file, thus change "curbuf"! */
2489 /* Create a swap file if that is wanted.
2490 * Don't do this for "nofile" and "nowrite" buffer types. */
2491 if (curbuf
->b_may_swap
2492 #ifdef FEAT_QUICKFIX
2493 && !bt_dontwrite(curbuf
)
2497 ml_open_file(curbuf
);
2499 /* The ml_open_file() can cause an ATTENTION message.
2500 * Wait two seconds, to make sure the user reads this unexpected
2501 * message. Since we could be anywhere, call wait_return() now,
2502 * and don't let the emsg() set msg_scroll. */
2503 if (need_wait_return
&& emsg_silent
== 0)
2506 ui_delay(2000L, TRUE
);
2508 msg_scroll
= save_msg_scroll
;
2511 curbuf
->b_changed
= TRUE
;
2512 ml_setflags(curbuf
);
2514 check_status(curbuf
);
2515 redraw_tabline
= TRUE
;
2518 need_maketitle
= TRUE
; /* set window title later */
2521 ++curbuf
->b_changedtick
;
2524 static void changedOneline
__ARGS((buf_T
*buf
, linenr_T lnum
));
2525 static void changed_lines_buf
__ARGS((buf_T
*buf
, linenr_T lnum
, linenr_T lnume
, long xtra
));
2526 static void changed_common
__ARGS((linenr_T lnum
, colnr_T col
, linenr_T lnume
, long xtra
));
2529 * Changed bytes within a single line for the current buffer.
2530 * - marks the windows on this buffer to be redisplayed
2531 * - marks the buffer changed by calling changed()
2532 * - invalidates cached values
2535 changed_bytes(lnum
, col
)
2539 changedOneline(curbuf
, lnum
);
2540 changed_common(lnum
, col
, lnum
+ 1, 0L);
2543 /* Diff highlighting in other diff windows may need to be updated too. */
2544 if (curwin
->w_p_diff
)
2549 for (wp
= firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
2550 if (wp
->w_p_diff
&& wp
!= curwin
)
2552 redraw_win_later(wp
, VALID
);
2553 wlnum
= diff_lnum_win(lnum
, wp
);
2555 changedOneline(wp
->w_buffer
, wlnum
);
2562 changedOneline(buf
, lnum
)
2568 /* find the maximum area that must be redisplayed */
2569 if (lnum
< buf
->b_mod_top
)
2570 buf
->b_mod_top
= lnum
;
2571 else if (lnum
>= buf
->b_mod_bot
)
2572 buf
->b_mod_bot
= lnum
+ 1;
2576 /* set the area that must be redisplayed to one line */
2577 buf
->b_mod_set
= TRUE
;
2578 buf
->b_mod_top
= lnum
;
2579 buf
->b_mod_bot
= lnum
+ 1;
2580 buf
->b_mod_xlines
= 0;
2585 * Appended "count" lines below line "lnum" in the current buffer.
2586 * Must be called AFTER the change and after mark_adjust().
2587 * Takes care of marking the buffer to be redrawn and sets the changed flag.
2590 appended_lines(lnum
, count
)
2594 changed_lines(lnum
+ 1, 0, lnum
+ 1, count
);
2598 * Like appended_lines(), but adjust marks first.
2601 appended_lines_mark(lnum
, count
)
2605 mark_adjust(lnum
+ 1, (linenr_T
)MAXLNUM
, count
, 0L);
2606 changed_lines(lnum
+ 1, 0, lnum
+ 1, count
);
2610 * Deleted "count" lines at line "lnum" in the current buffer.
2611 * Must be called AFTER the change and after mark_adjust().
2612 * Takes care of marking the buffer to be redrawn and sets the changed flag.
2615 deleted_lines(lnum
, count
)
2619 changed_lines(lnum
, 0, lnum
+ count
, -count
);
2623 * Like deleted_lines(), but adjust marks first.
2626 deleted_lines_mark(lnum
, count
)
2630 mark_adjust(lnum
, (linenr_T
)(lnum
+ count
- 1), (long)MAXLNUM
, -count
);
2631 changed_lines(lnum
, 0, lnum
+ count
, -count
);
2635 * Changed lines for the current buffer.
2636 * Must be called AFTER the change and after mark_adjust().
2637 * - mark the buffer changed by calling changed()
2638 * - mark the windows on this buffer to be redisplayed
2639 * - invalidate cached values
2640 * "lnum" is the first line that needs displaying, "lnume" the first line
2641 * below the changed lines (BEFORE the change).
2642 * When only inserting lines, "lnum" and "lnume" are equal.
2643 * Takes care of calling changed() and updating b_mod_*.
2646 changed_lines(lnum
, col
, lnume
, xtra
)
2647 linenr_T lnum
; /* first line with change */
2648 colnr_T col
; /* column in first line with change */
2649 linenr_T lnume
; /* line below last changed line */
2650 long xtra
; /* number of extra lines (negative when deleting) */
2652 changed_lines_buf(curbuf
, lnum
, lnume
, xtra
);
2655 if (xtra
== 0 && curwin
->w_p_diff
)
2657 /* When the number of lines doesn't change then mark_adjust() isn't
2658 * called and other diff buffers still need to be marked for
2663 for (wp
= firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
2664 if (wp
->w_p_diff
&& wp
!= curwin
)
2666 redraw_win_later(wp
, VALID
);
2667 wlnum
= diff_lnum_win(lnum
, wp
);
2669 changed_lines_buf(wp
->w_buffer
, wlnum
,
2670 lnume
- lnum
+ wlnum
, 0L);
2675 changed_common(lnum
, col
, lnume
, xtra
);
2679 changed_lines_buf(buf
, lnum
, lnume
, xtra
)
2681 linenr_T lnum
; /* first line with change */
2682 linenr_T lnume
; /* line below last changed line */
2683 long xtra
; /* number of extra lines (negative when deleting) */
2687 /* find the maximum area that must be redisplayed */
2688 if (lnum
< buf
->b_mod_top
)
2689 buf
->b_mod_top
= lnum
;
2690 if (lnum
< buf
->b_mod_bot
)
2692 /* adjust old bot position for xtra lines */
2693 buf
->b_mod_bot
+= xtra
;
2694 if (buf
->b_mod_bot
< lnum
)
2695 buf
->b_mod_bot
= lnum
;
2697 if (lnume
+ xtra
> buf
->b_mod_bot
)
2698 buf
->b_mod_bot
= lnume
+ xtra
;
2699 buf
->b_mod_xlines
+= xtra
;
2703 /* set the area that must be redisplayed */
2704 buf
->b_mod_set
= TRUE
;
2705 buf
->b_mod_top
= lnum
;
2706 buf
->b_mod_bot
= lnume
+ xtra
;
2707 buf
->b_mod_xlines
= xtra
;
2712 changed_common(lnum
, col
, lnume
, xtra
)
2720 #ifdef FEAT_JUMPLIST
2726 /* mark the buffer as modified */
2729 /* set the '. mark */
2730 if (!cmdmod
.keepjumps
)
2732 curbuf
->b_last_change
.lnum
= lnum
;
2733 curbuf
->b_last_change
.col
= col
;
2735 #ifdef FEAT_JUMPLIST
2736 /* Create a new entry if a new undo-able change was started or we
2737 * don't have an entry yet. */
2738 if (curbuf
->b_new_change
|| curbuf
->b_changelistlen
== 0)
2740 if (curbuf
->b_changelistlen
== 0)
2744 /* Don't create a new entry when the line number is the same
2745 * as the last one and the column is not too far away. Avoids
2746 * creating many entries for typing "xxxxx". */
2747 p
= &curbuf
->b_changelist
[curbuf
->b_changelistlen
- 1];
2748 if (p
->lnum
!= lnum
)
2752 cols
= comp_textwidth(FALSE
);
2755 add
= (p
->col
+ cols
< col
|| col
+ cols
< p
->col
);
2760 /* This is the first of a new sequence of undo-able changes
2761 * and it's at some distance of the last change. Use a new
2762 * position in the changelist. */
2763 curbuf
->b_new_change
= FALSE
;
2765 if (curbuf
->b_changelistlen
== JUMPLISTSIZE
)
2767 /* changelist is full: remove oldest entry */
2768 curbuf
->b_changelistlen
= JUMPLISTSIZE
- 1;
2769 mch_memmove(curbuf
->b_changelist
, curbuf
->b_changelist
+ 1,
2770 sizeof(pos_T
) * (JUMPLISTSIZE
- 1));
2773 /* Correct position in changelist for other windows on
2775 if (wp
->w_buffer
== curbuf
&& wp
->w_changelistidx
> 0)
2776 --wp
->w_changelistidx
;
2781 /* For other windows, if the position in the changelist is
2782 * at the end it stays at the end. */
2783 if (wp
->w_buffer
== curbuf
2784 && wp
->w_changelistidx
== curbuf
->b_changelistlen
)
2785 ++wp
->w_changelistidx
;
2787 ++curbuf
->b_changelistlen
;
2790 curbuf
->b_changelist
[curbuf
->b_changelistlen
- 1] =
2791 curbuf
->b_last_change
;
2792 /* The current window is always after the last change, so that "g,"
2793 * takes you back to it. */
2794 curwin
->w_changelistidx
= curbuf
->b_changelistlen
;
2800 if (wp
->w_buffer
== curbuf
)
2802 /* Mark this window to be redrawn later. */
2803 if (wp
->w_redr_type
< VALID
)
2804 wp
->w_redr_type
= VALID
;
2806 /* Check if a change in the buffer has invalidated the cached
2807 * values for the cursor. */
2810 * Update the folds for this window. Can't postpone this, because
2811 * a following operator might work on the whole fold: ">>dd".
2813 foldUpdate(wp
, lnum
, lnume
+ xtra
- 1);
2815 /* The change may cause lines above or below the change to become
2816 * included in a fold. Set lnum/lnume to the first/last line that
2817 * might be displayed differently.
2818 * Set w_cline_folded here as an efficient way to update it when
2819 * inserting lines just above a closed fold. */
2820 i
= hasFoldingWin(wp
, lnum
, &lnum
, NULL
, FALSE
, NULL
);
2821 if (wp
->w_cursor
.lnum
== lnum
)
2822 wp
->w_cline_folded
= i
;
2823 i
= hasFoldingWin(wp
, lnume
, NULL
, &lnume
, FALSE
, NULL
);
2824 if (wp
->w_cursor
.lnum
== lnume
)
2825 wp
->w_cline_folded
= i
;
2827 /* If the changed line is in a range of previously folded lines,
2828 * compare with the first line in that range. */
2829 if (wp
->w_cursor
.lnum
<= lnum
)
2831 i
= find_wl_entry(wp
, lnum
);
2832 if (i
>= 0 && wp
->w_cursor
.lnum
> wp
->w_lines
[i
].wl_lnum
)
2833 changed_line_abv_curs_win(wp
);
2837 if (wp
->w_cursor
.lnum
> lnum
)
2838 changed_line_abv_curs_win(wp
);
2839 else if (wp
->w_cursor
.lnum
== lnum
&& wp
->w_cursor
.col
>= col
)
2840 changed_cline_bef_curs_win(wp
);
2841 if (wp
->w_botline
>= lnum
)
2843 /* Assume that botline doesn't change (inserted lines make
2844 * other lines scroll down below botline). */
2845 approximate_botline_win(wp
);
2848 /* Check if any w_lines[] entries have become invalid.
2849 * For entries below the change: Correct the lnums for
2850 * inserted/deleted lines. Makes it possible to stop displaying
2851 * after the change. */
2852 for (i
= 0; i
< wp
->w_lines_valid
; ++i
)
2853 if (wp
->w_lines
[i
].wl_valid
)
2855 if (wp
->w_lines
[i
].wl_lnum
>= lnum
)
2857 if (wp
->w_lines
[i
].wl_lnum
< lnume
)
2859 /* line included in change */
2860 wp
->w_lines
[i
].wl_valid
= FALSE
;
2864 /* line below change */
2865 wp
->w_lines
[i
].wl_lnum
+= xtra
;
2867 wp
->w_lines
[i
].wl_lastlnum
+= xtra
;
2872 else if (wp
->w_lines
[i
].wl_lastlnum
>= lnum
)
2874 /* change somewhere inside this range of folded lines,
2875 * may need to be redrawn */
2876 wp
->w_lines
[i
].wl_valid
= FALSE
;
2883 /* Call update_screen() later, which checks out what needs to be redrawn,
2884 * since it notices b_mod_set and then uses b_mod_*. */
2885 if (must_redraw
< VALID
)
2886 must_redraw
= VALID
;
2889 /* when the cursor line is changed always trigger CursorMoved */
2890 if (lnum
<= curwin
->w_cursor
.lnum
2891 && lnume
+ (xtra
< 0 ? -xtra
: xtra
) > curwin
->w_cursor
.lnum
)
2892 last_cursormoved
.lnum
= 0;
2897 * unchanged() is called when the changed flag must be reset for buffer 'buf'
2902 int ff
; /* also reset 'fileformat' */
2904 if (buf
->b_changed
|| (ff
&& file_ff_differs(buf
)))
2912 redraw_tabline
= TRUE
;
2915 need_maketitle
= TRUE
; /* set window title later */
2918 ++buf
->b_changedtick
;
2919 #ifdef FEAT_NETBEANS_INTG
2920 netbeans_unmodified(buf
);
2924 #if defined(FEAT_WINDOWS) || defined(PROTO)
2926 * check_status: called when the status bars for the buffer 'buf'
2927 * need to be updated
2935 for (wp
= firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
2936 if (wp
->w_buffer
== buf
&& wp
->w_status_height
)
2938 wp
->w_redr_status
= TRUE
;
2939 if (must_redraw
< VALID
)
2940 must_redraw
= VALID
;
2946 * If the file is readonly, give a warning message with the first change.
2947 * Don't do this for autocommands.
2948 * Don't use emsg(), because it flushes the macro buffer.
2949 * If we have undone all changes b_changed will be FALSE, but "b_did_warn"
2954 int col
; /* column for message; non-zero when in insert
2955 mode and 'showmode' is on */
2957 if (curbuf
->b_did_warn
== FALSE
2958 && curbufIsChanged() == 0
2966 apply_autocmds(EVENT_FILECHANGEDRO
, NULL
, NULL
, FALSE
, curbuf
);
2968 if (!curbuf
->b_p_ro
)
2972 * Do what msg() does, but with a column offset if the warning should
2973 * be after the mode message.
2976 if (msg_row
== Rows
- 1)
2978 msg_source(hl_attr(HLF_W
));
2979 MSG_PUTS_ATTR(_("W10: Warning: Changing a readonly file"),
2980 hl_attr(HLF_W
) | MSG_HIST
);
2983 if (msg_silent
== 0 && !silent_mode
)
2986 ui_delay(1000L, TRUE
); /* give the user time to think about it */
2988 curbuf
->b_did_warn
= TRUE
;
2989 redraw_cmdline
= FALSE
; /* don't redraw and erase the message */
2990 if (msg_row
< Rows
- 1)
2996 * Ask for a reply from the user, a 'y' or a 'n'.
2997 * No other characters are accepted, the message is repeated until a valid
2998 * reply is entered or CTRL-C is hit.
2999 * If direct is TRUE, don't use vgetc() but ui_inchar(), don't get characters
3000 * from any buffers but directly from the user.
3002 * return the 'y' or 'n'
3005 ask_yesno(str
, direct
)
3010 int save_State
= State
;
3012 if (exiting
) /* put terminal in raw mode for this question */
3013 settmode(TMODE_RAW
);
3015 #ifdef USE_ON_FLY_SCROLL
3016 dont_scroll
= TRUE
; /* disallow scrolling here */
3018 State
= CONFIRM
; /* mouse behaves like with :confirm */
3020 setmouse(); /* disables mouse for xterm */
3023 ++allow_keys
; /* no mapping here, but recognize keys */
3025 while (r
!= 'y' && r
!= 'n')
3027 /* same highlighting as for wait_return */
3028 smsg_attr(hl_attr(HLF_R
), (char_u
*)"%s (y/n)?", str
);
3030 r
= get_keystroke();
3033 if (r
== Ctrl_C
|| r
== ESC
)
3035 msg_putchar(r
); /* show what you typed */
3050 * Get a key stroke directly from the user.
3051 * Ignores mouse clicks and scrollbar events, except a click for the left
3052 * button (used at the more prompt).
3053 * Doesn't use vgetc(), because it syncs undo and eats mapped characters.
3054 * Disadvantage: typeahead is ignored.
3055 * Translates the interrupt character for unix to ESC.
3061 char_u buf
[CBUFLEN
];
3064 int save_mapped_ctrl_c
= mapped_ctrl_c
;
3067 mapped_ctrl_c
= FALSE
; /* mappings are not used here */
3073 /* First time: blocking wait. Second time: wait up to 100ms for a
3074 * terminal code to complete. Leave some room for check_termcode() to
3075 * insert a key code into (max 5 chars plus NUL). And
3076 * fix_input_buffer() can triple the number of bytes. */
3077 n
= ui_inchar(buf
+ len
, (CBUFLEN
- 6 - len
) / 3,
3078 len
== 0 ? -1L : 100L, 0);
3081 /* Replace zero and CSI by a special key code. */
3082 n
= fix_input_buffer(buf
+ len
, n
, FALSE
);
3087 ++waited
; /* keep track of the waiting time */
3089 /* Incomplete termcode and not timed out yet: get more characters */
3090 if ((n
= check_termcode(1, buf
, len
)) < 0
3091 && (!p_ttimeout
|| waited
* 100L < (p_ttm
< 0 ? p_tm
: p_ttm
)))
3094 /* found a termcode: adjust length */
3097 if (len
== 0) /* nothing typed yet */
3100 /* Handle modifier and/or special key code. */
3104 n
= TO_SPECIAL(buf
[1], buf
[2]);
3105 if (buf
[1] == KS_MODIFIER
3108 || n
== K_LEFTMOUSE_NM
3110 || n
== K_LEFTRELEASE
3111 || n
== K_LEFTRELEASE_NM
3112 || n
== K_MIDDLEMOUSE
3113 || n
== K_MIDDLEDRAG
3114 || n
== K_MIDDLERELEASE
3115 || n
== K_RIGHTMOUSE
3117 || n
== K_RIGHTRELEASE
3127 || n
== K_VER_SCROLLBAR
3128 || n
== K_HOR_SCROLLBAR
3133 if (buf
[1] == KS_MODIFIER
)
3137 mch_memmove(buf
, buf
+ 3, (size_t)len
);
3145 if (MB_BYTE2LEN(n
) > len
)
3146 continue; /* more bytes to get */
3147 buf
[len
>= CBUFLEN
? CBUFLEN
- 1 : len
] = NUL
;
3148 n
= (*mb_ptr2char
)(buf
);
3158 mapped_ctrl_c
= save_mapped_ctrl_c
;
3163 * Get a number from the user.
3164 * When "mouse_used" is not NULL allow using the mouse.
3167 get_number(colon
, mouse_used
)
3168 int colon
; /* allow colon to abort */
3175 if (mouse_used
!= NULL
)
3176 *mouse_used
= FALSE
;
3178 /* When not printing messages, the user won't know what to type, return a
3179 * zero (as if CR was hit). */
3180 if (msg_silent
!= 0)
3183 #ifdef USE_ON_FLY_SCROLL
3184 dont_scroll
= TRUE
; /* disallow scrolling here */
3187 ++allow_keys
; /* no mapping here, but recognize keys */
3190 windgoto(msg_row
, msg_col
);
3194 n
= n
* 10 + c
- '0';
3198 else if (c
== K_DEL
|| c
== K_KDEL
|| c
== K_BS
|| c
== Ctrl_H
)
3208 else if (mouse_used
!= NULL
&& c
== K_LEFTMOUSE
)
3215 else if (n
== 0 && c
== ':' && colon
)
3217 stuffcharReadbuff(':');
3219 cmdline_row
= msg_row
;
3220 skip_redraw
= TRUE
; /* skip redraw once */
3224 else if (c
== CAR
|| c
== NL
|| c
== Ctrl_C
|| c
== ESC
)
3233 * Ask the user to enter a number.
3234 * When "mouse_used" is not NULL allow using the mouse and in that case return
3238 prompt_for_number(mouse_used
)
3242 int save_cmdline_row
;
3245 /* When using ":silent" assume that <CR> was entered. */
3246 if (mouse_used
!= NULL
)
3247 MSG_PUTS(_("Type number or click with mouse (<Enter> cancels): "));
3249 MSG_PUTS(_("Choice number (<Enter> cancels): "));
3251 /* Set the state such that text can be selected/copied/pasted and we still
3252 * get mouse events. */
3253 save_cmdline_row
= cmdline_row
;
3258 i
= get_number(TRUE
, mouse_used
);
3261 /* don't call wait_return() now */
3262 /* msg_putchar('\n'); */
3263 cmdline_row
= msg_row
- 1;
3264 need_wait_return
= FALSE
;
3268 cmdline_row
= save_cmdline_row
;
3280 if (global_busy
/* no messages now, wait until global is finished */
3281 || !messaging()) /* 'lazyredraw' set, don't do messages now */
3284 /* We don't want to overwrite another important message, but do overwrite
3285 * a previous "more lines" or "fewer lines" message, so that "5dd" and
3286 * then "put" reports the last action. */
3287 if (keep_msg
!= NULL
&& !keep_msg_more
)
3300 STRCPY(msg_buf
, _("1 more line"));
3302 STRCPY(msg_buf
, _("1 line less"));
3307 sprintf((char *)msg_buf
, _("%ld more lines"), pn
);
3309 sprintf((char *)msg_buf
, _("%ld fewer lines"), pn
);
3312 STRCAT(msg_buf
, _(" (Interrupted)"));
3315 set_keep_msg(msg_buf
, 0);
3316 keep_msg_more
= TRUE
;
3322 * flush map and typeahead buffers and give a warning for an error
3327 if (emsg_silent
== 0)
3329 flush_buffers(FALSE
);
3335 * give a warning for an error
3340 if (emsg_silent
== 0)
3344 /* While the GUI is starting up the termcap is set for the GUI
3345 * but the output still goes to a terminal. */
3346 && !(gui
.in_use
&& gui
.starting
)
3356 * The number of beeps outputted is reduced to avoid having to wait
3357 * for all the beeps to finish. This is only a problem on systems
3358 * where the beeps don't overlap.
3360 if (beep_count
== 0 || beep_count
== 10)
3372 /* When 'verbose' is set and we are sourcing a script or executing a
3373 * function give the user a hint where the beep comes from. */
3374 if (vim_strchr(p_debug
, 'e') != NULL
)
3376 msg_source(hl_attr(HLF_W
));
3377 msg_attr((char_u
*)_("Beep!"), hl_attr(HLF_W
));
3383 * To get the "real" home directory:
3384 * - get value of $HOME
3386 * - go to that directory
3387 * - do mch_dirname() to get the real name of that directory.
3388 * This also works with mounts and links.
3389 * Don't do this for MS-DOS, it will change the "current dir" for a drive.
3391 static char_u
*homedir
= NULL
;
3398 /* In case we are called a second time (when 'encoding' changes). */
3403 var
= mch_getenv((char_u
*)"SYS$LOGIN");
3405 var
= mch_getenv((char_u
*)"HOME");
3408 if (var
!= NULL
&& *var
== NUL
) /* empty is same as not set */
3413 * Weird but true: $HOME may contain an indirect reference to another
3414 * variable, esp. "%USERPROFILE%". Happens when $USERPROFILE isn't set
3415 * when $HOME is being set.
3417 if (var
!= NULL
&& *var
== '%')
3422 p
= vim_strchr(var
+ 1, '%');
3425 vim_strncpy(NameBuff
, var
+ 1, p
- (var
+ 1));
3426 exp
= mch_getenv(NameBuff
);
3427 if (exp
!= NULL
&& *exp
!= NUL
3428 && STRLEN(exp
) + STRLEN(p
) < MAXPATHL
)
3430 vim_snprintf((char *)NameBuff
, MAXPATHL
, "%s%s", exp
, p
+ 1);
3432 /* Also set $HOME, it's needed for _viminfo. */
3433 vim_setenv((char_u
*)"HOME", NameBuff
);
3439 * Typically, $HOME is not defined on Windows, unless the user has
3440 * specifically defined it for Vim's sake. However, on Windows NT
3441 * platforms, $HOMEDRIVE and $HOMEPATH are automatically defined for
3442 * each user. Try constructing $HOME from these.
3446 char_u
*homedrive
, *homepath
;
3448 homedrive
= mch_getenv((char_u
*)"HOMEDRIVE");
3449 homepath
= mch_getenv((char_u
*)"HOMEPATH");
3450 if (homedrive
!= NULL
&& homepath
!= NULL
3451 && STRLEN(homedrive
) + STRLEN(homepath
) < MAXPATHL
)
3453 sprintf((char *)NameBuff
, "%s%s", homedrive
, homepath
);
3454 if (NameBuff
[0] != NUL
)
3457 /* Also set $HOME, it's needed for _viminfo. */
3458 vim_setenv((char_u
*)"HOME", NameBuff
);
3463 # if defined(FEAT_MBYTE)
3464 if (enc_utf8
&& var
!= NULL
)
3469 /* Convert from active codepage to UTF-8. Other conversions are
3470 * not done, because they would fail for non-ASCII characters. */
3471 acp_to_enc(var
, (int)STRLEN(var
), &pp
, &len
);
3481 #if defined(OS2) || defined(MSDOS) || defined(MSWIN)
3483 * Default home dir is C:/
3484 * Best assumption we can make in such a situation.
3493 * Change to the directory and get the actual path. This resolves
3494 * links. Don't do it when we can't return.
3496 if (mch_dirname(NameBuff
, MAXPATHL
) == OK
3497 && mch_chdir((char *)NameBuff
) == 0)
3499 if (!mch_chdir((char *)var
) && mch_dirname(IObuff
, IOSIZE
) == OK
)
3501 if (mch_chdir((char *)NameBuff
) != 0)
3502 EMSG(_(e_prev_dir
));
3505 homedir
= vim_strsave(var
);
3509 #if defined(EXITFREE) || defined(PROTO)
3518 * Call expand_env() and store the result in an allocated string.
3519 * This is not very memory efficient, this expects the result to be freed
3523 expand_env_save(src
)
3526 return expand_env_save_opt(src
, FALSE
);
3530 * Idem, but when "one" is TRUE handle the string as one file name, only
3531 * expand "~" at the start.
3534 expand_env_save_opt(src
, one
)
3540 p
= alloc(MAXPATHL
);
3542 expand_env_esc(src
, p
, MAXPATHL
, FALSE
, one
, NULL
);
3547 * Expand environment variable with path name.
3548 * "~/" is also expanded, using $HOME. For Unix "~user/" is expanded.
3549 * Skips over "\ ", "\~" and "\$" (not for Win32 though).
3550 * If anything fails no expansion is done and dst equals src.
3553 expand_env(src
, dst
, dstlen
)
3554 char_u
*src
; /* input string e.g. "$HOME/vim.hlp" */
3555 char_u
*dst
; /* where to put the result */
3556 int dstlen
; /* maximum length of the result */
3558 expand_env_esc(src
, dst
, dstlen
, FALSE
, FALSE
, NULL
);
3562 expand_env_esc(srcp
, dst
, dstlen
, esc
, one
, startstr
)
3563 char_u
*srcp
; /* input string e.g. "$HOME/vim.hlp" */
3564 char_u
*dst
; /* where to put the result */
3565 int dstlen
; /* maximum length of the result */
3566 int esc
; /* escape spaces in expanded variables */
3567 int one
; /* "srcp" is one file name */
3568 char_u
*startstr
; /* start again after this (can be NULL) */
3575 int mustfree
; /* var was allocated, need to free it later */
3576 int at_start
= TRUE
; /* at start of a name */
3577 int startstr_len
= 0;
3579 if (startstr
!= NULL
)
3580 startstr_len
= (int)STRLEN(startstr
);
3582 src
= skipwhite(srcp
);
3583 --dstlen
; /* leave one char space for "\," */
3584 while (*src
&& dstlen
> 0)
3592 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3595 || (*src
== '~' && at_start
))
3600 * The variable name is copied into dst temporarily, because it may
3601 * be a string in read-only memory and a NUL needs to be appended.
3603 if (*src
!= '~') /* environment var */
3610 /* Unix has ${var-name} type environment vars */
3611 if (*tail
== '{' && !vim_isIDc('{'))
3613 tail
++; /* ignore '{' */
3614 while (c
-- > 0 && *tail
&& *tail
!= '}')
3620 while (c
-- > 0 && *tail
!= NUL
&& ((vim_isIDc(*tail
))
3621 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3622 || (*src
== '%' && *tail
!= '%')
3626 #ifdef OS2 /* env vars only in uppercase */
3627 *var
++ = TOUPPER_LOC(*tail
);
3628 tail
++; /* toupper() may be a macro! */
3635 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(UNIX)
3637 if (src
[1] == '{' && *tail
!= '}')
3639 if (*src
== '%' && *tail
!= '%')
3652 var
= vim_getenv(dst
, &mustfree
);
3653 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(UNIX)
3657 /* home directory */
3658 else if ( src
[1] == NUL
3659 || vim_ispathsep(src
[1])
3660 || vim_strchr((char_u
*)" ,\t\n", src
[1]) != NULL
)
3665 else /* user directory */
3667 #if defined(UNIX) || (defined(VMS) && defined(USER_HOME))
3669 * Copy ~user to dst[], so we can put a NUL after it.
3676 && vim_isfilec(*tail
)
3677 && !vim_ispathsep(*tail
))
3682 * If the system supports getpwnam(), use it.
3683 * Otherwise, or if getpwnam() fails, the shell is used to
3684 * expand ~user. This is slower and may fail if the shell
3685 * does not support ~user (old versions of /bin/sh).
3687 # if defined(HAVE_GETPWNAM) && defined(HAVE_PWD_H)
3691 /* Note: memory allocated by getpwnam() is never freed.
3692 * Calling endpwent() apparently doesn't help. */
3693 pw
= getpwnam((char *)dst
+ 1);
3695 var
= (char_u
*)pw
->pw_dir
;
3705 xpc
.xp_context
= EXPAND_FILES
;
3706 var
= ExpandOne(&xpc
, dst
, NULL
,
3707 WILD_ADD_SLASH
|WILD_SILENT
, WILD_EXPAND_FREE
);
3711 # else /* !UNIX, thus VMS */
3713 * USER_HOME is a comma-separated list of
3714 * directories to search for the user account in.
3717 char_u test
[MAXPATHL
], paths
[MAXPATHL
];
3718 char_u
*path
, *next_path
, *ptr
;
3721 STRCPY(paths
, USER_HOME
);
3725 for (path
= next_path
; *next_path
&& *next_path
!= ',';
3731 STRCAT(test
, dst
+ 1);
3732 if (mch_stat(test
, &st
) == 0)
3734 var
= alloc(STRLEN(test
) + 1);
3743 /* cannot expand user's home directory, so don't try */
3745 tail
= (char_u
*)""; /* for gcc */
3746 #endif /* UNIX || VMS */
3749 #ifdef BACKSLASH_IN_FILENAME
3750 /* If 'shellslash' is set change backslashes to forward slashes.
3751 * Can't use slash_adjust(), p_ssl may be set temporarily. */
3752 if (p_ssl
&& var
!= NULL
&& vim_strchr(var
, '\\') != NULL
)
3754 char_u
*p
= vim_strsave(var
);
3767 /* If "var" contains white space, escape it with a backslash.
3768 * Required for ":e ~/tt" when $HOME includes a space. */
3769 if (esc
&& var
!= NULL
&& vim_strpbrk(var
, (char_u
*)" \t") != NULL
)
3771 char_u
*p
= vim_strsave_escaped(var
, (char_u
*)" \t");
3782 if (var
!= NULL
&& *var
!= NUL
3783 && (STRLEN(var
) + STRLEN(tail
) + 1 < (unsigned)dstlen
))
3786 dstlen
-= (int)STRLEN(var
);
3787 c
= (int)STRLEN(var
);
3788 /* if var[] ends in a path separator and tail[] starts
3789 * with it, skip a character */
3790 if (*var
!= NUL
&& after_pathsep(dst
, dst
+ c
)
3791 #if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA)
3794 && vim_ispathsep(*tail
))
3804 if (copy_char
) /* copy at least one char */
3807 * Recognize the start of a new name, for '~'.
3808 * Don't do this when "one" is TRUE, to avoid expanding "~" in
3809 * ":edit foo ~ foo".
3812 if (src
[0] == '\\' && src
[1] != NUL
)
3817 else if ((src
[0] == ' ' || src
[0] == ',') && !one
)
3822 if (startstr
!= NULL
&& src
- startstr_len
>= srcp
3823 && STRNCMP(src
- startstr_len
, startstr
, startstr_len
) == 0)
3831 * Vim's version of getenv().
3832 * Special handling of $HOME, $VIM and $VIMRUNTIME.
3833 * Also does ACP to 'enc' conversion for Win32.
3836 vim_getenv(name
, mustfree
)
3838 int *mustfree
; /* set to TRUE when returned is allocated */
3844 #if defined(OS2) || defined(MSDOS) || defined(MSWIN)
3845 /* use "C:/" when $HOME is not set */
3846 if (STRCMP(name
, "HOME") == 0)
3850 p
= mch_getenv(name
);
3851 if (p
!= NULL
&& *p
== NUL
) /* empty is the same as not set */
3856 #if defined(FEAT_MBYTE) && defined(WIN3264)
3862 /* Convert from active codepage to UTF-8. Other conversions are
3863 * not done, because they would fail for non-ASCII characters. */
3864 acp_to_enc(p
, (int)STRLEN(p
), &pp
, &len
);
3875 vimruntime
= (STRCMP(name
, "VIMRUNTIME") == 0);
3876 if (!vimruntime
&& STRCMP(name
, "VIM") != 0)
3880 * When expanding $VIMRUNTIME fails, try using $VIM/vim<version> or $VIM.
3881 * Don't do this when default_vimruntime_dir is non-empty.
3885 && *default_vimruntime_dir
== NUL
3889 p
= mch_getenv((char_u
*)"VIM");
3890 if (p
!= NULL
&& *p
== NUL
) /* empty is the same as not set */
3894 p
= vim_version_dir(p
);
3898 p
= mch_getenv((char_u
*)"VIM");
3900 #if defined(FEAT_MBYTE) && defined(WIN3264)
3906 /* Convert from active codepage to UTF-8. Other conversions
3907 * are not done, because they would fail for non-ASCII
3909 acp_to_enc(p
, (int)STRLEN(p
), &pp
, &len
);
3923 * When expanding $VIM or $VIMRUNTIME fails, try using:
3924 * - the directory name from 'helpfile' (unless it contains '$')
3925 * - the executable name from argv[0]
3929 if (p_hf
!= NULL
&& vim_strchr(p_hf
, '$') == NULL
)
3933 * Use the name of the executable, obtained from argv[0].
3940 /* remove the file name */
3943 /* remove "doc/" from 'helpfile', if present */
3945 pend
= remove_tail(p
, pend
, (char_u
*)"doc");
3949 /* remove "MacOS" from exe_name and add "Resources/vim" */
3955 pend1
= remove_tail(p
, pend
, (char_u
*)"MacOS");
3958 pnew
= alloc((unsigned)(pend1
- p
) + 15);
3961 STRNCPY(pnew
, p
, (pend1
- p
));
3962 STRCPY(pnew
+ (pend1
- p
), "Resources/vim");
3964 pend
= p
+ STRLEN(p
);
3969 /* remove "src/" from exe_name, if present */
3971 pend
= remove_tail(p
, pend
, (char_u
*)"src");
3974 /* for $VIM, remove "runtime/" or "vim54/", if present */
3977 pend
= remove_tail(p
, pend
, (char_u
*)RUNTIME_DIRNAME
);
3978 pend
= remove_tail(p
, pend
, (char_u
*)VIM_VERSION_NODOT
);
3981 /* remove trailing path separator */
3982 #ifndef MACOS_CLASSIC
3983 /* With MacOS path (with colons) the final colon is required */
3984 /* to avoid confusion between absolute and relative path */
3985 if (pend
> p
&& after_pathsep(p
, pend
))
3990 if (p
== exe_name
|| p
== p_hf
)
3992 /* check that the result is a directory name */
3993 p
= vim_strnsave(p
, (int)(pend
- p
));
3995 if (p
!= NULL
&& !mch_isdir(p
))
4003 /* may add "/vim54" or "/runtime" if it exists */
4004 if (vimruntime
&& (pend
= vim_version_dir(p
)) != NULL
)
4016 /* When there is a pathdef.c file we can use default_vim_dir and
4017 * default_vimruntime_dir */
4020 /* Only use default_vimruntime_dir when it is not empty */
4021 if (vimruntime
&& *default_vimruntime_dir
!= NUL
)
4023 p
= default_vimruntime_dir
;
4026 else if (*default_vim_dir
!= NUL
)
4028 if (vimruntime
&& (p
= vim_version_dir(default_vim_dir
)) != NULL
)
4032 p
= default_vim_dir
;
4040 * Set the environment variable, so that the new value can be found fast
4041 * next time, and others can also use it (e.g. Perl).
4047 vim_setenv((char_u
*)"VIMRUNTIME", p
);
4048 didset_vimruntime
= TRUE
;
4051 char_u
*buf
= concat_str(p
, (char_u
*)"/lang");
4055 bindtextdomain(VIMPACKAGE
, (char *)buf
);
4063 vim_setenv((char_u
*)"VIM", p
);
4071 * Check if the directory "vimdir/<version>" or "vimdir/runtime" exists.
4072 * Return NULL if not, return its name in allocated memory otherwise.
4075 vim_version_dir(vimdir
)
4080 if (vimdir
== NULL
|| *vimdir
== NUL
)
4082 p
= concat_fnames(vimdir
, (char_u
*)VIM_VERSION_NODOT
, TRUE
);
4083 if (p
!= NULL
&& mch_isdir(p
))
4086 p
= concat_fnames(vimdir
, (char_u
*)RUNTIME_DIRNAME
, TRUE
);
4087 if (p
!= NULL
&& mch_isdir(p
))
4094 * If the string between "p" and "pend" ends in "name/", return "pend" minus
4095 * the length of "name/". Otherwise return "pend".
4098 remove_tail(p
, pend
, name
)
4103 int len
= (int)STRLEN(name
) + 1;
4104 char_u
*newend
= pend
- len
;
4107 && fnamencmp(newend
, name
, len
- 1) == 0
4108 && (newend
== p
|| after_pathsep(p
, newend
)))
4114 * Our portable version of setenv.
4117 vim_setenv(name
, val
)
4122 mch_setenv((char *)name
, (char *)val
, 1);
4127 * Putenv does not copy the string, it has to remain
4128 * valid. The allocated memory will never be freed.
4130 envbuf
= alloc((unsigned)(STRLEN(name
) + STRLEN(val
) + 2));
4133 sprintf((char *)envbuf
, "%s=%s", name
, val
);
4134 putenv((char *)envbuf
);
4139 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4141 * Function given to ExpandGeneric() to obtain an environment variable name.
4145 get_env_name(xp
, idx
)
4149 # if defined(AMIGA) || defined(__MRC__) || defined(__SC__)
4151 * No environ[] on the Amiga and on the Mac (using MPW).
4156 /* Borland C++ 5.2 has this in a header file. */
4157 extern char **environ
;
4159 # define ENVNAMELEN 100
4160 static char_u name
[ENVNAMELEN
];
4164 str
= (char_u
*)environ
[idx
];
4168 for (n
= 0; n
< ENVNAMELEN
- 1; ++n
)
4170 if (str
[n
] == '=' || str
[n
] == NUL
)
4181 * Replace home directory by "~" in each space or comma separated file name in
4183 * If anything fails (except when out of space) dst equals src.
4186 home_replace(buf
, src
, dst
, dstlen
, one
)
4187 buf_T
*buf
; /* when not NULL, check for help files */
4188 char_u
*src
; /* input file name */
4189 char_u
*dst
; /* where to put the result */
4190 int dstlen
; /* maximum length of the result */
4191 int one
; /* if TRUE, only replace one file name, include
4192 spaces and commas in the file name. */
4194 size_t dirlen
= 0, envlen
= 0;
4196 char_u
*homedir_env
;
4206 * If the file is a help file, remove the path completely.
4208 if (buf
!= NULL
&& buf
->b_help
)
4210 STRCPY(dst
, gettail(src
));
4215 * We check both the value of the $HOME environment variable and the
4216 * "real" home directory.
4218 if (homedir
!= NULL
)
4219 dirlen
= STRLEN(homedir
);
4222 homedir_env
= mch_getenv((char_u
*)"SYS$LOGIN");
4224 homedir_env
= mch_getenv((char_u
*)"HOME");
4227 if (homedir_env
!= NULL
&& *homedir_env
== NUL
)
4229 if (homedir_env
!= NULL
)
4230 envlen
= STRLEN(homedir_env
);
4233 src
= skipwhite(src
);
4234 while (*src
&& dstlen
> 0)
4237 * Here we are at the beginning of a file name.
4238 * First, check to see if the beginning of the file name matches
4239 * $HOME or the "real" home directory. Check that there is a '/'
4240 * after the match (so that if e.g. the file is "/home/pieter/bla",
4241 * and the home directory is "/home/piet", the file does not end up
4242 * as "~er/bla" (which would seem to indicate the file "bla" in user
4243 * er's home directory)).
4250 && fnamencmp(src
, p
, len
) == 0
4251 && (vim_ispathsep(src
[len
])
4252 || (!one
&& (src
[len
] == ',' || src
[len
] == ' '))
4253 || src
[len
] == NUL
))
4260 * If it's just the home directory, add "/".
4262 if (!vim_ispathsep(src
[0]) && --dstlen
> 0)
4266 if (p
== homedir_env
)
4272 /* if (!one) skip to separator: space or comma */
4273 while (*src
&& (one
|| (*src
!= ',' && *src
!= ' ')) && --dstlen
> 0)
4275 /* skip separator */
4276 while ((*src
== ' ' || *src
== ',') && --dstlen
> 0)
4279 /* if (dstlen == 0) out of space, what to do??? */
4285 * Like home_replace, store the replaced string in allocated memory.
4286 * When something fails, NULL is returned.
4289 home_replace_save(buf
, src
)
4290 buf_T
*buf
; /* when not NULL, check for help files */
4291 char_u
*src
; /* input file name */
4296 len
= 3; /* space for "~/" and trailing NUL */
4297 if (src
!= NULL
) /* just in case */
4298 len
+= (unsigned)STRLEN(src
);
4301 home_replace(buf
, src
, dst
, len
, TRUE
);
4306 * Compare two file names and return:
4307 * FPC_SAME if they both exist and are the same file.
4308 * FPC_SAMEX if they both don't exist and have the same file name.
4309 * FPC_DIFF if they both exist and are different files.
4310 * FPC_NOTX if they both don't exist.
4311 * FPC_DIFFX if one of them doesn't exist.
4312 * For the first name environment variables are expanded
4315 fullpathcmp(s1
, s2
, checkname
)
4317 int checkname
; /* when both don't exist, check file names */
4320 char_u exp1
[MAXPATHL
];
4321 char_u full1
[MAXPATHL
];
4322 char_u full2
[MAXPATHL
];
4323 struct stat st1
, st2
;
4326 expand_env(s1
, exp1
, MAXPATHL
);
4327 r1
= mch_stat((char *)exp1
, &st1
);
4328 r2
= mch_stat((char *)s2
, &st2
);
4329 if (r1
!= 0 && r2
!= 0)
4331 /* if mch_stat() doesn't work, may compare the names */
4334 if (fnamecmp(exp1
, s2
) == 0)
4336 r1
= vim_FullName(exp1
, full1
, MAXPATHL
, FALSE
);
4337 r2
= vim_FullName(s2
, full2
, MAXPATHL
, FALSE
);
4338 if (r1
== OK
&& r2
== OK
&& fnamecmp(full1
, full2
) == 0)
4343 if (r1
!= 0 || r2
!= 0)
4345 if (st1
.st_dev
== st2
.st_dev
&& st1
.st_ino
== st2
.st_ino
)
4349 char_u
*exp1
; /* expanded s1 */
4350 char_u
*full1
; /* full path of s1 */
4351 char_u
*full2
; /* full path of s2 */
4352 int retval
= FPC_DIFF
;
4355 /* allocate one buffer to store three paths (alloc()/free() is slow!) */
4356 if ((exp1
= alloc(MAXPATHL
* 3)) != NULL
)
4358 full1
= exp1
+ MAXPATHL
;
4359 full2
= full1
+ MAXPATHL
;
4361 expand_env(s1
, exp1
, MAXPATHL
);
4362 r1
= vim_FullName(exp1
, full1
, MAXPATHL
, FALSE
);
4363 r2
= vim_FullName(s2
, full2
, MAXPATHL
, FALSE
);
4365 /* If vim_FullName() fails, the file probably doesn't exist. */
4366 if (r1
!= OK
&& r2
!= OK
)
4368 if (checkname
&& fnamecmp(exp1
, s2
) == 0)
4373 else if (r1
!= OK
|| r2
!= OK
)
4375 else if (fnamecmp(full1
, full2
))
4386 * Get the tail of a path: the file name.
4387 * Fail safe: never returns NULL.
4396 return (char_u
*)"";
4397 for (p1
= p2
= fname
; *p2
; ) /* find last part of path */
4399 if (vim_ispathsep(*p2
))
4407 * Get pointer to tail of "fname", including path separators. Putting a NUL
4408 * here leaves the directory name. Takes care of "c:/" and "//".
4409 * Always returns a valid pointer.
4418 p
= get_past_head(fname
); /* don't remove the '/' from "c:/file" */
4420 while (t
> p
&& after_pathsep(fname
, t
))
4423 /* path separator is part of the path */
4430 * get the next path component (just after the next path separator).
4436 while (*fname
&& !vim_ispathsep(*fname
))
4444 * Get a pointer to one character past the head of a path name.
4445 * Unix: after "/"; DOS: after "c:\"; Amiga: after "disk:/"; Mac: no head.
4446 * If there is no head, path is returned.
4454 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
4456 if (isalpha(path
[0]) && path
[1] == ':')
4462 /* may skip "label:" */
4463 retval
= vim_strchr(path
, ':');
4471 while (vim_ispathsep(*retval
))
4478 * return TRUE if 'c' is a path separator.
4485 return (c
== '.' || c
== ':');
4488 return (c
== '/'); /* UNIX has ':' inside file names */
4490 # ifdef BACKSLASH_IN_FILENAME
4491 return (c
== ':' || c
== '/' || c
== '\\');
4494 /* server"user passwd"::device:[full.path.name]fname.extension;version" */
4495 return (c
== ':' || c
== '[' || c
== ']' || c
== '/'
4496 || c
== '<' || c
== '>' || c
== '"' );
4498 return (c
== ':' || c
== '/');
4502 #endif /* RISC OS */
4505 #if defined(FEAT_SEARCHPATH) || defined(PROTO)
4507 * return TRUE if 'c' is a path list separator.
4510 vim_ispathlistsep(c
)
4516 return (c
== ';'); /* might not be right for every system... */
4521 #if defined(FEAT_GUI_TABLINE) || defined(FEAT_WINDOWS) \
4522 || defined(FEAT_EVAL) || defined(PROTO)
4524 * Shorten the path of a file from "~/foo/../.bar/fname" to "~/f/../.b/fname"
4525 * It's done in-place.
4531 char_u
*tail
, *s
, *d
;
4534 tail
= gettail(str
);
4536 for (s
= str
; ; ++s
)
4538 if (s
>= tail
) /* copy the whole tail */
4544 else if (vim_ispathsep(*s
)) /* copy '/' and next char */
4551 *d
++ = *s
; /* copy next char */
4552 if (*s
!= '~' && *s
!= '.') /* and leading "~" and "." */
4557 int l
= mb_ptr2len(s
);
4569 * Return TRUE if the directory of "fname" exists, FALSE otherwise.
4570 * Also returns TRUE if there is no directory name.
4571 * "fname" must be writable!.
4574 dir_of_file_exists(fname
)
4581 p
= gettail_sep(fname
);
4586 retval
= mch_isdir(fname
);
4591 #if (defined(CASE_INSENSITIVE_FILENAME) && defined(BACKSLASH_IN_FILENAME)) \
4594 * Versions of fnamecmp() and fnamencmp() that handle '/' and '\' equally.
4600 return vim_fnamencmp(x
, y
, MAXPATHL
);
4604 vim_fnamencmp(x
, y
, len
)
4608 while (len
> 0 && *x
&& *y
)
4610 if (TOLOWER_LOC(*x
) != TOLOWER_LOC(*y
)
4611 && !(*x
== '/' && *y
== '\\')
4612 && !(*x
== '\\' && *y
== '/'))
4625 * Concatenate file names fname1 and fname2 into allocated memory.
4626 * Only add a '/' or '\\' when 'sep' is TRUE and it is necessary.
4629 concat_fnames(fname1
, fname2
, sep
)
4636 dest
= alloc((unsigned)(STRLEN(fname1
) + STRLEN(fname2
) + 3));
4639 STRCPY(dest
, fname1
);
4642 STRCAT(dest
, fname2
);
4647 #if defined(FEAT_EVAL) || defined(FEAT_GETTEXT) || defined(PROTO)
4649 * Concatenate two strings and return the result in allocated memory.
4650 * Returns NULL when out of memory.
4653 concat_str(str1
, str2
)
4658 size_t l
= STRLEN(str1
);
4660 dest
= alloc((unsigned)(l
+ STRLEN(str2
) + 1L));
4664 STRCPY(dest
+ l
, str2
);
4671 * Add a path separator to a file name, unless it already ends in a path
4678 if (*p
!= NUL
&& !after_pathsep(p
, p
+ STRLEN(p
)))
4679 STRCAT(p
, PATHSEPSTR
);
4683 * FullName_save - Make an allocated copy of a full file name.
4684 * Returns NULL when out of memory.
4687 FullName_save(fname
, force
)
4689 int force
; /* force expansion, even when it already looks
4690 like a full path name */
4693 char_u
*new_fname
= NULL
;
4698 buf
= alloc((unsigned)MAXPATHL
);
4701 if (vim_FullName(fname
, buf
, MAXPATHL
, force
) != FAIL
)
4702 new_fname
= vim_strsave(buf
);
4704 new_fname
= vim_strsave(fname
);
4710 #if defined(FEAT_CINDENT) || defined(FEAT_SYN_HL)
4712 static char_u
*skip_string
__ARGS((char_u
*p
));
4715 * Find the start of a comment, not knowing if we are in a comment right now.
4716 * Search starts at w_cursor.lnum and goes backwards.
4719 find_start_comment(ind_maxcomment
) /* XXX */
4725 int cur_maxcomment
= ind_maxcomment
;
4729 pos
= findmatchlimit(NULL
, '*', FM_BACKWARD
, cur_maxcomment
);
4734 * Check if the comment start we found is inside a string.
4735 * If it is then restrict the search to below this line and try again.
4737 line
= ml_get(pos
->lnum
);
4738 for (p
= line
; *p
&& (unsigned)(p
- line
) < pos
->col
; ++p
)
4740 if ((unsigned)(p
- line
) <= pos
->col
)
4742 cur_maxcomment
= curwin
->w_cursor
.lnum
- pos
->lnum
- 1;
4743 if (cur_maxcomment
<= 0)
4753 * Skip to the end of a "string" and a 'c' character.
4754 * If there is no string or character, return argument unmodified.
4763 * We loop, because strings may be concatenated: "date""time".
4767 if (p
[0] == '\'') /* 'c' or '\n' or '\000' */
4769 if (!p
[1]) /* ' at end of line */
4772 if (p
[1] == '\\') /* '\n' or '\000' */
4775 while (vim_isdigit(p
[i
- 1])) /* '\000' */
4778 if (p
[i
] == '\'') /* check for trailing ' */
4784 else if (p
[0] == '"') /* start of string */
4786 for (++p
; p
[0]; ++p
)
4788 if (p
[0] == '\\' && p
[1] != NUL
)
4790 else if (p
[0] == '"') /* end of string */
4796 break; /* no string found */
4799 --p
; /* backup from NUL */
4802 #endif /* FEAT_CINDENT || FEAT_SYN_HL */
4804 #if defined(FEAT_CINDENT) || defined(PROTO)
4807 * Do C or expression indenting on the current line.
4813 if (*curbuf
->b_p_inde
!= NUL
)
4814 fixthisline(get_expr_indent
);
4817 fixthisline(get_c_indent
);
4821 * Functions for C-indenting.
4822 * Most of this originally comes from Eric Fischer.
4825 * Below "XXX" means that this function may unlock the current line.
4828 static char_u
*cin_skipcomment
__ARGS((char_u
*));
4829 static int cin_nocode
__ARGS((char_u
*));
4830 static pos_T
*find_line_comment
__ARGS((void));
4831 static int cin_islabel_skip
__ARGS((char_u
**));
4832 static int cin_isdefault
__ARGS((char_u
*));
4833 static char_u
*after_label
__ARGS((char_u
*l
));
4834 static int get_indent_nolabel
__ARGS((linenr_T lnum
));
4835 static int skip_label
__ARGS((linenr_T
, char_u
**pp
, int ind_maxcomment
));
4836 static int cin_first_id_amount
__ARGS((void));
4837 static int cin_get_equal_amount
__ARGS((linenr_T lnum
));
4838 static int cin_ispreproc
__ARGS((char_u
*));
4839 static int cin_ispreproc_cont
__ARGS((char_u
**pp
, linenr_T
*lnump
));
4840 static int cin_iscomment
__ARGS((char_u
*));
4841 static int cin_islinecomment
__ARGS((char_u
*));
4842 static int cin_isterminated
__ARGS((char_u
*, int, int));
4843 static int cin_isinit
__ARGS((void));
4844 static int cin_isfuncdecl
__ARGS((char_u
**, linenr_T
));
4845 static int cin_isif
__ARGS((char_u
*));
4846 static int cin_iselse
__ARGS((char_u
*));
4847 static int cin_isdo
__ARGS((char_u
*));
4848 static int cin_iswhileofdo
__ARGS((char_u
*, linenr_T
, int));
4849 static int cin_iswhileofdo_end
__ARGS((int terminated
, int ind_maxparen
, int ind_maxcomment
));
4850 static int cin_isbreak
__ARGS((char_u
*));
4851 static int cin_is_cpp_baseclass
__ARGS((colnr_T
*col
));
4852 static int get_baseclass_amount
__ARGS((int col
, int ind_maxparen
, int ind_maxcomment
, int ind_cpp_baseclass
));
4853 static int cin_ends_in
__ARGS((char_u
*, char_u
*, char_u
*));
4854 static int cin_skip2pos
__ARGS((pos_T
*trypos
));
4855 static pos_T
*find_start_brace
__ARGS((int));
4856 static pos_T
*find_match_paren
__ARGS((int, int));
4857 static int corr_ind_maxparen
__ARGS((int ind_maxparen
, pos_T
*startpos
));
4858 static int find_last_paren
__ARGS((char_u
*l
, int start
, int end
));
4859 static int find_match
__ARGS((int lookfor
, linenr_T ourscope
, int ind_maxparen
, int ind_maxcomment
));
4861 static int ind_hash_comment
= 0; /* # starts a comment */
4864 * Skip over white space and C comments within the line.
4865 * Also skip over Perl/shell comments if desired.
4877 /* Perl/shell # comment comment continues until eol. Require a space
4878 * before # to avoid recognizing $#array. */
4879 if (ind_hash_comment
!= 0 && s
!= prev_s
&& *s
== '#')
4887 if (*s
== '/') /* slash-slash comment continues till eol */
4894 for (++s
; *s
; ++s
) /* skip slash-star comment */
4895 if (s
[0] == '*' && s
[1] == '/')
4905 * Return TRUE if there there is no code at *s. White space and comments are
4906 * not considered code.
4912 return *cin_skipcomment(s
) == NUL
;
4916 * Check previous lines for a "//" line comment, skipping over blank lines.
4919 find_line_comment() /* XXX */
4925 pos
= curwin
->w_cursor
;
4926 while (--pos
.lnum
> 0)
4928 line
= ml_get(pos
.lnum
);
4929 p
= skipwhite(line
);
4930 if (cin_islinecomment(p
))
4932 pos
.col
= (int)(p
- line
);
4942 * Check if string matches "label:"; move to character after ':' if true.
4948 if (!vim_isIDc(**s
)) /* need at least one ID character */
4951 while (vim_isIDc(**s
))
4954 *s
= cin_skipcomment(*s
);
4956 /* "::" is not a label, it's C++ */
4957 return (**s
== ':' && *++*s
!= ':');
4961 * Recognize a label: "label:".
4962 * Note: curwin->w_cursor must be where we are looking for the label.
4965 cin_islabel(ind_maxcomment
) /* XXX */
4970 s
= cin_skipcomment(ml_get_curline());
4973 * Exclude "default" from labels, since it should be indented
4974 * like a switch label. Same for C++ scope declarations.
4976 if (cin_isdefault(s
))
4978 if (cin_isscopedecl(s
))
4981 if (cin_islabel_skip(&s
))
4984 * Only accept a label if the previous line is terminated or is a case
4991 cursor_save
= curwin
->w_cursor
;
4992 while (curwin
->w_cursor
.lnum
> 1)
4994 --curwin
->w_cursor
.lnum
;
4997 * If we're in a comment now, skip to the start of the comment.
4999 curwin
->w_cursor
.col
= 0;
5000 if ((trypos
= find_start_comment(ind_maxcomment
)) != NULL
) /* XXX */
5001 curwin
->w_cursor
= *trypos
;
5003 line
= ml_get_curline();
5004 if (cin_ispreproc(line
)) /* ignore #defines, #if, etc. */
5006 if (*(line
= cin_skipcomment(line
)) == NUL
)
5009 curwin
->w_cursor
= cursor_save
;
5010 if (cin_isterminated(line
, TRUE
, FALSE
)
5011 || cin_isscopedecl(line
)
5013 || (cin_islabel_skip(&line
) && cin_nocode(line
)))
5017 curwin
->w_cursor
= cursor_save
;
5018 return TRUE
; /* label at start of file??? */
5024 * Recognize structure initialization and enumerations.
5025 * Q&D-Implementation:
5026 * check for "=" at end or "[typedef] enum" at beginning of line.
5033 s
= cin_skipcomment(ml_get_curline());
5035 if (STRNCMP(s
, "typedef", 7) == 0 && !vim_isIDc(s
[7]))
5036 s
= cin_skipcomment(s
+ 7);
5038 if (STRNCMP(s
, "enum", 4) == 0 && !vim_isIDc(s
[4]))
5041 if (cin_ends_in(s
, (char_u
*)"=", (char_u
*)"{"))
5048 * Recognize a switch label: "case .*:" or "default:".
5054 s
= cin_skipcomment(s
);
5055 if (STRNCMP(s
, "case", 4) == 0 && !vim_isIDc(s
[4]))
5057 for (s
+= 4; *s
; ++s
)
5059 s
= cin_skipcomment(s
);
5062 if (s
[1] == ':') /* skip over "::" for C++ */
5067 if (*s
== '\'' && s
[1] && s
[2] == '\'')
5068 s
+= 2; /* skip over '.' */
5069 else if (*s
== '/' && (s
[1] == '*' || s
[1] == '/'))
5070 return FALSE
; /* stop at comment */
5072 return FALSE
; /* stop at string */
5077 if (cin_isdefault(s
))
5083 * Recognize a "default" switch label.
5089 return (STRNCMP(s
, "default", 7) == 0
5090 && *(s
= cin_skipcomment(s
+ 7)) == ':'
5095 * Recognize a "public/private/proctected" scope declaration label.
5103 s
= cin_skipcomment(s
);
5104 if (STRNCMP(s
, "public", 6) == 0)
5106 else if (STRNCMP(s
, "protected", 9) == 0)
5108 else if (STRNCMP(s
, "private", 7) == 0)
5112 return (*(s
= cin_skipcomment(s
+ i
)) == ':' && s
[1] != ':');
5116 * Return a pointer to the first non-empty non-comment character after a ':'.
5117 * Return NULL if not found.
5129 if (l
[1] == ':') /* skip over "::" for C++ */
5131 else if (!cin_iscase(l
+ 1))
5134 else if (*l
== '\'' && l
[1] && l
[2] == '\'')
5135 l
+= 2; /* skip over 'x' */
5139 l
= cin_skipcomment(l
+ 1);
5146 * Get indent of line "lnum", skipping a label.
5147 * Return 0 if there is nothing after the label.
5150 get_indent_nolabel(lnum
) /* XXX */
5163 fp
.col
= (colnr_T
)(p
- l
);
5165 getvcol(curwin
, &fp
, &col
, NULL
, NULL
);
5170 * Find indent for line "lnum", ignoring any case or jump label.
5171 * Also return a pointer to the text (after the label) in "pp".
5172 * label: if (asdf && asdfasdf)
5176 skip_label(lnum
, pp
, ind_maxcomment
)
5185 cursor_save
= curwin
->w_cursor
;
5186 curwin
->w_cursor
.lnum
= lnum
;
5187 l
= ml_get_curline();
5189 if (cin_iscase(l
) || cin_isscopedecl(l
) || cin_islabel(ind_maxcomment
))
5191 amount
= get_indent_nolabel(lnum
);
5192 l
= after_label(ml_get_curline());
5193 if (l
== NULL
) /* just in case */
5194 l
= ml_get_curline();
5198 amount
= get_indent();
5199 l
= ml_get_curline();
5203 curwin
->w_cursor
= cursor_save
;
5208 * Return the indent of the first variable name after a type in a declaration.
5209 * int a, indent of "a"
5210 * static struct foo b, indent of "b"
5211 * enum bla c, indent of "c"
5212 * Returns zero when it doesn't look like a declaration.
5215 cin_first_id_amount()
5217 char_u
*line
, *p
, *s
;
5222 line
= ml_get_curline();
5223 p
= skipwhite(line
);
5224 len
= (int)(skiptowhite(p
) - p
);
5225 if (len
== 6 && STRNCMP(p
, "static", 6) == 0)
5227 p
= skipwhite(p
+ 6);
5228 len
= (int)(skiptowhite(p
) - p
);
5230 if (len
== 6 && STRNCMP(p
, "struct", 6) == 0)
5231 p
= skipwhite(p
+ 6);
5232 else if (len
== 4 && STRNCMP(p
, "enum", 4) == 0)
5233 p
= skipwhite(p
+ 4);
5234 else if ((len
== 8 && STRNCMP(p
, "unsigned", 8) == 0)
5235 || (len
== 6 && STRNCMP(p
, "signed", 6) == 0))
5237 s
= skipwhite(p
+ len
);
5238 if ((STRNCMP(s
, "int", 3) == 0 && vim_iswhite(s
[3]))
5239 || (STRNCMP(s
, "long", 4) == 0 && vim_iswhite(s
[4]))
5240 || (STRNCMP(s
, "short", 5) == 0 && vim_iswhite(s
[5]))
5241 || (STRNCMP(s
, "char", 4) == 0 && vim_iswhite(s
[4])))
5244 for (len
= 0; vim_isIDc(p
[len
]); ++len
)
5246 if (len
== 0 || !vim_iswhite(p
[len
]) || cin_nocode(p
))
5249 p
= skipwhite(p
+ len
);
5250 fp
.lnum
= curwin
->w_cursor
.lnum
;
5251 fp
.col
= (colnr_T
)(p
- line
);
5252 getvcol(curwin
, &fp
, &col
, NULL
, NULL
);
5257 * Return the indent of the first non-blank after an equal sign.
5258 * char *foo = "here";
5259 * Return zero if no (useful) equal sign found.
5260 * Return -1 if the line above "lnum" ends in a backslash.
5266 cin_get_equal_amount(lnum
)
5276 line
= ml_get(lnum
- 1);
5277 if (*line
!= NUL
&& line
[STRLEN(line
) - 1] == '\\')
5281 line
= s
= ml_get(lnum
);
5282 while (*s
!= NUL
&& vim_strchr((char_u
*)"=;{}\"'", *s
) == NULL
)
5284 if (cin_iscomment(s
)) /* ignore comments */
5285 s
= cin_skipcomment(s
);
5292 s
= skipwhite(s
+ 1);
5296 if (*s
== '"') /* nice alignment for continued strings */
5300 fp
.col
= (colnr_T
)(s
- line
);
5301 getvcol(curwin
, &fp
, &col
, NULL
, NULL
);
5306 * Recognize a preprocessor statement: Any line that starts with '#'.
5319 * Return TRUE if line "*pp" at "*lnump" is a preprocessor statement or a
5320 * continuation line of a preprocessor statement. Decrease "*lnump" to the
5321 * start and return the line in "*pp".
5324 cin_ispreproc_cont(pp
, lnump
)
5329 linenr_T lnum
= *lnump
;
5334 if (cin_ispreproc(line
))
5342 line
= ml_get(--lnum
);
5343 if (*line
== NUL
|| line
[STRLEN(line
) - 1] != '\\')
5348 *pp
= ml_get(*lnump
);
5353 * Recognize the start of a C or C++ comment.
5359 return (p
[0] == '/' && (p
[1] == '*' || p
[1] == '/'));
5363 * Recognize the start of a "//" comment.
5366 cin_islinecomment(p
)
5369 return (p
[0] == '/' && p
[1] == '/');
5373 * Recognize a line that starts with '{' or '}', or ends with ';', '{' or '}'.
5374 * Don't consider "} else" a terminated line.
5375 * Return the character terminating the line (ending char's have precedence if
5376 * both apply in order to determine initializations).
5379 cin_isterminated(s
, incl_open
, incl_comma
)
5381 int incl_open
; /* include '{' at the end as terminator */
5382 int incl_comma
; /* recognize a trailing comma */
5384 char_u found_start
= 0;
5386 s
= cin_skipcomment(s
);
5388 if (*s
== '{' || (*s
== '}' && !cin_iselse(s
)))
5393 /* skip over comments, "" strings and 'c'haracters */
5394 s
= skip_string(cin_skipcomment(s
));
5395 if ((*s
== ';' || (incl_open
&& *s
== '{') || *s
== '}'
5396 || (incl_comma
&& *s
== ','))
5397 && cin_nocode(s
+ 1))
5407 * Recognize the basic picture of a function declaration -- it needs to
5408 * have an open paren somewhere and a close paren at the end of the line and
5409 * no semicolons anywhere.
5410 * When a line ends in a comma we continue looking in the next line.
5411 * "sp" points to a string with the line. When looking at other lines it must
5412 * be restored to the line. When it's NULL fetch lines here.
5413 * "lnum" is where we start looking.
5416 cin_isfuncdecl(sp
, first_lnum
)
5418 linenr_T first_lnum
;
5421 linenr_T lnum
= first_lnum
;
5429 while (*s
&& *s
!= '(' && *s
!= ';' && *s
!= '\'' && *s
!= '"')
5431 if (cin_iscomment(s
)) /* ignore comments */
5432 s
= cin_skipcomment(s
);
5437 return FALSE
; /* ';', ' or " before any () or no '(' */
5439 while (*s
&& *s
!= ';' && *s
!= '\'' && *s
!= '"')
5441 if (*s
== ')' && cin_nocode(s
+ 1))
5443 /* ')' at the end: may have found a match
5444 * Check for he previous line not to end in a backslash:
5445 * #if defined(x) && \
5448 lnum
= first_lnum
- 1;
5450 if (*s
== NUL
|| s
[STRLEN(s
) - 1] != '\\')
5454 if (*s
== ',' && cin_nocode(s
+ 1))
5456 /* ',' at the end: continue looking in the next line */
5457 if (lnum
>= curbuf
->b_ml
.ml_line_count
)
5462 else if (cin_iscomment(s
)) /* ignore comments */
5463 s
= cin_skipcomment(s
);
5469 if (lnum
!= first_lnum
&& sp
!= NULL
)
5470 *sp
= ml_get(first_lnum
);
5479 return (STRNCMP(p
, "if", 2) == 0 && !vim_isIDc(p
[2]));
5486 if (*p
== '}') /* accept "} else" */
5487 p
= cin_skipcomment(p
+ 1);
5488 return (STRNCMP(p
, "else", 4) == 0 && !vim_isIDc(p
[4]));
5495 return (STRNCMP(p
, "do", 2) == 0 && !vim_isIDc(p
[2]));
5499 * Check if this is a "while" that should have a matching "do".
5500 * We only accept a "while (condition) ;", with only white space between the
5501 * ')' and ';'. The condition may be spread over several lines.
5504 cin_iswhileofdo(p
, lnum
, ind_maxparen
) /* XXX */
5513 p
= cin_skipcomment(p
);
5514 if (*p
== '}') /* accept "} while (cond);" */
5515 p
= cin_skipcomment(p
+ 1);
5516 if (STRNCMP(p
, "while", 5) == 0 && !vim_isIDc(p
[5]))
5518 cursor_save
= curwin
->w_cursor
;
5519 curwin
->w_cursor
.lnum
= lnum
;
5520 curwin
->w_cursor
.col
= 0;
5521 p
= ml_get_curline();
5522 while (*p
&& *p
!= 'w') /* skip any '}', until the 'w' of the "while" */
5525 ++curwin
->w_cursor
.col
;
5527 if ((trypos
= findmatchlimit(NULL
, 0, 0, ind_maxparen
)) != NULL
5528 && *cin_skipcomment(ml_get_pos(trypos
) + 1) == ';')
5530 curwin
->w_cursor
= cursor_save
;
5536 * Return TRUE if we are at the end of a do-while.
5541 * Adjust the cursor to the line with "while".
5544 cin_iswhileofdo_end(terminated
, ind_maxparen
, ind_maxcomment
)
5555 if (terminated
!= ';') /* there must be a ';' at the end */
5558 p
= line
= ml_get_curline();
5561 p
= cin_skipcomment(p
);
5564 s
= skipwhite(p
+ 1);
5565 if (*s
== ';' && cin_nocode(s
+ 1))
5567 /* Found ");" at end of the line, now check there is "while"
5568 * before the matching '('. XXX */
5569 i
= (int)(p
- line
);
5570 curwin
->w_cursor
.col
= i
;
5571 trypos
= find_match_paren(ind_maxparen
, ind_maxcomment
);
5574 s
= cin_skipcomment(ml_get(trypos
->lnum
));
5575 if (*s
== '}') /* accept "} while (cond);" */
5576 s
= cin_skipcomment(s
+ 1);
5577 if (STRNCMP(s
, "while", 5) == 0 && !vim_isIDc(s
[5]))
5579 curwin
->w_cursor
.lnum
= trypos
->lnum
;
5584 /* Searching may have made "line" invalid, get it again. */
5585 line
= ml_get_curline();
5599 return (STRNCMP(p
, "break", 5) == 0 && !vim_isIDc(p
[5]));
5603 * Find the position of a C++ base-class declaration or
5604 * constructor-initialization. eg:
5607 * baseClass <-- here
5608 * class MyClass : public baseClass,
5609 * anotherBaseClass <-- here (should probably lineup ??)
5610 * MyClass::MyClass(...) :
5611 * baseClass(...) <-- here (constructor-initialization)
5613 * This is a lot of guessing. Watch out for "cond ? func() : foo".
5616 cin_is_cpp_baseclass(col
)
5617 colnr_T
*col
; /* return: column to align with */
5620 int class_or_struct
, lookfor_ctor_init
, cpp_base_class
;
5621 linenr_T lnum
= curwin
->w_cursor
.lnum
;
5622 char_u
*line
= ml_get_curline();
5626 s
= skipwhite(line
);
5627 if (*s
== '#') /* skip #define FOO x ? (x) : x */
5629 s
= cin_skipcomment(s
);
5633 cpp_base_class
= lookfor_ctor_init
= class_or_struct
= FALSE
;
5635 /* Search for a line starting with '#', empty, ending in ';' or containing
5636 * '{' or '}' and start below it. This handles the following situations:
5643 * Foo::Foo (int one, int two)
5650 line
= ml_get(lnum
- 1);
5651 s
= skipwhite(line
);
5652 if (*s
== '#' || *s
== NUL
)
5656 s
= cin_skipcomment(s
);
5657 if (*s
== '{' || *s
== '}'
5658 || (*s
== ';' && cin_nocode(s
+ 1)))
5668 line
= ml_get(lnum
);
5669 s
= cin_skipcomment(line
);
5674 if (lnum
== curwin
->w_cursor
.lnum
)
5676 /* Continue in the cursor line. */
5677 line
= ml_get(++lnum
);
5678 s
= cin_skipcomment(line
);
5687 /* skip double colon. It can't be a constructor
5688 * initialization any more */
5689 lookfor_ctor_init
= FALSE
;
5690 s
= cin_skipcomment(s
+ 2);
5692 else if (lookfor_ctor_init
|| class_or_struct
)
5694 /* we have something found, that looks like the start of
5695 * cpp-base-class-declaration or constructor-initialization */
5696 cpp_base_class
= TRUE
;
5697 lookfor_ctor_init
= class_or_struct
= FALSE
;
5699 s
= cin_skipcomment(s
+ 1);
5702 s
= cin_skipcomment(s
+ 1);
5704 else if ((STRNCMP(s
, "class", 5) == 0 && !vim_isIDc(s
[5]))
5705 || (STRNCMP(s
, "struct", 6) == 0 && !vim_isIDc(s
[6])))
5707 class_or_struct
= TRUE
;
5708 lookfor_ctor_init
= FALSE
;
5711 s
= cin_skipcomment(s
+ 5);
5713 s
= cin_skipcomment(s
+ 6);
5717 if (s
[0] == '{' || s
[0] == '}' || s
[0] == ';')
5719 cpp_base_class
= lookfor_ctor_init
= class_or_struct
= FALSE
;
5721 else if (s
[0] == ')')
5723 /* Constructor-initialization is assumed if we come across
5724 * something like "):" */
5725 class_or_struct
= FALSE
;
5726 lookfor_ctor_init
= TRUE
;
5728 else if (s
[0] == '?')
5730 /* Avoid seeing '() :' after '?' as constructor init. */
5733 else if (!vim_isIDc(s
[0]))
5735 /* if it is not an identifier, we are wrong */
5736 class_or_struct
= FALSE
;
5737 lookfor_ctor_init
= FALSE
;
5741 /* it can't be a constructor-initialization any more */
5742 lookfor_ctor_init
= FALSE
;
5744 /* the first statement starts here: lineup with this one... */
5746 *col
= (colnr_T
)(s
- line
);
5749 /* When the line ends in a comma don't align with it. */
5750 if (lnum
== curwin
->w_cursor
.lnum
&& *s
== ',' && cin_nocode(s
+ 1))
5753 s
= cin_skipcomment(s
+ 1);
5757 return cpp_base_class
;
5761 get_baseclass_amount(col
, ind_maxparen
, ind_maxcomment
, ind_cpp_baseclass
)
5765 int ind_cpp_baseclass
;
5773 amount
= get_indent();
5774 if (find_last_paren(ml_get_curline(), '(', ')')
5775 && (trypos
= find_match_paren(ind_maxparen
,
5776 ind_maxcomment
)) != NULL
)
5777 amount
= get_indent_lnum(trypos
->lnum
); /* XXX */
5778 if (!cin_ends_in(ml_get_curline(), (char_u
*)",", NULL
))
5779 amount
+= ind_cpp_baseclass
;
5783 curwin
->w_cursor
.col
= col
;
5784 getvcol(curwin
, &curwin
->w_cursor
, &vcol
, NULL
, NULL
);
5787 if (amount
< ind_cpp_baseclass
)
5788 amount
= ind_cpp_baseclass
;
5793 * Return TRUE if string "s" ends with the string "find", possibly followed by
5794 * white space and comments. Skip strings and comments.
5795 * Ignore "ignore" after "find" if it's not NULL.
5798 cin_ends_in(s
, find
, ignore
)
5805 int len
= (int)STRLEN(find
);
5809 p
= cin_skipcomment(p
);
5810 if (STRNCMP(p
, find
, len
) == 0)
5812 r
= skipwhite(p
+ len
);
5813 if (ignore
!= NULL
&& STRNCMP(r
, ignore
, STRLEN(ignore
)) == 0)
5814 r
= skipwhite(r
+ STRLEN(ignore
));
5825 * Skip strings, chars and comments until at or past "trypos".
5826 * Return the column found.
5829 cin_skip2pos(trypos
)
5835 p
= line
= ml_get(trypos
->lnum
);
5836 while (*p
&& (colnr_T
)(p
- line
) < trypos
->col
)
5838 if (cin_iscomment(p
))
5839 p
= cin_skipcomment(p
);
5846 return (int)(p
- line
);
5850 * Find the '{' at the start of the block we are in.
5851 * Return NULL if no match found.
5852 * Ignore a '{' that is in a comment, makes indenting the next three lines
5859 find_start_brace(ind_maxcomment
) /* XXX */
5865 static pos_T pos_copy
;
5867 cursor_save
= curwin
->w_cursor
;
5868 while ((trypos
= findmatchlimit(NULL
, '{', FM_BLOCKSTOP
, 0)) != NULL
)
5870 pos_copy
= *trypos
; /* copy pos_T, next findmatch will change it */
5872 curwin
->w_cursor
= *trypos
;
5874 /* ignore the { if it's in a // or / * * / comment */
5875 if ((colnr_T
)cin_skip2pos(trypos
) == trypos
->col
5876 && (pos
= find_start_comment(ind_maxcomment
)) == NULL
) /* XXX */
5879 curwin
->w_cursor
.lnum
= pos
->lnum
;
5881 curwin
->w_cursor
= cursor_save
;
5886 * Find the matching '(', failing if it is in a comment.
5887 * Return NULL of no match found.
5890 find_match_paren(ind_maxparen
, ind_maxcomment
) /* XXX */
5896 static pos_T pos_copy
;
5898 cursor_save
= curwin
->w_cursor
;
5899 if ((trypos
= findmatchlimit(NULL
, '(', 0, ind_maxparen
)) != NULL
)
5901 /* check if the ( is in a // comment */
5902 if ((colnr_T
)cin_skip2pos(trypos
) > trypos
->col
)
5906 pos_copy
= *trypos
; /* copy trypos, findmatch will change it */
5908 curwin
->w_cursor
= *trypos
;
5909 if (find_start_comment(ind_maxcomment
) != NULL
) /* XXX */
5913 curwin
->w_cursor
= cursor_save
;
5918 * Return ind_maxparen corrected for the difference in line number between the
5919 * cursor position and "startpos". This makes sure that searching for a
5920 * matching paren above the cursor line doesn't find a match because of
5921 * looking a few lines further.
5924 corr_ind_maxparen(ind_maxparen
, startpos
)
5928 long n
= (long)startpos
->lnum
- (long)curwin
->w_cursor
.lnum
;
5930 if (n
> 0 && n
< ind_maxparen
/ 2)
5931 return ind_maxparen
- (int)n
;
5932 return ind_maxparen
;
5936 * Set w_cursor.col to the column number of the last unmatched ')' or '{' in
5940 find_last_paren(l
, start
, end
)
5948 curwin
->w_cursor
.col
= 0; /* default is start of line */
5950 for (i
= 0; l
[i
]; i
++)
5952 i
= (int)(cin_skipcomment(l
+ i
) - l
); /* ignore parens in comments */
5953 i
= (int)(skip_string(l
+ i
) - l
); /* ignore parens in quotes */
5956 else if (l
[i
] == end
)
5962 curwin
->w_cursor
.col
= i
;
5974 * spaces from a block's opening brace the prevailing indent for that
5977 int ind_level
= curbuf
->b_p_sw
;
5980 * spaces from the edge of the line an open brace that's at the end of a
5981 * line is imagined to be.
5983 int ind_open_imag
= 0;
5986 * spaces from the prevailing indent for a line that is not precededof by
5989 int ind_no_brace
= 0;
5992 * column where the first { of a function should be located }
5994 int ind_first_open
= 0;
5997 * spaces from the prevailing indent a leftmost open brace should be
6000 int ind_open_extra
= 0;
6003 * spaces from the matching open brace (real location for one at the left
6004 * edge; imaginary location from one that ends a line) the matching close
6005 * brace should be located
6007 int ind_close_extra
= 0;
6010 * spaces from the edge of the line an open brace sitting in the leftmost
6011 * column is imagined to be
6013 int ind_open_left_imag
= 0;
6016 * spaces from the switch() indent a "case xx" label should be located
6018 int ind_case
= curbuf
->b_p_sw
;
6021 * spaces from the "case xx:" code after a switch() should be located
6023 int ind_case_code
= curbuf
->b_p_sw
;
6026 * lineup break at end of case in switch() with case label
6028 int ind_case_break
= 0;
6031 * spaces from the class declaration indent a scope declaration label
6034 int ind_scopedecl
= curbuf
->b_p_sw
;
6037 * spaces from the scope declaration label code should be located
6039 int ind_scopedecl_code
= curbuf
->b_p_sw
;
6042 * amount K&R-style parameters should be indented
6044 int ind_param
= curbuf
->b_p_sw
;
6047 * amount a function type spec should be indented
6049 int ind_func_type
= curbuf
->b_p_sw
;
6052 * amount a cpp base class declaration or constructor initialization
6053 * should be indented
6055 int ind_cpp_baseclass
= curbuf
->b_p_sw
;
6058 * additional spaces beyond the prevailing indent a continuation line
6061 int ind_continuation
= curbuf
->b_p_sw
;
6064 * spaces from the indent of the line with an unclosed parentheses
6066 int ind_unclosed
= curbuf
->b_p_sw
* 2;
6069 * spaces from the indent of the line with an unclosed parentheses, which
6070 * itself is also unclosed
6072 int ind_unclosed2
= curbuf
->b_p_sw
;
6075 * suppress ignoring spaces from the indent of a line starting with an
6076 * unclosed parentheses.
6078 int ind_unclosed_noignore
= 0;
6081 * If the opening paren is the last nonwhite character on the line, and
6082 * ind_unclosed_wrapped is nonzero, use this indent relative to the outer
6083 * context (for very long lines).
6085 int ind_unclosed_wrapped
= 0;
6088 * suppress ignoring white space when lining up with the character after
6089 * an unclosed parentheses.
6091 int ind_unclosed_whiteok
= 0;
6094 * indent a closing parentheses under the line start of the matching
6095 * opening parentheses.
6097 int ind_matching_paren
= 0;
6100 * indent a closing parentheses under the previous line.
6102 int ind_paren_prev
= 0;
6105 * Extra indent for comments.
6107 int ind_comment
= 0;
6110 * spaces from the comment opener when there is nothing after it.
6112 int ind_in_comment
= 3;
6115 * boolean: if non-zero, use ind_in_comment even if there is something
6116 * after the comment opener.
6118 int ind_in_comment2
= 0;
6121 * max lines to search for an open paren
6123 int ind_maxparen
= 20;
6126 * max lines to search for an open comment
6128 int ind_maxcomment
= 70;
6131 * handle braces for java code
6136 * handle blocked cases correctly
6138 int ind_keep_case_label
= 0;
6143 int cur_amount
= MAXCOL
;
6148 pos_T
*tryposBrace
= NULL
;
6149 pos_T our_paren_pos
;
6152 #define BRACE_IN_COL0 1 /* '{' is in column 0 */
6153 #define BRACE_AT_START 2 /* '{' is at start of line */
6154 #define BRACE_AT_END 3 /* '{' is at end of line */
6160 #define LOOKFOR_INITIAL 0
6161 #define LOOKFOR_IF 1
6162 #define LOOKFOR_DO 2
6163 #define LOOKFOR_CASE 3
6164 #define LOOKFOR_ANY 4
6165 #define LOOKFOR_TERM 5
6166 #define LOOKFOR_UNTERM 6
6167 #define LOOKFOR_SCOPEDECL 7
6168 #define LOOKFOR_NOBREAK 8
6169 #define LOOKFOR_CPP_BASECLASS 9
6170 #define LOOKFOR_ENUM_OR_INIT 10
6175 int fraction
= 0; /* init for GCC */
6180 int cont_amount
= 0; /* amount for continuation line */
6182 for (options
= curbuf
->b_p_cino
; *options
; )
6185 if (*options
== '-')
6187 n
= getdigits(&options
);
6189 if (*options
== '.') /* ".5s" means a fraction */
6191 fraction
= atol((char *)++options
);
6192 while (VIM_ISDIGIT(*options
))
6201 if (*options
== 's') /* "2s" means two times 'shiftwidth' */
6203 if (n
== 0 && fraction
== 0)
6204 n
= curbuf
->b_p_sw
; /* just "s" is one 'shiftwidth' */
6207 n
*= curbuf
->b_p_sw
;
6209 n
+= (curbuf
->b_p_sw
* fraction
+ divider
/ 2) / divider
;
6215 /* When adding an entry here, also update the default 'cinoptions' in
6216 * doc/indent.txt, and add explanation for it! */
6219 case '>': ind_level
= n
; break;
6220 case 'e': ind_open_imag
= n
; break;
6221 case 'n': ind_no_brace
= n
; break;
6222 case 'f': ind_first_open
= n
; break;
6223 case '{': ind_open_extra
= n
; break;
6224 case '}': ind_close_extra
= n
; break;
6225 case '^': ind_open_left_imag
= n
; break;
6226 case ':': ind_case
= n
; break;
6227 case '=': ind_case_code
= n
; break;
6228 case 'b': ind_case_break
= n
; break;
6229 case 'p': ind_param
= n
; break;
6230 case 't': ind_func_type
= n
; break;
6231 case '/': ind_comment
= n
; break;
6232 case 'c': ind_in_comment
= n
; break;
6233 case 'C': ind_in_comment2
= n
; break;
6234 case 'i': ind_cpp_baseclass
= n
; break;
6235 case '+': ind_continuation
= n
; break;
6236 case '(': ind_unclosed
= n
; break;
6237 case 'u': ind_unclosed2
= n
; break;
6238 case 'U': ind_unclosed_noignore
= n
; break;
6239 case 'W': ind_unclosed_wrapped
= n
; break;
6240 case 'w': ind_unclosed_whiteok
= n
; break;
6241 case 'm': ind_matching_paren
= n
; break;
6242 case 'M': ind_paren_prev
= n
; break;
6243 case ')': ind_maxparen
= n
; break;
6244 case '*': ind_maxcomment
= n
; break;
6245 case 'g': ind_scopedecl
= n
; break;
6246 case 'h': ind_scopedecl_code
= n
; break;
6247 case 'j': ind_java
= n
; break;
6248 case 'l': ind_keep_case_label
= n
; break;
6249 case '#': ind_hash_comment
= n
; break;
6253 /* remember where the cursor was when we started */
6254 cur_curpos
= curwin
->w_cursor
;
6256 /* Get a copy of the current contents of the line.
6257 * This is required, because only the most recent line obtained with
6258 * ml_get is valid! */
6259 linecopy
= vim_strsave(ml_get(cur_curpos
.lnum
));
6260 if (linecopy
== NULL
)
6264 * In insert mode and the cursor is on a ')' truncate the line at the
6265 * cursor position. We don't want to line up with the matching '(' when
6266 * inserting new stuff.
6267 * For unknown reasons the cursor might be past the end of the line, thus
6270 if ((State
& INSERT
)
6271 && curwin
->w_cursor
.col
< STRLEN(linecopy
)
6272 && linecopy
[curwin
->w_cursor
.col
] == ')')
6273 linecopy
[curwin
->w_cursor
.col
] = NUL
;
6275 theline
= skipwhite(linecopy
);
6277 /* move the cursor to the start of the line */
6279 curwin
->w_cursor
.col
= 0;
6282 * #defines and so on always go at the left when included in 'cinkeys'.
6284 if (*theline
== '#' && (*linecopy
== '#' || in_cinkeys('#', ' ', TRUE
)))
6290 * Is it a non-case label? Then that goes at the left margin too.
6292 else if (cin_islabel(ind_maxcomment
)) /* XXX */
6298 * If we're inside a "//" comment and there is a "//" comment in a
6299 * previous line, lineup with that one.
6301 else if (cin_islinecomment(theline
)
6302 && (trypos
= find_line_comment()) != NULL
) /* XXX */
6304 /* find how indented the line beginning the comment is */
6305 getvcol(curwin
, trypos
, &col
, NULL
, NULL
);
6310 * If we're inside a comment and not looking at the start of the
6311 * comment, try using the 'comments' option.
6313 else if (!cin_iscomment(theline
)
6314 && (trypos
= find_start_comment(ind_maxcomment
)) != NULL
) /* XXX */
6316 int lead_start_len
= 2;
6317 int lead_middle_len
= 1;
6318 char_u lead_start
[COM_MAX_LEN
]; /* start-comment string */
6319 char_u lead_middle
[COM_MAX_LEN
]; /* middle-comment string */
6320 char_u lead_end
[COM_MAX_LEN
]; /* end-comment string */
6322 int start_align
= 0;
6326 /* find how indented the line beginning the comment is */
6327 getvcol(curwin
, trypos
, &col
, NULL
, NULL
);
6330 p
= curbuf
->b_p_com
;
6337 while (*p
!= NUL
&& *p
!= ':')
6339 if (*p
== COM_START
|| *p
== COM_END
|| *p
== COM_MIDDLE
)
6341 else if (*p
== COM_LEFT
|| *p
== COM_RIGHT
)
6343 else if (VIM_ISDIGIT(*p
) || *p
== '-')
6344 off
= getdigits(&p
);
6351 (void)copy_option_part(&p
, lead_end
, COM_MAX_LEN
, ",");
6352 if (what
== COM_START
)
6354 STRCPY(lead_start
, lead_end
);
6355 lead_start_len
= (int)STRLEN(lead_start
);
6357 start_align
= align
;
6359 else if (what
== COM_MIDDLE
)
6361 STRCPY(lead_middle
, lead_end
);
6362 lead_middle_len
= (int)STRLEN(lead_middle
);
6364 else if (what
== COM_END
)
6366 /* If our line starts with the middle comment string, line it
6367 * up with the comment opener per the 'comments' option. */
6368 if (STRNCMP(theline
, lead_middle
, lead_middle_len
) == 0
6369 && STRNCMP(theline
, lead_end
, STRLEN(lead_end
)) != 0)
6372 if (curwin
->w_cursor
.lnum
> 1)
6374 /* If the start comment string matches in the previous
6375 * line, use the indent of that line plus offset. If
6376 * the middle comment string matches in the previous
6377 * line, use the indent of that line. XXX */
6378 look
= skipwhite(ml_get(curwin
->w_cursor
.lnum
- 1));
6379 if (STRNCMP(look
, lead_start
, lead_start_len
) == 0)
6380 amount
= get_indent_lnum(curwin
->w_cursor
.lnum
- 1);
6381 else if (STRNCMP(look
, lead_middle
,
6382 lead_middle_len
) == 0)
6384 amount
= get_indent_lnum(curwin
->w_cursor
.lnum
- 1);
6387 /* If the start comment string doesn't match with the
6388 * start of the comment, skip this entry. XXX */
6389 else if (STRNCMP(ml_get(trypos
->lnum
) + trypos
->col
,
6390 lead_start
, lead_start_len
) != 0)
6394 amount
+= start_off
;
6395 else if (start_align
== COM_RIGHT
)
6396 amount
+= vim_strsize(lead_start
)
6397 - vim_strsize(lead_middle
);
6401 /* If our line starts with the end comment string, line it up
6402 * with the middle comment */
6403 if (STRNCMP(theline
, lead_middle
, lead_middle_len
) != 0
6404 && STRNCMP(theline
, lead_end
, STRLEN(lead_end
)) == 0)
6406 amount
= get_indent_lnum(curwin
->w_cursor
.lnum
- 1);
6410 else if (align
== COM_RIGHT
)
6411 amount
+= vim_strsize(lead_start
)
6412 - vim_strsize(lead_middle
);
6419 /* If our line starts with an asterisk, line up with the
6420 * asterisk in the comment opener; otherwise, line up
6421 * with the first character of the comment text.
6425 else if (theline
[0] == '*')
6430 * If we are more than one line away from the comment opener, take
6431 * the indent of the previous non-empty line. If 'cino' has "CO"
6432 * and we are just below the comment opener and there are any
6433 * white characters after it line up with the text after it;
6434 * otherwise, add the amount specified by "c" in 'cino'
6437 for (lnum
= cur_curpos
.lnum
- 1; lnum
> trypos
->lnum
; --lnum
)
6439 if (linewhite(lnum
)) /* skip blank lines */
6441 amount
= get_indent_lnum(lnum
); /* XXX */
6444 if (amount
== -1) /* use the comment opener */
6446 if (!ind_in_comment2
)
6448 start
= ml_get(trypos
->lnum
);
6449 look
= start
+ trypos
->col
+ 2; /* skip / and * */
6450 if (*look
!= NUL
) /* if something after it */
6451 trypos
->col
= (colnr_T
)(skipwhite(look
) - start
);
6453 getvcol(curwin
, trypos
, &col
, NULL
, NULL
);
6455 if (ind_in_comment2
|| *look
== NUL
)
6456 amount
+= ind_in_comment
;
6462 * Are we inside parentheses or braces?
6464 else if (((trypos
= find_match_paren(ind_maxparen
, ind_maxcomment
)) != NULL
6466 || (tryposBrace
= find_start_brace(ind_maxcomment
)) != NULL
6469 if (trypos
!= NULL
&& tryposBrace
!= NULL
)
6471 /* Both an unmatched '(' and '{' is found. Use the one which is
6472 * closer to the current cursor position, set the other to NULL. */
6473 if (trypos
->lnum
!= tryposBrace
->lnum
6474 ? trypos
->lnum
< tryposBrace
->lnum
6475 : trypos
->col
< tryposBrace
->col
)
6484 * If the matching paren is more than one line away, use the indent of
6485 * a previous non-empty line that matches the same paren.
6487 if (theline
[0] == ')' && ind_paren_prev
)
6489 /* Line up with the start of the matching paren line. */
6490 amount
= get_indent_lnum(curwin
->w_cursor
.lnum
- 1); /* XXX */
6495 our_paren_pos
= *trypos
;
6496 for (lnum
= cur_curpos
.lnum
- 1; lnum
> our_paren_pos
.lnum
; --lnum
)
6498 l
= skipwhite(ml_get(lnum
));
6499 if (cin_nocode(l
)) /* skip comment lines */
6501 if (cin_ispreproc_cont(&l
, &lnum
))
6502 continue; /* ignore #define, #if, etc. */
6503 curwin
->w_cursor
.lnum
= lnum
;
6505 /* Skip a comment. XXX */
6506 if ((trypos
= find_start_comment(ind_maxcomment
)) != NULL
)
6508 lnum
= trypos
->lnum
+ 1;
6513 if ((trypos
= find_match_paren(
6514 corr_ind_maxparen(ind_maxparen
, &cur_curpos
),
6515 ind_maxcomment
)) != NULL
6516 && trypos
->lnum
== our_paren_pos
.lnum
6517 && trypos
->col
== our_paren_pos
.col
)
6519 amount
= get_indent_lnum(lnum
); /* XXX */
6521 if (theline
[0] == ')')
6523 if (our_paren_pos
.lnum
!= lnum
6524 && cur_amount
> amount
)
6525 cur_amount
= amount
;
6534 * Line up with line where the matching paren is. XXX
6535 * If the line starts with a '(' or the indent for unclosed
6536 * parentheses is zero, line up with the unclosed parentheses.
6540 int ignore_paren_col
= 0;
6542 amount
= skip_label(our_paren_pos
.lnum
, &look
, ind_maxcomment
);
6543 look
= skipwhite(look
);
6546 linenr_T save_lnum
= curwin
->w_cursor
.lnum
;
6550 /* Ignore a '(' in front of the line that has a match before
6551 * our matching '('. */
6552 curwin
->w_cursor
.lnum
= our_paren_pos
.lnum
;
6553 line
= ml_get_curline();
6554 look_col
= (int)(look
- line
);
6555 curwin
->w_cursor
.col
= look_col
+ 1;
6556 if ((trypos
= findmatchlimit(NULL
, ')', 0, ind_maxparen
))
6558 && trypos
->lnum
== our_paren_pos
.lnum
6559 && trypos
->col
< our_paren_pos
.col
)
6560 ignore_paren_col
= trypos
->col
+ 1;
6562 curwin
->w_cursor
.lnum
= save_lnum
;
6563 look
= ml_get(our_paren_pos
.lnum
) + look_col
;
6565 if (theline
[0] == ')' || ind_unclosed
== 0
6566 || (!ind_unclosed_noignore
&& *look
== '('
6567 && ignore_paren_col
== 0))
6570 * If we're looking at a close paren, line up right there;
6571 * otherwise, line up with the next (non-white) character.
6572 * When ind_unclosed_wrapped is set and the matching paren is
6573 * the last nonwhite character of the line, use either the
6574 * indent of the current line or the indentation of the next
6575 * outer paren and add ind_unclosed_wrapped (for very long
6578 if (theline
[0] != ')')
6580 cur_amount
= MAXCOL
;
6581 l
= ml_get(our_paren_pos
.lnum
);
6582 if (ind_unclosed_wrapped
6583 && cin_ends_in(l
, (char_u
*)"(", NULL
))
6585 /* look for opening unmatched paren, indent one level
6586 * for each additional level */
6588 for (col
= 0; col
< our_paren_pos
.col
; ++col
)
6597 case '}': if (n
> 1)
6603 our_paren_pos
.col
= 0;
6604 amount
+= n
* ind_unclosed_wrapped
;
6606 else if (ind_unclosed_whiteok
)
6607 our_paren_pos
.col
++;
6610 col
= our_paren_pos
.col
+ 1;
6611 while (vim_iswhite(l
[col
]))
6613 if (l
[col
] != NUL
) /* In case of trailing space */
6614 our_paren_pos
.col
= col
;
6616 our_paren_pos
.col
++;
6621 * Find how indented the paren is, or the character after it
6622 * if we did the above "if".
6624 if (our_paren_pos
.col
> 0)
6626 getvcol(curwin
, &our_paren_pos
, &col
, NULL
, NULL
);
6627 if (cur_amount
> (int)col
)
6632 if (theline
[0] == ')' && ind_matching_paren
)
6634 /* Line up with the start of the matching paren line. */
6636 else if (ind_unclosed
== 0 || (!ind_unclosed_noignore
6637 && *look
== '(' && ignore_paren_col
== 0))
6639 if (cur_amount
!= MAXCOL
)
6640 amount
= cur_amount
;
6644 /* Add ind_unclosed2 for each '(' before our matching one, but
6645 * ignore (void) before the line (ignore_paren_col). */
6646 col
= our_paren_pos
.col
;
6647 while ((int)our_paren_pos
.col
> ignore_paren_col
)
6649 --our_paren_pos
.col
;
6650 switch (*ml_get_pos(&our_paren_pos
))
6652 case '(': amount
+= ind_unclosed2
;
6653 col
= our_paren_pos
.col
;
6655 case ')': amount
-= ind_unclosed2
;
6661 /* Use ind_unclosed once, when the first '(' is not inside
6664 amount
+= ind_unclosed
;
6667 curwin
->w_cursor
.lnum
= our_paren_pos
.lnum
;
6668 curwin
->w_cursor
.col
= col
;
6669 if ((trypos
= find_match_paren(ind_maxparen
,
6670 ind_maxcomment
)) != NULL
)
6671 amount
+= ind_unclosed2
;
6673 amount
+= ind_unclosed
;
6676 * For a line starting with ')' use the minimum of the two
6677 * positions, to avoid giving it more indent than the previous
6679 * func_long_name( if (x
6681 * ) ^ not here ) ^ not here
6683 if (cur_amount
< amount
)
6684 amount
= cur_amount
;
6688 /* add extra indent for a comment */
6689 if (cin_iscomment(theline
))
6690 amount
+= ind_comment
;
6694 * Are we at least inside braces, then?
6698 trypos
= tryposBrace
;
6700 ourscope
= trypos
->lnum
;
6701 start
= ml_get(ourscope
);
6704 * Now figure out how indented the line is in general.
6705 * If the brace was at the start of the line, we use that;
6706 * otherwise, check out the indentation of the line as
6707 * a whole and then add the "imaginary indent" to that.
6709 look
= skipwhite(start
);
6712 getvcol(curwin
, trypos
, &col
, NULL
, NULL
);
6715 start_brace
= BRACE_IN_COL0
;
6717 start_brace
= BRACE_AT_START
;
6722 * that opening brace might have been on a continuation
6723 * line. if so, find the start of the line.
6725 curwin
->w_cursor
.lnum
= ourscope
;
6728 * position the cursor over the rightmost paren, so that
6729 * matching it will take us back to the start of the line.
6732 if (find_last_paren(start
, '(', ')')
6733 && (trypos
= find_match_paren(ind_maxparen
,
6734 ind_maxcomment
)) != NULL
)
6735 lnum
= trypos
->lnum
;
6738 * It could have been something like
6739 * case 1: if (asdf &&
6743 if (ind_keep_case_label
&& cin_iscase(skipwhite(ml_get_curline())))
6744 amount
= get_indent();
6746 amount
= skip_label(lnum
, &l
, ind_maxcomment
);
6748 start_brace
= BRACE_AT_END
;
6752 * if we're looking at a closing brace, that's where
6753 * we want to be. otherwise, add the amount of room
6754 * that an indent is supposed to be.
6756 if (theline
[0] == '}')
6759 * they may want closing braces to line up with something
6760 * other than the open brace. indulge them, if so.
6762 amount
+= ind_close_extra
;
6767 * If we're looking at an "else", try to find an "if"
6769 * If we're looking at a "while", try to find a "do"
6772 lookfor
= LOOKFOR_INITIAL
;
6773 if (cin_iselse(theline
))
6774 lookfor
= LOOKFOR_IF
;
6775 else if (cin_iswhileofdo(theline
, cur_curpos
.lnum
, ind_maxparen
))
6777 lookfor
= LOOKFOR_DO
;
6778 if (lookfor
!= LOOKFOR_INITIAL
)
6780 curwin
->w_cursor
.lnum
= cur_curpos
.lnum
;
6781 if (find_match(lookfor
, ourscope
, ind_maxparen
,
6782 ind_maxcomment
) == OK
)
6784 amount
= get_indent(); /* XXX */
6790 * We get here if we are not on an "while-of-do" or "else" (or
6791 * failed to find a matching "if").
6792 * Search backwards for something to line up with.
6793 * First set amount for when we don't find anything.
6797 * if the '{' is _really_ at the left margin, use the imaginary
6798 * location of a left-margin brace. Otherwise, correct the
6799 * location for ind_open_extra.
6802 if (start_brace
== BRACE_IN_COL0
) /* '{' is in column 0 */
6804 amount
= ind_open_left_imag
;
6808 if (start_brace
== BRACE_AT_END
) /* '{' is at end of line */
6809 amount
+= ind_open_imag
;
6812 /* Compensate for adding ind_open_extra later. */
6813 amount
-= ind_open_extra
;
6819 lookfor_break
= FALSE
;
6821 if (cin_iscase(theline
)) /* it's a switch() label */
6823 lookfor
= LOOKFOR_CASE
; /* find a previous switch() label */
6826 else if (cin_isscopedecl(theline
)) /* private:, ... */
6828 lookfor
= LOOKFOR_SCOPEDECL
; /* class decl is this block */
6829 amount
+= ind_scopedecl
;
6833 if (ind_case_break
&& cin_isbreak(theline
)) /* break; ... */
6834 lookfor_break
= TRUE
;
6836 lookfor
= LOOKFOR_INITIAL
;
6837 amount
+= ind_level
; /* ind_level from start of block */
6839 scope_amount
= amount
;
6843 * Search backwards. If we find something we recognize, line up
6846 * if we're looking at an open brace, indent
6847 * the usual amount relative to the conditional
6848 * that opens the block.
6850 curwin
->w_cursor
= cur_curpos
;
6853 curwin
->w_cursor
.lnum
--;
6854 curwin
->w_cursor
.col
= 0;
6857 * If we went all the way back to the start of our scope, line
6860 if (curwin
->w_cursor
.lnum
<= ourscope
)
6862 /* we reached end of scope:
6863 * if looking for a enum or structure initialization
6865 * if it is an initializer (enum xxx or xxx =), then
6866 * don't add ind_continuation, otherwise it is a variable
6869 * here; <-- add ind_continuation
6871 if (lookfor
== LOOKFOR_ENUM_OR_INIT
)
6873 if (curwin
->w_cursor
.lnum
== 0
6874 || curwin
->w_cursor
.lnum
6875 < ourscope
- ind_maxparen
)
6877 /* nothing found (abuse ind_maxparen as limit)
6878 * assume terminated line (i.e. a variable
6879 * initialization) */
6880 if (cont_amount
> 0)
6881 amount
= cont_amount
;
6883 amount
+= ind_continuation
;
6887 l
= ml_get_curline();
6890 * If we're in a comment now, skip to the start of the
6893 trypos
= find_start_comment(ind_maxcomment
);
6896 curwin
->w_cursor
.lnum
= trypos
->lnum
+ 1;
6897 curwin
->w_cursor
.col
= 0;
6902 * Skip preprocessor directives and blank lines.
6904 if (cin_ispreproc_cont(&l
, &curwin
->w_cursor
.lnum
))
6910 terminated
= cin_isterminated(l
, FALSE
, TRUE
);
6913 * If we are at top level and the line looks like a
6914 * function declaration, we are done
6915 * (it's a variable declaration).
6917 if (start_brace
!= BRACE_IN_COL0
6918 || !cin_isfuncdecl(&l
, curwin
->w_cursor
.lnum
))
6920 /* if the line is terminated with another ','
6921 * it is a continued variable initialization.
6922 * don't add extra indent.
6923 * TODO: does not work, if a function
6924 * declaration is split over multiple lines:
6925 * cin_isfuncdecl returns FALSE then.
6927 if (terminated
== ',')
6930 /* if it es a enum declaration or an assignment,
6933 if (terminated
!= ';' && cin_isinit())
6936 /* nothing useful found */
6937 if (terminated
== 0 || terminated
== '{')
6941 if (terminated
!= ';')
6943 /* Skip parens and braces. Position the cursor
6944 * over the rightmost paren, so that matching it
6945 * will take us back to the start of the line.
6948 if (find_last_paren(l
, '(', ')'))
6949 trypos
= find_match_paren(ind_maxparen
,
6952 if (trypos
== NULL
&& find_last_paren(l
, '{', '}'))
6953 trypos
= find_start_brace(ind_maxcomment
);
6957 curwin
->w_cursor
.lnum
= trypos
->lnum
+ 1;
6958 curwin
->w_cursor
.col
= 0;
6963 /* it's a variable declaration, add indentation
6968 if (cont_amount
> 0)
6969 amount
= cont_amount
;
6971 amount
+= ind_continuation
;
6973 else if (lookfor
== LOOKFOR_UNTERM
)
6975 if (cont_amount
> 0)
6976 amount
= cont_amount
;
6978 amount
+= ind_continuation
;
6980 else if (lookfor
!= LOOKFOR_TERM
6981 && lookfor
!= LOOKFOR_CPP_BASECLASS
)
6983 amount
= scope_amount
;
6984 if (theline
[0] == '{')
6985 amount
+= ind_open_extra
;
6991 * If we're in a comment now, skip to the start of the comment.
6993 if ((trypos
= find_start_comment(ind_maxcomment
)) != NULL
)
6995 curwin
->w_cursor
.lnum
= trypos
->lnum
+ 1;
6996 curwin
->w_cursor
.col
= 0;
7000 l
= ml_get_curline();
7003 * If this is a switch() label, may line up relative to that.
7004 * If this is a C++ scope declaration, do the same.
7006 iscase
= cin_iscase(l
);
7007 if (iscase
|| cin_isscopedecl(l
))
7009 /* we are only looking for cpp base class
7010 * declaration/initialization any longer */
7011 if (lookfor
== LOOKFOR_CPP_BASECLASS
)
7014 /* When looking for a "do" we are not interested in
7021 * c = 99 + <- this indent plus continuation
7024 if (lookfor
== LOOKFOR_UNTERM
7025 || lookfor
== LOOKFOR_ENUM_OR_INIT
)
7027 if (cont_amount
> 0)
7028 amount
= cont_amount
;
7030 amount
+= ind_continuation
;
7035 * case xx: <- line up with this case
7039 if ( (iscase
&& lookfor
== LOOKFOR_CASE
)
7040 || (iscase
&& lookfor_break
)
7041 || (!iscase
&& lookfor
== LOOKFOR_SCOPEDECL
))
7044 * Check that this case label is not for another
7047 if ((trypos
= find_start_brace(ind_maxcomment
)) ==
7048 NULL
|| trypos
->lnum
== ourscope
)
7050 amount
= get_indent(); /* XXX */
7056 n
= get_indent_nolabel(curwin
->w_cursor
.lnum
); /* XXX */
7059 * case xx: if (cond) <- line up with this if
7064 * if (cond) <- line up with this line
7068 if (lookfor
== LOOKFOR_TERM
)
7078 * case xx: x = x + 1; <- line up with this x
7081 * case xx: if (cond) <- line up with this if
7087 l
= after_label(ml_get_curline());
7088 if (l
!= NULL
&& cin_is_cinword(l
))
7090 if (theline
[0] == '{')
7091 amount
+= ind_open_extra
;
7093 amount
+= ind_level
+ ind_no_brace
;
7099 * Try to get the indent of a statement before the switch
7100 * label. If nothing is found, line up relative to the
7102 * break; <- may line up with this line
7106 scope_amount
= get_indent() + (iscase
/* XXX */
7107 ? ind_case_code
: ind_scopedecl_code
);
7108 lookfor
= ind_case_break
? LOOKFOR_NOBREAK
: LOOKFOR_ANY
;
7113 * Looking for a switch() label or C++ scope declaration,
7114 * ignore other lines, skip {}-blocks.
7116 if (lookfor
== LOOKFOR_CASE
|| lookfor
== LOOKFOR_SCOPEDECL
)
7118 if (find_last_paren(l
, '{', '}') && (trypos
=
7119 find_start_brace(ind_maxcomment
)) != NULL
)
7121 curwin
->w_cursor
.lnum
= trypos
->lnum
+ 1;
7122 curwin
->w_cursor
.col
= 0;
7128 * Ignore jump labels with nothing after them.
7130 if (cin_islabel(ind_maxcomment
))
7132 l
= after_label(ml_get_curline());
7133 if (l
== NULL
|| cin_nocode(l
))
7138 * Ignore #defines, #if, etc.
7139 * Ignore comment and empty lines.
7140 * (need to get the line again, cin_islabel() may have
7143 l
= ml_get_curline();
7144 if (cin_ispreproc_cont(&l
, &curwin
->w_cursor
.lnum
)
7149 * Are we at the start of a cpp base class declaration or
7150 * constructor initialization?
7153 if (lookfor
!= LOOKFOR_TERM
&& ind_cpp_baseclass
> 0)
7155 n
= cin_is_cpp_baseclass(&col
);
7156 l
= ml_get_curline();
7160 if (lookfor
== LOOKFOR_UNTERM
)
7162 if (cont_amount
> 0)
7163 amount
= cont_amount
;
7165 amount
+= ind_continuation
;
7167 else if (theline
[0] == '{')
7169 /* Need to find start of the declaration. */
7170 lookfor
= LOOKFOR_UNTERM
;
7171 ind_continuation
= 0;
7176 amount
= get_baseclass_amount(col
, ind_maxparen
,
7177 ind_maxcomment
, ind_cpp_baseclass
);
7180 else if (lookfor
== LOOKFOR_CPP_BASECLASS
)
7182 /* only look, whether there is a cpp base class
7183 * declaration or initialization before the opening brace.
7185 if (cin_isterminated(l
, TRUE
, FALSE
))
7192 * What happens next depends on the line being terminated.
7193 * If terminated with a ',' only consider it terminating if
7194 * there is another unterminated statement behind, eg:
7198 * Otherwise check whether it is a enumeration or structure
7199 * initialisation (not indented) or a variable declaration
7202 terminated
= cin_isterminated(l
, FALSE
, TRUE
);
7204 if (terminated
== 0 || (lookfor
!= LOOKFOR_UNTERM
7205 && terminated
== ','))
7208 * if we're in the middle of a paren thing,
7209 * go back to the line that starts it so
7210 * we can get the right prevailing indent
7215 * position the cursor over the rightmost paren, so that
7216 * matching it will take us back to the start of the line.
7218 (void)find_last_paren(l
, '(', ')');
7219 trypos
= find_match_paren(
7220 corr_ind_maxparen(ind_maxparen
, &cur_curpos
),
7224 * If we are looking for ',', we also look for matching
7227 if (trypos
== NULL
&& terminated
== ','
7228 && find_last_paren(l
, '{', '}'))
7229 trypos
= find_start_brace(ind_maxcomment
);
7234 * Check if we are on a case label now. This is
7236 * case xx: if ( asdf &&
7239 curwin
->w_cursor
= *trypos
;
7240 l
= ml_get_curline();
7241 if (cin_iscase(l
) || cin_isscopedecl(l
))
7243 ++curwin
->w_cursor
.lnum
;
7244 curwin
->w_cursor
.col
= 0;
7250 * Skip over continuation lines to find the one to get the
7252 * char *usethis = "bla\
7256 if (terminated
== ',')
7258 while (curwin
->w_cursor
.lnum
> 1)
7260 l
= ml_get(curwin
->w_cursor
.lnum
- 1);
7261 if (*l
== NUL
|| l
[STRLEN(l
) - 1] != '\\')
7263 --curwin
->w_cursor
.lnum
;
7264 curwin
->w_cursor
.col
= 0;
7269 * Get indent and pointer to text for current line,
7270 * ignoring any jump label. XXX
7272 cur_amount
= skip_label(curwin
->w_cursor
.lnum
,
7273 &l
, ind_maxcomment
);
7276 * If this is just above the line we are indenting, and it
7277 * starts with a '{', line it up with this line.
7282 if (terminated
!= ',' && lookfor
!= LOOKFOR_TERM
7283 && theline
[0] == '{')
7285 amount
= cur_amount
;
7287 * Only add ind_open_extra when the current line
7288 * doesn't start with a '{', which must have a match
7289 * in the same line (scope is the same). Probably:
7293 if (*skipwhite(l
) != '{')
7294 amount
+= ind_open_extra
;
7296 if (ind_cpp_baseclass
)
7298 /* have to look back, whether it is a cpp base
7299 * class declaration or initialization */
7300 lookfor
= LOOKFOR_CPP_BASECLASS
;
7307 * Check if we are after an "if", "while", etc.
7308 * Also allow " } else".
7310 if (cin_is_cinword(l
) || cin_iselse(skipwhite(l
)))
7313 * Found an unterminated line after an if (), line up
7314 * with the last one.
7319 if (lookfor
== LOOKFOR_UNTERM
7320 || lookfor
== LOOKFOR_ENUM_OR_INIT
)
7322 if (cont_amount
> 0)
7323 amount
= cont_amount
;
7325 amount
+= ind_continuation
;
7330 * If this is just above the line we are indenting, we
7334 * Otherwise this indent can be used when the line
7335 * before this is terminated.
7342 amount
= cur_amount
;
7343 if (theline
[0] == '{')
7344 amount
+= ind_open_extra
;
7345 if (lookfor
!= LOOKFOR_TERM
)
7347 amount
+= ind_level
+ ind_no_brace
;
7352 * Special trick: when expecting the while () after a
7353 * do, line up with the while()
7358 l
= skipwhite(ml_get_curline());
7361 if (whilelevel
== 0)
7367 * When searching for a terminated line, don't use the
7368 * one between the "if" and the "else".
7369 * Need to use the scope of this "else". XXX
7370 * If whilelevel != 0 continue looking for a "do {".
7374 && ((trypos
= find_start_brace(ind_maxcomment
))
7376 || find_match(LOOKFOR_IF
, trypos
->lnum
,
7377 ind_maxparen
, ind_maxcomment
) == FAIL
))
7382 * If we're below an unterminated line that is not an
7383 * "if" or something, we may line up with this line or
7384 * add something for a continuation line, depending on
7385 * the line before this one.
7390 * Found two unterminated lines on a row, line up with
7396 if (lookfor
== LOOKFOR_UNTERM
)
7398 /* When line ends in a comma add extra indent */
7399 if (terminated
== ',')
7400 amount
+= ind_continuation
;
7404 if (lookfor
== LOOKFOR_ENUM_OR_INIT
)
7406 /* Found two lines ending in ',', lineup with the
7407 * lowest one, but check for cpp base class
7408 * declaration/initialization, if it is an
7409 * opening brace or we are looking just for
7410 * enumerations/initializations. */
7411 if (terminated
== ',')
7413 if (ind_cpp_baseclass
== 0)
7416 lookfor
= LOOKFOR_CPP_BASECLASS
;
7420 /* Ignore unterminated lines in between, but
7422 if (amount
> cur_amount
)
7423 amount
= cur_amount
;
7428 * Found first unterminated line on a row, may
7429 * line up with this line, remember its indent
7433 amount
= cur_amount
;
7436 * If previous line ends in ',', check whether we
7437 * are in an initialization or enum
7442 * or a normal possible continuation line.
7443 * but only, of no other statement has been found
7446 if (lookfor
== LOOKFOR_INITIAL
&& terminated
== ',')
7448 lookfor
= LOOKFOR_ENUM_OR_INIT
;
7449 cont_amount
= cin_first_id_amount();
7453 if (lookfor
== LOOKFOR_INITIAL
7455 && l
[STRLEN(l
) - 1] == '\\')
7457 cont_amount
= cin_get_equal_amount(
7458 curwin
->w_cursor
.lnum
);
7459 if (lookfor
!= LOOKFOR_TERM
)
7460 lookfor
= LOOKFOR_UNTERM
;
7467 * Check if we are after a while (cond);
7468 * If so: Ignore until the matching "do".
7471 else if (cin_iswhileofdo_end(terminated
, ind_maxparen
,
7475 * Found an unterminated line after a while ();, line up
7476 * with the last one.
7478 * 100 + <- line up with this one
7481 if (lookfor
== LOOKFOR_UNTERM
7482 || lookfor
== LOOKFOR_ENUM_OR_INIT
)
7484 if (cont_amount
> 0)
7485 amount
= cont_amount
;
7487 amount
+= ind_continuation
;
7491 if (whilelevel
== 0)
7493 lookfor
= LOOKFOR_TERM
;
7494 amount
= get_indent(); /* XXX */
7495 if (theline
[0] == '{')
7496 amount
+= ind_open_extra
;
7502 * We are after a "normal" statement.
7503 * If we had another statement we can stop now and use the
7504 * indent of that other statement.
7505 * Otherwise the indent of the current statement may be used,
7506 * search backwards for the next "normal" statement.
7511 * Skip single break line, if before a switch label. It
7512 * may be lined up with the case label.
7514 if (lookfor
== LOOKFOR_NOBREAK
7515 && cin_isbreak(skipwhite(ml_get_curline())))
7517 lookfor
= LOOKFOR_ANY
;
7522 * Handle "do {" line.
7526 l
= cin_skipcomment(ml_get_curline());
7529 amount
= get_indent(); /* XXX */
7536 * Found a terminated line above an unterminated line. Add
7537 * the amount for a continuation line.
7546 if (lookfor
== LOOKFOR_UNTERM
7547 || lookfor
== LOOKFOR_ENUM_OR_INIT
)
7549 if (cont_amount
> 0)
7550 amount
= cont_amount
;
7552 amount
+= ind_continuation
;
7557 * Found a terminated line above a terminated line or "if"
7558 * etc. line. Use the amount of the line below us.
7561 * while (asdf) ->here;
7565 if (lookfor
== LOOKFOR_TERM
)
7567 if (!lookfor_break
&& whilelevel
== 0)
7572 * First line above the one we're indenting is terminated.
7573 * To know what needs to be done look further backward for
7574 * a terminated line.
7579 * position the cursor over the rightmost paren, so
7580 * that matching it will take us back to the start of
7581 * the line. Helps for:
7587 l
= ml_get_curline();
7588 if (find_last_paren(l
, '(', ')')
7589 && (trypos
= find_match_paren(ind_maxparen
,
7590 ind_maxcomment
)) != NULL
)
7593 * Check if we are on a case label now. This is
7595 * case xx: if ( asdf &&
7598 curwin
->w_cursor
= *trypos
;
7599 l
= ml_get_curline();
7600 if (cin_iscase(l
) || cin_isscopedecl(l
))
7602 ++curwin
->w_cursor
.lnum
;
7603 curwin
->w_cursor
.col
= 0;
7608 /* When aligning with the case statement, don't align
7609 * with a statement after it.
7610 * case 1: { <-- don't use this { position
7617 iscase
= (ind_keep_case_label
&& cin_iscase(l
));
7620 * Get indent and pointer to text for current line,
7621 * ignoring any jump label.
7623 amount
= skip_label(curwin
->w_cursor
.lnum
,
7624 &l
, ind_maxcomment
);
7626 if (theline
[0] == '{')
7627 amount
+= ind_open_extra
;
7628 /* See remark above: "Only add ind_open_extra.." */
7631 amount
-= ind_open_extra
;
7632 lookfor
= iscase
? LOOKFOR_ANY
: LOOKFOR_TERM
;
7635 * When a terminated line starts with "else" skip to
7636 * the matching "if":
7639 * Need to use the scope of this "else". XXX
7640 * If whilelevel != 0 continue looking for a "do {".
7642 if (lookfor
== LOOKFOR_TERM
7647 if ((trypos
= find_start_brace(ind_maxcomment
))
7649 || find_match(LOOKFOR_IF
, trypos
->lnum
,
7650 ind_maxparen
, ind_maxcomment
) == FAIL
)
7656 * If we're at the end of a block, skip to the start of
7659 curwin
->w_cursor
.col
= 0;
7660 if (*cin_skipcomment(l
) == '}'
7661 && (trypos
= find_start_brace(ind_maxcomment
))
7664 curwin
->w_cursor
= *trypos
;
7665 /* if not "else {" check for terminated again */
7666 /* but skip block for "} else {" */
7667 l
= cin_skipcomment(ml_get_curline());
7668 if (*l
== '}' || !cin_iselse(l
))
7670 ++curwin
->w_cursor
.lnum
;
7671 curwin
->w_cursor
.col
= 0;
7679 /* add extra indent for a comment */
7680 if (cin_iscomment(theline
))
7681 amount
+= ind_comment
;
7685 * ok -- we're not inside any sort of structure at all!
7687 * this means we're at the top level, and everything should
7688 * basically just match where the previous line is, except
7689 * for the lines immediately following a function declaration,
7690 * which are K&R-style parameters and need to be indented.
7695 * if our line starts with an open brace, forget about any
7696 * prevailing indent and make sure it looks like the start
7700 if (theline
[0] == '{')
7702 amount
= ind_first_open
;
7706 * If the NEXT line is a function declaration, the current
7707 * line needs to be indented as a function type spec.
7708 * Don't do this if the current line looks like a comment
7709 * or if the current line is terminated, ie. ends in ';'.
7711 else if (cur_curpos
.lnum
< curbuf
->b_ml
.ml_line_count
7712 && !cin_nocode(theline
)
7713 && !cin_ends_in(theline
, (char_u
*)":", NULL
)
7714 && !cin_ends_in(theline
, (char_u
*)",", NULL
)
7715 && cin_isfuncdecl(NULL
, cur_curpos
.lnum
+ 1)
7716 && !cin_isterminated(theline
, FALSE
, TRUE
))
7718 amount
= ind_func_type
;
7723 curwin
->w_cursor
= cur_curpos
;
7725 /* search backwards until we find something we recognize */
7727 while (curwin
->w_cursor
.lnum
> 1)
7729 curwin
->w_cursor
.lnum
--;
7730 curwin
->w_cursor
.col
= 0;
7732 l
= ml_get_curline();
7735 * If we're in a comment now, skip to the start of the comment.
7737 if ((trypos
= find_start_comment(ind_maxcomment
)) != NULL
)
7739 curwin
->w_cursor
.lnum
= trypos
->lnum
+ 1;
7740 curwin
->w_cursor
.col
= 0;
7745 * Are we at the start of a cpp base class declaration or
7746 * constructor initialization?
7749 if (ind_cpp_baseclass
!= 0 && theline
[0] != '{')
7751 n
= cin_is_cpp_baseclass(&col
);
7752 l
= ml_get_curline();
7757 amount
= get_baseclass_amount(col
, ind_maxparen
,
7758 ind_maxcomment
, ind_cpp_baseclass
);
7763 * Skip preprocessor directives and blank lines.
7765 if (cin_ispreproc_cont(&l
, &curwin
->w_cursor
.lnum
))
7772 * If the previous line ends in ',', use one level of
7776 * do this before checking for '}' in case of eg.
7784 if (cin_ends_in(l
, (char_u
*)",", NULL
)
7785 || (*l
!= NUL
&& (n
= l
[STRLEN(l
) - 1]) == '\\'))
7787 /* take us back to opening paren */
7788 if (find_last_paren(l
, '(', ')')
7789 && (trypos
= find_match_paren(ind_maxparen
,
7790 ind_maxcomment
)) != NULL
)
7791 curwin
->w_cursor
= *trypos
;
7793 /* For a line ending in ',' that is a continuation line go
7794 * back to the first line with a backslash:
7799 while (n
== 0 && curwin
->w_cursor
.lnum
> 1)
7801 l
= ml_get(curwin
->w_cursor
.lnum
- 1);
7802 if (*l
== NUL
|| l
[STRLEN(l
) - 1] != '\\')
7804 --curwin
->w_cursor
.lnum
;
7805 curwin
->w_cursor
.col
= 0;
7808 amount
= get_indent(); /* XXX */
7811 amount
= cin_first_id_amount();
7813 amount
= ind_continuation
;
7818 * If the line looks like a function declaration, and we're
7819 * not in a comment, put it the left margin.
7821 if (cin_isfuncdecl(NULL
, cur_curpos
.lnum
)) /* XXX */
7823 l
= ml_get_curline();
7826 * Finding the closing '}' of a previous function. Put
7827 * current line at the left margin. For when 'cino' has "fs".
7829 if (*skipwhite(l
) == '}')
7833 * If the previous line ends on '};' (maybe followed by
7834 * comments) align at column 0. For example:
7835 * char *string_array[] = { "foo",
7836 * / * x * / "b};ar" }; / * foobar * /
7838 if (cin_ends_in(l
, (char_u
*)"};", NULL
))
7842 * If the PREVIOUS line is a function declaration, the current
7843 * line (and the ones that follow) needs to be indented as
7846 if (cin_isfuncdecl(&l
, curwin
->w_cursor
.lnum
))
7853 * If the previous line ends in ';' and the line before the
7854 * previous line ends in ',' or '\', ident to column zero:
7859 if (cin_ends_in(l
, (char_u
*)";", NULL
))
7861 l
= ml_get(curwin
->w_cursor
.lnum
- 1);
7862 if (cin_ends_in(l
, (char_u
*)",", NULL
)
7863 || (*l
!= NUL
&& l
[STRLEN(l
) - 1] == '\\'))
7865 l
= ml_get_curline();
7869 * Doesn't look like anything interesting -- so just
7870 * use the indent of this line.
7872 * Position the cursor over the rightmost paren, so that
7873 * matching it will take us back to the start of the line.
7875 find_last_paren(l
, '(', ')');
7877 if ((trypos
= find_match_paren(ind_maxparen
,
7878 ind_maxcomment
)) != NULL
)
7879 curwin
->w_cursor
= *trypos
;
7880 amount
= get_indent(); /* XXX */
7884 /* add extra indent for a comment */
7885 if (cin_iscomment(theline
))
7886 amount
+= ind_comment
;
7888 /* add extra indent if the previous line ended in a backslash:
7891 * char *foo = "asdf\
7894 if (cur_curpos
.lnum
> 1)
7896 l
= ml_get(cur_curpos
.lnum
- 1);
7897 if (*l
!= NUL
&& l
[STRLEN(l
) - 1] == '\\')
7899 cur_amount
= cin_get_equal_amount(cur_curpos
.lnum
- 1);
7901 amount
= cur_amount
;
7902 else if (cur_amount
== 0)
7903 amount
+= ind_continuation
;
7910 /* put the cursor back where it belongs */
7911 curwin
->w_cursor
= cur_curpos
;
7921 find_match(lookfor
, ourscope
, ind_maxparen
, ind_maxcomment
)
7933 if (lookfor
== LOOKFOR_IF
)
7944 curwin
->w_cursor
.col
= 0;
7946 while (curwin
->w_cursor
.lnum
> ourscope
+ 1)
7948 curwin
->w_cursor
.lnum
--;
7949 curwin
->w_cursor
.col
= 0;
7951 look
= cin_skipcomment(ml_get_curline());
7952 if (cin_iselse(look
)
7954 || cin_isdo(look
) /* XXX */
7955 || cin_iswhileofdo(look
, curwin
->w_cursor
.lnum
, ind_maxparen
))
7958 * if we've gone outside the braces entirely,
7959 * we must be out of scope...
7961 theirscope
= find_start_brace(ind_maxcomment
); /* XXX */
7962 if (theirscope
== NULL
)
7966 * and if the brace enclosing this is further
7967 * back than the one enclosing the else, we're
7970 if (theirscope
->lnum
< ourscope
)
7974 * and if they're enclosed in a *deeper* brace,
7975 * then we can ignore it because it's in a
7976 * different scope...
7978 if (theirscope
->lnum
> ourscope
)
7982 * if it was an "else" (that's not an "else if")
7983 * then we need to go back to another if, so
7984 * increment elselevel
7986 look
= cin_skipcomment(ml_get_curline());
7987 if (cin_iselse(look
))
7989 mightbeif
= cin_skipcomment(look
+ 4);
7990 if (!cin_isif(mightbeif
))
7996 * if it was a "while" then we need to go back to
7997 * another "do", so increment whilelevel. XXX
7999 if (cin_iswhileofdo(look
, curwin
->w_cursor
.lnum
, ind_maxparen
))
8005 /* If it's an "if" decrement elselevel */
8006 look
= cin_skipcomment(ml_get_curline());
8011 * When looking for an "if" ignore "while"s that
8014 if (elselevel
== 0 && lookfor
== LOOKFOR_IF
)
8018 /* If it's a "do" decrement whilelevel */
8023 * if we've used up all the elses, then
8024 * this must be the if that we want!
8025 * match the indent level of that if.
8027 if (elselevel
<= 0 && whilelevel
<= 0)
8036 # if defined(FEAT_EVAL) || defined(PROTO)
8038 * Get indent level from 'indentexpr'.
8046 int use_sandbox
= was_set_insecurely((char_u
*)"indentexpr",
8049 pos
= curwin
->w_cursor
;
8050 set_vim_var_nr(VV_LNUM
, curwin
->w_cursor
.lnum
);
8054 indent
= eval_to_number(curbuf
->b_p_inde
);
8059 /* Restore the cursor position so that 'indentexpr' doesn't need to.
8060 * Pretend to be in Insert mode, allow cursor past end of line for "o"
8064 curwin
->w_cursor
= pos
;
8068 /* If there is an error, just keep the current indent. */
8070 indent
= get_indent();
8076 #endif /* FEAT_CINDENT */
8078 #if defined(FEAT_LISP) || defined(PROTO)
8080 static int lisp_match
__ARGS((char_u
*p
));
8088 char_u
*word
= p_lispwords
;
8090 while (*word
!= NUL
)
8092 (void)copy_option_part(&word
, buf
, LSIZE
, ",");
8093 len
= (int)STRLEN(buf
);
8094 if (STRNCMP(buf
, p
, len
) == 0 && p
[len
] == ' ')
8101 * When 'p' is present in 'cpoptions, a Vi compatible method is used.
8102 * The incompatible newer method is quite a bit better at indenting
8103 * code in lisp-like languages than the traditional one; it's still
8104 * mostly heuristics however -- Dirk van Deun, dirk@rave.org
8107 * Findmatch() should be adapted for lisp, also to make showmatch
8108 * work correctly: now (v5.3) it seems all C/C++ oriented:
8109 * - it does not recognize the #\( and #\) notations as character literals
8110 * - it doesn't know about comments starting with a semicolon
8111 * - it incorrectly interprets '(' as a character literal
8112 * All this messes up get_lisp_indent in some rare cases.
8113 * Update from Sergey Khorev:
8114 * I tried to fix the first two issues.
8119 pos_T
*pos
, realpos
, paren
;
8124 int parencount
, quotecount
;
8127 /* Set vi_lisp to use the vi-compatible method */
8128 vi_lisp
= (vim_strchr(p_cpo
, CPO_LISP
) != NULL
);
8130 realpos
= curwin
->w_cursor
;
8131 curwin
->w_cursor
.col
= 0;
8133 if ((pos
= findmatch(NULL
, '(')) == NULL
)
8134 pos
= findmatch(NULL
, '[');
8138 pos
= findmatch(NULL
, '[');
8139 if (pos
== NULL
|| ltp(pos
, &paren
))
8144 /* Extra trick: Take the indent of the first previous non-white
8145 * line that is at the same () level. */
8149 while (--curwin
->w_cursor
.lnum
>= pos
->lnum
)
8151 if (linewhite(curwin
->w_cursor
.lnum
))
8153 for (that
= ml_get_curline(); *that
!= NUL
; ++that
)
8157 while (*(that
+ 1) != NUL
)
8163 if (*(that
+ 1) != NUL
)
8167 if (*that
== '"' && *(that
+ 1) != NUL
)
8169 while (*++that
&& *that
!= '"')
8171 /* skipping escaped characters in the string */
8184 if (*that
== '(' || *that
== '[')
8186 else if (*that
== ')' || *that
== ']')
8189 if (parencount
== 0)
8191 amount
= get_indent();
8198 curwin
->w_cursor
.lnum
= pos
->lnum
;
8199 curwin
->w_cursor
.col
= pos
->col
;
8202 that
= ml_get_curline();
8204 if (vi_lisp
&& get_indent() == 0)
8209 while (*that
&& col
)
8211 amount
+= lbr_chartabsize_adv(&that
, (colnr_T
)amount
);
8216 * Some keywords require "body" indenting rules (the
8217 * non-standard-lisp ones are Scheme special forms):
8219 * (let ((a 1)) instead (let ((a 1))
8223 if (!vi_lisp
&& (*that
== '(' || *that
== '[')
8224 && lisp_match(that
+ 1))
8232 while (vim_iswhite(*that
))
8234 amount
+= lbr_chartabsize(that
, (colnr_T
)amount
);
8238 if (*that
&& *that
!= ';') /* not a comment line */
8240 /* test *that != '(' to accommodate first let/do
8241 * argument if it is more than one line */
8242 if (!vi_lisp
&& *that
!= '(' && *that
!= '[')
8252 && (*that
< '0' || *that
> '9')))
8255 && (!vim_iswhite(*that
)
8258 && (!((*that
== '(' || *that
== '[')
8264 quotecount
= !quotecount
;
8265 if ((*that
== '(' || *that
== '[')
8268 if ((*that
== ')' || *that
== ']')
8271 if (*that
== '\\' && *(that
+1) != NUL
)
8272 amount
+= lbr_chartabsize_adv(&that
,
8274 amount
+= lbr_chartabsize_adv(&that
,
8278 while (vim_iswhite(*that
))
8280 amount
+= lbr_chartabsize(that
, (colnr_T
)amount
);
8283 if (!*that
|| *that
== ';')
8291 amount
= 0; /* no matching '(' or '[' found, use zero indent */
8293 curwin
->w_cursor
= realpos
;
8297 #endif /* FEAT_LISP */
8302 #if defined(SIGHUP) && defined(SIG_IGN)
8303 /* Ignore SIGHUP, because a dropped connection causes a read error, which
8304 * makes Vim exit and then handling SIGHUP causes various reentrance
8306 signal(SIGHUP
, SIG_IGN
);
8313 out_trash(); /* trash any pending output */
8318 windgoto((int)Rows
- 1, 0);
8321 * Switch terminal mode back now, so messages end up on the "normal"
8322 * screen (if there are two screens).
8324 settmode(TMODE_COOK
);
8326 if (can_end_termcap_mode(FALSE
) == TRUE
)
8334 * Preserve files and exit.
8335 * When called IObuff must contain a message.
8344 /* Setting this will prevent free() calls. That avoids calling free()
8345 * recursively when free() was invoked with a bad pointer. */
8346 really_exiting
= TRUE
;
8349 screen_start(); /* don't know where cursor is now */
8352 ml_close_notmod(); /* close all not-modified buffers */
8354 for (buf
= firstbuf
; buf
!= NULL
; buf
= buf
->b_next
)
8356 if (buf
->b_ml
.ml_mfp
!= NULL
&& buf
->b_ml
.ml_mfp
->mf_fname
!= NULL
)
8358 OUT_STR(_("Vim: preserving files...\n"));
8359 screen_start(); /* don't know where cursor is now */
8361 ml_sync_all(FALSE
, FALSE
); /* preserve all swap files */
8366 ml_close_all(FALSE
); /* close all memfiles, without deleting */
8368 OUT_STR(_("Vim: Finished.\n"));
8374 * return TRUE if "fname" exists.
8382 if (mch_stat((char *)fname
, &st
))
8388 * Check for CTRL-C pressed, but only once in a while.
8389 * Should be used instead of ui_breakcheck() for functions that check for
8390 * each line in the file. Calling ui_breakcheck() each time takes too much
8391 * time, because it can be a system call.
8394 #ifndef BREAKCHECK_SKIP
8395 # ifdef FEAT_GUI /* assume the GUI only runs on fast computers */
8396 # define BREAKCHECK_SKIP 200
8398 # define BREAKCHECK_SKIP 32
8402 static int breakcheck_count
= 0;
8407 if (++breakcheck_count
>= BREAKCHECK_SKIP
)
8409 breakcheck_count
= 0;
8415 * Like line_breakcheck() but check 10 times less often.
8420 if (++breakcheck_count
>= BREAKCHECK_SKIP
* 10)
8422 breakcheck_count
= 0;
8428 * Expand wildcards. Calls gen_expand_wildcards() and removes files matching
8430 * Returns OK or FAIL.
8433 expand_wildcards(num_pat
, pat
, num_file
, file
, flags
)
8434 int num_pat
; /* number of input patterns */
8435 char_u
**pat
; /* array of input patterns */
8436 int *num_file
; /* resulting number of files */
8437 char_u
***file
; /* array of resulting files */
8438 int flags
; /* EW_DIR, etc. */
8443 int non_suf_match
; /* number without matching suffix */
8445 retval
= gen_expand_wildcards(num_pat
, pat
, num_file
, file
, flags
);
8447 /* When keeping all matches, return here */
8448 if (flags
& EW_KEEPALL
)
8453 * Remove names that match 'wildignore'.
8459 /* check all files in (*file)[] */
8460 for (i
= 0; i
< *num_file
; ++i
)
8462 ffname
= FullName_save((*file
)[i
], FALSE
);
8463 if (ffname
== NULL
) /* out of memory */
8466 vms_remove_version(ffname
);
8468 if (match_file_list(p_wig
, (*file
)[i
], ffname
))
8470 /* remove this matching file from the list */
8471 vim_free((*file
)[i
]);
8472 for (j
= i
; j
+ 1 < *num_file
; ++j
)
8473 (*file
)[j
] = (*file
)[j
+ 1];
8483 * Move the names where 'suffixes' match to the end.
8488 for (i
= 0; i
< *num_file
; ++i
)
8490 if (!match_suffix((*file
)[i
]))
8493 * Move the name without matching suffix to the front
8497 for (j
= i
; j
> non_suf_match
; --j
)
8498 (*file
)[j
] = (*file
)[j
- 1];
8499 (*file
)[non_suf_match
++] = p
;
8508 * Return TRUE if "fname" matches with an entry in 'suffixes'.
8514 int fnamelen
, setsuflen
;
8516 #define MAXSUFLEN 30 /* maximum length of a file suffix */
8517 char_u suf_buf
[MAXSUFLEN
];
8519 fnamelen
= (int)STRLEN(fname
);
8521 for (setsuf
= p_su
; *setsuf
; )
8523 setsuflen
= copy_option_part(&setsuf
, suf_buf
, MAXSUFLEN
, ".,");
8524 if (fnamelen
>= setsuflen
8525 && fnamencmp(suf_buf
, fname
+ fnamelen
- setsuflen
,
8526 (size_t)setsuflen
) == 0)
8530 return (setsuflen
!= 0);
8533 #if !defined(NO_EXPANDPATH) || defined(PROTO)
8535 # ifdef VIM_BACKTICK
8536 static int vim_backtick
__ARGS((char_u
*p
));
8537 static int expand_backtick
__ARGS((garray_T
*gap
, char_u
*pat
, int flags
));
8540 # if defined(MSDOS) || defined(FEAT_GUI_W16) || defined(WIN3264)
8542 * File name expansion code for MS-DOS, Win16 and Win32. It's here because
8543 * it's shared between these systems.
8545 # if defined(DJGPP) || defined(PROTO)
8546 # define _cdecl /* DJGPP doesn't have this */
8548 # ifdef __BORLANDC__
8549 # define _cdecl _RTLENTRYF
8554 * comparison function for qsort in dos_expandpath()
8557 pstrcmp(const void *a
, const void *b
)
8559 return (pathcmp(*(char **)a
, *(char **)b
, -1));
8569 if (USE_LONG_FNAME
) /* don't lower case on Windows 95/NT systems */
8575 *d
++ = TOLOWER_LOC(*s
++);
8581 * Recursively expand one path component into all matching files and/or
8582 * directories. Adds matches to "gap". Handles "*", "?", "[a-z]", "**", etc.
8583 * Return the number of matches found.
8584 * "path" has backslashes before chars that are not to be expanded, starting
8585 * at "path[wildoff]".
8586 * Return the number of matches found.
8587 * NOTE: much of this is identical to unix_expandpath(), keep in sync!
8594 int flags
, /* EW_* flags */
8595 int didstar
) /* expanded "**" once already */
8600 int start_len
= gap
->ga_len
;
8602 regmatch_T regmatch
;
8603 int starts_with_dot
;
8606 int starstar
= FALSE
;
8607 static int stardepth
= 0; /* depth for "**" expansion */
8610 HANDLE hFind
= (HANDLE
)0;
8612 WIN32_FIND_DATAW wfb
;
8613 WCHAR
*wn
= NULL
; /* UCS-2 name, NULL when not used. */
8621 /* Expanding "**" may take a long time, check for CTRL-C. */
8629 /* make room for file name */
8630 buf
= alloc((int)STRLEN(path
) + BASENAMELEN
+ 5);
8635 * Find the first part in the path name that contains a wildcard or a ~1.
8636 * Copy it into buf, including the preceding characters.
8642 while (*path_end
!= NUL
)
8644 /* May ignore a wildcard that has a backslash before it; it will
8645 * be removed by rem_backslash() or file_pat_to_reg_pat() below. */
8646 if (path_end
>= path
+ wildoff
&& rem_backslash(path_end
))
8648 else if (*path_end
== '\\' || *path_end
== ':' || *path_end
== '/')
8654 else if (path_end
>= path
+ wildoff
8655 && vim_strchr((char_u
*)"*?[~", *path_end
) != NULL
)
8660 len
= (*mb_ptr2len
)(path_end
);
8661 STRNCPY(p
, path_end
, len
);
8672 /* now we have one wildcard component between s and e */
8673 /* Remove backslashes between "wildoff" and the start of the wildcard
8675 for (p
= buf
+ wildoff
; p
< s
; ++p
)
8676 if (rem_backslash(p
))
8678 mch_memmove(p
, p
+ 1, STRLEN(p
));
8683 /* Check for "**" between "s" and "e". */
8684 for (p
= s
; p
< e
; ++p
)
8685 if (p
[0] == '*' && p
[1] == '*')
8688 starts_with_dot
= (*s
== '.');
8689 pat
= file_pat_to_reg_pat(s
, e
, NULL
, FALSE
);
8696 /* compile the regexp into a program */
8697 regmatch
.rm_ic
= TRUE
; /* Always ignore case */
8698 regmatch
.regprog
= vim_regcomp(pat
, RE_MAGIC
);
8701 if (regmatch
.regprog
== NULL
)
8707 /* remember the pattern or file name being looked for */
8708 matchname
= vim_strsave(s
);
8710 /* If "**" is by itself, this is the first time we encounter it and more
8711 * is following then find matches without any directory. */
8712 if (!didstar
&& stardepth
< 100 && starstar
&& e
- s
== 2
8713 && *path_end
== '/')
8715 STRCPY(s
, path_end
+ 1);
8717 (void)dos_expandpath(gap
, buf
, (int)(s
- buf
), flags
, TRUE
);
8721 /* Scan all files in the directory with "dir/ *.*" */
8725 if (enc_codepage
>= 0 && (int)GetACP() != enc_codepage
)
8727 /* The active codepage differs from 'encoding'. Attempt using the
8728 * wide function. If it fails because it is not implemented fall back
8729 * to the non-wide version (for Windows 98) */
8730 wn
= enc_to_ucs2(buf
, NULL
);
8733 hFind
= FindFirstFileW(wn
, &wfb
);
8734 if (hFind
== INVALID_HANDLE_VALUE
8735 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED
)
8745 hFind
= FindFirstFile(buf
, &fb
);
8746 ok
= (hFind
!= INVALID_HANDLE_VALUE
);
8748 /* If we are expanding wildcards we try both files and directories */
8749 ok
= (findfirst((char *)buf
, &fb
,
8750 (*path_end
!= NUL
|| (flags
& EW_DIR
)) ? FA_DIREC
: 0) == 0);
8758 p
= ucs2_to_enc(wfb
.cFileName
, NULL
); /* p is allocated here */
8761 p
= (char_u
*)fb
.cFileName
;
8763 p
= (char_u
*)fb
.ff_name
;
8765 /* Ignore entries starting with a dot, unless when asked for. Accept
8766 * all entries found with "matchname". */
8767 if ((p
[0] != '.' || starts_with_dot
)
8768 && (matchname
== NULL
8769 || vim_regexec(®match
, p
, (colnr_T
)0)))
8776 len
= (int)STRLEN(buf
);
8778 if (starstar
&& stardepth
< 100)
8780 /* For "**" in the pattern first go deeper in the tree to
8782 STRCPY(buf
+ len
, "/**");
8783 STRCPY(buf
+ len
+ 3, path_end
);
8785 (void)dos_expandpath(gap
, buf
, len
+ 1, flags
, TRUE
);
8789 STRCPY(buf
+ len
, path_end
);
8790 if (mch_has_exp_wildcard(path_end
))
8792 /* need to expand another component of the path */
8793 /* remove backslashes for the remaining components only */
8794 (void)dos_expandpath(gap
, buf
, len
+ 1, flags
, FALSE
);
8798 /* no more wildcards, check if there is a match */
8799 /* remove backslashes for the remaining components only */
8801 backslash_halve(buf
+ len
+ 1);
8802 if (mch_getperm(buf
) >= 0) /* add existing file */
8803 addfile(gap
, buf
, flags
);
8812 ok
= FindNextFileW(hFind
, &wfb
);
8816 ok
= FindNextFile(hFind
, &fb
);
8818 ok
= (findnext(&fb
) == 0);
8821 /* If no more matches and no match was used, try expanding the name
8822 * itself. Finds the long name of a short filename. */
8823 if (!ok
&& matchname
!= NULL
&& gap
->ga_len
== start_len
)
8825 STRCPY(s
, matchname
);
8832 wn
= enc_to_ucs2(buf
, NULL
);
8834 hFind
= FindFirstFileW(wn
, &wfb
);
8838 hFind
= FindFirstFile(buf
, &fb
);
8839 ok
= (hFind
!= INVALID_HANDLE_VALUE
);
8841 ok
= (findfirst((char *)buf
, &fb
,
8842 (*path_end
!= NUL
|| (flags
& EW_DIR
)) ? FA_DIREC
: 0) == 0);
8844 vim_free(matchname
);
8856 vim_free(regmatch
.regprog
);
8857 vim_free(matchname
);
8859 matches
= gap
->ga_len
- start_len
;
8861 qsort(((char_u
**)gap
->ga_data
) + start_len
, (size_t)matches
,
8862 sizeof(char_u
*), pstrcmp
);
8870 int flags
) /* EW_* flags */
8872 return dos_expandpath(gap
, path
, 0, flags
, FALSE
);
8874 # endif /* MSDOS || FEAT_GUI_W16 || WIN3264 */
8876 #if (defined(UNIX) && !defined(VMS)) || defined(USE_UNIXFILENAME) \
8879 * Unix style wildcard expansion code.
8880 * It's here because it's used both for Unix and Mac.
8882 static int pstrcmp
__ARGS((const void *, const void *));
8888 return (pathcmp(*(char **)a
, *(char **)b
, -1));
8892 * Recursively expand one path component into all matching files and/or
8893 * directories. Adds matches to "gap". Handles "*", "?", "[a-z]", "**", etc.
8894 * "path" has backslashes before chars that are not to be expanded, starting
8895 * at "path + wildoff".
8896 * Return the number of matches found.
8897 * NOTE: much of this is identical to dos_expandpath(), keep in sync!
8900 unix_expandpath(gap
, path
, wildoff
, flags
, didstar
)
8904 int flags
; /* EW_* flags */
8905 int didstar
; /* expanded "**" once already */
8910 int start_len
= gap
->ga_len
;
8912 regmatch_T regmatch
;
8913 int starts_with_dot
;
8916 int starstar
= FALSE
;
8917 static int stardepth
= 0; /* depth for "**" expansion */
8922 /* Expanding "**" may take a long time, check for CTRL-C. */
8930 /* make room for file name */
8931 buf
= alloc((int)STRLEN(path
) + BASENAMELEN
+ 5);
8936 * Find the first part in the path name that contains a wildcard.
8937 * Copy it into "buf", including the preceding characters.
8943 while (*path_end
!= NUL
)
8945 /* May ignore a wildcard that has a backslash before it; it will
8946 * be removed by rem_backslash() or file_pat_to_reg_pat() below. */
8947 if (path_end
>= path
+ wildoff
&& rem_backslash(path_end
))
8949 else if (*path_end
== '/')
8955 else if (path_end
>= path
+ wildoff
8956 && vim_strchr((char_u
*)"*?[{~$", *path_end
) != NULL
)
8961 len
= (*mb_ptr2len
)(path_end
);
8962 STRNCPY(p
, path_end
, len
);
8973 /* now we have one wildcard component between "s" and "e" */
8974 /* Remove backslashes between "wildoff" and the start of the wildcard
8976 for (p
= buf
+ wildoff
; p
< s
; ++p
)
8977 if (rem_backslash(p
))
8979 mch_memmove(p
, p
+ 1, STRLEN(p
));
8984 /* Check for "**" between "s" and "e". */
8985 for (p
= s
; p
< e
; ++p
)
8986 if (p
[0] == '*' && p
[1] == '*')
8989 /* convert the file pattern to a regexp pattern */
8990 starts_with_dot
= (*s
== '.');
8991 pat
= file_pat_to_reg_pat(s
, e
, NULL
, FALSE
);
8998 /* compile the regexp into a program */
8999 #ifdef CASE_INSENSITIVE_FILENAME
9000 regmatch
.rm_ic
= TRUE
; /* Behave like Terminal.app */
9002 regmatch
.rm_ic
= FALSE
; /* Don't ever ignore case */
9004 regmatch
.regprog
= vim_regcomp(pat
, RE_MAGIC
);
9007 if (regmatch
.regprog
== NULL
)
9013 /* If "**" is by itself, this is the first time we encounter it and more
9014 * is following then find matches without any directory. */
9015 if (!didstar
&& stardepth
< 100 && starstar
&& e
- s
== 2
9016 && *path_end
== '/')
9018 STRCPY(s
, path_end
+ 1);
9020 (void)unix_expandpath(gap
, buf
, (int)(s
- buf
), flags
, TRUE
);
9024 /* open the directory for scanning */
9026 dirp
= opendir(*buf
== NUL
? "." : (char *)buf
);
9028 /* Find all matching entries */
9036 if ((dp
->d_name
[0] != '.' || starts_with_dot
)
9037 && vim_regexec(®match
, (char_u
*)dp
->d_name
, (colnr_T
)0))
9039 STRCPY(s
, dp
->d_name
);
9042 if (starstar
&& stardepth
< 100)
9044 /* For "**" in the pattern first go deeper in the tree to
9046 STRCPY(buf
+ len
, "/**");
9047 STRCPY(buf
+ len
+ 3, path_end
);
9049 (void)unix_expandpath(gap
, buf
, len
+ 1, flags
, TRUE
);
9053 STRCPY(buf
+ len
, path_end
);
9054 if (mch_has_exp_wildcard(path_end
)) /* handle more wildcards */
9056 /* need to expand another component of the path */
9057 /* remove backslashes for the remaining components only */
9058 (void)unix_expandpath(gap
, buf
, len
+ 1, flags
, FALSE
);
9062 /* no more wildcards, check if there is a match */
9063 /* remove backslashes for the remaining components only */
9064 if (*path_end
!= NUL
)
9065 backslash_halve(buf
+ len
+ 1);
9066 if (mch_getperm(buf
) >= 0) /* add existing file */
9068 #ifdef MACOS_CONVERT
9069 size_t precomp_len
= STRLEN(buf
)+1;
9070 char_u
*precomp_buf
=
9071 mac_precompose_path(buf
, precomp_len
, &precomp_len
);
9075 mch_memmove(buf
, precomp_buf
, precomp_len
);
9076 vim_free(precomp_buf
);
9079 addfile(gap
, buf
, flags
);
9089 vim_free(regmatch
.regprog
);
9091 matches
= gap
->ga_len
- start_len
;
9093 qsort(((char_u
**)gap
->ga_data
) + start_len
, matches
,
9094 sizeof(char_u
*), pstrcmp
);
9100 * Generic wildcard expansion code.
9102 * Characters in "pat" that should not be expanded must be preceded with a
9103 * backslash. E.g., "/path\ with\ spaces/my\*star*"
9105 * Return FAIL when no single file was found. In this case "num_file" is not
9106 * set, and "file" may contain an error message.
9107 * Return OK when some files found. "num_file" is set to the number of
9108 * matches, "file" to the array of matches. Call FreeWild() later.
9111 gen_expand_wildcards(num_pat
, pat
, num_file
, file
, flags
)
9112 int num_pat
; /* number of input patterns */
9113 char_u
**pat
; /* array of input patterns */
9114 int *num_file
; /* resulting number of files */
9115 char_u
***file
; /* array of resulting files */
9116 int flags
; /* EW_* flags */
9121 static int recursive
= FALSE
;
9125 * expand_env() is called to expand things like "~user". If this fails,
9126 * it calls ExpandOne(), which brings us back here. In this case, always
9127 * call the machine specific expansion function, if possible. Otherwise,
9131 #ifdef SPECIAL_WILDCHAR
9132 return mch_expand_wildcards(num_pat
, pat
, num_file
, file
, flags
);
9137 #ifdef SPECIAL_WILDCHAR
9139 * If there are any special wildcard characters which we cannot handle
9140 * here, call machine specific function for all the expansion. This
9141 * avoids starting the shell for each argument separately.
9142 * For `=expr` do use the internal function.
9144 for (i
= 0; i
< num_pat
; i
++)
9146 if (vim_strpbrk(pat
[i
], (char_u
*)SPECIAL_WILDCHAR
) != NULL
9147 # ifdef VIM_BACKTICK
9148 && !(vim_backtick(pat
[i
]) && pat
[i
][1] == '=')
9151 return mch_expand_wildcards(num_pat
, pat
, num_file
, file
, flags
);
9158 * The matching file names are stored in a growarray. Init it empty.
9160 ga_init2(&ga
, (int)sizeof(char_u
*), 30);
9162 for (i
= 0; i
< num_pat
; ++i
)
9168 if (vim_backtick(p
))
9169 add_pat
= expand_backtick(&ga
, p
, flags
);
9174 * First expand environment variables, "~/" and "~user/".
9176 if (vim_strpbrk(p
, (char_u
*)"$~") != NULL
)
9178 p
= expand_env_save_opt(p
, TRUE
);
9183 * On Unix, if expand_env() can't expand an environment
9184 * variable, use the shell to do that. Discard previously
9185 * found file names and start all over again.
9187 else if (vim_strpbrk(p
, (char_u
*)"$~") != NULL
)
9191 i
= mch_expand_wildcards(num_pat
, pat
, num_file
, file
,
9200 * If there are wildcards: Expand file names and add each match to
9201 * the list. If there is no match, and EW_NOTFOUND is given, add
9203 * If there are no wildcards: Add the file name if it exists or
9204 * when EW_NOTFOUND is given.
9206 if (mch_has_exp_wildcard(p
))
9207 add_pat
= mch_expandpath(&ga
, p
, flags
);
9210 if (add_pat
== -1 || (add_pat
== 0 && (flags
& EW_NOTFOUND
)))
9212 char_u
*t
= backslash_halve_save(p
);
9214 #if defined(MACOS_CLASSIC)
9217 /* When EW_NOTFOUND is used, always add files and dirs. Makes
9218 * "vim c:/" work. */
9219 if (flags
& EW_NOTFOUND
)
9220 addfile(&ga
, t
, flags
| EW_DIR
| EW_FILE
);
9221 else if (mch_getperm(t
) >= 0)
9222 addfile(&ga
, t
, flags
);
9230 *num_file
= ga
.ga_len
;
9231 *file
= (ga
.ga_data
!= NULL
) ? (char_u
**)ga
.ga_data
: (char_u
**)"";
9235 return (ga
.ga_data
!= NULL
) ? OK
: FAIL
;
9238 # ifdef VIM_BACKTICK
9241 * Return TRUE if we can expand this backtick thing here.
9247 return (*p
== '`' && *(p
+ 1) != NUL
&& *(p
+ STRLEN(p
) - 1) == '`');
9251 * Expand an item in `backticks` by executing it as a command.
9252 * Currently only works when pat[] starts and ends with a `.
9253 * Returns number of file names found.
9256 expand_backtick(gap
, pat
, flags
)
9259 int flags
; /* EW_* flags */
9267 /* Create the command: lop off the backticks. */
9268 cmd
= vim_strnsave(pat
+ 1, (int)STRLEN(pat
) - 2);
9273 if (*cmd
== '=') /* `={expr}`: Expand expression */
9274 buffer
= eval_to_string(cmd
+ 1, &p
, TRUE
);
9277 buffer
= get_cmd_output(cmd
, NULL
,
9278 (flags
& EW_SILENT
) ? SHELL_SILENT
: 0);
9286 cmd
= skipwhite(cmd
); /* skip over white space */
9288 while (*p
!= NUL
&& *p
!= '\r' && *p
!= '\n') /* skip over entry */
9290 /* add an entry if it is not empty */
9295 addfile(gap
, cmd
, flags
);
9300 while (*cmd
!= NUL
&& (*cmd
== '\r' || *cmd
== '\n'))
9307 # endif /* VIM_BACKTICK */
9310 * Add a file to a file list. Accepted flags:
9311 * EW_DIR add directories
9313 * EW_EXEC add executable files
9314 * EW_NOTFOUND add even when it doesn't exist
9315 * EW_ADDSLASH add slash after directory name
9318 addfile(gap
, f
, flags
)
9320 char_u
*f
; /* filename */
9326 /* if the file/dir doesn't exist, may not add it */
9327 if (!(flags
& EW_NOTFOUND
) && mch_getperm(f
) < 0)
9330 #ifdef FNAME_ILLEGAL
9331 /* if the file/dir contains illegal characters, don't add it */
9332 if (vim_strpbrk(f
, (char_u
*)FNAME_ILLEGAL
) != NULL
)
9336 isdir
= mch_isdir(f
);
9337 if ((isdir
&& !(flags
& EW_DIR
)) || (!isdir
&& !(flags
& EW_FILE
)))
9340 /* If the file isn't executable, may not add it. Do accept directories. */
9341 if (!isdir
&& (flags
& EW_EXEC
) && !mch_can_exe(f
))
9344 /* Make room for another item in the file list. */
9345 if (ga_grow(gap
, 1) == FAIL
)
9348 p
= alloc((unsigned)(STRLEN(f
) + 1 + isdir
));
9353 #ifdef BACKSLASH_IN_FILENAME
9357 * Append a slash or backslash after directory names if none is present.
9359 #ifndef DONT_ADD_PATHSEP_TO_DIR
9360 if (isdir
&& (flags
& EW_ADDSLASH
))
9363 ((char_u
**)gap
->ga_data
)[gap
->ga_len
++] = p
;
9365 #endif /* !NO_EXPANDPATH */
9367 #if defined(VIM_BACKTICK) || defined(FEAT_EVAL) || defined(PROTO)
9377 * Get the stdout of an external command.
9378 * Returns an allocated string, or NULL for error.
9381 get_cmd_output(cmd
, infile
, flags
)
9383 char_u
*infile
; /* optional input file name */
9384 int flags
; /* can be SHELL_SILENT */
9388 char_u
*buffer
= NULL
;
9393 if (check_restricted() || check_secure())
9396 /* get a name for the temp file */
9397 if ((tempname
= vim_tempname('o')) == NULL
)
9403 /* Add the redirection stuff */
9404 command
= make_filter_cmd(cmd
, infile
, tempname
);
9405 if (command
== NULL
)
9409 * Call the shell to execute the command (errors are ignored).
9410 * Don't check timestamps here.
9412 ++no_check_timestamps
;
9413 call_shell(command
, SHELL_DOOUT
| SHELL_EXPAND
| flags
);
9414 --no_check_timestamps
;
9419 * read the names from the file into memory
9422 /* created temporary file is not always readable as binary */
9423 fd
= mch_fopen((char *)tempname
, "r");
9425 fd
= mch_fopen((char *)tempname
, READBIN
);
9430 EMSG2(_(e_notopen
), tempname
);
9434 fseek(fd
, 0L, SEEK_END
);
9435 len
= ftell(fd
); /* get size of temp file */
9436 fseek(fd
, 0L, SEEK_SET
);
9438 buffer
= alloc(len
+ 1);
9440 i
= (int)fread((char *)buffer
, (size_t)1, (size_t)len
, fd
);
9442 mch_remove(tempname
);
9446 len
= i
; /* VMS doesn't give us what we asked for... */
9450 EMSG2(_(e_notread
), tempname
);
9455 buffer
[len
] = '\0'; /* make sure the buffer is terminated */
9464 * Free the list of files returned by expand_wildcards() or other expansion
9468 FreeWild(count
, files
)
9472 if (count
<= 0 || files
== NULL
)
9474 #if defined(__EMX__) && defined(__ALWAYS_HAS_TRAILING_NULL_POINTER) /* XXX */
9476 * Is this still OK for when other functions than expand_wildcards() have
9479 _fnexplodefree((char **)files
);
9482 vim_free(files
[count
]);
9488 * return TRUE when need to go to Insert mode because of 'insertmode'.
9489 * Don't do this when still processing a command or a mapping.
9490 * Don't do this when inside a ":normal" command.
9495 return (p_im
&& stuff_empty() && typebuf_typed());