blob: 5c41ed1b0552cdb976f198123c04d661e8fc7f31 [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
Bram Moolenaar071d4272004-06-13 20:20:40 +000068/*
69 * While updating the folds lines between invalid_top and invalid_bot have an
70 * undefined fold level. Only used for the window currently being updated.
71 */
72static linenr_T invalid_top = (linenr_T)0;
73static linenr_T invalid_bot = (linenr_T)0;
74
75/*
76 * When using 'foldexpr' we sometimes get the level of the next line, which
77 * calls foldlevel() to get the level of the current line, which hasn't been
78 * stored yet. To get around this chicken-egg problem the level of the
79 * previous line is stored here when available. prev_lnum is zero when the
80 * level is not available.
81 */
82static linenr_T prev_lnum = 0;
83static int prev_lnum_lvl = -1;
84
Bram Moolenaar217e1b82019-12-01 21:41:28 +010085// Flags used for "done" argument of setManualFold.
Bram Moolenaar071d4272004-06-13 20:20:40 +000086#define DONE_NOTHING 0
Bram Moolenaar217e1b82019-12-01 21:41:28 +010087#define DONE_ACTION 1 // did close or open a fold
88#define DONE_FOLD 2 // did find a fold
Bram Moolenaar071d4272004-06-13 20:20:40 +000089
90static int foldstartmarkerlen;
91static char_u *foldendmarker;
92static int foldendmarkerlen;
93
Bram Moolenaar217e1b82019-12-01 21:41:28 +010094// Exported folding functions. {{{1
95// copyFoldingState() {{{2
Bram Moolenaar4033c552017-09-16 20:54:51 +020096
Bram Moolenaar071d4272004-06-13 20:20:40 +000097/*
98 * Copy that folding state from window "wp_from" to window "wp_to".
99 */
100 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100101copyFoldingState(win_T *wp_from, win_T *wp_to)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102{
103 wp_to->w_fold_manual = wp_from->w_fold_manual;
104 wp_to->w_foldinvalid = wp_from->w_foldinvalid;
105 cloneFoldGrowArray(&wp_from->w_folds, &wp_to->w_folds);
106}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100108// hasAnyFolding() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109/*
110 * Return TRUE if there may be folded lines in the current window.
111 */
112 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100113hasAnyFolding(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114{
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100115 // very simple now, but can become more complex later
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116 return (win->w_p_fen
117 && (!foldmethodIsManual(win) || win->w_folds.ga_len > 0));
118}
119
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100120// hasFolding() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121/*
122 * Return TRUE if line "lnum" in the current window is part of a closed
123 * fold.
124 * When returning TRUE, *firstp and *lastp are set to the first and last
125 * lnum of the sequence of folded lines (skipped when NULL).
126 */
127 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100128hasFolding(linenr_T lnum, linenr_T *firstp, linenr_T *lastp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129{
130 return hasFoldingWin(curwin, lnum, firstp, lastp, TRUE, NULL);
131}
132
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100133// hasFoldingWin() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100135hasFoldingWin(
136 win_T *win,
137 linenr_T lnum,
138 linenr_T *firstp,
139 linenr_T *lastp,
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100140 int cache, // when TRUE: use cached values of window
141 foldinfo_T *infop) // where to store fold info
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142{
143 int had_folded = FALSE;
144 linenr_T first = 0;
145 linenr_T last = 0;
146 linenr_T lnum_rel = lnum;
147 int x;
148 fold_T *fp;
149 int level = 0;
150 int use_level = FALSE;
151 int maybe_small = FALSE;
152 garray_T *gap;
Bram Moolenaar945ec092016-06-08 21:17:43 +0200153 int low_level = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154
155 checkupdate(win);
Bram Moolenaar0c27cbc2018-11-14 21:45:32 +0100156
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157 /*
158 * Return quickly when there is no folding at all in this window.
159 */
160 if (!hasAnyFolding(win))
161 {
162 if (infop != NULL)
163 infop->fi_level = 0;
164 return FALSE;
165 }
166
167 if (cache)
168 {
169 /*
170 * First look in cached info for displayed lines. This is probably
171 * the fastest, but it can only be used if the entry is still valid.
172 */
173 x = find_wl_entry(win, lnum);
174 if (x >= 0)
175 {
176 first = win->w_lines[x].wl_lnum;
177 last = win->w_lines[x].wl_lastlnum;
178 had_folded = win->w_lines[x].wl_folded;
179 }
180 }
181
182 if (first == 0)
183 {
184 /*
185 * Recursively search for a fold that contains "lnum".
186 */
187 gap = &win->w_folds;
188 for (;;)
189 {
190 if (!foldFind(gap, lnum_rel, &fp))
191 break;
192
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100193 // Remember lowest level of fold that starts in "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194 if (lnum_rel == fp->fd_top && low_level == 0)
195 low_level = level + 1;
196
197 first += fp->fd_top;
198 last += fp->fd_top;
199
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100200 // is this fold closed?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201 had_folded = check_closed(win, fp, &use_level, level,
202 &maybe_small, lnum - lnum_rel);
203 if (had_folded)
204 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100205 // Fold closed: Set last and quit loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206 last += fp->fd_len - 1;
207 break;
208 }
209
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100210 // Fold found, but it's open: Check nested folds. Line number is
211 // relative to containing fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 gap = &fp->fd_nested;
213 lnum_rel -= fp->fd_top;
214 ++level;
215 }
216 }
217
218 if (!had_folded)
219 {
220 if (infop != NULL)
221 {
222 infop->fi_level = level;
223 infop->fi_lnum = lnum - lnum_rel;
224 infop->fi_low_level = low_level == 0 ? level : low_level;
225 }
226 return FALSE;
227 }
228
Bram Moolenaar05b20fb2015-04-13 20:52:36 +0200229 if (last > win->w_buffer->b_ml.ml_line_count)
230 last = win->w_buffer->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231 if (lastp != NULL)
232 *lastp = last;
233 if (firstp != NULL)
234 *firstp = first;
235 if (infop != NULL)
236 {
237 infop->fi_level = level + 1;
238 infop->fi_lnum = first;
239 infop->fi_low_level = low_level == 0 ? level + 1 : low_level;
240 }
241 return TRUE;
242}
243
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100244// foldLevel() {{{2
Bram Moolenaardb022f32019-09-01 17:52:32 +0200245#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246/*
247 * Return fold level at line number "lnum" in the current window.
248 */
Bram Moolenaardb022f32019-09-01 17:52:32 +0200249 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100250foldLevel(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251{
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100252 // While updating the folds lines between invalid_top and invalid_bot have
253 // an undefined fold level. Otherwise update the folds first.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254 if (invalid_top == (linenr_T)0)
255 checkupdate(curwin);
256 else if (lnum == prev_lnum && prev_lnum_lvl >= 0)
257 return prev_lnum_lvl;
258 else if (lnum >= invalid_top && lnum <= invalid_bot)
259 return -1;
260
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100261 // Return quickly when there is no folding at all in this window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262 if (!hasAnyFolding(curwin))
263 return 0;
264
265 return foldLevelWin(curwin, lnum);
266}
Bram Moolenaardb022f32019-09-01 17:52:32 +0200267#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100269// lineFolded() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270/*
271 * Low level function to check if a line is folded. Doesn't use any caching.
272 * Return TRUE if line is folded.
273 * Return FALSE if line is not folded.
274 * Return MAYBE if the line is folded when next to a folded line.
275 */
276 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100277lineFolded(win_T *win, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278{
279 return foldedCount(win, lnum, NULL) != 0;
280}
281
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100282// foldedCount() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283/*
284 * Count the number of lines that are folded at line number "lnum".
285 * Normally "lnum" is the first line of a possible fold, and the returned
286 * number is the number of lines in the fold.
287 * Doesn't use caching from the displayed window.
288 * Returns number of folded lines from "lnum", or 0 if line is not folded.
289 * When "infop" is not NULL, fills *infop with the fold level info.
290 */
291 long
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100292foldedCount(win_T *win, linenr_T lnum, foldinfo_T *infop)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000293{
294 linenr_T last;
295
296 if (hasFoldingWin(win, lnum, NULL, &last, FALSE, infop))
297 return (long)(last - lnum + 1);
298 return 0;
299}
300
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100301// foldmethodIsManual() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302/*
303 * Return TRUE if 'foldmethod' is "manual"
304 */
305 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100306foldmethodIsManual(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307{
Bram Moolenaarcf1e0232021-11-24 15:13:26 +0000308 return (wp->w_p_fdm[0] != NUL && wp->w_p_fdm[3] == 'u');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309}
310
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100311// foldmethodIsIndent() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312/*
313 * Return TRUE if 'foldmethod' is "indent"
314 */
315 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100316foldmethodIsIndent(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317{
318 return (wp->w_p_fdm[0] == 'i');
319}
320
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100321// foldmethodIsExpr() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322/*
323 * Return TRUE if 'foldmethod' is "expr"
324 */
325 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100326foldmethodIsExpr(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327{
Bram Moolenaarcf1e0232021-11-24 15:13:26 +0000328 return (wp->w_p_fdm[0] != NUL && wp->w_p_fdm[1] == 'x');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329}
330
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100331// foldmethodIsMarker() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332/*
333 * Return TRUE if 'foldmethod' is "marker"
334 */
335 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100336foldmethodIsMarker(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337{
Bram Moolenaarcf1e0232021-11-24 15:13:26 +0000338 return (wp->w_p_fdm[0] != NUL && wp->w_p_fdm[2] == 'r');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339}
340
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100341// foldmethodIsSyntax() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342/*
343 * Return TRUE if 'foldmethod' is "syntax"
344 */
345 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100346foldmethodIsSyntax(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347{
348 return (wp->w_p_fdm[0] == 's');
349}
350
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100351// foldmethodIsDiff() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352/*
353 * Return TRUE if 'foldmethod' is "diff"
354 */
355 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100356foldmethodIsDiff(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000357{
358 return (wp->w_p_fdm[0] == 'd');
359}
360
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100361// closeFold() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362/*
363 * Close fold for current window at line "lnum".
364 * Repeat "count" times.
365 */
366 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100367closeFold(linenr_T lnum, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368{
369 setFoldRepeat(lnum, count, FALSE);
370}
371
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100372// closeFoldRecurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373/*
374 * Close fold for current window at line "lnum" recursively.
375 */
376 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100377closeFoldRecurse(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378{
379 (void)setManualFold(lnum, FALSE, TRUE, NULL);
380}
381
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100382// opFoldRange() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383/*
384 * Open or Close folds for current window in lines "first" to "last".
385 * Used for "zo", "zO", "zc" and "zC" in Visual mode.
386 */
387 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100388opFoldRange(
389 linenr_T first,
390 linenr_T last,
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100391 int opening, // TRUE to open, FALSE to close
392 int recurse, // TRUE to do it recursively
393 int had_visual) // TRUE when Visual selection used
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394{
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100395 int done = DONE_NOTHING; // avoid error messages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396 linenr_T lnum;
397 linenr_T lnum_next;
398
399 for (lnum = first; lnum <= last; lnum = lnum_next + 1)
400 {
401 lnum_next = lnum;
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100402 // Opening one level only: next fold to open is after the one going to
403 // be opened.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404 if (opening && !recurse)
405 (void)hasFolding(lnum, NULL, &lnum_next);
406 (void)setManualFold(lnum, opening, recurse, &done);
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100407 // Closing one level only: next line to close a fold is after just
408 // closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409 if (!opening && !recurse)
410 (void)hasFolding(lnum, NULL, &lnum_next);
411 }
412 if (done == DONE_NOTHING)
Bram Moolenaarb09feaa2022-01-02 20:20:45 +0000413 emsg(_(e_no_fold_found));
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100414 // Force a redraw to remove the Visual highlighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415 if (had_visual)
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100416 redraw_curbuf_later(UPD_INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417}
418
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100419// openFold() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420/*
421 * Open fold for current window at line "lnum".
422 * Repeat "count" times.
423 */
424 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100425openFold(linenr_T lnum, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426{
427 setFoldRepeat(lnum, count, TRUE);
428}
429
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100430// openFoldRecurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431/*
432 * Open fold for current window at line "lnum" recursively.
433 */
434 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100435openFoldRecurse(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436{
437 (void)setManualFold(lnum, TRUE, TRUE, NULL);
438}
439
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100440// foldOpenCursor() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441/*
442 * Open folds until the cursor line is not in a closed fold.
443 */
444 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100445foldOpenCursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000446{
447 int done;
448
449 checkupdate(curwin);
450 if (hasAnyFolding(curwin))
451 for (;;)
452 {
453 done = DONE_NOTHING;
454 (void)setManualFold(curwin->w_cursor.lnum, TRUE, FALSE, &done);
455 if (!(done & DONE_ACTION))
456 break;
457 }
458}
459
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100460// newFoldLevel() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461/*
462 * Set new foldlevel for current window.
463 */
464 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100465newFoldLevel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000466{
467 newFoldLevelWin(curwin);
468
469#ifdef FEAT_DIFF
470 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
471 {
472 win_T *wp;
473
474 /*
475 * Set the same foldlevel in other windows in diff mode.
476 */
477 FOR_ALL_WINDOWS(wp)
478 {
479 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
480 {
481 wp->w_p_fdl = curwin->w_p_fdl;
482 newFoldLevelWin(wp);
483 }
484 }
485 }
486#endif
487}
488
489 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100490newFoldLevelWin(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491{
492 fold_T *fp;
493 int i;
494
495 checkupdate(wp);
496 if (wp->w_fold_manual)
497 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100498 // Set all flags for the first level of folds to FD_LEVEL. Following
499 // manual open/close will then change the flags to FD_OPEN or
500 // FD_CLOSED for those folds that don't use 'foldlevel'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501 fp = (fold_T *)wp->w_folds.ga_data;
502 for (i = 0; i < wp->w_folds.ga_len; ++i)
503 fp[i].fd_flags = FD_LEVEL;
504 wp->w_fold_manual = FALSE;
505 }
506 changed_window_setting_win(wp);
507}
508
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100509// foldCheckClose() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510/*
511 * Apply 'foldlevel' to all folds that don't contain the cursor.
512 */
513 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100514foldCheckClose(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000515{
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +0000516 if (*p_fcl == NUL)
517 return;
518
Yegappan Lakshmanan1cfb14a2023-01-09 19:04:23 +0000519 // 'foldclose' can only be "all" right now
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +0000520 checkupdate(curwin);
521 if (checkCloseRec(&curwin->w_folds, curwin->w_cursor.lnum,
522 (int)curwin->w_p_fdl))
523 changed_window_setting();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524}
525
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100526// checkCloseRec() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100528checkCloseRec(garray_T *gap, linenr_T lnum, int level)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529{
530 fold_T *fp;
531 int retval = FALSE;
532 int i;
533
534 fp = (fold_T *)gap->ga_data;
535 for (i = 0; i < gap->ga_len; ++i)
536 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100537 // Only manually opened folds may need to be closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538 if (fp[i].fd_flags == FD_OPEN)
539 {
540 if (level <= 0 && (lnum < fp[i].fd_top
541 || lnum >= fp[i].fd_top + fp[i].fd_len))
542 {
543 fp[i].fd_flags = FD_LEVEL;
544 retval = TRUE;
545 }
546 else
547 retval |= checkCloseRec(&fp[i].fd_nested, lnum - fp[i].fd_top,
548 level - 1);
549 }
550 }
551 return retval;
552}
553
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100554// foldCreateAllowed() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555/*
556 * Return TRUE if it's allowed to manually create or delete a fold.
557 * Give an error message and return FALSE if not.
558 */
559 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100560foldManualAllowed(int create)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561{
562 if (foldmethodIsManual(curwin) || foldmethodIsMarker(curwin))
563 return TRUE;
564 if (create)
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000565 emsg(_(e_cannot_create_fold_with_current_foldmethod));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 else
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000567 emsg(_(e_cannot_delete_fold_with_current_foldmethod));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568 return FALSE;
569}
570
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100571// foldCreate() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572/*
573 * Create a fold from line "start" to line "end" (inclusive) in the current
574 * window.
575 */
576 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100577foldCreate(linenr_T start, linenr_T end)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578{
579 fold_T *fp;
580 garray_T *gap;
581 garray_T fold_ga;
582 int i, j;
583 int cont;
584 int use_level = FALSE;
585 int closed = FALSE;
586 int level = 0;
587 linenr_T start_rel = start;
588 linenr_T end_rel = end;
589
590 if (start > end)
591 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100592 // reverse the range
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 end = start_rel;
594 start = end_rel;
595 start_rel = start;
596 end_rel = end;
597 }
598
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100599 // When 'foldmethod' is "marker" add markers, which creates the folds.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000600 if (foldmethodIsMarker(curwin))
601 {
602 foldCreateMarkers(start, end);
603 return;
604 }
605
606 checkupdate(curwin);
607
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100608 // Find the place to insert the new fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609 gap = &curwin->w_folds;
Bram Moolenaar2c93c682020-08-31 21:15:02 +0200610 if (gap->ga_len == 0)
611 i = 0;
612 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613 {
Bram Moolenaar2c93c682020-08-31 21:15:02 +0200614 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 {
Bram Moolenaar2c93c682020-08-31 21:15:02 +0200616 if (!foldFind(gap, start_rel, &fp))
617 break;
618 if (fp->fd_top + fp->fd_len > end_rel)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619 {
Bram Moolenaar2c93c682020-08-31 21:15:02 +0200620 // New fold is completely inside this fold: Go one level
621 // deeper.
622 gap = &fp->fd_nested;
623 start_rel -= fp->fd_top;
624 end_rel -= fp->fd_top;
625 if (use_level || fp->fd_flags == FD_LEVEL)
626 {
627 use_level = TRUE;
628 if (level >= curwin->w_p_fdl)
629 closed = TRUE;
630 }
631 else if (fp->fd_flags == FD_CLOSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632 closed = TRUE;
Bram Moolenaar2c93c682020-08-31 21:15:02 +0200633 ++level;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 }
Bram Moolenaar2c93c682020-08-31 21:15:02 +0200635 else
636 {
637 // This fold and new fold overlap: Insert here and move some
638 // folds inside the new fold.
639 break;
640 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 }
Bram Moolenaar5e1f22f2020-11-10 18:23:52 +0100642 if (gap->ga_len == 0)
643 i = 0;
644 else
645 i = (int)(fp - (fold_T *)gap->ga_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 }
647
Yegappan Lakshmananfadc02a2023-01-27 21:03:12 +0000648 if (ga_grow(gap, 1) == FAIL)
Yegappan Lakshmanandc4daa32023-01-02 16:54:53 +0000649 return;
650
651 fp = (fold_T *)gap->ga_data + i;
652 ga_init2(&fold_ga, sizeof(fold_T), 10);
653
654 // Count number of folds that will be contained in the new fold.
655 for (cont = 0; i + cont < gap->ga_len; ++cont)
656 if (fp[cont].fd_top > end_rel)
657 break;
658 if (cont > 0 && ga_grow(&fold_ga, cont) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659 {
Yegappan Lakshmanandc4daa32023-01-02 16:54:53 +0000660 // If the first fold starts before the new fold, let the new fold
661 // start there. Otherwise the existing fold would change.
662 if (start_rel > fp->fd_top)
663 start_rel = fp->fd_top;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664
Yegappan Lakshmanandc4daa32023-01-02 16:54:53 +0000665 // When last contained fold isn't completely contained, adjust end
666 // of new fold.
667 if (end_rel < fp[cont - 1].fd_top + fp[cont - 1].fd_len - 1)
668 end_rel = fp[cont - 1].fd_top + fp[cont - 1].fd_len - 1;
669 // Move contained folds to inside new fold.
670 mch_memmove(fold_ga.ga_data, fp, sizeof(fold_T) * cont);
671 fold_ga.ga_len += cont;
672 i += cont;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673
Yegappan Lakshmanandc4daa32023-01-02 16:54:53 +0000674 // Adjust line numbers in contained folds to be relative to the
675 // new fold.
676 for (j = 0; j < cont; ++j)
677 ((fold_T *)fold_ga.ga_data)[j].fd_top -= start_rel;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 }
Yegappan Lakshmanandc4daa32023-01-02 16:54:53 +0000679 // Move remaining entries to after the new fold.
680 if (i < gap->ga_len)
681 mch_memmove(fp + 1, (fold_T *)gap->ga_data + i,
682 sizeof(fold_T) * (gap->ga_len - i));
683 gap->ga_len = gap->ga_len + 1 - cont;
684
685 // insert new fold
686 fp->fd_nested = fold_ga;
687 fp->fd_top = start_rel;
688 fp->fd_len = end_rel - start_rel + 1;
689
690 // We want the new fold to be closed. If it would remain open because
691 // of using 'foldlevel', need to adjust fd_flags of containing folds.
692 if (use_level && !closed && level < curwin->w_p_fdl)
693 closeFold(start, 1L);
694 if (!use_level)
695 curwin->w_fold_manual = TRUE;
696 fp->fd_flags = FD_CLOSED;
697 fp->fd_small = MAYBE;
698
699 // redraw
700 changed_window_setting();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701}
702
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100703// deleteFold() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704/*
705 * Delete a fold at line "start" in the current window.
706 * When "end" is not 0, delete all folds from "start" to "end".
707 * When "recursive" is TRUE delete recursively.
708 */
709 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100710deleteFold(
711 linenr_T start,
712 linenr_T end,
713 int recursive,
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100714 int had_visual) // TRUE when Visual selection used
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715{
716 garray_T *gap;
717 fold_T *fp;
718 garray_T *found_ga;
719 fold_T *found_fp = NULL;
720 linenr_T found_off = 0;
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000721 int use_level;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722 int maybe_small = FALSE;
723 int level = 0;
724 linenr_T lnum = start;
725 linenr_T lnum_off;
726 int did_one = FALSE;
727 linenr_T first_lnum = MAXLNUM;
728 linenr_T last_lnum = 0;
729
730 checkupdate(curwin);
731
732 while (lnum <= end)
733 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100734 // Find the deepest fold for "start".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735 gap = &curwin->w_folds;
736 found_ga = NULL;
737 lnum_off = 0;
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000738 use_level = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 for (;;)
740 {
741 if (!foldFind(gap, lnum - lnum_off, &fp))
742 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100743 // lnum is inside this fold, remember info
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 found_ga = gap;
745 found_fp = fp;
746 found_off = lnum_off;
747
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100748 // if "lnum" is folded, don't check nesting
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 if (check_closed(curwin, fp, &use_level, level,
750 &maybe_small, lnum_off))
751 break;
752
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100753 // check nested folds
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754 gap = &fp->fd_nested;
755 lnum_off += fp->fd_top;
756 ++level;
757 }
758 if (found_ga == NULL)
759 {
760 ++lnum;
761 }
762 else
763 {
764 lnum = found_fp->fd_top + found_fp->fd_len + found_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765
766 if (foldmethodIsManual(curwin))
767 deleteFoldEntry(found_ga,
768 (int)(found_fp - (fold_T *)found_ga->ga_data), recursive);
769 else
770 {
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000771 if (first_lnum > found_fp->fd_top + found_off)
772 first_lnum = found_fp->fd_top + found_off;
773 if (last_lnum < lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774 last_lnum = lnum;
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000775 if (!did_one)
776 parseMarker(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777 deleteFoldMarkers(found_fp, recursive, found_off);
778 }
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000779 did_one = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100781 // redraw window
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 changed_window_setting();
783 }
784 }
785 if (!did_one)
786 {
Bram Moolenaarb09feaa2022-01-02 20:20:45 +0000787 emsg(_(e_no_fold_found));
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100788 // Force a redraw to remove the Visual highlighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 if (had_visual)
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100790 redraw_curbuf_later(UPD_INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 }
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000792 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100793 // Deleting markers may make cursor column invalid.
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000794 check_cursor_col();
795
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 if (last_lnum > 0)
797 changed_lines(first_lnum, (colnr_T)0, last_lnum, 0L);
798}
799
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100800// clearFolding() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801/*
802 * Remove all folding for window "win".
803 */
804 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100805clearFolding(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806{
807 deleteFoldRecurse(&win->w_folds);
808 win->w_foldinvalid = FALSE;
809}
810
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100811// foldUpdate() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812/*
813 * Update folds for changes in the buffer of a window.
814 * Note that inserted/deleted lines must have already been taken care of by
815 * calling foldMarkAdjust().
816 * The changes in lines from top to bot (inclusive).
817 */
818 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100819foldUpdate(win_T *wp, linenr_T top, linenr_T bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820{
821 fold_T *fp;
822
Bram Moolenaar429fcfb2016-04-14 16:22:04 +0200823 if (disable_fold_update > 0)
824 return;
Bram Moolenaar4f57eef2019-08-24 20:54:19 +0200825#ifdef FEAT_DIFF
826 if (need_diff_redraw)
827 // will update later
828 return;
829#endif
Bram Moolenaar429fcfb2016-04-14 16:22:04 +0200830
Bram Moolenaar64f37d32020-08-31 19:58:13 +0200831 if (wp->w_folds.ga_len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 {
Brandon Simmons3fcccf92022-05-20 18:25:21 +0100833 linenr_T maybe_small_start = top;
834 linenr_T maybe_small_end = bot;
835
836 // Mark all folds from top to bot (or bot to top) as maybe-small.
837 if (top > bot)
838 {
839 maybe_small_start = bot;
840 maybe_small_end = top;
841 }
842 (void)foldFind(&wp->w_folds, maybe_small_start, &fp);
Bram Moolenaar64f37d32020-08-31 19:58:13 +0200843 while (fp < (fold_T *)wp->w_folds.ga_data + wp->w_folds.ga_len
Brandon Simmons3fcccf92022-05-20 18:25:21 +0100844 && fp->fd_top <= maybe_small_end)
Bram Moolenaar64f37d32020-08-31 19:58:13 +0200845 {
846 fp->fd_small = MAYBE;
847 ++fp;
848 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 }
850
851 if (foldmethodIsIndent(wp)
852 || foldmethodIsExpr(wp)
853 || foldmethodIsMarker(wp)
854#ifdef FEAT_DIFF
855 || foldmethodIsDiff(wp)
856#endif
857 || foldmethodIsSyntax(wp))
Bram Moolenaarfa6d5af2007-10-14 13:33:20 +0000858 {
859 int save_got_int = got_int;
860
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100861 // reset got_int here, otherwise it won't work
Bram Moolenaarfa6d5af2007-10-14 13:33:20 +0000862 got_int = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 foldUpdateIEMS(wp, top, bot);
Bram Moolenaarfa6d5af2007-10-14 13:33:20 +0000864 got_int |= save_got_int;
865 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866}
867
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100868// foldUpdateAll() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869/*
870 * Update all lines in a window for folding.
871 * Used when a fold setting changes or after reloading the buffer.
872 * The actual updating is postponed until fold info is used, to avoid doing
873 * every time a setting is changed or a syntax item is added.
874 */
875 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100876foldUpdateAll(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877{
878 win->w_foldinvalid = TRUE;
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100879 redraw_win_later(win, UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880}
881
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100882// foldMoveTo() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883/*
884 * If "updown" is FALSE: Move to the start or end of the fold.
885 * If "updown" is TRUE: move to fold at the same level.
886 * If not moved return FAIL.
887 */
888 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100889foldMoveTo(
890 int updown,
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100891 int dir, // FORWARD or BACKWARD
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100892 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893{
894 long n;
895 int retval = FAIL;
896 linenr_T lnum_off;
897 linenr_T lnum_found;
898 linenr_T lnum;
899 int use_level;
900 int maybe_small;
901 garray_T *gap;
902 fold_T *fp;
903 int level;
904 int last;
905
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000906 checkupdate(curwin);
907
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100908 // Repeat "count" times.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 for (n = 0; n < count; ++n)
910 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100911 // Find nested folds. Stop when a fold is closed. The deepest fold
912 // that moves the cursor is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 lnum_off = 0;
914 gap = &curwin->w_folds;
Bram Moolenaarc136a352020-11-03 20:05:40 +0100915 if (gap->ga_len == 0)
916 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 use_level = FALSE;
918 maybe_small = FALSE;
919 lnum_found = curwin->w_cursor.lnum;
920 level = 0;
921 last = FALSE;
922 for (;;)
923 {
924 if (!foldFind(gap, curwin->w_cursor.lnum - lnum_off, &fp))
925 {
Bram Moolenaar6a78f322020-12-21 14:01:41 +0100926 if (!updown || gap->ga_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 break;
928
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100929 // When moving up, consider a fold above the cursor; when
930 // moving down consider a fold below the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 if (dir == FORWARD)
932 {
933 if (fp - (fold_T *)gap->ga_data >= gap->ga_len)
934 break;
935 --fp;
936 }
937 else
938 {
939 if (fp == (fold_T *)gap->ga_data)
940 break;
941 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100942 // don't look for contained folds, they will always move
943 // the cursor too far.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 last = TRUE;
945 }
946
947 if (!last)
948 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100949 // Check if this fold is closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 if (check_closed(curwin, fp, &use_level, level,
951 &maybe_small, lnum_off))
952 last = TRUE;
953
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100954 // "[z" and "]z" stop at closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955 if (last && !updown)
956 break;
957 }
958
959 if (updown)
960 {
961 if (dir == FORWARD)
962 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100963 // to start of next fold if there is one
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964 if (fp + 1 - (fold_T *)gap->ga_data < gap->ga_len)
965 {
966 lnum = fp[1].fd_top + lnum_off;
967 if (lnum > curwin->w_cursor.lnum)
968 lnum_found = lnum;
969 }
970 }
971 else
972 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100973 // to end of previous fold if there is one
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974 if (fp > (fold_T *)gap->ga_data)
975 {
976 lnum = fp[-1].fd_top + lnum_off + fp[-1].fd_len - 1;
977 if (lnum < curwin->w_cursor.lnum)
978 lnum_found = lnum;
979 }
980 }
981 }
982 else
983 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100984 // Open fold found, set cursor to its start/end and then check
985 // nested folds.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986 if (dir == FORWARD)
987 {
988 lnum = fp->fd_top + lnum_off + fp->fd_len - 1;
989 if (lnum > curwin->w_cursor.lnum)
990 lnum_found = lnum;
991 }
992 else
993 {
994 lnum = fp->fd_top + lnum_off;
995 if (lnum < curwin->w_cursor.lnum)
996 lnum_found = lnum;
997 }
998 }
999
1000 if (last)
1001 break;
1002
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001003 // Check nested folds (if any).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 gap = &fp->fd_nested;
1005 lnum_off += fp->fd_top;
1006 ++level;
1007 }
1008 if (lnum_found != curwin->w_cursor.lnum)
1009 {
1010 if (retval == FAIL)
1011 setpcmark();
1012 curwin->w_cursor.lnum = lnum_found;
1013 curwin->w_cursor.col = 0;
1014 retval = OK;
1015 }
1016 else
1017 break;
1018 }
1019
1020 return retval;
1021}
1022
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001023// foldInitWin() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024/*
1025 * Init the fold info in a new window.
1026 */
1027 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001028foldInitWin(win_T *new_win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029{
Bram Moolenaar04935fb2022-01-08 16:19:22 +00001030 ga_init2(&new_win->w_folds, sizeof(fold_T), 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031}
1032
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001033// find_wl_entry() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034/*
1035 * Find an entry in the win->w_lines[] array for buffer line "lnum".
1036 * Only valid entries are considered (for entries where wl_valid is FALSE the
1037 * line number can be wrong).
1038 * Returns index of entry or -1 if not found.
1039 */
1040 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001041find_wl_entry(win_T *win, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042{
1043 int i;
1044
Bram Moolenaar08bb82e2010-03-17 16:45:12 +01001045 for (i = 0; i < win->w_lines_valid; ++i)
1046 if (win->w_lines[i].wl_valid)
1047 {
1048 if (lnum < win->w_lines[i].wl_lnum)
1049 return -1;
1050 if (lnum <= win->w_lines[i].wl_lastlnum)
1051 return i;
1052 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053 return -1;
1054}
1055
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001056// foldAdjustVisual() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057/*
1058 * Adjust the Visual area to include any fold at the start or end completely.
1059 */
1060 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001061foldAdjustVisual(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062{
1063 pos_T *start, *end;
1064 char_u *ptr;
1065
1066 if (!VIsual_active || !hasAnyFolding(curwin))
1067 return;
1068
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001069 if (LTOREQ_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070 {
1071 start = &VIsual;
1072 end = &curwin->w_cursor;
1073 }
1074 else
1075 {
1076 start = &curwin->w_cursor;
1077 end = &VIsual;
1078 }
1079 if (hasFolding(start->lnum, &start->lnum, NULL))
1080 start->col = 0;
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00001081
1082 if (!hasFolding(end->lnum, NULL, &end->lnum))
1083 return;
1084
1085 ptr = ml_get(end->lnum);
1086 end->col = (colnr_T)STRLEN(ptr);
1087 if (end->col > 0 && *p_sel == 'o')
1088 --end->col;
1089 // prevent cursor from moving on the trail byte
1090 if (has_mbyte)
1091 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001094// cursor_foldstart() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095/*
1096 * Move the cursor to the first line of a closed fold.
1097 */
1098 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001099foldAdjustCursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100{
1101 (void)hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL);
1102}
1103
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001104// Internal functions for "fold_T" {{{1
1105// cloneFoldGrowArray() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106/*
1107 * Will "clone" (i.e deep copy) a garray_T of folds.
1108 *
1109 * Return FAIL if the operation cannot be completed, otherwise OK.
1110 */
1111 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001112cloneFoldGrowArray(garray_T *from, garray_T *to)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113{
1114 int i;
1115 fold_T *from_p;
1116 fold_T *to_p;
1117
1118 ga_init2(to, from->ga_itemsize, from->ga_growsize);
1119 if (from->ga_len == 0 || ga_grow(to, from->ga_len) == FAIL)
1120 return;
1121
1122 from_p = (fold_T *)from->ga_data;
1123 to_p = (fold_T *)to->ga_data;
1124
1125 for (i = 0; i < from->ga_len; i++)
1126 {
1127 to_p->fd_top = from_p->fd_top;
1128 to_p->fd_len = from_p->fd_len;
1129 to_p->fd_flags = from_p->fd_flags;
1130 to_p->fd_small = from_p->fd_small;
1131 cloneFoldGrowArray(&from_p->fd_nested, &to_p->fd_nested);
1132 ++to->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133 ++from_p;
1134 ++to_p;
1135 }
1136}
1137
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001138// foldFind() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139/*
1140 * Search for line "lnum" in folds of growarray "gap".
Brandon Simmons2c407072022-04-23 13:50:17 +01001141 * Set "*fpp" to the fold struct for the fold that contains "lnum" or
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 * the first fold below it (careful: it can be beyond the end of the array!).
1143 * Returns FALSE when there is no fold that contains "lnum".
1144 */
1145 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001146foldFind(garray_T *gap, linenr_T lnum, fold_T **fpp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147{
1148 linenr_T low, high;
1149 fold_T *fp;
1150 int i;
1151
Bram Moolenaar64f37d32020-08-31 19:58:13 +02001152 if (gap->ga_len == 0)
1153 {
1154 *fpp = NULL;
1155 return FALSE;
1156 }
1157
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158 /*
1159 * Perform a binary search.
1160 * "low" is lowest index of possible match.
1161 * "high" is highest index of possible match.
1162 */
1163 fp = (fold_T *)gap->ga_data;
1164 low = 0;
1165 high = gap->ga_len - 1;
1166 while (low <= high)
1167 {
1168 i = (low + high) / 2;
1169 if (fp[i].fd_top > lnum)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001170 // fold below lnum, adjust high
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 high = i - 1;
1172 else if (fp[i].fd_top + fp[i].fd_len <= lnum)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001173 // fold above lnum, adjust low
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 low = i + 1;
1175 else
1176 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001177 // lnum is inside this fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 *fpp = fp + i;
1179 return TRUE;
1180 }
1181 }
1182 *fpp = fp + low;
1183 return FALSE;
1184}
1185
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001186// foldLevelWin() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187/*
1188 * Return fold level at line number "lnum" in window "wp".
1189 */
1190 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001191foldLevelWin(win_T *wp, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192{
1193 fold_T *fp;
1194 linenr_T lnum_rel = lnum;
1195 int level = 0;
1196 garray_T *gap;
1197
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001198 // Recursively search for a fold that contains "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 gap = &wp->w_folds;
1200 for (;;)
1201 {
1202 if (!foldFind(gap, lnum_rel, &fp))
1203 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001204 // Check nested folds. Line number is relative to containing fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 gap = &fp->fd_nested;
1206 lnum_rel -= fp->fd_top;
1207 ++level;
1208 }
1209
1210 return level;
1211}
1212
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001213// checkupdate() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214/*
1215 * Check if the folds in window "wp" are invalid and update them if needed.
1216 */
1217 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001218checkupdate(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219{
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00001220 if (!wp->w_foldinvalid)
1221 return;
1222
1223 foldUpdate(wp, (linenr_T)1, (linenr_T)MAXLNUM); // will update all
1224 wp->w_foldinvalid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225}
1226
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001227// setFoldRepeat() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228/*
1229 * Open or close fold for current window at line "lnum".
1230 * Repeat "count" times.
1231 */
1232 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001233setFoldRepeat(linenr_T lnum, long count, int do_open)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234{
1235 int done;
1236 long n;
1237
1238 for (n = 0; n < count; ++n)
1239 {
1240 done = DONE_NOTHING;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00001241 (void)setManualFold(lnum, do_open, FALSE, &done);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242 if (!(done & DONE_ACTION))
1243 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001244 // Only give an error message when no fold could be opened.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 if (n == 0 && !(done & DONE_FOLD))
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001246 emsg(_(e_no_fold_found));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 break;
1248 }
1249 }
1250}
1251
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001252// setManualFold() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253/*
1254 * Open or close the fold in the current window which contains "lnum".
1255 * Also does this for other windows in diff mode when needed.
1256 */
1257 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001258setManualFold(
1259 linenr_T lnum,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001260 int opening, // TRUE when opening, FALSE when closing
1261 int recurse, // TRUE when closing/opening recursive
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001262 int *donep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263{
1264#ifdef FEAT_DIFF
1265 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
1266 {
1267 win_T *wp;
1268 linenr_T dlnum;
1269
1270 /*
1271 * Do the same operation in other windows in diff mode. Calculate the
1272 * line number from the diffs.
1273 */
1274 FOR_ALL_WINDOWS(wp)
1275 {
1276 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
1277 {
1278 dlnum = diff_lnum_win(curwin->w_cursor.lnum, wp);
1279 if (dlnum != 0)
1280 (void)setManualFoldWin(wp, dlnum, opening, recurse, NULL);
1281 }
1282 }
1283 }
1284#endif
1285
1286 return setManualFoldWin(curwin, lnum, opening, recurse, donep);
1287}
1288
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001289// setManualFoldWin() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290/*
1291 * Open or close the fold in window "wp" which contains "lnum".
1292 * "donep", when not NULL, points to flag that is set to DONE_FOLD when some
1293 * fold was found and to DONE_ACTION when some fold was opened or closed.
1294 * When "donep" is NULL give an error message when no fold was found for
1295 * "lnum", but only if "wp" is "curwin".
1296 * Return the line number of the next line that could be closed.
1297 * It's only valid when "opening" is TRUE!
1298 */
1299 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001300setManualFoldWin(
1301 win_T *wp,
1302 linenr_T lnum,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001303 int opening, // TRUE when opening, FALSE when closing
1304 int recurse, // TRUE when closing/opening recursive
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001305 int *donep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306{
1307 fold_T *fp;
1308 fold_T *fp2;
1309 fold_T *found = NULL;
1310 int j;
1311 int level = 0;
1312 int use_level = FALSE;
1313 int found_fold = FALSE;
1314 garray_T *gap;
1315 linenr_T next = MAXLNUM;
1316 linenr_T off = 0;
1317 int done = 0;
1318
1319 checkupdate(wp);
1320
1321 /*
1322 * Find the fold, open or close it.
1323 */
1324 gap = &wp->w_folds;
1325 for (;;)
1326 {
1327 if (!foldFind(gap, lnum, &fp))
1328 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001329 // If there is a following fold, continue there next time.
Bram Moolenaar9c2b0662020-09-01 19:56:15 +02001330 if (fp != NULL && fp < (fold_T *)gap->ga_data + gap->ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 next = fp->fd_top + off;
1332 break;
1333 }
1334
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001335 // lnum is inside this fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 found_fold = TRUE;
1337
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001338 // If there is a following fold, continue there next time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 if (fp + 1 < (fold_T *)gap->ga_data + gap->ga_len)
1340 next = fp[1].fd_top + off;
1341
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001342 // Change from level-dependent folding to manual.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 if (use_level || fp->fd_flags == FD_LEVEL)
1344 {
1345 use_level = TRUE;
1346 if (level >= wp->w_p_fdl)
1347 fp->fd_flags = FD_CLOSED;
1348 else
1349 fp->fd_flags = FD_OPEN;
1350 fp2 = (fold_T *)fp->fd_nested.ga_data;
1351 for (j = 0; j < fp->fd_nested.ga_len; ++j)
1352 fp2[j].fd_flags = FD_LEVEL;
1353 }
1354
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001355 // Simple case: Close recursively means closing the fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356 if (!opening && recurse)
1357 {
1358 if (fp->fd_flags != FD_CLOSED)
1359 {
1360 done |= DONE_ACTION;
1361 fp->fd_flags = FD_CLOSED;
1362 }
1363 }
1364 else if (fp->fd_flags == FD_CLOSED)
1365 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001366 // When opening, open topmost closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367 if (opening)
1368 {
1369 fp->fd_flags = FD_OPEN;
1370 done |= DONE_ACTION;
1371 if (recurse)
1372 foldOpenNested(fp);
1373 }
1374 break;
1375 }
1376
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001377 // fold is open, check nested folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 found = fp;
1379 gap = &fp->fd_nested;
1380 lnum -= fp->fd_top;
1381 off += fp->fd_top;
1382 ++level;
1383 }
1384 if (found_fold)
1385 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001386 // When closing and not recurse, close deepest open fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387 if (!opening && found != NULL)
1388 {
1389 found->fd_flags = FD_CLOSED;
1390 done |= DONE_ACTION;
1391 }
1392 wp->w_fold_manual = TRUE;
1393 if (done & DONE_ACTION)
1394 changed_window_setting_win(wp);
1395 done |= DONE_FOLD;
1396 }
1397 else if (donep == NULL && wp == curwin)
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001398 emsg(_(e_no_fold_found));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399
1400 if (donep != NULL)
1401 *donep |= done;
1402
1403 return next;
1404}
1405
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001406// foldOpenNested() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407/*
1408 * Open all nested folds in fold "fpr" recursively.
1409 */
1410 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001411foldOpenNested(fold_T *fpr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412{
1413 int i;
1414 fold_T *fp;
1415
1416 fp = (fold_T *)fpr->fd_nested.ga_data;
1417 for (i = 0; i < fpr->fd_nested.ga_len; ++i)
1418 {
1419 foldOpenNested(&fp[i]);
1420 fp[i].fd_flags = FD_OPEN;
1421 }
1422}
1423
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001424// deleteFoldEntry() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425/*
1426 * Delete fold "idx" from growarray "gap".
1427 * When "recursive" is TRUE also delete all the folds contained in it.
1428 * When "recursive" is FALSE contained folds are moved one level up.
1429 */
1430 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001431deleteFoldEntry(garray_T *gap, int idx, int recursive)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432{
1433 fold_T *fp;
1434 int i;
1435 long moved;
1436 fold_T *nfp;
1437
1438 fp = (fold_T *)gap->ga_data + idx;
1439 if (recursive || fp->fd_nested.ga_len == 0)
1440 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001441 // recursively delete the contained folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442 deleteFoldRecurse(&fp->fd_nested);
1443 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444 if (idx < gap->ga_len)
1445 mch_memmove(fp, fp + 1, sizeof(fold_T) * (gap->ga_len - idx));
1446 }
1447 else
1448 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001449 // Move nested folds one level up, to overwrite the fold that is
1450 // deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 moved = fp->fd_nested.ga_len;
1452 if (ga_grow(gap, (int)(moved - 1)) == OK)
1453 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001454 // Get "fp" again, the array may have been reallocated.
Bram Moolenaarc9927c12011-08-26 16:13:00 +02001455 fp = (fold_T *)gap->ga_data + idx;
1456
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001457 // adjust fd_top and fd_flags for the moved folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458 nfp = (fold_T *)fp->fd_nested.ga_data;
1459 for (i = 0; i < moved; ++i)
1460 {
1461 nfp[i].fd_top += fp->fd_top;
1462 if (fp->fd_flags == FD_LEVEL)
1463 nfp[i].fd_flags = FD_LEVEL;
1464 if (fp->fd_small == MAYBE)
1465 nfp[i].fd_small = MAYBE;
1466 }
1467
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001468 // move the existing folds down to make room
Bram Moolenaarc9927c12011-08-26 16:13:00 +02001469 if (idx + 1 < gap->ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001470 mch_memmove(fp + moved, fp + 1,
Bram Moolenaarc9927c12011-08-26 16:13:00 +02001471 sizeof(fold_T) * (gap->ga_len - (idx + 1)));
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001472 // move the contained folds one level up
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473 mch_memmove(fp, nfp, (size_t)(sizeof(fold_T) * moved));
1474 vim_free(nfp);
1475 gap->ga_len += moved - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 }
1477 }
1478}
1479
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001480// deleteFoldRecurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481/*
1482 * Delete nested folds in a fold.
1483 */
1484 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001485deleteFoldRecurse(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486{
1487 int i;
1488
1489 for (i = 0; i < gap->ga_len; ++i)
1490 deleteFoldRecurse(&(((fold_T *)(gap->ga_data))[i].fd_nested));
1491 ga_clear(gap);
1492}
1493
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001494// foldMarkAdjust() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495/*
1496 * Update line numbers of folds for inserted/deleted lines.
1497 */
1498 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001499foldMarkAdjust(
1500 win_T *wp,
1501 linenr_T line1,
1502 linenr_T line2,
1503 long amount,
1504 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001506 // If deleting marks from line1 to line2, but not deleting all those
1507 // lines, set line2 so that only deleted lines have their folds removed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 if (amount == MAXLNUM && line2 >= line1 && line2 - line1 >= -amount_after)
1509 line2 = line1 - amount_after - 1;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001510 // If appending a line in Insert mode, it should be included in the fold
1511 // just above the line.
Bram Moolenaar24959102022-05-07 20:01:16 +01001512 if ((State & MODE_INSERT) && amount == (linenr_T)1 && line2 == MAXLNUM)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 --line1;
1514 foldMarkAdjustRecurse(&wp->w_folds, line1, line2, amount, amount_after);
1515}
1516
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001517// foldMarkAdjustRecurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001519foldMarkAdjustRecurse(
1520 garray_T *gap,
1521 linenr_T line1,
1522 linenr_T line2,
1523 long amount,
1524 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525{
1526 fold_T *fp;
1527 int i;
1528 linenr_T last;
1529 linenr_T top;
1530
Bram Moolenaar07e87e92020-08-31 21:22:40 +02001531 if (gap->ga_len == 0)
1532 return;
1533
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001534 // In Insert mode an inserted line at the top of a fold is considered part
1535 // of the fold, otherwise it isn't.
Bram Moolenaar24959102022-05-07 20:01:16 +01001536 if ((State & MODE_INSERT) && amount == (linenr_T)1 && line2 == MAXLNUM)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 top = line1 + 1;
1538 else
1539 top = line1;
1540
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001541 // Find the fold containing or just below "line1".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542 (void)foldFind(gap, line1, &fp);
1543
1544 /*
1545 * Adjust all folds below "line1" that are affected.
1546 */
1547 for (i = (int)(fp - (fold_T *)gap->ga_data); i < gap->ga_len; ++i, ++fp)
1548 {
1549 /*
1550 * Check for these situations:
1551 * 1 2 3
1552 * 1 2 3
1553 * line1 2 3 4 5
1554 * 2 3 4 5
1555 * 2 3 4 5
1556 * line2 2 3 4 5
1557 * 3 5 6
1558 * 3 5 6
1559 */
1560
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001561 last = fp->fd_top + fp->fd_len - 1; // last line of fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001563 // 1. fold completely above line1: nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 if (last < line1)
1565 continue;
1566
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001567 // 6. fold below line2: only adjust for amount_after
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 if (fp->fd_top > line2)
1569 {
1570 if (amount_after == 0)
1571 break;
1572 fp->fd_top += amount_after;
1573 }
1574 else
1575 {
1576 if (fp->fd_top >= top && last <= line2)
1577 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001578 // 4. fold completely contained in range
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 if (amount == MAXLNUM)
1580 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001581 // Deleting lines: delete the fold completely
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 deleteFoldEntry(gap, i, TRUE);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001583 --i; // adjust index for deletion
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 --fp;
1585 }
1586 else
1587 fp->fd_top += amount;
1588 }
1589 else
1590 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591 if (fp->fd_top < top)
1592 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001593 // 2 or 3: need to correct nested folds too
Bram Moolenaar194b94c2009-09-18 13:17:09 +00001594 foldMarkAdjustRecurse(&fp->fd_nested, line1 - fp->fd_top,
1595 line2 - fp->fd_top, amount, amount_after);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 if (last <= line2)
1597 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001598 // 2. fold contains line1, line2 is below fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 if (amount == MAXLNUM)
1600 fp->fd_len = line1 - fp->fd_top;
1601 else
1602 fp->fd_len += amount;
1603 }
1604 else
1605 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001606 // 3. fold contains line1 and line2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607 fp->fd_len += amount_after;
1608 }
1609 }
1610 else
1611 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001612 // 5. fold is below line1 and contains line2; need to
1613 // correct nested folds too
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614 if (amount == MAXLNUM)
1615 {
Bram Moolenaar1159b162017-02-28 21:53:56 +01001616 foldMarkAdjustRecurse(&fp->fd_nested,
Bram Moolenaar6b434712022-02-15 19:15:22 +00001617 0,
Bram Moolenaar1159b162017-02-28 21:53:56 +01001618 line2 - fp->fd_top,
1619 amount,
1620 amount_after + (fp->fd_top - top));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 fp->fd_len -= line2 - fp->fd_top + 1;
1622 fp->fd_top = line1;
1623 }
1624 else
1625 {
Bram Moolenaar1159b162017-02-28 21:53:56 +01001626 foldMarkAdjustRecurse(&fp->fd_nested,
Bram Moolenaar6b434712022-02-15 19:15:22 +00001627 0,
Bram Moolenaar1159b162017-02-28 21:53:56 +01001628 line2 - fp->fd_top,
1629 amount,
1630 amount_after - amount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631 fp->fd_len += amount_after - amount;
1632 fp->fd_top += amount;
1633 }
1634 }
1635 }
1636 }
1637 }
1638}
1639
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001640// getDeepestNesting() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641/*
1642 * Get the lowest 'foldlevel' value that makes the deepest nested fold in the
1643 * current window open.
1644 */
1645 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001646getDeepestNesting(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647{
1648 checkupdate(curwin);
1649 return getDeepestNestingRecurse(&curwin->w_folds);
1650}
1651
1652 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001653getDeepestNestingRecurse(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654{
1655 int i;
1656 int level;
1657 int maxlevel = 0;
1658 fold_T *fp;
1659
1660 fp = (fold_T *)gap->ga_data;
1661 for (i = 0; i < gap->ga_len; ++i)
1662 {
1663 level = getDeepestNestingRecurse(&fp[i].fd_nested) + 1;
1664 if (level > maxlevel)
1665 maxlevel = level;
1666 }
1667
1668 return maxlevel;
1669}
1670
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001671// check_closed() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672/*
1673 * Check if a fold is closed and update the info needed to check nested folds.
1674 */
1675 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001676check_closed(
1677 win_T *win,
1678 fold_T *fp,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001679 int *use_levelp, // TRUE: outer fold had FD_LEVEL
1680 int level, // folding depth
1681 int *maybe_smallp, // TRUE: outer this had fd_small == MAYBE
1682 linenr_T lnum_off) // line number offset for fp->fd_top
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683{
1684 int closed = FALSE;
1685
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001686 // Check if this fold is closed. If the flag is FD_LEVEL this
1687 // fold and all folds it contains depend on 'foldlevel'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688 if (*use_levelp || fp->fd_flags == FD_LEVEL)
1689 {
1690 *use_levelp = TRUE;
1691 if (level >= win->w_p_fdl)
1692 closed = TRUE;
1693 }
1694 else if (fp->fd_flags == FD_CLOSED)
1695 closed = TRUE;
1696
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001697 // Small fold isn't closed anyway.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698 if (fp->fd_small == MAYBE)
1699 *maybe_smallp = TRUE;
1700 if (closed)
1701 {
1702 if (*maybe_smallp)
1703 fp->fd_small = MAYBE;
1704 checkSmall(win, fp, lnum_off);
1705 if (fp->fd_small == TRUE)
1706 closed = FALSE;
1707 }
1708 return closed;
1709}
1710
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001711// checkSmall() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712/*
1713 * Update fd_small field of fold "fp".
1714 */
1715 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001716checkSmall(
1717 win_T *wp,
1718 fold_T *fp,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001719 linenr_T lnum_off) // offset for fp->fd_top
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720{
1721 int count;
1722 int n;
1723
Yegappan Lakshmanandc4daa32023-01-02 16:54:53 +00001724 if (fp->fd_small != MAYBE)
1725 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726
Yegappan Lakshmanandc4daa32023-01-02 16:54:53 +00001727 // Mark any nested folds to maybe-small
1728 setSmallMaybe(&fp->fd_nested);
1729
1730 if (fp->fd_len > curwin->w_p_fml)
1731 fp->fd_small = FALSE;
1732 else
1733 {
1734 count = 0;
1735 for (n = 0; n < fp->fd_len; ++n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 {
Yegappan Lakshmanandc4daa32023-01-02 16:54:53 +00001737 count += plines_win_nofold(wp, fp->fd_top + lnum_off + n);
1738 if (count > curwin->w_p_fml)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 {
Yegappan Lakshmanandc4daa32023-01-02 16:54:53 +00001740 fp->fd_small = FALSE;
1741 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 }
Yegappan Lakshmanandc4daa32023-01-02 16:54:53 +00001744 fp->fd_small = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 }
1746}
1747
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001748// setSmallMaybe() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749/*
1750 * Set small flags in "gap" to MAYBE.
1751 */
1752 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001753setSmallMaybe(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754{
1755 int i;
1756 fold_T *fp;
1757
1758 fp = (fold_T *)gap->ga_data;
1759 for (i = 0; i < gap->ga_len; ++i)
1760 fp[i].fd_small = MAYBE;
1761}
1762
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001763// foldCreateMarkers() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764/*
1765 * Create a fold from line "start" to line "end" (inclusive) in the current
1766 * window by adding markers.
1767 */
1768 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001769foldCreateMarkers(linenr_T start, linenr_T end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770{
1771 if (!curbuf->b_p_ma)
1772 {
Bram Moolenaar108010a2021-06-27 22:03:33 +02001773 emsg(_(e_cannot_make_changes_modifiable_is_off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 return;
1775 }
1776 parseMarker(curwin);
1777
1778 foldAddMarker(start, curwin->w_p_fmr, foldstartmarkerlen);
1779 foldAddMarker(end, foldendmarker, foldendmarkerlen);
1780
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001781 // Update both changes here, to avoid all folds after the start are
1782 // changed when the start marker is inserted and the end isn't.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 changed_lines(start, (colnr_T)0, end, 0L);
1784}
1785
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001786// foldAddMarker() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787/*
1788 * Add "marker[markerlen]" in 'commentstring' to line "lnum".
1789 */
1790 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001791foldAddMarker(linenr_T lnum, char_u *marker, int markerlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792{
1793 char_u *cms = curbuf->b_p_cms;
1794 char_u *line;
1795 int line_len;
1796 char_u *newline;
1797 char_u *p = (char_u *)strstr((char *)curbuf->b_p_cms, "%s");
Bram Moolenaar025a6b72017-03-12 20:37:21 +01001798 int line_is_comment = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001800 // Allocate a new line: old-line + 'cms'-start + marker + 'cms'-end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801 line = ml_get(lnum);
1802 line_len = (int)STRLEN(line);
1803
Yegappan Lakshmanandc4daa32023-01-02 16:54:53 +00001804 if (u_save(lnum - 1, lnum + 1) != OK)
1805 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806
Yegappan Lakshmanandc4daa32023-01-02 16:54:53 +00001807 // Check if the line ends with an unclosed comment
1808 (void)skip_comment(line, FALSE, FALSE, &line_is_comment);
1809 newline = alloc(line_len + markerlen + STRLEN(cms) + 1);
1810 if (newline == NULL)
1811 return;
1812 STRCPY(newline, line);
1813 // Append the marker to the end of the line
1814 if (p == NULL || line_is_comment)
1815 vim_strncpy(newline + line_len, marker, markerlen);
1816 else
1817 {
1818 STRCPY(newline + line_len, cms);
1819 STRNCPY(newline + line_len + (p - cms), marker, markerlen);
1820 STRCPY(newline + line_len + (p - cms) + markerlen, p + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 }
Yegappan Lakshmanandc4daa32023-01-02 16:54:53 +00001822
1823 ml_replace(lnum, newline, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824}
1825
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001826// deleteFoldMarkers() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827/*
1828 * Delete the markers for a fold, causing it to be deleted.
1829 */
1830 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001831deleteFoldMarkers(
1832 fold_T *fp,
1833 int recursive,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001834 linenr_T lnum_off) // offset for fp->fd_top
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835{
1836 int i;
1837
1838 if (recursive)
1839 for (i = 0; i < fp->fd_nested.ga_len; ++i)
1840 deleteFoldMarkers((fold_T *)fp->fd_nested.ga_data + i, TRUE,
1841 lnum_off + fp->fd_top);
1842 foldDelMarker(fp->fd_top + lnum_off, curwin->w_p_fmr, foldstartmarkerlen);
1843 foldDelMarker(fp->fd_top + lnum_off + fp->fd_len - 1,
1844 foldendmarker, foldendmarkerlen);
1845}
1846
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001847// foldDelMarker() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848/*
1849 * Delete marker "marker[markerlen]" at the end of line "lnum".
1850 * Delete 'commentstring' if it matches.
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02001851 * If the marker is not found, there is no error message. Could be a missing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 * close-marker.
1853 */
1854 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001855foldDelMarker(linenr_T lnum, char_u *marker, int markerlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856{
1857 char_u *line;
1858 char_u *newline;
1859 char_u *p;
1860 int len;
1861 char_u *cms = curbuf->b_p_cms;
1862 char_u *cms2;
1863
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02001864 // end marker may be missing and fold extends below the last line
1865 if (lnum > curbuf->b_ml.ml_line_count)
1866 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867 line = ml_get(lnum);
1868 for (p = line; *p != NUL; ++p)
1869 if (STRNCMP(p, marker, markerlen) == 0)
1870 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001871 // Found the marker, include a digit if it's there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 len = markerlen;
1873 if (VIM_ISDIGIT(p[len]))
1874 ++len;
1875 if (*cms != NUL)
1876 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001877 // Also delete 'commentstring' if it matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 cms2 = (char_u *)strstr((char *)cms, "%s");
1879 if (p - line >= cms2 - cms
1880 && STRNCMP(p - (cms2 - cms), cms, cms2 - cms) == 0
1881 && STRNCMP(p + len, cms2 + 2, STRLEN(cms2 + 2)) == 0)
1882 {
1883 p -= cms2 - cms;
1884 len += (int)STRLEN(cms) - 2;
1885 }
1886 }
1887 if (u_save(lnum - 1, lnum + 1) == OK)
1888 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001889 // Make new line: text-before-marker + text-after-marker
Bram Moolenaar964b3742019-05-24 18:54:09 +02001890 newline = alloc(STRLEN(line) - len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 if (newline != NULL)
1892 {
1893 STRNCPY(newline, line, p - line);
1894 STRCPY(newline + (p - line), p + len);
1895 ml_replace(lnum, newline, FALSE);
1896 }
1897 }
1898 break;
1899 }
1900}
1901
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001902// get_foldtext() {{{2
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001903/*
1904 * Return the text for a closed fold at line "lnum", with last line "lnume".
Bram Moolenaaree695f72016-08-03 22:08:45 +02001905 * When 'foldtext' isn't set puts the result in "buf[FOLD_TEXT_LEN]".
1906 * Otherwise the result is in allocated memory.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001907 */
1908 char_u *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001909get_foldtext(
1910 win_T *wp,
1911 linenr_T lnum,
1912 linenr_T lnume,
1913 foldinfo_T *foldinfo,
1914 char_u *buf)
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001915{
1916 char_u *text = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001917#ifdef FEAT_EVAL
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001918 // an error occurred when evaluating 'fdt' setting
Bram Moolenaardab38d52013-06-15 17:06:36 +02001919 static int got_fdt_error = FALSE;
1920 int save_did_emsg = did_emsg;
1921 static win_T *last_wp = NULL;
1922 static linenr_T last_lnum = 0;
1923
1924 if (last_wp != wp || last_wp == NULL
1925 || last_lnum > lnum || last_lnum == 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001926 // window changed, try evaluating foldtext setting once again
Bram Moolenaardab38d52013-06-15 17:06:36 +02001927 got_fdt_error = FALSE;
1928
1929 if (!got_fdt_error)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001930 // a previous error should not abort evaluating 'foldexpr'
Bram Moolenaardab38d52013-06-15 17:06:36 +02001931 did_emsg = FALSE;
1932
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001933 if (*wp->w_p_fdt != NUL)
1934 {
Bram Moolenaar5b88ba42009-11-03 15:30:12 +00001935 char_u dashes[MAX_LEVEL + 2];
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001936 int level;
1937 char_u *p;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001938
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001939 // Set "v:foldstart" and "v:foldend".
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001940 set_vim_var_nr(VV_FOLDSTART, lnum);
1941 set_vim_var_nr(VV_FOLDEND, lnume);
1942
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001943 // Set "v:folddashes" to a string of "level" dashes.
1944 // Set "v:foldlevel" to "level".
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001945 level = foldinfo->fi_level;
Bram Moolenaar5b88ba42009-11-03 15:30:12 +00001946 if (level > (int)sizeof(dashes) - 1)
1947 level = (int)sizeof(dashes) - 1;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001948 vim_memset(dashes, '-', (size_t)level);
1949 dashes[level] = NUL;
1950 set_vim_var_string(VV_FOLDDASHES, dashes, -1);
1951 set_vim_var_nr(VV_FOLDLEVEL, (long)level);
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001952
Bram Moolenaar9530b582022-01-22 13:39:08 +00001953 // skip evaluating 'foldtext' on errors
Bram Moolenaardab38d52013-06-15 17:06:36 +02001954 if (!got_fdt_error)
1955 {
Bram Moolenaar9530b582022-01-22 13:39:08 +00001956 win_T *save_curwin = curwin;
1957 sctx_T saved_sctx = current_sctx;
1958
Bram Moolenaardab38d52013-06-15 17:06:36 +02001959 curwin = wp;
1960 curbuf = wp->w_buffer;
Bram Moolenaar9530b582022-01-22 13:39:08 +00001961 current_sctx = wp->w_p_script_ctx[WV_FDT];
Bram Moolenaardab38d52013-06-15 17:06:36 +02001962
Bram Moolenaar9530b582022-01-22 13:39:08 +00001963 ++emsg_off; // handle exceptions, but don't display errors
Bram Moolenaarb171fb12020-06-24 20:34:03 +02001964 text = eval_to_string_safe(wp->w_p_fdt,
Bram Moolenaara4e0b972022-10-01 19:43:52 +01001965 was_set_insecurely((char_u *)"foldtext", OPT_LOCAL),
1966 TRUE, TRUE);
Bram Moolenaar9530b582022-01-22 13:39:08 +00001967 --emsg_off;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001968
Bram Moolenaardab38d52013-06-15 17:06:36 +02001969 if (text == NULL || did_emsg)
1970 got_fdt_error = TRUE;
1971
1972 curwin = save_curwin;
1973 curbuf = curwin->w_buffer;
Bram Moolenaar9530b582022-01-22 13:39:08 +00001974 current_sctx = saved_sctx;
Bram Moolenaardab38d52013-06-15 17:06:36 +02001975 }
1976 last_lnum = lnum;
1977 last_wp = wp;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001978 set_vim_var_string(VV_FOLDDASHES, NULL, -1);
1979
Bram Moolenaardab38d52013-06-15 17:06:36 +02001980 if (!did_emsg && save_did_emsg)
1981 did_emsg = save_did_emsg;
1982
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001983 if (text != NULL)
1984 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001985 // Replace unprintable characters, if there are any. But
1986 // replace a TAB with a space.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001987 for (p = text; *p != NUL; ++p)
1988 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001989 int len;
1990
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001991 if (has_mbyte && (len = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001992 {
1993 if (!vim_isprintc((*mb_ptr2char)(p)))
1994 break;
1995 p += len - 1;
1996 }
1997 else
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001998 if (*p == TAB)
1999 *p = ' ';
2000 else if (ptr2cells(p) > 1)
2001 break;
2002 }
2003 if (*p != NUL)
2004 {
2005 p = transstr(text);
2006 vim_free(text);
2007 text = p;
2008 }
2009 }
2010 }
2011 if (text == NULL)
2012#endif
2013 {
Bram Moolenaaree695f72016-08-03 22:08:45 +02002014 long count = (long)(lnume - lnum + 1);
2015
2016 vim_snprintf((char *)buf, FOLD_TEXT_LEN,
Bram Moolenaar1c465442017-03-12 20:10:05 +01002017 NGETTEXT("+--%3ld line folded ",
Bram Moolenaaree695f72016-08-03 22:08:45 +02002018 "+--%3ld lines folded ", count),
2019 count);
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002020 text = buf;
2021 }
2022 return text;
2023}
2024
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002025// foldtext_cleanup() {{{2
Bram Moolenaardb022f32019-09-01 17:52:32 +02002026#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027/*
2028 * Remove 'foldmarker' and 'commentstring' from "str" (in-place).
2029 */
Bram Moolenaardb022f32019-09-01 17:52:32 +02002030 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002031foldtext_cleanup(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002033 char_u *cms_start; // first part or the whole comment
2034 int cms_slen = 0; // length of cms_start
2035 char_u *cms_end; // last part of the comment or NULL
2036 int cms_elen = 0; // length of cms_end
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 char_u *s;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002038 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 int len;
2040 int did1 = FALSE;
2041 int did2 = FALSE;
2042
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002043 // Ignore leading and trailing white space in 'commentstring'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 cms_start = skipwhite(curbuf->b_p_cms);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002045 cms_slen = (int)STRLEN(cms_start);
Bram Moolenaar1c465442017-03-12 20:10:05 +01002046 while (cms_slen > 0 && VIM_ISWHITE(cms_start[cms_slen - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047 --cms_slen;
2048
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002049 // locate "%s" in 'commentstring', use the part before and after it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 cms_end = (char_u *)strstr((char *)cms_start, "%s");
2051 if (cms_end != NULL)
2052 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002053 cms_elen = cms_slen - (int)(cms_end - cms_start);
2054 cms_slen = (int)(cms_end - cms_start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002056 // exclude white space before "%s"
Bram Moolenaar1c465442017-03-12 20:10:05 +01002057 while (cms_slen > 0 && VIM_ISWHITE(cms_start[cms_slen - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 --cms_slen;
2059
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002060 // skip "%s" and white space after it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 s = skipwhite(cms_end + 2);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002062 cms_elen -= (int)(s - cms_end);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 cms_end = s;
2064 }
2065 parseMarker(curwin);
2066
2067 for (s = str; *s != NUL; )
2068 {
2069 len = 0;
2070 if (STRNCMP(s, curwin->w_p_fmr, foldstartmarkerlen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 len = foldstartmarkerlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 else if (STRNCMP(s, foldendmarker, foldendmarkerlen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 len = foldendmarkerlen;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002074 if (len > 0)
2075 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 if (VIM_ISDIGIT(s[len]))
2077 ++len;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002078
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002079 // May remove 'commentstring' start. Useful when it's a double
2080 // quote and we already removed a double quote.
Bram Moolenaar1c465442017-03-12 20:10:05 +01002081 for (p = s; p > str && VIM_ISWHITE(p[-1]); --p)
Bram Moolenaardef9e822004-12-31 20:58:58 +00002082 ;
2083 if (p >= str + cms_slen
2084 && STRNCMP(p - cms_slen, cms_start, cms_slen) == 0)
2085 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002086 len += (int)(s - p) + cms_slen;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002087 s = p - cms_slen;
2088 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089 }
2090 else if (cms_end != NULL)
2091 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00002092 if (!did1 && cms_slen > 0 && STRNCMP(s, cms_start, cms_slen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093 {
2094 len = cms_slen;
2095 did1 = TRUE;
2096 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00002097 else if (!did2 && cms_elen > 0
2098 && STRNCMP(s, cms_end, cms_elen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 {
2100 len = cms_elen;
2101 did2 = TRUE;
2102 }
2103 }
2104 if (len != 0)
2105 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01002106 while (VIM_ISWHITE(s[len]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107 ++len;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002108 STRMOVE(s, s + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 }
2110 else
2111 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002112 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 }
2114 }
2115}
Bram Moolenaardb022f32019-09-01 17:52:32 +02002116#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002118// Folding by indent, expr, marker and syntax. {{{1
2119// Define "fline_T", passed to get fold level for a line. {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120typedef struct
2121{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002122 win_T *wp; // window
2123 linenr_T lnum; // current line number
2124 linenr_T off; // offset between lnum and real line number
2125 linenr_T lnum_save; // line nr used by foldUpdateIEMSRecurse()
2126 int lvl; // current level (-1 for undefined)
2127 int lvl_next; // level used for next line
2128 int start; // number of folds that are forced to start at
2129 // this line.
2130 int end; // level of fold that is forced to end below
2131 // this line
2132 int had_end; // level of fold that is forced to end above
2133 // this line (copy of "end" of prev. line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134} fline_T;
2135
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002136// Flag is set when redrawing is needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137static int fold_changed;
2138
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002139// Function declarations. {{{2
Bram Moolenaard99df422016-01-29 23:20:40 +01002140static 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 +01002141static int foldInsert(garray_T *gap, int i);
2142static void foldSplit(garray_T *gap, int i, linenr_T top, linenr_T bot);
2143static void foldRemove(garray_T *gap, linenr_T top, linenr_T bot);
2144static void foldMerge(fold_T *fp1, garray_T *gap, fold_T *fp2);
2145static void foldlevelIndent(fline_T *flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146#ifdef FEAT_DIFF
Bram Moolenaard25c16e2016-01-29 22:13:30 +01002147static void foldlevelDiff(fline_T *flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +01002149static void foldlevelExpr(fline_T *flp);
2150static void foldlevelMarker(fline_T *flp);
2151static void foldlevelSyntax(fline_T *flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002153// foldUpdateIEMS() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154/*
2155 * Update the folding for window "wp", at least from lines "top" to "bot".
2156 * Return TRUE if any folds did change.
2157 */
2158 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002159foldUpdateIEMS(win_T *wp, linenr_T top, linenr_T bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160{
2161 linenr_T start;
2162 linenr_T end;
2163 fline_T fline;
Bram Moolenaard99df422016-01-29 23:20:40 +01002164 void (*getlevel)(fline_T *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 int level;
2166 fold_T *fp;
2167
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002168 // Avoid problems when being called recursively.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169 if (invalid_top != (linenr_T)0)
2170 return;
2171
2172 if (wp->w_foldinvalid)
2173 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002174 // Need to update all folds.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175 top = 1;
2176 bot = wp->w_buffer->b_ml.ml_line_count;
2177 wp->w_foldinvalid = FALSE;
2178
Brandon Simmons3fcccf92022-05-20 18:25:21 +01002179 // Mark all folds as maybe-small.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180 setSmallMaybe(&wp->w_folds);
2181 }
2182
2183#ifdef FEAT_DIFF
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002184 // add the context for "diff" folding
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 if (foldmethodIsDiff(wp))
2186 {
2187 if (top > diff_context)
2188 top -= diff_context;
2189 else
2190 top = 1;
2191 bot += diff_context;
2192 }
2193#endif
2194
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002195 // When deleting lines at the end of the buffer "top" can be past the end
2196 // of the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 if (top > wp->w_buffer->b_ml.ml_line_count)
2198 top = wp->w_buffer->b_ml.ml_line_count;
2199
2200 fold_changed = FALSE;
2201 fline.wp = wp;
2202 fline.off = 0;
2203 fline.lvl = 0;
2204 fline.lvl_next = -1;
2205 fline.start = 0;
2206 fline.end = MAX_LEVEL + 1;
2207 fline.had_end = MAX_LEVEL + 1;
2208
2209 invalid_top = top;
2210 invalid_bot = bot;
2211
2212 if (foldmethodIsMarker(wp))
2213 {
2214 getlevel = foldlevelMarker;
2215
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002216 // Init marker variables to speed up foldlevelMarker().
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217 parseMarker(wp);
2218
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002219 // Need to get the level of the line above top, it is used if there is
2220 // no marker at the top.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 if (top > 1)
2222 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002223 // Get the fold level at top - 1.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 level = foldLevelWin(wp, top - 1);
2225
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002226 // The fold may end just above the top, check for that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 fline.lnum = top - 1;
2228 fline.lvl = level;
2229 getlevel(&fline);
2230
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002231 // If a fold started here, we already had the level, if it stops
2232 // here, we need to use lvl_next. Could also start and end a fold
2233 // in the same line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 if (fline.lvl > level)
2235 fline.lvl = level - (fline.lvl - fline.lvl_next);
2236 else
2237 fline.lvl = fline.lvl_next;
2238 }
2239 fline.lnum = top;
2240 getlevel(&fline);
2241 }
2242 else
2243 {
2244 fline.lnum = top;
2245 if (foldmethodIsExpr(wp))
2246 {
2247 getlevel = foldlevelExpr;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002248 // start one line back, because a "<1" may indicate the end of a
2249 // fold in the topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 if (top > 1)
2251 --fline.lnum;
2252 }
2253 else if (foldmethodIsSyntax(wp))
2254 getlevel = foldlevelSyntax;
2255#ifdef FEAT_DIFF
2256 else if (foldmethodIsDiff(wp))
2257 getlevel = foldlevelDiff;
2258#endif
2259 else
Brandon Simmonsd98e75e2022-05-10 19:13:23 +01002260 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 getlevel = foldlevelIndent;
Brandon Simmonsd98e75e2022-05-10 19:13:23 +01002262 // Start one line back, because if the line above "top" has an
2263 // undefined fold level, folding it relies on the line under it,
2264 // which is "top".
2265 if (top > 1)
2266 --fline.lnum;
2267 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002268
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002269 // Backup to a line for which the fold level is defined. Since it's
2270 // always defined for line one, we will stop there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271 fline.lvl = -1;
2272 for ( ; !got_int; --fline.lnum)
2273 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002274 // Reset lvl_next each time, because it will be set to a value for
2275 // the next line, but we search backwards here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 fline.lvl_next = -1;
2277 getlevel(&fline);
2278 if (fline.lvl >= 0)
2279 break;
2280 }
2281 }
2282
Bram Moolenaarec986472009-11-03 13:46:54 +00002283 /*
2284 * If folding is defined by the syntax, it is possible that a change in
2285 * one line will cause all sub-folds of the current fold to change (e.g.,
2286 * closing a C-style comment can cause folds in the subsequent lines to
2287 * appear). To take that into account we should adjust the value of "bot"
2288 * to point to the end of the current fold:
2289 */
2290 if (foldlevelSyntax == getlevel)
2291 {
2292 garray_T *gap = &wp->w_folds;
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002293 fold_T *fpn = NULL;
Bram Moolenaarec986472009-11-03 13:46:54 +00002294 int current_fdl = 0;
2295 linenr_T fold_start_lnum = 0;
2296 linenr_T lnum_rel = fline.lnum;
2297
2298 while (current_fdl < fline.lvl)
2299 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002300 if (!foldFind(gap, lnum_rel, &fpn))
Bram Moolenaarec986472009-11-03 13:46:54 +00002301 break;
2302 ++current_fdl;
2303
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002304 fold_start_lnum += fpn->fd_top;
2305 gap = &fpn->fd_nested;
2306 lnum_rel -= fpn->fd_top;
Bram Moolenaarec986472009-11-03 13:46:54 +00002307 }
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002308 if (fpn != NULL && current_fdl == fline.lvl)
Bram Moolenaarec986472009-11-03 13:46:54 +00002309 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002310 linenr_T fold_end_lnum = fold_start_lnum + fpn->fd_len;
Bram Moolenaarec986472009-11-03 13:46:54 +00002311
2312 if (fold_end_lnum > bot)
2313 bot = fold_end_lnum;
2314 }
2315 }
2316
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 start = fline.lnum;
2318 end = bot;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002319 // Do at least one line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320 if (start > end && end < wp->w_buffer->b_ml.ml_line_count)
2321 end = start;
2322 while (!got_int)
2323 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002324 // Always stop at the end of the file ("end" can be past the end of
2325 // the file).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 if (fline.lnum > wp->w_buffer->b_ml.ml_line_count)
2327 break;
2328 if (fline.lnum > end)
2329 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002330 // For "marker", "expr" and "syntax" methods: If a change caused
2331 // a fold to be removed, we need to continue at least until where
2332 // it ended.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333 if (getlevel != foldlevelMarker
2334 && getlevel != foldlevelSyntax
2335 && getlevel != foldlevelExpr)
2336 break;
2337 if ((start <= end
2338 && foldFind(&wp->w_folds, end, &fp)
2339 && fp->fd_top + fp->fd_len - 1 > end)
2340 || (fline.lvl == 0
2341 && foldFind(&wp->w_folds, fline.lnum, &fp)
2342 && fp->fd_top < fline.lnum))
2343 end = fp->fd_top + fp->fd_len - 1;
2344 else if (getlevel == foldlevelSyntax
2345 && foldLevelWin(wp, fline.lnum) != fline.lvl)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002346 // For "syntax" method: Compare the foldlevel that the syntax
2347 // tells us to the foldlevel from the existing folds. If they
2348 // don't match continue updating folds.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 end = fline.lnum;
2350 else
2351 break;
2352 }
2353
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002354 // A level 1 fold starts at a line with foldlevel > 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 if (fline.lvl > 0)
2356 {
2357 invalid_top = fline.lnum;
2358 invalid_bot = end;
2359 end = foldUpdateIEMSRecurse(&wp->w_folds,
2360 1, start, &fline, getlevel, end, FD_LEVEL);
2361 start = fline.lnum;
2362 }
2363 else
2364 {
2365 if (fline.lnum == wp->w_buffer->b_ml.ml_line_count)
2366 break;
2367 ++fline.lnum;
2368 fline.lvl = fline.lvl_next;
2369 getlevel(&fline);
2370 }
2371 }
2372
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002373 // There can't be any folds from start until end now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374 foldRemove(&wp->w_folds, start, end);
2375
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002376 // If some fold changed, need to redraw and position cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 if (fold_changed && wp->w_p_fen)
Bram Moolenaare3b3f282008-03-06 21:45:49 +00002378 changed_window_setting_win(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002380 // If we updated folds past "bot", need to redraw more lines. Don't do
2381 // this in other situations, the changed lines will be redrawn anyway and
2382 // this method can cause the whole window to be updated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383 if (end != bot)
2384 {
2385 if (wp->w_redraw_top == 0 || wp->w_redraw_top > top)
2386 wp->w_redraw_top = top;
2387 if (wp->w_redraw_bot < end)
2388 wp->w_redraw_bot = end;
2389 }
2390
2391 invalid_top = (linenr_T)0;
2392}
2393
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002394// foldUpdateIEMSRecurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395/*
2396 * Update a fold that starts at "flp->lnum". At this line there is always a
2397 * valid foldlevel, and its level >= "level".
2398 * "flp" is valid for "flp->lnum" when called and it's valid when returning.
2399 * "flp->lnum" is set to the lnum just below the fold, if it ends before
2400 * "bot", it's "bot" plus one if the fold continues and it's bigger when using
2401 * the marker method and a text change made following folds to change.
2402 * When returning, "flp->lnum_save" is the line number that was used to get
2403 * the level when the level at "flp->lnum" is invalid.
2404 * Remove any folds from "startlnum" up to here at this level.
2405 * Recursively update nested folds.
2406 * Below line "bot" there are no changes in the text.
2407 * "flp->lnum", "flp->lnum_save" and "bot" are relative to the start of the
2408 * outer fold.
2409 * "flp->off" is the offset to the real line number in the buffer.
2410 *
2411 * All this would be a lot simpler if all folds in the range would be deleted
Bram Moolenaare37d50a2008-08-06 17:06:04 +00002412 * and then created again. But we would lose all information about the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 * folds, even when making changes that don't affect the folding (e.g. "vj~").
2414 *
2415 * Returns bot, which may have been increased for lines that also need to be
2416 * updated as a result of a detected change in the fold.
2417 */
2418 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002419foldUpdateIEMSRecurse(
2420 garray_T *gap,
2421 int level,
2422 linenr_T startlnum,
2423 fline_T *flp,
2424 void (*getlevel)(fline_T *),
2425 linenr_T bot,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002426 int topflags) // flags used by containing fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427{
2428 linenr_T ll;
2429 fold_T *fp = NULL;
2430 fold_T *fp2;
2431 int lvl = level;
2432 linenr_T startlnum2 = startlnum;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002433 linenr_T firstlnum = flp->lnum; // first lnum we got
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 int i;
2435 int finish = FALSE;
2436 linenr_T linecount = flp->wp->w_buffer->b_ml.ml_line_count - flp->off;
2437 int concat;
2438
2439 /*
2440 * If using the marker method, the start line is not the start of a fold
2441 * at the level we're dealing with and the level is non-zero, we must use
2442 * the previous fold. But ignore a fold that starts at or below
2443 * startlnum, it must be deleted.
2444 */
2445 if (getlevel == foldlevelMarker && flp->start <= flp->lvl - level
2446 && flp->lvl > 0)
2447 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002448 (void)foldFind(gap, startlnum - 1, &fp);
Bram Moolenaarda697642020-09-17 19:36:04 +02002449 if (fp != NULL && (fp >= ((fold_T *)gap->ga_data) + gap->ga_len
2450 || fp->fd_top >= startlnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 fp = NULL;
2452 }
2453
2454 /*
2455 * Loop over all lines in this fold, or until "bot" is hit.
2456 * Handle nested folds inside of this fold.
2457 * "flp->lnum" is the current line. When finding the end of the fold, it
2458 * is just below the end of the fold.
2459 * "*flp" contains the level of the line "flp->lnum" or a following one if
2460 * there are lines with an invalid fold level. "flp->lnum_save" is the
2461 * line number that was used to get the fold level (below "flp->lnum" when
2462 * it has an invalid fold level). When called the fold level is always
2463 * valid, thus "flp->lnum_save" is equal to "flp->lnum".
2464 */
2465 flp->lnum_save = flp->lnum;
2466 while (!got_int)
2467 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002468 // Updating folds can be slow, check for CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469 line_breakcheck();
2470
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002471 // Set "lvl" to the level of line "flp->lnum". When flp->start is set
2472 // and after the first line of the fold, set the level to zero to
2473 // force the fold to end. Do the same when had_end is set: Previous
2474 // line was marked as end of a fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475 lvl = flp->lvl;
2476 if (lvl > MAX_LEVEL)
2477 lvl = MAX_LEVEL;
2478 if (flp->lnum > firstlnum
2479 && (level > lvl - flp->start || level >= flp->had_end))
2480 lvl = 0;
2481
2482 if (flp->lnum > bot && !finish && fp != NULL)
2483 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002484 // For "marker" and "syntax" methods:
2485 // - If a change caused a nested fold to be removed, we need to
2486 // delete it and continue at least until where it ended.
2487 // - If a change caused a nested fold to be created, or this fold
2488 // to continue below its original end, need to finish this fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 if (getlevel != foldlevelMarker
2490 && getlevel != foldlevelExpr
2491 && getlevel != foldlevelSyntax)
2492 break;
2493 i = 0;
2494 fp2 = fp;
2495 if (lvl >= level)
2496 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002497 // Compute how deep the folds currently are, if it's deeper
2498 // than "lvl" then some must be deleted, need to update
2499 // at least one nested fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500 ll = flp->lnum - fp->fd_top;
2501 while (foldFind(&fp2->fd_nested, ll, &fp2))
2502 {
2503 ++i;
2504 ll -= fp2->fd_top;
2505 }
2506 }
2507 if (lvl < level + i)
2508 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002509 (void)foldFind(&fp->fd_nested, flp->lnum - fp->fd_top, &fp2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510 if (fp2 != NULL)
2511 bot = fp2->fd_top + fp2->fd_len - 1 + fp->fd_top;
2512 }
2513 else if (fp->fd_top + fp->fd_len <= flp->lnum && lvl >= level)
2514 finish = TRUE;
2515 else
2516 break;
2517 }
2518
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002519 // At the start of the first nested fold and at the end of the current
2520 // fold: check if existing folds at this level, before the current
2521 // one, need to be deleted or truncated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 if (fp == NULL
2523 && (lvl != level
2524 || flp->lnum_save >= bot
2525 || flp->start != 0
2526 || flp->had_end <= MAX_LEVEL
2527 || flp->lnum == linecount))
2528 {
2529 /*
2530 * Remove or update folds that have lines between startlnum and
2531 * firstlnum.
2532 */
2533 while (!got_int)
2534 {
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00002535 // set concat to 1 if it's allowed to concatenate this fold
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002536 // with a previous one that touches it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 if (flp->start != 0 || flp->had_end <= MAX_LEVEL)
2538 concat = 0;
2539 else
2540 concat = 1;
2541
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002542 // Find an existing fold to re-use. Preferably one that
2543 // includes startlnum, otherwise one that ends just before
2544 // startlnum or starts after it.
Bram Moolenaar64f37d32020-08-31 19:58:13 +02002545 if (gap->ga_len > 0 && (foldFind(gap, startlnum, &fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 || (fp < ((fold_T *)gap->ga_data) + gap->ga_len
2547 && fp->fd_top <= firstlnum)
2548 || foldFind(gap, firstlnum - concat, &fp)
2549 || (fp < ((fold_T *)gap->ga_data) + gap->ga_len
2550 && ((lvl < level && fp->fd_top < flp->lnum)
2551 || (lvl >= level
Bram Moolenaar64f37d32020-08-31 19:58:13 +02002552 && fp->fd_top <= flp->lnum_save)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553 {
2554 if (fp->fd_top + fp->fd_len + concat > firstlnum)
2555 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002556 // Use existing fold for the new fold. If it starts
2557 // before where we started looking, extend it. If it
2558 // starts at another line, update nested folds to keep
2559 // their position, compensating for the new fd_top.
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002560 if (fp->fd_top == firstlnum)
2561 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002562 // have found a fold beginning where we want
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002563 }
2564 else if (fp->fd_top >= startlnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565 {
2566 if (fp->fd_top > firstlnum)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002567 // like lines are inserted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568 foldMarkAdjustRecurse(&fp->fd_nested,
2569 (linenr_T)0, (linenr_T)MAXLNUM,
2570 (long)(fp->fd_top - firstlnum), 0L);
2571 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002572 // like lines are deleted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 foldMarkAdjustRecurse(&fp->fd_nested,
2574 (linenr_T)0,
2575 (long)(firstlnum - fp->fd_top - 1),
2576 (linenr_T)MAXLNUM,
2577 (long)(fp->fd_top - firstlnum));
2578 fp->fd_len += fp->fd_top - firstlnum;
2579 fp->fd_top = firstlnum;
Brandon Simmonse8c4a642022-05-23 15:33:08 +01002580 fp->fd_small = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 fold_changed = TRUE;
2582 }
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002583 else if ((flp->start != 0 && lvl == level)
2584 || firstlnum != startlnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 {
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002586 linenr_T breakstart;
2587 linenr_T breakend;
2588
2589 /*
2590 * Before there was a fold spanning from above
2591 * startlnum to below firstlnum. This fold is valid
2592 * above startlnum (because we are not updating
2593 * that range), but there should now be a break in
2594 * it.
2595 * If the break is because we are now forced to
2596 * start a new fold at the level "level" at line
2597 * fline->lnum, then we need to split the fold at
2598 * fline->lnum.
2599 * If the break is because the range
2600 * [startlnum, firstlnum) is now at a lower indent
2601 * than "level", we need to split the fold in this
2602 * range.
2603 * Any splits have to be done recursively.
2604 */
2605 if (firstlnum != startlnum)
2606 {
2607 breakstart = startlnum;
2608 breakend = firstlnum;
2609 }
2610 else
2611 {
2612 breakstart = flp->lnum;
2613 breakend = flp->lnum;
2614 }
2615 foldRemove(&fp->fd_nested, breakstart - fp->fd_top,
2616 breakend - fp->fd_top);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617 i = (int)(fp - (fold_T *)gap->ga_data);
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002618 foldSplit(gap, i, breakstart, breakend - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 fp = (fold_T *)gap->ga_data + i + 1;
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002620
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002621 // If using the "marker" or "syntax" method, we
2622 // need to continue until the end of the fold is
2623 // found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624 if (getlevel == foldlevelMarker
2625 || getlevel == foldlevelExpr
2626 || getlevel == foldlevelSyntax)
2627 finish = TRUE;
2628 }
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002629
2630 if (fp->fd_top == startlnum && concat)
2631 {
2632 i = (int)(fp - (fold_T *)gap->ga_data);
2633 if (i != 0)
2634 {
2635 fp2 = fp - 1;
2636 if (fp2->fd_top + fp2->fd_len == fp->fd_top)
2637 {
2638 foldMerge(fp2, gap, fp);
2639 fp = fp2;
2640 }
2641 }
2642 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 break;
2644 }
2645 if (fp->fd_top >= startlnum)
2646 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002647 // A fold that starts at or after startlnum and stops
2648 // before the new fold must be deleted. Continue
2649 // looking for the next one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650 deleteFoldEntry(gap,
2651 (int)(fp - (fold_T *)gap->ga_data), TRUE);
2652 }
2653 else
2654 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002655 // A fold has some lines above startlnum, truncate it
2656 // to stop just above startlnum.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 fp->fd_len = startlnum - fp->fd_top;
2658 foldMarkAdjustRecurse(&fp->fd_nested,
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00002659 fp->fd_len, (linenr_T)MAXLNUM,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660 (linenr_T)MAXLNUM, 0L);
2661 fold_changed = TRUE;
2662 }
2663 }
2664 else
2665 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002666 // Insert new fold. Careful: ga_data may be NULL and it
2667 // may change!
Bram Moolenaar64f37d32020-08-31 19:58:13 +02002668 if (gap->ga_len == 0)
2669 i = 0;
2670 else
2671 i = (int)(fp - (fold_T *)gap->ga_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 if (foldInsert(gap, i) != OK)
2673 return bot;
2674 fp = (fold_T *)gap->ga_data + i;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002675 // The new fold continues until bot, unless we find the
2676 // end earlier.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 fp->fd_top = firstlnum;
2678 fp->fd_len = bot - firstlnum + 1;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002679 // When the containing fold is open, the new fold is open.
2680 // The new fold is closed if the fold above it is closed.
2681 // The first fold depends on the containing fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682 if (topflags == FD_OPEN)
2683 {
2684 flp->wp->w_fold_manual = TRUE;
2685 fp->fd_flags = FD_OPEN;
2686 }
2687 else if (i <= 0)
2688 {
2689 fp->fd_flags = topflags;
2690 if (topflags != FD_LEVEL)
2691 flp->wp->w_fold_manual = TRUE;
2692 }
2693 else
2694 fp->fd_flags = (fp - 1)->fd_flags;
2695 fp->fd_small = MAYBE;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002696 // If using the "marker", "expr" or "syntax" method, we
2697 // need to continue until the end of the fold is found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 if (getlevel == foldlevelMarker
2699 || getlevel == foldlevelExpr
2700 || getlevel == foldlevelSyntax)
2701 finish = TRUE;
2702 fold_changed = TRUE;
2703 break;
2704 }
2705 }
2706 }
2707
2708 if (lvl < level || flp->lnum > linecount)
2709 {
2710 /*
2711 * Found a line with a lower foldlevel, this fold ends just above
2712 * "flp->lnum".
2713 */
2714 break;
2715 }
2716
2717 /*
2718 * The fold includes the line "flp->lnum" and "flp->lnum_save".
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002719 * Check "fp" for safety.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720 */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002721 if (lvl > level && fp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722 {
2723 /*
2724 * There is a nested fold, handle it recursively.
2725 */
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002726 // At least do one line (can happen when finish is TRUE).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 if (bot < flp->lnum)
2728 bot = flp->lnum;
2729
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002730 // Line numbers in the nested fold are relative to the start of
2731 // this fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732 flp->lnum = flp->lnum_save - fp->fd_top;
2733 flp->off += fp->fd_top;
2734 i = (int)(fp - (fold_T *)gap->ga_data);
2735 bot = foldUpdateIEMSRecurse(&fp->fd_nested, level + 1,
2736 startlnum2 - fp->fd_top, flp, getlevel,
2737 bot - fp->fd_top, fp->fd_flags);
2738 fp = (fold_T *)gap->ga_data + i;
2739 flp->lnum += fp->fd_top;
2740 flp->lnum_save += fp->fd_top;
2741 flp->off -= fp->fd_top;
2742 bot += fp->fd_top;
2743 startlnum2 = flp->lnum;
2744
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002745 // This fold may end at the same line, don't incr. flp->lnum.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 }
2747 else
2748 {
2749 /*
2750 * Get the level of the next line, then continue the loop to check
2751 * if it ends there.
2752 * Skip over undefined lines, to find the foldlevel after it.
2753 * For the last line in the file the foldlevel is always valid.
2754 */
2755 flp->lnum = flp->lnum_save;
2756 ll = flp->lnum + 1;
2757 while (!got_int)
2758 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002759 // Make the previous level available to foldlevel().
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760 prev_lnum = flp->lnum;
2761 prev_lnum_lvl = flp->lvl;
2762
2763 if (++flp->lnum > linecount)
2764 break;
2765 flp->lvl = flp->lvl_next;
2766 getlevel(flp);
2767 if (flp->lvl >= 0 || flp->had_end <= MAX_LEVEL)
2768 break;
2769 }
2770 prev_lnum = 0;
2771 if (flp->lnum > linecount)
2772 break;
2773
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002774 // leave flp->lnum_save to lnum of the line that was used to get
2775 // the level, flp->lnum to the lnum of the next line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776 flp->lnum_save = flp->lnum;
2777 flp->lnum = ll;
2778 }
2779 }
2780
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002781 if (fp == NULL) // only happens when got_int is set
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782 return bot;
2783
2784 /*
2785 * Get here when:
2786 * lvl < level: the folds ends just above "flp->lnum"
2787 * lvl >= level: fold continues below "bot"
2788 */
2789
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02002790 // Current fold at least extends until lnum.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791 if (fp->fd_len < flp->lnum - fp->fd_top)
2792 {
2793 fp->fd_len = flp->lnum - fp->fd_top;
Bram Moolenaaref6fc092008-01-13 20:58:13 +00002794 fp->fd_small = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795 fold_changed = TRUE;
2796 }
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02002797 else if (fp->fd_top + fp->fd_len > linecount)
2798 // running into the end of the buffer (deleted last line)
2799 fp->fd_len = linecount - fp->fd_top + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02002801 // Delete contained folds from the end of the last one found until where
2802 // we stopped looking.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803 foldRemove(&fp->fd_nested, startlnum2 - fp->fd_top,
2804 flp->lnum - 1 - fp->fd_top);
2805
2806 if (lvl < level)
2807 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002808 // End of fold found, update the length when it got shorter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002809 if (fp->fd_len != flp->lnum - fp->fd_top)
2810 {
Bram Moolenaar9d20ce62017-03-23 21:53:35 +01002811 if (fp->fd_top + fp->fd_len - 1 > bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002813 // fold continued below bot
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814 if (getlevel == foldlevelMarker
2815 || getlevel == foldlevelExpr
2816 || getlevel == foldlevelSyntax)
2817 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002818 // marker method: truncate the fold and make sure the
2819 // previously included lines are processed again
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 bot = fp->fd_top + fp->fd_len - 1;
2821 fp->fd_len = flp->lnum - fp->fd_top;
2822 }
2823 else
2824 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002825 // indent or expr method: split fold to create a new one
2826 // below bot
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 i = (int)(fp - (fold_T *)gap->ga_data);
2828 foldSplit(gap, i, flp->lnum, bot);
2829 fp = (fold_T *)gap->ga_data + i;
2830 }
2831 }
2832 else
2833 fp->fd_len = flp->lnum - fp->fd_top;
2834 fold_changed = TRUE;
2835 }
2836 }
2837
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002838 // delete following folds that end before the current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839 for (;;)
2840 {
2841 fp2 = fp + 1;
2842 if (fp2 >= (fold_T *)gap->ga_data + gap->ga_len
2843 || fp2->fd_top > flp->lnum)
2844 break;
2845 if (fp2->fd_top + fp2->fd_len > flp->lnum)
2846 {
2847 if (fp2->fd_top < flp->lnum)
2848 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002849 // Make fold that includes lnum start at lnum.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 foldMarkAdjustRecurse(&fp2->fd_nested,
2851 (linenr_T)0, (long)(flp->lnum - fp2->fd_top - 1),
2852 (linenr_T)MAXLNUM, (long)(fp2->fd_top - flp->lnum));
2853 fp2->fd_len -= flp->lnum - fp2->fd_top;
2854 fp2->fd_top = flp->lnum;
2855 fold_changed = TRUE;
2856 }
2857
2858 if (lvl >= level)
2859 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002860 // merge new fold with existing fold that follows
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861 foldMerge(fp, gap, fp2);
2862 }
2863 break;
2864 }
2865 fold_changed = TRUE;
2866 deleteFoldEntry(gap, (int)(fp2 - (fold_T *)gap->ga_data), TRUE);
2867 }
2868
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002869 // Need to redraw the lines we inspected, which might be further down than
2870 // was asked for.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871 if (bot < flp->lnum - 1)
2872 bot = flp->lnum - 1;
2873
2874 return bot;
2875}
2876
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002877// foldInsert() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878/*
2879 * Insert a new fold in "gap" at position "i".
2880 * Returns OK for success, FAIL for failure.
2881 */
2882 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002883foldInsert(garray_T *gap, int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002884{
2885 fold_T *fp;
2886
Yegappan Lakshmananfadc02a2023-01-27 21:03:12 +00002887 if (ga_grow(gap, 1) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888 return FAIL;
2889 fp = (fold_T *)gap->ga_data + i;
Bram Moolenaar64f37d32020-08-31 19:58:13 +02002890 if (gap->ga_len > 0 && i < gap->ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 mch_memmove(fp + 1, fp, sizeof(fold_T) * (gap->ga_len - i));
2892 ++gap->ga_len;
Bram Moolenaar04935fb2022-01-08 16:19:22 +00002893 ga_init2(&fp->fd_nested, sizeof(fold_T), 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894 return OK;
2895}
2896
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002897// foldSplit() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898/*
2899 * Split the "i"th fold in "gap", which starts before "top" and ends below
2900 * "bot" in two pieces, one ending above "top" and the other starting below
2901 * "bot".
2902 * The caller must first have taken care of any nested folds from "top" to
2903 * "bot"!
2904 */
2905 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002906foldSplit(
2907 garray_T *gap,
2908 int i,
2909 linenr_T top,
2910 linenr_T bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911{
2912 fold_T *fp;
2913 fold_T *fp2;
2914 garray_T *gap1;
2915 garray_T *gap2;
2916 int idx;
2917 int len;
2918
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002919 // The fold continues below bot, need to split it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 if (foldInsert(gap, i + 1) == FAIL)
2921 return;
2922 fp = (fold_T *)gap->ga_data + i;
2923 fp[1].fd_top = bot + 1;
2924 fp[1].fd_len = fp->fd_len - (fp[1].fd_top - fp->fd_top);
2925 fp[1].fd_flags = fp->fd_flags;
Bram Moolenaareda6eb92009-11-03 17:04:43 +00002926 fp[1].fd_small = MAYBE;
2927 fp->fd_small = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002928
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002929 // Move nested folds below bot to new fold. There can't be
2930 // any between top and bot, they have been removed by the caller.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931 gap1 = &fp->fd_nested;
2932 gap2 = &fp[1].fd_nested;
Brandon Simmons2c407072022-04-23 13:50:17 +01002933 (void)foldFind(gap1, bot + 1 - fp->fd_top, &fp2);
2934 if (fp2 != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935 {
Bram Moolenaar9c2b0662020-09-01 19:56:15 +02002936 len = (int)((fold_T *)gap1->ga_data + gap1->ga_len - fp2);
2937 if (len > 0 && ga_grow(gap2, len) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002938 {
Bram Moolenaar9c2b0662020-09-01 19:56:15 +02002939 for (idx = 0; idx < len; ++idx)
2940 {
2941 ((fold_T *)gap2->ga_data)[idx] = fp2[idx];
2942 ((fold_T *)gap2->ga_data)[idx].fd_top
2943 -= fp[1].fd_top - fp->fd_top;
2944 }
2945 gap2->ga_len = len;
2946 gap1->ga_len -= len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948 }
2949 fp->fd_len = top - fp->fd_top;
2950 fold_changed = TRUE;
2951}
2952
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002953// foldRemove() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002954/*
2955 * Remove folds within the range "top" to and including "bot".
2956 * Check for these situations:
2957 * 1 2 3
2958 * 1 2 3
2959 * top 2 3 4 5
2960 * 2 3 4 5
2961 * bot 2 3 4 5
2962 * 3 5 6
2963 * 3 5 6
2964 *
2965 * 1: not changed
Bram Moolenaar25394022007-05-10 19:06:20 +00002966 * 2: truncate to stop above "top"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 * 3: split in two parts, one stops above "top", other starts below "bot".
2968 * 4: deleted
2969 * 5: made to start below "bot".
2970 * 6: not changed
2971 */
2972 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002973foldRemove(garray_T *gap, linenr_T top, linenr_T bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974{
2975 fold_T *fp = NULL;
2976
2977 if (bot < top)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002978 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979
Bram Moolenaar64f37d32020-08-31 19:58:13 +02002980 while (gap->ga_len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002982 // Find fold that includes top or a following one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983 if (foldFind(gap, top, &fp) && fp->fd_top < top)
2984 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002985 // 2: or 3: need to delete nested folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986 foldRemove(&fp->fd_nested, top - fp->fd_top, bot - fp->fd_top);
Bram Moolenaarb11c8262017-04-23 16:48:20 +02002987 if (fp->fd_top + fp->fd_len - 1 > bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002989 // 3: need to split it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 foldSplit(gap, (int)(fp - (fold_T *)gap->ga_data), top, bot);
2991 }
2992 else
2993 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002994 // 2: truncate fold at "top".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 fp->fd_len = top - fp->fd_top;
2996 }
2997 fold_changed = TRUE;
2998 continue;
2999 }
3000 if (fp >= (fold_T *)(gap->ga_data) + gap->ga_len
3001 || fp->fd_top > bot)
3002 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003003 // 6: Found a fold below bot, can stop looking.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004 break;
3005 }
3006 if (fp->fd_top >= top)
3007 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003008 // Found an entry below top.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009 fold_changed = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003010 if (fp->fd_top + fp->fd_len - 1 > bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003012 // 5: Make fold that includes bot start below bot.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 foldMarkAdjustRecurse(&fp->fd_nested,
3014 (linenr_T)0, (long)(bot - fp->fd_top),
3015 (linenr_T)MAXLNUM, (long)(fp->fd_top - bot - 1));
3016 fp->fd_len -= bot - fp->fd_top + 1;
3017 fp->fd_top = bot + 1;
3018 break;
3019 }
3020
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003021 // 4: Delete completely contained fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 deleteFoldEntry(gap, (int)(fp - (fold_T *)gap->ga_data), TRUE);
3023 }
3024 }
3025}
3026
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003027// foldReverseOrder() {{{2
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003028 static void
Bram Moolenaarb11c8262017-04-23 16:48:20 +02003029foldReverseOrder(garray_T *gap, linenr_T start_arg, linenr_T end_arg)
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003030{
3031 fold_T *left, *right;
3032 fold_T tmp;
Bram Moolenaarb11c8262017-04-23 16:48:20 +02003033 linenr_T start = start_arg;
3034 linenr_T end = end_arg;
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003035
3036 for (; start < end; start++, end--)
3037 {
3038 left = (fold_T *)gap->ga_data + start;
3039 right = (fold_T *)gap->ga_data + end;
3040 tmp = *left;
3041 *left = *right;
3042 *right = tmp;
3043 }
3044}
3045
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003046// foldMoveRange() {{{2
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003047/*
3048 * Move folds within the inclusive range "line1" to "line2" to after "dest"
3049 * requires "line1" <= "line2" <= "dest"
3050 *
3051 * There are the following situations for the first fold at or below line1 - 1.
3052 * 1 2 3 4
3053 * 1 2 3 4
3054 * line1 2 3 4
3055 * 2 3 4 5 6 7
3056 * line2 3 4 5 6 7
3057 * 3 4 6 7 8 9
3058 * dest 4 7 8 9
3059 * 4 7 8 10
3060 * 4 7 8 10
3061 *
3062 * In the following descriptions, "moved" means moving in the buffer, *and* in
3063 * the fold array.
3064 * Meanwhile, "shifted" just means moving in the buffer.
3065 * 1. not changed
3066 * 2. truncated above line1
3067 * 3. length reduced by line2 - line1, folds starting between the end of 3 and
3068 * dest are truncated and shifted up
3069 * 4. internal folds moved (from [line1, line2] to dest)
3070 * 5. moved to dest.
3071 * 6. truncated below line2 and moved.
3072 * 7. length reduced by line2 - dest, folds starting between line2 and dest are
3073 * removed, top is moved down by move_len.
3074 * 8. truncated below dest and shifted up.
3075 * 9. shifted up
3076 * 10. not changed
3077 */
3078
3079 static void
3080truncate_fold(fold_T *fp, linenr_T end)
3081{
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003082 end += 1;
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003083 foldRemove(&fp->fd_nested, end - fp->fd_top, MAXLNUM);
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003084 fp->fd_len = end - fp->fd_top;
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003085}
3086
3087#define fold_end(fp) ((fp)->fd_top + (fp)->fd_len - 1)
Bram Moolenaar81fcb672020-09-01 21:21:24 +02003088#define valid_fold(fp, gap) ((gap)->ga_len > 0 && (fp) < ((fold_T *)(gap)->ga_data + (gap)->ga_len))
kylo252ae6f1d82022-02-16 19:24:07 +00003089#define fold_index(fp, gap) ((size_t)((fp) - ((fold_T *)(gap)->ga_data)))
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003090
Bram Moolenaar4a5a8dd2017-03-16 13:54:10 +01003091 void
3092foldMoveRange(garray_T *gap, linenr_T line1, linenr_T line2, linenr_T dest)
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003093{
3094 fold_T *fp;
3095 linenr_T range_len = line2 - line1 + 1;
3096 linenr_T move_len = dest - line2;
3097 int at_start = foldFind(gap, line1 - 1, &fp);
3098 size_t move_start = 0, move_end = 0, dest_index = 0;
3099
3100 if (at_start)
3101 {
3102 if (fold_end(fp) > dest)
3103 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003104 // Case 4
3105 // don't have to change this fold, but have to move nested folds.
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003106 foldMoveRange(&fp->fd_nested, line1 - fp->fd_top, line2 -
3107 fp->fd_top, dest - fp->fd_top);
3108 return;
3109 }
3110 else if (fold_end(fp) > line2)
3111 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003112 // Case 3
3113 // Remove nested folds between line1 and line2 & reduce the
3114 // length of fold by "range_len".
3115 // Folds after this one must be dealt with.
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003116 foldMarkAdjustRecurse(&fp->fd_nested, line1 - fp->fd_top, line2 -
3117 fp->fd_top, MAXLNUM, -range_len);
3118 fp->fd_len -= range_len;
3119 }
3120 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003121 // Case 2 truncate fold, folds after this one must be dealt with.
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003122 truncate_fold(fp, line1 - 1);
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003123
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003124 // Look at the next fold, and treat that one as if it were the first
3125 // after "line1" (because now it is).
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003126 fp = fp + 1;
3127 }
3128
3129 if (!valid_fold(fp, gap) || fp->fd_top > dest)
3130 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003131 // Case 10
3132 // No folds after "line1" and before "dest"
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003133 return;
3134 }
3135 else if (fp->fd_top > line2)
3136 {
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003137 for (; valid_fold(fp, gap) && fold_end(fp) <= dest; fp++)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003138 // Case 9. (for all case 9's) -- shift up.
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003139 fp->fd_top -= range_len;
3140
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003141 if (valid_fold(fp, gap) && fp->fd_top <= dest)
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003142 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003143 // Case 8. -- ensure truncated at dest, shift up
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003144 truncate_fold(fp, dest);
3145 fp->fd_top -= range_len;
3146 }
3147 return;
3148 }
3149 else if (fold_end(fp) > dest)
3150 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003151 // Case 7 -- remove nested folds and shrink
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003152 foldMarkAdjustRecurse(&fp->fd_nested, line2 + 1 - fp->fd_top, dest -
3153 fp->fd_top, MAXLNUM, -move_len);
3154 fp->fd_len -= move_len;
3155 fp->fd_top += move_len;
3156 return;
3157 }
3158
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003159 // Case 5 or 6
3160 // changes rely on whether there are folds between the end of
3161 // this fold and "dest".
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003162 move_start = fold_index(fp, gap);
3163
3164 for (; valid_fold(fp, gap) && fp->fd_top <= dest; fp++)
3165 {
3166 if (fp->fd_top <= line2)
3167 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003168 // 1. 2. or 3.
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003169 if (fold_end(fp) > line2)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003170 // 2. or 3., truncate before moving
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003171 truncate_fold(fp, line2);
3172
3173 fp->fd_top += move_len;
3174 continue;
3175 }
3176
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003177 // Record index of the first fold after the moved range.
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003178 if (move_end == 0)
3179 move_end = fold_index(fp, gap);
3180
3181 if (fold_end(fp) > dest)
3182 truncate_fold(fp, dest);
3183
3184 fp->fd_top -= range_len;
3185 }
3186
3187 dest_index = fold_index(fp, gap);
3188
3189 /*
Bram Moolenaar94be6192017-04-22 22:40:11 +02003190 * All folds are now correct, but not necessarily in the correct order. We
3191 * must swap folds in the range [move_end, dest_index) with those in the
3192 * range [move_start, move_end).
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003193 */
Bram Moolenaar94be6192017-04-22 22:40:11 +02003194 if (move_end == 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003195 // There are no folds after those moved, hence no folds have been moved
3196 // out of order.
Bram Moolenaar94be6192017-04-22 22:40:11 +02003197 return;
Bram Moolenaar0c0d4ec2017-03-16 22:06:57 +01003198 foldReverseOrder(gap, (linenr_T)move_start, (linenr_T)dest_index - 1);
3199 foldReverseOrder(gap, (linenr_T)move_start,
3200 (linenr_T)(move_start + dest_index - move_end - 1));
3201 foldReverseOrder(gap, (linenr_T)(move_start + dest_index - move_end),
3202 (linenr_T)(dest_index - 1));
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003203}
3204#undef fold_end
3205#undef valid_fold
3206#undef fold_index
3207
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003208// foldMerge() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209/*
Bram Moolenaar25394022007-05-10 19:06:20 +00003210 * Merge two adjacent folds (and the nested ones in them).
3211 * This only works correctly when the folds are really adjacent! Thus "fp1"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212 * must end just above "fp2".
3213 * The resulting fold is "fp1", nested folds are moved from "fp2" to "fp1".
3214 * Fold entry "fp2" in "gap" is deleted.
3215 */
3216 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003217foldMerge(fold_T *fp1, garray_T *gap, fold_T *fp2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218{
3219 fold_T *fp3;
3220 fold_T *fp4;
3221 int idx;
3222 garray_T *gap1 = &fp1->fd_nested;
3223 garray_T *gap2 = &fp2->fd_nested;
3224
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003225 // If the last nested fold in fp1 touches the first nested fold in fp2,
3226 // merge them recursively.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227 if (foldFind(gap1, fp1->fd_len - 1L, &fp3) && foldFind(gap2, 0L, &fp4))
3228 foldMerge(fp3, gap2, fp4);
3229
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003230 // Move nested folds in fp2 to the end of fp1.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231 if (gap2->ga_len > 0 && ga_grow(gap1, gap2->ga_len) == OK)
3232 {
3233 for (idx = 0; idx < gap2->ga_len; ++idx)
3234 {
3235 ((fold_T *)gap1->ga_data)[gap1->ga_len]
3236 = ((fold_T *)gap2->ga_data)[idx];
3237 ((fold_T *)gap1->ga_data)[gap1->ga_len].fd_top += fp1->fd_len;
3238 ++gap1->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239 }
3240 gap2->ga_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241 }
3242
3243 fp1->fd_len += fp2->fd_len;
3244 deleteFoldEntry(gap, (int)(fp2 - (fold_T *)gap->ga_data), TRUE);
3245 fold_changed = TRUE;
3246}
3247
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003248// foldlevelIndent() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249/*
3250 * Low level function to get the foldlevel for the "indent" method.
3251 * Doesn't use any caching.
3252 * Returns a level of -1 if the foldlevel depends on surrounding lines.
3253 */
3254 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003255foldlevelIndent(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256{
3257 char_u *s;
3258 buf_T *buf;
3259 linenr_T lnum = flp->lnum + flp->off;
3260
3261 buf = flp->wp->w_buffer;
3262 s = skipwhite(ml_get_buf(buf, lnum, FALSE));
3263
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003264 // empty line or lines starting with a character in 'foldignore': level
3265 // depends on surrounding lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 if (*s == NUL || vim_strchr(flp->wp->w_p_fdi, *s) != NULL)
3267 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003268 // first and last line can't be undefined, use level 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269 if (lnum == 1 || lnum == buf->b_ml.ml_line_count)
3270 flp->lvl = 0;
3271 else
3272 flp->lvl = -1;
3273 }
3274 else
Bram Moolenaar0c27cbc2018-11-14 21:45:32 +01003275 flp->lvl = get_indent_buf(buf, lnum) / get_sw_value(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276 if (flp->lvl > flp->wp->w_p_fdn)
Bram Moolenaar74c596b2006-11-01 11:44:31 +00003277 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278 flp->lvl = flp->wp->w_p_fdn;
Bram Moolenaar74c596b2006-11-01 11:44:31 +00003279 if (flp->lvl < 0)
3280 flp->lvl = 0;
3281 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282}
3283
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003284// foldlevelDiff() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285#ifdef FEAT_DIFF
3286/*
3287 * Low level function to get the foldlevel for the "diff" method.
3288 * Doesn't use any caching.
3289 */
3290 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003291foldlevelDiff(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292{
3293 if (diff_infold(flp->wp, flp->lnum + flp->off))
3294 flp->lvl = 1;
3295 else
3296 flp->lvl = 0;
3297}
3298#endif
3299
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003300// foldlevelExpr() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301/*
3302 * Low level function to get the foldlevel for the "expr" method.
3303 * Doesn't use any caching.
3304 * Returns a level of -1 if the foldlevel depends on surrounding lines.
3305 */
3306 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003307foldlevelExpr(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308{
3309#ifndef FEAT_EVAL
3310 flp->start = FALSE;
3311 flp->lvl = 0;
3312#else
3313 win_T *win;
3314 int n;
3315 int c;
3316 linenr_T lnum = flp->lnum + flp->off;
3317 int save_keytyped;
3318
3319 win = curwin;
3320 curwin = flp->wp;
3321 curbuf = flp->wp->w_buffer;
3322 set_vim_var_nr(VV_LNUM, lnum);
3323
3324 flp->start = 0;
3325 flp->had_end = flp->end;
3326 flp->end = MAX_LEVEL + 1;
3327 if (lnum <= 1)
3328 flp->lvl = 0;
3329
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003330 // KeyTyped may be reset to 0 when calling a function which invokes
3331 // do_cmdline(). To make 'foldopen' work correctly restore KeyTyped.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332 save_keytyped = KeyTyped;
Bram Moolenaare70dd112022-01-21 16:31:11 +00003333 n = eval_foldexpr(flp->wp, &c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334 KeyTyped = save_keytyped;
3335
3336 switch (c)
3337 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003338 // "a1", "a2", .. : add to the fold level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339 case 'a': if (flp->lvl >= 0)
3340 {
3341 flp->lvl += n;
3342 flp->lvl_next = flp->lvl;
3343 }
3344 flp->start = n;
3345 break;
3346
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003347 // "s1", "s2", .. : subtract from the fold level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348 case 's': if (flp->lvl >= 0)
3349 {
3350 if (n > flp->lvl)
3351 flp->lvl_next = 0;
3352 else
3353 flp->lvl_next = flp->lvl - n;
3354 flp->end = flp->lvl_next + 1;
3355 }
3356 break;
3357
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003358 // ">1", ">2", .. : start a fold with a certain level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 case '>': flp->lvl = n;
3360 flp->lvl_next = n;
3361 flp->start = 1;
3362 break;
3363
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003364 // "<1", "<2", .. : end a fold with a certain level
Shota Nozaki0689b872024-01-03 19:18:43 +01003365 case '<': // To prevent an unexpected start of a new fold, the next
3366 // level must not exceed the level of the current fold.
3367 flp->lvl_next = MIN(flp->lvl, n - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368 flp->end = n;
3369 break;
3370
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003371 // "=": No change in level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372 case '=': flp->lvl_next = flp->lvl;
3373 break;
3374
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003375 // "-1", "0", "1", ..: set fold level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376 default: if (n < 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003377 // Use the current level for the next line, so that "a1"
3378 // will work there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 flp->lvl_next = flp->lvl;
3380 else
3381 flp->lvl_next = n;
3382 flp->lvl = n;
3383 break;
3384 }
3385
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003386 // If the level is unknown for the first or the last line in the file, use
3387 // level 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388 if (flp->lvl < 0)
3389 {
3390 if (lnum <= 1)
3391 {
3392 flp->lvl = 0;
3393 flp->lvl_next = 0;
3394 }
3395 if (lnum == curbuf->b_ml.ml_line_count)
3396 flp->lvl_next = 0;
3397 }
3398
3399 curwin = win;
3400 curbuf = curwin->w_buffer;
3401#endif
3402}
3403
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003404// parseMarker() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405/*
3406 * Parse 'foldmarker' and set "foldendmarker", "foldstartmarkerlen" and
3407 * "foldendmarkerlen".
3408 * Relies on the option value to have been checked for correctness already.
3409 */
3410 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003411parseMarker(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412{
3413 foldendmarker = vim_strchr(wp->w_p_fmr, ',');
3414 foldstartmarkerlen = (int)(foldendmarker++ - wp->w_p_fmr);
3415 foldendmarkerlen = (int)STRLEN(foldendmarker);
3416}
3417
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003418// foldlevelMarker() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419/*
3420 * Low level function to get the foldlevel for the "marker" method.
3421 * "foldendmarker", "foldstartmarkerlen" and "foldendmarkerlen" must have been
3422 * set before calling this.
3423 * Requires that flp->lvl is set to the fold level of the previous line!
3424 * Careful: This means you can't call this function twice on the same line.
3425 * Doesn't use any caching.
3426 * Sets flp->start when a start marker was found.
3427 */
3428 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003429foldlevelMarker(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430{
3431 char_u *startmarker;
3432 int cstart;
3433 int cend;
3434 int start_lvl = flp->lvl;
3435 char_u *s;
3436 int n;
3437
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003438 // cache a few values for speed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439 startmarker = flp->wp->w_p_fmr;
3440 cstart = *startmarker;
3441 ++startmarker;
3442 cend = *foldendmarker;
3443
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003444 // Default: no start found, next level is same as current level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 flp->start = 0;
3446 flp->lvl_next = flp->lvl;
3447
3448 s = ml_get_buf(flp->wp->w_buffer, flp->lnum + flp->off, FALSE);
3449 while (*s)
3450 {
3451 if (*s == cstart
3452 && STRNCMP(s + 1, startmarker, foldstartmarkerlen - 1) == 0)
3453 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003454 // found startmarker: set flp->lvl
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 s += foldstartmarkerlen;
3456 if (VIM_ISDIGIT(*s))
3457 {
3458 n = atoi((char *)s);
3459 if (n > 0)
3460 {
3461 flp->lvl = n;
3462 flp->lvl_next = n;
3463 if (n <= start_lvl)
3464 flp->start = 1;
3465 else
3466 flp->start = n - start_lvl;
3467 }
3468 }
3469 else
3470 {
3471 ++flp->lvl;
3472 ++flp->lvl_next;
3473 ++flp->start;
3474 }
3475 }
3476 else if (*s == cend
3477 && STRNCMP(s + 1, foldendmarker + 1, foldendmarkerlen - 1) == 0)
3478 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003479 // found endmarker: set flp->lvl_next
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480 s += foldendmarkerlen;
3481 if (VIM_ISDIGIT(*s))
3482 {
3483 n = atoi((char *)s);
3484 if (n > 0)
3485 {
3486 flp->lvl = n;
3487 flp->lvl_next = n - 1;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003488 // never start a fold with an end marker
Bram Moolenaar3ee02292010-01-19 17:24:25 +01003489 if (flp->lvl_next > start_lvl)
3490 flp->lvl_next = start_lvl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003491 }
3492 }
3493 else
3494 --flp->lvl_next;
3495 }
3496 else
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003497 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 }
3499
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003500 // The level can't go negative, must be missing a start marker.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501 if (flp->lvl_next < 0)
3502 flp->lvl_next = 0;
3503}
3504
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003505// foldlevelSyntax() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506/*
3507 * Low level function to get the foldlevel for the "syntax" method.
3508 * Doesn't use any caching.
3509 */
3510 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003511foldlevelSyntax(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512{
3513#ifndef FEAT_SYN_HL
3514 flp->start = 0;
3515 flp->lvl = 0;
3516#else
3517 linenr_T lnum = flp->lnum + flp->off;
3518 int n;
3519
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003520 // Use the maximum fold level at the start of this line and the next.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003521 flp->lvl = syn_get_foldlevel(flp->wp, lnum);
3522 flp->start = 0;
3523 if (lnum < flp->wp->w_buffer->b_ml.ml_line_count)
3524 {
3525 n = syn_get_foldlevel(flp->wp, lnum + 1);
3526 if (n > flp->lvl)
3527 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003528 flp->start = n - flp->lvl; // fold(s) start here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529 flp->lvl = n;
3530 }
3531 }
3532#endif
3533}
3534
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003535// functions for storing the fold state in a View {{{1
3536// put_folds() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537#if defined(FEAT_SESSION) || defined(PROTO)
Bram Moolenaard25c16e2016-01-29 22:13:30 +01003538static int put_folds_recurse(FILE *fd, garray_T *gap, linenr_T off);
3539static int put_foldopen_recurse(FILE *fd, win_T *wp, garray_T *gap, linenr_T off);
3540static int put_fold_open_close(FILE *fd, fold_T *fp, linenr_T off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541
3542/*
3543 * Write commands to "fd" to restore the manual folds in window "wp".
3544 * Return FAIL if writing fails.
3545 */
3546 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003547put_folds(FILE *fd, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548{
3549 if (foldmethodIsManual(wp))
3550 {
3551 if (put_line(fd, "silent! normal! zE") == FAIL
Bram Moolenaarf9547eb2021-02-01 19:24:55 +01003552 || put_folds_recurse(fd, &wp->w_folds, (linenr_T)0) == FAIL
3553 || put_line(fd, "let &fdl = &fdl") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554 return FAIL;
3555 }
3556
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003557 // If some folds are manually opened/closed, need to restore that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 if (wp->w_fold_manual)
Bram Moolenaard25ad652012-02-29 19:20:02 +01003559 return put_foldopen_recurse(fd, wp, &wp->w_folds, (linenr_T)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560
3561 return OK;
3562}
3563
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003564// put_folds_recurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565/*
3566 * Write commands to "fd" to recreate manually created folds.
3567 * Returns FAIL when writing failed.
3568 */
3569 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003570put_folds_recurse(FILE *fd, garray_T *gap, linenr_T off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571{
3572 int i;
3573 fold_T *fp;
3574
3575 fp = (fold_T *)gap->ga_data;
3576 for (i = 0; i < gap->ga_len; i++)
3577 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003578 // Do nested folds first, they will be created closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579 if (put_folds_recurse(fd, &fp->fd_nested, off + fp->fd_top) == FAIL)
3580 return FAIL;
3581 if (fprintf(fd, "%ld,%ldfold", fp->fd_top + off,
3582 fp->fd_top + off + fp->fd_len - 1) < 0
3583 || put_eol(fd) == FAIL)
3584 return FAIL;
3585 ++fp;
3586 }
3587 return OK;
3588}
3589
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003590// put_foldopen_recurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591/*
3592 * Write commands to "fd" to open and close manually opened/closed folds.
3593 * Returns FAIL when writing failed.
3594 */
3595 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003596put_foldopen_recurse(
3597 FILE *fd,
3598 win_T *wp,
3599 garray_T *gap,
3600 linenr_T off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601{
3602 int i;
Bram Moolenaard25ad652012-02-29 19:20:02 +01003603 int level;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 fold_T *fp;
3605
3606 fp = (fold_T *)gap->ga_data;
3607 for (i = 0; i < gap->ga_len; i++)
3608 {
3609 if (fp->fd_flags != FD_LEVEL)
3610 {
3611 if (fp->fd_nested.ga_len > 0)
3612 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003613 // open nested folds while this fold is open
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614 if (fprintf(fd, "%ld", fp->fd_top + off) < 0
3615 || put_eol(fd) == FAIL
Bram Moolenaar002a4ed2012-08-29 15:22:25 +02003616 || put_line(fd, "normal! zo") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 return FAIL;
Bram Moolenaard25ad652012-02-29 19:20:02 +01003618 if (put_foldopen_recurse(fd, wp, &fp->fd_nested,
3619 off + fp->fd_top)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620 == FAIL)
3621 return FAIL;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003622 // close the parent when needed
Bram Moolenaard25ad652012-02-29 19:20:02 +01003623 if (fp->fd_flags == FD_CLOSED)
3624 {
3625 if (put_fold_open_close(fd, fp, off) == FAIL)
3626 return FAIL;
3627 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 }
Bram Moolenaard25ad652012-02-29 19:20:02 +01003629 else
3630 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003631 // Open or close the leaf according to the window foldlevel.
3632 // Do not close a leaf that is already closed, as it will close
3633 // the parent.
Bram Moolenaard25ad652012-02-29 19:20:02 +01003634 level = foldLevelWin(wp, off + fp->fd_top);
3635 if ((fp->fd_flags == FD_CLOSED && wp->w_p_fdl >= level)
3636 || (fp->fd_flags != FD_CLOSED && wp->w_p_fdl < level))
3637 if (put_fold_open_close(fd, fp, off) == FAIL)
3638 return FAIL;
3639 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640 }
3641 ++fp;
3642 }
3643
3644 return OK;
3645}
Bram Moolenaard25ad652012-02-29 19:20:02 +01003646
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003647// put_fold_open_close() {{{2
Bram Moolenaard25ad652012-02-29 19:20:02 +01003648/*
3649 * Write the open or close command to "fd".
3650 * Returns FAIL when writing failed.
3651 */
3652 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003653put_fold_open_close(FILE *fd, fold_T *fp, linenr_T off)
Bram Moolenaard25ad652012-02-29 19:20:02 +01003654{
3655 if (fprintf(fd, "%ld", fp->fd_top + off) < 0
3656 || put_eol(fd) == FAIL
Bram Moolenaar002a4ed2012-08-29 15:22:25 +02003657 || fprintf(fd, "normal! z%c",
Bram Moolenaard25ad652012-02-29 19:20:02 +01003658 fp->fd_flags == FD_CLOSED ? 'c' : 'o') < 0
3659 || put_eol(fd) == FAIL)
3660 return FAIL;
3661
3662 return OK;
3663}
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003664#endif // FEAT_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003666// }}}1
Bram Moolenaardb022f32019-09-01 17:52:32 +02003667#endif // defined(FEAT_FOLDING) || defined(PROTO)
3668
3669#if defined(FEAT_EVAL) || defined(PROTO)
3670
3671/*
3672 * "foldclosed()" and "foldclosedend()" functions
3673 */
3674 static void
3675foldclosed_both(
3676 typval_T *argvars UNUSED,
3677 typval_T *rettv,
3678 int end UNUSED)
3679{
3680# ifdef FEAT_FOLDING
3681 linenr_T lnum;
3682 linenr_T first, last;
3683
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003684 if (in_vim9script() && check_for_lnum_arg(argvars, 0) == FAIL)
3685 return;
3686
Bram Moolenaardb022f32019-09-01 17:52:32 +02003687 lnum = tv_get_lnum(argvars);
3688 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
3689 {
3690 if (hasFoldingWin(curwin, lnum, &first, &last, FALSE, NULL))
3691 {
3692 if (end)
3693 rettv->vval.v_number = (varnumber_T)last;
3694 else
3695 rettv->vval.v_number = (varnumber_T)first;
3696 return;
3697 }
3698 }
3699#endif
3700 rettv->vval.v_number = -1;
3701}
3702
3703/*
3704 * "foldclosed()" function
3705 */
3706 void
3707f_foldclosed(typval_T *argvars, typval_T *rettv)
3708{
3709 foldclosed_both(argvars, rettv, FALSE);
3710}
3711
3712/*
3713 * "foldclosedend()" function
3714 */
3715 void
3716f_foldclosedend(typval_T *argvars, typval_T *rettv)
3717{
3718 foldclosed_both(argvars, rettv, TRUE);
3719}
3720
3721/*
3722 * "foldlevel()" function
3723 */
3724 void
3725f_foldlevel(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
3726{
3727# ifdef FEAT_FOLDING
3728 linenr_T lnum;
3729
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003730 if (in_vim9script() && check_for_lnum_arg(argvars, 0) == FAIL)
3731 return;
3732
Bram Moolenaardb022f32019-09-01 17:52:32 +02003733 lnum = tv_get_lnum(argvars);
3734 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
3735 rettv->vval.v_number = foldLevel(lnum);
3736# endif
3737}
3738
3739/*
3740 * "foldtext()" function
3741 */
3742 void
3743f_foldtext(typval_T *argvars UNUSED, typval_T *rettv)
3744{
3745# ifdef FEAT_FOLDING
3746 linenr_T foldstart;
3747 linenr_T foldend;
3748 char_u *dashes;
3749 linenr_T lnum;
3750 char_u *s;
3751 char_u *r;
3752 int len;
3753 char *txt;
3754 long count;
3755# endif
3756
3757 rettv->v_type = VAR_STRING;
3758 rettv->vval.v_string = NULL;
3759# ifdef FEAT_FOLDING
3760 foldstart = (linenr_T)get_vim_var_nr(VV_FOLDSTART);
3761 foldend = (linenr_T)get_vim_var_nr(VV_FOLDEND);
3762 dashes = get_vim_var_str(VV_FOLDDASHES);
3763 if (foldstart > 0 && foldend <= curbuf->b_ml.ml_line_count
3764 && dashes != NULL)
3765 {
3766 // Find first non-empty line in the fold.
3767 for (lnum = foldstart; lnum < foldend; ++lnum)
3768 if (!linewhite(lnum))
3769 break;
3770
3771 // Find interesting text in this line.
3772 s = skipwhite(ml_get(lnum));
3773 // skip C comment-start
3774 if (s[0] == '/' && (s[1] == '*' || s[1] == '/'))
3775 {
3776 s = skipwhite(s + 2);
3777 if (*skipwhite(s) == NUL
3778 && lnum + 1 < (linenr_T)get_vim_var_nr(VV_FOLDEND))
3779 {
3780 s = skipwhite(ml_get(lnum + 1));
3781 if (*s == '*')
3782 s = skipwhite(s + 1);
3783 }
3784 }
3785 count = (long)(foldend - foldstart + 1);
3786 txt = NGETTEXT("+-%s%3ld line: ", "+-%s%3ld lines: ", count);
3787 r = alloc(STRLEN(txt)
3788 + STRLEN(dashes) // for %s
3789 + 20 // for %3ld
3790 + STRLEN(s)); // concatenated
3791 if (r != NULL)
3792 {
3793 sprintf((char *)r, txt, dashes, count);
3794 len = (int)STRLEN(r);
3795 STRCAT(r, s);
3796 // remove 'foldmarker' and 'commentstring'
3797 foldtext_cleanup(r + len);
3798 rettv->vval.v_string = r;
3799 }
3800 }
3801# endif
3802}
3803
3804/*
3805 * "foldtextresult(lnum)" function
3806 */
3807 void
3808f_foldtextresult(typval_T *argvars UNUSED, typval_T *rettv)
3809{
3810# ifdef FEAT_FOLDING
3811 linenr_T lnum;
3812 char_u *text;
3813 char_u buf[FOLD_TEXT_LEN];
3814 foldinfo_T foldinfo;
3815 int fold_count;
3816 static int entered = FALSE;
3817# endif
3818
3819 rettv->v_type = VAR_STRING;
3820 rettv->vval.v_string = NULL;
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003821
3822 if (in_vim9script() && check_for_lnum_arg(argvars, 0) == FAIL)
3823 return;
3824
Bram Moolenaardb022f32019-09-01 17:52:32 +02003825# ifdef FEAT_FOLDING
3826 if (entered)
3827 return; // reject recursive use
3828 entered = TRUE;
3829
3830 lnum = tv_get_lnum(argvars);
3831 // treat illegal types and illegal string values for {lnum} the same
3832 if (lnum < 0)
3833 lnum = 0;
3834 fold_count = foldedCount(curwin, lnum, &foldinfo);
3835 if (fold_count > 0)
3836 {
3837 text = get_foldtext(curwin, lnum, lnum + fold_count - 1,
3838 &foldinfo, buf);
3839 if (text == buf)
3840 text = vim_strsave(text);
3841 rettv->vval.v_string = text;
3842 }
3843
3844 entered = FALSE;
3845# endif
3846}
3847
3848#endif // FEAT_EVAL