blob: e4ae9cbc0b363924747f0680c83da38275c1432b [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 * vim600:fdm=marker fdl=1 fdc=3:
3 *
4 * VIM - Vi IMproved by Bram Moolenaar
5 *
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.
9 */
10
11/*
12 * fold.c: code for folding
13 */
14
15#include "vim.h"
16
17#if defined(FEAT_FOLDING) || defined(PROTO)
18
Bram Moolenaar217e1b82019-12-01 21:41:28 +010019// local declarations. {{{1
20// typedef fold_T {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +000021/*
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.
26 */
27typedef struct
28{
Bram Moolenaar217e1b82019-12-01 21:41:28 +010029 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
36 // folds too
Bram Moolenaar071d4272004-06-13 20:20:40 +000037} fold_T;
38
Bram Moolenaar217e1b82019-12-01 21:41:28 +010039#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)
Bram Moolenaar071d4272004-06-13 20:20:40 +000042
Bram Moolenaar217e1b82019-12-01 21:41:28 +010043#define MAX_LEVEL 20 // maximum fold depth
Bram Moolenaar071d4272004-06-13 20:20:40 +000044
Bram Moolenaar217e1b82019-12-01 21:41:28 +010045// static functions {{{2
Bram Moolenaard25c16e2016-01-29 22:13:30 +010046static void newFoldLevelWin(win_T *wp);
47static int checkCloseRec(garray_T *gap, linenr_T lnum, int level);
48static int foldFind(garray_T *gap, linenr_T lnum, fold_T **fpp);
49static int foldLevelWin(win_T *wp, linenr_T lnum);
50static void checkupdate(win_T *wp);
51static void setFoldRepeat(linenr_T lnum, long count, int do_open);
52static linenr_T setManualFold(linenr_T lnum, int opening, int recurse, int *donep);
53static linenr_T setManualFoldWin(win_T *wp, linenr_T lnum, int opening, int recurse, int *donep);
54static void foldOpenNested(fold_T *fpr);
55static void deleteFoldEntry(garray_T *gap, int idx, int recursive);
56static void foldMarkAdjustRecurse(garray_T *gap, linenr_T line1, linenr_T line2, long amount, long amount_after);
57static int getDeepestNestingRecurse(garray_T *gap);
58static int check_closed(win_T *win, fold_T *fp, int *use_levelp, int level, int *maybe_smallp, linenr_T lnum_off);
59static void checkSmall(win_T *wp, fold_T *fp, linenr_T lnum_off);
60static void setSmallMaybe(garray_T *gap);
61static void foldCreateMarkers(linenr_T start, linenr_T end);
62static void foldAddMarker(linenr_T lnum, char_u *marker, int markerlen);
63static void deleteFoldMarkers(fold_T *fp, int recursive, linenr_T lnum_off);
64static void foldDelMarker(linenr_T lnum, char_u *marker, int markerlen);
65static void foldUpdateIEMS(win_T *wp, linenr_T top, linenr_T bot);
66static void parseMarker(win_T *wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000067
68static char *e_nofold = N_("E490: No fold found");
69
70/*
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.
73 */
74static linenr_T invalid_top = (linenr_T)0;
75static linenr_T invalid_bot = (linenr_T)0;
76
77/*
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.
83 */
84static linenr_T prev_lnum = 0;
85static int prev_lnum_lvl = -1;
86
Bram Moolenaar217e1b82019-12-01 21:41:28 +010087// Flags used for "done" argument of setManualFold.
Bram Moolenaar071d4272004-06-13 20:20:40 +000088#define DONE_NOTHING 0
Bram Moolenaar217e1b82019-12-01 21:41:28 +010089#define DONE_ACTION 1 // did close or open a fold
90#define DONE_FOLD 2 // did find a fold
Bram Moolenaar071d4272004-06-13 20:20:40 +000091
92static int foldstartmarkerlen;
93static char_u *foldendmarker;
94static int foldendmarkerlen;
95
Bram Moolenaar217e1b82019-12-01 21:41:28 +010096// Exported folding functions. {{{1
97// copyFoldingState() {{{2
Bram Moolenaar4033c552017-09-16 20:54:51 +020098
Bram Moolenaar071d4272004-06-13 20:20:40 +000099/*
100 * Copy that folding state from window "wp_from" to window "wp_to".
101 */
102 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100103copyFoldingState(win_T *wp_from, win_T *wp_to)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104{
105 wp_to->w_fold_manual = wp_from->w_fold_manual;
106 wp_to->w_foldinvalid = wp_from->w_foldinvalid;
107 cloneFoldGrowArray(&wp_from->w_folds, &wp_to->w_folds);
108}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100110// hasAnyFolding() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111/*
112 * Return TRUE if there may be folded lines in the current window.
113 */
114 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100115hasAnyFolding(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116{
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100117 // very simple now, but can become more complex later
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118 return (win->w_p_fen
119 && (!foldmethodIsManual(win) || win->w_folds.ga_len > 0));
120}
121
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100122// hasFolding() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123/*
124 * Return TRUE if line "lnum" in the current window is part of a closed
125 * fold.
126 * When returning TRUE, *firstp and *lastp are set to the first and last
127 * lnum of the sequence of folded lines (skipped when NULL).
128 */
129 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100130hasFolding(linenr_T lnum, linenr_T *firstp, linenr_T *lastp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131{
132 return hasFoldingWin(curwin, lnum, firstp, lastp, TRUE, NULL);
133}
134
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100135// hasFoldingWin() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100137hasFoldingWin(
138 win_T *win,
139 linenr_T lnum,
140 linenr_T *firstp,
141 linenr_T *lastp,
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100142 int cache, // when TRUE: use cached values of window
143 foldinfo_T *infop) // where to store fold info
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144{
145 int had_folded = FALSE;
146 linenr_T first = 0;
147 linenr_T last = 0;
148 linenr_T lnum_rel = lnum;
149 int x;
150 fold_T *fp;
151 int level = 0;
152 int use_level = FALSE;
153 int maybe_small = FALSE;
154 garray_T *gap;
Bram Moolenaar945ec092016-06-08 21:17:43 +0200155 int low_level = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156
157 checkupdate(win);
Bram Moolenaar0c27cbc2018-11-14 21:45:32 +0100158
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159 /*
160 * Return quickly when there is no folding at all in this window.
161 */
162 if (!hasAnyFolding(win))
163 {
164 if (infop != NULL)
165 infop->fi_level = 0;
166 return FALSE;
167 }
168
169 if (cache)
170 {
171 /*
172 * First look in cached info for displayed lines. This is probably
173 * the fastest, but it can only be used if the entry is still valid.
174 */
175 x = find_wl_entry(win, lnum);
176 if (x >= 0)
177 {
178 first = win->w_lines[x].wl_lnum;
179 last = win->w_lines[x].wl_lastlnum;
180 had_folded = win->w_lines[x].wl_folded;
181 }
182 }
183
184 if (first == 0)
185 {
186 /*
187 * Recursively search for a fold that contains "lnum".
188 */
189 gap = &win->w_folds;
190 for (;;)
191 {
192 if (!foldFind(gap, lnum_rel, &fp))
193 break;
194
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100195 // Remember lowest level of fold that starts in "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 if (lnum_rel == fp->fd_top && low_level == 0)
197 low_level = level + 1;
198
199 first += fp->fd_top;
200 last += fp->fd_top;
201
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100202 // is this fold closed?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203 had_folded = check_closed(win, fp, &use_level, level,
204 &maybe_small, lnum - lnum_rel);
205 if (had_folded)
206 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100207 // Fold closed: Set last and quit loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208 last += fp->fd_len - 1;
209 break;
210 }
211
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100212 // Fold found, but it's open: Check nested folds. Line number is
213 // relative to containing fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214 gap = &fp->fd_nested;
215 lnum_rel -= fp->fd_top;
216 ++level;
217 }
218 }
219
220 if (!had_folded)
221 {
222 if (infop != NULL)
223 {
224 infop->fi_level = level;
225 infop->fi_lnum = lnum - lnum_rel;
226 infop->fi_low_level = low_level == 0 ? level : low_level;
227 }
228 return FALSE;
229 }
230
Bram Moolenaar05b20fb2015-04-13 20:52:36 +0200231 if (last > win->w_buffer->b_ml.ml_line_count)
232 last = win->w_buffer->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233 if (lastp != NULL)
234 *lastp = last;
235 if (firstp != NULL)
236 *firstp = first;
237 if (infop != NULL)
238 {
239 infop->fi_level = level + 1;
240 infop->fi_lnum = first;
241 infop->fi_low_level = low_level == 0 ? level + 1 : low_level;
242 }
243 return TRUE;
244}
245
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100246// foldLevel() {{{2
Bram Moolenaardb022f32019-09-01 17:52:32 +0200247#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248/*
249 * Return fold level at line number "lnum" in the current window.
250 */
Bram Moolenaardb022f32019-09-01 17:52:32 +0200251 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100252foldLevel(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253{
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100254 // While updating the folds lines between invalid_top and invalid_bot have
255 // an undefined fold level. Otherwise update the folds first.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256 if (invalid_top == (linenr_T)0)
257 checkupdate(curwin);
258 else if (lnum == prev_lnum && prev_lnum_lvl >= 0)
259 return prev_lnum_lvl;
260 else if (lnum >= invalid_top && lnum <= invalid_bot)
261 return -1;
262
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100263 // Return quickly when there is no folding at all in this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264 if (!hasAnyFolding(curwin))
265 return 0;
266
267 return foldLevelWin(curwin, lnum);
268}
Bram Moolenaardb022f32019-09-01 17:52:32 +0200269#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100271// lineFolded() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272/*
273 * Low level function to check if a line is folded. Doesn't use any caching.
274 * Return TRUE if line is folded.
275 * Return FALSE if line is not folded.
276 * Return MAYBE if the line is folded when next to a folded line.
277 */
278 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100279lineFolded(win_T *win, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280{
281 return foldedCount(win, lnum, NULL) != 0;
282}
283
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100284// foldedCount() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285/*
286 * Count the number of lines that are folded at line number "lnum".
287 * Normally "lnum" is the first line of a possible fold, and the returned
288 * number is the number of lines in the fold.
289 * Doesn't use caching from the displayed window.
290 * Returns number of folded lines from "lnum", or 0 if line is not folded.
291 * When "infop" is not NULL, fills *infop with the fold level info.
292 */
293 long
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100294foldedCount(win_T *win, linenr_T lnum, foldinfo_T *infop)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295{
296 linenr_T last;
297
298 if (hasFoldingWin(win, lnum, NULL, &last, FALSE, infop))
299 return (long)(last - lnum + 1);
300 return 0;
301}
302
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100303// foldmethodIsManual() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304/*
305 * Return TRUE if 'foldmethod' is "manual"
306 */
307 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100308foldmethodIsManual(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309{
310 return (wp->w_p_fdm[3] == 'u');
311}
312
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100313// foldmethodIsIndent() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314/*
315 * Return TRUE if 'foldmethod' is "indent"
316 */
317 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100318foldmethodIsIndent(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319{
320 return (wp->w_p_fdm[0] == 'i');
321}
322
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100323// foldmethodIsExpr() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324/*
325 * Return TRUE if 'foldmethod' is "expr"
326 */
327 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100328foldmethodIsExpr(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329{
330 return (wp->w_p_fdm[1] == 'x');
331}
332
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100333// foldmethodIsMarker() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334/*
335 * Return TRUE if 'foldmethod' is "marker"
336 */
337 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100338foldmethodIsMarker(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339{
340 return (wp->w_p_fdm[2] == 'r');
341}
342
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100343// foldmethodIsSyntax() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344/*
345 * Return TRUE if 'foldmethod' is "syntax"
346 */
347 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100348foldmethodIsSyntax(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349{
350 return (wp->w_p_fdm[0] == 's');
351}
352
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100353// foldmethodIsDiff() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354/*
355 * Return TRUE if 'foldmethod' is "diff"
356 */
357 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100358foldmethodIsDiff(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359{
360 return (wp->w_p_fdm[0] == 'd');
361}
362
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100363// closeFold() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364/*
365 * Close fold for current window at line "lnum".
366 * Repeat "count" times.
367 */
368 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100369closeFold(linenr_T lnum, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370{
371 setFoldRepeat(lnum, count, FALSE);
372}
373
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100374// closeFoldRecurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375/*
376 * Close fold for current window at line "lnum" recursively.
377 */
378 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100379closeFoldRecurse(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380{
381 (void)setManualFold(lnum, FALSE, TRUE, NULL);
382}
383
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100384// opFoldRange() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385/*
386 * Open or Close folds for current window in lines "first" to "last".
387 * Used for "zo", "zO", "zc" and "zC" in Visual mode.
388 */
389 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100390opFoldRange(
391 linenr_T first,
392 linenr_T last,
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100393 int opening, // TRUE to open, FALSE to close
394 int recurse, // TRUE to do it recursively
395 int had_visual) // TRUE when Visual selection used
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396{
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100397 int done = DONE_NOTHING; // avoid error messages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398 linenr_T lnum;
399 linenr_T lnum_next;
400
401 for (lnum = first; lnum <= last; lnum = lnum_next + 1)
402 {
403 lnum_next = lnum;
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100404 // Opening one level only: next fold to open is after the one going to
405 // be opened.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 if (opening && !recurse)
407 (void)hasFolding(lnum, NULL, &lnum_next);
408 (void)setManualFold(lnum, opening, recurse, &done);
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100409 // Closing one level only: next line to close a fold is after just
410 // closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411 if (!opening && !recurse)
412 (void)hasFolding(lnum, NULL, &lnum_next);
413 }
414 if (done == DONE_NOTHING)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100415 emsg(_(e_nofold));
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100416 // Force a redraw to remove the Visual highlighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417 if (had_visual)
418 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419}
420
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100421// openFold() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422/*
423 * Open fold for current window at line "lnum".
424 * Repeat "count" times.
425 */
426 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100427openFold(linenr_T lnum, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428{
429 setFoldRepeat(lnum, count, TRUE);
430}
431
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100432// openFoldRecurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433/*
434 * Open fold for current window at line "lnum" recursively.
435 */
436 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100437openFoldRecurse(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438{
439 (void)setManualFold(lnum, TRUE, TRUE, NULL);
440}
441
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100442// foldOpenCursor() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443/*
444 * Open folds until the cursor line is not in a closed fold.
445 */
446 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100447foldOpenCursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448{
449 int done;
450
451 checkupdate(curwin);
452 if (hasAnyFolding(curwin))
453 for (;;)
454 {
455 done = DONE_NOTHING;
456 (void)setManualFold(curwin->w_cursor.lnum, TRUE, FALSE, &done);
457 if (!(done & DONE_ACTION))
458 break;
459 }
460}
461
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100462// newFoldLevel() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463/*
464 * Set new foldlevel for current window.
465 */
466 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100467newFoldLevel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468{
469 newFoldLevelWin(curwin);
470
471#ifdef FEAT_DIFF
472 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
473 {
474 win_T *wp;
475
476 /*
477 * Set the same foldlevel in other windows in diff mode.
478 */
479 FOR_ALL_WINDOWS(wp)
480 {
481 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
482 {
483 wp->w_p_fdl = curwin->w_p_fdl;
484 newFoldLevelWin(wp);
485 }
486 }
487 }
488#endif
489}
490
491 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100492newFoldLevelWin(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493{
494 fold_T *fp;
495 int i;
496
497 checkupdate(wp);
498 if (wp->w_fold_manual)
499 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100500 // Set all flags for the first level of folds to FD_LEVEL. Following
501 // manual open/close will then change the flags to FD_OPEN or
502 // FD_CLOSED for those folds that don't use 'foldlevel'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503 fp = (fold_T *)wp->w_folds.ga_data;
504 for (i = 0; i < wp->w_folds.ga_len; ++i)
505 fp[i].fd_flags = FD_LEVEL;
506 wp->w_fold_manual = FALSE;
507 }
508 changed_window_setting_win(wp);
509}
510
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100511// foldCheckClose() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512/*
513 * Apply 'foldlevel' to all folds that don't contain the cursor.
514 */
515 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100516foldCheckClose(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517{
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100518 if (*p_fcl != NUL) // can only be "all" right now
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519 {
520 checkupdate(curwin);
521 if (checkCloseRec(&curwin->w_folds, curwin->w_cursor.lnum,
522 (int)curwin->w_p_fdl))
523 changed_window_setting();
524 }
525}
526
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100527// checkCloseRec() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000528 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100529checkCloseRec(garray_T *gap, linenr_T lnum, int level)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530{
531 fold_T *fp;
532 int retval = FALSE;
533 int i;
534
535 fp = (fold_T *)gap->ga_data;
536 for (i = 0; i < gap->ga_len; ++i)
537 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100538 // Only manually opened folds may need to be closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539 if (fp[i].fd_flags == FD_OPEN)
540 {
541 if (level <= 0 && (lnum < fp[i].fd_top
542 || lnum >= fp[i].fd_top + fp[i].fd_len))
543 {
544 fp[i].fd_flags = FD_LEVEL;
545 retval = TRUE;
546 }
547 else
548 retval |= checkCloseRec(&fp[i].fd_nested, lnum - fp[i].fd_top,
549 level - 1);
550 }
551 }
552 return retval;
553}
554
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100555// foldCreateAllowed() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556/*
557 * Return TRUE if it's allowed to manually create or delete a fold.
558 * Give an error message and return FALSE if not.
559 */
560 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100561foldManualAllowed(int create)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562{
563 if (foldmethodIsManual(curwin) || foldmethodIsMarker(curwin))
564 return TRUE;
565 if (create)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100566 emsg(_("E350: Cannot create fold with current 'foldmethod'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100568 emsg(_("E351: Cannot delete fold with current 'foldmethod'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 return FALSE;
570}
571
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100572// foldCreate() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573/*
574 * Create a fold from line "start" to line "end" (inclusive) in the current
575 * window.
576 */
577 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100578foldCreate(linenr_T start, linenr_T end)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579{
580 fold_T *fp;
581 garray_T *gap;
582 garray_T fold_ga;
583 int i, j;
584 int cont;
585 int use_level = FALSE;
586 int closed = FALSE;
587 int level = 0;
588 linenr_T start_rel = start;
589 linenr_T end_rel = end;
590
591 if (start > end)
592 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100593 // reverse the range
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594 end = start_rel;
595 start = end_rel;
596 start_rel = start;
597 end_rel = end;
598 }
599
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100600 // When 'foldmethod' is "marker" add markers, which creates the folds.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 if (foldmethodIsMarker(curwin))
602 {
603 foldCreateMarkers(start, end);
604 return;
605 }
606
607 checkupdate(curwin);
608
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100609 // Find the place to insert the new fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610 gap = &curwin->w_folds;
611 for (;;)
612 {
613 if (!foldFind(gap, start_rel, &fp))
614 break;
615 if (fp->fd_top + fp->fd_len > end_rel)
616 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100617 // New fold is completely inside this fold: Go one level deeper.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618 gap = &fp->fd_nested;
619 start_rel -= fp->fd_top;
620 end_rel -= fp->fd_top;
621 if (use_level || fp->fd_flags == FD_LEVEL)
622 {
623 use_level = TRUE;
624 if (level >= curwin->w_p_fdl)
625 closed = TRUE;
626 }
627 else if (fp->fd_flags == FD_CLOSED)
628 closed = TRUE;
629 ++level;
630 }
631 else
632 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100633 // This fold and new fold overlap: Insert here and move some folds
634 // inside the new fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635 break;
636 }
637 }
638
639 i = (int)(fp - (fold_T *)gap->ga_data);
640 if (ga_grow(gap, 1) == OK)
641 {
642 fp = (fold_T *)gap->ga_data + i;
643 ga_init2(&fold_ga, (int)sizeof(fold_T), 10);
644
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100645 // Count number of folds that will be contained in the new fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 for (cont = 0; i + cont < gap->ga_len; ++cont)
647 if (fp[cont].fd_top > end_rel)
648 break;
649 if (cont > 0 && ga_grow(&fold_ga, cont) == OK)
650 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100651 // If the first fold starts before the new fold, let the new fold
652 // start there. Otherwise the existing fold would change.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 if (start_rel > fp->fd_top)
654 start_rel = fp->fd_top;
655
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100656 // When last contained fold isn't completely contained, adjust end
657 // of new fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658 if (end_rel < fp[cont - 1].fd_top + fp[cont - 1].fd_len - 1)
659 end_rel = fp[cont - 1].fd_top + fp[cont - 1].fd_len - 1;
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100660 // Move contained folds to inside new fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661 mch_memmove(fold_ga.ga_data, fp, sizeof(fold_T) * cont);
662 fold_ga.ga_len += cont;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663 i += cont;
664
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100665 // Adjust line numbers in contained folds to be relative to the
666 // new fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667 for (j = 0; j < cont; ++j)
668 ((fold_T *)fold_ga.ga_data)[j].fd_top -= start_rel;
669 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100670 // Move remaining entries to after the new fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671 if (i < gap->ga_len)
672 mch_memmove(fp + 1, (fold_T *)gap->ga_data + i,
673 sizeof(fold_T) * (gap->ga_len - i));
674 gap->ga_len = gap->ga_len + 1 - cont;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100676 // insert new fold
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677 fp->fd_nested = fold_ga;
678 fp->fd_top = start_rel;
679 fp->fd_len = end_rel - start_rel + 1;
680
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100681 // We want the new fold to be closed. If it would remain open because
682 // of using 'foldlevel', need to adjust fd_flags of containing folds.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683 if (use_level && !closed && level < curwin->w_p_fdl)
684 closeFold(start, 1L);
685 if (!use_level)
686 curwin->w_fold_manual = TRUE;
687 fp->fd_flags = FD_CLOSED;
688 fp->fd_small = MAYBE;
689
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100690 // redraw
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 changed_window_setting();
692 }
693}
694
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100695// deleteFold() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696/*
697 * Delete a fold at line "start" in the current window.
698 * When "end" is not 0, delete all folds from "start" to "end".
699 * When "recursive" is TRUE delete recursively.
700 */
701 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100702deleteFold(
703 linenr_T start,
704 linenr_T end,
705 int recursive,
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100706 int had_visual) // TRUE when Visual selection used
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707{
708 garray_T *gap;
709 fold_T *fp;
710 garray_T *found_ga;
711 fold_T *found_fp = NULL;
712 linenr_T found_off = 0;
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000713 int use_level;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714 int maybe_small = FALSE;
715 int level = 0;
716 linenr_T lnum = start;
717 linenr_T lnum_off;
718 int did_one = FALSE;
719 linenr_T first_lnum = MAXLNUM;
720 linenr_T last_lnum = 0;
721
722 checkupdate(curwin);
723
724 while (lnum <= end)
725 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100726 // Find the deepest fold for "start".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727 gap = &curwin->w_folds;
728 found_ga = NULL;
729 lnum_off = 0;
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000730 use_level = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731 for (;;)
732 {
733 if (!foldFind(gap, lnum - lnum_off, &fp))
734 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100735 // lnum is inside this fold, remember info
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 found_ga = gap;
737 found_fp = fp;
738 found_off = lnum_off;
739
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100740 // if "lnum" is folded, don't check nesting
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741 if (check_closed(curwin, fp, &use_level, level,
742 &maybe_small, lnum_off))
743 break;
744
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100745 // check nested folds
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 gap = &fp->fd_nested;
747 lnum_off += fp->fd_top;
748 ++level;
749 }
750 if (found_ga == NULL)
751 {
752 ++lnum;
753 }
754 else
755 {
756 lnum = found_fp->fd_top + found_fp->fd_len + found_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757
758 if (foldmethodIsManual(curwin))
759 deleteFoldEntry(found_ga,
760 (int)(found_fp - (fold_T *)found_ga->ga_data), recursive);
761 else
762 {
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000763 if (first_lnum > found_fp->fd_top + found_off)
764 first_lnum = found_fp->fd_top + found_off;
765 if (last_lnum < lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 last_lnum = lnum;
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000767 if (!did_one)
768 parseMarker(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 deleteFoldMarkers(found_fp, recursive, found_off);
770 }
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000771 did_one = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100773 // redraw window
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774 changed_window_setting();
775 }
776 }
777 if (!did_one)
778 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100779 emsg(_(e_nofold));
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100780 // Force a redraw to remove the Visual highlighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 if (had_visual)
782 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783 }
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000784 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100785 // Deleting markers may make cursor column invalid.
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000786 check_cursor_col();
787
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 if (last_lnum > 0)
789 changed_lines(first_lnum, (colnr_T)0, last_lnum, 0L);
790}
791
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100792// clearFolding() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793/*
794 * Remove all folding for window "win".
795 */
796 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100797clearFolding(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798{
799 deleteFoldRecurse(&win->w_folds);
800 win->w_foldinvalid = FALSE;
801}
802
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100803// foldUpdate() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804/*
805 * Update folds for changes in the buffer of a window.
806 * Note that inserted/deleted lines must have already been taken care of by
807 * calling foldMarkAdjust().
808 * The changes in lines from top to bot (inclusive).
809 */
810 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100811foldUpdate(win_T *wp, linenr_T top, linenr_T bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812{
813 fold_T *fp;
814
Bram Moolenaar429fcfb2016-04-14 16:22:04 +0200815 if (disable_fold_update > 0)
816 return;
Bram Moolenaar4f57eef2019-08-24 20:54:19 +0200817#ifdef FEAT_DIFF
818 if (need_diff_redraw)
819 // will update later
820 return;
821#endif
Bram Moolenaar429fcfb2016-04-14 16:22:04 +0200822
Bram Moolenaar64f37d32020-08-31 19:58:13 +0200823 if (wp->w_folds.ga_len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 {
Bram Moolenaar64f37d32020-08-31 19:58:13 +0200825 // Mark all folds from top to bot as maybe-small.
826 (void)foldFind(&wp->w_folds, top, &fp);
827 while (fp < (fold_T *)wp->w_folds.ga_data + wp->w_folds.ga_len
828 && fp->fd_top < bot)
829 {
830 fp->fd_small = MAYBE;
831 ++fp;
832 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 }
834
835 if (foldmethodIsIndent(wp)
836 || foldmethodIsExpr(wp)
837 || foldmethodIsMarker(wp)
838#ifdef FEAT_DIFF
839 || foldmethodIsDiff(wp)
840#endif
841 || foldmethodIsSyntax(wp))
Bram Moolenaarfa6d5af2007-10-14 13:33:20 +0000842 {
843 int save_got_int = got_int;
844
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100845 // reset got_int here, otherwise it won't work
Bram Moolenaarfa6d5af2007-10-14 13:33:20 +0000846 got_int = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 foldUpdateIEMS(wp, top, bot);
Bram Moolenaarfa6d5af2007-10-14 13:33:20 +0000848 got_int |= save_got_int;
849 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850}
851
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100852// foldUpdateAll() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853/*
854 * Update all lines in a window for folding.
855 * Used when a fold setting changes or after reloading the buffer.
856 * The actual updating is postponed until fold info is used, to avoid doing
857 * every time a setting is changed or a syntax item is added.
858 */
859 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100860foldUpdateAll(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861{
862 win->w_foldinvalid = TRUE;
863 redraw_win_later(win, NOT_VALID);
864}
865
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100866// foldMoveTo() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867/*
868 * If "updown" is FALSE: Move to the start or end of the fold.
869 * If "updown" is TRUE: move to fold at the same level.
870 * If not moved return FAIL.
871 */
872 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100873foldMoveTo(
874 int updown,
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100875 int dir, // FORWARD or BACKWARD
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100876 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877{
878 long n;
879 int retval = FAIL;
880 linenr_T lnum_off;
881 linenr_T lnum_found;
882 linenr_T lnum;
883 int use_level;
884 int maybe_small;
885 garray_T *gap;
886 fold_T *fp;
887 int level;
888 int last;
889
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000890 checkupdate(curwin);
891
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100892 // Repeat "count" times.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 for (n = 0; n < count; ++n)
894 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100895 // Find nested folds. Stop when a fold is closed. The deepest fold
896 // that moves the cursor is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 lnum_off = 0;
898 gap = &curwin->w_folds;
899 use_level = FALSE;
900 maybe_small = FALSE;
901 lnum_found = curwin->w_cursor.lnum;
902 level = 0;
903 last = FALSE;
904 for (;;)
905 {
906 if (!foldFind(gap, curwin->w_cursor.lnum - lnum_off, &fp))
907 {
908 if (!updown)
909 break;
910
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100911 // When moving up, consider a fold above the cursor; when
912 // moving down consider a fold below the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 if (dir == FORWARD)
914 {
915 if (fp - (fold_T *)gap->ga_data >= gap->ga_len)
916 break;
917 --fp;
918 }
919 else
920 {
921 if (fp == (fold_T *)gap->ga_data)
922 break;
923 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100924 // don't look for contained folds, they will always move
925 // the cursor too far.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 last = TRUE;
927 }
928
929 if (!last)
930 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100931 // Check if this fold is closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 if (check_closed(curwin, fp, &use_level, level,
933 &maybe_small, lnum_off))
934 last = TRUE;
935
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100936 // "[z" and "]z" stop at closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937 if (last && !updown)
938 break;
939 }
940
941 if (updown)
942 {
943 if (dir == FORWARD)
944 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100945 // to start of next fold if there is one
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 if (fp + 1 - (fold_T *)gap->ga_data < gap->ga_len)
947 {
948 lnum = fp[1].fd_top + lnum_off;
949 if (lnum > curwin->w_cursor.lnum)
950 lnum_found = lnum;
951 }
952 }
953 else
954 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100955 // to end of previous fold if there is one
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956 if (fp > (fold_T *)gap->ga_data)
957 {
958 lnum = fp[-1].fd_top + lnum_off + fp[-1].fd_len - 1;
959 if (lnum < curwin->w_cursor.lnum)
960 lnum_found = lnum;
961 }
962 }
963 }
964 else
965 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100966 // Open fold found, set cursor to its start/end and then check
967 // nested folds.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 if (dir == FORWARD)
969 {
970 lnum = fp->fd_top + lnum_off + fp->fd_len - 1;
971 if (lnum > curwin->w_cursor.lnum)
972 lnum_found = lnum;
973 }
974 else
975 {
976 lnum = fp->fd_top + lnum_off;
977 if (lnum < curwin->w_cursor.lnum)
978 lnum_found = lnum;
979 }
980 }
981
982 if (last)
983 break;
984
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100985 // Check nested folds (if any).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986 gap = &fp->fd_nested;
987 lnum_off += fp->fd_top;
988 ++level;
989 }
990 if (lnum_found != curwin->w_cursor.lnum)
991 {
992 if (retval == FAIL)
993 setpcmark();
994 curwin->w_cursor.lnum = lnum_found;
995 curwin->w_cursor.col = 0;
996 retval = OK;
997 }
998 else
999 break;
1000 }
1001
1002 return retval;
1003}
1004
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001005// foldInitWin() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006/*
1007 * Init the fold info in a new window.
1008 */
1009 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001010foldInitWin(win_T *new_win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011{
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001012 ga_init2(&new_win->w_folds, (int)sizeof(fold_T), 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013}
1014
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001015// find_wl_entry() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016/*
1017 * Find an entry in the win->w_lines[] array for buffer line "lnum".
1018 * Only valid entries are considered (for entries where wl_valid is FALSE the
1019 * line number can be wrong).
1020 * Returns index of entry or -1 if not found.
1021 */
1022 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001023find_wl_entry(win_T *win, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024{
1025 int i;
1026
Bram Moolenaar08bb82e2010-03-17 16:45:12 +01001027 for (i = 0; i < win->w_lines_valid; ++i)
1028 if (win->w_lines[i].wl_valid)
1029 {
1030 if (lnum < win->w_lines[i].wl_lnum)
1031 return -1;
1032 if (lnum <= win->w_lines[i].wl_lastlnum)
1033 return i;
1034 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 return -1;
1036}
1037
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001038// foldAdjustVisual() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039/*
1040 * Adjust the Visual area to include any fold at the start or end completely.
1041 */
1042 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001043foldAdjustVisual(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044{
1045 pos_T *start, *end;
1046 char_u *ptr;
1047
1048 if (!VIsual_active || !hasAnyFolding(curwin))
1049 return;
1050
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001051 if (LTOREQ_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052 {
1053 start = &VIsual;
1054 end = &curwin->w_cursor;
1055 }
1056 else
1057 {
1058 start = &curwin->w_cursor;
1059 end = &VIsual;
1060 }
1061 if (hasFolding(start->lnum, &start->lnum, NULL))
1062 start->col = 0;
1063 if (hasFolding(end->lnum, NULL, &end->lnum))
1064 {
1065 ptr = ml_get(end->lnum);
1066 end->col = (colnr_T)STRLEN(ptr);
1067 if (end->col > 0 && *p_sel == 'o')
1068 --end->col;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001069 // prevent cursor from moving on the trail byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070 if (has_mbyte)
1071 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072 }
1073}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001075// cursor_foldstart() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076/*
1077 * Move the cursor to the first line of a closed fold.
1078 */
1079 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001080foldAdjustCursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081{
1082 (void)hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL);
1083}
1084
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001085// Internal functions for "fold_T" {{{1
1086// cloneFoldGrowArray() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087/*
1088 * Will "clone" (i.e deep copy) a garray_T of folds.
1089 *
1090 * Return FAIL if the operation cannot be completed, otherwise OK.
1091 */
1092 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001093cloneFoldGrowArray(garray_T *from, garray_T *to)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094{
1095 int i;
1096 fold_T *from_p;
1097 fold_T *to_p;
1098
1099 ga_init2(to, from->ga_itemsize, from->ga_growsize);
1100 if (from->ga_len == 0 || ga_grow(to, from->ga_len) == FAIL)
1101 return;
1102
1103 from_p = (fold_T *)from->ga_data;
1104 to_p = (fold_T *)to->ga_data;
1105
1106 for (i = 0; i < from->ga_len; i++)
1107 {
1108 to_p->fd_top = from_p->fd_top;
1109 to_p->fd_len = from_p->fd_len;
1110 to_p->fd_flags = from_p->fd_flags;
1111 to_p->fd_small = from_p->fd_small;
1112 cloneFoldGrowArray(&from_p->fd_nested, &to_p->fd_nested);
1113 ++to->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 ++from_p;
1115 ++to_p;
1116 }
1117}
1118
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001119// foldFind() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120/*
1121 * Search for line "lnum" in folds of growarray "gap".
1122 * Set *fpp to the fold struct for the fold that contains "lnum" or
1123 * the first fold below it (careful: it can be beyond the end of the array!).
1124 * Returns FALSE when there is no fold that contains "lnum".
1125 */
1126 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001127foldFind(garray_T *gap, linenr_T lnum, fold_T **fpp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128{
1129 linenr_T low, high;
1130 fold_T *fp;
1131 int i;
1132
Bram Moolenaar64f37d32020-08-31 19:58:13 +02001133 if (gap->ga_len == 0)
1134 {
1135 *fpp = NULL;
1136 return FALSE;
1137 }
1138
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139 /*
1140 * Perform a binary search.
1141 * "low" is lowest index of possible match.
1142 * "high" is highest index of possible match.
1143 */
1144 fp = (fold_T *)gap->ga_data;
1145 low = 0;
1146 high = gap->ga_len - 1;
1147 while (low <= high)
1148 {
1149 i = (low + high) / 2;
1150 if (fp[i].fd_top > lnum)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001151 // fold below lnum, adjust high
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 high = i - 1;
1153 else if (fp[i].fd_top + fp[i].fd_len <= lnum)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001154 // fold above lnum, adjust low
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 low = i + 1;
1156 else
1157 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001158 // lnum is inside this fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 *fpp = fp + i;
1160 return TRUE;
1161 }
1162 }
1163 *fpp = fp + low;
1164 return FALSE;
1165}
1166
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001167// foldLevelWin() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168/*
1169 * Return fold level at line number "lnum" in window "wp".
1170 */
1171 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001172foldLevelWin(win_T *wp, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173{
1174 fold_T *fp;
1175 linenr_T lnum_rel = lnum;
1176 int level = 0;
1177 garray_T *gap;
1178
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001179 // Recursively search for a fold that contains "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180 gap = &wp->w_folds;
1181 for (;;)
1182 {
1183 if (!foldFind(gap, lnum_rel, &fp))
1184 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001185 // Check nested folds. Line number is relative to containing fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 gap = &fp->fd_nested;
1187 lnum_rel -= fp->fd_top;
1188 ++level;
1189 }
1190
1191 return level;
1192}
1193
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001194// checkupdate() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195/*
1196 * Check if the folds in window "wp" are invalid and update them if needed.
1197 */
1198 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001199checkupdate(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200{
1201 if (wp->w_foldinvalid)
1202 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001203 foldUpdate(wp, (linenr_T)1, (linenr_T)MAXLNUM); // will update all
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 wp->w_foldinvalid = FALSE;
1205 }
1206}
1207
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001208// setFoldRepeat() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209/*
1210 * Open or close fold for current window at line "lnum".
1211 * Repeat "count" times.
1212 */
1213 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001214setFoldRepeat(linenr_T lnum, long count, int do_open)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215{
1216 int done;
1217 long n;
1218
1219 for (n = 0; n < count; ++n)
1220 {
1221 done = DONE_NOTHING;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00001222 (void)setManualFold(lnum, do_open, FALSE, &done);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 if (!(done & DONE_ACTION))
1224 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001225 // Only give an error message when no fold could be opened.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 if (n == 0 && !(done & DONE_FOLD))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001227 emsg(_(e_nofold));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 break;
1229 }
1230 }
1231}
1232
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001233// setManualFold() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234/*
1235 * Open or close the fold in the current window which contains "lnum".
1236 * Also does this for other windows in diff mode when needed.
1237 */
1238 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001239setManualFold(
1240 linenr_T lnum,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001241 int opening, // TRUE when opening, FALSE when closing
1242 int recurse, // TRUE when closing/opening recursive
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001243 int *donep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244{
1245#ifdef FEAT_DIFF
1246 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
1247 {
1248 win_T *wp;
1249 linenr_T dlnum;
1250
1251 /*
1252 * Do the same operation in other windows in diff mode. Calculate the
1253 * line number from the diffs.
1254 */
1255 FOR_ALL_WINDOWS(wp)
1256 {
1257 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
1258 {
1259 dlnum = diff_lnum_win(curwin->w_cursor.lnum, wp);
1260 if (dlnum != 0)
1261 (void)setManualFoldWin(wp, dlnum, opening, recurse, NULL);
1262 }
1263 }
1264 }
1265#endif
1266
1267 return setManualFoldWin(curwin, lnum, opening, recurse, donep);
1268}
1269
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001270// setManualFoldWin() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271/*
1272 * Open or close the fold in window "wp" which contains "lnum".
1273 * "donep", when not NULL, points to flag that is set to DONE_FOLD when some
1274 * fold was found and to DONE_ACTION when some fold was opened or closed.
1275 * When "donep" is NULL give an error message when no fold was found for
1276 * "lnum", but only if "wp" is "curwin".
1277 * Return the line number of the next line that could be closed.
1278 * It's only valid when "opening" is TRUE!
1279 */
1280 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001281setManualFoldWin(
1282 win_T *wp,
1283 linenr_T lnum,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001284 int opening, // TRUE when opening, FALSE when closing
1285 int recurse, // TRUE when closing/opening recursive
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001286 int *donep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287{
1288 fold_T *fp;
1289 fold_T *fp2;
1290 fold_T *found = NULL;
1291 int j;
1292 int level = 0;
1293 int use_level = FALSE;
1294 int found_fold = FALSE;
1295 garray_T *gap;
1296 linenr_T next = MAXLNUM;
1297 linenr_T off = 0;
1298 int done = 0;
1299
1300 checkupdate(wp);
1301
1302 /*
1303 * Find the fold, open or close it.
1304 */
1305 gap = &wp->w_folds;
1306 for (;;)
1307 {
1308 if (!foldFind(gap, lnum, &fp))
1309 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001310 // If there is a following fold, continue there next time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 if (fp < (fold_T *)gap->ga_data + gap->ga_len)
1312 next = fp->fd_top + off;
1313 break;
1314 }
1315
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001316 // lnum is inside this fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 found_fold = TRUE;
1318
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001319 // If there is a following fold, continue there next time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 if (fp + 1 < (fold_T *)gap->ga_data + gap->ga_len)
1321 next = fp[1].fd_top + off;
1322
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001323 // Change from level-dependent folding to manual.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 if (use_level || fp->fd_flags == FD_LEVEL)
1325 {
1326 use_level = TRUE;
1327 if (level >= wp->w_p_fdl)
1328 fp->fd_flags = FD_CLOSED;
1329 else
1330 fp->fd_flags = FD_OPEN;
1331 fp2 = (fold_T *)fp->fd_nested.ga_data;
1332 for (j = 0; j < fp->fd_nested.ga_len; ++j)
1333 fp2[j].fd_flags = FD_LEVEL;
1334 }
1335
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001336 // Simple case: Close recursively means closing the fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 if (!opening && recurse)
1338 {
1339 if (fp->fd_flags != FD_CLOSED)
1340 {
1341 done |= DONE_ACTION;
1342 fp->fd_flags = FD_CLOSED;
1343 }
1344 }
1345 else if (fp->fd_flags == FD_CLOSED)
1346 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001347 // When opening, open topmost closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 if (opening)
1349 {
1350 fp->fd_flags = FD_OPEN;
1351 done |= DONE_ACTION;
1352 if (recurse)
1353 foldOpenNested(fp);
1354 }
1355 break;
1356 }
1357
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001358 // fold is open, check nested folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 found = fp;
1360 gap = &fp->fd_nested;
1361 lnum -= fp->fd_top;
1362 off += fp->fd_top;
1363 ++level;
1364 }
1365 if (found_fold)
1366 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001367 // When closing and not recurse, close deepest open fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 if (!opening && found != NULL)
1369 {
1370 found->fd_flags = FD_CLOSED;
1371 done |= DONE_ACTION;
1372 }
1373 wp->w_fold_manual = TRUE;
1374 if (done & DONE_ACTION)
1375 changed_window_setting_win(wp);
1376 done |= DONE_FOLD;
1377 }
1378 else if (donep == NULL && wp == curwin)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001379 emsg(_(e_nofold));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380
1381 if (donep != NULL)
1382 *donep |= done;
1383
1384 return next;
1385}
1386
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001387// foldOpenNested() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388/*
1389 * Open all nested folds in fold "fpr" recursively.
1390 */
1391 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001392foldOpenNested(fold_T *fpr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393{
1394 int i;
1395 fold_T *fp;
1396
1397 fp = (fold_T *)fpr->fd_nested.ga_data;
1398 for (i = 0; i < fpr->fd_nested.ga_len; ++i)
1399 {
1400 foldOpenNested(&fp[i]);
1401 fp[i].fd_flags = FD_OPEN;
1402 }
1403}
1404
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001405// deleteFoldEntry() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406/*
1407 * Delete fold "idx" from growarray "gap".
1408 * When "recursive" is TRUE also delete all the folds contained in it.
1409 * When "recursive" is FALSE contained folds are moved one level up.
1410 */
1411 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001412deleteFoldEntry(garray_T *gap, int idx, int recursive)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413{
1414 fold_T *fp;
1415 int i;
1416 long moved;
1417 fold_T *nfp;
1418
1419 fp = (fold_T *)gap->ga_data + idx;
1420 if (recursive || fp->fd_nested.ga_len == 0)
1421 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001422 // recursively delete the contained folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423 deleteFoldRecurse(&fp->fd_nested);
1424 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 if (idx < gap->ga_len)
1426 mch_memmove(fp, fp + 1, sizeof(fold_T) * (gap->ga_len - idx));
1427 }
1428 else
1429 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001430 // Move nested folds one level up, to overwrite the fold that is
1431 // deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 moved = fp->fd_nested.ga_len;
1433 if (ga_grow(gap, (int)(moved - 1)) == OK)
1434 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001435 // Get "fp" again, the array may have been reallocated.
Bram Moolenaarc9927c12011-08-26 16:13:00 +02001436 fp = (fold_T *)gap->ga_data + idx;
1437
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001438 // adjust fd_top and fd_flags for the moved folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 nfp = (fold_T *)fp->fd_nested.ga_data;
1440 for (i = 0; i < moved; ++i)
1441 {
1442 nfp[i].fd_top += fp->fd_top;
1443 if (fp->fd_flags == FD_LEVEL)
1444 nfp[i].fd_flags = FD_LEVEL;
1445 if (fp->fd_small == MAYBE)
1446 nfp[i].fd_small = MAYBE;
1447 }
1448
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001449 // move the existing folds down to make room
Bram Moolenaarc9927c12011-08-26 16:13:00 +02001450 if (idx + 1 < gap->ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 mch_memmove(fp + moved, fp + 1,
Bram Moolenaarc9927c12011-08-26 16:13:00 +02001452 sizeof(fold_T) * (gap->ga_len - (idx + 1)));
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001453 // move the contained folds one level up
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 mch_memmove(fp, nfp, (size_t)(sizeof(fold_T) * moved));
1455 vim_free(nfp);
1456 gap->ga_len += moved - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 }
1458 }
1459}
1460
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001461// deleteFoldRecurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462/*
1463 * Delete nested folds in a fold.
1464 */
1465 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001466deleteFoldRecurse(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467{
1468 int i;
1469
1470 for (i = 0; i < gap->ga_len; ++i)
1471 deleteFoldRecurse(&(((fold_T *)(gap->ga_data))[i].fd_nested));
1472 ga_clear(gap);
1473}
1474
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001475// foldMarkAdjust() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476/*
1477 * Update line numbers of folds for inserted/deleted lines.
1478 */
1479 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001480foldMarkAdjust(
1481 win_T *wp,
1482 linenr_T line1,
1483 linenr_T line2,
1484 long amount,
1485 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001487 // If deleting marks from line1 to line2, but not deleting all those
1488 // lines, set line2 so that only deleted lines have their folds removed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 if (amount == MAXLNUM && line2 >= line1 && line2 - line1 >= -amount_after)
1490 line2 = line1 - amount_after - 1;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001491 // If appending a line in Insert mode, it should be included in the fold
1492 // just above the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 if ((State & INSERT) && amount == (linenr_T)1 && line2 == MAXLNUM)
1494 --line1;
1495 foldMarkAdjustRecurse(&wp->w_folds, line1, line2, amount, amount_after);
1496}
1497
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001498// foldMarkAdjustRecurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001500foldMarkAdjustRecurse(
1501 garray_T *gap,
1502 linenr_T line1,
1503 linenr_T line2,
1504 long amount,
1505 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506{
1507 fold_T *fp;
1508 int i;
1509 linenr_T last;
1510 linenr_T top;
1511
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001512 // In Insert mode an inserted line at the top of a fold is considered part
1513 // of the fold, otherwise it isn't.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 if ((State & INSERT) && amount == (linenr_T)1 && line2 == MAXLNUM)
1515 top = line1 + 1;
1516 else
1517 top = line1;
1518
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001519 // Find the fold containing or just below "line1".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520 (void)foldFind(gap, line1, &fp);
1521
1522 /*
1523 * Adjust all folds below "line1" that are affected.
1524 */
1525 for (i = (int)(fp - (fold_T *)gap->ga_data); i < gap->ga_len; ++i, ++fp)
1526 {
1527 /*
1528 * Check for these situations:
1529 * 1 2 3
1530 * 1 2 3
1531 * line1 2 3 4 5
1532 * 2 3 4 5
1533 * 2 3 4 5
1534 * line2 2 3 4 5
1535 * 3 5 6
1536 * 3 5 6
1537 */
1538
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001539 last = fp->fd_top + fp->fd_len - 1; // last line of fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001541 // 1. fold completely above line1: nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542 if (last < line1)
1543 continue;
1544
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001545 // 6. fold below line2: only adjust for amount_after
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 if (fp->fd_top > line2)
1547 {
1548 if (amount_after == 0)
1549 break;
1550 fp->fd_top += amount_after;
1551 }
1552 else
1553 {
1554 if (fp->fd_top >= top && last <= line2)
1555 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001556 // 4. fold completely contained in range
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557 if (amount == MAXLNUM)
1558 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001559 // Deleting lines: delete the fold completely
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 deleteFoldEntry(gap, i, TRUE);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001561 --i; // adjust index for deletion
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 --fp;
1563 }
1564 else
1565 fp->fd_top += amount;
1566 }
1567 else
1568 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 if (fp->fd_top < top)
1570 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001571 // 2 or 3: need to correct nested folds too
Bram Moolenaar194b94c2009-09-18 13:17:09 +00001572 foldMarkAdjustRecurse(&fp->fd_nested, line1 - fp->fd_top,
1573 line2 - fp->fd_top, amount, amount_after);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 if (last <= line2)
1575 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001576 // 2. fold contains line1, line2 is below fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 if (amount == MAXLNUM)
1578 fp->fd_len = line1 - fp->fd_top;
1579 else
1580 fp->fd_len += amount;
1581 }
1582 else
1583 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001584 // 3. fold contains line1 and line2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 fp->fd_len += amount_after;
1586 }
1587 }
1588 else
1589 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001590 // 5. fold is below line1 and contains line2; need to
1591 // correct nested folds too
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592 if (amount == MAXLNUM)
1593 {
Bram Moolenaar1159b162017-02-28 21:53:56 +01001594 foldMarkAdjustRecurse(&fp->fd_nested,
1595 line1 - fp->fd_top,
1596 line2 - fp->fd_top,
1597 amount,
1598 amount_after + (fp->fd_top - top));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 fp->fd_len -= line2 - fp->fd_top + 1;
1600 fp->fd_top = line1;
1601 }
1602 else
1603 {
Bram Moolenaar1159b162017-02-28 21:53:56 +01001604 foldMarkAdjustRecurse(&fp->fd_nested,
1605 line1 - fp->fd_top,
1606 line2 - fp->fd_top,
1607 amount,
1608 amount_after - amount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609 fp->fd_len += amount_after - amount;
1610 fp->fd_top += amount;
1611 }
1612 }
1613 }
1614 }
1615 }
1616}
1617
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001618// getDeepestNesting() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619/*
1620 * Get the lowest 'foldlevel' value that makes the deepest nested fold in the
1621 * current window open.
1622 */
1623 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001624getDeepestNesting(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625{
1626 checkupdate(curwin);
1627 return getDeepestNestingRecurse(&curwin->w_folds);
1628}
1629
1630 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001631getDeepestNestingRecurse(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632{
1633 int i;
1634 int level;
1635 int maxlevel = 0;
1636 fold_T *fp;
1637
1638 fp = (fold_T *)gap->ga_data;
1639 for (i = 0; i < gap->ga_len; ++i)
1640 {
1641 level = getDeepestNestingRecurse(&fp[i].fd_nested) + 1;
1642 if (level > maxlevel)
1643 maxlevel = level;
1644 }
1645
1646 return maxlevel;
1647}
1648
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001649// check_closed() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650/*
1651 * Check if a fold is closed and update the info needed to check nested folds.
1652 */
1653 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001654check_closed(
1655 win_T *win,
1656 fold_T *fp,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001657 int *use_levelp, // TRUE: outer fold had FD_LEVEL
1658 int level, // folding depth
1659 int *maybe_smallp, // TRUE: outer this had fd_small == MAYBE
1660 linenr_T lnum_off) // line number offset for fp->fd_top
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661{
1662 int closed = FALSE;
1663
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001664 // Check if this fold is closed. If the flag is FD_LEVEL this
1665 // fold and all folds it contains depend on 'foldlevel'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 if (*use_levelp || fp->fd_flags == FD_LEVEL)
1667 {
1668 *use_levelp = TRUE;
1669 if (level >= win->w_p_fdl)
1670 closed = TRUE;
1671 }
1672 else if (fp->fd_flags == FD_CLOSED)
1673 closed = TRUE;
1674
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001675 // Small fold isn't closed anyway.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 if (fp->fd_small == MAYBE)
1677 *maybe_smallp = TRUE;
1678 if (closed)
1679 {
1680 if (*maybe_smallp)
1681 fp->fd_small = MAYBE;
1682 checkSmall(win, fp, lnum_off);
1683 if (fp->fd_small == TRUE)
1684 closed = FALSE;
1685 }
1686 return closed;
1687}
1688
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001689// checkSmall() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690/*
1691 * Update fd_small field of fold "fp".
1692 */
1693 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001694checkSmall(
1695 win_T *wp,
1696 fold_T *fp,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001697 linenr_T lnum_off) // offset for fp->fd_top
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698{
1699 int count;
1700 int n;
1701
1702 if (fp->fd_small == MAYBE)
1703 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001704 // Mark any nested folds to maybe-small
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705 setSmallMaybe(&fp->fd_nested);
1706
1707 if (fp->fd_len > curwin->w_p_fml)
1708 fp->fd_small = FALSE;
1709 else
1710 {
1711 count = 0;
1712 for (n = 0; n < fp->fd_len; ++n)
1713 {
1714 count += plines_win_nofold(wp, fp->fd_top + lnum_off + n);
1715 if (count > curwin->w_p_fml)
1716 {
1717 fp->fd_small = FALSE;
1718 return;
1719 }
1720 }
1721 fp->fd_small = TRUE;
1722 }
1723 }
1724}
1725
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001726// setSmallMaybe() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727/*
1728 * Set small flags in "gap" to MAYBE.
1729 */
1730 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001731setSmallMaybe(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732{
1733 int i;
1734 fold_T *fp;
1735
1736 fp = (fold_T *)gap->ga_data;
1737 for (i = 0; i < gap->ga_len; ++i)
1738 fp[i].fd_small = MAYBE;
1739}
1740
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001741// foldCreateMarkers() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742/*
1743 * Create a fold from line "start" to line "end" (inclusive) in the current
1744 * window by adding markers.
1745 */
1746 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001747foldCreateMarkers(linenr_T start, linenr_T end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748{
1749 if (!curbuf->b_p_ma)
1750 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001751 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 return;
1753 }
1754 parseMarker(curwin);
1755
1756 foldAddMarker(start, curwin->w_p_fmr, foldstartmarkerlen);
1757 foldAddMarker(end, foldendmarker, foldendmarkerlen);
1758
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001759 // Update both changes here, to avoid all folds after the start are
1760 // changed when the start marker is inserted and the end isn't.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 changed_lines(start, (colnr_T)0, end, 0L);
1762}
1763
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001764// foldAddMarker() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765/*
1766 * Add "marker[markerlen]" in 'commentstring' to line "lnum".
1767 */
1768 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001769foldAddMarker(linenr_T lnum, char_u *marker, int markerlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770{
1771 char_u *cms = curbuf->b_p_cms;
1772 char_u *line;
1773 int line_len;
1774 char_u *newline;
1775 char_u *p = (char_u *)strstr((char *)curbuf->b_p_cms, "%s");
Bram Moolenaar025a6b72017-03-12 20:37:21 +01001776 int line_is_comment = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001778 // Allocate a new line: old-line + 'cms'-start + marker + 'cms'-end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 line = ml_get(lnum);
1780 line_len = (int)STRLEN(line);
1781
1782 if (u_save(lnum - 1, lnum + 1) == OK)
1783 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001784 // Check if the line ends with an unclosed comment
Bram Moolenaar025a6b72017-03-12 20:37:21 +01001785 (void)skip_comment(line, FALSE, FALSE, &line_is_comment);
Bram Moolenaar964b3742019-05-24 18:54:09 +02001786 newline = alloc(line_len + markerlen + STRLEN(cms) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787 if (newline == NULL)
1788 return;
1789 STRCPY(newline, line);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001790 // Append the marker to the end of the line
Bram Moolenaar025a6b72017-03-12 20:37:21 +01001791 if (p == NULL || line_is_comment)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00001792 vim_strncpy(newline + line_len, marker, markerlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 else
1794 {
1795 STRCPY(newline + line_len, cms);
1796 STRNCPY(newline + line_len + (p - cms), marker, markerlen);
1797 STRCPY(newline + line_len + (p - cms) + markerlen, p + 2);
1798 }
1799
1800 ml_replace(lnum, newline, FALSE);
1801 }
1802}
1803
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001804// deleteFoldMarkers() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805/*
1806 * Delete the markers for a fold, causing it to be deleted.
1807 */
1808 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001809deleteFoldMarkers(
1810 fold_T *fp,
1811 int recursive,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001812 linenr_T lnum_off) // offset for fp->fd_top
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813{
1814 int i;
1815
1816 if (recursive)
1817 for (i = 0; i < fp->fd_nested.ga_len; ++i)
1818 deleteFoldMarkers((fold_T *)fp->fd_nested.ga_data + i, TRUE,
1819 lnum_off + fp->fd_top);
1820 foldDelMarker(fp->fd_top + lnum_off, curwin->w_p_fmr, foldstartmarkerlen);
1821 foldDelMarker(fp->fd_top + lnum_off + fp->fd_len - 1,
1822 foldendmarker, foldendmarkerlen);
1823}
1824
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001825// foldDelMarker() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826/*
1827 * Delete marker "marker[markerlen]" at the end of line "lnum".
1828 * Delete 'commentstring' if it matches.
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02001829 * If the marker is not found, there is no error message. Could be a missing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 * close-marker.
1831 */
1832 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001833foldDelMarker(linenr_T lnum, char_u *marker, int markerlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834{
1835 char_u *line;
1836 char_u *newline;
1837 char_u *p;
1838 int len;
1839 char_u *cms = curbuf->b_p_cms;
1840 char_u *cms2;
1841
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02001842 // end marker may be missing and fold extends below the last line
1843 if (lnum > curbuf->b_ml.ml_line_count)
1844 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 line = ml_get(lnum);
1846 for (p = line; *p != NUL; ++p)
1847 if (STRNCMP(p, marker, markerlen) == 0)
1848 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001849 // Found the marker, include a digit if it's there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 len = markerlen;
1851 if (VIM_ISDIGIT(p[len]))
1852 ++len;
1853 if (*cms != NUL)
1854 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001855 // Also delete 'commentstring' if it matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 cms2 = (char_u *)strstr((char *)cms, "%s");
1857 if (p - line >= cms2 - cms
1858 && STRNCMP(p - (cms2 - cms), cms, cms2 - cms) == 0
1859 && STRNCMP(p + len, cms2 + 2, STRLEN(cms2 + 2)) == 0)
1860 {
1861 p -= cms2 - cms;
1862 len += (int)STRLEN(cms) - 2;
1863 }
1864 }
1865 if (u_save(lnum - 1, lnum + 1) == OK)
1866 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001867 // Make new line: text-before-marker + text-after-marker
Bram Moolenaar964b3742019-05-24 18:54:09 +02001868 newline = alloc(STRLEN(line) - len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 if (newline != NULL)
1870 {
1871 STRNCPY(newline, line, p - line);
1872 STRCPY(newline + (p - line), p + len);
1873 ml_replace(lnum, newline, FALSE);
1874 }
1875 }
1876 break;
1877 }
1878}
1879
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001880// get_foldtext() {{{2
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001881/*
1882 * Return the text for a closed fold at line "lnum", with last line "lnume".
Bram Moolenaaree695f72016-08-03 22:08:45 +02001883 * When 'foldtext' isn't set puts the result in "buf[FOLD_TEXT_LEN]".
1884 * Otherwise the result is in allocated memory.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001885 */
1886 char_u *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001887get_foldtext(
1888 win_T *wp,
1889 linenr_T lnum,
1890 linenr_T lnume,
1891 foldinfo_T *foldinfo,
1892 char_u *buf)
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001893{
1894 char_u *text = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001895#ifdef FEAT_EVAL
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001896 // an error occurred when evaluating 'fdt' setting
Bram Moolenaardab38d52013-06-15 17:06:36 +02001897 static int got_fdt_error = FALSE;
1898 int save_did_emsg = did_emsg;
1899 static win_T *last_wp = NULL;
1900 static linenr_T last_lnum = 0;
1901
1902 if (last_wp != wp || last_wp == NULL
1903 || last_lnum > lnum || last_lnum == 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001904 // window changed, try evaluating foldtext setting once again
Bram Moolenaardab38d52013-06-15 17:06:36 +02001905 got_fdt_error = FALSE;
1906
1907 if (!got_fdt_error)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001908 // a previous error should not abort evaluating 'foldexpr'
Bram Moolenaardab38d52013-06-15 17:06:36 +02001909 did_emsg = FALSE;
1910
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001911 if (*wp->w_p_fdt != NUL)
1912 {
Bram Moolenaar5b88ba42009-11-03 15:30:12 +00001913 char_u dashes[MAX_LEVEL + 2];
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001914 win_T *save_curwin;
1915 int level;
1916 char_u *p;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001917
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001918 // Set "v:foldstart" and "v:foldend".
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001919 set_vim_var_nr(VV_FOLDSTART, lnum);
1920 set_vim_var_nr(VV_FOLDEND, lnume);
1921
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001922 // Set "v:folddashes" to a string of "level" dashes.
1923 // Set "v:foldlevel" to "level".
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001924 level = foldinfo->fi_level;
Bram Moolenaar5b88ba42009-11-03 15:30:12 +00001925 if (level > (int)sizeof(dashes) - 1)
1926 level = (int)sizeof(dashes) - 1;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001927 vim_memset(dashes, '-', (size_t)level);
1928 dashes[level] = NUL;
1929 set_vim_var_string(VV_FOLDDASHES, dashes, -1);
1930 set_vim_var_nr(VV_FOLDLEVEL, (long)level);
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001931
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001932 // skip evaluating foldtext on errors
Bram Moolenaardab38d52013-06-15 17:06:36 +02001933 if (!got_fdt_error)
1934 {
1935 save_curwin = curwin;
1936 curwin = wp;
1937 curbuf = wp->w_buffer;
1938
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001939 ++emsg_silent; // handle exceptions, but don't display errors
Bram Moolenaarb171fb12020-06-24 20:34:03 +02001940 text = eval_to_string_safe(wp->w_p_fdt,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001941 was_set_insecurely((char_u *)"foldtext", OPT_LOCAL));
Bram Moolenaardab38d52013-06-15 17:06:36 +02001942 --emsg_silent;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001943
Bram Moolenaardab38d52013-06-15 17:06:36 +02001944 if (text == NULL || did_emsg)
1945 got_fdt_error = TRUE;
1946
1947 curwin = save_curwin;
1948 curbuf = curwin->w_buffer;
1949 }
1950 last_lnum = lnum;
1951 last_wp = wp;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001952 set_vim_var_string(VV_FOLDDASHES, NULL, -1);
1953
Bram Moolenaardab38d52013-06-15 17:06:36 +02001954 if (!did_emsg && save_did_emsg)
1955 did_emsg = save_did_emsg;
1956
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001957 if (text != NULL)
1958 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001959 // Replace unprintable characters, if there are any. But
1960 // replace a TAB with a space.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001961 for (p = text; *p != NUL; ++p)
1962 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001963 int len;
1964
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001965 if (has_mbyte && (len = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001966 {
1967 if (!vim_isprintc((*mb_ptr2char)(p)))
1968 break;
1969 p += len - 1;
1970 }
1971 else
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001972 if (*p == TAB)
1973 *p = ' ';
1974 else if (ptr2cells(p) > 1)
1975 break;
1976 }
1977 if (*p != NUL)
1978 {
1979 p = transstr(text);
1980 vim_free(text);
1981 text = p;
1982 }
1983 }
1984 }
1985 if (text == NULL)
1986#endif
1987 {
Bram Moolenaaree695f72016-08-03 22:08:45 +02001988 long count = (long)(lnume - lnum + 1);
1989
1990 vim_snprintf((char *)buf, FOLD_TEXT_LEN,
Bram Moolenaar1c465442017-03-12 20:10:05 +01001991 NGETTEXT("+--%3ld line folded ",
Bram Moolenaaree695f72016-08-03 22:08:45 +02001992 "+--%3ld lines folded ", count),
1993 count);
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001994 text = buf;
1995 }
1996 return text;
1997}
1998
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001999// foldtext_cleanup() {{{2
Bram Moolenaardb022f32019-09-01 17:52:32 +02002000#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001/*
2002 * Remove 'foldmarker' and 'commentstring' from "str" (in-place).
2003 */
Bram Moolenaardb022f32019-09-01 17:52:32 +02002004 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002005foldtext_cleanup(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002007 char_u *cms_start; // first part or the whole comment
2008 int cms_slen = 0; // length of cms_start
2009 char_u *cms_end; // last part of the comment or NULL
2010 int cms_elen = 0; // length of cms_end
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 char_u *s;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002012 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 int len;
2014 int did1 = FALSE;
2015 int did2 = FALSE;
2016
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002017 // Ignore leading and trailing white space in 'commentstring'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 cms_start = skipwhite(curbuf->b_p_cms);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002019 cms_slen = (int)STRLEN(cms_start);
Bram Moolenaar1c465442017-03-12 20:10:05 +01002020 while (cms_slen > 0 && VIM_ISWHITE(cms_start[cms_slen - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 --cms_slen;
2022
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002023 // locate "%s" in 'commentstring', use the part before and after it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 cms_end = (char_u *)strstr((char *)cms_start, "%s");
2025 if (cms_end != NULL)
2026 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002027 cms_elen = cms_slen - (int)(cms_end - cms_start);
2028 cms_slen = (int)(cms_end - cms_start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002029
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002030 // exclude white space before "%s"
Bram Moolenaar1c465442017-03-12 20:10:05 +01002031 while (cms_slen > 0 && VIM_ISWHITE(cms_start[cms_slen - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 --cms_slen;
2033
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002034 // skip "%s" and white space after it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035 s = skipwhite(cms_end + 2);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002036 cms_elen -= (int)(s - cms_end);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 cms_end = s;
2038 }
2039 parseMarker(curwin);
2040
2041 for (s = str; *s != NUL; )
2042 {
2043 len = 0;
2044 if (STRNCMP(s, curwin->w_p_fmr, foldstartmarkerlen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 len = foldstartmarkerlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 else if (STRNCMP(s, foldendmarker, foldendmarkerlen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047 len = foldendmarkerlen;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002048 if (len > 0)
2049 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 if (VIM_ISDIGIT(s[len]))
2051 ++len;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002052
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002053 // May remove 'commentstring' start. Useful when it's a double
2054 // quote and we already removed a double quote.
Bram Moolenaar1c465442017-03-12 20:10:05 +01002055 for (p = s; p > str && VIM_ISWHITE(p[-1]); --p)
Bram Moolenaardef9e822004-12-31 20:58:58 +00002056 ;
2057 if (p >= str + cms_slen
2058 && STRNCMP(p - cms_slen, cms_start, cms_slen) == 0)
2059 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002060 len += (int)(s - p) + cms_slen;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002061 s = p - cms_slen;
2062 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 }
2064 else if (cms_end != NULL)
2065 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00002066 if (!did1 && cms_slen > 0 && STRNCMP(s, cms_start, cms_slen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 {
2068 len = cms_slen;
2069 did1 = TRUE;
2070 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00002071 else if (!did2 && cms_elen > 0
2072 && STRNCMP(s, cms_end, cms_elen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 {
2074 len = cms_elen;
2075 did2 = TRUE;
2076 }
2077 }
2078 if (len != 0)
2079 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01002080 while (VIM_ISWHITE(s[len]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 ++len;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002082 STRMOVE(s, s + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 }
2084 else
2085 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002086 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 }
2088 }
2089}
Bram Moolenaardb022f32019-09-01 17:52:32 +02002090#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002092// Folding by indent, expr, marker and syntax. {{{1
2093// Define "fline_T", passed to get fold level for a line. {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094typedef struct
2095{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002096 win_T *wp; // window
2097 linenr_T lnum; // current line number
2098 linenr_T off; // offset between lnum and real line number
2099 linenr_T lnum_save; // line nr used by foldUpdateIEMSRecurse()
2100 int lvl; // current level (-1 for undefined)
2101 int lvl_next; // level used for next line
2102 int start; // number of folds that are forced to start at
2103 // this line.
2104 int end; // level of fold that is forced to end below
2105 // this line
2106 int had_end; // level of fold that is forced to end above
2107 // this line (copy of "end" of prev. line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108} fline_T;
2109
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002110// Flag is set when redrawing is needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111static int fold_changed;
2112
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002113// Function declarations. {{{2
Bram Moolenaard99df422016-01-29 23:20:40 +01002114static linenr_T foldUpdateIEMSRecurse(garray_T *gap, int level, linenr_T startlnum, fline_T *flp, void (*getlevel)(fline_T *), linenr_T bot, int topflags);
Bram Moolenaard25c16e2016-01-29 22:13:30 +01002115static int foldInsert(garray_T *gap, int i);
2116static void foldSplit(garray_T *gap, int i, linenr_T top, linenr_T bot);
2117static void foldRemove(garray_T *gap, linenr_T top, linenr_T bot);
2118static void foldMerge(fold_T *fp1, garray_T *gap, fold_T *fp2);
2119static void foldlevelIndent(fline_T *flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120#ifdef FEAT_DIFF
Bram Moolenaard25c16e2016-01-29 22:13:30 +01002121static void foldlevelDiff(fline_T *flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +01002123static void foldlevelExpr(fline_T *flp);
2124static void foldlevelMarker(fline_T *flp);
2125static void foldlevelSyntax(fline_T *flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002127// foldUpdateIEMS() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128/*
2129 * Update the folding for window "wp", at least from lines "top" to "bot".
2130 * Return TRUE if any folds did change.
2131 */
2132 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002133foldUpdateIEMS(win_T *wp, linenr_T top, linenr_T bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134{
2135 linenr_T start;
2136 linenr_T end;
2137 fline_T fline;
Bram Moolenaard99df422016-01-29 23:20:40 +01002138 void (*getlevel)(fline_T *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 int level;
2140 fold_T *fp;
2141
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002142 // Avoid problems when being called recursively.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143 if (invalid_top != (linenr_T)0)
2144 return;
2145
2146 if (wp->w_foldinvalid)
2147 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002148 // Need to update all folds.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 top = 1;
2150 bot = wp->w_buffer->b_ml.ml_line_count;
2151 wp->w_foldinvalid = FALSE;
2152
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002153 // Mark all folds a maybe-small.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 setSmallMaybe(&wp->w_folds);
2155 }
2156
2157#ifdef FEAT_DIFF
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002158 // add the context for "diff" folding
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 if (foldmethodIsDiff(wp))
2160 {
2161 if (top > diff_context)
2162 top -= diff_context;
2163 else
2164 top = 1;
2165 bot += diff_context;
2166 }
2167#endif
2168
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002169 // When deleting lines at the end of the buffer "top" can be past the end
2170 // of the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 if (top > wp->w_buffer->b_ml.ml_line_count)
2172 top = wp->w_buffer->b_ml.ml_line_count;
2173
2174 fold_changed = FALSE;
2175 fline.wp = wp;
2176 fline.off = 0;
2177 fline.lvl = 0;
2178 fline.lvl_next = -1;
2179 fline.start = 0;
2180 fline.end = MAX_LEVEL + 1;
2181 fline.had_end = MAX_LEVEL + 1;
2182
2183 invalid_top = top;
2184 invalid_bot = bot;
2185
2186 if (foldmethodIsMarker(wp))
2187 {
2188 getlevel = foldlevelMarker;
2189
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002190 // Init marker variables to speed up foldlevelMarker().
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 parseMarker(wp);
2192
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002193 // Need to get the level of the line above top, it is used if there is
2194 // no marker at the top.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 if (top > 1)
2196 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002197 // Get the fold level at top - 1.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198 level = foldLevelWin(wp, top - 1);
2199
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002200 // The fold may end just above the top, check for that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201 fline.lnum = top - 1;
2202 fline.lvl = level;
2203 getlevel(&fline);
2204
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002205 // If a fold started here, we already had the level, if it stops
2206 // here, we need to use lvl_next. Could also start and end a fold
2207 // in the same line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208 if (fline.lvl > level)
2209 fline.lvl = level - (fline.lvl - fline.lvl_next);
2210 else
2211 fline.lvl = fline.lvl_next;
2212 }
2213 fline.lnum = top;
2214 getlevel(&fline);
2215 }
2216 else
2217 {
2218 fline.lnum = top;
2219 if (foldmethodIsExpr(wp))
2220 {
2221 getlevel = foldlevelExpr;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002222 // start one line back, because a "<1" may indicate the end of a
2223 // fold in the topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 if (top > 1)
2225 --fline.lnum;
2226 }
2227 else if (foldmethodIsSyntax(wp))
2228 getlevel = foldlevelSyntax;
2229#ifdef FEAT_DIFF
2230 else if (foldmethodIsDiff(wp))
2231 getlevel = foldlevelDiff;
2232#endif
2233 else
2234 getlevel = foldlevelIndent;
2235
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002236 // Backup to a line for which the fold level is defined. Since it's
2237 // always defined for line one, we will stop there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 fline.lvl = -1;
2239 for ( ; !got_int; --fline.lnum)
2240 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002241 // Reset lvl_next each time, because it will be set to a value for
2242 // the next line, but we search backwards here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 fline.lvl_next = -1;
2244 getlevel(&fline);
2245 if (fline.lvl >= 0)
2246 break;
2247 }
2248 }
2249
Bram Moolenaarec986472009-11-03 13:46:54 +00002250 /*
2251 * If folding is defined by the syntax, it is possible that a change in
2252 * one line will cause all sub-folds of the current fold to change (e.g.,
2253 * closing a C-style comment can cause folds in the subsequent lines to
2254 * appear). To take that into account we should adjust the value of "bot"
2255 * to point to the end of the current fold:
2256 */
2257 if (foldlevelSyntax == getlevel)
2258 {
2259 garray_T *gap = &wp->w_folds;
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002260 fold_T *fpn = NULL;
Bram Moolenaarec986472009-11-03 13:46:54 +00002261 int current_fdl = 0;
2262 linenr_T fold_start_lnum = 0;
2263 linenr_T lnum_rel = fline.lnum;
2264
2265 while (current_fdl < fline.lvl)
2266 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002267 if (!foldFind(gap, lnum_rel, &fpn))
Bram Moolenaarec986472009-11-03 13:46:54 +00002268 break;
2269 ++current_fdl;
2270
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002271 fold_start_lnum += fpn->fd_top;
2272 gap = &fpn->fd_nested;
2273 lnum_rel -= fpn->fd_top;
Bram Moolenaarec986472009-11-03 13:46:54 +00002274 }
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002275 if (fpn != NULL && current_fdl == fline.lvl)
Bram Moolenaarec986472009-11-03 13:46:54 +00002276 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002277 linenr_T fold_end_lnum = fold_start_lnum + fpn->fd_len;
Bram Moolenaarec986472009-11-03 13:46:54 +00002278
2279 if (fold_end_lnum > bot)
2280 bot = fold_end_lnum;
2281 }
2282 }
2283
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 start = fline.lnum;
2285 end = bot;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002286 // Do at least one line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 if (start > end && end < wp->w_buffer->b_ml.ml_line_count)
2288 end = start;
2289 while (!got_int)
2290 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002291 // Always stop at the end of the file ("end" can be past the end of
2292 // the file).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 if (fline.lnum > wp->w_buffer->b_ml.ml_line_count)
2294 break;
2295 if (fline.lnum > end)
2296 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002297 // For "marker", "expr" and "syntax" methods: If a change caused
2298 // a fold to be removed, we need to continue at least until where
2299 // it ended.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 if (getlevel != foldlevelMarker
2301 && getlevel != foldlevelSyntax
2302 && getlevel != foldlevelExpr)
2303 break;
2304 if ((start <= end
2305 && foldFind(&wp->w_folds, end, &fp)
2306 && fp->fd_top + fp->fd_len - 1 > end)
2307 || (fline.lvl == 0
2308 && foldFind(&wp->w_folds, fline.lnum, &fp)
2309 && fp->fd_top < fline.lnum))
2310 end = fp->fd_top + fp->fd_len - 1;
2311 else if (getlevel == foldlevelSyntax
2312 && foldLevelWin(wp, fline.lnum) != fline.lvl)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002313 // For "syntax" method: Compare the foldlevel that the syntax
2314 // tells us to the foldlevel from the existing folds. If they
2315 // don't match continue updating folds.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 end = fline.lnum;
2317 else
2318 break;
2319 }
2320
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002321 // A level 1 fold starts at a line with foldlevel > 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 if (fline.lvl > 0)
2323 {
2324 invalid_top = fline.lnum;
2325 invalid_bot = end;
2326 end = foldUpdateIEMSRecurse(&wp->w_folds,
2327 1, start, &fline, getlevel, end, FD_LEVEL);
2328 start = fline.lnum;
2329 }
2330 else
2331 {
2332 if (fline.lnum == wp->w_buffer->b_ml.ml_line_count)
2333 break;
2334 ++fline.lnum;
2335 fline.lvl = fline.lvl_next;
2336 getlevel(&fline);
2337 }
2338 }
2339
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002340 // There can't be any folds from start until end now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 foldRemove(&wp->w_folds, start, end);
2342
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002343 // If some fold changed, need to redraw and position cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 if (fold_changed && wp->w_p_fen)
Bram Moolenaare3b3f282008-03-06 21:45:49 +00002345 changed_window_setting_win(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002347 // If we updated folds past "bot", need to redraw more lines. Don't do
2348 // this in other situations, the changed lines will be redrawn anyway and
2349 // this method can cause the whole window to be updated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350 if (end != bot)
2351 {
2352 if (wp->w_redraw_top == 0 || wp->w_redraw_top > top)
2353 wp->w_redraw_top = top;
2354 if (wp->w_redraw_bot < end)
2355 wp->w_redraw_bot = end;
2356 }
2357
2358 invalid_top = (linenr_T)0;
2359}
2360
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002361// foldUpdateIEMSRecurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362/*
2363 * Update a fold that starts at "flp->lnum". At this line there is always a
2364 * valid foldlevel, and its level >= "level".
2365 * "flp" is valid for "flp->lnum" when called and it's valid when returning.
2366 * "flp->lnum" is set to the lnum just below the fold, if it ends before
2367 * "bot", it's "bot" plus one if the fold continues and it's bigger when using
2368 * the marker method and a text change made following folds to change.
2369 * When returning, "flp->lnum_save" is the line number that was used to get
2370 * the level when the level at "flp->lnum" is invalid.
2371 * Remove any folds from "startlnum" up to here at this level.
2372 * Recursively update nested folds.
2373 * Below line "bot" there are no changes in the text.
2374 * "flp->lnum", "flp->lnum_save" and "bot" are relative to the start of the
2375 * outer fold.
2376 * "flp->off" is the offset to the real line number in the buffer.
2377 *
2378 * All this would be a lot simpler if all folds in the range would be deleted
Bram Moolenaare37d50a2008-08-06 17:06:04 +00002379 * and then created again. But we would lose all information about the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 * folds, even when making changes that don't affect the folding (e.g. "vj~").
2381 *
2382 * Returns bot, which may have been increased for lines that also need to be
2383 * updated as a result of a detected change in the fold.
2384 */
2385 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002386foldUpdateIEMSRecurse(
2387 garray_T *gap,
2388 int level,
2389 linenr_T startlnum,
2390 fline_T *flp,
2391 void (*getlevel)(fline_T *),
2392 linenr_T bot,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002393 int topflags) // flags used by containing fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394{
2395 linenr_T ll;
2396 fold_T *fp = NULL;
2397 fold_T *fp2;
2398 int lvl = level;
2399 linenr_T startlnum2 = startlnum;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002400 linenr_T firstlnum = flp->lnum; // first lnum we got
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401 int i;
2402 int finish = FALSE;
2403 linenr_T linecount = flp->wp->w_buffer->b_ml.ml_line_count - flp->off;
2404 int concat;
2405
2406 /*
2407 * If using the marker method, the start line is not the start of a fold
2408 * at the level we're dealing with and the level is non-zero, we must use
2409 * the previous fold. But ignore a fold that starts at or below
2410 * startlnum, it must be deleted.
2411 */
2412 if (getlevel == foldlevelMarker && flp->start <= flp->lvl - level
2413 && flp->lvl > 0)
2414 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002415 (void)foldFind(gap, startlnum - 1, &fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 if (fp >= ((fold_T *)gap->ga_data) + gap->ga_len
2417 || fp->fd_top >= startlnum)
2418 fp = NULL;
2419 }
2420
2421 /*
2422 * Loop over all lines in this fold, or until "bot" is hit.
2423 * Handle nested folds inside of this fold.
2424 * "flp->lnum" is the current line. When finding the end of the fold, it
2425 * is just below the end of the fold.
2426 * "*flp" contains the level of the line "flp->lnum" or a following one if
2427 * there are lines with an invalid fold level. "flp->lnum_save" is the
2428 * line number that was used to get the fold level (below "flp->lnum" when
2429 * it has an invalid fold level). When called the fold level is always
2430 * valid, thus "flp->lnum_save" is equal to "flp->lnum".
2431 */
2432 flp->lnum_save = flp->lnum;
2433 while (!got_int)
2434 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002435 // Updating folds can be slow, check for CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 line_breakcheck();
2437
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002438 // Set "lvl" to the level of line "flp->lnum". When flp->start is set
2439 // and after the first line of the fold, set the level to zero to
2440 // force the fold to end. Do the same when had_end is set: Previous
2441 // line was marked as end of a fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 lvl = flp->lvl;
2443 if (lvl > MAX_LEVEL)
2444 lvl = MAX_LEVEL;
2445 if (flp->lnum > firstlnum
2446 && (level > lvl - flp->start || level >= flp->had_end))
2447 lvl = 0;
2448
2449 if (flp->lnum > bot && !finish && fp != NULL)
2450 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002451 // For "marker" and "syntax" methods:
2452 // - If a change caused a nested fold to be removed, we need to
2453 // delete it and continue at least until where it ended.
2454 // - If a change caused a nested fold to be created, or this fold
2455 // to continue below its original end, need to finish this fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 if (getlevel != foldlevelMarker
2457 && getlevel != foldlevelExpr
2458 && getlevel != foldlevelSyntax)
2459 break;
2460 i = 0;
2461 fp2 = fp;
2462 if (lvl >= level)
2463 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002464 // Compute how deep the folds currently are, if it's deeper
2465 // than "lvl" then some must be deleted, need to update
2466 // at least one nested fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467 ll = flp->lnum - fp->fd_top;
2468 while (foldFind(&fp2->fd_nested, ll, &fp2))
2469 {
2470 ++i;
2471 ll -= fp2->fd_top;
2472 }
2473 }
2474 if (lvl < level + i)
2475 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002476 (void)foldFind(&fp->fd_nested, flp->lnum - fp->fd_top, &fp2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 if (fp2 != NULL)
2478 bot = fp2->fd_top + fp2->fd_len - 1 + fp->fd_top;
2479 }
2480 else if (fp->fd_top + fp->fd_len <= flp->lnum && lvl >= level)
2481 finish = TRUE;
2482 else
2483 break;
2484 }
2485
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002486 // At the start of the first nested fold and at the end of the current
2487 // fold: check if existing folds at this level, before the current
2488 // one, need to be deleted or truncated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 if (fp == NULL
2490 && (lvl != level
2491 || flp->lnum_save >= bot
2492 || flp->start != 0
2493 || flp->had_end <= MAX_LEVEL
2494 || flp->lnum == linecount))
2495 {
2496 /*
2497 * Remove or update folds that have lines between startlnum and
2498 * firstlnum.
2499 */
2500 while (!got_int)
2501 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002502 // set concat to 1 if it's allowed to concatenated this fold
2503 // with a previous one that touches it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 if (flp->start != 0 || flp->had_end <= MAX_LEVEL)
2505 concat = 0;
2506 else
2507 concat = 1;
2508
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002509 // Find an existing fold to re-use. Preferably one that
2510 // includes startlnum, otherwise one that ends just before
2511 // startlnum or starts after it.
Bram Moolenaar64f37d32020-08-31 19:58:13 +02002512 if (gap->ga_len > 0 && (foldFind(gap, startlnum, &fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 || (fp < ((fold_T *)gap->ga_data) + gap->ga_len
2514 && fp->fd_top <= firstlnum)
2515 || foldFind(gap, firstlnum - concat, &fp)
2516 || (fp < ((fold_T *)gap->ga_data) + gap->ga_len
2517 && ((lvl < level && fp->fd_top < flp->lnum)
2518 || (lvl >= level
Bram Moolenaar64f37d32020-08-31 19:58:13 +02002519 && fp->fd_top <= flp->lnum_save)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002520 {
2521 if (fp->fd_top + fp->fd_len + concat > firstlnum)
2522 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002523 // Use existing fold for the new fold. If it starts
2524 // before where we started looking, extend it. If it
2525 // starts at another line, update nested folds to keep
2526 // their position, compensating for the new fd_top.
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002527 if (fp->fd_top == firstlnum)
2528 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002529 // have found a fold beginning where we want
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002530 }
2531 else if (fp->fd_top >= startlnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532 {
2533 if (fp->fd_top > firstlnum)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002534 // like lines are inserted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 foldMarkAdjustRecurse(&fp->fd_nested,
2536 (linenr_T)0, (linenr_T)MAXLNUM,
2537 (long)(fp->fd_top - firstlnum), 0L);
2538 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002539 // like lines are deleted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 foldMarkAdjustRecurse(&fp->fd_nested,
2541 (linenr_T)0,
2542 (long)(firstlnum - fp->fd_top - 1),
2543 (linenr_T)MAXLNUM,
2544 (long)(fp->fd_top - firstlnum));
2545 fp->fd_len += fp->fd_top - firstlnum;
2546 fp->fd_top = firstlnum;
2547 fold_changed = TRUE;
2548 }
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002549 else if ((flp->start != 0 && lvl == level)
2550 || firstlnum != startlnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551 {
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002552 linenr_T breakstart;
2553 linenr_T breakend;
2554
2555 /*
2556 * Before there was a fold spanning from above
2557 * startlnum to below firstlnum. This fold is valid
2558 * above startlnum (because we are not updating
2559 * that range), but there should now be a break in
2560 * it.
2561 * If the break is because we are now forced to
2562 * start a new fold at the level "level" at line
2563 * fline->lnum, then we need to split the fold at
2564 * fline->lnum.
2565 * If the break is because the range
2566 * [startlnum, firstlnum) is now at a lower indent
2567 * than "level", we need to split the fold in this
2568 * range.
2569 * Any splits have to be done recursively.
2570 */
2571 if (firstlnum != startlnum)
2572 {
2573 breakstart = startlnum;
2574 breakend = firstlnum;
2575 }
2576 else
2577 {
2578 breakstart = flp->lnum;
2579 breakend = flp->lnum;
2580 }
2581 foldRemove(&fp->fd_nested, breakstart - fp->fd_top,
2582 breakend - fp->fd_top);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583 i = (int)(fp - (fold_T *)gap->ga_data);
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002584 foldSplit(gap, i, breakstart, breakend - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 fp = (fold_T *)gap->ga_data + i + 1;
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002586
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002587 // If using the "marker" or "syntax" method, we
2588 // need to continue until the end of the fold is
2589 // found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 if (getlevel == foldlevelMarker
2591 || getlevel == foldlevelExpr
2592 || getlevel == foldlevelSyntax)
2593 finish = TRUE;
2594 }
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002595
2596 if (fp->fd_top == startlnum && concat)
2597 {
2598 i = (int)(fp - (fold_T *)gap->ga_data);
2599 if (i != 0)
2600 {
2601 fp2 = fp - 1;
2602 if (fp2->fd_top + fp2->fd_len == fp->fd_top)
2603 {
2604 foldMerge(fp2, gap, fp);
2605 fp = fp2;
2606 }
2607 }
2608 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 break;
2610 }
2611 if (fp->fd_top >= startlnum)
2612 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002613 // A fold that starts at or after startlnum and stops
2614 // before the new fold must be deleted. Continue
2615 // looking for the next one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616 deleteFoldEntry(gap,
2617 (int)(fp - (fold_T *)gap->ga_data), TRUE);
2618 }
2619 else
2620 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002621 // A fold has some lines above startlnum, truncate it
2622 // to stop just above startlnum.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 fp->fd_len = startlnum - fp->fd_top;
2624 foldMarkAdjustRecurse(&fp->fd_nested,
2625 (linenr_T)fp->fd_len, (linenr_T)MAXLNUM,
2626 (linenr_T)MAXLNUM, 0L);
2627 fold_changed = TRUE;
2628 }
2629 }
2630 else
2631 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002632 // Insert new fold. Careful: ga_data may be NULL and it
2633 // may change!
Bram Moolenaar64f37d32020-08-31 19:58:13 +02002634 if (gap->ga_len == 0)
2635 i = 0;
2636 else
2637 i = (int)(fp - (fold_T *)gap->ga_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 if (foldInsert(gap, i) != OK)
2639 return bot;
2640 fp = (fold_T *)gap->ga_data + i;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002641 // The new fold continues until bot, unless we find the
2642 // end earlier.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 fp->fd_top = firstlnum;
2644 fp->fd_len = bot - firstlnum + 1;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002645 // When the containing fold is open, the new fold is open.
2646 // The new fold is closed if the fold above it is closed.
2647 // The first fold depends on the containing fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 if (topflags == FD_OPEN)
2649 {
2650 flp->wp->w_fold_manual = TRUE;
2651 fp->fd_flags = FD_OPEN;
2652 }
2653 else if (i <= 0)
2654 {
2655 fp->fd_flags = topflags;
2656 if (topflags != FD_LEVEL)
2657 flp->wp->w_fold_manual = TRUE;
2658 }
2659 else
2660 fp->fd_flags = (fp - 1)->fd_flags;
2661 fp->fd_small = MAYBE;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002662 // If using the "marker", "expr" or "syntax" method, we
2663 // need to continue until the end of the fold is found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 if (getlevel == foldlevelMarker
2665 || getlevel == foldlevelExpr
2666 || getlevel == foldlevelSyntax)
2667 finish = TRUE;
2668 fold_changed = TRUE;
2669 break;
2670 }
2671 }
2672 }
2673
2674 if (lvl < level || flp->lnum > linecount)
2675 {
2676 /*
2677 * Found a line with a lower foldlevel, this fold ends just above
2678 * "flp->lnum".
2679 */
2680 break;
2681 }
2682
2683 /*
2684 * The fold includes the line "flp->lnum" and "flp->lnum_save".
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002685 * Check "fp" for safety.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686 */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002687 if (lvl > level && fp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 {
2689 /*
2690 * There is a nested fold, handle it recursively.
2691 */
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002692 // At least do one line (can happen when finish is TRUE).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693 if (bot < flp->lnum)
2694 bot = flp->lnum;
2695
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002696 // Line numbers in the nested fold are relative to the start of
2697 // this fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 flp->lnum = flp->lnum_save - fp->fd_top;
2699 flp->off += fp->fd_top;
2700 i = (int)(fp - (fold_T *)gap->ga_data);
2701 bot = foldUpdateIEMSRecurse(&fp->fd_nested, level + 1,
2702 startlnum2 - fp->fd_top, flp, getlevel,
2703 bot - fp->fd_top, fp->fd_flags);
2704 fp = (fold_T *)gap->ga_data + i;
2705 flp->lnum += fp->fd_top;
2706 flp->lnum_save += fp->fd_top;
2707 flp->off -= fp->fd_top;
2708 bot += fp->fd_top;
2709 startlnum2 = flp->lnum;
2710
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002711 // This fold may end at the same line, don't incr. flp->lnum.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 }
2713 else
2714 {
2715 /*
2716 * Get the level of the next line, then continue the loop to check
2717 * if it ends there.
2718 * Skip over undefined lines, to find the foldlevel after it.
2719 * For the last line in the file the foldlevel is always valid.
2720 */
2721 flp->lnum = flp->lnum_save;
2722 ll = flp->lnum + 1;
2723 while (!got_int)
2724 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002725 // Make the previous level available to foldlevel().
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726 prev_lnum = flp->lnum;
2727 prev_lnum_lvl = flp->lvl;
2728
2729 if (++flp->lnum > linecount)
2730 break;
2731 flp->lvl = flp->lvl_next;
2732 getlevel(flp);
2733 if (flp->lvl >= 0 || flp->had_end <= MAX_LEVEL)
2734 break;
2735 }
2736 prev_lnum = 0;
2737 if (flp->lnum > linecount)
2738 break;
2739
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002740 // leave flp->lnum_save to lnum of the line that was used to get
2741 // the level, flp->lnum to the lnum of the next line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 flp->lnum_save = flp->lnum;
2743 flp->lnum = ll;
2744 }
2745 }
2746
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002747 if (fp == NULL) // only happens when got_int is set
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 return bot;
2749
2750 /*
2751 * Get here when:
2752 * lvl < level: the folds ends just above "flp->lnum"
2753 * lvl >= level: fold continues below "bot"
2754 */
2755
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02002756 // Current fold at least extends until lnum.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 if (fp->fd_len < flp->lnum - fp->fd_top)
2758 {
2759 fp->fd_len = flp->lnum - fp->fd_top;
Bram Moolenaaref6fc092008-01-13 20:58:13 +00002760 fp->fd_small = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761 fold_changed = TRUE;
2762 }
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02002763 else if (fp->fd_top + fp->fd_len > linecount)
2764 // running into the end of the buffer (deleted last line)
2765 fp->fd_len = linecount - fp->fd_top + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02002767 // Delete contained folds from the end of the last one found until where
2768 // we stopped looking.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 foldRemove(&fp->fd_nested, startlnum2 - fp->fd_top,
2770 flp->lnum - 1 - fp->fd_top);
2771
2772 if (lvl < level)
2773 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002774 // End of fold found, update the length when it got shorter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775 if (fp->fd_len != flp->lnum - fp->fd_top)
2776 {
Bram Moolenaar9d20ce62017-03-23 21:53:35 +01002777 if (fp->fd_top + fp->fd_len - 1 > bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002779 // fold continued below bot
Bram Moolenaar071d4272004-06-13 20:20:40 +00002780 if (getlevel == foldlevelMarker
2781 || getlevel == foldlevelExpr
2782 || getlevel == foldlevelSyntax)
2783 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002784 // marker method: truncate the fold and make sure the
2785 // previously included lines are processed again
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786 bot = fp->fd_top + fp->fd_len - 1;
2787 fp->fd_len = flp->lnum - fp->fd_top;
2788 }
2789 else
2790 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002791 // indent or expr method: split fold to create a new one
2792 // below bot
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793 i = (int)(fp - (fold_T *)gap->ga_data);
2794 foldSplit(gap, i, flp->lnum, bot);
2795 fp = (fold_T *)gap->ga_data + i;
2796 }
2797 }
2798 else
2799 fp->fd_len = flp->lnum - fp->fd_top;
2800 fold_changed = TRUE;
2801 }
2802 }
2803
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002804 // delete following folds that end before the current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 for (;;)
2806 {
2807 fp2 = fp + 1;
2808 if (fp2 >= (fold_T *)gap->ga_data + gap->ga_len
2809 || fp2->fd_top > flp->lnum)
2810 break;
2811 if (fp2->fd_top + fp2->fd_len > flp->lnum)
2812 {
2813 if (fp2->fd_top < flp->lnum)
2814 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002815 // Make fold that includes lnum start at lnum.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 foldMarkAdjustRecurse(&fp2->fd_nested,
2817 (linenr_T)0, (long)(flp->lnum - fp2->fd_top - 1),
2818 (linenr_T)MAXLNUM, (long)(fp2->fd_top - flp->lnum));
2819 fp2->fd_len -= flp->lnum - fp2->fd_top;
2820 fp2->fd_top = flp->lnum;
2821 fold_changed = TRUE;
2822 }
2823
2824 if (lvl >= level)
2825 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002826 // merge new fold with existing fold that follows
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 foldMerge(fp, gap, fp2);
2828 }
2829 break;
2830 }
2831 fold_changed = TRUE;
2832 deleteFoldEntry(gap, (int)(fp2 - (fold_T *)gap->ga_data), TRUE);
2833 }
2834
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002835 // Need to redraw the lines we inspected, which might be further down than
2836 // was asked for.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 if (bot < flp->lnum - 1)
2838 bot = flp->lnum - 1;
2839
2840 return bot;
2841}
2842
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002843// foldInsert() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002844/*
2845 * Insert a new fold in "gap" at position "i".
2846 * Returns OK for success, FAIL for failure.
2847 */
2848 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002849foldInsert(garray_T *gap, int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850{
2851 fold_T *fp;
2852
2853 if (ga_grow(gap, 1) != OK)
2854 return FAIL;
2855 fp = (fold_T *)gap->ga_data + i;
Bram Moolenaar64f37d32020-08-31 19:58:13 +02002856 if (gap->ga_len > 0 && i < gap->ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 mch_memmove(fp + 1, fp, sizeof(fold_T) * (gap->ga_len - i));
2858 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859 ga_init2(&fp->fd_nested, (int)sizeof(fold_T), 10);
2860 return OK;
2861}
2862
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002863// foldSplit() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864/*
2865 * Split the "i"th fold in "gap", which starts before "top" and ends below
2866 * "bot" in two pieces, one ending above "top" and the other starting below
2867 * "bot".
2868 * The caller must first have taken care of any nested folds from "top" to
2869 * "bot"!
2870 */
2871 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002872foldSplit(
2873 garray_T *gap,
2874 int i,
2875 linenr_T top,
2876 linenr_T bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877{
2878 fold_T *fp;
2879 fold_T *fp2;
2880 garray_T *gap1;
2881 garray_T *gap2;
2882 int idx;
2883 int len;
2884
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002885 // The fold continues below bot, need to split it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 if (foldInsert(gap, i + 1) == FAIL)
2887 return;
2888 fp = (fold_T *)gap->ga_data + i;
2889 fp[1].fd_top = bot + 1;
2890 fp[1].fd_len = fp->fd_len - (fp[1].fd_top - fp->fd_top);
2891 fp[1].fd_flags = fp->fd_flags;
Bram Moolenaareda6eb92009-11-03 17:04:43 +00002892 fp[1].fd_small = MAYBE;
2893 fp->fd_small = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002895 // Move nested folds below bot to new fold. There can't be
2896 // any between top and bot, they have been removed by the caller.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897 gap1 = &fp->fd_nested;
2898 gap2 = &fp[1].fd_nested;
2899 (void)(foldFind(gap1, bot + 1 - fp->fd_top, &fp2));
2900 len = (int)((fold_T *)gap1->ga_data + gap1->ga_len - fp2);
2901 if (len > 0 && ga_grow(gap2, len) == OK)
2902 {
2903 for (idx = 0; idx < len; ++idx)
2904 {
2905 ((fold_T *)gap2->ga_data)[idx] = fp2[idx];
2906 ((fold_T *)gap2->ga_data)[idx].fd_top
2907 -= fp[1].fd_top - fp->fd_top;
2908 }
2909 gap2->ga_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 gap1->ga_len -= len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911 }
2912 fp->fd_len = top - fp->fd_top;
2913 fold_changed = TRUE;
2914}
2915
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002916// foldRemove() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917/*
2918 * Remove folds within the range "top" to and including "bot".
2919 * Check for these situations:
2920 * 1 2 3
2921 * 1 2 3
2922 * top 2 3 4 5
2923 * 2 3 4 5
2924 * bot 2 3 4 5
2925 * 3 5 6
2926 * 3 5 6
2927 *
2928 * 1: not changed
Bram Moolenaar25394022007-05-10 19:06:20 +00002929 * 2: truncate to stop above "top"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 * 3: split in two parts, one stops above "top", other starts below "bot".
2931 * 4: deleted
2932 * 5: made to start below "bot".
2933 * 6: not changed
2934 */
2935 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002936foldRemove(garray_T *gap, linenr_T top, linenr_T bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937{
2938 fold_T *fp = NULL;
2939
2940 if (bot < top)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002941 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942
Bram Moolenaar64f37d32020-08-31 19:58:13 +02002943 while (gap->ga_len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002945 // Find fold that includes top or a following one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946 if (foldFind(gap, top, &fp) && fp->fd_top < top)
2947 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002948 // 2: or 3: need to delete nested folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949 foldRemove(&fp->fd_nested, top - fp->fd_top, bot - fp->fd_top);
Bram Moolenaarb11c8262017-04-23 16:48:20 +02002950 if (fp->fd_top + fp->fd_len - 1 > bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002952 // 3: need to split it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953 foldSplit(gap, (int)(fp - (fold_T *)gap->ga_data), top, bot);
2954 }
2955 else
2956 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002957 // 2: truncate fold at "top".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958 fp->fd_len = top - fp->fd_top;
2959 }
2960 fold_changed = TRUE;
2961 continue;
2962 }
2963 if (fp >= (fold_T *)(gap->ga_data) + gap->ga_len
2964 || fp->fd_top > bot)
2965 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002966 // 6: Found a fold below bot, can stop looking.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 break;
2968 }
2969 if (fp->fd_top >= top)
2970 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002971 // Found an entry below top.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972 fold_changed = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002973 if (fp->fd_top + fp->fd_len - 1 > bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002975 // 5: Make fold that includes bot start below bot.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976 foldMarkAdjustRecurse(&fp->fd_nested,
2977 (linenr_T)0, (long)(bot - fp->fd_top),
2978 (linenr_T)MAXLNUM, (long)(fp->fd_top - bot - 1));
2979 fp->fd_len -= bot - fp->fd_top + 1;
2980 fp->fd_top = bot + 1;
2981 break;
2982 }
2983
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002984 // 4: Delete completely contained fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985 deleteFoldEntry(gap, (int)(fp - (fold_T *)gap->ga_data), TRUE);
2986 }
2987 }
2988}
2989
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002990// foldReverseOrder() {{{2
Bram Moolenaar88d298a2017-03-14 21:53:58 +01002991 static void
Bram Moolenaarb11c8262017-04-23 16:48:20 +02002992foldReverseOrder(garray_T *gap, linenr_T start_arg, linenr_T end_arg)
Bram Moolenaar88d298a2017-03-14 21:53:58 +01002993{
2994 fold_T *left, *right;
2995 fold_T tmp;
Bram Moolenaarb11c8262017-04-23 16:48:20 +02002996 linenr_T start = start_arg;
2997 linenr_T end = end_arg;
Bram Moolenaar88d298a2017-03-14 21:53:58 +01002998
2999 for (; start < end; start++, end--)
3000 {
3001 left = (fold_T *)gap->ga_data + start;
3002 right = (fold_T *)gap->ga_data + end;
3003 tmp = *left;
3004 *left = *right;
3005 *right = tmp;
3006 }
3007}
3008
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003009// foldMoveRange() {{{2
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003010/*
3011 * Move folds within the inclusive range "line1" to "line2" to after "dest"
3012 * requires "line1" <= "line2" <= "dest"
3013 *
3014 * There are the following situations for the first fold at or below line1 - 1.
3015 * 1 2 3 4
3016 * 1 2 3 4
3017 * line1 2 3 4
3018 * 2 3 4 5 6 7
3019 * line2 3 4 5 6 7
3020 * 3 4 6 7 8 9
3021 * dest 4 7 8 9
3022 * 4 7 8 10
3023 * 4 7 8 10
3024 *
3025 * In the following descriptions, "moved" means moving in the buffer, *and* in
3026 * the fold array.
3027 * Meanwhile, "shifted" just means moving in the buffer.
3028 * 1. not changed
3029 * 2. truncated above line1
3030 * 3. length reduced by line2 - line1, folds starting between the end of 3 and
3031 * dest are truncated and shifted up
3032 * 4. internal folds moved (from [line1, line2] to dest)
3033 * 5. moved to dest.
3034 * 6. truncated below line2 and moved.
3035 * 7. length reduced by line2 - dest, folds starting between line2 and dest are
3036 * removed, top is moved down by move_len.
3037 * 8. truncated below dest and shifted up.
3038 * 9. shifted up
3039 * 10. not changed
3040 */
3041
3042 static void
3043truncate_fold(fold_T *fp, linenr_T end)
3044{
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003045 end += 1;
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003046 foldRemove(&fp->fd_nested, end - fp->fd_top, MAXLNUM);
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003047 fp->fd_len = end - fp->fd_top;
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003048}
3049
3050#define fold_end(fp) ((fp)->fd_top + (fp)->fd_len - 1)
3051#define valid_fold(fp, gap) ((fp) < ((fold_T *)(gap)->ga_data + (gap)->ga_len))
3052#define fold_index(fp, gap) ((size_t)(fp - ((fold_T *)(gap)->ga_data)))
3053
Bram Moolenaar4a5a8dd2017-03-16 13:54:10 +01003054 void
3055foldMoveRange(garray_T *gap, linenr_T line1, linenr_T line2, linenr_T dest)
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003056{
3057 fold_T *fp;
3058 linenr_T range_len = line2 - line1 + 1;
3059 linenr_T move_len = dest - line2;
3060 int at_start = foldFind(gap, line1 - 1, &fp);
3061 size_t move_start = 0, move_end = 0, dest_index = 0;
3062
3063 if (at_start)
3064 {
3065 if (fold_end(fp) > dest)
3066 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003067 // Case 4
3068 // don't have to change this fold, but have to move nested folds.
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003069 foldMoveRange(&fp->fd_nested, line1 - fp->fd_top, line2 -
3070 fp->fd_top, dest - fp->fd_top);
3071 return;
3072 }
3073 else if (fold_end(fp) > line2)
3074 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003075 // Case 3
3076 // Remove nested folds between line1 and line2 & reduce the
3077 // length of fold by "range_len".
3078 // Folds after this one must be dealt with.
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003079 foldMarkAdjustRecurse(&fp->fd_nested, line1 - fp->fd_top, line2 -
3080 fp->fd_top, MAXLNUM, -range_len);
3081 fp->fd_len -= range_len;
3082 }
3083 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003084 // Case 2 truncate fold, folds after this one must be dealt with.
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003085 truncate_fold(fp, line1 - 1);
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003086
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003087 // Look at the next fold, and treat that one as if it were the first
3088 // after "line1" (because now it is).
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003089 fp = fp + 1;
3090 }
3091
3092 if (!valid_fold(fp, gap) || fp->fd_top > dest)
3093 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003094 // Case 10
3095 // No folds after "line1" and before "dest"
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003096 return;
3097 }
3098 else if (fp->fd_top > line2)
3099 {
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003100 for (; valid_fold(fp, gap) && fold_end(fp) <= dest; fp++)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003101 // Case 9. (for all case 9's) -- shift up.
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003102 fp->fd_top -= range_len;
3103
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003104 if (valid_fold(fp, gap) && fp->fd_top <= dest)
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003105 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003106 // Case 8. -- ensure truncated at dest, shift up
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003107 truncate_fold(fp, dest);
3108 fp->fd_top -= range_len;
3109 }
3110 return;
3111 }
3112 else if (fold_end(fp) > dest)
3113 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003114 // Case 7 -- remove nested folds and shrink
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003115 foldMarkAdjustRecurse(&fp->fd_nested, line2 + 1 - fp->fd_top, dest -
3116 fp->fd_top, MAXLNUM, -move_len);
3117 fp->fd_len -= move_len;
3118 fp->fd_top += move_len;
3119 return;
3120 }
3121
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003122 // Case 5 or 6
3123 // changes rely on whether there are folds between the end of
3124 // this fold and "dest".
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003125 move_start = fold_index(fp, gap);
3126
3127 for (; valid_fold(fp, gap) && fp->fd_top <= dest; fp++)
3128 {
3129 if (fp->fd_top <= line2)
3130 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003131 // 1. 2. or 3.
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003132 if (fold_end(fp) > line2)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003133 // 2. or 3., truncate before moving
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003134 truncate_fold(fp, line2);
3135
3136 fp->fd_top += move_len;
3137 continue;
3138 }
3139
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003140 // Record index of the first fold after the moved range.
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003141 if (move_end == 0)
3142 move_end = fold_index(fp, gap);
3143
3144 if (fold_end(fp) > dest)
3145 truncate_fold(fp, dest);
3146
3147 fp->fd_top -= range_len;
3148 }
3149
3150 dest_index = fold_index(fp, gap);
3151
3152 /*
Bram Moolenaar94be6192017-04-22 22:40:11 +02003153 * All folds are now correct, but not necessarily in the correct order. We
3154 * must swap folds in the range [move_end, dest_index) with those in the
3155 * range [move_start, move_end).
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003156 */
Bram Moolenaar94be6192017-04-22 22:40:11 +02003157 if (move_end == 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003158 // There are no folds after those moved, hence no folds have been moved
3159 // out of order.
Bram Moolenaar94be6192017-04-22 22:40:11 +02003160 return;
Bram Moolenaar0c0d4ec2017-03-16 22:06:57 +01003161 foldReverseOrder(gap, (linenr_T)move_start, (linenr_T)dest_index - 1);
3162 foldReverseOrder(gap, (linenr_T)move_start,
3163 (linenr_T)(move_start + dest_index - move_end - 1));
3164 foldReverseOrder(gap, (linenr_T)(move_start + dest_index - move_end),
3165 (linenr_T)(dest_index - 1));
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003166}
3167#undef fold_end
3168#undef valid_fold
3169#undef fold_index
3170
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003171// foldMerge() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172/*
Bram Moolenaar25394022007-05-10 19:06:20 +00003173 * Merge two adjacent folds (and the nested ones in them).
3174 * This only works correctly when the folds are really adjacent! Thus "fp1"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175 * must end just above "fp2".
3176 * The resulting fold is "fp1", nested folds are moved from "fp2" to "fp1".
3177 * Fold entry "fp2" in "gap" is deleted.
3178 */
3179 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003180foldMerge(fold_T *fp1, garray_T *gap, fold_T *fp2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181{
3182 fold_T *fp3;
3183 fold_T *fp4;
3184 int idx;
3185 garray_T *gap1 = &fp1->fd_nested;
3186 garray_T *gap2 = &fp2->fd_nested;
3187
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003188 // If the last nested fold in fp1 touches the first nested fold in fp2,
3189 // merge them recursively.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 if (foldFind(gap1, fp1->fd_len - 1L, &fp3) && foldFind(gap2, 0L, &fp4))
3191 foldMerge(fp3, gap2, fp4);
3192
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003193 // Move nested folds in fp2 to the end of fp1.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 if (gap2->ga_len > 0 && ga_grow(gap1, gap2->ga_len) == OK)
3195 {
3196 for (idx = 0; idx < gap2->ga_len; ++idx)
3197 {
3198 ((fold_T *)gap1->ga_data)[gap1->ga_len]
3199 = ((fold_T *)gap2->ga_data)[idx];
3200 ((fold_T *)gap1->ga_data)[gap1->ga_len].fd_top += fp1->fd_len;
3201 ++gap1->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202 }
3203 gap2->ga_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204 }
3205
3206 fp1->fd_len += fp2->fd_len;
3207 deleteFoldEntry(gap, (int)(fp2 - (fold_T *)gap->ga_data), TRUE);
3208 fold_changed = TRUE;
3209}
3210
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003211// foldlevelIndent() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212/*
3213 * Low level function to get the foldlevel for the "indent" method.
3214 * Doesn't use any caching.
3215 * Returns a level of -1 if the foldlevel depends on surrounding lines.
3216 */
3217 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003218foldlevelIndent(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219{
3220 char_u *s;
3221 buf_T *buf;
3222 linenr_T lnum = flp->lnum + flp->off;
3223
3224 buf = flp->wp->w_buffer;
3225 s = skipwhite(ml_get_buf(buf, lnum, FALSE));
3226
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003227 // empty line or lines starting with a character in 'foldignore': level
3228 // depends on surrounding lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229 if (*s == NUL || vim_strchr(flp->wp->w_p_fdi, *s) != NULL)
3230 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003231 // first and last line can't be undefined, use level 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232 if (lnum == 1 || lnum == buf->b_ml.ml_line_count)
3233 flp->lvl = 0;
3234 else
3235 flp->lvl = -1;
3236 }
3237 else
Bram Moolenaar0c27cbc2018-11-14 21:45:32 +01003238 flp->lvl = get_indent_buf(buf, lnum) / get_sw_value(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239 if (flp->lvl > flp->wp->w_p_fdn)
Bram Moolenaar74c596b2006-11-01 11:44:31 +00003240 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241 flp->lvl = flp->wp->w_p_fdn;
Bram Moolenaar74c596b2006-11-01 11:44:31 +00003242 if (flp->lvl < 0)
3243 flp->lvl = 0;
3244 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245}
3246
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003247// foldlevelDiff() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248#ifdef FEAT_DIFF
3249/*
3250 * Low level function to get the foldlevel for the "diff" method.
3251 * Doesn't use any caching.
3252 */
3253 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003254foldlevelDiff(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255{
3256 if (diff_infold(flp->wp, flp->lnum + flp->off))
3257 flp->lvl = 1;
3258 else
3259 flp->lvl = 0;
3260}
3261#endif
3262
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003263// foldlevelExpr() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264/*
3265 * Low level function to get the foldlevel for the "expr" method.
3266 * Doesn't use any caching.
3267 * Returns a level of -1 if the foldlevel depends on surrounding lines.
3268 */
3269 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003270foldlevelExpr(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271{
3272#ifndef FEAT_EVAL
3273 flp->start = FALSE;
3274 flp->lvl = 0;
3275#else
3276 win_T *win;
3277 int n;
3278 int c;
3279 linenr_T lnum = flp->lnum + flp->off;
3280 int save_keytyped;
3281
3282 win = curwin;
3283 curwin = flp->wp;
3284 curbuf = flp->wp->w_buffer;
3285 set_vim_var_nr(VV_LNUM, lnum);
3286
3287 flp->start = 0;
3288 flp->had_end = flp->end;
3289 flp->end = MAX_LEVEL + 1;
3290 if (lnum <= 1)
3291 flp->lvl = 0;
3292
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003293 // KeyTyped may be reset to 0 when calling a function which invokes
3294 // do_cmdline(). To make 'foldopen' work correctly restore KeyTyped.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295 save_keytyped = KeyTyped;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02003296 n = (int)eval_foldexpr(flp->wp->w_p_fde, &c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297 KeyTyped = save_keytyped;
3298
3299 switch (c)
3300 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003301 // "a1", "a2", .. : add to the fold level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302 case 'a': if (flp->lvl >= 0)
3303 {
3304 flp->lvl += n;
3305 flp->lvl_next = flp->lvl;
3306 }
3307 flp->start = n;
3308 break;
3309
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003310 // "s1", "s2", .. : subtract from the fold level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311 case 's': if (flp->lvl >= 0)
3312 {
3313 if (n > flp->lvl)
3314 flp->lvl_next = 0;
3315 else
3316 flp->lvl_next = flp->lvl - n;
3317 flp->end = flp->lvl_next + 1;
3318 }
3319 break;
3320
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003321 // ">1", ">2", .. : start a fold with a certain level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003322 case '>': flp->lvl = n;
3323 flp->lvl_next = n;
3324 flp->start = 1;
3325 break;
3326
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003327 // "<1", "<2", .. : end a fold with a certain level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328 case '<': flp->lvl_next = n - 1;
3329 flp->end = n;
3330 break;
3331
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003332 // "=": No change in level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333 case '=': flp->lvl_next = flp->lvl;
3334 break;
3335
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003336 // "-1", "0", "1", ..: set fold level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337 default: if (n < 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003338 // Use the current level for the next line, so that "a1"
3339 // will work there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340 flp->lvl_next = flp->lvl;
3341 else
3342 flp->lvl_next = n;
3343 flp->lvl = n;
3344 break;
3345 }
3346
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003347 // If the level is unknown for the first or the last line in the file, use
3348 // level 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349 if (flp->lvl < 0)
3350 {
3351 if (lnum <= 1)
3352 {
3353 flp->lvl = 0;
3354 flp->lvl_next = 0;
3355 }
3356 if (lnum == curbuf->b_ml.ml_line_count)
3357 flp->lvl_next = 0;
3358 }
3359
3360 curwin = win;
3361 curbuf = curwin->w_buffer;
3362#endif
3363}
3364
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003365// parseMarker() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366/*
3367 * Parse 'foldmarker' and set "foldendmarker", "foldstartmarkerlen" and
3368 * "foldendmarkerlen".
3369 * Relies on the option value to have been checked for correctness already.
3370 */
3371 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003372parseMarker(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373{
3374 foldendmarker = vim_strchr(wp->w_p_fmr, ',');
3375 foldstartmarkerlen = (int)(foldendmarker++ - wp->w_p_fmr);
3376 foldendmarkerlen = (int)STRLEN(foldendmarker);
3377}
3378
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003379// foldlevelMarker() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380/*
3381 * Low level function to get the foldlevel for the "marker" method.
3382 * "foldendmarker", "foldstartmarkerlen" and "foldendmarkerlen" must have been
3383 * set before calling this.
3384 * Requires that flp->lvl is set to the fold level of the previous line!
3385 * Careful: This means you can't call this function twice on the same line.
3386 * Doesn't use any caching.
3387 * Sets flp->start when a start marker was found.
3388 */
3389 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003390foldlevelMarker(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391{
3392 char_u *startmarker;
3393 int cstart;
3394 int cend;
3395 int start_lvl = flp->lvl;
3396 char_u *s;
3397 int n;
3398
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003399 // cache a few values for speed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 startmarker = flp->wp->w_p_fmr;
3401 cstart = *startmarker;
3402 ++startmarker;
3403 cend = *foldendmarker;
3404
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003405 // Default: no start found, next level is same as current level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 flp->start = 0;
3407 flp->lvl_next = flp->lvl;
3408
3409 s = ml_get_buf(flp->wp->w_buffer, flp->lnum + flp->off, FALSE);
3410 while (*s)
3411 {
3412 if (*s == cstart
3413 && STRNCMP(s + 1, startmarker, foldstartmarkerlen - 1) == 0)
3414 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003415 // found startmarker: set flp->lvl
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 s += foldstartmarkerlen;
3417 if (VIM_ISDIGIT(*s))
3418 {
3419 n = atoi((char *)s);
3420 if (n > 0)
3421 {
3422 flp->lvl = n;
3423 flp->lvl_next = n;
3424 if (n <= start_lvl)
3425 flp->start = 1;
3426 else
3427 flp->start = n - start_lvl;
3428 }
3429 }
3430 else
3431 {
3432 ++flp->lvl;
3433 ++flp->lvl_next;
3434 ++flp->start;
3435 }
3436 }
3437 else if (*s == cend
3438 && STRNCMP(s + 1, foldendmarker + 1, foldendmarkerlen - 1) == 0)
3439 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003440 // found endmarker: set flp->lvl_next
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 s += foldendmarkerlen;
3442 if (VIM_ISDIGIT(*s))
3443 {
3444 n = atoi((char *)s);
3445 if (n > 0)
3446 {
3447 flp->lvl = n;
3448 flp->lvl_next = n - 1;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003449 // never start a fold with an end marker
Bram Moolenaar3ee02292010-01-19 17:24:25 +01003450 if (flp->lvl_next > start_lvl)
3451 flp->lvl_next = start_lvl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452 }
3453 }
3454 else
3455 --flp->lvl_next;
3456 }
3457 else
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003458 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459 }
3460
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003461 // The level can't go negative, must be missing a start marker.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462 if (flp->lvl_next < 0)
3463 flp->lvl_next = 0;
3464}
3465
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003466// foldlevelSyntax() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467/*
3468 * Low level function to get the foldlevel for the "syntax" method.
3469 * Doesn't use any caching.
3470 */
3471 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003472foldlevelSyntax(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473{
3474#ifndef FEAT_SYN_HL
3475 flp->start = 0;
3476 flp->lvl = 0;
3477#else
3478 linenr_T lnum = flp->lnum + flp->off;
3479 int n;
3480
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003481 // Use the maximum fold level at the start of this line and the next.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482 flp->lvl = syn_get_foldlevel(flp->wp, lnum);
3483 flp->start = 0;
3484 if (lnum < flp->wp->w_buffer->b_ml.ml_line_count)
3485 {
3486 n = syn_get_foldlevel(flp->wp, lnum + 1);
3487 if (n > flp->lvl)
3488 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003489 flp->start = n - flp->lvl; // fold(s) start here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490 flp->lvl = n;
3491 }
3492 }
3493#endif
3494}
3495
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003496// functions for storing the fold state in a View {{{1
3497// put_folds() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498#if defined(FEAT_SESSION) || defined(PROTO)
Bram Moolenaard25c16e2016-01-29 22:13:30 +01003499static int put_folds_recurse(FILE *fd, garray_T *gap, linenr_T off);
3500static int put_foldopen_recurse(FILE *fd, win_T *wp, garray_T *gap, linenr_T off);
3501static int put_fold_open_close(FILE *fd, fold_T *fp, linenr_T off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502
3503/*
3504 * Write commands to "fd" to restore the manual folds in window "wp".
3505 * Return FAIL if writing fails.
3506 */
3507 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003508put_folds(FILE *fd, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509{
3510 if (foldmethodIsManual(wp))
3511 {
3512 if (put_line(fd, "silent! normal! zE") == FAIL
3513 || put_folds_recurse(fd, &wp->w_folds, (linenr_T)0) == FAIL)
3514 return FAIL;
3515 }
3516
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003517 // If some folds are manually opened/closed, need to restore that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003518 if (wp->w_fold_manual)
Bram Moolenaard25ad652012-02-29 19:20:02 +01003519 return put_foldopen_recurse(fd, wp, &wp->w_folds, (linenr_T)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520
3521 return OK;
3522}
3523
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003524// put_folds_recurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003525/*
3526 * Write commands to "fd" to recreate manually created folds.
3527 * Returns FAIL when writing failed.
3528 */
3529 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003530put_folds_recurse(FILE *fd, garray_T *gap, linenr_T off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003531{
3532 int i;
3533 fold_T *fp;
3534
3535 fp = (fold_T *)gap->ga_data;
3536 for (i = 0; i < gap->ga_len; i++)
3537 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003538 // Do nested folds first, they will be created closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539 if (put_folds_recurse(fd, &fp->fd_nested, off + fp->fd_top) == FAIL)
3540 return FAIL;
3541 if (fprintf(fd, "%ld,%ldfold", fp->fd_top + off,
3542 fp->fd_top + off + fp->fd_len - 1) < 0
3543 || put_eol(fd) == FAIL)
3544 return FAIL;
3545 ++fp;
3546 }
3547 return OK;
3548}
3549
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003550// put_foldopen_recurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551/*
3552 * Write commands to "fd" to open and close manually opened/closed folds.
3553 * Returns FAIL when writing failed.
3554 */
3555 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003556put_foldopen_recurse(
3557 FILE *fd,
3558 win_T *wp,
3559 garray_T *gap,
3560 linenr_T off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561{
3562 int i;
Bram Moolenaard25ad652012-02-29 19:20:02 +01003563 int level;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564 fold_T *fp;
3565
3566 fp = (fold_T *)gap->ga_data;
3567 for (i = 0; i < gap->ga_len; i++)
3568 {
3569 if (fp->fd_flags != FD_LEVEL)
3570 {
3571 if (fp->fd_nested.ga_len > 0)
3572 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003573 // open nested folds while this fold is open
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574 if (fprintf(fd, "%ld", fp->fd_top + off) < 0
3575 || put_eol(fd) == FAIL
Bram Moolenaar002a4ed2012-08-29 15:22:25 +02003576 || put_line(fd, "normal! zo") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577 return FAIL;
Bram Moolenaard25ad652012-02-29 19:20:02 +01003578 if (put_foldopen_recurse(fd, wp, &fp->fd_nested,
3579 off + fp->fd_top)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 == FAIL)
3581 return FAIL;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003582 // close the parent when needed
Bram Moolenaard25ad652012-02-29 19:20:02 +01003583 if (fp->fd_flags == FD_CLOSED)
3584 {
3585 if (put_fold_open_close(fd, fp, off) == FAIL)
3586 return FAIL;
3587 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588 }
Bram Moolenaard25ad652012-02-29 19:20:02 +01003589 else
3590 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003591 // Open or close the leaf according to the window foldlevel.
3592 // Do not close a leaf that is already closed, as it will close
3593 // the parent.
Bram Moolenaard25ad652012-02-29 19:20:02 +01003594 level = foldLevelWin(wp, off + fp->fd_top);
3595 if ((fp->fd_flags == FD_CLOSED && wp->w_p_fdl >= level)
3596 || (fp->fd_flags != FD_CLOSED && wp->w_p_fdl < level))
3597 if (put_fold_open_close(fd, fp, off) == FAIL)
3598 return FAIL;
3599 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600 }
3601 ++fp;
3602 }
3603
3604 return OK;
3605}
Bram Moolenaard25ad652012-02-29 19:20:02 +01003606
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003607// put_fold_open_close() {{{2
Bram Moolenaard25ad652012-02-29 19:20:02 +01003608/*
3609 * Write the open or close command to "fd".
3610 * Returns FAIL when writing failed.
3611 */
3612 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003613put_fold_open_close(FILE *fd, fold_T *fp, linenr_T off)
Bram Moolenaard25ad652012-02-29 19:20:02 +01003614{
3615 if (fprintf(fd, "%ld", fp->fd_top + off) < 0
3616 || put_eol(fd) == FAIL
Bram Moolenaar002a4ed2012-08-29 15:22:25 +02003617 || fprintf(fd, "normal! z%c",
Bram Moolenaard25ad652012-02-29 19:20:02 +01003618 fp->fd_flags == FD_CLOSED ? 'c' : 'o') < 0
3619 || put_eol(fd) == FAIL)
3620 return FAIL;
3621
3622 return OK;
3623}
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003624#endif // FEAT_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003626// }}}1
Bram Moolenaardb022f32019-09-01 17:52:32 +02003627#endif // defined(FEAT_FOLDING) || defined(PROTO)
3628
3629#if defined(FEAT_EVAL) || defined(PROTO)
3630
3631/*
3632 * "foldclosed()" and "foldclosedend()" functions
3633 */
3634 static void
3635foldclosed_both(
3636 typval_T *argvars UNUSED,
3637 typval_T *rettv,
3638 int end UNUSED)
3639{
3640# ifdef FEAT_FOLDING
3641 linenr_T lnum;
3642 linenr_T first, last;
3643
3644 lnum = tv_get_lnum(argvars);
3645 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
3646 {
3647 if (hasFoldingWin(curwin, lnum, &first, &last, FALSE, NULL))
3648 {
3649 if (end)
3650 rettv->vval.v_number = (varnumber_T)last;
3651 else
3652 rettv->vval.v_number = (varnumber_T)first;
3653 return;
3654 }
3655 }
3656#endif
3657 rettv->vval.v_number = -1;
3658}
3659
3660/*
3661 * "foldclosed()" function
3662 */
3663 void
3664f_foldclosed(typval_T *argvars, typval_T *rettv)
3665{
3666 foldclosed_both(argvars, rettv, FALSE);
3667}
3668
3669/*
3670 * "foldclosedend()" function
3671 */
3672 void
3673f_foldclosedend(typval_T *argvars, typval_T *rettv)
3674{
3675 foldclosed_both(argvars, rettv, TRUE);
3676}
3677
3678/*
3679 * "foldlevel()" function
3680 */
3681 void
3682f_foldlevel(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
3683{
3684# ifdef FEAT_FOLDING
3685 linenr_T lnum;
3686
3687 lnum = tv_get_lnum(argvars);
3688 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
3689 rettv->vval.v_number = foldLevel(lnum);
3690# endif
3691}
3692
3693/*
3694 * "foldtext()" function
3695 */
3696 void
3697f_foldtext(typval_T *argvars UNUSED, typval_T *rettv)
3698{
3699# ifdef FEAT_FOLDING
3700 linenr_T foldstart;
3701 linenr_T foldend;
3702 char_u *dashes;
3703 linenr_T lnum;
3704 char_u *s;
3705 char_u *r;
3706 int len;
3707 char *txt;
3708 long count;
3709# endif
3710
3711 rettv->v_type = VAR_STRING;
3712 rettv->vval.v_string = NULL;
3713# ifdef FEAT_FOLDING
3714 foldstart = (linenr_T)get_vim_var_nr(VV_FOLDSTART);
3715 foldend = (linenr_T)get_vim_var_nr(VV_FOLDEND);
3716 dashes = get_vim_var_str(VV_FOLDDASHES);
3717 if (foldstart > 0 && foldend <= curbuf->b_ml.ml_line_count
3718 && dashes != NULL)
3719 {
3720 // Find first non-empty line in the fold.
3721 for (lnum = foldstart; lnum < foldend; ++lnum)
3722 if (!linewhite(lnum))
3723 break;
3724
3725 // Find interesting text in this line.
3726 s = skipwhite(ml_get(lnum));
3727 // skip C comment-start
3728 if (s[0] == '/' && (s[1] == '*' || s[1] == '/'))
3729 {
3730 s = skipwhite(s + 2);
3731 if (*skipwhite(s) == NUL
3732 && lnum + 1 < (linenr_T)get_vim_var_nr(VV_FOLDEND))
3733 {
3734 s = skipwhite(ml_get(lnum + 1));
3735 if (*s == '*')
3736 s = skipwhite(s + 1);
3737 }
3738 }
3739 count = (long)(foldend - foldstart + 1);
3740 txt = NGETTEXT("+-%s%3ld line: ", "+-%s%3ld lines: ", count);
3741 r = alloc(STRLEN(txt)
3742 + STRLEN(dashes) // for %s
3743 + 20 // for %3ld
3744 + STRLEN(s)); // concatenated
3745 if (r != NULL)
3746 {
3747 sprintf((char *)r, txt, dashes, count);
3748 len = (int)STRLEN(r);
3749 STRCAT(r, s);
3750 // remove 'foldmarker' and 'commentstring'
3751 foldtext_cleanup(r + len);
3752 rettv->vval.v_string = r;
3753 }
3754 }
3755# endif
3756}
3757
3758/*
3759 * "foldtextresult(lnum)" function
3760 */
3761 void
3762f_foldtextresult(typval_T *argvars UNUSED, typval_T *rettv)
3763{
3764# ifdef FEAT_FOLDING
3765 linenr_T lnum;
3766 char_u *text;
3767 char_u buf[FOLD_TEXT_LEN];
3768 foldinfo_T foldinfo;
3769 int fold_count;
3770 static int entered = FALSE;
3771# endif
3772
3773 rettv->v_type = VAR_STRING;
3774 rettv->vval.v_string = NULL;
3775# ifdef FEAT_FOLDING
3776 if (entered)
3777 return; // reject recursive use
3778 entered = TRUE;
3779
3780 lnum = tv_get_lnum(argvars);
3781 // treat illegal types and illegal string values for {lnum} the same
3782 if (lnum < 0)
3783 lnum = 0;
3784 fold_count = foldedCount(curwin, lnum, &foldinfo);
3785 if (fold_count > 0)
3786 {
3787 text = get_foldtext(curwin, lnum, lnum + fold_count - 1,
3788 &foldinfo, buf);
3789 if (text == buf)
3790 text = vim_strsave(text);
3791 rettv->vval.v_string = text;
3792 }
3793
3794 entered = FALSE;
3795# endif
3796}
3797
3798#endif // FEAT_EVAL