blob: 6200578fced2554e7baceb6a1d847c45f5ed5c24 [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
19/* local declarations. {{{1 */
20/* typedef fold_T {{{2 */
21/*
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{
29 linenr_T fd_top; /* first line of fold; for nested fold
30 * relative to parent */
31 linenr_T fd_len; /* number of lines in the fold */
32 garray_T fd_nested; /* array of nested folds */
33 char fd_flags; /* see below */
34 char fd_small; /* TRUE, FALSE or MAYBE: fold smaller than
35 'foldminlines'; MAYBE applies to nested
36 folds too */
37} fold_T;
38
39#define FD_OPEN 0 /* fold is open (nested ones can be closed) */
40#define FD_CLOSED 1 /* fold is closed */
41#define FD_LEVEL 2 /* depends on 'foldlevel' (nested folds too) */
42
43#define MAX_LEVEL 20 /* maximum fold depth */
44
45/* static functions {{{2 */
Bram Moolenaard25c16e2016-01-29 22:13:30 +010046static void newFoldLevelWin(win_T *wp);
47static int checkCloseRec(garray_T *gap, linenr_T lnum, int level);
48static int foldFind(garray_T *gap, linenr_T lnum, fold_T **fpp);
49static int foldLevelWin(win_T *wp, linenr_T lnum);
50static void checkupdate(win_T *wp);
51static void setFoldRepeat(linenr_T lnum, long count, int do_open);
52static linenr_T setManualFold(linenr_T lnum, int opening, int recurse, int *donep);
53static linenr_T setManualFoldWin(win_T *wp, linenr_T lnum, int opening, int recurse, int *donep);
54static void foldOpenNested(fold_T *fpr);
55static void deleteFoldEntry(garray_T *gap, int idx, int recursive);
56static void foldMarkAdjustRecurse(garray_T *gap, linenr_T line1, linenr_T line2, long amount, long amount_after);
57static int getDeepestNestingRecurse(garray_T *gap);
58static int check_closed(win_T *win, fold_T *fp, int *use_levelp, int level, int *maybe_smallp, linenr_T lnum_off);
59static void checkSmall(win_T *wp, fold_T *fp, linenr_T lnum_off);
60static void setSmallMaybe(garray_T *gap);
61static void foldCreateMarkers(linenr_T start, linenr_T end);
62static void foldAddMarker(linenr_T lnum, char_u *marker, int markerlen);
63static void deleteFoldMarkers(fold_T *fp, int recursive, linenr_T lnum_off);
64static void foldDelMarker(linenr_T lnum, char_u *marker, int markerlen);
65static void foldUpdateIEMS(win_T *wp, linenr_T top, linenr_T bot);
66static void parseMarker(win_T *wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000067
68static char *e_nofold = N_("E490: No fold found");
69
70/*
71 * While updating the folds lines between invalid_top and invalid_bot have an
72 * undefined fold level. Only used for the window currently being updated.
73 */
74static linenr_T invalid_top = (linenr_T)0;
75static linenr_T invalid_bot = (linenr_T)0;
76
77/*
78 * When using 'foldexpr' we sometimes get the level of the next line, which
79 * calls foldlevel() to get the level of the current line, which hasn't been
80 * stored yet. To get around this chicken-egg problem the level of the
81 * previous line is stored here when available. prev_lnum is zero when the
82 * level is not available.
83 */
84static linenr_T prev_lnum = 0;
85static int prev_lnum_lvl = -1;
86
87/* Flags used for "done" argument of setManualFold. */
88#define DONE_NOTHING 0
89#define DONE_ACTION 1 /* did close or open a fold */
90#define DONE_FOLD 2 /* did find a fold */
91
92static int foldstartmarkerlen;
93static char_u *foldendmarker;
94static int foldendmarkerlen;
95
96/* Exported folding functions. {{{1 */
97/* copyFoldingState() {{{2 */
Bram Moolenaar4033c552017-09-16 20:54:51 +020098
Bram Moolenaar071d4272004-06-13 20:20:40 +000099/*
100 * Copy that folding state from window "wp_from" to window "wp_to".
101 */
102 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100103copyFoldingState(win_T *wp_from, win_T *wp_to)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104{
105 wp_to->w_fold_manual = wp_from->w_fold_manual;
106 wp_to->w_foldinvalid = wp_from->w_foldinvalid;
107 cloneFoldGrowArray(&wp_from->w_folds, &wp_to->w_folds);
108}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109
110/* hasAnyFolding() {{{2 */
111/*
112 * Return TRUE if there may be folded lines in the current window.
113 */
114 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100115hasAnyFolding(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116{
117 /* very simple now, but can become more complex later */
118 return (win->w_p_fen
119 && (!foldmethodIsManual(win) || win->w_folds.ga_len > 0));
120}
121
122/* hasFolding() {{{2 */
123/*
124 * Return TRUE if line "lnum" in the current window is part of a closed
125 * fold.
126 * When returning TRUE, *firstp and *lastp are set to the first and last
127 * lnum of the sequence of folded lines (skipped when NULL).
128 */
129 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100130hasFolding(linenr_T lnum, linenr_T *firstp, linenr_T *lastp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131{
132 return hasFoldingWin(curwin, lnum, firstp, lastp, TRUE, NULL);
133}
134
135/* hasFoldingWin() {{{2 */
136 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100137hasFoldingWin(
138 win_T *win,
139 linenr_T lnum,
140 linenr_T *firstp,
141 linenr_T *lastp,
142 int cache, /* when TRUE: use cached values of window */
143 foldinfo_T *infop) /* where to store fold info */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144{
145 int had_folded = FALSE;
146 linenr_T first = 0;
147 linenr_T last = 0;
148 linenr_T lnum_rel = lnum;
149 int x;
150 fold_T *fp;
151 int level = 0;
152 int use_level = FALSE;
153 int maybe_small = FALSE;
154 garray_T *gap;
Bram Moolenaar945ec092016-06-08 21:17:43 +0200155 int low_level = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156
157 checkupdate(win);
Bram Moolenaar0c27cbc2018-11-14 21:45:32 +0100158
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159 /*
160 * Return quickly when there is no folding at all in this window.
161 */
162 if (!hasAnyFolding(win))
163 {
164 if (infop != NULL)
165 infop->fi_level = 0;
166 return FALSE;
167 }
168
169 if (cache)
170 {
171 /*
172 * First look in cached info for displayed lines. This is probably
173 * the fastest, but it can only be used if the entry is still valid.
174 */
175 x = find_wl_entry(win, lnum);
176 if (x >= 0)
177 {
178 first = win->w_lines[x].wl_lnum;
179 last = win->w_lines[x].wl_lastlnum;
180 had_folded = win->w_lines[x].wl_folded;
181 }
182 }
183
184 if (first == 0)
185 {
186 /*
187 * Recursively search for a fold that contains "lnum".
188 */
189 gap = &win->w_folds;
190 for (;;)
191 {
192 if (!foldFind(gap, lnum_rel, &fp))
193 break;
194
195 /* Remember lowest level of fold that starts in "lnum". */
196 if (lnum_rel == fp->fd_top && low_level == 0)
197 low_level = level + 1;
198
199 first += fp->fd_top;
200 last += fp->fd_top;
201
202 /* is this fold closed? */
203 had_folded = check_closed(win, fp, &use_level, level,
204 &maybe_small, lnum - lnum_rel);
205 if (had_folded)
206 {
207 /* Fold closed: Set last and quit loop. */
208 last += fp->fd_len - 1;
209 break;
210 }
211
212 /* Fold found, but it's open: Check nested folds. Line number is
213 * relative to containing fold. */
214 gap = &fp->fd_nested;
215 lnum_rel -= fp->fd_top;
216 ++level;
217 }
218 }
219
220 if (!had_folded)
221 {
222 if (infop != NULL)
223 {
224 infop->fi_level = level;
225 infop->fi_lnum = lnum - lnum_rel;
226 infop->fi_low_level = low_level == 0 ? level : low_level;
227 }
228 return FALSE;
229 }
230
Bram Moolenaar05b20fb2015-04-13 20:52:36 +0200231 if (last > win->w_buffer->b_ml.ml_line_count)
232 last = win->w_buffer->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233 if (lastp != NULL)
234 *lastp = last;
235 if (firstp != NULL)
236 *firstp = first;
237 if (infop != NULL)
238 {
239 infop->fi_level = level + 1;
240 infop->fi_lnum = first;
241 infop->fi_low_level = low_level == 0 ? level + 1 : low_level;
242 }
243 return TRUE;
244}
245
246/* foldLevel() {{{2 */
247/*
248 * Return fold level at line number "lnum" in the current window.
249 */
250 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100251foldLevel(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252{
253 /* While updating the folds lines between invalid_top and invalid_bot have
254 * an undefined fold level. Otherwise update the folds first. */
255 if (invalid_top == (linenr_T)0)
256 checkupdate(curwin);
257 else if (lnum == prev_lnum && prev_lnum_lvl >= 0)
258 return prev_lnum_lvl;
259 else if (lnum >= invalid_top && lnum <= invalid_bot)
260 return -1;
261
262 /* Return quickly when there is no folding at all in this window. */
263 if (!hasAnyFolding(curwin))
264 return 0;
265
266 return foldLevelWin(curwin, lnum);
267}
268
269/* lineFolded() {{{2 */
270/*
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
282/* foldedCount() {{{2 */
283/*
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
301/* foldmethodIsManual() {{{2 */
302/*
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{
308 return (wp->w_p_fdm[3] == 'u');
309}
310
311/* foldmethodIsIndent() {{{2 */
312/*
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
321/* foldmethodIsExpr() {{{2 */
322/*
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{
328 return (wp->w_p_fdm[1] == 'x');
329}
330
331/* foldmethodIsMarker() {{{2 */
332/*
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{
338 return (wp->w_p_fdm[2] == 'r');
339}
340
341/* foldmethodIsSyntax() {{{2 */
342/*
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
351/* foldmethodIsDiff() {{{2 */
352/*
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
361/* closeFold() {{{2 */
362/*
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
372/* closeFoldRecurse() {{{2 */
373/*
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
382/* opFoldRange() {{{2 */
383/*
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,
391 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{
395 int done = DONE_NOTHING; /* avoid error messages */
396 linenr_T lnum;
397 linenr_T lnum_next;
398
399 for (lnum = first; lnum <= last; lnum = lnum_next + 1)
400 {
401 lnum_next = lnum;
402 /* Opening one level only: next fold to open is after the one going to
403 * be opened. */
404 if (opening && !recurse)
405 (void)hasFolding(lnum, NULL, &lnum_next);
406 (void)setManualFold(lnum, opening, recurse, &done);
407 /* Closing one level only: next line to close a fold is after just
408 * closed fold. */
409 if (!opening && !recurse)
410 (void)hasFolding(lnum, NULL, &lnum_next);
411 }
412 if (done == DONE_NOTHING)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100413 emsg(_(e_nofold));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414 /* Force a redraw to remove the Visual highlighting. */
415 if (had_visual)
416 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417}
418
419/* openFold() {{{2 */
420/*
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
430/* openFoldRecurse() {{{2 */
431/*
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
440/* foldOpenCursor() {{{2 */
441/*
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
460/* newFoldLevel() {{{2 */
461/*
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 {
498 /* 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'. */
501 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
509/* foldCheckClose() {{{2 */
510/*
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{
516 if (*p_fcl != NUL) /* can only be "all" right now */
517 {
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
525/* checkCloseRec() {{{2 */
526 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 {
536 /* Only manually opened folds may need to be closed. */
537 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
553/* foldCreateAllowed() {{{2 */
554/*
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 Moolenaarf9e3e092019-01-13 23:38:42 +0100564 emsg(_("E350: Cannot create fold with current 'foldmethod'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100566 emsg(_("E351: Cannot delete fold with current 'foldmethod'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 return FALSE;
568}
569
570/* foldCreate() {{{2 */
571/*
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 {
591 /* reverse the range */
592 end = start_rel;
593 start = end_rel;
594 start_rel = start;
595 end_rel = end;
596 }
597
598 /* When 'foldmethod' is "marker" add markers, which creates the folds. */
599 if (foldmethodIsMarker(curwin))
600 {
601 foldCreateMarkers(start, end);
602 return;
603 }
604
605 checkupdate(curwin);
606
607 /* Find the place to insert the new fold. */
608 gap = &curwin->w_folds;
609 for (;;)
610 {
611 if (!foldFind(gap, start_rel, &fp))
612 break;
613 if (fp->fd_top + fp->fd_len > end_rel)
614 {
615 /* New fold is completely inside this fold: Go one level deeper. */
616 gap = &fp->fd_nested;
617 start_rel -= fp->fd_top;
618 end_rel -= fp->fd_top;
619 if (use_level || fp->fd_flags == FD_LEVEL)
620 {
621 use_level = TRUE;
622 if (level >= curwin->w_p_fdl)
623 closed = TRUE;
624 }
625 else if (fp->fd_flags == FD_CLOSED)
626 closed = TRUE;
627 ++level;
628 }
629 else
630 {
631 /* This fold and new fold overlap: Insert here and move some folds
632 * inside the new fold. */
633 break;
634 }
635 }
636
637 i = (int)(fp - (fold_T *)gap->ga_data);
638 if (ga_grow(gap, 1) == OK)
639 {
640 fp = (fold_T *)gap->ga_data + i;
641 ga_init2(&fold_ga, (int)sizeof(fold_T), 10);
642
643 /* Count number of folds that will be contained in the new fold. */
644 for (cont = 0; i + cont < gap->ga_len; ++cont)
645 if (fp[cont].fd_top > end_rel)
646 break;
647 if (cont > 0 && ga_grow(&fold_ga, cont) == OK)
648 {
649 /* If the first fold starts before the new fold, let the new fold
650 * start there. Otherwise the existing fold would change. */
651 if (start_rel > fp->fd_top)
652 start_rel = fp->fd_top;
653
654 /* When last contained fold isn't completely contained, adjust end
655 * of new fold. */
656 if (end_rel < fp[cont - 1].fd_top + fp[cont - 1].fd_len - 1)
657 end_rel = fp[cont - 1].fd_top + fp[cont - 1].fd_len - 1;
658 /* Move contained folds to inside new fold. */
659 mch_memmove(fold_ga.ga_data, fp, sizeof(fold_T) * cont);
660 fold_ga.ga_len += cont;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661 i += cont;
662
663 /* Adjust line numbers in contained folds to be relative to the
664 * new fold. */
665 for (j = 0; j < cont; ++j)
666 ((fold_T *)fold_ga.ga_data)[j].fd_top -= start_rel;
667 }
668 /* Move remaining entries to after the new fold. */
669 if (i < gap->ga_len)
670 mch_memmove(fp + 1, (fold_T *)gap->ga_data + i,
671 sizeof(fold_T) * (gap->ga_len - i));
672 gap->ga_len = gap->ga_len + 1 - cont;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673
674 /* insert new fold */
675 fp->fd_nested = fold_ga;
676 fp->fd_top = start_rel;
677 fp->fd_len = end_rel - start_rel + 1;
678
679 /* We want the new fold to be closed. If it would remain open because
680 * of using 'foldlevel', need to adjust fd_flags of containing folds.
681 */
682 if (use_level && !closed && level < curwin->w_p_fdl)
683 closeFold(start, 1L);
684 if (!use_level)
685 curwin->w_fold_manual = TRUE;
686 fp->fd_flags = FD_CLOSED;
687 fp->fd_small = MAYBE;
688
689 /* redraw */
690 changed_window_setting();
691 }
692}
693
694/* deleteFold() {{{2 */
695/*
696 * Delete a fold at line "start" in the current window.
697 * When "end" is not 0, delete all folds from "start" to "end".
698 * When "recursive" is TRUE delete recursively.
699 */
700 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100701deleteFold(
702 linenr_T start,
703 linenr_T end,
704 int recursive,
705 int had_visual) /* TRUE when Visual selection used */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706{
707 garray_T *gap;
708 fold_T *fp;
709 garray_T *found_ga;
710 fold_T *found_fp = NULL;
711 linenr_T found_off = 0;
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000712 int use_level;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713 int maybe_small = FALSE;
714 int level = 0;
715 linenr_T lnum = start;
716 linenr_T lnum_off;
717 int did_one = FALSE;
718 linenr_T first_lnum = MAXLNUM;
719 linenr_T last_lnum = 0;
720
721 checkupdate(curwin);
722
723 while (lnum <= end)
724 {
725 /* Find the deepest fold for "start". */
726 gap = &curwin->w_folds;
727 found_ga = NULL;
728 lnum_off = 0;
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000729 use_level = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 for (;;)
731 {
732 if (!foldFind(gap, lnum - lnum_off, &fp))
733 break;
734 /* lnum is inside this fold, remember info */
735 found_ga = gap;
736 found_fp = fp;
737 found_off = lnum_off;
738
739 /* if "lnum" is folded, don't check nesting */
740 if (check_closed(curwin, fp, &use_level, level,
741 &maybe_small, lnum_off))
742 break;
743
744 /* check nested folds */
745 gap = &fp->fd_nested;
746 lnum_off += fp->fd_top;
747 ++level;
748 }
749 if (found_ga == NULL)
750 {
751 ++lnum;
752 }
753 else
754 {
755 lnum = found_fp->fd_top + found_fp->fd_len + found_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756
757 if (foldmethodIsManual(curwin))
758 deleteFoldEntry(found_ga,
759 (int)(found_fp - (fold_T *)found_ga->ga_data), recursive);
760 else
761 {
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000762 if (first_lnum > found_fp->fd_top + found_off)
763 first_lnum = found_fp->fd_top + found_off;
764 if (last_lnum < lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765 last_lnum = lnum;
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000766 if (!did_one)
767 parseMarker(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768 deleteFoldMarkers(found_fp, recursive, found_off);
769 }
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000770 did_one = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771
772 /* redraw window */
773 changed_window_setting();
774 }
775 }
776 if (!did_one)
777 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100778 emsg(_(e_nofold));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 /* Force a redraw to remove the Visual highlighting. */
780 if (had_visual)
781 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 }
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000783 else
784 /* Deleting markers may make cursor column invalid. */
785 check_cursor_col();
786
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787 if (last_lnum > 0)
788 changed_lines(first_lnum, (colnr_T)0, last_lnum, 0L);
789}
790
791/* clearFolding() {{{2 */
792/*
793 * Remove all folding for window "win".
794 */
795 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100796clearFolding(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797{
798 deleteFoldRecurse(&win->w_folds);
799 win->w_foldinvalid = FALSE;
800}
801
802/* foldUpdate() {{{2 */
803/*
804 * Update folds for changes in the buffer of a window.
805 * Note that inserted/deleted lines must have already been taken care of by
806 * calling foldMarkAdjust().
807 * The changes in lines from top to bot (inclusive).
808 */
809 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100810foldUpdate(win_T *wp, linenr_T top, linenr_T bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811{
812 fold_T *fp;
813
Bram Moolenaar429fcfb2016-04-14 16:22:04 +0200814 if (disable_fold_update > 0)
815 return;
Bram Moolenaar4f57eef2019-08-24 20:54:19 +0200816#ifdef FEAT_DIFF
817 if (need_diff_redraw)
818 // will update later
819 return;
820#endif
Bram Moolenaar429fcfb2016-04-14 16:22:04 +0200821
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 /* Mark all folds from top to bot as maybe-small. */
Bram Moolenaard5f69332015-04-15 12:43:50 +0200823 (void)foldFind(&wp->w_folds, top, &fp);
824 while (fp < (fold_T *)wp->w_folds.ga_data + wp->w_folds.ga_len
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 && fp->fd_top < bot)
826 {
827 fp->fd_small = MAYBE;
828 ++fp;
829 }
830
831 if (foldmethodIsIndent(wp)
832 || foldmethodIsExpr(wp)
833 || foldmethodIsMarker(wp)
834#ifdef FEAT_DIFF
835 || foldmethodIsDiff(wp)
836#endif
837 || foldmethodIsSyntax(wp))
Bram Moolenaarfa6d5af2007-10-14 13:33:20 +0000838 {
839 int save_got_int = got_int;
840
841 /* reset got_int here, otherwise it won't work */
842 got_int = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843 foldUpdateIEMS(wp, top, bot);
Bram Moolenaarfa6d5af2007-10-14 13:33:20 +0000844 got_int |= save_got_int;
845 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846}
847
848/* foldUpdateAll() {{{2 */
849/*
850 * Update all lines in a window for folding.
851 * Used when a fold setting changes or after reloading the buffer.
852 * The actual updating is postponed until fold info is used, to avoid doing
853 * every time a setting is changed or a syntax item is added.
854 */
855 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100856foldUpdateAll(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857{
858 win->w_foldinvalid = TRUE;
859 redraw_win_later(win, NOT_VALID);
860}
861
862/* foldMoveTo() {{{2 */
863/*
864 * If "updown" is FALSE: Move to the start or end of the fold.
865 * If "updown" is TRUE: move to fold at the same level.
866 * If not moved return FAIL.
867 */
868 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100869foldMoveTo(
870 int updown,
871 int dir, /* FORWARD or BACKWARD */
872 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873{
874 long n;
875 int retval = FAIL;
876 linenr_T lnum_off;
877 linenr_T lnum_found;
878 linenr_T lnum;
879 int use_level;
880 int maybe_small;
881 garray_T *gap;
882 fold_T *fp;
883 int level;
884 int last;
885
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000886 checkupdate(curwin);
887
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888 /* Repeat "count" times. */
889 for (n = 0; n < count; ++n)
890 {
891 /* Find nested folds. Stop when a fold is closed. The deepest fold
892 * that moves the cursor is used. */
893 lnum_off = 0;
894 gap = &curwin->w_folds;
895 use_level = FALSE;
896 maybe_small = FALSE;
897 lnum_found = curwin->w_cursor.lnum;
898 level = 0;
899 last = FALSE;
900 for (;;)
901 {
902 if (!foldFind(gap, curwin->w_cursor.lnum - lnum_off, &fp))
903 {
904 if (!updown)
905 break;
906
907 /* When moving up, consider a fold above the cursor; when
908 * moving down consider a fold below the cursor. */
909 if (dir == FORWARD)
910 {
911 if (fp - (fold_T *)gap->ga_data >= gap->ga_len)
912 break;
913 --fp;
914 }
915 else
916 {
917 if (fp == (fold_T *)gap->ga_data)
918 break;
919 }
920 /* don't look for contained folds, they will always move
921 * the cursor too far. */
922 last = TRUE;
923 }
924
925 if (!last)
926 {
927 /* Check if this fold is closed. */
928 if (check_closed(curwin, fp, &use_level, level,
929 &maybe_small, lnum_off))
930 last = TRUE;
931
932 /* "[z" and "]z" stop at closed fold */
933 if (last && !updown)
934 break;
935 }
936
937 if (updown)
938 {
939 if (dir == FORWARD)
940 {
941 /* to start of next fold if there is one */
942 if (fp + 1 - (fold_T *)gap->ga_data < gap->ga_len)
943 {
944 lnum = fp[1].fd_top + lnum_off;
945 if (lnum > curwin->w_cursor.lnum)
946 lnum_found = lnum;
947 }
948 }
949 else
950 {
951 /* to end of previous fold if there is one */
952 if (fp > (fold_T *)gap->ga_data)
953 {
954 lnum = fp[-1].fd_top + lnum_off + fp[-1].fd_len - 1;
955 if (lnum < curwin->w_cursor.lnum)
956 lnum_found = lnum;
957 }
958 }
959 }
960 else
961 {
962 /* Open fold found, set cursor to its start/end and then check
963 * nested folds. */
964 if (dir == FORWARD)
965 {
966 lnum = fp->fd_top + lnum_off + fp->fd_len - 1;
967 if (lnum > curwin->w_cursor.lnum)
968 lnum_found = lnum;
969 }
970 else
971 {
972 lnum = fp->fd_top + lnum_off;
973 if (lnum < curwin->w_cursor.lnum)
974 lnum_found = lnum;
975 }
976 }
977
978 if (last)
979 break;
980
981 /* Check nested folds (if any). */
982 gap = &fp->fd_nested;
983 lnum_off += fp->fd_top;
984 ++level;
985 }
986 if (lnum_found != curwin->w_cursor.lnum)
987 {
988 if (retval == FAIL)
989 setpcmark();
990 curwin->w_cursor.lnum = lnum_found;
991 curwin->w_cursor.col = 0;
992 retval = OK;
993 }
994 else
995 break;
996 }
997
998 return retval;
999}
1000
1001/* foldInitWin() {{{2 */
1002/*
1003 * Init the fold info in a new window.
1004 */
1005 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001006foldInitWin(win_T *new_win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007{
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001008 ga_init2(&new_win->w_folds, (int)sizeof(fold_T), 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009}
1010
1011/* find_wl_entry() {{{2 */
1012/*
1013 * Find an entry in the win->w_lines[] array for buffer line "lnum".
1014 * Only valid entries are considered (for entries where wl_valid is FALSE the
1015 * line number can be wrong).
1016 * Returns index of entry or -1 if not found.
1017 */
1018 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001019find_wl_entry(win_T *win, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020{
1021 int i;
1022
Bram Moolenaar08bb82e2010-03-17 16:45:12 +01001023 for (i = 0; i < win->w_lines_valid; ++i)
1024 if (win->w_lines[i].wl_valid)
1025 {
1026 if (lnum < win->w_lines[i].wl_lnum)
1027 return -1;
1028 if (lnum <= win->w_lines[i].wl_lastlnum)
1029 return i;
1030 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 return -1;
1032}
1033
1034/* foldAdjustVisual() {{{2 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035/*
1036 * Adjust the Visual area to include any fold at the start or end completely.
1037 */
1038 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001039foldAdjustVisual(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040{
1041 pos_T *start, *end;
1042 char_u *ptr;
1043
1044 if (!VIsual_active || !hasAnyFolding(curwin))
1045 return;
1046
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001047 if (LTOREQ_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 {
1049 start = &VIsual;
1050 end = &curwin->w_cursor;
1051 }
1052 else
1053 {
1054 start = &curwin->w_cursor;
1055 end = &VIsual;
1056 }
1057 if (hasFolding(start->lnum, &start->lnum, NULL))
1058 start->col = 0;
1059 if (hasFolding(end->lnum, NULL, &end->lnum))
1060 {
1061 ptr = ml_get(end->lnum);
1062 end->col = (colnr_T)STRLEN(ptr);
1063 if (end->col > 0 && *p_sel == 'o')
1064 --end->col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 /* prevent cursor from moving on the trail byte */
1066 if (has_mbyte)
1067 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 }
1069}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070
1071/* cursor_foldstart() {{{2 */
1072/*
1073 * Move the cursor to the first line of a closed fold.
1074 */
1075 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001076foldAdjustCursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077{
1078 (void)hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL);
1079}
1080
1081/* Internal functions for "fold_T" {{{1 */
1082/* cloneFoldGrowArray() {{{2 */
1083/*
1084 * Will "clone" (i.e deep copy) a garray_T of folds.
1085 *
1086 * Return FAIL if the operation cannot be completed, otherwise OK.
1087 */
1088 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001089cloneFoldGrowArray(garray_T *from, garray_T *to)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090{
1091 int i;
1092 fold_T *from_p;
1093 fold_T *to_p;
1094
1095 ga_init2(to, from->ga_itemsize, from->ga_growsize);
1096 if (from->ga_len == 0 || ga_grow(to, from->ga_len) == FAIL)
1097 return;
1098
1099 from_p = (fold_T *)from->ga_data;
1100 to_p = (fold_T *)to->ga_data;
1101
1102 for (i = 0; i < from->ga_len; i++)
1103 {
1104 to_p->fd_top = from_p->fd_top;
1105 to_p->fd_len = from_p->fd_len;
1106 to_p->fd_flags = from_p->fd_flags;
1107 to_p->fd_small = from_p->fd_small;
1108 cloneFoldGrowArray(&from_p->fd_nested, &to_p->fd_nested);
1109 ++to->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110 ++from_p;
1111 ++to_p;
1112 }
1113}
1114
1115/* foldFind() {{{2 */
1116/*
1117 * Search for line "lnum" in folds of growarray "gap".
1118 * Set *fpp to the fold struct for the fold that contains "lnum" or
1119 * the first fold below it (careful: it can be beyond the end of the array!).
1120 * Returns FALSE when there is no fold that contains "lnum".
1121 */
1122 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001123foldFind(garray_T *gap, linenr_T lnum, fold_T **fpp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124{
1125 linenr_T low, high;
1126 fold_T *fp;
1127 int i;
1128
1129 /*
1130 * Perform a binary search.
1131 * "low" is lowest index of possible match.
1132 * "high" is highest index of possible match.
1133 */
1134 fp = (fold_T *)gap->ga_data;
1135 low = 0;
1136 high = gap->ga_len - 1;
1137 while (low <= high)
1138 {
1139 i = (low + high) / 2;
1140 if (fp[i].fd_top > lnum)
1141 /* fold below lnum, adjust high */
1142 high = i - 1;
1143 else if (fp[i].fd_top + fp[i].fd_len <= lnum)
1144 /* fold above lnum, adjust low */
1145 low = i + 1;
1146 else
1147 {
1148 /* lnum is inside this fold */
1149 *fpp = fp + i;
1150 return TRUE;
1151 }
1152 }
1153 *fpp = fp + low;
1154 return FALSE;
1155}
1156
1157/* foldLevelWin() {{{2 */
1158/*
1159 * Return fold level at line number "lnum" in window "wp".
1160 */
1161 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001162foldLevelWin(win_T *wp, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163{
1164 fold_T *fp;
1165 linenr_T lnum_rel = lnum;
1166 int level = 0;
1167 garray_T *gap;
1168
1169 /* Recursively search for a fold that contains "lnum". */
1170 gap = &wp->w_folds;
1171 for (;;)
1172 {
1173 if (!foldFind(gap, lnum_rel, &fp))
1174 break;
1175 /* Check nested folds. Line number is relative to containing fold. */
1176 gap = &fp->fd_nested;
1177 lnum_rel -= fp->fd_top;
1178 ++level;
1179 }
1180
1181 return level;
1182}
1183
1184/* checkupdate() {{{2 */
1185/*
1186 * Check if the folds in window "wp" are invalid and update them if needed.
1187 */
1188 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001189checkupdate(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190{
1191 if (wp->w_foldinvalid)
1192 {
1193 foldUpdate(wp, (linenr_T)1, (linenr_T)MAXLNUM); /* will update all */
1194 wp->w_foldinvalid = FALSE;
1195 }
1196}
1197
1198/* setFoldRepeat() {{{2 */
1199/*
1200 * Open or close fold for current window at line "lnum".
1201 * Repeat "count" times.
1202 */
1203 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001204setFoldRepeat(linenr_T lnum, long count, int do_open)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205{
1206 int done;
1207 long n;
1208
1209 for (n = 0; n < count; ++n)
1210 {
1211 done = DONE_NOTHING;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00001212 (void)setManualFold(lnum, do_open, FALSE, &done);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 if (!(done & DONE_ACTION))
1214 {
1215 /* Only give an error message when no fold could be opened. */
1216 if (n == 0 && !(done & DONE_FOLD))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001217 emsg(_(e_nofold));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218 break;
1219 }
1220 }
1221}
1222
1223/* setManualFold() {{{2 */
1224/*
1225 * Open or close the fold in the current window which contains "lnum".
1226 * Also does this for other windows in diff mode when needed.
1227 */
1228 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001229setManualFold(
1230 linenr_T lnum,
1231 int opening, /* TRUE when opening, FALSE when closing */
1232 int recurse, /* TRUE when closing/opening recursive */
1233 int *donep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234{
1235#ifdef FEAT_DIFF
1236 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
1237 {
1238 win_T *wp;
1239 linenr_T dlnum;
1240
1241 /*
1242 * Do the same operation in other windows in diff mode. Calculate the
1243 * line number from the diffs.
1244 */
1245 FOR_ALL_WINDOWS(wp)
1246 {
1247 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
1248 {
1249 dlnum = diff_lnum_win(curwin->w_cursor.lnum, wp);
1250 if (dlnum != 0)
1251 (void)setManualFoldWin(wp, dlnum, opening, recurse, NULL);
1252 }
1253 }
1254 }
1255#endif
1256
1257 return setManualFoldWin(curwin, lnum, opening, recurse, donep);
1258}
1259
1260/* setManualFoldWin() {{{2 */
1261/*
1262 * Open or close the fold in window "wp" which contains "lnum".
1263 * "donep", when not NULL, points to flag that is set to DONE_FOLD when some
1264 * fold was found and to DONE_ACTION when some fold was opened or closed.
1265 * When "donep" is NULL give an error message when no fold was found for
1266 * "lnum", but only if "wp" is "curwin".
1267 * Return the line number of the next line that could be closed.
1268 * It's only valid when "opening" is TRUE!
1269 */
1270 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001271setManualFoldWin(
1272 win_T *wp,
1273 linenr_T lnum,
1274 int opening, /* TRUE when opening, FALSE when closing */
1275 int recurse, /* TRUE when closing/opening recursive */
1276 int *donep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277{
1278 fold_T *fp;
1279 fold_T *fp2;
1280 fold_T *found = NULL;
1281 int j;
1282 int level = 0;
1283 int use_level = FALSE;
1284 int found_fold = FALSE;
1285 garray_T *gap;
1286 linenr_T next = MAXLNUM;
1287 linenr_T off = 0;
1288 int done = 0;
1289
1290 checkupdate(wp);
1291
1292 /*
1293 * Find the fold, open or close it.
1294 */
1295 gap = &wp->w_folds;
1296 for (;;)
1297 {
1298 if (!foldFind(gap, lnum, &fp))
1299 {
1300 /* If there is a following fold, continue there next time. */
1301 if (fp < (fold_T *)gap->ga_data + gap->ga_len)
1302 next = fp->fd_top + off;
1303 break;
1304 }
1305
1306 /* lnum is inside this fold */
1307 found_fold = TRUE;
1308
1309 /* If there is a following fold, continue there next time. */
1310 if (fp + 1 < (fold_T *)gap->ga_data + gap->ga_len)
1311 next = fp[1].fd_top + off;
1312
1313 /* Change from level-dependent folding to manual. */
1314 if (use_level || fp->fd_flags == FD_LEVEL)
1315 {
1316 use_level = TRUE;
1317 if (level >= wp->w_p_fdl)
1318 fp->fd_flags = FD_CLOSED;
1319 else
1320 fp->fd_flags = FD_OPEN;
1321 fp2 = (fold_T *)fp->fd_nested.ga_data;
1322 for (j = 0; j < fp->fd_nested.ga_len; ++j)
1323 fp2[j].fd_flags = FD_LEVEL;
1324 }
1325
1326 /* Simple case: Close recursively means closing the fold. */
1327 if (!opening && recurse)
1328 {
1329 if (fp->fd_flags != FD_CLOSED)
1330 {
1331 done |= DONE_ACTION;
1332 fp->fd_flags = FD_CLOSED;
1333 }
1334 }
1335 else if (fp->fd_flags == FD_CLOSED)
1336 {
1337 /* When opening, open topmost closed fold. */
1338 if (opening)
1339 {
1340 fp->fd_flags = FD_OPEN;
1341 done |= DONE_ACTION;
1342 if (recurse)
1343 foldOpenNested(fp);
1344 }
1345 break;
1346 }
1347
1348 /* fold is open, check nested folds */
1349 found = fp;
1350 gap = &fp->fd_nested;
1351 lnum -= fp->fd_top;
1352 off += fp->fd_top;
1353 ++level;
1354 }
1355 if (found_fold)
1356 {
1357 /* When closing and not recurse, close deepest open fold. */
1358 if (!opening && found != NULL)
1359 {
1360 found->fd_flags = FD_CLOSED;
1361 done |= DONE_ACTION;
1362 }
1363 wp->w_fold_manual = TRUE;
1364 if (done & DONE_ACTION)
1365 changed_window_setting_win(wp);
1366 done |= DONE_FOLD;
1367 }
1368 else if (donep == NULL && wp == curwin)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001369 emsg(_(e_nofold));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370
1371 if (donep != NULL)
1372 *donep |= done;
1373
1374 return next;
1375}
1376
1377/* foldOpenNested() {{{2 */
1378/*
1379 * Open all nested folds in fold "fpr" recursively.
1380 */
1381 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001382foldOpenNested(fold_T *fpr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383{
1384 int i;
1385 fold_T *fp;
1386
1387 fp = (fold_T *)fpr->fd_nested.ga_data;
1388 for (i = 0; i < fpr->fd_nested.ga_len; ++i)
1389 {
1390 foldOpenNested(&fp[i]);
1391 fp[i].fd_flags = FD_OPEN;
1392 }
1393}
1394
1395/* deleteFoldEntry() {{{2 */
1396/*
1397 * Delete fold "idx" from growarray "gap".
1398 * When "recursive" is TRUE also delete all the folds contained in it.
1399 * When "recursive" is FALSE contained folds are moved one level up.
1400 */
1401 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001402deleteFoldEntry(garray_T *gap, int idx, int recursive)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403{
1404 fold_T *fp;
1405 int i;
1406 long moved;
1407 fold_T *nfp;
1408
1409 fp = (fold_T *)gap->ga_data + idx;
1410 if (recursive || fp->fd_nested.ga_len == 0)
1411 {
1412 /* recursively delete the contained folds */
1413 deleteFoldRecurse(&fp->fd_nested);
1414 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415 if (idx < gap->ga_len)
1416 mch_memmove(fp, fp + 1, sizeof(fold_T) * (gap->ga_len - idx));
1417 }
1418 else
1419 {
Bram Moolenaarc9927c12011-08-26 16:13:00 +02001420 /* Move nested folds one level up, to overwrite the fold that is
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421 * deleted. */
1422 moved = fp->fd_nested.ga_len;
1423 if (ga_grow(gap, (int)(moved - 1)) == OK)
1424 {
Bram Moolenaarc9927c12011-08-26 16:13:00 +02001425 /* Get "fp" again, the array may have been reallocated. */
1426 fp = (fold_T *)gap->ga_data + idx;
1427
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428 /* adjust fd_top and fd_flags for the moved folds */
1429 nfp = (fold_T *)fp->fd_nested.ga_data;
1430 for (i = 0; i < moved; ++i)
1431 {
1432 nfp[i].fd_top += fp->fd_top;
1433 if (fp->fd_flags == FD_LEVEL)
1434 nfp[i].fd_flags = FD_LEVEL;
1435 if (fp->fd_small == MAYBE)
1436 nfp[i].fd_small = MAYBE;
1437 }
1438
1439 /* move the existing folds down to make room */
Bram Moolenaarc9927c12011-08-26 16:13:00 +02001440 if (idx + 1 < gap->ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 mch_memmove(fp + moved, fp + 1,
Bram Moolenaarc9927c12011-08-26 16:13:00 +02001442 sizeof(fold_T) * (gap->ga_len - (idx + 1)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443 /* move the contained folds one level up */
1444 mch_memmove(fp, nfp, (size_t)(sizeof(fold_T) * moved));
1445 vim_free(nfp);
1446 gap->ga_len += moved - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447 }
1448 }
1449}
1450
1451/* deleteFoldRecurse() {{{2 */
1452/*
1453 * Delete nested folds in a fold.
1454 */
1455 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001456deleteFoldRecurse(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457{
1458 int i;
1459
1460 for (i = 0; i < gap->ga_len; ++i)
1461 deleteFoldRecurse(&(((fold_T *)(gap->ga_data))[i].fd_nested));
1462 ga_clear(gap);
1463}
1464
1465/* foldMarkAdjust() {{{2 */
1466/*
1467 * Update line numbers of folds for inserted/deleted lines.
1468 */
1469 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001470foldMarkAdjust(
1471 win_T *wp,
1472 linenr_T line1,
1473 linenr_T line2,
1474 long amount,
1475 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476{
1477 /* If deleting marks from line1 to line2, but not deleting all those
1478 * lines, set line2 so that only deleted lines have their folds removed. */
1479 if (amount == MAXLNUM && line2 >= line1 && line2 - line1 >= -amount_after)
1480 line2 = line1 - amount_after - 1;
1481 /* If appending a line in Insert mode, it should be included in the fold
1482 * just above the line. */
1483 if ((State & INSERT) && amount == (linenr_T)1 && line2 == MAXLNUM)
1484 --line1;
1485 foldMarkAdjustRecurse(&wp->w_folds, line1, line2, amount, amount_after);
1486}
1487
1488/* foldMarkAdjustRecurse() {{{2 */
1489 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001490foldMarkAdjustRecurse(
1491 garray_T *gap,
1492 linenr_T line1,
1493 linenr_T line2,
1494 long amount,
1495 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496{
1497 fold_T *fp;
1498 int i;
1499 linenr_T last;
1500 linenr_T top;
1501
1502 /* In Insert mode an inserted line at the top of a fold is considered part
1503 * of the fold, otherwise it isn't. */
1504 if ((State & INSERT) && amount == (linenr_T)1 && line2 == MAXLNUM)
1505 top = line1 + 1;
1506 else
1507 top = line1;
1508
1509 /* Find the fold containing or just below "line1". */
1510 (void)foldFind(gap, line1, &fp);
1511
1512 /*
1513 * Adjust all folds below "line1" that are affected.
1514 */
1515 for (i = (int)(fp - (fold_T *)gap->ga_data); i < gap->ga_len; ++i, ++fp)
1516 {
1517 /*
1518 * Check for these situations:
1519 * 1 2 3
1520 * 1 2 3
1521 * line1 2 3 4 5
1522 * 2 3 4 5
1523 * 2 3 4 5
1524 * line2 2 3 4 5
1525 * 3 5 6
1526 * 3 5 6
1527 */
1528
1529 last = fp->fd_top + fp->fd_len - 1; /* last line of fold */
1530
1531 /* 1. fold completely above line1: nothing to do */
1532 if (last < line1)
1533 continue;
1534
1535 /* 6. fold below line2: only adjust for amount_after */
1536 if (fp->fd_top > line2)
1537 {
1538 if (amount_after == 0)
1539 break;
1540 fp->fd_top += amount_after;
1541 }
1542 else
1543 {
1544 if (fp->fd_top >= top && last <= line2)
1545 {
1546 /* 4. fold completely contained in range */
1547 if (amount == MAXLNUM)
1548 {
1549 /* Deleting lines: delete the fold completely */
1550 deleteFoldEntry(gap, i, TRUE);
1551 --i; /* adjust index for deletion */
1552 --fp;
1553 }
1554 else
1555 fp->fd_top += amount;
1556 }
1557 else
1558 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 if (fp->fd_top < top)
1560 {
Bram Moolenaar194b94c2009-09-18 13:17:09 +00001561 /* 2 or 3: need to correct nested folds too */
1562 foldMarkAdjustRecurse(&fp->fd_nested, line1 - fp->fd_top,
1563 line2 - fp->fd_top, amount, amount_after);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 if (last <= line2)
1565 {
1566 /* 2. fold contains line1, line2 is below fold */
1567 if (amount == MAXLNUM)
1568 fp->fd_len = line1 - fp->fd_top;
1569 else
1570 fp->fd_len += amount;
1571 }
1572 else
1573 {
1574 /* 3. fold contains line1 and line2 */
1575 fp->fd_len += amount_after;
1576 }
1577 }
1578 else
1579 {
Bram Moolenaar194b94c2009-09-18 13:17:09 +00001580 /* 5. fold is below line1 and contains line2; need to
1581 * correct nested folds too */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 if (amount == MAXLNUM)
1583 {
Bram Moolenaar1159b162017-02-28 21:53:56 +01001584 foldMarkAdjustRecurse(&fp->fd_nested,
1585 line1 - fp->fd_top,
1586 line2 - fp->fd_top,
1587 amount,
1588 amount_after + (fp->fd_top - top));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 fp->fd_len -= line2 - fp->fd_top + 1;
1590 fp->fd_top = line1;
1591 }
1592 else
1593 {
Bram Moolenaar1159b162017-02-28 21:53:56 +01001594 foldMarkAdjustRecurse(&fp->fd_nested,
1595 line1 - fp->fd_top,
1596 line2 - fp->fd_top,
1597 amount,
1598 amount_after - amount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 fp->fd_len += amount_after - amount;
1600 fp->fd_top += amount;
1601 }
1602 }
1603 }
1604 }
1605 }
1606}
1607
1608/* getDeepestNesting() {{{2 */
1609/*
1610 * Get the lowest 'foldlevel' value that makes the deepest nested fold in the
1611 * current window open.
1612 */
1613 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001614getDeepestNesting(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615{
1616 checkupdate(curwin);
1617 return getDeepestNestingRecurse(&curwin->w_folds);
1618}
1619
1620 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001621getDeepestNestingRecurse(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622{
1623 int i;
1624 int level;
1625 int maxlevel = 0;
1626 fold_T *fp;
1627
1628 fp = (fold_T *)gap->ga_data;
1629 for (i = 0; i < gap->ga_len; ++i)
1630 {
1631 level = getDeepestNestingRecurse(&fp[i].fd_nested) + 1;
1632 if (level > maxlevel)
1633 maxlevel = level;
1634 }
1635
1636 return maxlevel;
1637}
1638
1639/* check_closed() {{{2 */
1640/*
1641 * Check if a fold is closed and update the info needed to check nested folds.
1642 */
1643 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001644check_closed(
1645 win_T *win,
1646 fold_T *fp,
1647 int *use_levelp, /* TRUE: outer fold had FD_LEVEL */
1648 int level, /* folding depth */
1649 int *maybe_smallp, /* TRUE: outer this had fd_small == MAYBE */
1650 linenr_T lnum_off) /* line number offset for fp->fd_top */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651{
1652 int closed = FALSE;
1653
1654 /* Check if this fold is closed. If the flag is FD_LEVEL this
1655 * fold and all folds it contains depend on 'foldlevel'. */
1656 if (*use_levelp || fp->fd_flags == FD_LEVEL)
1657 {
1658 *use_levelp = TRUE;
1659 if (level >= win->w_p_fdl)
1660 closed = TRUE;
1661 }
1662 else if (fp->fd_flags == FD_CLOSED)
1663 closed = TRUE;
1664
1665 /* Small fold isn't closed anyway. */
1666 if (fp->fd_small == MAYBE)
1667 *maybe_smallp = TRUE;
1668 if (closed)
1669 {
1670 if (*maybe_smallp)
1671 fp->fd_small = MAYBE;
1672 checkSmall(win, fp, lnum_off);
1673 if (fp->fd_small == TRUE)
1674 closed = FALSE;
1675 }
1676 return closed;
1677}
1678
1679/* checkSmall() {{{2 */
1680/*
1681 * Update fd_small field of fold "fp".
1682 */
1683 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001684checkSmall(
1685 win_T *wp,
1686 fold_T *fp,
1687 linenr_T lnum_off) /* offset for fp->fd_top */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688{
1689 int count;
1690 int n;
1691
1692 if (fp->fd_small == MAYBE)
1693 {
1694 /* Mark any nested folds to maybe-small */
1695 setSmallMaybe(&fp->fd_nested);
1696
1697 if (fp->fd_len > curwin->w_p_fml)
1698 fp->fd_small = FALSE;
1699 else
1700 {
1701 count = 0;
1702 for (n = 0; n < fp->fd_len; ++n)
1703 {
1704 count += plines_win_nofold(wp, fp->fd_top + lnum_off + n);
1705 if (count > curwin->w_p_fml)
1706 {
1707 fp->fd_small = FALSE;
1708 return;
1709 }
1710 }
1711 fp->fd_small = TRUE;
1712 }
1713 }
1714}
1715
1716/* setSmallMaybe() {{{2 */
1717/*
1718 * Set small flags in "gap" to MAYBE.
1719 */
1720 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001721setSmallMaybe(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722{
1723 int i;
1724 fold_T *fp;
1725
1726 fp = (fold_T *)gap->ga_data;
1727 for (i = 0; i < gap->ga_len; ++i)
1728 fp[i].fd_small = MAYBE;
1729}
1730
1731/* foldCreateMarkers() {{{2 */
1732/*
1733 * Create a fold from line "start" to line "end" (inclusive) in the current
1734 * window by adding markers.
1735 */
1736 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001737foldCreateMarkers(linenr_T start, linenr_T end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738{
1739 if (!curbuf->b_p_ma)
1740 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001741 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 return;
1743 }
1744 parseMarker(curwin);
1745
1746 foldAddMarker(start, curwin->w_p_fmr, foldstartmarkerlen);
1747 foldAddMarker(end, foldendmarker, foldendmarkerlen);
1748
1749 /* Update both changes here, to avoid all folds after the start are
1750 * changed when the start marker is inserted and the end isn't. */
1751 changed_lines(start, (colnr_T)0, end, 0L);
1752}
1753
1754/* foldAddMarker() {{{2 */
1755/*
1756 * Add "marker[markerlen]" in 'commentstring' to line "lnum".
1757 */
1758 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001759foldAddMarker(linenr_T lnum, char_u *marker, int markerlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760{
1761 char_u *cms = curbuf->b_p_cms;
1762 char_u *line;
1763 int line_len;
1764 char_u *newline;
1765 char_u *p = (char_u *)strstr((char *)curbuf->b_p_cms, "%s");
Bram Moolenaar025a6b72017-03-12 20:37:21 +01001766 int line_is_comment = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767
1768 /* Allocate a new line: old-line + 'cms'-start + marker + 'cms'-end */
1769 line = ml_get(lnum);
1770 line_len = (int)STRLEN(line);
1771
1772 if (u_save(lnum - 1, lnum + 1) == OK)
1773 {
Bram Moolenaar025a6b72017-03-12 20:37:21 +01001774#if defined(FEAT_COMMENTS)
1775 /* Check if the line ends with an unclosed comment */
1776 (void)skip_comment(line, FALSE, FALSE, &line_is_comment);
1777#endif
Bram Moolenaar964b3742019-05-24 18:54:09 +02001778 newline = alloc(line_len + markerlen + STRLEN(cms) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 if (newline == NULL)
1780 return;
1781 STRCPY(newline, line);
Bram Moolenaar025a6b72017-03-12 20:37:21 +01001782 /* Append the marker to the end of the line */
1783 if (p == NULL || line_is_comment)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00001784 vim_strncpy(newline + line_len, marker, markerlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 else
1786 {
1787 STRCPY(newline + line_len, cms);
1788 STRNCPY(newline + line_len + (p - cms), marker, markerlen);
1789 STRCPY(newline + line_len + (p - cms) + markerlen, p + 2);
1790 }
1791
1792 ml_replace(lnum, newline, FALSE);
1793 }
1794}
1795
1796/* deleteFoldMarkers() {{{2 */
1797/*
1798 * Delete the markers for a fold, causing it to be deleted.
1799 */
1800 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001801deleteFoldMarkers(
1802 fold_T *fp,
1803 int recursive,
1804 linenr_T lnum_off) /* offset for fp->fd_top */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805{
1806 int i;
1807
1808 if (recursive)
1809 for (i = 0; i < fp->fd_nested.ga_len; ++i)
1810 deleteFoldMarkers((fold_T *)fp->fd_nested.ga_data + i, TRUE,
1811 lnum_off + fp->fd_top);
1812 foldDelMarker(fp->fd_top + lnum_off, curwin->w_p_fmr, foldstartmarkerlen);
1813 foldDelMarker(fp->fd_top + lnum_off + fp->fd_len - 1,
1814 foldendmarker, foldendmarkerlen);
1815}
1816
1817/* foldDelMarker() {{{2 */
1818/*
1819 * Delete marker "marker[markerlen]" at the end of line "lnum".
1820 * Delete 'commentstring' if it matches.
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02001821 * If the marker is not found, there is no error message. Could be a missing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 * close-marker.
1823 */
1824 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001825foldDelMarker(linenr_T lnum, char_u *marker, int markerlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826{
1827 char_u *line;
1828 char_u *newline;
1829 char_u *p;
1830 int len;
1831 char_u *cms = curbuf->b_p_cms;
1832 char_u *cms2;
1833
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02001834 // end marker may be missing and fold extends below the last line
1835 if (lnum > curbuf->b_ml.ml_line_count)
1836 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837 line = ml_get(lnum);
1838 for (p = line; *p != NUL; ++p)
1839 if (STRNCMP(p, marker, markerlen) == 0)
1840 {
1841 /* Found the marker, include a digit if it's there. */
1842 len = markerlen;
1843 if (VIM_ISDIGIT(p[len]))
1844 ++len;
1845 if (*cms != NUL)
1846 {
1847 /* Also delete 'commentstring' if it matches. */
1848 cms2 = (char_u *)strstr((char *)cms, "%s");
1849 if (p - line >= cms2 - cms
1850 && STRNCMP(p - (cms2 - cms), cms, cms2 - cms) == 0
1851 && STRNCMP(p + len, cms2 + 2, STRLEN(cms2 + 2)) == 0)
1852 {
1853 p -= cms2 - cms;
1854 len += (int)STRLEN(cms) - 2;
1855 }
1856 }
1857 if (u_save(lnum - 1, lnum + 1) == OK)
1858 {
1859 /* Make new line: text-before-marker + text-after-marker */
Bram Moolenaar964b3742019-05-24 18:54:09 +02001860 newline = alloc(STRLEN(line) - len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 if (newline != NULL)
1862 {
1863 STRNCPY(newline, line, p - line);
1864 STRCPY(newline + (p - line), p + len);
1865 ml_replace(lnum, newline, FALSE);
1866 }
1867 }
1868 break;
1869 }
1870}
1871
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001872/* get_foldtext() {{{2 */
1873/*
1874 * Return the text for a closed fold at line "lnum", with last line "lnume".
Bram Moolenaaree695f72016-08-03 22:08:45 +02001875 * When 'foldtext' isn't set puts the result in "buf[FOLD_TEXT_LEN]".
1876 * Otherwise the result is in allocated memory.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001877 */
1878 char_u *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001879get_foldtext(
1880 win_T *wp,
1881 linenr_T lnum,
1882 linenr_T lnume,
1883 foldinfo_T *foldinfo,
1884 char_u *buf)
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001885{
1886 char_u *text = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001887#ifdef FEAT_EVAL
Bram Moolenaardab38d52013-06-15 17:06:36 +02001888 /* an error occurred when evaluating 'fdt' setting */
1889 static int got_fdt_error = FALSE;
1890 int save_did_emsg = did_emsg;
1891 static win_T *last_wp = NULL;
1892 static linenr_T last_lnum = 0;
1893
1894 if (last_wp != wp || last_wp == NULL
1895 || last_lnum > lnum || last_lnum == 0)
1896 /* window changed, try evaluating foldtext setting once again */
1897 got_fdt_error = FALSE;
1898
1899 if (!got_fdt_error)
1900 /* a previous error should not abort evaluating 'foldexpr' */
1901 did_emsg = FALSE;
1902
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001903 if (*wp->w_p_fdt != NUL)
1904 {
Bram Moolenaar5b88ba42009-11-03 15:30:12 +00001905 char_u dashes[MAX_LEVEL + 2];
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001906 win_T *save_curwin;
1907 int level;
1908 char_u *p;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001909
1910 /* Set "v:foldstart" and "v:foldend". */
1911 set_vim_var_nr(VV_FOLDSTART, lnum);
1912 set_vim_var_nr(VV_FOLDEND, lnume);
1913
1914 /* Set "v:folddashes" to a string of "level" dashes. */
1915 /* Set "v:foldlevel" to "level". */
1916 level = foldinfo->fi_level;
Bram Moolenaar5b88ba42009-11-03 15:30:12 +00001917 if (level > (int)sizeof(dashes) - 1)
1918 level = (int)sizeof(dashes) - 1;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001919 vim_memset(dashes, '-', (size_t)level);
1920 dashes[level] = NUL;
1921 set_vim_var_string(VV_FOLDDASHES, dashes, -1);
1922 set_vim_var_nr(VV_FOLDLEVEL, (long)level);
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001923
Bram Moolenaardab38d52013-06-15 17:06:36 +02001924 /* skip evaluating foldtext on errors */
1925 if (!got_fdt_error)
1926 {
1927 save_curwin = curwin;
1928 curwin = wp;
1929 curbuf = wp->w_buffer;
1930
1931 ++emsg_silent; /* handle exceptions, but don't display errors */
1932 text = eval_to_string_safe(wp->w_p_fdt, NULL,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001933 was_set_insecurely((char_u *)"foldtext", OPT_LOCAL));
Bram Moolenaardab38d52013-06-15 17:06:36 +02001934 --emsg_silent;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001935
Bram Moolenaardab38d52013-06-15 17:06:36 +02001936 if (text == NULL || did_emsg)
1937 got_fdt_error = TRUE;
1938
1939 curwin = save_curwin;
1940 curbuf = curwin->w_buffer;
1941 }
1942 last_lnum = lnum;
1943 last_wp = wp;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001944 set_vim_var_string(VV_FOLDDASHES, NULL, -1);
1945
Bram Moolenaardab38d52013-06-15 17:06:36 +02001946 if (!did_emsg && save_did_emsg)
1947 did_emsg = save_did_emsg;
1948
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001949 if (text != NULL)
1950 {
1951 /* Replace unprintable characters, if there are any. But
1952 * replace a TAB with a space. */
1953 for (p = text; *p != NUL; ++p)
1954 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00001955 int len;
1956
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001957 if (has_mbyte && (len = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001958 {
1959 if (!vim_isprintc((*mb_ptr2char)(p)))
1960 break;
1961 p += len - 1;
1962 }
1963 else
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001964 if (*p == TAB)
1965 *p = ' ';
1966 else if (ptr2cells(p) > 1)
1967 break;
1968 }
1969 if (*p != NUL)
1970 {
1971 p = transstr(text);
1972 vim_free(text);
1973 text = p;
1974 }
1975 }
1976 }
1977 if (text == NULL)
1978#endif
1979 {
Bram Moolenaaree695f72016-08-03 22:08:45 +02001980 long count = (long)(lnume - lnum + 1);
1981
1982 vim_snprintf((char *)buf, FOLD_TEXT_LEN,
Bram Moolenaar1c465442017-03-12 20:10:05 +01001983 NGETTEXT("+--%3ld line folded ",
Bram Moolenaaree695f72016-08-03 22:08:45 +02001984 "+--%3ld lines folded ", count),
1985 count);
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001986 text = buf;
1987 }
1988 return text;
1989}
1990
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991/* foldtext_cleanup() {{{2 */
1992/*
1993 * Remove 'foldmarker' and 'commentstring' from "str" (in-place).
1994 */
1995 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001996foldtext_cleanup(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997{
1998 char_u *cms_start; /* first part or the whole comment */
1999 int cms_slen = 0; /* length of cms_start */
2000 char_u *cms_end; /* last part of the comment or NULL */
2001 int cms_elen = 0; /* length of cms_end */
2002 char_u *s;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002003 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 int len;
2005 int did1 = FALSE;
2006 int did2 = FALSE;
2007
2008 /* Ignore leading and trailing white space in 'commentstring'. */
2009 cms_start = skipwhite(curbuf->b_p_cms);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002010 cms_slen = (int)STRLEN(cms_start);
Bram Moolenaar1c465442017-03-12 20:10:05 +01002011 while (cms_slen > 0 && VIM_ISWHITE(cms_start[cms_slen - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012 --cms_slen;
2013
2014 /* locate "%s" in 'commentstring', use the part before and after it. */
2015 cms_end = (char_u *)strstr((char *)cms_start, "%s");
2016 if (cms_end != NULL)
2017 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002018 cms_elen = cms_slen - (int)(cms_end - cms_start);
2019 cms_slen = (int)(cms_end - cms_start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020
2021 /* exclude white space before "%s" */
Bram Moolenaar1c465442017-03-12 20:10:05 +01002022 while (cms_slen > 0 && VIM_ISWHITE(cms_start[cms_slen - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 --cms_slen;
2024
2025 /* skip "%s" and white space after it */
2026 s = skipwhite(cms_end + 2);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002027 cms_elen -= (int)(s - cms_end);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 cms_end = s;
2029 }
2030 parseMarker(curwin);
2031
2032 for (s = str; *s != NUL; )
2033 {
2034 len = 0;
2035 if (STRNCMP(s, curwin->w_p_fmr, foldstartmarkerlen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 len = foldstartmarkerlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 else if (STRNCMP(s, foldendmarker, foldendmarkerlen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 len = foldendmarkerlen;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002039 if (len > 0)
2040 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 if (VIM_ISDIGIT(s[len]))
2042 ++len;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002043
2044 /* May remove 'commentstring' start. Useful when it's a double
2045 * quote and we already removed a double quote. */
Bram Moolenaar1c465442017-03-12 20:10:05 +01002046 for (p = s; p > str && VIM_ISWHITE(p[-1]); --p)
Bram Moolenaardef9e822004-12-31 20:58:58 +00002047 ;
2048 if (p >= str + cms_slen
2049 && STRNCMP(p - cms_slen, cms_start, cms_slen) == 0)
2050 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002051 len += (int)(s - p) + cms_slen;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002052 s = p - cms_slen;
2053 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 }
2055 else if (cms_end != NULL)
2056 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00002057 if (!did1 && cms_slen > 0 && STRNCMP(s, cms_start, cms_slen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 {
2059 len = cms_slen;
2060 did1 = TRUE;
2061 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00002062 else if (!did2 && cms_elen > 0
2063 && STRNCMP(s, cms_end, cms_elen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 {
2065 len = cms_elen;
2066 did2 = TRUE;
2067 }
2068 }
2069 if (len != 0)
2070 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01002071 while (VIM_ISWHITE(s[len]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 ++len;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002073 STRMOVE(s, s + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 }
2075 else
2076 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002077 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 }
2079 }
2080}
2081
2082/* Folding by indent, expr, marker and syntax. {{{1 */
2083/* Define "fline_T", passed to get fold level for a line. {{{2 */
2084typedef struct
2085{
2086 win_T *wp; /* window */
2087 linenr_T lnum; /* current line number */
2088 linenr_T off; /* offset between lnum and real line number */
2089 linenr_T lnum_save; /* line nr used by foldUpdateIEMSRecurse() */
2090 int lvl; /* current level (-1 for undefined) */
2091 int lvl_next; /* level used for next line */
2092 int start; /* number of folds that are forced to start at
2093 this line. */
2094 int end; /* level of fold that is forced to end below
2095 this line */
2096 int had_end; /* level of fold that is forced to end above
2097 this line (copy of "end" of prev. line) */
2098} fline_T;
2099
2100/* Flag is set when redrawing is needed. */
2101static int fold_changed;
2102
2103/* Function declarations. {{{2 */
Bram Moolenaard99df422016-01-29 23:20:40 +01002104static 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 +01002105static int foldInsert(garray_T *gap, int i);
2106static void foldSplit(garray_T *gap, int i, linenr_T top, linenr_T bot);
2107static void foldRemove(garray_T *gap, linenr_T top, linenr_T bot);
2108static void foldMerge(fold_T *fp1, garray_T *gap, fold_T *fp2);
2109static void foldlevelIndent(fline_T *flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110#ifdef FEAT_DIFF
Bram Moolenaard25c16e2016-01-29 22:13:30 +01002111static void foldlevelDiff(fline_T *flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +01002113static void foldlevelExpr(fline_T *flp);
2114static void foldlevelMarker(fline_T *flp);
2115static void foldlevelSyntax(fline_T *flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116
2117/* foldUpdateIEMS() {{{2 */
2118/*
2119 * Update the folding for window "wp", at least from lines "top" to "bot".
2120 * Return TRUE if any folds did change.
2121 */
2122 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002123foldUpdateIEMS(win_T *wp, linenr_T top, linenr_T bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124{
2125 linenr_T start;
2126 linenr_T end;
2127 fline_T fline;
Bram Moolenaard99df422016-01-29 23:20:40 +01002128 void (*getlevel)(fline_T *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129 int level;
2130 fold_T *fp;
2131
2132 /* Avoid problems when being called recursively. */
2133 if (invalid_top != (linenr_T)0)
2134 return;
2135
2136 if (wp->w_foldinvalid)
2137 {
2138 /* Need to update all folds. */
2139 top = 1;
2140 bot = wp->w_buffer->b_ml.ml_line_count;
2141 wp->w_foldinvalid = FALSE;
2142
2143 /* Mark all folds a maybe-small. */
2144 setSmallMaybe(&wp->w_folds);
2145 }
2146
2147#ifdef FEAT_DIFF
2148 /* add the context for "diff" folding */
2149 if (foldmethodIsDiff(wp))
2150 {
2151 if (top > diff_context)
2152 top -= diff_context;
2153 else
2154 top = 1;
2155 bot += diff_context;
2156 }
2157#endif
2158
2159 /* When deleting lines at the end of the buffer "top" can be past the end
2160 * of the buffer. */
2161 if (top > wp->w_buffer->b_ml.ml_line_count)
2162 top = wp->w_buffer->b_ml.ml_line_count;
2163
2164 fold_changed = FALSE;
2165 fline.wp = wp;
2166 fline.off = 0;
2167 fline.lvl = 0;
2168 fline.lvl_next = -1;
2169 fline.start = 0;
2170 fline.end = MAX_LEVEL + 1;
2171 fline.had_end = MAX_LEVEL + 1;
2172
2173 invalid_top = top;
2174 invalid_bot = bot;
2175
2176 if (foldmethodIsMarker(wp))
2177 {
2178 getlevel = foldlevelMarker;
2179
2180 /* Init marker variables to speed up foldlevelMarker(). */
2181 parseMarker(wp);
2182
2183 /* Need to get the level of the line above top, it is used if there is
2184 * no marker at the top. */
2185 if (top > 1)
2186 {
2187 /* Get the fold level at top - 1. */
2188 level = foldLevelWin(wp, top - 1);
2189
2190 /* The fold may end just above the top, check for that. */
2191 fline.lnum = top - 1;
2192 fline.lvl = level;
2193 getlevel(&fline);
2194
2195 /* If a fold started here, we already had the level, if it stops
2196 * here, we need to use lvl_next. Could also start and end a fold
2197 * in the same line. */
2198 if (fline.lvl > level)
2199 fline.lvl = level - (fline.lvl - fline.lvl_next);
2200 else
2201 fline.lvl = fline.lvl_next;
2202 }
2203 fline.lnum = top;
2204 getlevel(&fline);
2205 }
2206 else
2207 {
2208 fline.lnum = top;
2209 if (foldmethodIsExpr(wp))
2210 {
2211 getlevel = foldlevelExpr;
2212 /* start one line back, because a "<1" may indicate the end of a
2213 * fold in the topline */
2214 if (top > 1)
2215 --fline.lnum;
2216 }
2217 else if (foldmethodIsSyntax(wp))
2218 getlevel = foldlevelSyntax;
2219#ifdef FEAT_DIFF
2220 else if (foldmethodIsDiff(wp))
2221 getlevel = foldlevelDiff;
2222#endif
2223 else
2224 getlevel = foldlevelIndent;
2225
2226 /* Backup to a line for which the fold level is defined. Since it's
2227 * always defined for line one, we will stop there. */
2228 fline.lvl = -1;
2229 for ( ; !got_int; --fline.lnum)
2230 {
2231 /* Reset lvl_next each time, because it will be set to a value for
2232 * the next line, but we search backwards here. */
2233 fline.lvl_next = -1;
2234 getlevel(&fline);
2235 if (fline.lvl >= 0)
2236 break;
2237 }
2238 }
2239
Bram Moolenaarec986472009-11-03 13:46:54 +00002240 /*
2241 * If folding is defined by the syntax, it is possible that a change in
2242 * one line will cause all sub-folds of the current fold to change (e.g.,
2243 * closing a C-style comment can cause folds in the subsequent lines to
2244 * appear). To take that into account we should adjust the value of "bot"
2245 * to point to the end of the current fold:
2246 */
2247 if (foldlevelSyntax == getlevel)
2248 {
2249 garray_T *gap = &wp->w_folds;
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002250 fold_T *fpn = NULL;
Bram Moolenaarec986472009-11-03 13:46:54 +00002251 int current_fdl = 0;
2252 linenr_T fold_start_lnum = 0;
2253 linenr_T lnum_rel = fline.lnum;
2254
2255 while (current_fdl < fline.lvl)
2256 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002257 if (!foldFind(gap, lnum_rel, &fpn))
Bram Moolenaarec986472009-11-03 13:46:54 +00002258 break;
2259 ++current_fdl;
2260
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002261 fold_start_lnum += fpn->fd_top;
2262 gap = &fpn->fd_nested;
2263 lnum_rel -= fpn->fd_top;
Bram Moolenaarec986472009-11-03 13:46:54 +00002264 }
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002265 if (fpn != NULL && current_fdl == fline.lvl)
Bram Moolenaarec986472009-11-03 13:46:54 +00002266 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02002267 linenr_T fold_end_lnum = fold_start_lnum + fpn->fd_len;
Bram Moolenaarec986472009-11-03 13:46:54 +00002268
2269 if (fold_end_lnum > bot)
2270 bot = fold_end_lnum;
2271 }
2272 }
2273
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 start = fline.lnum;
2275 end = bot;
2276 /* Do at least one line. */
2277 if (start > end && end < wp->w_buffer->b_ml.ml_line_count)
2278 end = start;
2279 while (!got_int)
2280 {
2281 /* Always stop at the end of the file ("end" can be past the end of
2282 * the file). */
2283 if (fline.lnum > wp->w_buffer->b_ml.ml_line_count)
2284 break;
2285 if (fline.lnum > end)
2286 {
2287 /* For "marker", "expr" and "syntax" methods: If a change caused
2288 * a fold to be removed, we need to continue at least until where
2289 * it ended. */
2290 if (getlevel != foldlevelMarker
2291 && getlevel != foldlevelSyntax
2292 && getlevel != foldlevelExpr)
2293 break;
2294 if ((start <= end
2295 && foldFind(&wp->w_folds, end, &fp)
2296 && fp->fd_top + fp->fd_len - 1 > end)
2297 || (fline.lvl == 0
2298 && foldFind(&wp->w_folds, fline.lnum, &fp)
2299 && fp->fd_top < fline.lnum))
2300 end = fp->fd_top + fp->fd_len - 1;
2301 else if (getlevel == foldlevelSyntax
2302 && foldLevelWin(wp, fline.lnum) != fline.lvl)
2303 /* For "syntax" method: Compare the foldlevel that the syntax
2304 * tells us to the foldlevel from the existing folds. If they
2305 * don't match continue updating folds. */
2306 end = fline.lnum;
2307 else
2308 break;
2309 }
2310
2311 /* A level 1 fold starts at a line with foldlevel > 0. */
2312 if (fline.lvl > 0)
2313 {
2314 invalid_top = fline.lnum;
2315 invalid_bot = end;
2316 end = foldUpdateIEMSRecurse(&wp->w_folds,
2317 1, start, &fline, getlevel, end, FD_LEVEL);
2318 start = fline.lnum;
2319 }
2320 else
2321 {
2322 if (fline.lnum == wp->w_buffer->b_ml.ml_line_count)
2323 break;
2324 ++fline.lnum;
2325 fline.lvl = fline.lvl_next;
2326 getlevel(&fline);
2327 }
2328 }
2329
2330 /* There can't be any folds from start until end now. */
2331 foldRemove(&wp->w_folds, start, end);
2332
2333 /* If some fold changed, need to redraw and position cursor. */
2334 if (fold_changed && wp->w_p_fen)
Bram Moolenaare3b3f282008-03-06 21:45:49 +00002335 changed_window_setting_win(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336
2337 /* If we updated folds past "bot", need to redraw more lines. Don't do
2338 * this in other situations, the changed lines will be redrawn anyway and
2339 * this method can cause the whole window to be updated. */
2340 if (end != bot)
2341 {
2342 if (wp->w_redraw_top == 0 || wp->w_redraw_top > top)
2343 wp->w_redraw_top = top;
2344 if (wp->w_redraw_bot < end)
2345 wp->w_redraw_bot = end;
2346 }
2347
2348 invalid_top = (linenr_T)0;
2349}
2350
2351/* foldUpdateIEMSRecurse() {{{2 */
2352/*
2353 * Update a fold that starts at "flp->lnum". At this line there is always a
2354 * valid foldlevel, and its level >= "level".
2355 * "flp" is valid for "flp->lnum" when called and it's valid when returning.
2356 * "flp->lnum" is set to the lnum just below the fold, if it ends before
2357 * "bot", it's "bot" plus one if the fold continues and it's bigger when using
2358 * the marker method and a text change made following folds to change.
2359 * When returning, "flp->lnum_save" is the line number that was used to get
2360 * the level when the level at "flp->lnum" is invalid.
2361 * Remove any folds from "startlnum" up to here at this level.
2362 * Recursively update nested folds.
2363 * Below line "bot" there are no changes in the text.
2364 * "flp->lnum", "flp->lnum_save" and "bot" are relative to the start of the
2365 * outer fold.
2366 * "flp->off" is the offset to the real line number in the buffer.
2367 *
2368 * All this would be a lot simpler if all folds in the range would be deleted
Bram Moolenaare37d50a2008-08-06 17:06:04 +00002369 * and then created again. But we would lose all information about the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 * folds, even when making changes that don't affect the folding (e.g. "vj~").
2371 *
2372 * Returns bot, which may have been increased for lines that also need to be
2373 * updated as a result of a detected change in the fold.
2374 */
2375 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002376foldUpdateIEMSRecurse(
2377 garray_T *gap,
2378 int level,
2379 linenr_T startlnum,
2380 fline_T *flp,
2381 void (*getlevel)(fline_T *),
2382 linenr_T bot,
2383 int topflags) /* flags used by containing fold */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384{
2385 linenr_T ll;
2386 fold_T *fp = NULL;
2387 fold_T *fp2;
2388 int lvl = level;
2389 linenr_T startlnum2 = startlnum;
2390 linenr_T firstlnum = flp->lnum; /* first lnum we got */
2391 int i;
2392 int finish = FALSE;
2393 linenr_T linecount = flp->wp->w_buffer->b_ml.ml_line_count - flp->off;
2394 int concat;
2395
2396 /*
2397 * If using the marker method, the start line is not the start of a fold
2398 * at the level we're dealing with and the level is non-zero, we must use
2399 * the previous fold. But ignore a fold that starts at or below
2400 * startlnum, it must be deleted.
2401 */
2402 if (getlevel == foldlevelMarker && flp->start <= flp->lvl - level
2403 && flp->lvl > 0)
2404 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002405 (void)foldFind(gap, startlnum - 1, &fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 if (fp >= ((fold_T *)gap->ga_data) + gap->ga_len
2407 || fp->fd_top >= startlnum)
2408 fp = NULL;
2409 }
2410
2411 /*
2412 * Loop over all lines in this fold, or until "bot" is hit.
2413 * Handle nested folds inside of this fold.
2414 * "flp->lnum" is the current line. When finding the end of the fold, it
2415 * is just below the end of the fold.
2416 * "*flp" contains the level of the line "flp->lnum" or a following one if
2417 * there are lines with an invalid fold level. "flp->lnum_save" is the
2418 * line number that was used to get the fold level (below "flp->lnum" when
2419 * it has an invalid fold level). When called the fold level is always
2420 * valid, thus "flp->lnum_save" is equal to "flp->lnum".
2421 */
2422 flp->lnum_save = flp->lnum;
2423 while (!got_int)
2424 {
2425 /* Updating folds can be slow, check for CTRL-C. */
2426 line_breakcheck();
2427
2428 /* Set "lvl" to the level of line "flp->lnum". When flp->start is set
2429 * and after the first line of the fold, set the level to zero to
2430 * force the fold to end. Do the same when had_end is set: Previous
2431 * line was marked as end of a fold. */
2432 lvl = flp->lvl;
2433 if (lvl > MAX_LEVEL)
2434 lvl = MAX_LEVEL;
2435 if (flp->lnum > firstlnum
2436 && (level > lvl - flp->start || level >= flp->had_end))
2437 lvl = 0;
2438
2439 if (flp->lnum > bot && !finish && fp != NULL)
2440 {
2441 /* For "marker" and "syntax" methods:
2442 * - If a change caused a nested fold to be removed, we need to
2443 * delete it and continue at least until where it ended.
2444 * - If a change caused a nested fold to be created, or this fold
2445 * to continue below its original end, need to finish this fold.
2446 */
2447 if (getlevel != foldlevelMarker
2448 && getlevel != foldlevelExpr
2449 && getlevel != foldlevelSyntax)
2450 break;
2451 i = 0;
2452 fp2 = fp;
2453 if (lvl >= level)
2454 {
2455 /* Compute how deep the folds currently are, if it's deeper
2456 * than "lvl" then some must be deleted, need to update
2457 * at least one nested fold. */
2458 ll = flp->lnum - fp->fd_top;
2459 while (foldFind(&fp2->fd_nested, ll, &fp2))
2460 {
2461 ++i;
2462 ll -= fp2->fd_top;
2463 }
2464 }
2465 if (lvl < level + i)
2466 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02002467 (void)foldFind(&fp->fd_nested, flp->lnum - fp->fd_top, &fp2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 if (fp2 != NULL)
2469 bot = fp2->fd_top + fp2->fd_len - 1 + fp->fd_top;
2470 }
2471 else if (fp->fd_top + fp->fd_len <= flp->lnum && lvl >= level)
2472 finish = TRUE;
2473 else
2474 break;
2475 }
2476
2477 /* At the start of the first nested fold and at the end of the current
2478 * fold: check if existing folds at this level, before the current
2479 * one, need to be deleted or truncated. */
2480 if (fp == NULL
2481 && (lvl != level
2482 || flp->lnum_save >= bot
2483 || flp->start != 0
2484 || flp->had_end <= MAX_LEVEL
2485 || flp->lnum == linecount))
2486 {
2487 /*
2488 * Remove or update folds that have lines between startlnum and
2489 * firstlnum.
2490 */
2491 while (!got_int)
2492 {
2493 /* set concat to 1 if it's allowed to concatenated this fold
2494 * with a previous one that touches it. */
2495 if (flp->start != 0 || flp->had_end <= MAX_LEVEL)
2496 concat = 0;
2497 else
2498 concat = 1;
2499
2500 /* Find an existing fold to re-use. Preferably one that
2501 * includes startlnum, otherwise one that ends just before
2502 * startlnum or starts after it. */
2503 if (foldFind(gap, startlnum, &fp)
2504 || (fp < ((fold_T *)gap->ga_data) + gap->ga_len
2505 && fp->fd_top <= firstlnum)
2506 || foldFind(gap, firstlnum - concat, &fp)
2507 || (fp < ((fold_T *)gap->ga_data) + gap->ga_len
2508 && ((lvl < level && fp->fd_top < flp->lnum)
2509 || (lvl >= level
2510 && fp->fd_top <= flp->lnum_save))))
2511 {
2512 if (fp->fd_top + fp->fd_len + concat > firstlnum)
2513 {
2514 /* Use existing fold for the new fold. If it starts
2515 * before where we started looking, extend it. If it
2516 * starts at another line, update nested folds to keep
2517 * their position, compensating for the new fd_top. */
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002518 if (fp->fd_top == firstlnum)
2519 {
2520 /* have found a fold beginning where we want */
2521 }
2522 else if (fp->fd_top >= startlnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 {
2524 if (fp->fd_top > firstlnum)
2525 /* like lines are inserted */
2526 foldMarkAdjustRecurse(&fp->fd_nested,
2527 (linenr_T)0, (linenr_T)MAXLNUM,
2528 (long)(fp->fd_top - firstlnum), 0L);
2529 else
2530 /* like lines are deleted */
2531 foldMarkAdjustRecurse(&fp->fd_nested,
2532 (linenr_T)0,
2533 (long)(firstlnum - fp->fd_top - 1),
2534 (linenr_T)MAXLNUM,
2535 (long)(fp->fd_top - firstlnum));
2536 fp->fd_len += fp->fd_top - firstlnum;
2537 fp->fd_top = firstlnum;
2538 fold_changed = TRUE;
2539 }
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002540 else if ((flp->start != 0 && lvl == level)
2541 || firstlnum != startlnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 {
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002543 linenr_T breakstart;
2544 linenr_T breakend;
2545
2546 /*
2547 * Before there was a fold spanning from above
2548 * startlnum to below firstlnum. This fold is valid
2549 * above startlnum (because we are not updating
2550 * that range), but there should now be a break in
2551 * it.
2552 * If the break is because we are now forced to
2553 * start a new fold at the level "level" at line
2554 * fline->lnum, then we need to split the fold at
2555 * fline->lnum.
2556 * If the break is because the range
2557 * [startlnum, firstlnum) is now at a lower indent
2558 * than "level", we need to split the fold in this
2559 * range.
2560 * Any splits have to be done recursively.
2561 */
2562 if (firstlnum != startlnum)
2563 {
2564 breakstart = startlnum;
2565 breakend = firstlnum;
2566 }
2567 else
2568 {
2569 breakstart = flp->lnum;
2570 breakend = flp->lnum;
2571 }
2572 foldRemove(&fp->fd_nested, breakstart - fp->fd_top,
2573 breakend - fp->fd_top);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 i = (int)(fp - (fold_T *)gap->ga_data);
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002575 foldSplit(gap, i, breakstart, breakend - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 fp = (fold_T *)gap->ga_data + i + 1;
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002577
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578 /* If using the "marker" or "syntax" method, we
2579 * need to continue until the end of the fold is
2580 * found. */
2581 if (getlevel == foldlevelMarker
2582 || getlevel == foldlevelExpr
2583 || getlevel == foldlevelSyntax)
2584 finish = TRUE;
2585 }
Bram Moolenaareadbc2b2017-03-04 18:42:39 +01002586
2587 if (fp->fd_top == startlnum && concat)
2588 {
2589 i = (int)(fp - (fold_T *)gap->ga_data);
2590 if (i != 0)
2591 {
2592 fp2 = fp - 1;
2593 if (fp2->fd_top + fp2->fd_len == fp->fd_top)
2594 {
2595 foldMerge(fp2, gap, fp);
2596 fp = fp2;
2597 }
2598 }
2599 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 break;
2601 }
2602 if (fp->fd_top >= startlnum)
2603 {
2604 /* A fold that starts at or after startlnum and stops
2605 * before the new fold must be deleted. Continue
2606 * looking for the next one. */
2607 deleteFoldEntry(gap,
2608 (int)(fp - (fold_T *)gap->ga_data), TRUE);
2609 }
2610 else
2611 {
2612 /* A fold has some lines above startlnum, truncate it
2613 * to stop just above startlnum. */
2614 fp->fd_len = startlnum - fp->fd_top;
2615 foldMarkAdjustRecurse(&fp->fd_nested,
2616 (linenr_T)fp->fd_len, (linenr_T)MAXLNUM,
2617 (linenr_T)MAXLNUM, 0L);
2618 fold_changed = TRUE;
2619 }
2620 }
2621 else
2622 {
2623 /* Insert new fold. Careful: ga_data may be NULL and it
2624 * may change! */
2625 i = (int)(fp - (fold_T *)gap->ga_data);
2626 if (foldInsert(gap, i) != OK)
2627 return bot;
2628 fp = (fold_T *)gap->ga_data + i;
2629 /* The new fold continues until bot, unless we find the
2630 * end earlier. */
2631 fp->fd_top = firstlnum;
2632 fp->fd_len = bot - firstlnum + 1;
2633 /* When the containing fold is open, the new fold is open.
2634 * The new fold is closed if the fold above it is closed.
2635 * The first fold depends on the containing fold. */
2636 if (topflags == FD_OPEN)
2637 {
2638 flp->wp->w_fold_manual = TRUE;
2639 fp->fd_flags = FD_OPEN;
2640 }
2641 else if (i <= 0)
2642 {
2643 fp->fd_flags = topflags;
2644 if (topflags != FD_LEVEL)
2645 flp->wp->w_fold_manual = TRUE;
2646 }
2647 else
2648 fp->fd_flags = (fp - 1)->fd_flags;
2649 fp->fd_small = MAYBE;
2650 /* If using the "marker", "expr" or "syntax" method, we
2651 * need to continue until the end of the fold is found. */
2652 if (getlevel == foldlevelMarker
2653 || getlevel == foldlevelExpr
2654 || getlevel == foldlevelSyntax)
2655 finish = TRUE;
2656 fold_changed = TRUE;
2657 break;
2658 }
2659 }
2660 }
2661
2662 if (lvl < level || flp->lnum > linecount)
2663 {
2664 /*
2665 * Found a line with a lower foldlevel, this fold ends just above
2666 * "flp->lnum".
2667 */
2668 break;
2669 }
2670
2671 /*
2672 * The fold includes the line "flp->lnum" and "flp->lnum_save".
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002673 * Check "fp" for safety.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674 */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002675 if (lvl > level && fp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676 {
2677 /*
2678 * There is a nested fold, handle it recursively.
2679 */
2680 /* At least do one line (can happen when finish is TRUE). */
2681 if (bot < flp->lnum)
2682 bot = flp->lnum;
2683
2684 /* Line numbers in the nested fold are relative to the start of
2685 * this fold. */
2686 flp->lnum = flp->lnum_save - fp->fd_top;
2687 flp->off += fp->fd_top;
2688 i = (int)(fp - (fold_T *)gap->ga_data);
2689 bot = foldUpdateIEMSRecurse(&fp->fd_nested, level + 1,
2690 startlnum2 - fp->fd_top, flp, getlevel,
2691 bot - fp->fd_top, fp->fd_flags);
2692 fp = (fold_T *)gap->ga_data + i;
2693 flp->lnum += fp->fd_top;
2694 flp->lnum_save += fp->fd_top;
2695 flp->off -= fp->fd_top;
2696 bot += fp->fd_top;
2697 startlnum2 = flp->lnum;
2698
2699 /* This fold may end at the same line, don't incr. flp->lnum. */
2700 }
2701 else
2702 {
2703 /*
2704 * Get the level of the next line, then continue the loop to check
2705 * if it ends there.
2706 * Skip over undefined lines, to find the foldlevel after it.
2707 * For the last line in the file the foldlevel is always valid.
2708 */
2709 flp->lnum = flp->lnum_save;
2710 ll = flp->lnum + 1;
2711 while (!got_int)
2712 {
2713 /* Make the previous level available to foldlevel(). */
2714 prev_lnum = flp->lnum;
2715 prev_lnum_lvl = flp->lvl;
2716
2717 if (++flp->lnum > linecount)
2718 break;
2719 flp->lvl = flp->lvl_next;
2720 getlevel(flp);
2721 if (flp->lvl >= 0 || flp->had_end <= MAX_LEVEL)
2722 break;
2723 }
2724 prev_lnum = 0;
2725 if (flp->lnum > linecount)
2726 break;
2727
2728 /* leave flp->lnum_save to lnum of the line that was used to get
2729 * the level, flp->lnum to the lnum of the next line. */
2730 flp->lnum_save = flp->lnum;
2731 flp->lnum = ll;
2732 }
2733 }
2734
2735 if (fp == NULL) /* only happens when got_int is set */
2736 return bot;
2737
2738 /*
2739 * Get here when:
2740 * lvl < level: the folds ends just above "flp->lnum"
2741 * lvl >= level: fold continues below "bot"
2742 */
2743
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02002744 // Current fold at least extends until lnum.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745 if (fp->fd_len < flp->lnum - fp->fd_top)
2746 {
2747 fp->fd_len = flp->lnum - fp->fd_top;
Bram Moolenaaref6fc092008-01-13 20:58:13 +00002748 fp->fd_small = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749 fold_changed = TRUE;
2750 }
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02002751 else if (fp->fd_top + fp->fd_len > linecount)
2752 // running into the end of the buffer (deleted last line)
2753 fp->fd_len = linecount - fp->fd_top + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02002755 // Delete contained folds from the end of the last one found until where
2756 // we stopped looking.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 foldRemove(&fp->fd_nested, startlnum2 - fp->fd_top,
2758 flp->lnum - 1 - fp->fd_top);
2759
2760 if (lvl < level)
2761 {
2762 /* End of fold found, update the length when it got shorter. */
2763 if (fp->fd_len != flp->lnum - fp->fd_top)
2764 {
Bram Moolenaar9d20ce62017-03-23 21:53:35 +01002765 if (fp->fd_top + fp->fd_len - 1 > bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 {
Bram Moolenaar25394022007-05-10 19:06:20 +00002767 /* fold continued below bot */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768 if (getlevel == foldlevelMarker
2769 || getlevel == foldlevelExpr
2770 || getlevel == foldlevelSyntax)
2771 {
2772 /* marker method: truncate the fold and make sure the
2773 * previously included lines are processed again */
2774 bot = fp->fd_top + fp->fd_len - 1;
2775 fp->fd_len = flp->lnum - fp->fd_top;
2776 }
2777 else
2778 {
2779 /* indent or expr method: split fold to create a new one
2780 * below bot */
2781 i = (int)(fp - (fold_T *)gap->ga_data);
2782 foldSplit(gap, i, flp->lnum, bot);
2783 fp = (fold_T *)gap->ga_data + i;
2784 }
2785 }
2786 else
2787 fp->fd_len = flp->lnum - fp->fd_top;
2788 fold_changed = TRUE;
2789 }
2790 }
2791
2792 /* delete following folds that end before the current line */
2793 for (;;)
2794 {
2795 fp2 = fp + 1;
2796 if (fp2 >= (fold_T *)gap->ga_data + gap->ga_len
2797 || fp2->fd_top > flp->lnum)
2798 break;
2799 if (fp2->fd_top + fp2->fd_len > flp->lnum)
2800 {
2801 if (fp2->fd_top < flp->lnum)
2802 {
2803 /* Make fold that includes lnum start at lnum. */
2804 foldMarkAdjustRecurse(&fp2->fd_nested,
2805 (linenr_T)0, (long)(flp->lnum - fp2->fd_top - 1),
2806 (linenr_T)MAXLNUM, (long)(fp2->fd_top - flp->lnum));
2807 fp2->fd_len -= flp->lnum - fp2->fd_top;
2808 fp2->fd_top = flp->lnum;
2809 fold_changed = TRUE;
2810 }
2811
2812 if (lvl >= level)
2813 {
2814 /* merge new fold with existing fold that follows */
2815 foldMerge(fp, gap, fp2);
2816 }
2817 break;
2818 }
2819 fold_changed = TRUE;
2820 deleteFoldEntry(gap, (int)(fp2 - (fold_T *)gap->ga_data), TRUE);
2821 }
2822
2823 /* Need to redraw the lines we inspected, which might be further down than
2824 * was asked for. */
2825 if (bot < flp->lnum - 1)
2826 bot = flp->lnum - 1;
2827
2828 return bot;
2829}
2830
2831/* foldInsert() {{{2 */
2832/*
2833 * Insert a new fold in "gap" at position "i".
2834 * Returns OK for success, FAIL for failure.
2835 */
2836 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002837foldInsert(garray_T *gap, int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838{
2839 fold_T *fp;
2840
2841 if (ga_grow(gap, 1) != OK)
2842 return FAIL;
2843 fp = (fold_T *)gap->ga_data + i;
2844 if (i < gap->ga_len)
2845 mch_memmove(fp + 1, fp, sizeof(fold_T) * (gap->ga_len - i));
2846 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847 ga_init2(&fp->fd_nested, (int)sizeof(fold_T), 10);
2848 return OK;
2849}
2850
2851/* foldSplit() {{{2 */
2852/*
2853 * Split the "i"th fold in "gap", which starts before "top" and ends below
2854 * "bot" in two pieces, one ending above "top" and the other starting below
2855 * "bot".
2856 * The caller must first have taken care of any nested folds from "top" to
2857 * "bot"!
2858 */
2859 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002860foldSplit(
2861 garray_T *gap,
2862 int i,
2863 linenr_T top,
2864 linenr_T bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865{
2866 fold_T *fp;
2867 fold_T *fp2;
2868 garray_T *gap1;
2869 garray_T *gap2;
2870 int idx;
2871 int len;
2872
2873 /* The fold continues below bot, need to split it. */
2874 if (foldInsert(gap, i + 1) == FAIL)
2875 return;
2876 fp = (fold_T *)gap->ga_data + i;
2877 fp[1].fd_top = bot + 1;
2878 fp[1].fd_len = fp->fd_len - (fp[1].fd_top - fp->fd_top);
2879 fp[1].fd_flags = fp->fd_flags;
Bram Moolenaareda6eb92009-11-03 17:04:43 +00002880 fp[1].fd_small = MAYBE;
2881 fp->fd_small = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882
2883 /* Move nested folds below bot to new fold. There can't be
2884 * any between top and bot, they have been removed by the caller. */
2885 gap1 = &fp->fd_nested;
2886 gap2 = &fp[1].fd_nested;
2887 (void)(foldFind(gap1, bot + 1 - fp->fd_top, &fp2));
2888 len = (int)((fold_T *)gap1->ga_data + gap1->ga_len - fp2);
2889 if (len > 0 && ga_grow(gap2, len) == OK)
2890 {
2891 for (idx = 0; idx < len; ++idx)
2892 {
2893 ((fold_T *)gap2->ga_data)[idx] = fp2[idx];
2894 ((fold_T *)gap2->ga_data)[idx].fd_top
2895 -= fp[1].fd_top - fp->fd_top;
2896 }
2897 gap2->ga_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898 gap1->ga_len -= len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 }
2900 fp->fd_len = top - fp->fd_top;
2901 fold_changed = TRUE;
2902}
2903
2904/* foldRemove() {{{2 */
2905/*
2906 * Remove folds within the range "top" to and including "bot".
2907 * Check for these situations:
2908 * 1 2 3
2909 * 1 2 3
2910 * top 2 3 4 5
2911 * 2 3 4 5
2912 * bot 2 3 4 5
2913 * 3 5 6
2914 * 3 5 6
2915 *
2916 * 1: not changed
Bram Moolenaar25394022007-05-10 19:06:20 +00002917 * 2: truncate to stop above "top"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918 * 3: split in two parts, one stops above "top", other starts below "bot".
2919 * 4: deleted
2920 * 5: made to start below "bot".
2921 * 6: not changed
2922 */
2923 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002924foldRemove(garray_T *gap, linenr_T top, linenr_T bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925{
2926 fold_T *fp = NULL;
2927
2928 if (bot < top)
2929 return; /* nothing to do */
2930
2931 for (;;)
2932 {
2933 /* Find fold that includes top or a following one. */
2934 if (foldFind(gap, top, &fp) && fp->fd_top < top)
2935 {
2936 /* 2: or 3: need to delete nested folds */
2937 foldRemove(&fp->fd_nested, top - fp->fd_top, bot - fp->fd_top);
Bram Moolenaarb11c8262017-04-23 16:48:20 +02002938 if (fp->fd_top + fp->fd_len - 1 > bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939 {
2940 /* 3: need to split it. */
2941 foldSplit(gap, (int)(fp - (fold_T *)gap->ga_data), top, bot);
2942 }
2943 else
2944 {
2945 /* 2: truncate fold at "top". */
2946 fp->fd_len = top - fp->fd_top;
2947 }
2948 fold_changed = TRUE;
2949 continue;
2950 }
2951 if (fp >= (fold_T *)(gap->ga_data) + gap->ga_len
2952 || fp->fd_top > bot)
2953 {
2954 /* 6: Found a fold below bot, can stop looking. */
2955 break;
2956 }
2957 if (fp->fd_top >= top)
2958 {
2959 /* Found an entry below top. */
2960 fold_changed = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002961 if (fp->fd_top + fp->fd_len - 1 > bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962 {
2963 /* 5: Make fold that includes bot start below bot. */
2964 foldMarkAdjustRecurse(&fp->fd_nested,
2965 (linenr_T)0, (long)(bot - fp->fd_top),
2966 (linenr_T)MAXLNUM, (long)(fp->fd_top - bot - 1));
2967 fp->fd_len -= bot - fp->fd_top + 1;
2968 fp->fd_top = bot + 1;
2969 break;
2970 }
2971
2972 /* 4: Delete completely contained fold. */
2973 deleteFoldEntry(gap, (int)(fp - (fold_T *)gap->ga_data), TRUE);
2974 }
2975 }
2976}
2977
Bram Moolenaar88d298a2017-03-14 21:53:58 +01002978/* foldReverseOrder() {{{2 */
2979 static void
Bram Moolenaarb11c8262017-04-23 16:48:20 +02002980foldReverseOrder(garray_T *gap, linenr_T start_arg, linenr_T end_arg)
Bram Moolenaar88d298a2017-03-14 21:53:58 +01002981{
2982 fold_T *left, *right;
2983 fold_T tmp;
Bram Moolenaarb11c8262017-04-23 16:48:20 +02002984 linenr_T start = start_arg;
2985 linenr_T end = end_arg;
Bram Moolenaar88d298a2017-03-14 21:53:58 +01002986
2987 for (; start < end; start++, end--)
2988 {
2989 left = (fold_T *)gap->ga_data + start;
2990 right = (fold_T *)gap->ga_data + end;
2991 tmp = *left;
2992 *left = *right;
2993 *right = tmp;
2994 }
2995}
2996
Bram Moolenaar4a5a8dd2017-03-16 13:54:10 +01002997/* foldMoveRange() {{{2 */
Bram Moolenaar88d298a2017-03-14 21:53:58 +01002998/*
2999 * Move folds within the inclusive range "line1" to "line2" to after "dest"
3000 * requires "line1" <= "line2" <= "dest"
3001 *
3002 * There are the following situations for the first fold at or below line1 - 1.
3003 * 1 2 3 4
3004 * 1 2 3 4
3005 * line1 2 3 4
3006 * 2 3 4 5 6 7
3007 * line2 3 4 5 6 7
3008 * 3 4 6 7 8 9
3009 * dest 4 7 8 9
3010 * 4 7 8 10
3011 * 4 7 8 10
3012 *
3013 * In the following descriptions, "moved" means moving in the buffer, *and* in
3014 * the fold array.
3015 * Meanwhile, "shifted" just means moving in the buffer.
3016 * 1. not changed
3017 * 2. truncated above line1
3018 * 3. length reduced by line2 - line1, folds starting between the end of 3 and
3019 * dest are truncated and shifted up
3020 * 4. internal folds moved (from [line1, line2] to dest)
3021 * 5. moved to dest.
3022 * 6. truncated below line2 and moved.
3023 * 7. length reduced by line2 - dest, folds starting between line2 and dest are
3024 * removed, top is moved down by move_len.
3025 * 8. truncated below dest and shifted up.
3026 * 9. shifted up
3027 * 10. not changed
3028 */
3029
3030 static void
3031truncate_fold(fold_T *fp, linenr_T end)
3032{
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003033 end += 1;
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003034 foldRemove(&fp->fd_nested, end - fp->fd_top, MAXLNUM);
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003035 fp->fd_len = end - fp->fd_top;
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003036}
3037
3038#define fold_end(fp) ((fp)->fd_top + (fp)->fd_len - 1)
3039#define valid_fold(fp, gap) ((fp) < ((fold_T *)(gap)->ga_data + (gap)->ga_len))
3040#define fold_index(fp, gap) ((size_t)(fp - ((fold_T *)(gap)->ga_data)))
3041
Bram Moolenaar4a5a8dd2017-03-16 13:54:10 +01003042 void
3043foldMoveRange(garray_T *gap, linenr_T line1, linenr_T line2, linenr_T dest)
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003044{
3045 fold_T *fp;
3046 linenr_T range_len = line2 - line1 + 1;
3047 linenr_T move_len = dest - line2;
3048 int at_start = foldFind(gap, line1 - 1, &fp);
3049 size_t move_start = 0, move_end = 0, dest_index = 0;
3050
3051 if (at_start)
3052 {
3053 if (fold_end(fp) > dest)
3054 {
3055 /* Case 4
3056 * don't have to change this fold, but have to move nested folds.
3057 */
3058 foldMoveRange(&fp->fd_nested, line1 - fp->fd_top, line2 -
3059 fp->fd_top, dest - fp->fd_top);
3060 return;
3061 }
3062 else if (fold_end(fp) > line2)
3063 {
3064 /* Case 3
3065 * Remove nested folds between line1 and line2 & reduce the
3066 * length of fold by "range_len".
3067 * Folds after this one must be dealt with.
3068 */
3069 foldMarkAdjustRecurse(&fp->fd_nested, line1 - fp->fd_top, line2 -
3070 fp->fd_top, MAXLNUM, -range_len);
3071 fp->fd_len -= range_len;
3072 }
3073 else
3074 /* Case 2 truncate fold, folds after this one must be dealt with. */
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003075 truncate_fold(fp, line1 - 1);
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003076
3077 /* Look at the next fold, and treat that one as if it were the first
3078 * after "line1" (because now it is). */
3079 fp = fp + 1;
3080 }
3081
3082 if (!valid_fold(fp, gap) || fp->fd_top > dest)
3083 {
3084 /* Case 10
3085 * No folds after "line1" and before "dest"
3086 */
3087 return;
3088 }
3089 else if (fp->fd_top > line2)
3090 {
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003091 for (; valid_fold(fp, gap) && fold_end(fp) <= dest; fp++)
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003092 /* Case 9. (for all case 9's) -- shift up. */
3093 fp->fd_top -= range_len;
3094
Bram Moolenaar40ebc0a2017-03-16 15:59:14 +01003095 if (valid_fold(fp, gap) && fp->fd_top <= dest)
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003096 {
3097 /* Case 8. -- ensure truncated at dest, shift up */
3098 truncate_fold(fp, dest);
3099 fp->fd_top -= range_len;
3100 }
3101 return;
3102 }
3103 else if (fold_end(fp) > dest)
3104 {
3105 /* Case 7 -- remove nested folds and shrink */
3106 foldMarkAdjustRecurse(&fp->fd_nested, line2 + 1 - fp->fd_top, dest -
3107 fp->fd_top, MAXLNUM, -move_len);
3108 fp->fd_len -= move_len;
3109 fp->fd_top += move_len;
3110 return;
3111 }
3112
3113 /* Case 5 or 6
Bram Moolenaar4a5a8dd2017-03-16 13:54:10 +01003114 * changes rely on whether there are folds between the end of
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003115 * this fold and "dest".
3116 */
3117 move_start = fold_index(fp, gap);
3118
3119 for (; valid_fold(fp, gap) && fp->fd_top <= dest; fp++)
3120 {
3121 if (fp->fd_top <= line2)
3122 {
3123 /* 1. 2. or 3. */
3124 if (fold_end(fp) > line2)
3125 /* 2. or 3., truncate before moving */
3126 truncate_fold(fp, line2);
3127
3128 fp->fd_top += move_len;
3129 continue;
3130 }
3131
3132 /* Record index of the first fold after the moved range. */
3133 if (move_end == 0)
3134 move_end = fold_index(fp, gap);
3135
3136 if (fold_end(fp) > dest)
3137 truncate_fold(fp, dest);
3138
3139 fp->fd_top -= range_len;
3140 }
3141
3142 dest_index = fold_index(fp, gap);
3143
3144 /*
Bram Moolenaar94be6192017-04-22 22:40:11 +02003145 * All folds are now correct, but not necessarily in the correct order. We
3146 * must swap folds in the range [move_end, dest_index) with those in the
3147 * range [move_start, move_end).
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003148 */
Bram Moolenaar94be6192017-04-22 22:40:11 +02003149 if (move_end == 0)
3150 /* There are no folds after those moved, hence no folds have been moved
3151 * out of order. */
3152 return;
Bram Moolenaar0c0d4ec2017-03-16 22:06:57 +01003153 foldReverseOrder(gap, (linenr_T)move_start, (linenr_T)dest_index - 1);
3154 foldReverseOrder(gap, (linenr_T)move_start,
3155 (linenr_T)(move_start + dest_index - move_end - 1));
3156 foldReverseOrder(gap, (linenr_T)(move_start + dest_index - move_end),
3157 (linenr_T)(dest_index - 1));
Bram Moolenaar88d298a2017-03-14 21:53:58 +01003158}
3159#undef fold_end
3160#undef valid_fold
3161#undef fold_index
3162
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163/* foldMerge() {{{2 */
3164/*
Bram Moolenaar25394022007-05-10 19:06:20 +00003165 * Merge two adjacent folds (and the nested ones in them).
3166 * This only works correctly when the folds are really adjacent! Thus "fp1"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167 * must end just above "fp2".
3168 * The resulting fold is "fp1", nested folds are moved from "fp2" to "fp1".
3169 * Fold entry "fp2" in "gap" is deleted.
3170 */
3171 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003172foldMerge(fold_T *fp1, garray_T *gap, fold_T *fp2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173{
3174 fold_T *fp3;
3175 fold_T *fp4;
3176 int idx;
3177 garray_T *gap1 = &fp1->fd_nested;
3178 garray_T *gap2 = &fp2->fd_nested;
3179
3180 /* If the last nested fold in fp1 touches the first nested fold in fp2,
3181 * merge them recursively. */
3182 if (foldFind(gap1, fp1->fd_len - 1L, &fp3) && foldFind(gap2, 0L, &fp4))
3183 foldMerge(fp3, gap2, fp4);
3184
3185 /* Move nested folds in fp2 to the end of fp1. */
3186 if (gap2->ga_len > 0 && ga_grow(gap1, gap2->ga_len) == OK)
3187 {
3188 for (idx = 0; idx < gap2->ga_len; ++idx)
3189 {
3190 ((fold_T *)gap1->ga_data)[gap1->ga_len]
3191 = ((fold_T *)gap2->ga_data)[idx];
3192 ((fold_T *)gap1->ga_data)[gap1->ga_len].fd_top += fp1->fd_len;
3193 ++gap1->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 }
3195 gap2->ga_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196 }
3197
3198 fp1->fd_len += fp2->fd_len;
3199 deleteFoldEntry(gap, (int)(fp2 - (fold_T *)gap->ga_data), TRUE);
3200 fold_changed = TRUE;
3201}
3202
3203/* foldlevelIndent() {{{2 */
3204/*
3205 * Low level function to get the foldlevel for the "indent" method.
3206 * Doesn't use any caching.
3207 * Returns a level of -1 if the foldlevel depends on surrounding lines.
3208 */
3209 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003210foldlevelIndent(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003211{
3212 char_u *s;
3213 buf_T *buf;
3214 linenr_T lnum = flp->lnum + flp->off;
3215
3216 buf = flp->wp->w_buffer;
3217 s = skipwhite(ml_get_buf(buf, lnum, FALSE));
3218
3219 /* empty line or lines starting with a character in 'foldignore': level
3220 * depends on surrounding lines */
3221 if (*s == NUL || vim_strchr(flp->wp->w_p_fdi, *s) != NULL)
3222 {
3223 /* first and last line can't be undefined, use level 0 */
3224 if (lnum == 1 || lnum == buf->b_ml.ml_line_count)
3225 flp->lvl = 0;
3226 else
3227 flp->lvl = -1;
3228 }
3229 else
Bram Moolenaar0c27cbc2018-11-14 21:45:32 +01003230 flp->lvl = get_indent_buf(buf, lnum) / get_sw_value(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231 if (flp->lvl > flp->wp->w_p_fdn)
Bram Moolenaar74c596b2006-11-01 11:44:31 +00003232 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233 flp->lvl = flp->wp->w_p_fdn;
Bram Moolenaar74c596b2006-11-01 11:44:31 +00003234 if (flp->lvl < 0)
3235 flp->lvl = 0;
3236 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237}
3238
3239/* foldlevelDiff() {{{2 */
3240#ifdef FEAT_DIFF
3241/*
3242 * Low level function to get the foldlevel for the "diff" method.
3243 * Doesn't use any caching.
3244 */
3245 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003246foldlevelDiff(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247{
3248 if (diff_infold(flp->wp, flp->lnum + flp->off))
3249 flp->lvl = 1;
3250 else
3251 flp->lvl = 0;
3252}
3253#endif
3254
3255/* foldlevelExpr() {{{2 */
3256/*
3257 * Low level function to get the foldlevel for the "expr" method.
3258 * Doesn't use any caching.
3259 * Returns a level of -1 if the foldlevel depends on surrounding lines.
3260 */
3261 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003262foldlevelExpr(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263{
3264#ifndef FEAT_EVAL
3265 flp->start = FALSE;
3266 flp->lvl = 0;
3267#else
3268 win_T *win;
3269 int n;
3270 int c;
3271 linenr_T lnum = flp->lnum + flp->off;
3272 int save_keytyped;
3273
3274 win = curwin;
3275 curwin = flp->wp;
3276 curbuf = flp->wp->w_buffer;
3277 set_vim_var_nr(VV_LNUM, lnum);
3278
3279 flp->start = 0;
3280 flp->had_end = flp->end;
3281 flp->end = MAX_LEVEL + 1;
3282 if (lnum <= 1)
3283 flp->lvl = 0;
3284
3285 /* KeyTyped may be reset to 0 when calling a function which invokes
3286 * do_cmdline(). To make 'foldopen' work correctly restore KeyTyped. */
3287 save_keytyped = KeyTyped;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02003288 n = (int)eval_foldexpr(flp->wp->w_p_fde, &c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289 KeyTyped = save_keytyped;
3290
3291 switch (c)
3292 {
3293 /* "a1", "a2", .. : add to the fold level */
3294 case 'a': if (flp->lvl >= 0)
3295 {
3296 flp->lvl += n;
3297 flp->lvl_next = flp->lvl;
3298 }
3299 flp->start = n;
3300 break;
3301
3302 /* "s1", "s2", .. : subtract from the fold level */
3303 case 's': if (flp->lvl >= 0)
3304 {
3305 if (n > flp->lvl)
3306 flp->lvl_next = 0;
3307 else
3308 flp->lvl_next = flp->lvl - n;
3309 flp->end = flp->lvl_next + 1;
3310 }
3311 break;
3312
3313 /* ">1", ">2", .. : start a fold with a certain level */
3314 case '>': flp->lvl = n;
3315 flp->lvl_next = n;
3316 flp->start = 1;
3317 break;
3318
3319 /* "<1", "<2", .. : end a fold with a certain level */
3320 case '<': flp->lvl_next = n - 1;
3321 flp->end = n;
3322 break;
3323
3324 /* "=": No change in level */
3325 case '=': flp->lvl_next = flp->lvl;
3326 break;
3327
3328 /* "-1", "0", "1", ..: set fold level */
3329 default: if (n < 0)
3330 /* Use the current level for the next line, so that "a1"
3331 * will work there. */
3332 flp->lvl_next = flp->lvl;
3333 else
3334 flp->lvl_next = n;
3335 flp->lvl = n;
3336 break;
3337 }
3338
3339 /* If the level is unknown for the first or the last line in the file, use
3340 * level 0. */
3341 if (flp->lvl < 0)
3342 {
3343 if (lnum <= 1)
3344 {
3345 flp->lvl = 0;
3346 flp->lvl_next = 0;
3347 }
3348 if (lnum == curbuf->b_ml.ml_line_count)
3349 flp->lvl_next = 0;
3350 }
3351
3352 curwin = win;
3353 curbuf = curwin->w_buffer;
3354#endif
3355}
3356
3357/* parseMarker() {{{2 */
3358/*
3359 * Parse 'foldmarker' and set "foldendmarker", "foldstartmarkerlen" and
3360 * "foldendmarkerlen".
3361 * Relies on the option value to have been checked for correctness already.
3362 */
3363 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003364parseMarker(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365{
3366 foldendmarker = vim_strchr(wp->w_p_fmr, ',');
3367 foldstartmarkerlen = (int)(foldendmarker++ - wp->w_p_fmr);
3368 foldendmarkerlen = (int)STRLEN(foldendmarker);
3369}
3370
3371/* foldlevelMarker() {{{2 */
3372/*
3373 * Low level function to get the foldlevel for the "marker" method.
3374 * "foldendmarker", "foldstartmarkerlen" and "foldendmarkerlen" must have been
3375 * set before calling this.
3376 * Requires that flp->lvl is set to the fold level of the previous line!
3377 * Careful: This means you can't call this function twice on the same line.
3378 * Doesn't use any caching.
3379 * Sets flp->start when a start marker was found.
3380 */
3381 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003382foldlevelMarker(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383{
3384 char_u *startmarker;
3385 int cstart;
3386 int cend;
3387 int start_lvl = flp->lvl;
3388 char_u *s;
3389 int n;
3390
3391 /* cache a few values for speed */
3392 startmarker = flp->wp->w_p_fmr;
3393 cstart = *startmarker;
3394 ++startmarker;
3395 cend = *foldendmarker;
3396
3397 /* Default: no start found, next level is same as current level */
3398 flp->start = 0;
3399 flp->lvl_next = flp->lvl;
3400
3401 s = ml_get_buf(flp->wp->w_buffer, flp->lnum + flp->off, FALSE);
3402 while (*s)
3403 {
3404 if (*s == cstart
3405 && STRNCMP(s + 1, startmarker, foldstartmarkerlen - 1) == 0)
3406 {
3407 /* found startmarker: set flp->lvl */
3408 s += foldstartmarkerlen;
3409 if (VIM_ISDIGIT(*s))
3410 {
3411 n = atoi((char *)s);
3412 if (n > 0)
3413 {
3414 flp->lvl = n;
3415 flp->lvl_next = n;
3416 if (n <= start_lvl)
3417 flp->start = 1;
3418 else
3419 flp->start = n - start_lvl;
3420 }
3421 }
3422 else
3423 {
3424 ++flp->lvl;
3425 ++flp->lvl_next;
3426 ++flp->start;
3427 }
3428 }
3429 else if (*s == cend
3430 && STRNCMP(s + 1, foldendmarker + 1, foldendmarkerlen - 1) == 0)
3431 {
3432 /* found endmarker: set flp->lvl_next */
3433 s += foldendmarkerlen;
3434 if (VIM_ISDIGIT(*s))
3435 {
3436 n = atoi((char *)s);
3437 if (n > 0)
3438 {
3439 flp->lvl = n;
3440 flp->lvl_next = n - 1;
3441 /* never start a fold with an end marker */
Bram Moolenaar3ee02292010-01-19 17:24:25 +01003442 if (flp->lvl_next > start_lvl)
3443 flp->lvl_next = start_lvl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 }
3445 }
3446 else
3447 --flp->lvl_next;
3448 }
3449 else
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003450 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 }
3452
3453 /* The level can't go negative, must be missing a start marker. */
3454 if (flp->lvl_next < 0)
3455 flp->lvl_next = 0;
3456}
3457
3458/* foldlevelSyntax() {{{2 */
3459/*
3460 * Low level function to get the foldlevel for the "syntax" method.
3461 * Doesn't use any caching.
3462 */
3463 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003464foldlevelSyntax(fline_T *flp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465{
3466#ifndef FEAT_SYN_HL
3467 flp->start = 0;
3468 flp->lvl = 0;
3469#else
3470 linenr_T lnum = flp->lnum + flp->off;
3471 int n;
3472
3473 /* Use the maximum fold level at the start of this line and the next. */
3474 flp->lvl = syn_get_foldlevel(flp->wp, lnum);
3475 flp->start = 0;
3476 if (lnum < flp->wp->w_buffer->b_ml.ml_line_count)
3477 {
3478 n = syn_get_foldlevel(flp->wp, lnum + 1);
3479 if (n > flp->lvl)
3480 {
3481 flp->start = n - flp->lvl; /* fold(s) start here */
3482 flp->lvl = n;
3483 }
3484 }
3485#endif
3486}
3487
3488/* functions for storing the fold state in a View {{{1 */
3489/* put_folds() {{{2 */
3490#if defined(FEAT_SESSION) || defined(PROTO)
Bram Moolenaard25c16e2016-01-29 22:13:30 +01003491static int put_folds_recurse(FILE *fd, garray_T *gap, linenr_T off);
3492static int put_foldopen_recurse(FILE *fd, win_T *wp, garray_T *gap, linenr_T off);
3493static int put_fold_open_close(FILE *fd, fold_T *fp, linenr_T off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494
3495/*
3496 * Write commands to "fd" to restore the manual folds in window "wp".
3497 * Return FAIL if writing fails.
3498 */
3499 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003500put_folds(FILE *fd, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501{
3502 if (foldmethodIsManual(wp))
3503 {
3504 if (put_line(fd, "silent! normal! zE") == FAIL
3505 || put_folds_recurse(fd, &wp->w_folds, (linenr_T)0) == FAIL)
3506 return FAIL;
3507 }
3508
3509 /* If some folds are manually opened/closed, need to restore that. */
3510 if (wp->w_fold_manual)
Bram Moolenaard25ad652012-02-29 19:20:02 +01003511 return put_foldopen_recurse(fd, wp, &wp->w_folds, (linenr_T)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512
3513 return OK;
3514}
3515
3516/* put_folds_recurse() {{{2 */
3517/*
3518 * Write commands to "fd" to recreate manually created folds.
3519 * Returns FAIL when writing failed.
3520 */
3521 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003522put_folds_recurse(FILE *fd, garray_T *gap, linenr_T off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523{
3524 int i;
3525 fold_T *fp;
3526
3527 fp = (fold_T *)gap->ga_data;
3528 for (i = 0; i < gap->ga_len; i++)
3529 {
3530 /* Do nested folds first, they will be created closed. */
3531 if (put_folds_recurse(fd, &fp->fd_nested, off + fp->fd_top) == FAIL)
3532 return FAIL;
3533 if (fprintf(fd, "%ld,%ldfold", fp->fd_top + off,
3534 fp->fd_top + off + fp->fd_len - 1) < 0
3535 || put_eol(fd) == FAIL)
3536 return FAIL;
3537 ++fp;
3538 }
3539 return OK;
3540}
3541
3542/* put_foldopen_recurse() {{{2 */
3543/*
3544 * Write commands to "fd" to open and close manually opened/closed folds.
3545 * Returns FAIL when writing failed.
3546 */
3547 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003548put_foldopen_recurse(
3549 FILE *fd,
3550 win_T *wp,
3551 garray_T *gap,
3552 linenr_T off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553{
3554 int i;
Bram Moolenaard25ad652012-02-29 19:20:02 +01003555 int level;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556 fold_T *fp;
3557
3558 fp = (fold_T *)gap->ga_data;
3559 for (i = 0; i < gap->ga_len; i++)
3560 {
3561 if (fp->fd_flags != FD_LEVEL)
3562 {
3563 if (fp->fd_nested.ga_len > 0)
3564 {
Bram Moolenaard25ad652012-02-29 19:20:02 +01003565 /* open nested folds while this fold is open */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003566 if (fprintf(fd, "%ld", fp->fd_top + off) < 0
3567 || put_eol(fd) == FAIL
Bram Moolenaar002a4ed2012-08-29 15:22:25 +02003568 || put_line(fd, "normal! zo") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 return FAIL;
Bram Moolenaard25ad652012-02-29 19:20:02 +01003570 if (put_foldopen_recurse(fd, wp, &fp->fd_nested,
3571 off + fp->fd_top)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 == FAIL)
3573 return FAIL;
Bram Moolenaard25ad652012-02-29 19:20:02 +01003574 /* close the parent when needed */
3575 if (fp->fd_flags == FD_CLOSED)
3576 {
3577 if (put_fold_open_close(fd, fp, off) == FAIL)
3578 return FAIL;
3579 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 }
Bram Moolenaard25ad652012-02-29 19:20:02 +01003581 else
3582 {
3583 /* Open or close the leaf according to the window foldlevel.
3584 * Do not close a leaf that is already closed, as it will close
3585 * the parent. */
3586 level = foldLevelWin(wp, off + fp->fd_top);
3587 if ((fp->fd_flags == FD_CLOSED && wp->w_p_fdl >= level)
3588 || (fp->fd_flags != FD_CLOSED && wp->w_p_fdl < level))
3589 if (put_fold_open_close(fd, fp, off) == FAIL)
3590 return FAIL;
3591 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592 }
3593 ++fp;
3594 }
3595
3596 return OK;
3597}
Bram Moolenaard25ad652012-02-29 19:20:02 +01003598
3599/* put_fold_open_close() {{{2 */
3600/*
3601 * Write the open or close command to "fd".
3602 * Returns FAIL when writing failed.
3603 */
3604 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003605put_fold_open_close(FILE *fd, fold_T *fp, linenr_T off)
Bram Moolenaard25ad652012-02-29 19:20:02 +01003606{
3607 if (fprintf(fd, "%ld", fp->fd_top + off) < 0
3608 || put_eol(fd) == FAIL
Bram Moolenaar002a4ed2012-08-29 15:22:25 +02003609 || fprintf(fd, "normal! z%c",
Bram Moolenaard25ad652012-02-29 19:20:02 +01003610 fp->fd_flags == FD_CLOSED ? 'c' : 'o') < 0
3611 || put_eol(fd) == FAIL)
3612 return FAIL;
3613
3614 return OK;
3615}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616#endif /* FEAT_SESSION */
3617
3618/* }}}1 */
3619#endif /* defined(FEAT_FOLDING) || defined(PROTO) */