1 /* vim:set ts=8 sts=4 sw=4:
2 * vim600:fdm=marker fdl=1 fdc=3:
4 * VIM - Vi IMproved by Bram Moolenaar
6 * Do ":help uganda" in Vim to read copying and usage conditions.
7 * Do ":help credits" in Vim to see a list of people who contributed.
8 * See README.txt for an overview of the Vim source code.
12 * fold.c: code for folding
17 #if defined(FEAT_FOLDING) || defined(PROTO)
19 /* local declarations. {{{1 */
20 /* typedef fold_T {{{2 */
22 * The toplevel folds for each window are stored in the w_folds growarray.
23 * Each toplevel fold can contain an array of second level folds in the
24 * fd_nested growarray.
25 * The info stored in both growarrays is the same: An array of fold_T.
29 linenr_T fd_top
; /* first line of fold; for nested fold
30 * relative to parent */
31 linenr_T fd_len
; /* number of lines in the fold */
32 garray_T fd_nested
; /* array of nested folds */
33 char fd_flags
; /* see below */
34 char fd_small
; /* TRUE, FALSE or MAYBE: fold smaller than
35 'foldminlines'; MAYBE applies to nested
39 #define FD_OPEN 0 /* fold is open (nested ones can be closed) */
40 #define FD_CLOSED 1 /* fold is closed */
41 #define FD_LEVEL 2 /* depends on 'foldlevel' (nested folds too) */
43 #define MAX_LEVEL 20 /* maximum fold depth */
45 /* static functions {{{2 */
46 static void newFoldLevelWin
__ARGS((win_T
*wp
));
47 static int checkCloseRec
__ARGS((garray_T
*gap
, linenr_T lnum
, int level
));
48 static int foldFind
__ARGS((garray_T
*gap
, linenr_T lnum
, fold_T
**fpp
));
49 static int foldLevelWin
__ARGS((win_T
*wp
, linenr_T lnum
));
50 static void checkupdate
__ARGS((win_T
*wp
));
51 static void setFoldRepeat
__ARGS((linenr_T lnum
, long count
, int do_open
));
52 static linenr_T setManualFold
__ARGS((linenr_T lnum
, int opening
, int recurse
, int *donep
));
53 static linenr_T setManualFoldWin
__ARGS((win_T
*wp
, linenr_T lnum
, int opening
, int recurse
, int *donep
));
54 static void foldOpenNested
__ARGS((fold_T
*fpr
));
55 static void deleteFoldEntry
__ARGS((garray_T
*gap
, int idx
, int recursive
));
56 static void foldMarkAdjustRecurse
__ARGS((garray_T
*gap
, linenr_T line1
, linenr_T line2
, long amount
, long amount_after
));
57 static int getDeepestNestingRecurse
__ARGS((garray_T
*gap
));
58 static int check_closed
__ARGS((win_T
*win
, fold_T
*fp
, int *use_levelp
, int level
, int *maybe_smallp
, linenr_T lnum_off
));
59 static void checkSmall
__ARGS((win_T
*wp
, fold_T
*fp
, linenr_T lnum_off
));
60 static void setSmallMaybe
__ARGS((garray_T
*gap
));
61 static void foldCreateMarkers
__ARGS((linenr_T start
, linenr_T end
));
62 static void foldAddMarker
__ARGS((linenr_T lnum
, char_u
*marker
, int markerlen
));
63 static void deleteFoldMarkers
__ARGS((fold_T
*fp
, int recursive
, linenr_T lnum_off
));
64 static void foldDelMarker
__ARGS((linenr_T lnum
, char_u
*marker
, int markerlen
));
65 static void foldUpdateIEMS
__ARGS((win_T
*wp
, linenr_T top
, linenr_T bot
));
66 static void parseMarker
__ARGS((win_T
*wp
));
68 static char *e_nofold
= N_("E490: No fold found");
71 * While updating the folds lines between invalid_top and invalid_bot have an
72 * undefined fold level. Only used for the window currently being updated.
74 static linenr_T invalid_top
= (linenr_T
)0;
75 static linenr_T invalid_bot
= (linenr_T
)0;
78 * When using 'foldexpr' we sometimes get the level of the next line, which
79 * calls foldlevel() to get the level of the current line, which hasn't been
80 * stored yet. To get around this chicken-egg problem the level of the
81 * previous line is stored here when available. prev_lnum is zero when the
82 * level is not available.
84 static linenr_T prev_lnum
= 0;
85 static int prev_lnum_lvl
= -1;
87 /* Flags used for "done" argument of setManualFold. */
88 #define DONE_NOTHING 0
89 #define DONE_ACTION 1 /* did close or open a fold */
90 #define DONE_FOLD 2 /* did find a fold */
92 static int foldstartmarkerlen
;
93 static char_u
*foldendmarker
;
94 static int foldendmarkerlen
;
96 /* Exported folding functions. {{{1 */
97 /* copyFoldingState() {{{2 */
98 #if defined(FEAT_WINDOWS) || defined(PROTO)
100 * Copy that folding state from window "wp_from" to window "wp_to".
103 copyFoldingState(wp_from
, wp_to
)
107 wp_to
->w_fold_manual
= wp_from
->w_fold_manual
;
108 wp_to
->w_foldinvalid
= wp_from
->w_foldinvalid
;
109 cloneFoldGrowArray(&wp_from
->w_folds
, &wp_to
->w_folds
);
113 /* hasAnyFolding() {{{2 */
115 * Return TRUE if there may be folded lines in the current window.
121 /* very simple now, but can become more complex later */
123 && (!foldmethodIsManual(win
) || win
->w_folds
.ga_len
> 0));
126 /* hasFolding() {{{2 */
128 * Return TRUE if line "lnum" in the current window is part of a closed
130 * When returning TRUE, *firstp and *lastp are set to the first and last
131 * lnum of the sequence of folded lines (skipped when NULL).
134 hasFolding(lnum
, firstp
, lastp
)
139 return hasFoldingWin(curwin
, lnum
, firstp
, lastp
, TRUE
, NULL
);
142 /* hasFoldingWin() {{{2 */
144 hasFoldingWin(win
, lnum
, firstp
, lastp
, cache
, infop
)
149 int cache
; /* when TRUE: use cached values of window */
150 foldinfo_T
*infop
; /* where to store fold info */
152 int had_folded
= FALSE
;
155 linenr_T lnum_rel
= lnum
;
159 int use_level
= FALSE
;
160 int maybe_small
= FALSE
;
166 * Return quickly when there is no folding at all in this window.
168 if (!hasAnyFolding(win
))
178 * First look in cached info for displayed lines. This is probably
179 * the fastest, but it can only be used if the entry is still valid.
181 x
= find_wl_entry(win
, lnum
);
184 first
= win
->w_lines
[x
].wl_lnum
;
185 last
= win
->w_lines
[x
].wl_lastlnum
;
186 had_folded
= win
->w_lines
[x
].wl_folded
;
193 * Recursively search for a fold that contains "lnum".
198 if (!foldFind(gap
, lnum_rel
, &fp
))
201 /* Remember lowest level of fold that starts in "lnum". */
202 if (lnum_rel
== fp
->fd_top
&& low_level
== 0)
203 low_level
= level
+ 1;
208 /* is this fold closed? */
209 had_folded
= check_closed(win
, fp
, &use_level
, level
,
210 &maybe_small
, lnum
- lnum_rel
);
213 /* Fold closed: Set last and quit loop. */
214 last
+= fp
->fd_len
- 1;
218 /* Fold found, but it's open: Check nested folds. Line number is
219 * relative to containing fold. */
220 gap
= &fp
->fd_nested
;
221 lnum_rel
-= fp
->fd_top
;
230 infop
->fi_level
= level
;
231 infop
->fi_lnum
= lnum
- lnum_rel
;
232 infop
->fi_low_level
= low_level
== 0 ? level
: low_level
;
243 infop
->fi_level
= level
+ 1;
244 infop
->fi_lnum
= first
;
245 infop
->fi_low_level
= low_level
== 0 ? level
+ 1 : low_level
;
250 /* foldLevel() {{{2 */
252 * Return fold level at line number "lnum" in the current window.
258 /* While updating the folds lines between invalid_top and invalid_bot have
259 * an undefined fold level. Otherwise update the folds first. */
260 if (invalid_top
== (linenr_T
)0)
262 else if (lnum
== prev_lnum
&& prev_lnum_lvl
>= 0)
263 return prev_lnum_lvl
;
264 else if (lnum
>= invalid_top
&& lnum
<= invalid_bot
)
267 /* Return quickly when there is no folding at all in this window. */
268 if (!hasAnyFolding(curwin
))
271 return foldLevelWin(curwin
, lnum
);
274 /* lineFolded() {{{2 */
276 * Low level function to check if a line is folded. Doesn't use any caching.
277 * Return TRUE if line is folded.
278 * Return FALSE if line is not folded.
279 * Return MAYBE if the line is folded when next to a folded line.
282 lineFolded(win
, lnum
)
286 return foldedCount(win
, lnum
, NULL
) != 0;
289 /* foldedCount() {{{2 */
291 * Count the number of lines that are folded at line number "lnum".
292 * Normally "lnum" is the first line of a possible fold, and the returned
293 * number is the number of lines in the fold.
294 * Doesn't use caching from the displayed window.
295 * Returns number of folded lines from "lnum", or 0 if line is not folded.
296 * When "infop" is not NULL, fills *infop with the fold level info.
299 foldedCount(win
, lnum
, infop
)
306 if (hasFoldingWin(win
, lnum
, NULL
, &last
, FALSE
, infop
))
307 return (long)(last
- lnum
+ 1);
311 /* foldmethodIsManual() {{{2 */
313 * Return TRUE if 'foldmethod' is "manual"
316 foldmethodIsManual(wp
)
319 return (wp
->w_p_fdm
[3] == 'u');
322 /* foldmethodIsIndent() {{{2 */
324 * Return TRUE if 'foldmethod' is "indent"
327 foldmethodIsIndent(wp
)
330 return (wp
->w_p_fdm
[0] == 'i');
333 /* foldmethodIsExpr() {{{2 */
335 * Return TRUE if 'foldmethod' is "expr"
341 return (wp
->w_p_fdm
[1] == 'x');
344 /* foldmethodIsMarker() {{{2 */
346 * Return TRUE if 'foldmethod' is "marker"
349 foldmethodIsMarker(wp
)
352 return (wp
->w_p_fdm
[2] == 'r');
355 /* foldmethodIsSyntax() {{{2 */
357 * Return TRUE if 'foldmethod' is "syntax"
360 foldmethodIsSyntax(wp
)
363 return (wp
->w_p_fdm
[0] == 's');
366 /* foldmethodIsDiff() {{{2 */
368 * Return TRUE if 'foldmethod' is "diff"
374 return (wp
->w_p_fdm
[0] == 'd');
377 /* closeFold() {{{2 */
379 * Close fold for current window at line "lnum".
380 * Repeat "count" times.
383 closeFold(lnum
, count
)
387 setFoldRepeat(lnum
, count
, FALSE
);
390 /* closeFoldRecurse() {{{2 */
392 * Close fold for current window at line "lnum" recursively.
395 closeFoldRecurse(lnum
)
398 (void)setManualFold(lnum
, FALSE
, TRUE
, NULL
);
401 /* opFoldRange() {{{2 */
403 * Open or Close folds for current window in lines "first" to "last".
404 * Used for "zo", "zO", "zc" and "zC" in Visual mode.
407 opFoldRange(first
, last
, opening
, recurse
, had_visual
)
410 int opening
; /* TRUE to open, FALSE to close */
411 int recurse
; /* TRUE to do it recursively */
412 int had_visual
; /* TRUE when Visual selection used */
414 int done
= DONE_NOTHING
; /* avoid error messages */
418 for (lnum
= first
; lnum
<= last
; lnum
= lnum_next
+ 1)
421 /* Opening one level only: next fold to open is after the one going to
423 if (opening
&& !recurse
)
424 (void)hasFolding(lnum
, NULL
, &lnum_next
);
425 (void)setManualFold(lnum
, opening
, recurse
, &done
);
426 /* Closing one level only: next line to close a fold is after just
428 if (!opening
&& !recurse
)
429 (void)hasFolding(lnum
, NULL
, &lnum_next
);
431 if (done
== DONE_NOTHING
)
434 /* Force a redraw to remove the Visual highlighting. */
436 redraw_curbuf_later(INVERTED
);
440 /* openFold() {{{2 */
442 * Open fold for current window at line "lnum".
443 * Repeat "count" times.
446 openFold(lnum
, count
)
450 setFoldRepeat(lnum
, count
, TRUE
);
453 /* openFoldRecurse() {{{2 */
455 * Open fold for current window at line "lnum" recursively.
458 openFoldRecurse(lnum
)
461 (void)setManualFold(lnum
, TRUE
, TRUE
, NULL
);
464 /* foldOpenCursor() {{{2 */
466 * Open folds until the cursor line is not in a closed fold.
474 if (hasAnyFolding(curwin
))
478 (void)setManualFold(curwin
->w_cursor
.lnum
, TRUE
, FALSE
, &done
);
479 if (!(done
& DONE_ACTION
))
484 /* newFoldLevel() {{{2 */
486 * Set new foldlevel for current window.
491 newFoldLevelWin(curwin
);
494 if (foldmethodIsDiff(curwin
) && curwin
->w_p_scb
)
499 * Set the same foldlevel in other windows in diff mode.
503 if (wp
!= curwin
&& foldmethodIsDiff(wp
) && wp
->w_p_scb
)
505 wp
->w_p_fdl
= curwin
->w_p_fdl
;
521 if (wp
->w_fold_manual
)
523 /* Set all flags for the first level of folds to FD_LEVEL. Following
524 * manual open/close will then change the flags to FD_OPEN or
525 * FD_CLOSED for those folds that don't use 'foldlevel'. */
526 fp
= (fold_T
*)wp
->w_folds
.ga_data
;
527 for (i
= 0; i
< wp
->w_folds
.ga_len
; ++i
)
528 fp
[i
].fd_flags
= FD_LEVEL
;
529 wp
->w_fold_manual
= FALSE
;
531 changed_window_setting_win(wp
);
534 /* foldCheckClose() {{{2 */
536 * Apply 'foldlevel' to all folds that don't contain the cursor.
541 if (*p_fcl
!= NUL
) /* can only be "all" right now */
544 if (checkCloseRec(&curwin
->w_folds
, curwin
->w_cursor
.lnum
,
545 (int)curwin
->w_p_fdl
))
546 changed_window_setting();
550 /* checkCloseRec() {{{2 */
552 checkCloseRec(gap
, lnum
, level
)
561 fp
= (fold_T
*)gap
->ga_data
;
562 for (i
= 0; i
< gap
->ga_len
; ++i
)
564 /* Only manually opened folds may need to be closed. */
565 if (fp
[i
].fd_flags
== FD_OPEN
)
567 if (level
<= 0 && (lnum
< fp
[i
].fd_top
568 || lnum
>= fp
[i
].fd_top
+ fp
[i
].fd_len
))
570 fp
[i
].fd_flags
= FD_LEVEL
;
574 retval
|= checkCloseRec(&fp
[i
].fd_nested
, lnum
- fp
[i
].fd_top
,
581 /* foldCreateAllowed() {{{2 */
583 * Return TRUE if it's allowed to manually create or delete a fold.
584 * Give an error message and return FALSE if not.
587 foldManualAllowed(create
)
590 if (foldmethodIsManual(curwin
) || foldmethodIsMarker(curwin
))
593 EMSG(_("E350: Cannot create fold with current 'foldmethod'"));
595 EMSG(_("E351: Cannot delete fold with current 'foldmethod'"));
599 /* foldCreate() {{{2 */
601 * Create a fold from line "start" to line "end" (inclusive) in the current
605 foldCreate(start
, end
)
614 int use_level
= FALSE
;
617 linenr_T start_rel
= start
;
618 linenr_T end_rel
= end
;
622 /* reverse the range */
629 /* When 'foldmethod' is "marker" add markers, which creates the folds. */
630 if (foldmethodIsMarker(curwin
))
632 foldCreateMarkers(start
, end
);
638 /* Find the place to insert the new fold. */
639 gap
= &curwin
->w_folds
;
642 if (!foldFind(gap
, start_rel
, &fp
))
644 if (fp
->fd_top
+ fp
->fd_len
> end_rel
)
646 /* New fold is completely inside this fold: Go one level deeper. */
647 gap
= &fp
->fd_nested
;
648 start_rel
-= fp
->fd_top
;
649 end_rel
-= fp
->fd_top
;
650 if (use_level
|| fp
->fd_flags
== FD_LEVEL
)
653 if (level
>= curwin
->w_p_fdl
)
656 else if (fp
->fd_flags
== FD_CLOSED
)
662 /* This fold and new fold overlap: Insert here and move some folds
663 * inside the new fold. */
668 i
= (int)(fp
- (fold_T
*)gap
->ga_data
);
669 if (ga_grow(gap
, 1) == OK
)
671 fp
= (fold_T
*)gap
->ga_data
+ i
;
672 ga_init2(&fold_ga
, (int)sizeof(fold_T
), 10);
674 /* Count number of folds that will be contained in the new fold. */
675 for (cont
= 0; i
+ cont
< gap
->ga_len
; ++cont
)
676 if (fp
[cont
].fd_top
> end_rel
)
678 if (cont
> 0 && ga_grow(&fold_ga
, cont
) == OK
)
680 /* If the first fold starts before the new fold, let the new fold
681 * start there. Otherwise the existing fold would change. */
682 if (start_rel
> fp
->fd_top
)
683 start_rel
= fp
->fd_top
;
685 /* When last contained fold isn't completely contained, adjust end
687 if (end_rel
< fp
[cont
- 1].fd_top
+ fp
[cont
- 1].fd_len
- 1)
688 end_rel
= fp
[cont
- 1].fd_top
+ fp
[cont
- 1].fd_len
- 1;
689 /* Move contained folds to inside new fold. */
690 mch_memmove(fold_ga
.ga_data
, fp
, sizeof(fold_T
) * cont
);
691 fold_ga
.ga_len
+= cont
;
694 /* Adjust line numbers in contained folds to be relative to the
696 for (j
= 0; j
< cont
; ++j
)
697 ((fold_T
*)fold_ga
.ga_data
)[j
].fd_top
-= start_rel
;
699 /* Move remaining entries to after the new fold. */
701 mch_memmove(fp
+ 1, (fold_T
*)gap
->ga_data
+ i
,
702 sizeof(fold_T
) * (gap
->ga_len
- i
));
703 gap
->ga_len
= gap
->ga_len
+ 1 - cont
;
705 /* insert new fold */
706 fp
->fd_nested
= fold_ga
;
707 fp
->fd_top
= start_rel
;
708 fp
->fd_len
= end_rel
- start_rel
+ 1;
710 /* We want the new fold to be closed. If it would remain open because
711 * of using 'foldlevel', need to adjust fd_flags of containing folds.
713 if (use_level
&& !closed
&& level
< curwin
->w_p_fdl
)
714 closeFold(start
, 1L);
716 curwin
->w_fold_manual
= TRUE
;
717 fp
->fd_flags
= FD_CLOSED
;
718 fp
->fd_small
= MAYBE
;
721 changed_window_setting();
725 /* deleteFold() {{{2 */
727 * Delete a fold at line "start" in the current window.
728 * When "end" is not 0, delete all folds from "start" to "end".
729 * When "recursive" is TRUE delete recursively.
732 deleteFold(start
, end
, recursive
, had_visual
)
736 int had_visual
; /* TRUE when Visual selection used */
741 fold_T
*found_fp
= NULL
;
742 linenr_T found_off
= 0;
744 int maybe_small
= FALSE
;
746 linenr_T lnum
= start
;
749 linenr_T first_lnum
= MAXLNUM
;
750 linenr_T last_lnum
= 0;
756 /* Find the deepest fold for "start". */
757 gap
= &curwin
->w_folds
;
763 if (!foldFind(gap
, lnum
- lnum_off
, &fp
))
765 /* lnum is inside this fold, remember info */
768 found_off
= lnum_off
;
770 /* if "lnum" is folded, don't check nesting */
771 if (check_closed(curwin
, fp
, &use_level
, level
,
772 &maybe_small
, lnum_off
))
775 /* check nested folds */
776 gap
= &fp
->fd_nested
;
777 lnum_off
+= fp
->fd_top
;
780 if (found_ga
== NULL
)
786 lnum
= found_fp
->fd_top
+ found_fp
->fd_len
+ found_off
;
788 if (foldmethodIsManual(curwin
))
789 deleteFoldEntry(found_ga
,
790 (int)(found_fp
- (fold_T
*)found_ga
->ga_data
), recursive
);
793 if (first_lnum
> found_fp
->fd_top
+ found_off
)
794 first_lnum
= found_fp
->fd_top
+ found_off
;
795 if (last_lnum
< lnum
)
799 deleteFoldMarkers(found_fp
, recursive
, found_off
);
804 changed_window_setting();
811 /* Force a redraw to remove the Visual highlighting. */
813 redraw_curbuf_later(INVERTED
);
817 /* Deleting markers may make cursor column invalid. */
821 changed_lines(first_lnum
, (colnr_T
)0, last_lnum
, 0L);
824 /* clearFolding() {{{2 */
826 * Remove all folding for window "win".
832 deleteFoldRecurse(&win
->w_folds
);
833 win
->w_foldinvalid
= FALSE
;
836 /* foldUpdate() {{{2 */
838 * Update folds for changes in the buffer of a window.
839 * Note that inserted/deleted lines must have already been taken care of by
840 * calling foldMarkAdjust().
841 * The changes in lines from top to bot (inclusive).
844 foldUpdate(wp
, top
, bot
)
851 /* Mark all folds from top to bot as maybe-small. */
852 (void)foldFind(&curwin
->w_folds
, top
, &fp
);
853 while (fp
< (fold_T
*)curwin
->w_folds
.ga_data
+ curwin
->w_folds
.ga_len
856 fp
->fd_small
= MAYBE
;
860 if (foldmethodIsIndent(wp
)
861 || foldmethodIsExpr(wp
)
862 || foldmethodIsMarker(wp
)
864 || foldmethodIsDiff(wp
)
866 || foldmethodIsSyntax(wp
))
868 int save_got_int
= got_int
;
870 /* reset got_int here, otherwise it won't work */
872 foldUpdateIEMS(wp
, top
, bot
);
873 got_int
|= save_got_int
;
877 /* foldUpdateAll() {{{2 */
879 * Update all lines in a window for folding.
880 * Used when a fold setting changes or after reloading the buffer.
881 * The actual updating is postponed until fold info is used, to avoid doing
882 * every time a setting is changed or a syntax item is added.
888 win
->w_foldinvalid
= TRUE
;
889 redraw_win_later(win
, NOT_VALID
);
892 /* foldMoveTo() {{{2 */
894 * If "updown" is FALSE: Move to the start or end of the fold.
895 * If "updown" is TRUE: move to fold at the same level.
896 * If not moved return FAIL.
899 foldMoveTo(updown
, dir
, count
)
901 int dir
; /* FORWARD or BACKWARD */
918 /* Repeat "count" times. */
919 for (n
= 0; n
< count
; ++n
)
921 /* Find nested folds. Stop when a fold is closed. The deepest fold
922 * that moves the cursor is used. */
924 gap
= &curwin
->w_folds
;
927 lnum_found
= curwin
->w_cursor
.lnum
;
932 if (!foldFind(gap
, curwin
->w_cursor
.lnum
- lnum_off
, &fp
))
937 /* When moving up, consider a fold above the cursor; when
938 * moving down consider a fold below the cursor. */
941 if (fp
- (fold_T
*)gap
->ga_data
>= gap
->ga_len
)
947 if (fp
== (fold_T
*)gap
->ga_data
)
950 /* don't look for contained folds, they will always move
951 * the cursor too far. */
957 /* Check if this fold is closed. */
958 if (check_closed(curwin
, fp
, &use_level
, level
,
959 &maybe_small
, lnum_off
))
962 /* "[z" and "]z" stop at closed fold */
971 /* to start of next fold if there is one */
972 if (fp
+ 1 - (fold_T
*)gap
->ga_data
< gap
->ga_len
)
974 lnum
= fp
[1].fd_top
+ lnum_off
;
975 if (lnum
> curwin
->w_cursor
.lnum
)
981 /* to end of previous fold if there is one */
982 if (fp
> (fold_T
*)gap
->ga_data
)
984 lnum
= fp
[-1].fd_top
+ lnum_off
+ fp
[-1].fd_len
- 1;
985 if (lnum
< curwin
->w_cursor
.lnum
)
992 /* Open fold found, set cursor to its start/end and then check
996 lnum
= fp
->fd_top
+ lnum_off
+ fp
->fd_len
- 1;
997 if (lnum
> curwin
->w_cursor
.lnum
)
1002 lnum
= fp
->fd_top
+ lnum_off
;
1003 if (lnum
< curwin
->w_cursor
.lnum
)
1011 /* Check nested folds (if any). */
1012 gap
= &fp
->fd_nested
;
1013 lnum_off
+= fp
->fd_top
;
1016 if (lnum_found
!= curwin
->w_cursor
.lnum
)
1020 curwin
->w_cursor
.lnum
= lnum_found
;
1021 curwin
->w_cursor
.col
= 0;
1031 /* foldInitWin() {{{2 */
1033 * Init the fold info in a new window.
1039 ga_init2(&newwin
->w_folds
, (int)sizeof(fold_T
), 10);
1042 /* find_wl_entry() {{{2 */
1044 * Find an entry in the win->w_lines[] array for buffer line "lnum".
1045 * Only valid entries are considered (for entries where wl_valid is FALSE the
1046 * line number can be wrong).
1047 * Returns index of entry or -1 if not found.
1050 find_wl_entry(win
, lnum
)
1056 for (i
= 0; i
< win
->w_lines_valid
; ++i
)
1057 if (win
->w_lines
[i
].wl_valid
)
1059 if (lnum
< win
->w_lines
[i
].wl_lnum
)
1061 if (lnum
<= win
->w_lines
[i
].wl_lastlnum
)
1067 /* foldAdjustVisual() {{{2 */
1070 * Adjust the Visual area to include any fold at the start or end completely.
1078 if (!VIsual_active
|| !hasAnyFolding(curwin
))
1081 if (ltoreq(VIsual
, curwin
->w_cursor
))
1084 end
= &curwin
->w_cursor
;
1088 start
= &curwin
->w_cursor
;
1091 if (hasFolding(start
->lnum
, &start
->lnum
, NULL
))
1093 if (hasFolding(end
->lnum
, NULL
, &end
->lnum
))
1095 ptr
= ml_get(end
->lnum
);
1096 end
->col
= (colnr_T
)STRLEN(ptr
);
1097 if (end
->col
> 0 && *p_sel
== 'o')
1100 /* prevent cursor from moving on the trail byte */
1108 /* cursor_foldstart() {{{2 */
1110 * Move the cursor to the first line of a closed fold.
1115 (void)hasFolding(curwin
->w_cursor
.lnum
, &curwin
->w_cursor
.lnum
, NULL
);
1118 /* Internal functions for "fold_T" {{{1 */
1119 /* cloneFoldGrowArray() {{{2 */
1121 * Will "clone" (i.e deep copy) a garray_T of folds.
1123 * Return FAIL if the operation cannot be completed, otherwise OK.
1126 cloneFoldGrowArray(from
, to
)
1134 ga_init2(to
, from
->ga_itemsize
, from
->ga_growsize
);
1135 if (from
->ga_len
== 0 || ga_grow(to
, from
->ga_len
) == FAIL
)
1138 from_p
= (fold_T
*)from
->ga_data
;
1139 to_p
= (fold_T
*)to
->ga_data
;
1141 for (i
= 0; i
< from
->ga_len
; i
++)
1143 to_p
->fd_top
= from_p
->fd_top
;
1144 to_p
->fd_len
= from_p
->fd_len
;
1145 to_p
->fd_flags
= from_p
->fd_flags
;
1146 to_p
->fd_small
= from_p
->fd_small
;
1147 cloneFoldGrowArray(&from_p
->fd_nested
, &to_p
->fd_nested
);
1154 /* foldFind() {{{2 */
1156 * Search for line "lnum" in folds of growarray "gap".
1157 * Set *fpp to the fold struct for the fold that contains "lnum" or
1158 * the first fold below it (careful: it can be beyond the end of the array!).
1159 * Returns FALSE when there is no fold that contains "lnum".
1162 foldFind(gap
, lnum
, fpp
)
1172 * Perform a binary search.
1173 * "low" is lowest index of possible match.
1174 * "high" is highest index of possible match.
1176 fp
= (fold_T
*)gap
->ga_data
;
1178 high
= gap
->ga_len
- 1;
1181 i
= (low
+ high
) / 2;
1182 if (fp
[i
].fd_top
> lnum
)
1183 /* fold below lnum, adjust high */
1185 else if (fp
[i
].fd_top
+ fp
[i
].fd_len
<= lnum
)
1186 /* fold above lnum, adjust low */
1190 /* lnum is inside this fold */
1199 /* foldLevelWin() {{{2 */
1201 * Return fold level at line number "lnum" in window "wp".
1204 foldLevelWin(wp
, lnum
)
1209 linenr_T lnum_rel
= lnum
;
1213 /* Recursively search for a fold that contains "lnum". */
1217 if (!foldFind(gap
, lnum_rel
, &fp
))
1219 /* Check nested folds. Line number is relative to containing fold. */
1220 gap
= &fp
->fd_nested
;
1221 lnum_rel
-= fp
->fd_top
;
1228 /* checkupdate() {{{2 */
1230 * Check if the folds in window "wp" are invalid and update them if needed.
1236 if (wp
->w_foldinvalid
)
1238 foldUpdate(wp
, (linenr_T
)1, (linenr_T
)MAXLNUM
); /* will update all */
1239 wp
->w_foldinvalid
= FALSE
;
1243 /* setFoldRepeat() {{{2 */
1245 * Open or close fold for current window at line "lnum".
1246 * Repeat "count" times.
1249 setFoldRepeat(lnum
, count
, do_open
)
1257 for (n
= 0; n
< count
; ++n
)
1259 done
= DONE_NOTHING
;
1260 (void)setManualFold(lnum
, do_open
, FALSE
, &done
);
1261 if (!(done
& DONE_ACTION
))
1263 /* Only give an error message when no fold could be opened. */
1264 if (n
== 0 && !(done
& DONE_FOLD
))
1271 /* setManualFold() {{{2 */
1273 * Open or close the fold in the current window which contains "lnum".
1274 * Also does this for other windows in diff mode when needed.
1277 setManualFold(lnum
, opening
, recurse
, donep
)
1279 int opening
; /* TRUE when opening, FALSE when closing */
1280 int recurse
; /* TRUE when closing/opening recursive */
1284 if (foldmethodIsDiff(curwin
) && curwin
->w_p_scb
)
1290 * Do the same operation in other windows in diff mode. Calculate the
1291 * line number from the diffs.
1295 if (wp
!= curwin
&& foldmethodIsDiff(wp
) && wp
->w_p_scb
)
1297 dlnum
= diff_lnum_win(curwin
->w_cursor
.lnum
, wp
);
1299 (void)setManualFoldWin(wp
, dlnum
, opening
, recurse
, NULL
);
1305 return setManualFoldWin(curwin
, lnum
, opening
, recurse
, donep
);
1308 /* setManualFoldWin() {{{2 */
1310 * Open or close the fold in window "wp" which contains "lnum".
1311 * "donep", when not NULL, points to flag that is set to DONE_FOLD when some
1312 * fold was found and to DONE_ACTION when some fold was opened or closed.
1313 * When "donep" is NULL give an error message when no fold was found for
1314 * "lnum", but only if "wp" is "curwin".
1315 * Return the line number of the next line that could be closed.
1316 * It's only valid when "opening" is TRUE!
1319 setManualFoldWin(wp
, lnum
, opening
, recurse
, donep
)
1322 int opening
; /* TRUE when opening, FALSE when closing */
1323 int recurse
; /* TRUE when closing/opening recursive */
1328 fold_T
*found
= NULL
;
1331 int use_level
= FALSE
;
1332 int found_fold
= FALSE
;
1334 linenr_T next
= MAXLNUM
;
1341 * Find the fold, open or close it.
1346 if (!foldFind(gap
, lnum
, &fp
))
1348 /* If there is a following fold, continue there next time. */
1349 if (fp
< (fold_T
*)gap
->ga_data
+ gap
->ga_len
)
1350 next
= fp
->fd_top
+ off
;
1354 /* lnum is inside this fold */
1357 /* If there is a following fold, continue there next time. */
1358 if (fp
+ 1 < (fold_T
*)gap
->ga_data
+ gap
->ga_len
)
1359 next
= fp
[1].fd_top
+ off
;
1361 /* Change from level-dependent folding to manual. */
1362 if (use_level
|| fp
->fd_flags
== FD_LEVEL
)
1365 if (level
>= wp
->w_p_fdl
)
1366 fp
->fd_flags
= FD_CLOSED
;
1368 fp
->fd_flags
= FD_OPEN
;
1369 fp2
= (fold_T
*)fp
->fd_nested
.ga_data
;
1370 for (j
= 0; j
< fp
->fd_nested
.ga_len
; ++j
)
1371 fp2
[j
].fd_flags
= FD_LEVEL
;
1374 /* Simple case: Close recursively means closing the fold. */
1375 if (!opening
&& recurse
)
1377 if (fp
->fd_flags
!= FD_CLOSED
)
1379 done
|= DONE_ACTION
;
1380 fp
->fd_flags
= FD_CLOSED
;
1383 else if (fp
->fd_flags
== FD_CLOSED
)
1385 /* When opening, open topmost closed fold. */
1388 fp
->fd_flags
= FD_OPEN
;
1389 done
|= DONE_ACTION
;
1396 /* fold is open, check nested folds */
1398 gap
= &fp
->fd_nested
;
1405 /* When closing and not recurse, close deepest open fold. */
1406 if (!opening
&& found
!= NULL
)
1408 found
->fd_flags
= FD_CLOSED
;
1409 done
|= DONE_ACTION
;
1411 wp
->w_fold_manual
= TRUE
;
1412 if (done
& DONE_ACTION
)
1413 changed_window_setting_win(wp
);
1416 else if (donep
== NULL
&& wp
== curwin
)
1425 /* foldOpenNested() {{{2 */
1427 * Open all nested folds in fold "fpr" recursively.
1436 fp
= (fold_T
*)fpr
->fd_nested
.ga_data
;
1437 for (i
= 0; i
< fpr
->fd_nested
.ga_len
; ++i
)
1439 foldOpenNested(&fp
[i
]);
1440 fp
[i
].fd_flags
= FD_OPEN
;
1444 /* deleteFoldEntry() {{{2 */
1446 * Delete fold "idx" from growarray "gap".
1447 * When "recursive" is TRUE also delete all the folds contained in it.
1448 * When "recursive" is FALSE contained folds are moved one level up.
1451 deleteFoldEntry(gap
, idx
, recursive
)
1461 fp
= (fold_T
*)gap
->ga_data
+ idx
;
1462 if (recursive
|| fp
->fd_nested
.ga_len
== 0)
1464 /* recursively delete the contained folds */
1465 deleteFoldRecurse(&fp
->fd_nested
);
1467 if (idx
< gap
->ga_len
)
1468 mch_memmove(fp
, fp
+ 1, sizeof(fold_T
) * (gap
->ga_len
- idx
));
1472 /* move nested folds one level up, to overwrite the fold that is
1474 moved
= fp
->fd_nested
.ga_len
;
1475 if (ga_grow(gap
, (int)(moved
- 1)) == OK
)
1477 /* adjust fd_top and fd_flags for the moved folds */
1478 nfp
= (fold_T
*)fp
->fd_nested
.ga_data
;
1479 for (i
= 0; i
< moved
; ++i
)
1481 nfp
[i
].fd_top
+= fp
->fd_top
;
1482 if (fp
->fd_flags
== FD_LEVEL
)
1483 nfp
[i
].fd_flags
= FD_LEVEL
;
1484 if (fp
->fd_small
== MAYBE
)
1485 nfp
[i
].fd_small
= MAYBE
;
1488 /* move the existing folds down to make room */
1489 if (idx
< gap
->ga_len
)
1490 mch_memmove(fp
+ moved
, fp
+ 1,
1491 sizeof(fold_T
) * (gap
->ga_len
- idx
));
1492 /* move the contained folds one level up */
1493 mch_memmove(fp
, nfp
, (size_t)(sizeof(fold_T
) * moved
));
1495 gap
->ga_len
+= moved
- 1;
1500 /* deleteFoldRecurse() {{{2 */
1502 * Delete nested folds in a fold.
1505 deleteFoldRecurse(gap
)
1510 for (i
= 0; i
< gap
->ga_len
; ++i
)
1511 deleteFoldRecurse(&(((fold_T
*)(gap
->ga_data
))[i
].fd_nested
));
1515 /* foldMarkAdjust() {{{2 */
1517 * Update line numbers of folds for inserted/deleted lines.
1520 foldMarkAdjust(wp
, line1
, line2
, amount
, amount_after
)
1527 /* If deleting marks from line1 to line2, but not deleting all those
1528 * lines, set line2 so that only deleted lines have their folds removed. */
1529 if (amount
== MAXLNUM
&& line2
>= line1
&& line2
- line1
>= -amount_after
)
1530 line2
= line1
- amount_after
- 1;
1531 /* If appending a line in Insert mode, it should be included in the fold
1532 * just above the line. */
1533 if ((State
& INSERT
) && amount
== (linenr_T
)1 && line2
== MAXLNUM
)
1535 foldMarkAdjustRecurse(&wp
->w_folds
, line1
, line2
, amount
, amount_after
);
1538 /* foldMarkAdjustRecurse() {{{2 */
1540 foldMarkAdjustRecurse(gap
, line1
, line2
, amount
, amount_after
)
1552 /* In Insert mode an inserted line at the top of a fold is considered part
1553 * of the fold, otherwise it isn't. */
1554 if ((State
& INSERT
) && amount
== (linenr_T
)1 && line2
== MAXLNUM
)
1559 /* Find the fold containing or just below "line1". */
1560 (void)foldFind(gap
, line1
, &fp
);
1563 * Adjust all folds below "line1" that are affected.
1565 for (i
= (int)(fp
- (fold_T
*)gap
->ga_data
); i
< gap
->ga_len
; ++i
, ++fp
)
1568 * Check for these situations:
1579 last
= fp
->fd_top
+ fp
->fd_len
- 1; /* last line of fold */
1581 /* 1. fold completely above line1: nothing to do */
1585 /* 6. fold below line2: only adjust for amount_after */
1586 if (fp
->fd_top
> line2
)
1588 if (amount_after
== 0)
1590 fp
->fd_top
+= amount_after
;
1594 if (fp
->fd_top
>= top
&& last
<= line2
)
1596 /* 4. fold completely contained in range */
1597 if (amount
== MAXLNUM
)
1599 /* Deleting lines: delete the fold completely */
1600 deleteFoldEntry(gap
, i
, TRUE
);
1601 --i
; /* adjust index for deletion */
1605 fp
->fd_top
+= amount
;
1609 if (fp
->fd_top
< top
)
1611 /* 2 or 3: need to correct nested folds too */
1612 foldMarkAdjustRecurse(&fp
->fd_nested
, line1
- fp
->fd_top
,
1613 line2
- fp
->fd_top
, amount
, amount_after
);
1616 /* 2. fold contains line1, line2 is below fold */
1617 if (amount
== MAXLNUM
)
1618 fp
->fd_len
= line1
- fp
->fd_top
;
1620 fp
->fd_len
+= amount
;
1624 /* 3. fold contains line1 and line2 */
1625 fp
->fd_len
+= amount_after
;
1630 /* 5. fold is below line1 and contains line2; need to
1631 * correct nested folds too */
1632 foldMarkAdjustRecurse(&fp
->fd_nested
, line1
- fp
->fd_top
,
1633 line2
- fp
->fd_top
, amount
,
1634 amount_after
+ (fp
->fd_top
- top
));
1635 if (amount
== MAXLNUM
)
1637 fp
->fd_len
-= line2
- fp
->fd_top
+ 1;
1642 fp
->fd_len
+= amount_after
- amount
;
1643 fp
->fd_top
+= amount
;
1651 /* getDeepestNesting() {{{2 */
1653 * Get the lowest 'foldlevel' value that makes the deepest nested fold in the
1654 * current window open.
1659 checkupdate(curwin
);
1660 return getDeepestNestingRecurse(&curwin
->w_folds
);
1664 getDeepestNestingRecurse(gap
)
1672 fp
= (fold_T
*)gap
->ga_data
;
1673 for (i
= 0; i
< gap
->ga_len
; ++i
)
1675 level
= getDeepestNestingRecurse(&fp
[i
].fd_nested
) + 1;
1676 if (level
> maxlevel
)
1683 /* check_closed() {{{2 */
1685 * Check if a fold is closed and update the info needed to check nested folds.
1688 check_closed(win
, fp
, use_levelp
, level
, maybe_smallp
, lnum_off
)
1691 int *use_levelp
; /* TRUE: outer fold had FD_LEVEL */
1692 int level
; /* folding depth */
1693 int *maybe_smallp
; /* TRUE: outer this had fd_small == MAYBE */
1694 linenr_T lnum_off
; /* line number offset for fp->fd_top */
1698 /* Check if this fold is closed. If the flag is FD_LEVEL this
1699 * fold and all folds it contains depend on 'foldlevel'. */
1700 if (*use_levelp
|| fp
->fd_flags
== FD_LEVEL
)
1703 if (level
>= win
->w_p_fdl
)
1706 else if (fp
->fd_flags
== FD_CLOSED
)
1709 /* Small fold isn't closed anyway. */
1710 if (fp
->fd_small
== MAYBE
)
1711 *maybe_smallp
= TRUE
;
1715 fp
->fd_small
= MAYBE
;
1716 checkSmall(win
, fp
, lnum_off
);
1717 if (fp
->fd_small
== TRUE
)
1723 /* checkSmall() {{{2 */
1725 * Update fd_small field of fold "fp".
1728 checkSmall(wp
, fp
, lnum_off
)
1731 linenr_T lnum_off
; /* offset for fp->fd_top */
1736 if (fp
->fd_small
== MAYBE
)
1738 /* Mark any nested folds to maybe-small */
1739 setSmallMaybe(&fp
->fd_nested
);
1741 if (fp
->fd_len
> curwin
->w_p_fml
)
1742 fp
->fd_small
= FALSE
;
1746 for (n
= 0; n
< fp
->fd_len
; ++n
)
1748 count
+= plines_win_nofold(wp
, fp
->fd_top
+ lnum_off
+ n
);
1749 if (count
> curwin
->w_p_fml
)
1751 fp
->fd_small
= FALSE
;
1755 fp
->fd_small
= TRUE
;
1760 /* setSmallMaybe() {{{2 */
1762 * Set small flags in "gap" to MAYBE.
1771 fp
= (fold_T
*)gap
->ga_data
;
1772 for (i
= 0; i
< gap
->ga_len
; ++i
)
1773 fp
[i
].fd_small
= MAYBE
;
1776 /* foldCreateMarkers() {{{2 */
1778 * Create a fold from line "start" to line "end" (inclusive) in the current
1779 * window by adding markers.
1782 foldCreateMarkers(start
, end
)
1786 if (!curbuf
->b_p_ma
)
1788 EMSG(_(e_modifiable
));
1791 parseMarker(curwin
);
1793 foldAddMarker(start
, curwin
->w_p_fmr
, foldstartmarkerlen
);
1794 foldAddMarker(end
, foldendmarker
, foldendmarkerlen
);
1796 /* Update both changes here, to avoid all folds after the start are
1797 * changed when the start marker is inserted and the end isn't. */
1798 changed_lines(start
, (colnr_T
)0, end
, 0L);
1801 /* foldAddMarker() {{{2 */
1803 * Add "marker[markerlen]" in 'commentstring' to line "lnum".
1806 foldAddMarker(lnum
, marker
, markerlen
)
1811 char_u
*cms
= curbuf
->b_p_cms
;
1815 char_u
*p
= (char_u
*)strstr((char *)curbuf
->b_p_cms
, "%s");
1817 /* Allocate a new line: old-line + 'cms'-start + marker + 'cms'-end */
1818 line
= ml_get(lnum
);
1819 line_len
= (int)STRLEN(line
);
1821 if (u_save(lnum
- 1, lnum
+ 1) == OK
)
1823 newline
= alloc((unsigned)(line_len
+ markerlen
+ STRLEN(cms
) + 1));
1824 if (newline
== NULL
)
1826 STRCPY(newline
, line
);
1828 vim_strncpy(newline
+ line_len
, marker
, markerlen
);
1831 STRCPY(newline
+ line_len
, cms
);
1832 STRNCPY(newline
+ line_len
+ (p
- cms
), marker
, markerlen
);
1833 STRCPY(newline
+ line_len
+ (p
- cms
) + markerlen
, p
+ 2);
1836 ml_replace(lnum
, newline
, FALSE
);
1840 /* deleteFoldMarkers() {{{2 */
1842 * Delete the markers for a fold, causing it to be deleted.
1845 deleteFoldMarkers(fp
, recursive
, lnum_off
)
1848 linenr_T lnum_off
; /* offset for fp->fd_top */
1853 for (i
= 0; i
< fp
->fd_nested
.ga_len
; ++i
)
1854 deleteFoldMarkers((fold_T
*)fp
->fd_nested
.ga_data
+ i
, TRUE
,
1855 lnum_off
+ fp
->fd_top
);
1856 foldDelMarker(fp
->fd_top
+ lnum_off
, curwin
->w_p_fmr
, foldstartmarkerlen
);
1857 foldDelMarker(fp
->fd_top
+ lnum_off
+ fp
->fd_len
- 1,
1858 foldendmarker
, foldendmarkerlen
);
1861 /* foldDelMarker() {{{2 */
1863 * Delete marker "marker[markerlen]" at the end of line "lnum".
1864 * Delete 'commentstring' if it matches.
1865 * If the marker is not found, there is no error message. Could a missing
1869 foldDelMarker(lnum
, marker
, markerlen
)
1878 char_u
*cms
= curbuf
->b_p_cms
;
1881 line
= ml_get(lnum
);
1882 for (p
= line
; *p
!= NUL
; ++p
)
1883 if (STRNCMP(p
, marker
, markerlen
) == 0)
1885 /* Found the marker, include a digit if it's there. */
1887 if (VIM_ISDIGIT(p
[len
]))
1891 /* Also delete 'commentstring' if it matches. */
1892 cms2
= (char_u
*)strstr((char *)cms
, "%s");
1893 if (p
- line
>= cms2
- cms
1894 && STRNCMP(p
- (cms2
- cms
), cms
, cms2
- cms
) == 0
1895 && STRNCMP(p
+ len
, cms2
+ 2, STRLEN(cms2
+ 2)) == 0)
1898 len
+= (int)STRLEN(cms
) - 2;
1901 if (u_save(lnum
- 1, lnum
+ 1) == OK
)
1903 /* Make new line: text-before-marker + text-after-marker */
1904 newline
= alloc((unsigned)(STRLEN(line
) - len
+ 1));
1905 if (newline
!= NULL
)
1907 STRNCPY(newline
, line
, p
- line
);
1908 STRCPY(newline
+ (p
- line
), p
+ len
);
1909 ml_replace(lnum
, newline
, FALSE
);
1916 /* get_foldtext() {{{2 */
1918 * Return the text for a closed fold at line "lnum", with last line "lnume".
1919 * When 'foldtext' isn't set puts the result in "buf[51]". Otherwise the
1920 * result is in allocated memory.
1923 get_foldtext(wp
, lnum
, lnume
, foldinfo
, buf
)
1925 linenr_T lnum
, lnume
;
1926 foldinfo_T
*foldinfo
;
1929 char_u
*text
= NULL
;
1932 if (*wp
->w_p_fdt
!= NUL
)
1934 char_u dashes
[MAX_LEVEL
+ 2];
1939 /* Set "v:foldstart" and "v:foldend". */
1940 set_vim_var_nr(VV_FOLDSTART
, lnum
);
1941 set_vim_var_nr(VV_FOLDEND
, lnume
);
1943 /* Set "v:folddashes" to a string of "level" dashes. */
1944 /* Set "v:foldlevel" to "level". */
1945 level
= foldinfo
->fi_level
;
1946 if (level
> (int)sizeof(dashes
) - 1)
1947 level
= (int)sizeof(dashes
) - 1;
1948 vim_memset(dashes
, '-', (size_t)level
);
1949 dashes
[level
] = NUL
;
1950 set_vim_var_string(VV_FOLDDASHES
, dashes
, -1);
1951 set_vim_var_nr(VV_FOLDLEVEL
, (long)level
);
1952 save_curwin
= curwin
;
1954 curbuf
= wp
->w_buffer
;
1957 text
= eval_to_string_safe(wp
->w_p_fdt
, NULL
,
1958 was_set_insecurely((char_u
*)"foldtext", OPT_LOCAL
));
1961 curwin
= save_curwin
;
1962 curbuf
= curwin
->w_buffer
;
1963 set_vim_var_string(VV_FOLDDASHES
, NULL
, -1);
1967 /* Replace unprintable characters, if there are any. But
1968 * replace a TAB with a space. */
1969 for (p
= text
; *p
!= NUL
; ++p
)
1974 if (has_mbyte
&& (len
= (*mb_ptr2len
)(p
)) > 1)
1976 if (!vim_isprintc((*mb_ptr2char
)(p
)))
1984 else if (ptr2cells(p
) > 1)
1998 sprintf((char *)buf
, _("+--%3ld lines folded "),
1999 (long)(lnume
- lnum
+ 1));
2005 /* foldtext_cleanup() {{{2 */
2007 * Remove 'foldmarker' and 'commentstring' from "str" (in-place).
2010 foldtext_cleanup(str
)
2013 char_u
*cms_start
; /* first part or the whole comment */
2014 int cms_slen
= 0; /* length of cms_start */
2015 char_u
*cms_end
; /* last part of the comment or NULL */
2016 int cms_elen
= 0; /* length of cms_end */
2023 /* Ignore leading and trailing white space in 'commentstring'. */
2024 cms_start
= skipwhite(curbuf
->b_p_cms
);
2025 cms_slen
= (int)STRLEN(cms_start
);
2026 while (cms_slen
> 0 && vim_iswhite(cms_start
[cms_slen
- 1]))
2029 /* locate "%s" in 'commentstring', use the part before and after it. */
2030 cms_end
= (char_u
*)strstr((char *)cms_start
, "%s");
2031 if (cms_end
!= NULL
)
2033 cms_elen
= cms_slen
- (int)(cms_end
- cms_start
);
2034 cms_slen
= (int)(cms_end
- cms_start
);
2036 /* exclude white space before "%s" */
2037 while (cms_slen
> 0 && vim_iswhite(cms_start
[cms_slen
- 1]))
2040 /* skip "%s" and white space after it */
2041 s
= skipwhite(cms_end
+ 2);
2042 cms_elen
-= (int)(s
- cms_end
);
2045 parseMarker(curwin
);
2047 for (s
= str
; *s
!= NUL
; )
2050 if (STRNCMP(s
, curwin
->w_p_fmr
, foldstartmarkerlen
) == 0)
2051 len
= foldstartmarkerlen
;
2052 else if (STRNCMP(s
, foldendmarker
, foldendmarkerlen
) == 0)
2053 len
= foldendmarkerlen
;
2056 if (VIM_ISDIGIT(s
[len
]))
2059 /* May remove 'commentstring' start. Useful when it's a double
2060 * quote and we already removed a double quote. */
2061 for (p
= s
; p
> str
&& vim_iswhite(p
[-1]); --p
)
2063 if (p
>= str
+ cms_slen
2064 && STRNCMP(p
- cms_slen
, cms_start
, cms_slen
) == 0)
2066 len
+= (int)(s
- p
) + cms_slen
;
2070 else if (cms_end
!= NULL
)
2072 if (!did1
&& cms_slen
> 0 && STRNCMP(s
, cms_start
, cms_slen
) == 0)
2077 else if (!did2
&& cms_elen
> 0
2078 && STRNCMP(s
, cms_end
, cms_elen
) == 0)
2086 while (vim_iswhite(s
[len
]))
2088 STRMOVE(s
, s
+ len
);
2097 /* Folding by indent, expr, marker and syntax. {{{1 */
2098 /* Define "fline_T", passed to get fold level for a line. {{{2 */
2101 win_T
*wp
; /* window */
2102 linenr_T lnum
; /* current line number */
2103 linenr_T off
; /* offset between lnum and real line number */
2104 linenr_T lnum_save
; /* line nr used by foldUpdateIEMSRecurse() */
2105 int lvl
; /* current level (-1 for undefined) */
2106 int lvl_next
; /* level used for next line */
2107 int start
; /* number of folds that are forced to start at
2109 int end
; /* level of fold that is forced to end below
2111 int had_end
; /* level of fold that is forced to end above
2112 this line (copy of "end" of prev. line) */
2115 /* Flag is set when redrawing is needed. */
2116 static int fold_changed
;
2118 /* Function declarations. {{{2 */
2119 static linenr_T foldUpdateIEMSRecurse
__ARGS((garray_T
*gap
, int level
, linenr_T startlnum
, fline_T
*flp
, void (*getlevel
)__ARGS((fline_T
*)), linenr_T bot
, int topflags
));
2120 static int foldInsert
__ARGS((garray_T
*gap
, int i
));
2121 static void foldSplit
__ARGS((garray_T
*gap
, int i
, linenr_T top
, linenr_T bot
));
2122 static void foldRemove
__ARGS((garray_T
*gap
, linenr_T top
, linenr_T bot
));
2123 static void foldMerge
__ARGS((fold_T
*fp1
, garray_T
*gap
, fold_T
*fp2
));
2124 static void foldlevelIndent
__ARGS((fline_T
*flp
));
2126 static void foldlevelDiff
__ARGS((fline_T
*flp
));
2128 static void foldlevelExpr
__ARGS((fline_T
*flp
));
2129 static void foldlevelMarker
__ARGS((fline_T
*flp
));
2130 static void foldlevelSyntax
__ARGS((fline_T
*flp
));
2132 /* foldUpdateIEMS() {{{2 */
2134 * Update the folding for window "wp", at least from lines "top" to "bot".
2135 * Return TRUE if any folds did change.
2138 foldUpdateIEMS(wp
, top
, bot
)
2146 void (*getlevel
)__ARGS((fline_T
*));
2150 /* Avoid problems when being called recursively. */
2151 if (invalid_top
!= (linenr_T
)0)
2154 if (wp
->w_foldinvalid
)
2156 /* Need to update all folds. */
2158 bot
= wp
->w_buffer
->b_ml
.ml_line_count
;
2159 wp
->w_foldinvalid
= FALSE
;
2161 /* Mark all folds a maybe-small. */
2162 setSmallMaybe(&wp
->w_folds
);
2166 /* add the context for "diff" folding */
2167 if (foldmethodIsDiff(wp
))
2169 if (top
> diff_context
)
2170 top
-= diff_context
;
2173 bot
+= diff_context
;
2177 /* When deleting lines at the end of the buffer "top" can be past the end
2179 if (top
> wp
->w_buffer
->b_ml
.ml_line_count
)
2180 top
= wp
->w_buffer
->b_ml
.ml_line_count
;
2182 fold_changed
= FALSE
;
2186 fline
.lvl_next
= -1;
2188 fline
.end
= MAX_LEVEL
+ 1;
2189 fline
.had_end
= MAX_LEVEL
+ 1;
2194 if (foldmethodIsMarker(wp
))
2196 getlevel
= foldlevelMarker
;
2198 /* Init marker variables to speed up foldlevelMarker(). */
2201 /* Need to get the level of the line above top, it is used if there is
2202 * no marker at the top. */
2205 /* Get the fold level at top - 1. */
2206 level
= foldLevelWin(wp
, top
- 1);
2208 /* The fold may end just above the top, check for that. */
2209 fline
.lnum
= top
- 1;
2213 /* If a fold started here, we already had the level, if it stops
2214 * here, we need to use lvl_next. Could also start and end a fold
2215 * in the same line. */
2216 if (fline
.lvl
> level
)
2217 fline
.lvl
= level
- (fline
.lvl
- fline
.lvl_next
);
2219 fline
.lvl
= fline
.lvl_next
;
2227 if (foldmethodIsExpr(wp
))
2229 getlevel
= foldlevelExpr
;
2230 /* start one line back, because a "<1" may indicate the end of a
2231 * fold in the topline */
2235 else if (foldmethodIsSyntax(wp
))
2236 getlevel
= foldlevelSyntax
;
2238 else if (foldmethodIsDiff(wp
))
2239 getlevel
= foldlevelDiff
;
2242 getlevel
= foldlevelIndent
;
2244 /* Backup to a line for which the fold level is defined. Since it's
2245 * always defined for line one, we will stop there. */
2247 for ( ; !got_int
; --fline
.lnum
)
2249 /* Reset lvl_next each time, because it will be set to a value for
2250 * the next line, but we search backwards here. */
2251 fline
.lvl_next
= -1;
2259 * If folding is defined by the syntax, it is possible that a change in
2260 * one line will cause all sub-folds of the current fold to change (e.g.,
2261 * closing a C-style comment can cause folds in the subsequent lines to
2262 * appear). To take that into account we should adjust the value of "bot"
2263 * to point to the end of the current fold:
2265 if (foldlevelSyntax
== getlevel
)
2267 garray_T
*gap
= &wp
->w_folds
;
2269 int current_fdl
= 0;
2270 linenr_T fold_start_lnum
= 0;
2271 linenr_T lnum_rel
= fline
.lnum
;
2273 while (current_fdl
< fline
.lvl
)
2275 if (!foldFind(gap
, lnum_rel
, &fp
))
2279 fold_start_lnum
+= fp
->fd_top
;
2280 gap
= &fp
->fd_nested
;
2281 lnum_rel
-= fp
->fd_top
;
2283 if (fp
!= NULL
&& current_fdl
== fline
.lvl
)
2285 linenr_T fold_end_lnum
= fold_start_lnum
+ fp
->fd_len
;
2287 if (fold_end_lnum
> bot
)
2288 bot
= fold_end_lnum
;
2294 /* Do at least one line. */
2295 if (start
> end
&& end
< wp
->w_buffer
->b_ml
.ml_line_count
)
2299 /* Always stop at the end of the file ("end" can be past the end of
2301 if (fline
.lnum
> wp
->w_buffer
->b_ml
.ml_line_count
)
2303 if (fline
.lnum
> end
)
2305 /* For "marker", "expr" and "syntax" methods: If a change caused
2306 * a fold to be removed, we need to continue at least until where
2308 if (getlevel
!= foldlevelMarker
2309 && getlevel
!= foldlevelSyntax
2310 && getlevel
!= foldlevelExpr
)
2313 && foldFind(&wp
->w_folds
, end
, &fp
)
2314 && fp
->fd_top
+ fp
->fd_len
- 1 > end
)
2316 && foldFind(&wp
->w_folds
, fline
.lnum
, &fp
)
2317 && fp
->fd_top
< fline
.lnum
))
2318 end
= fp
->fd_top
+ fp
->fd_len
- 1;
2319 else if (getlevel
== foldlevelSyntax
2320 && foldLevelWin(wp
, fline
.lnum
) != fline
.lvl
)
2321 /* For "syntax" method: Compare the foldlevel that the syntax
2322 * tells us to the foldlevel from the existing folds. If they
2323 * don't match continue updating folds. */
2329 /* A level 1 fold starts at a line with foldlevel > 0. */
2332 invalid_top
= fline
.lnum
;
2334 end
= foldUpdateIEMSRecurse(&wp
->w_folds
,
2335 1, start
, &fline
, getlevel
, end
, FD_LEVEL
);
2340 if (fline
.lnum
== wp
->w_buffer
->b_ml
.ml_line_count
)
2343 fline
.lvl
= fline
.lvl_next
;
2348 /* There can't be any folds from start until end now. */
2349 foldRemove(&wp
->w_folds
, start
, end
);
2351 /* If some fold changed, need to redraw and position cursor. */
2352 if (fold_changed
&& wp
->w_p_fen
)
2353 changed_window_setting_win(wp
);
2355 /* If we updated folds past "bot", need to redraw more lines. Don't do
2356 * this in other situations, the changed lines will be redrawn anyway and
2357 * this method can cause the whole window to be updated. */
2360 if (wp
->w_redraw_top
== 0 || wp
->w_redraw_top
> top
)
2361 wp
->w_redraw_top
= top
;
2362 if (wp
->w_redraw_bot
< end
)
2363 wp
->w_redraw_bot
= end
;
2366 invalid_top
= (linenr_T
)0;
2369 /* foldUpdateIEMSRecurse() {{{2 */
2371 * Update a fold that starts at "flp->lnum". At this line there is always a
2372 * valid foldlevel, and its level >= "level".
2373 * "flp" is valid for "flp->lnum" when called and it's valid when returning.
2374 * "flp->lnum" is set to the lnum just below the fold, if it ends before
2375 * "bot", it's "bot" plus one if the fold continues and it's bigger when using
2376 * the marker method and a text change made following folds to change.
2377 * When returning, "flp->lnum_save" is the line number that was used to get
2378 * the level when the level at "flp->lnum" is invalid.
2379 * Remove any folds from "startlnum" up to here at this level.
2380 * Recursively update nested folds.
2381 * Below line "bot" there are no changes in the text.
2382 * "flp->lnum", "flp->lnum_save" and "bot" are relative to the start of the
2384 * "flp->off" is the offset to the real line number in the buffer.
2386 * All this would be a lot simpler if all folds in the range would be deleted
2387 * and then created again. But we would lose all information about the
2388 * folds, even when making changes that don't affect the folding (e.g. "vj~").
2390 * Returns bot, which may have been increased for lines that also need to be
2391 * updated as a result of a detected change in the fold.
2394 foldUpdateIEMSRecurse(gap
, level
, startlnum
, flp
, getlevel
, bot
, topflags
)
2399 void (*getlevel
)__ARGS((fline_T
*));
2401 int topflags
; /* flags used by containing fold */
2407 linenr_T startlnum2
= startlnum
;
2408 linenr_T firstlnum
= flp
->lnum
; /* first lnum we got */
2411 linenr_T linecount
= flp
->wp
->w_buffer
->b_ml
.ml_line_count
- flp
->off
;
2415 * If using the marker method, the start line is not the start of a fold
2416 * at the level we're dealing with and the level is non-zero, we must use
2417 * the previous fold. But ignore a fold that starts at or below
2418 * startlnum, it must be deleted.
2420 if (getlevel
== foldlevelMarker
&& flp
->start
<= flp
->lvl
- level
2423 foldFind(gap
, startlnum
- 1, &fp
);
2424 if (fp
>= ((fold_T
*)gap
->ga_data
) + gap
->ga_len
2425 || fp
->fd_top
>= startlnum
)
2430 * Loop over all lines in this fold, or until "bot" is hit.
2431 * Handle nested folds inside of this fold.
2432 * "flp->lnum" is the current line. When finding the end of the fold, it
2433 * is just below the end of the fold.
2434 * "*flp" contains the level of the line "flp->lnum" or a following one if
2435 * there are lines with an invalid fold level. "flp->lnum_save" is the
2436 * line number that was used to get the fold level (below "flp->lnum" when
2437 * it has an invalid fold level). When called the fold level is always
2438 * valid, thus "flp->lnum_save" is equal to "flp->lnum".
2440 flp
->lnum_save
= flp
->lnum
;
2443 /* Updating folds can be slow, check for CTRL-C. */
2446 /* Set "lvl" to the level of line "flp->lnum". When flp->start is set
2447 * and after the first line of the fold, set the level to zero to
2448 * force the fold to end. Do the same when had_end is set: Previous
2449 * line was marked as end of a fold. */
2451 if (lvl
> MAX_LEVEL
)
2453 if (flp
->lnum
> firstlnum
2454 && (level
> lvl
- flp
->start
|| level
>= flp
->had_end
))
2457 if (flp
->lnum
> bot
&& !finish
&& fp
!= NULL
)
2459 /* For "marker" and "syntax" methods:
2460 * - If a change caused a nested fold to be removed, we need to
2461 * delete it and continue at least until where it ended.
2462 * - If a change caused a nested fold to be created, or this fold
2463 * to continue below its original end, need to finish this fold.
2465 if (getlevel
!= foldlevelMarker
2466 && getlevel
!= foldlevelExpr
2467 && getlevel
!= foldlevelSyntax
)
2473 /* Compute how deep the folds currently are, if it's deeper
2474 * than "lvl" then some must be deleted, need to update
2475 * at least one nested fold. */
2476 ll
= flp
->lnum
- fp
->fd_top
;
2477 while (foldFind(&fp2
->fd_nested
, ll
, &fp2
))
2483 if (lvl
< level
+ i
)
2485 foldFind(&fp
->fd_nested
, flp
->lnum
- fp
->fd_top
, &fp2
);
2487 bot
= fp2
->fd_top
+ fp2
->fd_len
- 1 + fp
->fd_top
;
2489 else if (fp
->fd_top
+ fp
->fd_len
<= flp
->lnum
&& lvl
>= level
)
2495 /* At the start of the first nested fold and at the end of the current
2496 * fold: check if existing folds at this level, before the current
2497 * one, need to be deleted or truncated. */
2500 || flp
->lnum_save
>= bot
2502 || flp
->had_end
<= MAX_LEVEL
2503 || flp
->lnum
== linecount
))
2506 * Remove or update folds that have lines between startlnum and
2511 /* set concat to 1 if it's allowed to concatenated this fold
2512 * with a previous one that touches it. */
2513 if (flp
->start
!= 0 || flp
->had_end
<= MAX_LEVEL
)
2518 /* Find an existing fold to re-use. Preferably one that
2519 * includes startlnum, otherwise one that ends just before
2520 * startlnum or starts after it. */
2521 if (foldFind(gap
, startlnum
, &fp
)
2522 || (fp
< ((fold_T
*)gap
->ga_data
) + gap
->ga_len
2523 && fp
->fd_top
<= firstlnum
)
2524 || foldFind(gap
, firstlnum
- concat
, &fp
)
2525 || (fp
< ((fold_T
*)gap
->ga_data
) + gap
->ga_len
2526 && ((lvl
< level
&& fp
->fd_top
< flp
->lnum
)
2528 && fp
->fd_top
<= flp
->lnum_save
))))
2530 if (fp
->fd_top
+ fp
->fd_len
+ concat
> firstlnum
)
2532 /* Use existing fold for the new fold. If it starts
2533 * before where we started looking, extend it. If it
2534 * starts at another line, update nested folds to keep
2535 * their position, compensating for the new fd_top. */
2536 if (fp
->fd_top
>= startlnum
&& fp
->fd_top
!= firstlnum
)
2538 if (fp
->fd_top
> firstlnum
)
2539 /* like lines are inserted */
2540 foldMarkAdjustRecurse(&fp
->fd_nested
,
2541 (linenr_T
)0, (linenr_T
)MAXLNUM
,
2542 (long)(fp
->fd_top
- firstlnum
), 0L);
2544 /* like lines are deleted */
2545 foldMarkAdjustRecurse(&fp
->fd_nested
,
2547 (long)(firstlnum
- fp
->fd_top
- 1),
2549 (long)(fp
->fd_top
- firstlnum
));
2550 fp
->fd_len
+= fp
->fd_top
- firstlnum
;
2551 fp
->fd_top
= firstlnum
;
2552 fold_changed
= TRUE
;
2554 else if (flp
->start
!= 0 && lvl
== level
2555 && fp
->fd_top
!= firstlnum
)
2557 /* Existing fold that includes startlnum must stop
2558 * if we find the start of a new fold at the same
2559 * level. Split it. Delete contained folds at
2560 * this point to split them too. */
2561 foldRemove(&fp
->fd_nested
, flp
->lnum
- fp
->fd_top
,
2562 flp
->lnum
- fp
->fd_top
);
2563 i
= (int)(fp
- (fold_T
*)gap
->ga_data
);
2564 foldSplit(gap
, i
, flp
->lnum
, flp
->lnum
- 1);
2565 fp
= (fold_T
*)gap
->ga_data
+ i
+ 1;
2566 /* If using the "marker" or "syntax" method, we
2567 * need to continue until the end of the fold is
2569 if (getlevel
== foldlevelMarker
2570 || getlevel
== foldlevelExpr
2571 || getlevel
== foldlevelSyntax
)
2576 if (fp
->fd_top
>= startlnum
)
2578 /* A fold that starts at or after startlnum and stops
2579 * before the new fold must be deleted. Continue
2580 * looking for the next one. */
2581 deleteFoldEntry(gap
,
2582 (int)(fp
- (fold_T
*)gap
->ga_data
), TRUE
);
2586 /* A fold has some lines above startlnum, truncate it
2587 * to stop just above startlnum. */
2588 fp
->fd_len
= startlnum
- fp
->fd_top
;
2589 foldMarkAdjustRecurse(&fp
->fd_nested
,
2590 (linenr_T
)fp
->fd_len
, (linenr_T
)MAXLNUM
,
2591 (linenr_T
)MAXLNUM
, 0L);
2592 fold_changed
= TRUE
;
2597 /* Insert new fold. Careful: ga_data may be NULL and it
2599 i
= (int)(fp
- (fold_T
*)gap
->ga_data
);
2600 if (foldInsert(gap
, i
) != OK
)
2602 fp
= (fold_T
*)gap
->ga_data
+ i
;
2603 /* The new fold continues until bot, unless we find the
2605 fp
->fd_top
= firstlnum
;
2606 fp
->fd_len
= bot
- firstlnum
+ 1;
2607 /* When the containing fold is open, the new fold is open.
2608 * The new fold is closed if the fold above it is closed.
2609 * The first fold depends on the containing fold. */
2610 if (topflags
== FD_OPEN
)
2612 flp
->wp
->w_fold_manual
= TRUE
;
2613 fp
->fd_flags
= FD_OPEN
;
2617 fp
->fd_flags
= topflags
;
2618 if (topflags
!= FD_LEVEL
)
2619 flp
->wp
->w_fold_manual
= TRUE
;
2622 fp
->fd_flags
= (fp
- 1)->fd_flags
;
2623 fp
->fd_small
= MAYBE
;
2624 /* If using the "marker", "expr" or "syntax" method, we
2625 * need to continue until the end of the fold is found. */
2626 if (getlevel
== foldlevelMarker
2627 || getlevel
== foldlevelExpr
2628 || getlevel
== foldlevelSyntax
)
2630 fold_changed
= TRUE
;
2636 if (lvl
< level
|| flp
->lnum
> linecount
)
2639 * Found a line with a lower foldlevel, this fold ends just above
2646 * The fold includes the line "flp->lnum" and "flp->lnum_save".
2647 * Check "fp" for safety.
2649 if (lvl
> level
&& fp
!= NULL
)
2652 * There is a nested fold, handle it recursively.
2654 /* At least do one line (can happen when finish is TRUE). */
2655 if (bot
< flp
->lnum
)
2658 /* Line numbers in the nested fold are relative to the start of
2660 flp
->lnum
= flp
->lnum_save
- fp
->fd_top
;
2661 flp
->off
+= fp
->fd_top
;
2662 i
= (int)(fp
- (fold_T
*)gap
->ga_data
);
2663 bot
= foldUpdateIEMSRecurse(&fp
->fd_nested
, level
+ 1,
2664 startlnum2
- fp
->fd_top
, flp
, getlevel
,
2665 bot
- fp
->fd_top
, fp
->fd_flags
);
2666 fp
= (fold_T
*)gap
->ga_data
+ i
;
2667 flp
->lnum
+= fp
->fd_top
;
2668 flp
->lnum_save
+= fp
->fd_top
;
2669 flp
->off
-= fp
->fd_top
;
2671 startlnum2
= flp
->lnum
;
2673 /* This fold may end at the same line, don't incr. flp->lnum. */
2678 * Get the level of the next line, then continue the loop to check
2680 * Skip over undefined lines, to find the foldlevel after it.
2681 * For the last line in the file the foldlevel is always valid.
2683 flp
->lnum
= flp
->lnum_save
;
2687 /* Make the previous level available to foldlevel(). */
2688 prev_lnum
= flp
->lnum
;
2689 prev_lnum_lvl
= flp
->lvl
;
2691 if (++flp
->lnum
> linecount
)
2693 flp
->lvl
= flp
->lvl_next
;
2695 if (flp
->lvl
>= 0 || flp
->had_end
<= MAX_LEVEL
)
2699 if (flp
->lnum
> linecount
)
2702 /* leave flp->lnum_save to lnum of the line that was used to get
2703 * the level, flp->lnum to the lnum of the next line. */
2704 flp
->lnum_save
= flp
->lnum
;
2709 if (fp
== NULL
) /* only happens when got_int is set */
2714 * lvl < level: the folds ends just above "flp->lnum"
2715 * lvl >= level: fold continues below "bot"
2718 /* Current fold at least extends until lnum. */
2719 if (fp
->fd_len
< flp
->lnum
- fp
->fd_top
)
2721 fp
->fd_len
= flp
->lnum
- fp
->fd_top
;
2722 fp
->fd_small
= MAYBE
;
2723 fold_changed
= TRUE
;
2726 /* Delete contained folds from the end of the last one found until where
2727 * we stopped looking. */
2728 foldRemove(&fp
->fd_nested
, startlnum2
- fp
->fd_top
,
2729 flp
->lnum
- 1 - fp
->fd_top
);
2733 /* End of fold found, update the length when it got shorter. */
2734 if (fp
->fd_len
!= flp
->lnum
- fp
->fd_top
)
2736 if (fp
->fd_top
+ fp
->fd_len
> bot
+ 1)
2738 /* fold continued below bot */
2739 if (getlevel
== foldlevelMarker
2740 || getlevel
== foldlevelExpr
2741 || getlevel
== foldlevelSyntax
)
2743 /* marker method: truncate the fold and make sure the
2744 * previously included lines are processed again */
2745 bot
= fp
->fd_top
+ fp
->fd_len
- 1;
2746 fp
->fd_len
= flp
->lnum
- fp
->fd_top
;
2750 /* indent or expr method: split fold to create a new one
2752 i
= (int)(fp
- (fold_T
*)gap
->ga_data
);
2753 foldSplit(gap
, i
, flp
->lnum
, bot
);
2754 fp
= (fold_T
*)gap
->ga_data
+ i
;
2758 fp
->fd_len
= flp
->lnum
- fp
->fd_top
;
2759 fold_changed
= TRUE
;
2763 /* delete following folds that end before the current line */
2767 if (fp2
>= (fold_T
*)gap
->ga_data
+ gap
->ga_len
2768 || fp2
->fd_top
> flp
->lnum
)
2770 if (fp2
->fd_top
+ fp2
->fd_len
> flp
->lnum
)
2772 if (fp2
->fd_top
< flp
->lnum
)
2774 /* Make fold that includes lnum start at lnum. */
2775 foldMarkAdjustRecurse(&fp2
->fd_nested
,
2776 (linenr_T
)0, (long)(flp
->lnum
- fp2
->fd_top
- 1),
2777 (linenr_T
)MAXLNUM
, (long)(fp2
->fd_top
- flp
->lnum
));
2778 fp2
->fd_len
-= flp
->lnum
- fp2
->fd_top
;
2779 fp2
->fd_top
= flp
->lnum
;
2780 fold_changed
= TRUE
;
2785 /* merge new fold with existing fold that follows */
2786 foldMerge(fp
, gap
, fp2
);
2790 fold_changed
= TRUE
;
2791 deleteFoldEntry(gap
, (int)(fp2
- (fold_T
*)gap
->ga_data
), TRUE
);
2794 /* Need to redraw the lines we inspected, which might be further down than
2796 if (bot
< flp
->lnum
- 1)
2797 bot
= flp
->lnum
- 1;
2802 /* foldInsert() {{{2 */
2804 * Insert a new fold in "gap" at position "i".
2805 * Returns OK for success, FAIL for failure.
2814 if (ga_grow(gap
, 1) != OK
)
2816 fp
= (fold_T
*)gap
->ga_data
+ i
;
2817 if (i
< gap
->ga_len
)
2818 mch_memmove(fp
+ 1, fp
, sizeof(fold_T
) * (gap
->ga_len
- i
));
2820 ga_init2(&fp
->fd_nested
, (int)sizeof(fold_T
), 10);
2824 /* foldSplit() {{{2 */
2826 * Split the "i"th fold in "gap", which starts before "top" and ends below
2827 * "bot" in two pieces, one ending above "top" and the other starting below
2829 * The caller must first have taken care of any nested folds from "top" to
2833 foldSplit(gap
, i
, top
, bot
)
2846 /* The fold continues below bot, need to split it. */
2847 if (foldInsert(gap
, i
+ 1) == FAIL
)
2849 fp
= (fold_T
*)gap
->ga_data
+ i
;
2850 fp
[1].fd_top
= bot
+ 1;
2851 fp
[1].fd_len
= fp
->fd_len
- (fp
[1].fd_top
- fp
->fd_top
);
2852 fp
[1].fd_flags
= fp
->fd_flags
;
2853 fp
[1].fd_small
= MAYBE
;
2854 fp
->fd_small
= MAYBE
;
2856 /* Move nested folds below bot to new fold. There can't be
2857 * any between top and bot, they have been removed by the caller. */
2858 gap1
= &fp
->fd_nested
;
2859 gap2
= &fp
[1].fd_nested
;
2860 (void)(foldFind(gap1
, bot
+ 1 - fp
->fd_top
, &fp2
));
2861 len
= (int)((fold_T
*)gap1
->ga_data
+ gap1
->ga_len
- fp2
);
2862 if (len
> 0 && ga_grow(gap2
, len
) == OK
)
2864 for (idx
= 0; idx
< len
; ++idx
)
2866 ((fold_T
*)gap2
->ga_data
)[idx
] = fp2
[idx
];
2867 ((fold_T
*)gap2
->ga_data
)[idx
].fd_top
2868 -= fp
[1].fd_top
- fp
->fd_top
;
2871 gap1
->ga_len
-= len
;
2873 fp
->fd_len
= top
- fp
->fd_top
;
2874 fold_changed
= TRUE
;
2877 /* foldRemove() {{{2 */
2879 * Remove folds within the range "top" to and including "bot".
2880 * Check for these situations:
2890 * 2: truncate to stop above "top"
2891 * 3: split in two parts, one stops above "top", other starts below "bot".
2893 * 5: made to start below "bot".
2897 foldRemove(gap
, top
, bot
)
2905 return; /* nothing to do */
2909 /* Find fold that includes top or a following one. */
2910 if (foldFind(gap
, top
, &fp
) && fp
->fd_top
< top
)
2912 /* 2: or 3: need to delete nested folds */
2913 foldRemove(&fp
->fd_nested
, top
- fp
->fd_top
, bot
- fp
->fd_top
);
2914 if (fp
->fd_top
+ fp
->fd_len
> bot
+ 1)
2916 /* 3: need to split it. */
2917 foldSplit(gap
, (int)(fp
- (fold_T
*)gap
->ga_data
), top
, bot
);
2921 /* 2: truncate fold at "top". */
2922 fp
->fd_len
= top
- fp
->fd_top
;
2924 fold_changed
= TRUE
;
2927 if (fp
>= (fold_T
*)(gap
->ga_data
) + gap
->ga_len
2928 || fp
->fd_top
> bot
)
2930 /* 6: Found a fold below bot, can stop looking. */
2933 if (fp
->fd_top
>= top
)
2935 /* Found an entry below top. */
2936 fold_changed
= TRUE
;
2937 if (fp
->fd_top
+ fp
->fd_len
- 1 > bot
)
2939 /* 5: Make fold that includes bot start below bot. */
2940 foldMarkAdjustRecurse(&fp
->fd_nested
,
2941 (linenr_T
)0, (long)(bot
- fp
->fd_top
),
2942 (linenr_T
)MAXLNUM
, (long)(fp
->fd_top
- bot
- 1));
2943 fp
->fd_len
-= bot
- fp
->fd_top
+ 1;
2944 fp
->fd_top
= bot
+ 1;
2948 /* 4: Delete completely contained fold. */
2949 deleteFoldEntry(gap
, (int)(fp
- (fold_T
*)gap
->ga_data
), TRUE
);
2954 /* foldMerge() {{{2 */
2956 * Merge two adjacent folds (and the nested ones in them).
2957 * This only works correctly when the folds are really adjacent! Thus "fp1"
2958 * must end just above "fp2".
2959 * The resulting fold is "fp1", nested folds are moved from "fp2" to "fp1".
2960 * Fold entry "fp2" in "gap" is deleted.
2963 foldMerge(fp1
, gap
, fp2
)
2971 garray_T
*gap1
= &fp1
->fd_nested
;
2972 garray_T
*gap2
= &fp2
->fd_nested
;
2974 /* If the last nested fold in fp1 touches the first nested fold in fp2,
2975 * merge them recursively. */
2976 if (foldFind(gap1
, fp1
->fd_len
- 1L, &fp3
) && foldFind(gap2
, 0L, &fp4
))
2977 foldMerge(fp3
, gap2
, fp4
);
2979 /* Move nested folds in fp2 to the end of fp1. */
2980 if (gap2
->ga_len
> 0 && ga_grow(gap1
, gap2
->ga_len
) == OK
)
2982 for (idx
= 0; idx
< gap2
->ga_len
; ++idx
)
2984 ((fold_T
*)gap1
->ga_data
)[gap1
->ga_len
]
2985 = ((fold_T
*)gap2
->ga_data
)[idx
];
2986 ((fold_T
*)gap1
->ga_data
)[gap1
->ga_len
].fd_top
+= fp1
->fd_len
;
2992 fp1
->fd_len
+= fp2
->fd_len
;
2993 deleteFoldEntry(gap
, (int)(fp2
- (fold_T
*)gap
->ga_data
), TRUE
);
2994 fold_changed
= TRUE
;
2997 /* foldlevelIndent() {{{2 */
2999 * Low level function to get the foldlevel for the "indent" method.
3000 * Doesn't use any caching.
3001 * Returns a level of -1 if the foldlevel depends on surrounding lines.
3004 foldlevelIndent(flp
)
3009 linenr_T lnum
= flp
->lnum
+ flp
->off
;
3011 buf
= flp
->wp
->w_buffer
;
3012 s
= skipwhite(ml_get_buf(buf
, lnum
, FALSE
));
3014 /* empty line or lines starting with a character in 'foldignore': level
3015 * depends on surrounding lines */
3016 if (*s
== NUL
|| vim_strchr(flp
->wp
->w_p_fdi
, *s
) != NULL
)
3018 /* first and last line can't be undefined, use level 0 */
3019 if (lnum
== 1 || lnum
== buf
->b_ml
.ml_line_count
)
3025 flp
->lvl
= get_indent_buf(buf
, lnum
) / buf
->b_p_sw
;
3026 if (flp
->lvl
> flp
->wp
->w_p_fdn
)
3028 flp
->lvl
= flp
->wp
->w_p_fdn
;
3034 /* foldlevelDiff() {{{2 */
3037 * Low level function to get the foldlevel for the "diff" method.
3038 * Doesn't use any caching.
3044 if (diff_infold(flp
->wp
, flp
->lnum
+ flp
->off
))
3051 /* foldlevelExpr() {{{2 */
3053 * Low level function to get the foldlevel for the "expr" method.
3054 * Doesn't use any caching.
3055 * Returns a level of -1 if the foldlevel depends on surrounding lines.
3068 linenr_T lnum
= flp
->lnum
+ flp
->off
;
3073 curbuf
= flp
->wp
->w_buffer
;
3074 set_vim_var_nr(VV_LNUM
, lnum
);
3077 flp
->had_end
= flp
->end
;
3078 flp
->end
= MAX_LEVEL
+ 1;
3082 /* KeyTyped may be reset to 0 when calling a function which invokes
3083 * do_cmdline(). To make 'foldopen' work correctly restore KeyTyped. */
3084 save_keytyped
= KeyTyped
;
3085 n
= eval_foldexpr(flp
->wp
->w_p_fde
, &c
);
3086 KeyTyped
= save_keytyped
;
3090 /* "a1", "a2", .. : add to the fold level */
3091 case 'a': if (flp
->lvl
>= 0)
3094 flp
->lvl_next
= flp
->lvl
;
3099 /* "s1", "s2", .. : subtract from the fold level */
3100 case 's': if (flp
->lvl
>= 0)
3105 flp
->lvl_next
= flp
->lvl
- n
;
3106 flp
->end
= flp
->lvl_next
+ 1;
3110 /* ">1", ">2", .. : start a fold with a certain level */
3111 case '>': flp
->lvl
= n
;
3116 /* "<1", "<2", .. : end a fold with a certain level */
3117 case '<': flp
->lvl_next
= n
- 1;
3121 /* "=": No change in level */
3122 case '=': flp
->lvl_next
= flp
->lvl
;
3125 /* "-1", "0", "1", ..: set fold level */
3127 /* Use the current level for the next line, so that "a1"
3128 * will work there. */
3129 flp
->lvl_next
= flp
->lvl
;
3136 /* If the level is unknown for the first or the last line in the file, use
3145 if (lnum
== curbuf
->b_ml
.ml_line_count
)
3150 curbuf
= curwin
->w_buffer
;
3154 /* parseMarker() {{{2 */
3156 * Parse 'foldmarker' and set "foldendmarker", "foldstartmarkerlen" and
3157 * "foldendmarkerlen".
3158 * Relies on the option value to have been checked for correctness already.
3164 foldendmarker
= vim_strchr(wp
->w_p_fmr
, ',');
3165 foldstartmarkerlen
= (int)(foldendmarker
++ - wp
->w_p_fmr
);
3166 foldendmarkerlen
= (int)STRLEN(foldendmarker
);
3169 /* foldlevelMarker() {{{2 */
3171 * Low level function to get the foldlevel for the "marker" method.
3172 * "foldendmarker", "foldstartmarkerlen" and "foldendmarkerlen" must have been
3173 * set before calling this.
3174 * Requires that flp->lvl is set to the fold level of the previous line!
3175 * Careful: This means you can't call this function twice on the same line.
3176 * Doesn't use any caching.
3177 * Sets flp->start when a start marker was found.
3180 foldlevelMarker(flp
)
3183 char_u
*startmarker
;
3186 int start_lvl
= flp
->lvl
;
3190 /* cache a few values for speed */
3191 startmarker
= flp
->wp
->w_p_fmr
;
3192 cstart
= *startmarker
;
3194 cend
= *foldendmarker
;
3196 /* Default: no start found, next level is same as current level */
3198 flp
->lvl_next
= flp
->lvl
;
3200 s
= ml_get_buf(flp
->wp
->w_buffer
, flp
->lnum
+ flp
->off
, FALSE
);
3204 && STRNCMP(s
+ 1, startmarker
, foldstartmarkerlen
- 1) == 0)
3206 /* found startmarker: set flp->lvl */
3207 s
+= foldstartmarkerlen
;
3208 if (VIM_ISDIGIT(*s
))
3210 n
= atoi((char *)s
);
3218 flp
->start
= n
- start_lvl
;
3229 && STRNCMP(s
+ 1, foldendmarker
+ 1, foldendmarkerlen
- 1) == 0)
3231 /* found endmarker: set flp->lvl_next */
3232 s
+= foldendmarkerlen
;
3233 if (VIM_ISDIGIT(*s
))
3235 n
= atoi((char *)s
);
3239 flp
->lvl_next
= n
- 1;
3240 /* never start a fold with an end marker */
3241 if (flp
->lvl_next
> start_lvl
)
3242 flp
->lvl_next
= start_lvl
;
3252 /* The level can't go negative, must be missing a start marker. */
3253 if (flp
->lvl_next
< 0)
3257 /* foldlevelSyntax() {{{2 */
3259 * Low level function to get the foldlevel for the "syntax" method.
3260 * Doesn't use any caching.
3263 foldlevelSyntax(flp
)
3270 linenr_T lnum
= flp
->lnum
+ flp
->off
;
3273 /* Use the maximum fold level at the start of this line and the next. */
3274 flp
->lvl
= syn_get_foldlevel(flp
->wp
, lnum
);
3276 if (lnum
< flp
->wp
->w_buffer
->b_ml
.ml_line_count
)
3278 n
= syn_get_foldlevel(flp
->wp
, lnum
+ 1);
3281 flp
->start
= n
- flp
->lvl
; /* fold(s) start here */
3288 /* functions for storing the fold state in a View {{{1 */
3289 /* put_folds() {{{2 */
3290 #if defined(FEAT_SESSION) || defined(PROTO)
3291 static int put_folds_recurse
__ARGS((FILE *fd
, garray_T
*gap
, linenr_T off
));
3292 static int put_foldopen_recurse
__ARGS((FILE *fd
, garray_T
*gap
, linenr_T off
));
3295 * Write commands to "fd" to restore the manual folds in window "wp".
3296 * Return FAIL if writing fails.
3303 if (foldmethodIsManual(wp
))
3305 if (put_line(fd
, "silent! normal! zE") == FAIL
3306 || put_folds_recurse(fd
, &wp
->w_folds
, (linenr_T
)0) == FAIL
)
3310 /* If some folds are manually opened/closed, need to restore that. */
3311 if (wp
->w_fold_manual
)
3312 return put_foldopen_recurse(fd
, &wp
->w_folds
, (linenr_T
)0);
3317 /* put_folds_recurse() {{{2 */
3319 * Write commands to "fd" to recreate manually created folds.
3320 * Returns FAIL when writing failed.
3323 put_folds_recurse(fd
, gap
, off
)
3331 fp
= (fold_T
*)gap
->ga_data
;
3332 for (i
= 0; i
< gap
->ga_len
; i
++)
3334 /* Do nested folds first, they will be created closed. */
3335 if (put_folds_recurse(fd
, &fp
->fd_nested
, off
+ fp
->fd_top
) == FAIL
)
3337 if (fprintf(fd
, "%ld,%ldfold", fp
->fd_top
+ off
,
3338 fp
->fd_top
+ off
+ fp
->fd_len
- 1) < 0
3339 || put_eol(fd
) == FAIL
)
3346 /* put_foldopen_recurse() {{{2 */
3348 * Write commands to "fd" to open and close manually opened/closed folds.
3349 * Returns FAIL when writing failed.
3352 put_foldopen_recurse(fd
, gap
, off
)
3360 fp
= (fold_T
*)gap
->ga_data
;
3361 for (i
= 0; i
< gap
->ga_len
; i
++)
3363 if (fp
->fd_flags
!= FD_LEVEL
)
3365 if (fp
->fd_nested
.ga_len
> 0)
3367 /* open/close nested folds while this fold is open */
3368 if (fprintf(fd
, "%ld", fp
->fd_top
+ off
) < 0
3369 || put_eol(fd
) == FAIL
3370 || put_line(fd
, "normal zo") == FAIL
)
3372 if (put_foldopen_recurse(fd
, &fp
->fd_nested
, off
+ fp
->fd_top
)
3376 if (fprintf(fd
, "%ld", fp
->fd_top
+ off
) < 0
3377 || put_eol(fd
) == FAIL
3378 || fprintf(fd
, "normal z%c",
3379 fp
->fd_flags
== FD_CLOSED
? 'c' : 'o') < 0
3380 || put_eol(fd
) == FAIL
)
3388 #endif /* FEAT_SESSION */
3391 #endif /* defined(FEAT_FOLDING) || defined(PROTO) */