blob: 7c51557073640c9a979e9940f3729b7e99d86f17 [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)
416 redraw_curbuf_later(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{
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100516 if (*p_fcl != NUL) // can only be "all" right now
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517 {
518 checkupdate(curwin);
519 if (checkCloseRec(&curwin->w_folds, curwin->w_cursor.lnum,
520 (int)curwin->w_p_fdl))
521 changed_window_setting();
522 }
523}
524
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100525// checkCloseRec() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100527checkCloseRec(garray_T *gap, linenr_T lnum, int level)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000528{
529 fold_T *fp;
530 int retval = FALSE;
531 int i;
532
533 fp = (fold_T *)gap->ga_data;
534 for (i = 0; i < gap->ga_len; ++i)
535 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100536 // Only manually opened folds may need to be closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537 if (fp[i].fd_flags == FD_OPEN)
538 {
539 if (level <= 0 && (lnum < fp[i].fd_top
540 || lnum >= fp[i].fd_top + fp[i].fd_len))
541 {
542 fp[i].fd_flags = FD_LEVEL;
543 retval = TRUE;
544 }
545 else
546 retval |= checkCloseRec(&fp[i].fd_nested, lnum - fp[i].fd_top,
547 level - 1);
548 }
549 }
550 return retval;
551}
552
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100553// foldCreateAllowed() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554/*
555 * Return TRUE if it's allowed to manually create or delete a fold.
556 * Give an error message and return FALSE if not.
557 */
558 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100559foldManualAllowed(int create)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560{
561 if (foldmethodIsManual(curwin) || foldmethodIsMarker(curwin))
562 return TRUE;
563 if (create)
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000564 emsg(_(e_cannot_create_fold_with_current_foldmethod));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 else
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000566 emsg(_(e_cannot_delete_fold_with_current_foldmethod));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 return FALSE;
568}
569
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100570// foldCreate() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571/*
572 * Create a fold from line "start" to line "end" (inclusive) in the current
573 * window.
574 */
575 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100576foldCreate(linenr_T start, linenr_T end)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577{
578 fold_T *fp;
579 garray_T *gap;
580 garray_T fold_ga;
581 int i, j;
582 int cont;
583 int use_level = FALSE;
584 int closed = FALSE;
585 int level = 0;
586 linenr_T start_rel = start;
587 linenr_T end_rel = end;
588
589 if (start > end)
590 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100591 // reverse the range
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592 end = start_rel;
593 start = end_rel;
594 start_rel = start;
595 end_rel = end;
596 }
597
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100598 // When 'foldmethod' is "marker" add markers, which creates the folds.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 if (foldmethodIsMarker(curwin))
600 {
601 foldCreateMarkers(start, end);
602 return;
603 }
604
605 checkupdate(curwin);
606
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100607 // Find the place to insert the new fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608 gap = &curwin->w_folds;
Bram Moolenaar2c93c682020-08-31 21:15:02 +0200609 if (gap->ga_len == 0)
610 i = 0;
611 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612 {
Bram Moolenaar2c93c682020-08-31 21:15:02 +0200613 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614 {
Bram Moolenaar2c93c682020-08-31 21:15:02 +0200615 if (!foldFind(gap, start_rel, &fp))
616 break;
617 if (fp->fd_top + fp->fd_len > end_rel)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618 {
Bram Moolenaar2c93c682020-08-31 21:15:02 +0200619 // New fold is completely inside this fold: Go one level
620 // deeper.
621 gap = &fp->fd_nested;
622 start_rel -= fp->fd_top;
623 end_rel -= fp->fd_top;
624 if (use_level || fp->fd_flags == FD_LEVEL)
625 {
626 use_level = TRUE;
627 if (level >= curwin->w_p_fdl)
628 closed = TRUE;
629 }
630 else if (fp->fd_flags == FD_CLOSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631 closed = TRUE;
Bram Moolenaar2c93c682020-08-31 21:15:02 +0200632 ++level;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633 }
Bram Moolenaar2c93c682020-08-31 21:15:02 +0200634 else
635 {
636 // This fold and new fold overlap: Insert here and move some
637 // folds inside the new fold.
638 break;
639 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 }
Bram Moolenaar5e1f22f2020-11-10 18:23:52 +0100641 if (gap->ga_len == 0)
642 i = 0;
643 else
644 i = (int)(fp - (fold_T *)gap->ga_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645 }
646
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647 if (ga_grow(gap, 1) == OK)
648 {
649 fp = (fold_T *)gap->ga_data + i;
Bram Moolenaar04935fb2022-01-08 16:19:22 +0000650 ga_init2(&fold_ga, sizeof(fold_T), 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000651
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100652 // Count number of folds that will be contained in the new fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 for (cont = 0; i + cont < gap->ga_len; ++cont)
654 if (fp[cont].fd_top > end_rel)
655 break;
656 if (cont > 0 && ga_grow(&fold_ga, cont) == OK)
657 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100658 // If the first fold starts before the new fold, let the new fold
659 // start there. Otherwise the existing fold would change.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660 if (start_rel > fp->fd_top)
661 start_rel = fp->fd_top;
662
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100663 // When last contained fold isn't completely contained, adjust end
664 // of new fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000665 if (end_rel < fp[cont - 1].fd_top + fp[cont - 1].fd_len - 1)
666 end_rel = fp[cont - 1].fd_top + fp[cont - 1].fd_len - 1;
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100667 // Move contained folds to inside new fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668 mch_memmove(fold_ga.ga_data, fp, sizeof(fold_T) * cont);
669 fold_ga.ga_len += cont;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670 i += cont;
671
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100672 // Adjust line numbers in contained folds to be relative to the
673 // new fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 for (j = 0; j < cont; ++j)
675 ((fold_T *)fold_ga.ga_data)[j].fd_top -= start_rel;
676 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100677 // Move remaining entries to after the new fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 if (i < gap->ga_len)
679 mch_memmove(fp + 1, (fold_T *)gap->ga_data + i,
680 sizeof(fold_T) * (gap->ga_len - i));
681 gap->ga_len = gap->ga_len + 1 - cont;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100683 // insert new fold
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 fp->fd_nested = fold_ga;
685 fp->fd_top = start_rel;
686 fp->fd_len = end_rel - start_rel + 1;
687
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100688 // We want the new fold to be closed. If it would remain open because
689 // of using 'foldlevel', need to adjust fd_flags of containing folds.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 if (use_level && !closed && level < curwin->w_p_fdl)
691 closeFold(start, 1L);
692 if (!use_level)
693 curwin->w_fold_manual = TRUE;
694 fp->fd_flags = FD_CLOSED;
695 fp->fd_small = MAYBE;
696
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100697 // redraw
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 changed_window_setting();
699 }
700}
701
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100702// deleteFold() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000703/*
704 * Delete a fold at line "start" in the current window.
705 * When "end" is not 0, delete all folds from "start" to "end".
706 * When "recursive" is TRUE delete recursively.
707 */
708 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100709deleteFold(
710 linenr_T start,
711 linenr_T end,
712 int recursive,
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100713 int had_visual) // TRUE when Visual selection used
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714{
715 garray_T *gap;
716 fold_T *fp;
717 garray_T *found_ga;
718 fold_T *found_fp = NULL;
719 linenr_T found_off = 0;
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000720 int use_level;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 int maybe_small = FALSE;
722 int level = 0;
723 linenr_T lnum = start;
724 linenr_T lnum_off;
725 int did_one = FALSE;
726 linenr_T first_lnum = MAXLNUM;
727 linenr_T last_lnum = 0;
728
729 checkupdate(curwin);
730
731 while (lnum <= end)
732 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100733 // Find the deepest fold for "start".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 gap = &curwin->w_folds;
735 found_ga = NULL;
736 lnum_off = 0;
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000737 use_level = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738 for (;;)
739 {
740 if (!foldFind(gap, lnum - lnum_off, &fp))
741 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100742 // lnum is inside this fold, remember info
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 found_ga = gap;
744 found_fp = fp;
745 found_off = lnum_off;
746
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100747 // if "lnum" is folded, don't check nesting
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 if (check_closed(curwin, fp, &use_level, level,
749 &maybe_small, lnum_off))
750 break;
751
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100752 // check nested folds
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753 gap = &fp->fd_nested;
754 lnum_off += fp->fd_top;
755 ++level;
756 }
757 if (found_ga == NULL)
758 {
759 ++lnum;
760 }
761 else
762 {
763 lnum = found_fp->fd_top + found_fp->fd_len + found_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764
765 if (foldmethodIsManual(curwin))
766 deleteFoldEntry(found_ga,
767 (int)(found_fp - (fold_T *)found_ga->ga_data), recursive);
768 else
769 {
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000770 if (first_lnum > found_fp->fd_top + found_off)
771 first_lnum = found_fp->fd_top + found_off;
772 if (last_lnum < lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773 last_lnum = lnum;
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000774 if (!did_one)
775 parseMarker(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776 deleteFoldMarkers(found_fp, recursive, found_off);
777 }
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000778 did_one = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100780 // redraw window
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 changed_window_setting();
782 }
783 }
784 if (!did_one)
785 {
Bram Moolenaarb09feaa2022-01-02 20:20:45 +0000786 emsg(_(e_no_fold_found));
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100787 // Force a redraw to remove the Visual highlighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 if (had_visual)
789 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790 }
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000791 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100792 // Deleting markers may make cursor column invalid.
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000793 check_cursor_col();
794
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795 if (last_lnum > 0)
796 changed_lines(first_lnum, (colnr_T)0, last_lnum, 0L);
797}
798
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100799// clearFolding() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800/*
801 * Remove all folding for window "win".
802 */
803 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100804clearFolding(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805{
806 deleteFoldRecurse(&win->w_folds);
807 win->w_foldinvalid = FALSE;
808}
809
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100810// foldUpdate() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811/*
812 * Update folds for changes in the buffer of a window.
813 * Note that inserted/deleted lines must have already been taken care of by
814 * calling foldMarkAdjust().
815 * The changes in lines from top to bot (inclusive).
816 */
817 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100818foldUpdate(win_T *wp, linenr_T top, linenr_T bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819{
820 fold_T *fp;
821
Bram Moolenaar429fcfb2016-04-14 16:22:04 +0200822 if (disable_fold_update > 0)
823 return;
Bram Moolenaar4f57eef2019-08-24 20:54:19 +0200824#ifdef FEAT_DIFF
825 if (need_diff_redraw)
826 // will update later
827 return;
828#endif
Bram Moolenaar429fcfb2016-04-14 16:22:04 +0200829
Bram Moolenaar64f37d32020-08-31 19:58:13 +0200830 if (wp->w_folds.ga_len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 {
Bram Moolenaar64f37d32020-08-31 19:58:13 +0200832 // Mark all folds from top to bot as maybe-small.
833 (void)foldFind(&wp->w_folds, top, &fp);
834 while (fp < (fold_T *)wp->w_folds.ga_data + wp->w_folds.ga_len
835 && fp->fd_top < bot)
836 {
837 fp->fd_small = MAYBE;
838 ++fp;
839 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 }
841
842 if (foldmethodIsIndent(wp)
843 || foldmethodIsExpr(wp)
844 || foldmethodIsMarker(wp)
845#ifdef FEAT_DIFF
846 || foldmethodIsDiff(wp)
847#endif
848 || foldmethodIsSyntax(wp))
Bram Moolenaarfa6d5af2007-10-14 13:33:20 +0000849 {
850 int save_got_int = got_int;
851
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100852 // reset got_int here, otherwise it won't work
Bram Moolenaarfa6d5af2007-10-14 13:33:20 +0000853 got_int = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 foldUpdateIEMS(wp, top, bot);
Bram Moolenaarfa6d5af2007-10-14 13:33:20 +0000855 got_int |= save_got_int;
856 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857}
858
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100859// foldUpdateAll() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860/*
861 * Update all lines in a window for folding.
862 * Used when a fold setting changes or after reloading the buffer.
863 * The actual updating is postponed until fold info is used, to avoid doing
864 * every time a setting is changed or a syntax item is added.
865 */
866 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100867foldUpdateAll(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868{
869 win->w_foldinvalid = TRUE;
870 redraw_win_later(win, NOT_VALID);
871}
872
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100873// foldMoveTo() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874/*
875 * If "updown" is FALSE: Move to the start or end of the fold.
876 * If "updown" is TRUE: move to fold at the same level.
877 * If not moved return FAIL.
878 */
879 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100880foldMoveTo(
881 int updown,
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100882 int dir, // FORWARD or BACKWARD
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100883 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884{
885 long n;
886 int retval = FAIL;
887 linenr_T lnum_off;
888 linenr_T lnum_found;
889 linenr_T lnum;
890 int use_level;
891 int maybe_small;
892 garray_T *gap;
893 fold_T *fp;
894 int level;
895 int last;
896
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000897 checkupdate(curwin);
898
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100899 // Repeat "count" times.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 for (n = 0; n < count; ++n)
901 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100902 // Find nested folds. Stop when a fold is closed. The deepest fold
903 // that moves the cursor is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 lnum_off = 0;
905 gap = &curwin->w_folds;
Bram Moolenaarc136a352020-11-03 20:05:40 +0100906 if (gap->ga_len == 0)
907 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 use_level = FALSE;
909 maybe_small = FALSE;
910 lnum_found = curwin->w_cursor.lnum;
911 level = 0;
912 last = FALSE;
913 for (;;)
914 {
915 if (!foldFind(gap, curwin->w_cursor.lnum - lnum_off, &fp))
916 {
Bram Moolenaar6a78f322020-12-21 14:01:41 +0100917 if (!updown || gap->ga_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918 break;
919
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100920 // When moving up, consider a fold above the cursor; when
921 // moving down consider a fold below the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922 if (dir == FORWARD)
923 {
924 if (fp - (fold_T *)gap->ga_data >= gap->ga_len)
925 break;
926 --fp;
927 }
928 else
929 {
930 if (fp == (fold_T *)gap->ga_data)
931 break;
932 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100933 // don't look for contained folds, they will always move
934 // the cursor too far.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 last = TRUE;
936 }
937
938 if (!last)
939 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100940 // Check if this fold is closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 if (check_closed(curwin, fp, &use_level, level,
942 &maybe_small, lnum_off))
943 last = TRUE;
944
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100945 // "[z" and "]z" stop at closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 if (last && !updown)
947 break;
948 }
949
950 if (updown)
951 {
952 if (dir == FORWARD)
953 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100954 // to start of next fold if there is one
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955 if (fp + 1 - (fold_T *)gap->ga_data < gap->ga_len)
956 {
957 lnum = fp[1].fd_top + lnum_off;
958 if (lnum > curwin->w_cursor.lnum)
959 lnum_found = lnum;
960 }
961 }
962 else
963 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100964 // to end of previous fold if there is one
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965 if (fp > (fold_T *)gap->ga_data)
966 {
967 lnum = fp[-1].fd_top + lnum_off + fp[-1].fd_len - 1;
968 if (lnum < curwin->w_cursor.lnum)
969 lnum_found = lnum;
970 }
971 }
972 }
973 else
974 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100975 // Open fold found, set cursor to its start/end and then check
976 // nested folds.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 if (dir == FORWARD)
978 {
979 lnum = fp->fd_top + lnum_off + fp->fd_len - 1;
980 if (lnum > curwin->w_cursor.lnum)
981 lnum_found = lnum;
982 }
983 else
984 {
985 lnum = fp->fd_top + lnum_off;
986 if (lnum < curwin->w_cursor.lnum)
987 lnum_found = lnum;
988 }
989 }
990
991 if (last)
992 break;
993
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100994 // Check nested folds (if any).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 gap = &fp->fd_nested;
996 lnum_off += fp->fd_top;
997 ++level;
998 }
999 if (lnum_found != curwin->w_cursor.lnum)
1000 {
1001 if (retval == FAIL)
1002 setpcmark();
1003 curwin->w_cursor.lnum = lnum_found;
1004 curwin->w_cursor.col = 0;
1005 retval = OK;
1006 }
1007 else
1008 break;
1009 }
1010
1011 return retval;
1012}
1013
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001014// foldInitWin() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015/*
1016 * Init the fold info in a new window.
1017 */
1018 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001019foldInitWin(win_T *new_win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020{
Bram Moolenaar04935fb2022-01-08 16:19:22 +00001021 ga_init2(&new_win->w_folds, sizeof(fold_T), 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022}
1023
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001024// find_wl_entry() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025/*
1026 * Find an entry in the win->w_lines[] array for buffer line "lnum".
1027 * Only valid entries are considered (for entries where wl_valid is FALSE the
1028 * line number can be wrong).
1029 * Returns index of entry or -1 if not found.
1030 */
1031 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001032find_wl_entry(win_T *win, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033{
1034 int i;
1035
Bram Moolenaar08bb82e2010-03-17 16:45:12 +01001036 for (i = 0; i < win->w_lines_valid; ++i)
1037 if (win->w_lines[i].wl_valid)
1038 {
1039 if (lnum < win->w_lines[i].wl_lnum)
1040 return -1;
1041 if (lnum <= win->w_lines[i].wl_lastlnum)
1042 return i;
1043 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 return -1;
1045}
1046
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001047// foldAdjustVisual() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048/*
1049 * Adjust the Visual area to include any fold at the start or end completely.
1050 */
1051 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001052foldAdjustVisual(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053{
1054 pos_T *start, *end;
1055 char_u *ptr;
1056
1057 if (!VIsual_active || !hasAnyFolding(curwin))
1058 return;
1059
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001060 if (LTOREQ_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061 {
1062 start = &VIsual;
1063 end = &curwin->w_cursor;
1064 }
1065 else
1066 {
1067 start = &curwin->w_cursor;
1068 end = &VIsual;
1069 }
1070 if (hasFolding(start->lnum, &start->lnum, NULL))
1071 start->col = 0;
1072 if (hasFolding(end->lnum, NULL, &end->lnum))
1073 {
1074 ptr = ml_get(end->lnum);
1075 end->col = (colnr_T)STRLEN(ptr);
1076 if (end->col > 0 && *p_sel == 'o')
1077 --end->col;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001078 // prevent cursor from moving on the trail byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079 if (has_mbyte)
1080 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081 }
1082}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001084// cursor_foldstart() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085/*
1086 * Move the cursor to the first line of a closed fold.
1087 */
1088 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001089foldAdjustCursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090{
1091 (void)hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL);
1092}
1093
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001094// Internal functions for "fold_T" {{{1
1095// cloneFoldGrowArray() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096/*
1097 * Will "clone" (i.e deep copy) a garray_T of folds.
1098 *
1099 * Return FAIL if the operation cannot be completed, otherwise OK.
1100 */
1101 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001102cloneFoldGrowArray(garray_T *from, garray_T *to)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103{
1104 int i;
1105 fold_T *from_p;
1106 fold_T *to_p;
1107
1108 ga_init2(to, from->ga_itemsize, from->ga_growsize);
1109 if (from->ga_len == 0 || ga_grow(to, from->ga_len) == FAIL)
1110 return;
1111
1112 from_p = (fold_T *)from->ga_data;
1113 to_p = (fold_T *)to->ga_data;
1114
1115 for (i = 0; i < from->ga_len; i++)
1116 {
1117 to_p->fd_top = from_p->fd_top;
1118 to_p->fd_len = from_p->fd_len;
1119 to_p->fd_flags = from_p->fd_flags;
1120 to_p->fd_small = from_p->fd_small;
1121 cloneFoldGrowArray(&from_p->fd_nested, &to_p->fd_nested);
1122 ++to->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123 ++from_p;
1124 ++to_p;
1125 }
1126}
1127
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001128// foldFind() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129/*
1130 * Search for line "lnum" in folds of growarray "gap".
Brandon Simmons2c407072022-04-23 13:50:17 +01001131 * Set "*fpp" to the fold struct for the fold that contains "lnum" or
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 * the first fold below it (careful: it can be beyond the end of the array!).
1133 * Returns FALSE when there is no fold that contains "lnum".
1134 */
1135 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001136foldFind(garray_T *gap, linenr_T lnum, fold_T **fpp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137{
1138 linenr_T low, high;
1139 fold_T *fp;
1140 int i;
1141
Bram Moolenaar64f37d32020-08-31 19:58:13 +02001142 if (gap->ga_len == 0)
1143 {
1144 *fpp = NULL;
1145 return FALSE;
1146 }
1147
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148 /*
1149 * Perform a binary search.
1150 * "low" is lowest index of possible match.
1151 * "high" is highest index of possible match.
1152 */
1153 fp = (fold_T *)gap->ga_data;
1154 low = 0;
1155 high = gap->ga_len - 1;
1156 while (low <= high)
1157 {
1158 i = (low + high) / 2;
1159 if (fp[i].fd_top > lnum)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001160 // fold below lnum, adjust high
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 high = i - 1;
1162 else if (fp[i].fd_top + fp[i].fd_len <= lnum)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001163 // fold above lnum, adjust low
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 low = i + 1;
1165 else
1166 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001167 // lnum is inside this fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 *fpp = fp + i;
1169 return TRUE;
1170 }
1171 }
1172 *fpp = fp + low;
1173 return FALSE;
1174}
1175
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001176// foldLevelWin() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177/*
1178 * Return fold level at line number "lnum" in window "wp".
1179 */
1180 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001181foldLevelWin(win_T *wp, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182{
1183 fold_T *fp;
1184 linenr_T lnum_rel = lnum;
1185 int level = 0;
1186 garray_T *gap;
1187
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001188 // Recursively search for a fold that contains "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189 gap = &wp->w_folds;
1190 for (;;)
1191 {
1192 if (!foldFind(gap, lnum_rel, &fp))
1193 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001194 // Check nested folds. Line number is relative to containing fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 gap = &fp->fd_nested;
1196 lnum_rel -= fp->fd_top;
1197 ++level;
1198 }
1199
1200 return level;
1201}
1202
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001203// checkupdate() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204/*
1205 * Check if the folds in window "wp" are invalid and update them if needed.
1206 */
1207 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001208checkupdate(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209{
1210 if (wp->w_foldinvalid)
1211 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001212 foldUpdate(wp, (linenr_T)1, (linenr_T)MAXLNUM); // will update all
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 wp->w_foldinvalid = FALSE;
1214 }
1215}
1216
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001217// setFoldRepeat() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218/*
1219 * Open or close fold for current window at line "lnum".
1220 * Repeat "count" times.
1221 */
1222 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001223setFoldRepeat(linenr_T lnum, long count, int do_open)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224{
1225 int done;
1226 long n;
1227
1228 for (n = 0; n < count; ++n)
1229 {
1230 done = DONE_NOTHING;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00001231 (void)setManualFold(lnum, do_open, FALSE, &done);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 if (!(done & DONE_ACTION))
1233 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001234 // Only give an error message when no fold could be opened.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 if (n == 0 && !(done & DONE_FOLD))
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001236 emsg(_(e_no_fold_found));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 break;
1238 }
1239 }
1240}
1241
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001242// setManualFold() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243/*
1244 * Open or close the fold in the current window which contains "lnum".
1245 * Also does this for other windows in diff mode when needed.
1246 */
1247 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001248setManualFold(
1249 linenr_T lnum,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001250 int opening, // TRUE when opening, FALSE when closing
1251 int recurse, // TRUE when closing/opening recursive
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001252 int *donep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253{
1254#ifdef FEAT_DIFF
1255 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
1256 {
1257 win_T *wp;
1258 linenr_T dlnum;
1259
1260 /*
1261 * Do the same operation in other windows in diff mode. Calculate the
1262 * line number from the diffs.
1263 */
1264 FOR_ALL_WINDOWS(wp)
1265 {
1266 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
1267 {
1268 dlnum = diff_lnum_win(curwin->w_cursor.lnum, wp);
1269 if (dlnum != 0)
1270 (void)setManualFoldWin(wp, dlnum, opening, recurse, NULL);
1271 }
1272 }
1273 }
1274#endif
1275
1276 return setManualFoldWin(curwin, lnum, opening, recurse, donep);
1277}
1278
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001279// setManualFoldWin() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280/*
1281 * Open or close the fold in window "wp" which contains "lnum".
1282 * "donep", when not NULL, points to flag that is set to DONE_FOLD when some
1283 * fold was found and to DONE_ACTION when some fold was opened or closed.
1284 * When "donep" is NULL give an error message when no fold was found for
1285 * "lnum", but only if "wp" is "curwin".
1286 * Return the line number of the next line that could be closed.
1287 * It's only valid when "opening" is TRUE!
1288 */
1289 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001290setManualFoldWin(
1291 win_T *wp,
1292 linenr_T lnum,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001293 int opening, // TRUE when opening, FALSE when closing
1294 int recurse, // TRUE when closing/opening recursive
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001295 int *donep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296{
1297 fold_T *fp;
1298 fold_T *fp2;
1299 fold_T *found = NULL;
1300 int j;
1301 int level = 0;
1302 int use_level = FALSE;
1303 int found_fold = FALSE;
1304 garray_T *gap;
1305 linenr_T next = MAXLNUM;
1306 linenr_T off = 0;
1307 int done = 0;
1308
1309 checkupdate(wp);
1310
1311 /*
1312 * Find the fold, open or close it.
1313 */
1314 gap = &wp->w_folds;
1315 for (;;)
1316 {
1317 if (!foldFind(gap, lnum, &fp))
1318 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001319 // If there is a following fold, continue there next time.
Bram Moolenaar9c2b0662020-09-01 19:56:15 +02001320 if (fp != NULL && fp < (fold_T *)gap->ga_data + gap->ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 next = fp->fd_top + off;
1322 break;
1323 }
1324
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001325 // lnum is inside this fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 found_fold = TRUE;
1327
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001328 // If there is a following fold, continue there next time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 if (fp + 1 < (fold_T *)gap->ga_data + gap->ga_len)
1330 next = fp[1].fd_top + off;
1331
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001332 // Change from level-dependent folding to manual.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 if (use_level || fp->fd_flags == FD_LEVEL)
1334 {
1335 use_level = TRUE;
1336 if (level >= wp->w_p_fdl)
1337 fp->fd_flags = FD_CLOSED;
1338 else
1339 fp->fd_flags = FD_OPEN;
1340 fp2 = (fold_T *)fp->fd_nested.ga_data;
1341 for (j = 0; j < fp->fd_nested.ga_len; ++j)
1342 fp2[j].fd_flags = FD_LEVEL;
1343 }
1344
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001345 // Simple case: Close recursively means closing the fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346 if (!opening && recurse)
1347 {
1348 if (fp->fd_flags != FD_CLOSED)
1349 {
1350 done |= DONE_ACTION;
1351 fp->fd_flags = FD_CLOSED;
1352 }
1353 }
1354 else if (fp->fd_flags == FD_CLOSED)
1355 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001356 // When opening, open topmost closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 if (opening)
1358 {
1359 fp->fd_flags = FD_OPEN;
1360 done |= DONE_ACTION;
1361 if (recurse)
1362 foldOpenNested(fp);
1363 }
1364 break;
1365 }
1366
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001367 // fold is open, check nested folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 found = fp;
1369 gap = &fp->fd_nested;
1370 lnum -= fp->fd_top;
1371 off += fp->fd_top;
1372 ++level;
1373 }
1374 if (found_fold)
1375 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001376 // When closing and not recurse, close deepest open fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 if (!opening && found != NULL)
1378 {
1379 found->fd_flags = FD_CLOSED;
1380 done |= DONE_ACTION;
1381 }
1382 wp->w_fold_manual = TRUE;
1383 if (done & DONE_ACTION)
1384 changed_window_setting_win(wp);
1385 done |= DONE_FOLD;
1386 }
1387 else if (donep == NULL && wp == curwin)
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001388 emsg(_(e_no_fold_found));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389
1390 if (donep != NULL)
1391 *donep |= done;
1392
1393 return next;
1394}
1395
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001396// foldOpenNested() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397/*
1398 * Open all nested folds in fold "fpr" recursively.
1399 */
1400 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001401foldOpenNested(fold_T *fpr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402{
1403 int i;
1404 fold_T *fp;
1405
1406 fp = (fold_T *)fpr->fd_nested.ga_data;
1407 for (i = 0; i < fpr->fd_nested.ga_len; ++i)
1408 {
1409 foldOpenNested(&fp[i]);
1410 fp[i].fd_flags = FD_OPEN;
1411 }
1412}
1413
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001414// deleteFoldEntry() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415/*
1416 * Delete fold "idx" from growarray "gap".
1417 * When "recursive" is TRUE also delete all the folds contained in it.
1418 * When "recursive" is FALSE contained folds are moved one level up.
1419 */
1420 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001421deleteFoldEntry(garray_T *gap, int idx, int recursive)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001422{
1423 fold_T *fp;
1424 int i;
1425 long moved;
1426 fold_T *nfp;
1427
1428 fp = (fold_T *)gap->ga_data + idx;
1429 if (recursive || fp->fd_nested.ga_len == 0)
1430 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001431 // recursively delete the contained folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 deleteFoldRecurse(&fp->fd_nested);
1433 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001434 if (idx < gap->ga_len)
1435 mch_memmove(fp, fp + 1, sizeof(fold_T) * (gap->ga_len - idx));
1436 }
1437 else
1438 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001439 // Move nested folds one level up, to overwrite the fold that is
1440 // deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 moved = fp->fd_nested.ga_len;
1442 if (ga_grow(gap, (int)(moved - 1)) == OK)
1443 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001444 // Get "fp" again, the array may have been reallocated.
Bram Moolenaarc9927c12011-08-26 16:13:00 +02001445 fp = (fold_T *)gap->ga_data + idx;
1446
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001447 // adjust fd_top and fd_flags for the moved folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 nfp = (fold_T *)fp->fd_nested.ga_data;
1449 for (i = 0; i < moved; ++i)
1450 {
1451 nfp[i].fd_top += fp->fd_top;
1452 if (fp->fd_flags == FD_LEVEL)
1453 nfp[i].fd_flags = FD_LEVEL;
1454 if (fp->fd_small == MAYBE)
1455 nfp[i].fd_small = MAYBE;
1456 }
1457
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001458 // move the existing folds down to make room
Bram Moolenaarc9927c12011-08-26 16:13:00 +02001459 if (idx + 1 < gap->ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460 mch_memmove(fp + moved, fp + 1,
Bram Moolenaarc9927c12011-08-26 16:13:00 +02001461 sizeof(fold_T) * (gap->ga_len - (idx + 1)));
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001462 // move the contained folds one level up
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463 mch_memmove(fp, nfp, (size_t)(sizeof(fold_T) * moved));
1464 vim_free(nfp);
1465 gap->ga_len += moved - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 }
1467 }
1468}
1469
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001470// deleteFoldRecurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471/*
1472 * Delete nested folds in a fold.
1473 */
1474 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001475deleteFoldRecurse(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476{
1477 int i;
1478
1479 for (i = 0; i < gap->ga_len; ++i)
1480 deleteFoldRecurse(&(((fold_T *)(gap->ga_data))[i].fd_nested));
1481 ga_clear(gap);
1482}
1483
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001484// foldMarkAdjust() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485/*
1486 * Update line numbers of folds for inserted/deleted lines.
1487 */
1488 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001489foldMarkAdjust(
1490 win_T *wp,
1491 linenr_T line1,
1492 linenr_T line2,
1493 long amount,
1494 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001496 // If deleting marks from line1 to line2, but not deleting all those
1497 // lines, set line2 so that only deleted lines have their folds removed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 if (amount == MAXLNUM && line2 >= line1 && line2 - line1 >= -amount_after)
1499 line2 = line1 - amount_after - 1;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001500 // If appending a line in Insert mode, it should be included in the fold
1501 // just above the line.
Bram Moolenaar24959102022-05-07 20:01:16 +01001502 if ((State & MODE_INSERT) && amount == (linenr_T)1 && line2 == MAXLNUM)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503 --line1;
1504 foldMarkAdjustRecurse(&wp->w_folds, line1, line2, amount, amount_after);
1505}
1506
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001507// foldMarkAdjustRecurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001509foldMarkAdjustRecurse(
1510 garray_T *gap,
1511 linenr_T line1,
1512 linenr_T line2,
1513 long amount,
1514 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515{
1516 fold_T *fp;
1517 int i;
1518 linenr_T last;
1519 linenr_T top;
1520
Bram Moolenaar07e87e92020-08-31 21:22:40 +02001521 if (gap->ga_len == 0)
1522 return;
1523
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001524 // In Insert mode an inserted line at the top of a fold is considered part
1525 // of the fold, otherwise it isn't.
Bram Moolenaar24959102022-05-07 20:01:16 +01001526 if ((State & MODE_INSERT) && amount == (linenr_T)1 && line2 == MAXLNUM)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 top = line1 + 1;
1528 else
1529 top = line1;
1530
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001531 // Find the fold containing or just below "line1".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 (void)foldFind(gap, line1, &fp);
1533
1534 /*
1535 * Adjust all folds below "line1" that are affected.
1536 */
1537 for (i = (int)(fp - (fold_T *)gap->ga_data); i < gap->ga_len; ++i, ++fp)
1538 {
1539 /*
1540 * Check for these situations:
1541 * 1 2 3
1542 * 1 2 3
1543 * line1 2 3 4 5
1544 * 2 3 4 5
1545 * 2 3 4 5
1546 * line2 2 3 4 5
1547 * 3 5 6
1548 * 3 5 6
1549 */
1550
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001551 last = fp->fd_top + fp->fd_len - 1; // last line of fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001553 // 1. fold completely above line1: nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 if (last < line1)
1555 continue;
1556
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001557 // 6. fold below line2: only adjust for amount_after
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558 if (fp->fd_top > line2)
1559 {
1560 if (amount_after == 0)
1561 break;
1562 fp->fd_top += amount_after;
1563 }
1564 else
1565 {
1566 if (fp->fd_top >= top && last <= line2)
1567 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001568 // 4. fold completely contained in range
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 if (amount == MAXLNUM)
1570 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001571 // Deleting lines: delete the fold completely
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 deleteFoldEntry(gap, i, TRUE);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001573 --i; // adjust index for deletion
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 --fp;
1575 }
1576 else
1577 fp->fd_top += amount;
1578 }
1579 else
1580 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 if (fp->fd_top < top)
1582 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001583 // 2 or 3: need to correct nested folds too
Bram Moolenaar194b94c2009-09-18 13:17:09 +00001584 foldMarkAdjustRecurse(&fp->fd_nested, line1 - fp->fd_top,
1585 line2 - fp->fd_top, amount, amount_after);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586 if (last <= line2)
1587 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001588 // 2. fold contains line1, line2 is below fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 if (amount == MAXLNUM)
1590 fp->fd_len = line1 - fp->fd_top;
1591 else
1592 fp->fd_len += amount;
1593 }
1594 else
1595 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001596 // 3. fold contains line1 and line2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 fp->fd_len += amount_after;
1598 }
1599 }
1600 else
1601 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001602 // 5. fold is below line1 and contains line2; need to
1603 // correct nested folds too
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 if (amount == MAXLNUM)
1605 {
Bram Moolenaar1159b162017-02-28 21:53:56 +01001606 foldMarkAdjustRecurse(&fp->fd_nested,
Bram Moolenaar6b434712022-02-15 19:15:22 +00001607 0,
Bram Moolenaar1159b162017-02-28 21:53:56 +01001608 line2 - fp->fd_top,
1609 amount,
1610 amount_after + (fp->fd_top - top));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 fp->fd_len -= line2 - fp->fd_top + 1;
1612 fp->fd_top = line1;
1613 }
1614 else
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 - amount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 fp->fd_len += amount_after - amount;
1622 fp->fd_top += amount;
1623 }
1624 }
1625 }
1626 }
1627 }
1628}
1629
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001630// getDeepestNesting() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631/*
1632 * Get the lowest 'foldlevel' value that makes the deepest nested fold in the
1633 * current window open.
1634 */
1635 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001636getDeepestNesting(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637{
1638 checkupdate(curwin);
1639 return getDeepestNestingRecurse(&curwin->w_folds);
1640}
1641
1642 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001643getDeepestNestingRecurse(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644{
1645 int i;
1646 int level;
1647 int maxlevel = 0;
1648 fold_T *fp;
1649
1650 fp = (fold_T *)gap->ga_data;
1651 for (i = 0; i < gap->ga_len; ++i)
1652 {
1653 level = getDeepestNestingRecurse(&fp[i].fd_nested) + 1;
1654 if (level > maxlevel)
1655 maxlevel = level;
1656 }
1657
1658 return maxlevel;
1659}
1660
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001661// check_closed() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662/*
1663 * Check if a fold is closed and update the info needed to check nested folds.
1664 */
1665 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001666check_closed(
1667 win_T *win,
1668 fold_T *fp,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001669 int *use_levelp, // TRUE: outer fold had FD_LEVEL
1670 int level, // folding depth
1671 int *maybe_smallp, // TRUE: outer this had fd_small == MAYBE
1672 linenr_T lnum_off) // line number offset for fp->fd_top
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673{
1674 int closed = FALSE;
1675
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001676 // Check if this fold is closed. If the flag is FD_LEVEL this
1677 // fold and all folds it contains depend on 'foldlevel'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678 if (*use_levelp || fp->fd_flags == FD_LEVEL)
1679 {
1680 *use_levelp = TRUE;
1681 if (level >= win->w_p_fdl)
1682 closed = TRUE;
1683 }
1684 else if (fp->fd_flags == FD_CLOSED)
1685 closed = TRUE;
1686
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001687 // Small fold isn't closed anyway.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688 if (fp->fd_small == MAYBE)
1689 *maybe_smallp = TRUE;
1690 if (closed)
1691 {
1692 if (*maybe_smallp)
1693 fp->fd_small = MAYBE;
1694 checkSmall(win, fp, lnum_off);
1695 if (fp->fd_small == TRUE)
1696 closed = FALSE;
1697 }
1698 return closed;
1699}
1700
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001701// checkSmall() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702/*
1703 * Update fd_small field of fold "fp".
1704 */
1705 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001706checkSmall(
1707 win_T *wp,
1708 fold_T *fp,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001709 linenr_T lnum_off) // offset for fp->fd_top
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710{
1711 int count;
1712 int n;
1713
1714 if (fp->fd_small == MAYBE)
1715 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001716 // Mark any nested folds to maybe-small
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 setSmallMaybe(&fp->fd_nested);
1718
1719 if (fp->fd_len > curwin->w_p_fml)
1720 fp->fd_small = FALSE;
1721 else
1722 {
1723 count = 0;
1724 for (n = 0; n < fp->fd_len; ++n)
1725 {
1726 count += plines_win_nofold(wp, fp->fd_top + lnum_off + n);
1727 if (count > curwin->w_p_fml)
1728 {
1729 fp->fd_small = FALSE;
1730 return;
1731 }
1732 }
1733 fp->fd_small = TRUE;
1734 }
1735 }
1736}
1737
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001738// setSmallMaybe() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739/*
1740 * Set small flags in "gap" to MAYBE.
1741 */
1742 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001743setSmallMaybe(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744{
1745 int i;
1746 fold_T *fp;
1747
1748 fp = (fold_T *)gap->ga_data;
1749 for (i = 0; i < gap->ga_len; ++i)
1750 fp[i].fd_small = MAYBE;
1751}
1752
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001753// foldCreateMarkers() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754/*
1755 * Create a fold from line "start" to line "end" (inclusive) in the current
1756 * window by adding markers.
1757 */
1758 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001759foldCreateMarkers(linenr_T start, linenr_T end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760{
1761 if (!curbuf->b_p_ma)
1762 {
Bram Moolenaar108010a2021-06-27 22:03:33 +02001763 emsg(_(e_cannot_make_changes_modifiable_is_off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 return;
1765 }
1766 parseMarker(curwin);
1767
1768 foldAddMarker(start, curwin->w_p_fmr, foldstartmarkerlen);
1769 foldAddMarker(end, foldendmarker, foldendmarkerlen);
1770
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001771 // Update both changes here, to avoid all folds after the start are
1772 // changed when the start marker is inserted and the end isn't.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 changed_lines(start, (colnr_T)0, end, 0L);
1774}
1775
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001776// foldAddMarker() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777/*
1778 * Add "marker[markerlen]" in 'commentstring' to line "lnum".
1779 */
1780 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001781foldAddMarker(linenr_T lnum, char_u *marker, int markerlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782{
1783 char_u *cms = curbuf->b_p_cms;
1784 char_u *line;
1785 int line_len;
1786 char_u *newline;
1787 char_u *p = (char_u *)strstr((char *)curbuf->b_p_cms, "%s");
Bram Moolenaar025a6b72017-03-12 20:37:21 +01001788 int line_is_comment = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001790 // Allocate a new line: old-line + 'cms'-start + marker + 'cms'-end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001791 line = ml_get(lnum);
1792 line_len = (int)STRLEN(line);
1793
1794 if (u_save(lnum - 1, lnum + 1) == OK)
1795 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001796 // Check if the line ends with an unclosed comment
Bram Moolenaar025a6b72017-03-12 20:37:21 +01001797 (void)skip_comment(line, FALSE, FALSE, &line_is_comment);
Bram Moolenaar964b3742019-05-24 18:54:09 +02001798 newline = alloc(line_len + markerlen + STRLEN(cms) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 if (newline == NULL)
1800 return;
1801 STRCPY(newline, line);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001802 // Append the marker to the end of the line
Bram Moolenaar025a6b72017-03-12 20:37:21 +01001803 if (p == NULL || line_is_comment)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00001804 vim_strncpy(newline + line_len, marker, markerlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 else
1806 {
1807 STRCPY(newline + line_len, cms);
1808 STRNCPY(newline + line_len + (p - cms), marker, markerlen);
1809 STRCPY(newline + line_len + (p - cms) + markerlen, p + 2);
1810 }
1811
1812 ml_replace(lnum, newline, FALSE);
1813 }
1814}
1815
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001816// deleteFoldMarkers() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817/*
1818 * Delete the markers for a fold, causing it to be deleted.
1819 */
1820 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001821deleteFoldMarkers(
1822 fold_T *fp,
1823 int recursive,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001824 linenr_T lnum_off) // offset for fp->fd_top
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825{
1826 int i;
1827
1828 if (recursive)
1829 for (i = 0; i < fp->fd_nested.ga_len; ++i)
1830 deleteFoldMarkers((fold_T *)fp->fd_nested.ga_data + i, TRUE,
1831 lnum_off + fp->fd_top);
1832 foldDelMarker(fp->fd_top + lnum_off, curwin->w_p_fmr, foldstartmarkerlen);
1833 foldDelMarker(fp->fd_top + lnum_off + fp->fd_len - 1,
1834 foldendmarker, foldendmarkerlen);
1835}
1836
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001837// foldDelMarker() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838/*
1839 * Delete marker "marker[markerlen]" at the end of line "lnum".
1840 * Delete 'commentstring' if it matches.
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02001841 * If the marker is not found, there is no error message. Could be a missing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 * close-marker.
1843 */
1844 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001845foldDelMarker(linenr_T lnum, char_u *marker, int markerlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846{
1847 char_u *line;
1848 char_u *newline;
1849 char_u *p;
1850 int len;
1851 char_u *cms = curbuf->b_p_cms;
1852 char_u *cms2;
1853
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02001854 // end marker may be missing and fold extends below the last line
1855 if (lnum > curbuf->b_ml.ml_line_count)
1856 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 line = ml_get(lnum);
1858 for (p = line; *p != NUL; ++p)
1859 if (STRNCMP(p, marker, markerlen) == 0)
1860 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001861 // Found the marker, include a digit if it's there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862 len = markerlen;
1863 if (VIM_ISDIGIT(p[len]))
1864 ++len;
1865 if (*cms != NUL)
1866 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001867 // Also delete 'commentstring' if it matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 cms2 = (char_u *)strstr((char *)cms, "%s");
1869 if (p - line >= cms2 - cms
1870 && STRNCMP(p - (cms2 - cms), cms, cms2 - cms) == 0
1871 && STRNCMP(p + len, cms2 + 2, STRLEN(cms2 + 2)) == 0)
1872 {
1873 p -= cms2 - cms;
1874 len += (int)STRLEN(cms) - 2;
1875 }
1876 }
1877 if (u_save(lnum - 1, lnum + 1) == OK)
1878 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001879 // Make new line: text-before-marker + text-after-marker
Bram Moolenaar964b3742019-05-24 18:54:09 +02001880 newline = alloc(STRLEN(line) - len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881 if (newline != NULL)
1882 {
1883 STRNCPY(newline, line, p - line);
1884 STRCPY(newline + (p - line), p + len);
1885 ml_replace(lnum, newline, FALSE);
1886 }
1887 }
1888 break;
1889 }
1890}
1891
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001892// get_foldtext() {{{2
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001893/*
1894 * Return the text for a closed fold at line "lnum", with last line "lnume".
Bram Moolenaaree695f72016-08-03 22:08:45 +02001895 * When 'foldtext' isn't set puts the result in "buf[FOLD_TEXT_LEN]".
1896 * Otherwise the result is in allocated memory.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001897 */
1898 char_u *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001899get_foldtext(
1900 win_T *wp,
1901 linenr_T lnum,
1902 linenr_T lnume,
1903 foldinfo_T *foldinfo,
1904 char_u *buf)
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001905{
1906 char_u *text = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001907#ifdef FEAT_EVAL
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001908 // an error occurred when evaluating 'fdt' setting
Bram Moolenaardab38d52013-06-15 17:06:36 +02001909 static int got_fdt_error = FALSE;
1910 int save_did_emsg = did_emsg;
1911 static win_T *last_wp = NULL;
1912 static linenr_T last_lnum = 0;
1913
1914 if (last_wp != wp || last_wp == NULL
1915 || last_lnum > lnum || last_lnum == 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001916 // window changed, try evaluating foldtext setting once again
Bram Moolenaardab38d52013-06-15 17:06:36 +02001917 got_fdt_error = FALSE;
1918
1919 if (!got_fdt_error)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001920 // a previous error should not abort evaluating 'foldexpr'
Bram Moolenaardab38d52013-06-15 17:06:36 +02001921 did_emsg = FALSE;
1922
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001923 if (*wp->w_p_fdt != NUL)
1924 {
Bram Moolenaar5b88ba42009-11-03 15:30:12 +00001925 char_u dashes[MAX_LEVEL + 2];
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001926 int level;
1927 char_u *p;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001928
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001929 // Set "v:foldstart" and "v:foldend".
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001930 set_vim_var_nr(VV_FOLDSTART, lnum);
1931 set_vim_var_nr(VV_FOLDEND, lnume);
1932
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001933 // Set "v:folddashes" to a string of "level" dashes.
1934 // Set "v:foldlevel" to "level".
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001935 level = foldinfo->fi_level;
Bram Moolenaar5b88ba42009-11-03 15:30:12 +00001936 if (level > (int)sizeof(dashes) - 1)
1937 level = (int)sizeof(dashes) - 1;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001938 vim_memset(dashes, '-', (size_t)level);
1939 dashes[level] = NUL;
1940 set_vim_var_string(VV_FOLDDASHES, dashes, -1);
1941 set_vim_var_nr(VV_FOLDLEVEL, (long)level);
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001942
Bram Moolenaar9530b582022-01-22 13:39:08 +00001943 // skip evaluating 'foldtext' on errors
Bram Moolenaardab38d52013-06-15 17:06:36 +02001944 if (!got_fdt_error)
1945 {
Bram Moolenaar9530b582022-01-22 13:39:08 +00001946 win_T *save_curwin = curwin;
1947 sctx_T saved_sctx = current_sctx;
1948
Bram Moolenaardab38d52013-06-15 17:06:36 +02001949 curwin = wp;
1950 curbuf = wp->w_buffer;
Bram Moolenaar9530b582022-01-22 13:39:08 +00001951 current_sctx = wp->w_p_script_ctx[WV_FDT];
Bram Moolenaardab38d52013-06-15 17:06:36 +02001952
Bram Moolenaar9530b582022-01-22 13:39:08 +00001953 ++emsg_off; // handle exceptions, but don't display errors
Bram Moolenaarb171fb12020-06-24 20:34:03 +02001954 text = eval_to_string_safe(wp->w_p_fdt,
Bram Moolenaar9530b582022-01-22 13:39:08 +00001955 was_set_insecurely((char_u *)"foldtext", OPT_LOCAL), TRUE);
1956 --emsg_off;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001957
Bram Moolenaardab38d52013-06-15 17:06:36 +02001958 if (text == NULL || did_emsg)
1959 got_fdt_error = TRUE;
1960
1961 curwin = save_curwin;
1962 curbuf = curwin->w_buffer;
Bram Moolenaar9530b582022-01-22 13:39:08 +00001963 current_sctx = saved_sctx;
Bram Moolenaardab38d52013-06-15 17:06:36 +02001964 }
1965 last_lnum = lnum;
1966 last_wp = wp;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001967 set_vim_var_string(VV_FOLDDASHES, NULL, -1);
1968
Bram Moolenaardab38d52013-06-15 17:06:36 +02001969 if (!did_emsg && save_did_emsg)
1970 did_emsg = save_did_emsg;
1971
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001972 if (text != NULL)
1973 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001974 // Replace unprintable characters, if there are any. But
1975 // replace a TAB with a space.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001976 for (p = text; *p != NUL; ++p)
1977 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001978 int len;
1979
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001980 if (has_mbyte && (len = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001981 {
1982 if (!vim_isprintc((*mb_ptr2char)(p)))
1983 break;
1984 p += len - 1;
1985 }
1986 else
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001987 if (*p == TAB)
1988 *p = ' ';
1989 else if (ptr2cells(p) > 1)
1990 break;
1991 }
1992 if (*p != NUL)
1993 {
1994 p = transstr(text);
1995 vim_free(text);
1996 text = p;
1997 }
1998 }
1999 }
2000 if (text == NULL)
2001#endif
2002 {
Bram Moolenaaree695f72016-08-03 22:08:45 +02002003 long count = (long)(lnume - lnum + 1);
2004
2005 vim_snprintf((char *)buf, FOLD_TEXT_LEN,
Bram Moolenaar1c465442017-03-12 20:10:05 +01002006 NGETTEXT("+--%3ld line folded ",
Bram Moolenaaree695f72016-08-03 22:08:45 +02002007 "+--%3ld lines folded ", count),
2008 count);
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002009 text = buf;
2010 }
2011 return text;
2012}
2013
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002014// foldtext_cleanup() {{{2
Bram Moolenaardb022f32019-09-01 17:52:32 +02002015#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016/*
2017 * Remove 'foldmarker' and 'commentstring' from "str" (in-place).
2018 */
Bram Moolenaardb022f32019-09-01 17:52:32 +02002019 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002020foldtext_cleanup(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002022 char_u *cms_start; // first part or the whole comment
2023 int cms_slen = 0; // length of cms_start
2024 char_u *cms_end; // last part of the comment or NULL
2025 int cms_elen = 0; // length of cms_end
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026 char_u *s;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002027 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 int len;
2029 int did1 = FALSE;
2030 int did2 = FALSE;
2031
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002032 // Ignore leading and trailing white space in 'commentstring'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033 cms_start = skipwhite(curbuf->b_p_cms);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002034 cms_slen = (int)STRLEN(cms_start);
Bram Moolenaar1c465442017-03-12 20:10:05 +01002035 while (cms_slen > 0 && VIM_ISWHITE(cms_start[cms_slen - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 --cms_slen;
2037
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002038 // locate "%s" in 'commentstring', use the part before and after it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 cms_end = (char_u *)strstr((char *)cms_start, "%s");
2040 if (cms_end != NULL)
2041 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002042 cms_elen = cms_slen - (int)(cms_end - cms_start);
2043 cms_slen = (int)(cms_end - cms_start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002045 // exclude white space before "%s"
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 // skip "%s" and white space after it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 s = skipwhite(cms_end + 2);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002051 cms_elen -= (int)(s - cms_end);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 cms_end = s;
2053 }
2054 parseMarker(curwin);
2055
2056 for (s = str; *s != NUL; )
2057 {
2058 len = 0;
2059 if (STRNCMP(s, curwin->w_p_fmr, foldstartmarkerlen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 len = foldstartmarkerlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 else if (STRNCMP(s, foldendmarker, foldendmarkerlen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 len = foldendmarkerlen;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002063 if (len > 0)
2064 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 if (VIM_ISDIGIT(s[len]))
2066 ++len;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002067
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002068 // May remove 'commentstring' start. Useful when it's a double
2069 // quote and we already removed a double quote.
Bram Moolenaar1c465442017-03-12 20:10:05 +01002070 for (p = s; p > str && VIM_ISWHITE(p[-1]); --p)
Bram Moolenaardef9e822004-12-31 20:58:58 +00002071 ;
2072 if (p >= str + cms_slen
2073 && STRNCMP(p - cms_slen, cms_start, cms_slen) == 0)
2074 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002075 len += (int)(s - p) + cms_slen;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002076 s = p - cms_slen;
2077 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 }
2079 else if (cms_end != NULL)
2080 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00002081 if (!did1 && cms_slen > 0 && STRNCMP(s, cms_start, cms_slen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 {
2083 len = cms_slen;
2084 did1 = TRUE;
2085 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00002086 else if (!did2 && cms_elen > 0
2087 && STRNCMP(s, cms_end, cms_elen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 {
2089 len = cms_elen;
2090 did2 = TRUE;
2091 }
2092 }
2093 if (len != 0)
2094 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01002095 while (VIM_ISWHITE(s[len]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 ++len;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002097 STRMOVE(s, s + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 }
2099 else
2100 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002101 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 }
2103 }
2104}
Bram Moolenaardb022f32019-09-01 17:52:32 +02002105#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002107// Folding by indent, expr, marker and syntax. {{{1
2108// Define "fline_T", passed to get fold level for a line. {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109typedef struct
2110{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002111 win_T *wp; // window
2112 linenr_T lnum; // current line number
2113 linenr_T off; // offset between lnum and real line number
2114 linenr_T lnum_save; // line nr used by foldUpdateIEMSRecurse()
2115 int lvl; // current level (-1 for undefined)
2116 int lvl_next; // level used for next line
2117 int start; // number of folds that are forced to start at
2118 // this line.
2119 int end; // level of fold that is forced to end below
2120 // this line
2121 int had_end; // level of fold that is forced to end above
2122 // this line (copy of "end" of prev. line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123} fline_T;
2124
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002125// Flag is set when redrawing is needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126static int fold_changed;
2127
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002128// Function declarations. {{{2
Bram Moolenaard99df422016-01-29 23:20:40 +01002129static 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 +01002130static int foldInsert(garray_T *gap, int i);
2131static void foldSplit(garray_T *gap, int i, linenr_T top, linenr_T bot);
2132static void foldRemove(garray_T *gap, linenr_T top, linenr_T bot);
2133static void foldMerge(fold_T *fp1, garray_T *gap, fold_T *fp2);
2134static void foldlevelIndent(fline_T *flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135#ifdef FEAT_DIFF
Bram Moolenaard25c16e2016-01-29 22:13:30 +01002136static void foldlevelDiff(fline_T *flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +01002138static void foldlevelExpr(fline_T *flp);
2139static void foldlevelMarker(fline_T *flp);
2140static void foldlevelSyntax(fline_T *flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002142// foldUpdateIEMS() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143/*
2144 * Update the folding for window "wp", at least from lines "top" to "bot".
2145 * Return TRUE if any folds did change.
2146 */
2147 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002148foldUpdateIEMS(win_T *wp, linenr_T top, linenr_T bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149{
2150 linenr_T start;
2151 linenr_T end;
2152 fline_T fline;
Bram Moolenaard99df422016-01-29 23:20:40 +01002153 void (*getlevel)(fline_T *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 int level;
2155 fold_T *fp;
2156
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002157 // Avoid problems when being called recursively.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158 if (invalid_top != (linenr_T)0)
2159 return;
2160
2161 if (wp->w_foldinvalid)
2162 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002163 // Need to update all folds.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 top = 1;
2165 bot = wp->w_buffer->b_ml.ml_line_count;
2166 wp->w_foldinvalid = FALSE;
2167
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002168 // Mark all folds a maybe-small.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169 setSmallMaybe(&wp->w_folds);
2170 }
2171
2172#ifdef FEAT_DIFF
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002173 // add the context for "diff" folding
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 if (foldmethodIsDiff(wp))
2175 {
2176 if (top > diff_context)
2177 top -= diff_context;
2178 else
2179 top = 1;
2180 bot += diff_context;
2181 }
2182#endif
2183
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002184 // When deleting lines at the end of the buffer "top" can be past the end
2185 // of the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 if (top > wp->w_buffer->b_ml.ml_line_count)
2187 top = wp->w_buffer->b_ml.ml_line_count;
2188
2189 fold_changed = FALSE;
2190 fline.wp = wp;
2191 fline.off = 0;
2192 fline.lvl = 0;
2193 fline.lvl_next = -1;
2194 fline.start = 0;
2195 fline.end = MAX_LEVEL + 1;
2196 fline.had_end = MAX_LEVEL + 1;
2197
2198 invalid_top = top;
2199 invalid_bot = bot;
2200
2201 if (foldmethodIsMarker(wp))
2202 {
2203 getlevel = foldlevelMarker;
2204
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002205 // Init marker variables to speed up foldlevelMarker().
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 parseMarker(wp);
2207
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002208 // Need to get the level of the line above top, it is used if there is
2209 // no marker at the top.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 if (top > 1)
2211 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002212 // Get the fold level at top - 1.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 level = foldLevelWin(wp, top - 1);
2214
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002215 // The fold may end just above the top, check for that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 fline.lnum = top - 1;
2217 fline.lvl = level;
2218 getlevel(&fline);
2219
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002220 // If a fold started here, we already had the level, if it stops
2221 // here, we need to use lvl_next. Could also start and end a fold
2222 // in the same line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 if (fline.lvl > level)
2224 fline.lvl = level - (fline.lvl - fline.lvl_next);
2225 else
2226 fline.lvl = fline.lvl_next;
2227 }
2228 fline.lnum = top;
2229 getlevel(&fline);
2230 }
2231 else
2232 {
2233 fline.lnum = top;
2234 if (foldmethodIsExpr(wp))
2235 {
2236 getlevel = foldlevelExpr;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002237 // start one line back, because a "<1" may indicate the end of a
2238 // fold in the topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 if (top > 1)
2240 --fline.lnum;
2241 }
2242 else if (foldmethodIsSyntax(wp))
2243 getlevel = foldlevelSyntax;
2244#ifdef FEAT_DIFF
2245 else if (foldmethodIsDiff(wp))
2246 getlevel = foldlevelDiff;
2247#endif
2248 else
Brandon Simmonsd98e75e2022-05-10 19:13:23 +01002249 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 getlevel = foldlevelIndent;
Brandon Simmonsd98e75e2022-05-10 19:13:23 +01002251 // Start one line back, because if the line above "top" has an
2252 // undefined fold level, folding it relies on the line under it,
2253 // which is "top".
2254 if (top > 1)
2255 --fline.lnum;
2256 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002258 // Backup to a line for which the fold level is defined. Since it's
2259 // always defined for line one, we will stop there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260 fline.lvl = -1;
2261 for ( ; !got_int; --fline.lnum)
2262 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002263 // Reset lvl_next each time, because it will be set to a value for
2264 // the next line, but we search backwards here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265 fline.lvl_next = -1;
2266 getlevel(&fline);
2267 if (fline.lvl >= 0)
2268 break;
2269 }
2270 }
2271
Bram Moolenaarec986472009-11-03 13:46:54 +00002272 /*
2273 * If folding is defined by the syntax, it is possible that a change in
2274 * one line will cause all sub-folds of the current fold to change (e.g.,
2275 * closing a C-style comment can cause folds in the subsequent lines to
2276 * appear). To take that into account we should adjust the value of "bot"
2277 * to point to the end of the current fold:
2278 */
2279 if (foldlevelSyntax == getlevel)
2280 {
2281 garray_T *gap = &wp->w_folds;
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002282 fold_T *fpn = NULL;
Bram Moolenaarec986472009-11-03 13:46:54 +00002283 int current_fdl = 0;
2284 linenr_T fold_start_lnum = 0;
2285 linenr_T lnum_rel = fline.lnum;
2286
2287 while (current_fdl < fline.lvl)
2288 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002289 if (!foldFind(gap, lnum_rel, &fpn))
Bram Moolenaarec986472009-11-03 13:46:54 +00002290 break;
2291 ++current_fdl;
2292
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002293 fold_start_lnum += fpn->fd_top;
2294 gap = &fpn->fd_nested;
2295 lnum_rel -= fpn->fd_top;
Bram Moolenaarec986472009-11-03 13:46:54 +00002296 }
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002297 if (fpn != NULL && current_fdl == fline.lvl)
Bram Moolenaarec986472009-11-03 13:46:54 +00002298 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002299 linenr_T fold_end_lnum = fold_start_lnum + fpn->fd_len;
Bram Moolenaarec986472009-11-03 13:46:54 +00002300
2301 if (fold_end_lnum > bot)
2302 bot = fold_end_lnum;
2303 }
2304 }
2305
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 start = fline.lnum;
2307 end = bot;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002308 // Do at least one line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309 if (start > end && end < wp->w_buffer->b_ml.ml_line_count)
2310 end = start;
2311 while (!got_int)
2312 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002313 // Always stop at the end of the file ("end" can be past the end of
2314 // the file).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 if (fline.lnum > wp->w_buffer->b_ml.ml_line_count)
2316 break;
2317 if (fline.lnum > end)
2318 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002319 // For "marker", "expr" and "syntax" methods: If a change caused
2320 // a fold to be removed, we need to continue at least until where
2321 // it ended.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 if (getlevel != foldlevelMarker
2323 && getlevel != foldlevelSyntax
2324 && getlevel != foldlevelExpr)
2325 break;
2326 if ((start <= end
2327 && foldFind(&wp->w_folds, end, &fp)
2328 && fp->fd_top + fp->fd_len - 1 > end)
2329 || (fline.lvl == 0
2330 && foldFind(&wp->w_folds, fline.lnum, &fp)
2331 && fp->fd_top < fline.lnum))
2332 end = fp->fd_top + fp->fd_len - 1;
2333 else if (getlevel == foldlevelSyntax
2334 && foldLevelWin(wp, fline.lnum) != fline.lvl)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002335 // For "syntax" method: Compare the foldlevel that the syntax
2336 // tells us to the foldlevel from the existing folds. If they
2337 // don't match continue updating folds.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 end = fline.lnum;
2339 else
2340 break;
2341 }
2342
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002343 // A level 1 fold starts at a line with foldlevel > 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 if (fline.lvl > 0)
2345 {
2346 invalid_top = fline.lnum;
2347 invalid_bot = end;
2348 end = foldUpdateIEMSRecurse(&wp->w_folds,
2349 1, start, &fline, getlevel, end, FD_LEVEL);
2350 start = fline.lnum;
2351 }
2352 else
2353 {
2354 if (fline.lnum == wp->w_buffer->b_ml.ml_line_count)
2355 break;
2356 ++fline.lnum;
2357 fline.lvl = fline.lvl_next;
2358 getlevel(&fline);
2359 }
2360 }
2361
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002362 // There can't be any folds from start until end now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 foldRemove(&wp->w_folds, start, end);
2364
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002365 // If some fold changed, need to redraw and position cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366 if (fold_changed && wp->w_p_fen)
Bram Moolenaare3b3f282008-03-06 21:45:49 +00002367 changed_window_setting_win(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002369 // If we updated folds past "bot", need to redraw more lines. Don't do
2370 // this in other situations, the changed lines will be redrawn anyway and
2371 // this method can cause the whole window to be updated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372 if (end != bot)
2373 {
2374 if (wp->w_redraw_top == 0 || wp->w_redraw_top > top)
2375 wp->w_redraw_top = top;
2376 if (wp->w_redraw_bot < end)
2377 wp->w_redraw_bot = end;
2378 }
2379
2380 invalid_top = (linenr_T)0;
2381}
2382
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002383// foldUpdateIEMSRecurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384/*
2385 * Update a fold that starts at "flp->lnum". At this line there is always a
2386 * valid foldlevel, and its level >= "level".
2387 * "flp" is valid for "flp->lnum" when called and it's valid when returning.
2388 * "flp->lnum" is set to the lnum just below the fold, if it ends before
2389 * "bot", it's "bot" plus one if the fold continues and it's bigger when using
2390 * the marker method and a text change made following folds to change.
2391 * When returning, "flp->lnum_save" is the line number that was used to get
2392 * the level when the level at "flp->lnum" is invalid.
2393 * Remove any folds from "startlnum" up to here at this level.
2394 * Recursively update nested folds.
2395 * Below line "bot" there are no changes in the text.
2396 * "flp->lnum", "flp->lnum_save" and "bot" are relative to the start of the
2397 * outer fold.
2398 * "flp->off" is the offset to the real line number in the buffer.
2399 *
2400 * All this would be a lot simpler if all folds in the range would be deleted
Bram Moolenaare37d50a2008-08-06 17:06:04 +00002401 * and then created again. But we would lose all information about the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402 * folds, even when making changes that don't affect the folding (e.g. "vj~").
2403 *
2404 * Returns bot, which may have been increased for lines that also need to be
2405 * updated as a result of a detected change in the fold.
2406 */
2407 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002408foldUpdateIEMSRecurse(
2409 garray_T *gap,
2410 int level,
2411 linenr_T startlnum,
2412 fline_T *flp,
2413 void (*getlevel)(fline_T *),
2414 linenr_T bot,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002415 int topflags) // flags used by containing fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416{
2417 linenr_T ll;
2418 fold_T *fp = NULL;
2419 fold_T *fp2;
2420 int lvl = level;
2421 linenr_T startlnum2 = startlnum;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002422 linenr_T firstlnum = flp->lnum; // first lnum we got
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 int i;
2424 int finish = FALSE;
2425 linenr_T linecount = flp->wp->w_buffer->b_ml.ml_line_count - flp->off;
2426 int concat;
2427
2428 /*
2429 * If using the marker method, the start line is not the start of a fold
2430 * at the level we're dealing with and the level is non-zero, we must use
2431 * the previous fold. But ignore a fold that starts at or below
2432 * startlnum, it must be deleted.
2433 */
2434 if (getlevel == foldlevelMarker && flp->start <= flp->lvl - level
2435 && flp->lvl > 0)
2436 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002437 (void)foldFind(gap, startlnum - 1, &fp);
Bram Moolenaarda697642020-09-17 19:36:04 +02002438 if (fp != NULL && (fp >= ((fold_T *)gap->ga_data) + gap->ga_len
2439 || fp->fd_top >= startlnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 fp = NULL;
2441 }
2442
2443 /*
2444 * Loop over all lines in this fold, or until "bot" is hit.
2445 * Handle nested folds inside of this fold.
2446 * "flp->lnum" is the current line. When finding the end of the fold, it
2447 * is just below the end of the fold.
2448 * "*flp" contains the level of the line "flp->lnum" or a following one if
2449 * there are lines with an invalid fold level. "flp->lnum_save" is the
2450 * line number that was used to get the fold level (below "flp->lnum" when
2451 * it has an invalid fold level). When called the fold level is always
2452 * valid, thus "flp->lnum_save" is equal to "flp->lnum".
2453 */
2454 flp->lnum_save = flp->lnum;
2455 while (!got_int)
2456 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002457 // Updating folds can be slow, check for CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 line_breakcheck();
2459
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002460 // Set "lvl" to the level of line "flp->lnum". When flp->start is set
2461 // and after the first line of the fold, set the level to zero to
2462 // force the fold to end. Do the same when had_end is set: Previous
2463 // line was marked as end of a fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 lvl = flp->lvl;
2465 if (lvl > MAX_LEVEL)
2466 lvl = MAX_LEVEL;
2467 if (flp->lnum > firstlnum
2468 && (level > lvl - flp->start || level >= flp->had_end))
2469 lvl = 0;
2470
2471 if (flp->lnum > bot && !finish && fp != NULL)
2472 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002473 // For "marker" and "syntax" methods:
2474 // - If a change caused a nested fold to be removed, we need to
2475 // delete it and continue at least until where it ended.
2476 // - If a change caused a nested fold to be created, or this fold
2477 // to continue below its original end, need to finish this fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478 if (getlevel != foldlevelMarker
2479 && getlevel != foldlevelExpr
2480 && getlevel != foldlevelSyntax)
2481 break;
2482 i = 0;
2483 fp2 = fp;
2484 if (lvl >= level)
2485 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002486 // Compute how deep the folds currently are, if it's deeper
2487 // than "lvl" then some must be deleted, need to update
2488 // at least one nested fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 ll = flp->lnum - fp->fd_top;
2490 while (foldFind(&fp2->fd_nested, ll, &fp2))
2491 {
2492 ++i;
2493 ll -= fp2->fd_top;
2494 }
2495 }
2496 if (lvl < level + i)
2497 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002498 (void)foldFind(&fp->fd_nested, flp->lnum - fp->fd_top, &fp2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499 if (fp2 != NULL)
2500 bot = fp2->fd_top + fp2->fd_len - 1 + fp->fd_top;
2501 }
2502 else if (fp->fd_top + fp->fd_len <= flp->lnum && lvl >= level)
2503 finish = TRUE;
2504 else
2505 break;
2506 }
2507
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002508 // At the start of the first nested fold and at the end of the current
2509 // fold: check if existing folds at this level, before the current
2510 // one, need to be deleted or truncated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511 if (fp == NULL
2512 && (lvl != level
2513 || flp->lnum_save >= bot
2514 || flp->start != 0
2515 || flp->had_end <= MAX_LEVEL
2516 || flp->lnum == linecount))
2517 {
2518 /*
2519 * Remove or update folds that have lines between startlnum and
2520 * firstlnum.
2521 */
2522 while (!got_int)
2523 {
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00002524 // set concat to 1 if it's allowed to concatenate this fold
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002525 // with a previous one that touches it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 if (flp->start != 0 || flp->had_end <= MAX_LEVEL)
2527 concat = 0;
2528 else
2529 concat = 1;
2530
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002531 // Find an existing fold to re-use. Preferably one that
2532 // includes startlnum, otherwise one that ends just before
2533 // startlnum or starts after it.
Bram Moolenaar64f37d32020-08-31 19:58:13 +02002534 if (gap->ga_len > 0 && (foldFind(gap, startlnum, &fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 || (fp < ((fold_T *)gap->ga_data) + gap->ga_len
2536 && fp->fd_top <= firstlnum)
2537 || foldFind(gap, firstlnum - concat, &fp)
2538 || (fp < ((fold_T *)gap->ga_data) + gap->ga_len
2539 && ((lvl < level && fp->fd_top < flp->lnum)
2540 || (lvl >= level
Bram Moolenaar64f37d32020-08-31 19:58:13 +02002541 && fp->fd_top <= flp->lnum_save)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 {
2543 if (fp->fd_top + fp->fd_len + concat > firstlnum)
2544 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002545 // Use existing fold for the new fold. If it starts
2546 // before where we started looking, extend it. If it
2547 // starts at another line, update nested folds to keep
2548 // their position, compensating for the new fd_top.
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002549 if (fp->fd_top == firstlnum)
2550 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002551 // have found a fold beginning where we want
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002552 }
2553 else if (fp->fd_top >= startlnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 {
2555 if (fp->fd_top > firstlnum)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002556 // like lines are inserted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557 foldMarkAdjustRecurse(&fp->fd_nested,
2558 (linenr_T)0, (linenr_T)MAXLNUM,
2559 (long)(fp->fd_top - firstlnum), 0L);
2560 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002561 // like lines are deleted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562 foldMarkAdjustRecurse(&fp->fd_nested,
2563 (linenr_T)0,
2564 (long)(firstlnum - fp->fd_top - 1),
2565 (linenr_T)MAXLNUM,
2566 (long)(fp->fd_top - firstlnum));
2567 fp->fd_len += fp->fd_top - firstlnum;
2568 fp->fd_top = firstlnum;
2569 fold_changed = TRUE;
2570 }
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002571 else if ((flp->start != 0 && lvl == level)
2572 || firstlnum != startlnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 {
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002574 linenr_T breakstart;
2575 linenr_T breakend;
2576
2577 /*
2578 * Before there was a fold spanning from above
2579 * startlnum to below firstlnum. This fold is valid
2580 * above startlnum (because we are not updating
2581 * that range), but there should now be a break in
2582 * it.
2583 * If the break is because we are now forced to
2584 * start a new fold at the level "level" at line
2585 * fline->lnum, then we need to split the fold at
2586 * fline->lnum.
2587 * If the break is because the range
2588 * [startlnum, firstlnum) is now at a lower indent
2589 * than "level", we need to split the fold in this
2590 * range.
2591 * Any splits have to be done recursively.
2592 */
2593 if (firstlnum != startlnum)
2594 {
2595 breakstart = startlnum;
2596 breakend = firstlnum;
2597 }
2598 else
2599 {
2600 breakstart = flp->lnum;
2601 breakend = flp->lnum;
2602 }
2603 foldRemove(&fp->fd_nested, breakstart - fp->fd_top,
2604 breakend - fp->fd_top);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605 i = (int)(fp - (fold_T *)gap->ga_data);
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002606 foldSplit(gap, i, breakstart, breakend - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 fp = (fold_T *)gap->ga_data + i + 1;
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002608
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002609 // If using the "marker" or "syntax" method, we
2610 // need to continue until the end of the fold is
2611 // found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612 if (getlevel == foldlevelMarker
2613 || getlevel == foldlevelExpr
2614 || getlevel == foldlevelSyntax)
2615 finish = TRUE;
2616 }
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002617
2618 if (fp->fd_top == startlnum && concat)
2619 {
2620 i = (int)(fp - (fold_T *)gap->ga_data);
2621 if (i != 0)
2622 {
2623 fp2 = fp - 1;
2624 if (fp2->fd_top + fp2->fd_len == fp->fd_top)
2625 {
2626 foldMerge(fp2, gap, fp);
2627 fp = fp2;
2628 }
2629 }
2630 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631 break;
2632 }
2633 if (fp->fd_top >= startlnum)
2634 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002635 // A fold that starts at or after startlnum and stops
2636 // before the new fold must be deleted. Continue
2637 // looking for the next one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 deleteFoldEntry(gap,
2639 (int)(fp - (fold_T *)gap->ga_data), TRUE);
2640 }
2641 else
2642 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002643 // A fold has some lines above startlnum, truncate it
2644 // to stop just above startlnum.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645 fp->fd_len = startlnum - fp->fd_top;
2646 foldMarkAdjustRecurse(&fp->fd_nested,
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00002647 fp->fd_len, (linenr_T)MAXLNUM,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 (linenr_T)MAXLNUM, 0L);
2649 fold_changed = TRUE;
2650 }
2651 }
2652 else
2653 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002654 // Insert new fold. Careful: ga_data may be NULL and it
2655 // may change!
Bram Moolenaar64f37d32020-08-31 19:58:13 +02002656 if (gap->ga_len == 0)
2657 i = 0;
2658 else
2659 i = (int)(fp - (fold_T *)gap->ga_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660 if (foldInsert(gap, i) != OK)
2661 return bot;
2662 fp = (fold_T *)gap->ga_data + i;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002663 // The new fold continues until bot, unless we find the
2664 // end earlier.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 fp->fd_top = firstlnum;
2666 fp->fd_len = bot - firstlnum + 1;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002667 // When the containing fold is open, the new fold is open.
2668 // The new fold is closed if the fold above it is closed.
2669 // The first fold depends on the containing fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670 if (topflags == FD_OPEN)
2671 {
2672 flp->wp->w_fold_manual = TRUE;
2673 fp->fd_flags = FD_OPEN;
2674 }
2675 else if (i <= 0)
2676 {
2677 fp->fd_flags = topflags;
2678 if (topflags != FD_LEVEL)
2679 flp->wp->w_fold_manual = TRUE;
2680 }
2681 else
2682 fp->fd_flags = (fp - 1)->fd_flags;
2683 fp->fd_small = MAYBE;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002684 // If using the "marker", "expr" or "syntax" method, we
2685 // need to continue until the end of the fold is found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686 if (getlevel == foldlevelMarker
2687 || getlevel == foldlevelExpr
2688 || getlevel == foldlevelSyntax)
2689 finish = TRUE;
2690 fold_changed = TRUE;
2691 break;
2692 }
2693 }
2694 }
2695
2696 if (lvl < level || flp->lnum > linecount)
2697 {
2698 /*
2699 * Found a line with a lower foldlevel, this fold ends just above
2700 * "flp->lnum".
2701 */
2702 break;
2703 }
2704
2705 /*
2706 * The fold includes the line "flp->lnum" and "flp->lnum_save".
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002707 * Check "fp" for safety.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002709 if (lvl > level && fp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 {
2711 /*
2712 * There is a nested fold, handle it recursively.
2713 */
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002714 // At least do one line (can happen when finish is TRUE).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715 if (bot < flp->lnum)
2716 bot = flp->lnum;
2717
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002718 // Line numbers in the nested fold are relative to the start of
2719 // this fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720 flp->lnum = flp->lnum_save - fp->fd_top;
2721 flp->off += fp->fd_top;
2722 i = (int)(fp - (fold_T *)gap->ga_data);
2723 bot = foldUpdateIEMSRecurse(&fp->fd_nested, level + 1,
2724 startlnum2 - fp->fd_top, flp, getlevel,
2725 bot - fp->fd_top, fp->fd_flags);
2726 fp = (fold_T *)gap->ga_data + i;
2727 flp->lnum += fp->fd_top;
2728 flp->lnum_save += fp->fd_top;
2729 flp->off -= fp->fd_top;
2730 bot += fp->fd_top;
2731 startlnum2 = flp->lnum;
2732
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002733 // This fold may end at the same line, don't incr. flp->lnum.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734 }
2735 else
2736 {
2737 /*
2738 * Get the level of the next line, then continue the loop to check
2739 * if it ends there.
2740 * Skip over undefined lines, to find the foldlevel after it.
2741 * For the last line in the file the foldlevel is always valid.
2742 */
2743 flp->lnum = flp->lnum_save;
2744 ll = flp->lnum + 1;
2745 while (!got_int)
2746 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002747 // Make the previous level available to foldlevel().
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 prev_lnum = flp->lnum;
2749 prev_lnum_lvl = flp->lvl;
2750
2751 if (++flp->lnum > linecount)
2752 break;
2753 flp->lvl = flp->lvl_next;
2754 getlevel(flp);
2755 if (flp->lvl >= 0 || flp->had_end <= MAX_LEVEL)
2756 break;
2757 }
2758 prev_lnum = 0;
2759 if (flp->lnum > linecount)
2760 break;
2761
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002762 // leave flp->lnum_save to lnum of the line that was used to get
2763 // the level, flp->lnum to the lnum of the next line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 flp->lnum_save = flp->lnum;
2765 flp->lnum = ll;
2766 }
2767 }
2768
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002769 if (fp == NULL) // only happens when got_int is set
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770 return bot;
2771
2772 /*
2773 * Get here when:
2774 * lvl < level: the folds ends just above "flp->lnum"
2775 * lvl >= level: fold continues below "bot"
2776 */
2777
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02002778 // Current fold at least extends until lnum.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 if (fp->fd_len < flp->lnum - fp->fd_top)
2780 {
2781 fp->fd_len = flp->lnum - fp->fd_top;
Bram Moolenaaref6fc092008-01-13 20:58:13 +00002782 fp->fd_small = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 fold_changed = TRUE;
2784 }
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02002785 else if (fp->fd_top + fp->fd_len > linecount)
2786 // running into the end of the buffer (deleted last line)
2787 fp->fd_len = linecount - fp->fd_top + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02002789 // Delete contained folds from the end of the last one found until where
2790 // we stopped looking.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791 foldRemove(&fp->fd_nested, startlnum2 - fp->fd_top,
2792 flp->lnum - 1 - fp->fd_top);
2793
2794 if (lvl < level)
2795 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002796 // End of fold found, update the length when it got shorter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 if (fp->fd_len != flp->lnum - fp->fd_top)
2798 {
Bram Moolenaar9d20ce62017-03-23 21:53:35 +01002799 if (fp->fd_top + fp->fd_len - 1 > bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002801 // fold continued below bot
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802 if (getlevel == foldlevelMarker
2803 || getlevel == foldlevelExpr
2804 || getlevel == foldlevelSyntax)
2805 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002806 // marker method: truncate the fold and make sure the
2807 // previously included lines are processed again
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 bot = fp->fd_top + fp->fd_len - 1;
2809 fp->fd_len = flp->lnum - fp->fd_top;
2810 }
2811 else
2812 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002813 // indent or expr method: split fold to create a new one
2814 // below bot
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815 i = (int)(fp - (fold_T *)gap->ga_data);
2816 foldSplit(gap, i, flp->lnum, bot);
2817 fp = (fold_T *)gap->ga_data + i;
2818 }
2819 }
2820 else
2821 fp->fd_len = flp->lnum - fp->fd_top;
2822 fold_changed = TRUE;
2823 }
2824 }
2825
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002826 // delete following folds that end before the current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 for (;;)
2828 {
2829 fp2 = fp + 1;
2830 if (fp2 >= (fold_T *)gap->ga_data + gap->ga_len
2831 || fp2->fd_top > flp->lnum)
2832 break;
2833 if (fp2->fd_top + fp2->fd_len > flp->lnum)
2834 {
2835 if (fp2->fd_top < flp->lnum)
2836 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002837 // Make fold that includes lnum start at lnum.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 foldMarkAdjustRecurse(&fp2->fd_nested,
2839 (linenr_T)0, (long)(flp->lnum - fp2->fd_top - 1),
2840 (linenr_T)MAXLNUM, (long)(fp2->fd_top - flp->lnum));
2841 fp2->fd_len -= flp->lnum - fp2->fd_top;
2842 fp2->fd_top = flp->lnum;
2843 fold_changed = TRUE;
2844 }
2845
2846 if (lvl >= level)
2847 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002848 // merge new fold with existing fold that follows
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 foldMerge(fp, gap, fp2);
2850 }
2851 break;
2852 }
2853 fold_changed = TRUE;
2854 deleteFoldEntry(gap, (int)(fp2 - (fold_T *)gap->ga_data), TRUE);
2855 }
2856
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002857 // Need to redraw the lines we inspected, which might be further down than
2858 // was asked for.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859 if (bot < flp->lnum - 1)
2860 bot = flp->lnum - 1;
2861
2862 return bot;
2863}
2864
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002865// foldInsert() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866/*
2867 * Insert a new fold in "gap" at position "i".
2868 * Returns OK for success, FAIL for failure.
2869 */
2870 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002871foldInsert(garray_T *gap, int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872{
2873 fold_T *fp;
2874
2875 if (ga_grow(gap, 1) != OK)
2876 return FAIL;
2877 fp = (fold_T *)gap->ga_data + i;
Bram Moolenaar64f37d32020-08-31 19:58:13 +02002878 if (gap->ga_len > 0 && i < gap->ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879 mch_memmove(fp + 1, fp, sizeof(fold_T) * (gap->ga_len - i));
2880 ++gap->ga_len;
Bram Moolenaar04935fb2022-01-08 16:19:22 +00002881 ga_init2(&fp->fd_nested, sizeof(fold_T), 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882 return OK;
2883}
2884
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002885// foldSplit() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886/*
2887 * Split the "i"th fold in "gap", which starts before "top" and ends below
2888 * "bot" in two pieces, one ending above "top" and the other starting below
2889 * "bot".
2890 * The caller must first have taken care of any nested folds from "top" to
2891 * "bot"!
2892 */
2893 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002894foldSplit(
2895 garray_T *gap,
2896 int i,
2897 linenr_T top,
2898 linenr_T bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899{
2900 fold_T *fp;
2901 fold_T *fp2;
2902 garray_T *gap1;
2903 garray_T *gap2;
2904 int idx;
2905 int len;
2906
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002907 // The fold continues below bot, need to split it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908 if (foldInsert(gap, i + 1) == FAIL)
2909 return;
2910 fp = (fold_T *)gap->ga_data + i;
2911 fp[1].fd_top = bot + 1;
2912 fp[1].fd_len = fp->fd_len - (fp[1].fd_top - fp->fd_top);
2913 fp[1].fd_flags = fp->fd_flags;
Bram Moolenaareda6eb92009-11-03 17:04:43 +00002914 fp[1].fd_small = MAYBE;
2915 fp->fd_small = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002917 // Move nested folds below bot to new fold. There can't be
2918 // any between top and bot, they have been removed by the caller.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919 gap1 = &fp->fd_nested;
2920 gap2 = &fp[1].fd_nested;
Brandon Simmons2c407072022-04-23 13:50:17 +01002921 (void)foldFind(gap1, bot + 1 - fp->fd_top, &fp2);
2922 if (fp2 != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002923 {
Bram Moolenaar9c2b0662020-09-01 19:56:15 +02002924 len = (int)((fold_T *)gap1->ga_data + gap1->ga_len - fp2);
2925 if (len > 0 && ga_grow(gap2, len) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926 {
Bram Moolenaar9c2b0662020-09-01 19:56:15 +02002927 for (idx = 0; idx < len; ++idx)
2928 {
2929 ((fold_T *)gap2->ga_data)[idx] = fp2[idx];
2930 ((fold_T *)gap2->ga_data)[idx].fd_top
2931 -= fp[1].fd_top - fp->fd_top;
2932 }
2933 gap2->ga_len = len;
2934 gap1->ga_len -= len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936 }
2937 fp->fd_len = top - fp->fd_top;
2938 fold_changed = TRUE;
2939}
2940
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002941// foldRemove() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942/*
2943 * Remove folds within the range "top" to and including "bot".
2944 * Check for these situations:
2945 * 1 2 3
2946 * 1 2 3
2947 * top 2 3 4 5
2948 * 2 3 4 5
2949 * bot 2 3 4 5
2950 * 3 5 6
2951 * 3 5 6
2952 *
2953 * 1: not changed
Bram Moolenaar25394022007-05-10 19:06:20 +00002954 * 2: truncate to stop above "top"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955 * 3: split in two parts, one stops above "top", other starts below "bot".
2956 * 4: deleted
2957 * 5: made to start below "bot".
2958 * 6: not changed
2959 */
2960 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002961foldRemove(garray_T *gap, linenr_T top, linenr_T bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962{
2963 fold_T *fp = NULL;
2964
2965 if (bot < top)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002966 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967
Bram Moolenaar64f37d32020-08-31 19:58:13 +02002968 while (gap->ga_len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002970 // Find fold that includes top or a following one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971 if (foldFind(gap, top, &fp) && fp->fd_top < top)
2972 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002973 // 2: or 3: need to delete nested folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974 foldRemove(&fp->fd_nested, top - fp->fd_top, bot - fp->fd_top);
Bram Moolenaarb11c8262017-04-23 16:48:20 +02002975 if (fp->fd_top + fp->fd_len - 1 > bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002977 // 3: need to split it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978 foldSplit(gap, (int)(fp - (fold_T *)gap->ga_data), top, bot);
2979 }
2980 else
2981 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002982 // 2: truncate fold at "top".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983 fp->fd_len = top - fp->fd_top;
2984 }
2985 fold_changed = TRUE;
2986 continue;
2987 }
2988 if (fp >= (fold_T *)(gap->ga_data) + gap->ga_len
2989 || fp->fd_top > bot)
2990 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002991 // 6: Found a fold below bot, can stop looking.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 break;
2993 }
2994 if (fp->fd_top >= top)
2995 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002996 // Found an entry below top.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 fold_changed = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002998 if (fp->fd_top + fp->fd_len - 1 > bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002999 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003000 // 5: Make fold that includes bot start below bot.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001 foldMarkAdjustRecurse(&fp->fd_nested,
3002 (linenr_T)0, (long)(bot - fp->fd_top),
3003 (linenr_T)MAXLNUM, (long)(fp->fd_top - bot - 1));
3004 fp->fd_len -= bot - fp->fd_top + 1;
3005 fp->fd_top = bot + 1;
3006 break;
3007 }
3008
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003009 // 4: Delete completely contained fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010 deleteFoldEntry(gap, (int)(fp - (fold_T *)gap->ga_data), TRUE);
3011 }
3012 }
3013}
3014
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003015// foldReverseOrder() {{{2
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003016 static void
Bram Moolenaarb11c8262017-04-23 16:48:20 +02003017foldReverseOrder(garray_T *gap, linenr_T start_arg, linenr_T end_arg)
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003018{
3019 fold_T *left, *right;
3020 fold_T tmp;
Bram Moolenaarb11c8262017-04-23 16:48:20 +02003021 linenr_T start = start_arg;
3022 linenr_T end = end_arg;
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003023
3024 for (; start < end; start++, end--)
3025 {
3026 left = (fold_T *)gap->ga_data + start;
3027 right = (fold_T *)gap->ga_data + end;
3028 tmp = *left;
3029 *left = *right;
3030 *right = tmp;
3031 }
3032}
3033
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003034// foldMoveRange() {{{2
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003035/*
3036 * Move folds within the inclusive range "line1" to "line2" to after "dest"
3037 * requires "line1" <= "line2" <= "dest"
3038 *
3039 * There are the following situations for the first fold at or below line1 - 1.
3040 * 1 2 3 4
3041 * 1 2 3 4
3042 * line1 2 3 4
3043 * 2 3 4 5 6 7
3044 * line2 3 4 5 6 7
3045 * 3 4 6 7 8 9
3046 * dest 4 7 8 9
3047 * 4 7 8 10
3048 * 4 7 8 10
3049 *
3050 * In the following descriptions, "moved" means moving in the buffer, *and* in
3051 * the fold array.
3052 * Meanwhile, "shifted" just means moving in the buffer.
3053 * 1. not changed
3054 * 2. truncated above line1
3055 * 3. length reduced by line2 - line1, folds starting between the end of 3 and
3056 * dest are truncated and shifted up
3057 * 4. internal folds moved (from [line1, line2] to dest)
3058 * 5. moved to dest.
3059 * 6. truncated below line2 and moved.
3060 * 7. length reduced by line2 - dest, folds starting between line2 and dest are
3061 * removed, top is moved down by move_len.
3062 * 8. truncated below dest and shifted up.
3063 * 9. shifted up
3064 * 10. not changed
3065 */
3066
3067 static void
3068truncate_fold(fold_T *fp, linenr_T end)
3069{
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003070 end += 1;
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003071 foldRemove(&fp->fd_nested, end - fp->fd_top, MAXLNUM);
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003072 fp->fd_len = end - fp->fd_top;
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003073}
3074
3075#define fold_end(fp) ((fp)->fd_top + (fp)->fd_len - 1)
Bram Moolenaar81fcb672020-09-01 21:21:24 +02003076#define valid_fold(fp, gap) ((gap)->ga_len > 0 && (fp) < ((fold_T *)(gap)->ga_data + (gap)->ga_len))
kylo252ae6f1d82022-02-16 19:24:07 +00003077#define fold_index(fp, gap) ((size_t)((fp) - ((fold_T *)(gap)->ga_data)))
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003078
Bram Moolenaar4a5a8dd2017-03-16 13:54:10 +01003079 void
3080foldMoveRange(garray_T *gap, linenr_T line1, linenr_T line2, linenr_T dest)
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003081{
3082 fold_T *fp;
3083 linenr_T range_len = line2 - line1 + 1;
3084 linenr_T move_len = dest - line2;
3085 int at_start = foldFind(gap, line1 - 1, &fp);
3086 size_t move_start = 0, move_end = 0, dest_index = 0;
3087
3088 if (at_start)
3089 {
3090 if (fold_end(fp) > dest)
3091 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003092 // Case 4
3093 // don't have to change this fold, but have to move nested folds.
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003094 foldMoveRange(&fp->fd_nested, line1 - fp->fd_top, line2 -
3095 fp->fd_top, dest - fp->fd_top);
3096 return;
3097 }
3098 else if (fold_end(fp) > line2)
3099 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003100 // Case 3
3101 // Remove nested folds between line1 and line2 & reduce the
3102 // length of fold by "range_len".
3103 // Folds after this one must be dealt with.
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003104 foldMarkAdjustRecurse(&fp->fd_nested, line1 - fp->fd_top, line2 -
3105 fp->fd_top, MAXLNUM, -range_len);
3106 fp->fd_len -= range_len;
3107 }
3108 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003109 // Case 2 truncate fold, folds after this one must be dealt with.
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003110 truncate_fold(fp, line1 - 1);
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003111
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003112 // Look at the next fold, and treat that one as if it were the first
3113 // after "line1" (because now it is).
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003114 fp = fp + 1;
3115 }
3116
3117 if (!valid_fold(fp, gap) || fp->fd_top > dest)
3118 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003119 // Case 10
3120 // No folds after "line1" and before "dest"
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003121 return;
3122 }
3123 else if (fp->fd_top > line2)
3124 {
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003125 for (; valid_fold(fp, gap) && fold_end(fp) <= dest; fp++)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003126 // Case 9. (for all case 9's) -- shift up.
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003127 fp->fd_top -= range_len;
3128
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003129 if (valid_fold(fp, gap) && fp->fd_top <= dest)
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003130 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003131 // Case 8. -- ensure truncated at dest, shift up
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003132 truncate_fold(fp, dest);
3133 fp->fd_top -= range_len;
3134 }
3135 return;
3136 }
3137 else if (fold_end(fp) > dest)
3138 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003139 // Case 7 -- remove nested folds and shrink
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003140 foldMarkAdjustRecurse(&fp->fd_nested, line2 + 1 - fp->fd_top, dest -
3141 fp->fd_top, MAXLNUM, -move_len);
3142 fp->fd_len -= move_len;
3143 fp->fd_top += move_len;
3144 return;
3145 }
3146
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003147 // Case 5 or 6
3148 // changes rely on whether there are folds between the end of
3149 // this fold and "dest".
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003150 move_start = fold_index(fp, gap);
3151
3152 for (; valid_fold(fp, gap) && fp->fd_top <= dest; fp++)
3153 {
3154 if (fp->fd_top <= line2)
3155 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003156 // 1. 2. or 3.
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003157 if (fold_end(fp) > line2)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003158 // 2. or 3., truncate before moving
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003159 truncate_fold(fp, line2);
3160
3161 fp->fd_top += move_len;
3162 continue;
3163 }
3164
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003165 // Record index of the first fold after the moved range.
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003166 if (move_end == 0)
3167 move_end = fold_index(fp, gap);
3168
3169 if (fold_end(fp) > dest)
3170 truncate_fold(fp, dest);
3171
3172 fp->fd_top -= range_len;
3173 }
3174
3175 dest_index = fold_index(fp, gap);
3176
3177 /*
Bram Moolenaar94be6192017-04-22 22:40:11 +02003178 * All folds are now correct, but not necessarily in the correct order. We
3179 * must swap folds in the range [move_end, dest_index) with those in the
3180 * range [move_start, move_end).
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003181 */
Bram Moolenaar94be6192017-04-22 22:40:11 +02003182 if (move_end == 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003183 // There are no folds after those moved, hence no folds have been moved
3184 // out of order.
Bram Moolenaar94be6192017-04-22 22:40:11 +02003185 return;
Bram Moolenaar0c0d4ec2017-03-16 22:06:57 +01003186 foldReverseOrder(gap, (linenr_T)move_start, (linenr_T)dest_index - 1);
3187 foldReverseOrder(gap, (linenr_T)move_start,
3188 (linenr_T)(move_start + dest_index - move_end - 1));
3189 foldReverseOrder(gap, (linenr_T)(move_start + dest_index - move_end),
3190 (linenr_T)(dest_index - 1));
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003191}
3192#undef fold_end
3193#undef valid_fold
3194#undef fold_index
3195
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003196// foldMerge() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197/*
Bram Moolenaar25394022007-05-10 19:06:20 +00003198 * Merge two adjacent folds (and the nested ones in them).
3199 * This only works correctly when the folds are really adjacent! Thus "fp1"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 * must end just above "fp2".
3201 * The resulting fold is "fp1", nested folds are moved from "fp2" to "fp1".
3202 * Fold entry "fp2" in "gap" is deleted.
3203 */
3204 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003205foldMerge(fold_T *fp1, garray_T *gap, fold_T *fp2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206{
3207 fold_T *fp3;
3208 fold_T *fp4;
3209 int idx;
3210 garray_T *gap1 = &fp1->fd_nested;
3211 garray_T *gap2 = &fp2->fd_nested;
3212
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003213 // If the last nested fold in fp1 touches the first nested fold in fp2,
3214 // merge them recursively.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215 if (foldFind(gap1, fp1->fd_len - 1L, &fp3) && foldFind(gap2, 0L, &fp4))
3216 foldMerge(fp3, gap2, fp4);
3217
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003218 // Move nested folds in fp2 to the end of fp1.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 if (gap2->ga_len > 0 && ga_grow(gap1, gap2->ga_len) == OK)
3220 {
3221 for (idx = 0; idx < gap2->ga_len; ++idx)
3222 {
3223 ((fold_T *)gap1->ga_data)[gap1->ga_len]
3224 = ((fold_T *)gap2->ga_data)[idx];
3225 ((fold_T *)gap1->ga_data)[gap1->ga_len].fd_top += fp1->fd_len;
3226 ++gap1->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227 }
3228 gap2->ga_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229 }
3230
3231 fp1->fd_len += fp2->fd_len;
3232 deleteFoldEntry(gap, (int)(fp2 - (fold_T *)gap->ga_data), TRUE);
3233 fold_changed = TRUE;
3234}
3235
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003236// foldlevelIndent() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237/*
3238 * Low level function to get the foldlevel for the "indent" method.
3239 * Doesn't use any caching.
3240 * Returns a level of -1 if the foldlevel depends on surrounding lines.
3241 */
3242 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003243foldlevelIndent(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244{
3245 char_u *s;
3246 buf_T *buf;
3247 linenr_T lnum = flp->lnum + flp->off;
3248
3249 buf = flp->wp->w_buffer;
3250 s = skipwhite(ml_get_buf(buf, lnum, FALSE));
3251
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003252 // empty line or lines starting with a character in 'foldignore': level
3253 // depends on surrounding lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003254 if (*s == NUL || vim_strchr(flp->wp->w_p_fdi, *s) != NULL)
3255 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003256 // first and last line can't be undefined, use level 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257 if (lnum == 1 || lnum == buf->b_ml.ml_line_count)
3258 flp->lvl = 0;
3259 else
3260 flp->lvl = -1;
3261 }
3262 else
Bram Moolenaar0c27cbc2018-11-14 21:45:32 +01003263 flp->lvl = get_indent_buf(buf, lnum) / get_sw_value(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264 if (flp->lvl > flp->wp->w_p_fdn)
Bram Moolenaar74c596b2006-11-01 11:44:31 +00003265 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 flp->lvl = flp->wp->w_p_fdn;
Bram Moolenaar74c596b2006-11-01 11:44:31 +00003267 if (flp->lvl < 0)
3268 flp->lvl = 0;
3269 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270}
3271
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003272// foldlevelDiff() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273#ifdef FEAT_DIFF
3274/*
3275 * Low level function to get the foldlevel for the "diff" method.
3276 * Doesn't use any caching.
3277 */
3278 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003279foldlevelDiff(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003280{
3281 if (diff_infold(flp->wp, flp->lnum + flp->off))
3282 flp->lvl = 1;
3283 else
3284 flp->lvl = 0;
3285}
3286#endif
3287
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003288// foldlevelExpr() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289/*
3290 * Low level function to get the foldlevel for the "expr" method.
3291 * Doesn't use any caching.
3292 * Returns a level of -1 if the foldlevel depends on surrounding lines.
3293 */
3294 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003295foldlevelExpr(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296{
3297#ifndef FEAT_EVAL
3298 flp->start = FALSE;
3299 flp->lvl = 0;
3300#else
3301 win_T *win;
3302 int n;
3303 int c;
3304 linenr_T lnum = flp->lnum + flp->off;
3305 int save_keytyped;
3306
3307 win = curwin;
3308 curwin = flp->wp;
3309 curbuf = flp->wp->w_buffer;
3310 set_vim_var_nr(VV_LNUM, lnum);
3311
3312 flp->start = 0;
3313 flp->had_end = flp->end;
3314 flp->end = MAX_LEVEL + 1;
3315 if (lnum <= 1)
3316 flp->lvl = 0;
3317
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003318 // KeyTyped may be reset to 0 when calling a function which invokes
3319 // do_cmdline(). To make 'foldopen' work correctly restore KeyTyped.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320 save_keytyped = KeyTyped;
Bram Moolenaare70dd112022-01-21 16:31:11 +00003321 n = eval_foldexpr(flp->wp, &c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003322 KeyTyped = save_keytyped;
3323
3324 switch (c)
3325 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003326 // "a1", "a2", .. : add to the fold level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327 case 'a': if (flp->lvl >= 0)
3328 {
3329 flp->lvl += n;
3330 flp->lvl_next = flp->lvl;
3331 }
3332 flp->start = n;
3333 break;
3334
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003335 // "s1", "s2", .. : subtract from the fold level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336 case 's': if (flp->lvl >= 0)
3337 {
3338 if (n > flp->lvl)
3339 flp->lvl_next = 0;
3340 else
3341 flp->lvl_next = flp->lvl - n;
3342 flp->end = flp->lvl_next + 1;
3343 }
3344 break;
3345
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003346 // ">1", ">2", .. : start a fold with a certain level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347 case '>': flp->lvl = n;
3348 flp->lvl_next = n;
3349 flp->start = 1;
3350 break;
3351
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003352 // "<1", "<2", .. : end a fold with a certain level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003353 case '<': flp->lvl_next = n - 1;
3354 flp->end = n;
3355 break;
3356
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003357 // "=": No change in level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358 case '=': flp->lvl_next = flp->lvl;
3359 break;
3360
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003361 // "-1", "0", "1", ..: set fold level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 default: if (n < 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003363 // Use the current level for the next line, so that "a1"
3364 // will work there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365 flp->lvl_next = flp->lvl;
3366 else
3367 flp->lvl_next = n;
3368 flp->lvl = n;
3369 break;
3370 }
3371
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003372 // If the level is unknown for the first or the last line in the file, use
3373 // level 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374 if (flp->lvl < 0)
3375 {
3376 if (lnum <= 1)
3377 {
3378 flp->lvl = 0;
3379 flp->lvl_next = 0;
3380 }
3381 if (lnum == curbuf->b_ml.ml_line_count)
3382 flp->lvl_next = 0;
3383 }
3384
3385 curwin = win;
3386 curbuf = curwin->w_buffer;
3387#endif
3388}
3389
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003390// parseMarker() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391/*
3392 * Parse 'foldmarker' and set "foldendmarker", "foldstartmarkerlen" and
3393 * "foldendmarkerlen".
3394 * Relies on the option value to have been checked for correctness already.
3395 */
3396 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003397parseMarker(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398{
3399 foldendmarker = vim_strchr(wp->w_p_fmr, ',');
3400 foldstartmarkerlen = (int)(foldendmarker++ - wp->w_p_fmr);
3401 foldendmarkerlen = (int)STRLEN(foldendmarker);
3402}
3403
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003404// foldlevelMarker() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405/*
3406 * Low level function to get the foldlevel for the "marker" method.
3407 * "foldendmarker", "foldstartmarkerlen" and "foldendmarkerlen" must have been
3408 * set before calling this.
3409 * Requires that flp->lvl is set to the fold level of the previous line!
3410 * Careful: This means you can't call this function twice on the same line.
3411 * Doesn't use any caching.
3412 * Sets flp->start when a start marker was found.
3413 */
3414 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003415foldlevelMarker(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416{
3417 char_u *startmarker;
3418 int cstart;
3419 int cend;
3420 int start_lvl = flp->lvl;
3421 char_u *s;
3422 int n;
3423
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003424 // cache a few values for speed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425 startmarker = flp->wp->w_p_fmr;
3426 cstart = *startmarker;
3427 ++startmarker;
3428 cend = *foldendmarker;
3429
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003430 // Default: no start found, next level is same as current level
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431 flp->start = 0;
3432 flp->lvl_next = flp->lvl;
3433
3434 s = ml_get_buf(flp->wp->w_buffer, flp->lnum + flp->off, FALSE);
3435 while (*s)
3436 {
3437 if (*s == cstart
3438 && STRNCMP(s + 1, startmarker, foldstartmarkerlen - 1) == 0)
3439 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003440 // found startmarker: set flp->lvl
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 s += foldstartmarkerlen;
3442 if (VIM_ISDIGIT(*s))
3443 {
3444 n = atoi((char *)s);
3445 if (n > 0)
3446 {
3447 flp->lvl = n;
3448 flp->lvl_next = n;
3449 if (n <= start_lvl)
3450 flp->start = 1;
3451 else
3452 flp->start = n - start_lvl;
3453 }
3454 }
3455 else
3456 {
3457 ++flp->lvl;
3458 ++flp->lvl_next;
3459 ++flp->start;
3460 }
3461 }
3462 else if (*s == cend
3463 && STRNCMP(s + 1, foldendmarker + 1, foldendmarkerlen - 1) == 0)
3464 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003465 // found endmarker: set flp->lvl_next
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466 s += foldendmarkerlen;
3467 if (VIM_ISDIGIT(*s))
3468 {
3469 n = atoi((char *)s);
3470 if (n > 0)
3471 {
3472 flp->lvl = n;
3473 flp->lvl_next = n - 1;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003474 // never start a fold with an end marker
Bram Moolenaar3ee02292010-01-19 17:24:25 +01003475 if (flp->lvl_next > start_lvl)
3476 flp->lvl_next = start_lvl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477 }
3478 }
3479 else
3480 --flp->lvl_next;
3481 }
3482 else
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003483 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484 }
3485
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003486 // The level can't go negative, must be missing a start marker.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487 if (flp->lvl_next < 0)
3488 flp->lvl_next = 0;
3489}
3490
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003491// foldlevelSyntax() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492/*
3493 * Low level function to get the foldlevel for the "syntax" method.
3494 * Doesn't use any caching.
3495 */
3496 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003497foldlevelSyntax(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498{
3499#ifndef FEAT_SYN_HL
3500 flp->start = 0;
3501 flp->lvl = 0;
3502#else
3503 linenr_T lnum = flp->lnum + flp->off;
3504 int n;
3505
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003506 // Use the maximum fold level at the start of this line and the next.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507 flp->lvl = syn_get_foldlevel(flp->wp, lnum);
3508 flp->start = 0;
3509 if (lnum < flp->wp->w_buffer->b_ml.ml_line_count)
3510 {
3511 n = syn_get_foldlevel(flp->wp, lnum + 1);
3512 if (n > flp->lvl)
3513 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003514 flp->start = n - flp->lvl; // fold(s) start here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515 flp->lvl = n;
3516 }
3517 }
3518#endif
3519}
3520
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003521// functions for storing the fold state in a View {{{1
3522// put_folds() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523#if defined(FEAT_SESSION) || defined(PROTO)
Bram Moolenaard25c16e2016-01-29 22:13:30 +01003524static int put_folds_recurse(FILE *fd, garray_T *gap, linenr_T off);
3525static int put_foldopen_recurse(FILE *fd, win_T *wp, garray_T *gap, linenr_T off);
3526static int put_fold_open_close(FILE *fd, fold_T *fp, linenr_T off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527
3528/*
3529 * Write commands to "fd" to restore the manual folds in window "wp".
3530 * Return FAIL if writing fails.
3531 */
3532 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003533put_folds(FILE *fd, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534{
3535 if (foldmethodIsManual(wp))
3536 {
3537 if (put_line(fd, "silent! normal! zE") == FAIL
Bram Moolenaarf9547eb2021-02-01 19:24:55 +01003538 || put_folds_recurse(fd, &wp->w_folds, (linenr_T)0) == FAIL
3539 || put_line(fd, "let &fdl = &fdl") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 return FAIL;
3541 }
3542
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003543 // If some folds are manually opened/closed, need to restore that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003544 if (wp->w_fold_manual)
Bram Moolenaard25ad652012-02-29 19:20:02 +01003545 return put_foldopen_recurse(fd, wp, &wp->w_folds, (linenr_T)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546
3547 return OK;
3548}
3549
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003550// put_folds_recurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551/*
3552 * Write commands to "fd" to recreate manually created folds.
3553 * Returns FAIL when writing failed.
3554 */
3555 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003556put_folds_recurse(FILE *fd, garray_T *gap, linenr_T off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557{
3558 int i;
3559 fold_T *fp;
3560
3561 fp = (fold_T *)gap->ga_data;
3562 for (i = 0; i < gap->ga_len; i++)
3563 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003564 // Do nested folds first, they will be created closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 if (put_folds_recurse(fd, &fp->fd_nested, off + fp->fd_top) == FAIL)
3566 return FAIL;
3567 if (fprintf(fd, "%ld,%ldfold", fp->fd_top + off,
3568 fp->fd_top + off + fp->fd_len - 1) < 0
3569 || put_eol(fd) == FAIL)
3570 return FAIL;
3571 ++fp;
3572 }
3573 return OK;
3574}
3575
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003576// put_foldopen_recurse() {{{2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577/*
3578 * Write commands to "fd" to open and close manually opened/closed folds.
3579 * Returns FAIL when writing failed.
3580 */
3581 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003582put_foldopen_recurse(
3583 FILE *fd,
3584 win_T *wp,
3585 garray_T *gap,
3586 linenr_T off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587{
3588 int i;
Bram Moolenaard25ad652012-02-29 19:20:02 +01003589 int level;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590 fold_T *fp;
3591
3592 fp = (fold_T *)gap->ga_data;
3593 for (i = 0; i < gap->ga_len; i++)
3594 {
3595 if (fp->fd_flags != FD_LEVEL)
3596 {
3597 if (fp->fd_nested.ga_len > 0)
3598 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003599 // open nested folds while this fold is open
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600 if (fprintf(fd, "%ld", fp->fd_top + off) < 0
3601 || put_eol(fd) == FAIL
Bram Moolenaar002a4ed2012-08-29 15:22:25 +02003602 || put_line(fd, "normal! zo") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603 return FAIL;
Bram Moolenaard25ad652012-02-29 19:20:02 +01003604 if (put_foldopen_recurse(fd, wp, &fp->fd_nested,
3605 off + fp->fd_top)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003606 == FAIL)
3607 return FAIL;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003608 // close the parent when needed
Bram Moolenaard25ad652012-02-29 19:20:02 +01003609 if (fp->fd_flags == FD_CLOSED)
3610 {
3611 if (put_fold_open_close(fd, fp, off) == FAIL)
3612 return FAIL;
3613 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614 }
Bram Moolenaard25ad652012-02-29 19:20:02 +01003615 else
3616 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003617 // Open or close the leaf according to the window foldlevel.
3618 // Do not close a leaf that is already closed, as it will close
3619 // the parent.
Bram Moolenaard25ad652012-02-29 19:20:02 +01003620 level = foldLevelWin(wp, off + fp->fd_top);
3621 if ((fp->fd_flags == FD_CLOSED && wp->w_p_fdl >= level)
3622 || (fp->fd_flags != FD_CLOSED && wp->w_p_fdl < level))
3623 if (put_fold_open_close(fd, fp, off) == FAIL)
3624 return FAIL;
3625 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 }
3627 ++fp;
3628 }
3629
3630 return OK;
3631}
Bram Moolenaard25ad652012-02-29 19:20:02 +01003632
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003633// put_fold_open_close() {{{2
Bram Moolenaard25ad652012-02-29 19:20:02 +01003634/*
3635 * Write the open or close command to "fd".
3636 * Returns FAIL when writing failed.
3637 */
3638 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003639put_fold_open_close(FILE *fd, fold_T *fp, linenr_T off)
Bram Moolenaard25ad652012-02-29 19:20:02 +01003640{
3641 if (fprintf(fd, "%ld", fp->fd_top + off) < 0
3642 || put_eol(fd) == FAIL
Bram Moolenaar002a4ed2012-08-29 15:22:25 +02003643 || fprintf(fd, "normal! z%c",
Bram Moolenaard25ad652012-02-29 19:20:02 +01003644 fp->fd_flags == FD_CLOSED ? 'c' : 'o') < 0
3645 || put_eol(fd) == FAIL)
3646 return FAIL;
3647
3648 return OK;
3649}
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003650#endif // FEAT_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003652// }}}1
Bram Moolenaardb022f32019-09-01 17:52:32 +02003653#endif // defined(FEAT_FOLDING) || defined(PROTO)
3654
3655#if defined(FEAT_EVAL) || defined(PROTO)
3656
3657/*
3658 * "foldclosed()" and "foldclosedend()" functions
3659 */
3660 static void
3661foldclosed_both(
3662 typval_T *argvars UNUSED,
3663 typval_T *rettv,
3664 int end UNUSED)
3665{
3666# ifdef FEAT_FOLDING
3667 linenr_T lnum;
3668 linenr_T first, last;
3669
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003670 if (in_vim9script() && check_for_lnum_arg(argvars, 0) == FAIL)
3671 return;
3672
Bram Moolenaardb022f32019-09-01 17:52:32 +02003673 lnum = tv_get_lnum(argvars);
3674 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
3675 {
3676 if (hasFoldingWin(curwin, lnum, &first, &last, FALSE, NULL))
3677 {
3678 if (end)
3679 rettv->vval.v_number = (varnumber_T)last;
3680 else
3681 rettv->vval.v_number = (varnumber_T)first;
3682 return;
3683 }
3684 }
3685#endif
3686 rettv->vval.v_number = -1;
3687}
3688
3689/*
3690 * "foldclosed()" function
3691 */
3692 void
3693f_foldclosed(typval_T *argvars, typval_T *rettv)
3694{
3695 foldclosed_both(argvars, rettv, FALSE);
3696}
3697
3698/*
3699 * "foldclosedend()" function
3700 */
3701 void
3702f_foldclosedend(typval_T *argvars, typval_T *rettv)
3703{
3704 foldclosed_both(argvars, rettv, TRUE);
3705}
3706
3707/*
3708 * "foldlevel()" function
3709 */
3710 void
3711f_foldlevel(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
3712{
3713# ifdef FEAT_FOLDING
3714 linenr_T lnum;
3715
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003716 if (in_vim9script() && check_for_lnum_arg(argvars, 0) == FAIL)
3717 return;
3718
Bram Moolenaardb022f32019-09-01 17:52:32 +02003719 lnum = tv_get_lnum(argvars);
3720 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
3721 rettv->vval.v_number = foldLevel(lnum);
3722# endif
3723}
3724
3725/*
3726 * "foldtext()" function
3727 */
3728 void
3729f_foldtext(typval_T *argvars UNUSED, typval_T *rettv)
3730{
3731# ifdef FEAT_FOLDING
3732 linenr_T foldstart;
3733 linenr_T foldend;
3734 char_u *dashes;
3735 linenr_T lnum;
3736 char_u *s;
3737 char_u *r;
3738 int len;
3739 char *txt;
3740 long count;
3741# endif
3742
3743 rettv->v_type = VAR_STRING;
3744 rettv->vval.v_string = NULL;
3745# ifdef FEAT_FOLDING
3746 foldstart = (linenr_T)get_vim_var_nr(VV_FOLDSTART);
3747 foldend = (linenr_T)get_vim_var_nr(VV_FOLDEND);
3748 dashes = get_vim_var_str(VV_FOLDDASHES);
3749 if (foldstart > 0 && foldend <= curbuf->b_ml.ml_line_count
3750 && dashes != NULL)
3751 {
3752 // Find first non-empty line in the fold.
3753 for (lnum = foldstart; lnum < foldend; ++lnum)
3754 if (!linewhite(lnum))
3755 break;
3756
3757 // Find interesting text in this line.
3758 s = skipwhite(ml_get(lnum));
3759 // skip C comment-start
3760 if (s[0] == '/' && (s[1] == '*' || s[1] == '/'))
3761 {
3762 s = skipwhite(s + 2);
3763 if (*skipwhite(s) == NUL
3764 && lnum + 1 < (linenr_T)get_vim_var_nr(VV_FOLDEND))
3765 {
3766 s = skipwhite(ml_get(lnum + 1));
3767 if (*s == '*')
3768 s = skipwhite(s + 1);
3769 }
3770 }
3771 count = (long)(foldend - foldstart + 1);
3772 txt = NGETTEXT("+-%s%3ld line: ", "+-%s%3ld lines: ", count);
3773 r = alloc(STRLEN(txt)
3774 + STRLEN(dashes) // for %s
3775 + 20 // for %3ld
3776 + STRLEN(s)); // concatenated
3777 if (r != NULL)
3778 {
3779 sprintf((char *)r, txt, dashes, count);
3780 len = (int)STRLEN(r);
3781 STRCAT(r, s);
3782 // remove 'foldmarker' and 'commentstring'
3783 foldtext_cleanup(r + len);
3784 rettv->vval.v_string = r;
3785 }
3786 }
3787# endif
3788}
3789
3790/*
3791 * "foldtextresult(lnum)" function
3792 */
3793 void
3794f_foldtextresult(typval_T *argvars UNUSED, typval_T *rettv)
3795{
3796# ifdef FEAT_FOLDING
3797 linenr_T lnum;
3798 char_u *text;
3799 char_u buf[FOLD_TEXT_LEN];
3800 foldinfo_T foldinfo;
3801 int fold_count;
3802 static int entered = FALSE;
3803# endif
3804
3805 rettv->v_type = VAR_STRING;
3806 rettv->vval.v_string = NULL;
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003807
3808 if (in_vim9script() && check_for_lnum_arg(argvars, 0) == FAIL)
3809 return;
3810
Bram Moolenaardb022f32019-09-01 17:52:32 +02003811# ifdef FEAT_FOLDING
3812 if (entered)
3813 return; // reject recursive use
3814 entered = TRUE;
3815
3816 lnum = tv_get_lnum(argvars);
3817 // treat illegal types and illegal string values for {lnum} the same
3818 if (lnum < 0)
3819 lnum = 0;
3820 fold_count = foldedCount(curwin, lnum, &foldinfo);
3821 if (fold_count > 0)
3822 {
3823 text = get_foldtext(curwin, lnum, lnum + fold_count - 1,
3824 &foldinfo, buf);
3825 if (text == buf)
3826 text = vim_strsave(text);
3827 rettv->vval.v_string = text;
3828 }
3829
3830 entered = FALSE;
3831# endif
3832}
3833
3834#endif // FEAT_EVAL