blob: ff1139dcb34b12d4f6de495393ebfb27fa192381 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vim:set ts=8 sts=4 sw=4:
2 * 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 */
46static void newFoldLevelWin __ARGS((win_T *wp));
47static int checkCloseRec __ARGS((garray_T *gap, linenr_T lnum, int level));
48static int foldFind __ARGS((garray_T *gap, linenr_T lnum, fold_T **fpp));
49static int foldLevelWin __ARGS((win_T *wp, linenr_T lnum));
50static void checkupdate __ARGS((win_T *wp));
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000051static void setFoldRepeat __ARGS((linenr_T lnum, long count, int do_open));
Bram Moolenaar071d4272004-06-13 20:20:40 +000052static linenr_T setManualFold __ARGS((linenr_T lnum, int opening, int recurse, int *donep));
53static linenr_T setManualFoldWin __ARGS((win_T *wp, linenr_T lnum, int opening, int recurse, int *donep));
54static void foldOpenNested __ARGS((fold_T *fpr));
55static void deleteFoldEntry __ARGS((garray_T *gap, int idx, int recursive));
56static void foldMarkAdjustRecurse __ARGS((garray_T *gap, linenr_T line1, linenr_T line2, long amount, long amount_after));
57static int getDeepestNestingRecurse __ARGS((garray_T *gap));
58static int check_closed __ARGS((win_T *win, fold_T *fp, int *use_levelp, int level, int *maybe_smallp, linenr_T lnum_off));
59static void checkSmall __ARGS((win_T *wp, fold_T *fp, linenr_T lnum_off));
60static void setSmallMaybe __ARGS((garray_T *gap));
61static void foldCreateMarkers __ARGS((linenr_T start, linenr_T end));
62static void foldAddMarker __ARGS((linenr_T lnum, char_u *marker, int markerlen));
63static void deleteFoldMarkers __ARGS((fold_T *fp, int recursive, linenr_T lnum_off));
64static void foldDelMarker __ARGS((linenr_T lnum, char_u *marker, int markerlen));
65static void foldUpdateIEMS __ARGS((win_T *wp, linenr_T top, linenr_T bot));
66static void parseMarker __ARGS((win_T *wp));
67
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 */
98#if defined(FEAT_WINDOWS) || defined(PROTO)
99/*
100 * Copy that folding state from window "wp_from" to window "wp_to".
101 */
102 void
103copyFoldingState(wp_from, wp_to)
104 win_T *wp_from;
105 win_T *wp_to;
106{
107 wp_to->w_fold_manual = wp_from->w_fold_manual;
108 wp_to->w_foldinvalid = wp_from->w_foldinvalid;
109 cloneFoldGrowArray(&wp_from->w_folds, &wp_to->w_folds);
110}
111#endif
112
113/* hasAnyFolding() {{{2 */
114/*
115 * Return TRUE if there may be folded lines in the current window.
116 */
117 int
118hasAnyFolding(win)
119 win_T *win;
120{
121 /* very simple now, but can become more complex later */
122 return (win->w_p_fen
123 && (!foldmethodIsManual(win) || win->w_folds.ga_len > 0));
124}
125
126/* hasFolding() {{{2 */
127/*
128 * Return TRUE if line "lnum" in the current window is part of a closed
129 * fold.
130 * When returning TRUE, *firstp and *lastp are set to the first and last
131 * lnum of the sequence of folded lines (skipped when NULL).
132 */
133 int
134hasFolding(lnum, firstp, lastp)
135 linenr_T lnum;
136 linenr_T *firstp;
137 linenr_T *lastp;
138{
139 return hasFoldingWin(curwin, lnum, firstp, lastp, TRUE, NULL);
140}
141
142/* hasFoldingWin() {{{2 */
143 int
144hasFoldingWin(win, lnum, firstp, lastp, cache, infop)
145 win_T *win;
146 linenr_T lnum;
147 linenr_T *firstp;
148 linenr_T *lastp;
149 int cache; /* when TRUE: use cached values of window */
150 foldinfo_T *infop; /* where to store fold info */
151{
152 int had_folded = FALSE;
153 linenr_T first = 0;
154 linenr_T last = 0;
155 linenr_T lnum_rel = lnum;
156 int x;
157 fold_T *fp;
158 int level = 0;
159 int use_level = FALSE;
160 int maybe_small = FALSE;
161 garray_T *gap;
162 int low_level = 0;;
163
164 checkupdate(win);
165 /*
166 * Return quickly when there is no folding at all in this window.
167 */
168 if (!hasAnyFolding(win))
169 {
170 if (infop != NULL)
171 infop->fi_level = 0;
172 return FALSE;
173 }
174
175 if (cache)
176 {
177 /*
178 * First look in cached info for displayed lines. This is probably
179 * the fastest, but it can only be used if the entry is still valid.
180 */
181 x = find_wl_entry(win, lnum);
182 if (x >= 0)
183 {
184 first = win->w_lines[x].wl_lnum;
185 last = win->w_lines[x].wl_lastlnum;
186 had_folded = win->w_lines[x].wl_folded;
187 }
188 }
189
190 if (first == 0)
191 {
192 /*
193 * Recursively search for a fold that contains "lnum".
194 */
195 gap = &win->w_folds;
196 for (;;)
197 {
198 if (!foldFind(gap, lnum_rel, &fp))
199 break;
200
201 /* Remember lowest level of fold that starts in "lnum". */
202 if (lnum_rel == fp->fd_top && low_level == 0)
203 low_level = level + 1;
204
205 first += fp->fd_top;
206 last += fp->fd_top;
207
208 /* is this fold closed? */
209 had_folded = check_closed(win, fp, &use_level, level,
210 &maybe_small, lnum - lnum_rel);
211 if (had_folded)
212 {
213 /* Fold closed: Set last and quit loop. */
214 last += fp->fd_len - 1;
215 break;
216 }
217
218 /* Fold found, but it's open: Check nested folds. Line number is
219 * relative to containing fold. */
220 gap = &fp->fd_nested;
221 lnum_rel -= fp->fd_top;
222 ++level;
223 }
224 }
225
226 if (!had_folded)
227 {
228 if (infop != NULL)
229 {
230 infop->fi_level = level;
231 infop->fi_lnum = lnum - lnum_rel;
232 infop->fi_low_level = low_level == 0 ? level : low_level;
233 }
234 return FALSE;
235 }
236
237 if (lastp != NULL)
238 *lastp = last;
239 if (firstp != NULL)
240 *firstp = first;
241 if (infop != NULL)
242 {
243 infop->fi_level = level + 1;
244 infop->fi_lnum = first;
245 infop->fi_low_level = low_level == 0 ? level + 1 : low_level;
246 }
247 return TRUE;
248}
249
250/* foldLevel() {{{2 */
251/*
252 * Return fold level at line number "lnum" in the current window.
253 */
254 int
255foldLevel(lnum)
256 linenr_T lnum;
257{
258 /* While updating the folds lines between invalid_top and invalid_bot have
259 * an undefined fold level. Otherwise update the folds first. */
260 if (invalid_top == (linenr_T)0)
261 checkupdate(curwin);
262 else if (lnum == prev_lnum && prev_lnum_lvl >= 0)
263 return prev_lnum_lvl;
264 else if (lnum >= invalid_top && lnum <= invalid_bot)
265 return -1;
266
267 /* Return quickly when there is no folding at all in this window. */
268 if (!hasAnyFolding(curwin))
269 return 0;
270
271 return foldLevelWin(curwin, lnum);
272}
273
274/* lineFolded() {{{2 */
275/*
276 * Low level function to check if a line is folded. Doesn't use any caching.
277 * Return TRUE if line is folded.
278 * Return FALSE if line is not folded.
279 * Return MAYBE if the line is folded when next to a folded line.
280 */
281 int
282lineFolded(win, lnum)
283 win_T *win;
284 linenr_T lnum;
285{
286 return foldedCount(win, lnum, NULL) != 0;
287}
288
289/* foldedCount() {{{2 */
290/*
291 * Count the number of lines that are folded at line number "lnum".
292 * Normally "lnum" is the first line of a possible fold, and the returned
293 * number is the number of lines in the fold.
294 * Doesn't use caching from the displayed window.
295 * Returns number of folded lines from "lnum", or 0 if line is not folded.
296 * When "infop" is not NULL, fills *infop with the fold level info.
297 */
298 long
299foldedCount(win, lnum, infop)
300 win_T *win;
301 linenr_T lnum;
302 foldinfo_T *infop;
303{
304 linenr_T last;
305
306 if (hasFoldingWin(win, lnum, NULL, &last, FALSE, infop))
307 return (long)(last - lnum + 1);
308 return 0;
309}
310
311/* foldmethodIsManual() {{{2 */
312/*
313 * Return TRUE if 'foldmethod' is "manual"
314 */
315 int
316foldmethodIsManual(wp)
317 win_T *wp;
318{
319 return (wp->w_p_fdm[3] == 'u');
320}
321
322/* foldmethodIsIndent() {{{2 */
323/*
324 * Return TRUE if 'foldmethod' is "indent"
325 */
326 int
327foldmethodIsIndent(wp)
328 win_T *wp;
329{
330 return (wp->w_p_fdm[0] == 'i');
331}
332
333/* foldmethodIsExpr() {{{2 */
334/*
335 * Return TRUE if 'foldmethod' is "expr"
336 */
337 int
338foldmethodIsExpr(wp)
339 win_T *wp;
340{
341 return (wp->w_p_fdm[1] == 'x');
342}
343
344/* foldmethodIsMarker() {{{2 */
345/*
346 * Return TRUE if 'foldmethod' is "marker"
347 */
348 int
349foldmethodIsMarker(wp)
350 win_T *wp;
351{
352 return (wp->w_p_fdm[2] == 'r');
353}
354
355/* foldmethodIsSyntax() {{{2 */
356/*
357 * Return TRUE if 'foldmethod' is "syntax"
358 */
359 int
360foldmethodIsSyntax(wp)
361 win_T *wp;
362{
363 return (wp->w_p_fdm[0] == 's');
364}
365
366/* foldmethodIsDiff() {{{2 */
367/*
368 * Return TRUE if 'foldmethod' is "diff"
369 */
370 int
371foldmethodIsDiff(wp)
372 win_T *wp;
373{
374 return (wp->w_p_fdm[0] == 'd');
375}
376
377/* closeFold() {{{2 */
378/*
379 * Close fold for current window at line "lnum".
380 * Repeat "count" times.
381 */
382 void
383closeFold(lnum, count)
384 linenr_T lnum;
385 long count;
386{
387 setFoldRepeat(lnum, count, FALSE);
388}
389
390/* closeFoldRecurse() {{{2 */
391/*
392 * Close fold for current window at line "lnum" recursively.
393 */
394 void
395closeFoldRecurse(lnum)
396 linenr_T lnum;
397{
398 (void)setManualFold(lnum, FALSE, TRUE, NULL);
399}
400
401/* opFoldRange() {{{2 */
402/*
403 * Open or Close folds for current window in lines "first" to "last".
404 * Used for "zo", "zO", "zc" and "zC" in Visual mode.
405 */
406 void
407opFoldRange(first, last, opening, recurse, had_visual)
408 linenr_T first;
409 linenr_T last;
410 int opening; /* TRUE to open, FALSE to close */
411 int recurse; /* TRUE to do it recursively */
412 int had_visual; /* TRUE when Visual selection used */
413{
414 int done = DONE_NOTHING; /* avoid error messages */
415 linenr_T lnum;
416 linenr_T lnum_next;
417
418 for (lnum = first; lnum <= last; lnum = lnum_next + 1)
419 {
420 lnum_next = lnum;
421 /* Opening one level only: next fold to open is after the one going to
422 * be opened. */
423 if (opening && !recurse)
424 (void)hasFolding(lnum, NULL, &lnum_next);
425 (void)setManualFold(lnum, opening, recurse, &done);
426 /* Closing one level only: next line to close a fold is after just
427 * closed fold. */
428 if (!opening && !recurse)
429 (void)hasFolding(lnum, NULL, &lnum_next);
430 }
431 if (done == DONE_NOTHING)
432 EMSG(_(e_nofold));
433#ifdef FEAT_VISUAL
434 /* Force a redraw to remove the Visual highlighting. */
435 if (had_visual)
436 redraw_curbuf_later(INVERTED);
437#endif
438}
439
440/* openFold() {{{2 */
441/*
442 * Open fold for current window at line "lnum".
443 * Repeat "count" times.
444 */
445 void
446openFold(lnum, count)
447 linenr_T lnum;
448 long count;
449{
450 setFoldRepeat(lnum, count, TRUE);
451}
452
453/* openFoldRecurse() {{{2 */
454/*
455 * Open fold for current window at line "lnum" recursively.
456 */
457 void
458openFoldRecurse(lnum)
459 linenr_T lnum;
460{
461 (void)setManualFold(lnum, TRUE, TRUE, NULL);
462}
463
464/* foldOpenCursor() {{{2 */
465/*
466 * Open folds until the cursor line is not in a closed fold.
467 */
468 void
469foldOpenCursor()
470{
471 int done;
472
473 checkupdate(curwin);
474 if (hasAnyFolding(curwin))
475 for (;;)
476 {
477 done = DONE_NOTHING;
478 (void)setManualFold(curwin->w_cursor.lnum, TRUE, FALSE, &done);
479 if (!(done & DONE_ACTION))
480 break;
481 }
482}
483
484/* newFoldLevel() {{{2 */
485/*
486 * Set new foldlevel for current window.
487 */
488 void
489newFoldLevel()
490{
491 newFoldLevelWin(curwin);
492
493#ifdef FEAT_DIFF
494 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
495 {
496 win_T *wp;
497
498 /*
499 * Set the same foldlevel in other windows in diff mode.
500 */
501 FOR_ALL_WINDOWS(wp)
502 {
503 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
504 {
505 wp->w_p_fdl = curwin->w_p_fdl;
506 newFoldLevelWin(wp);
507 }
508 }
509 }
510#endif
511}
512
513 static void
514newFoldLevelWin(wp)
515 win_T *wp;
516{
517 fold_T *fp;
518 int i;
519
520 checkupdate(wp);
521 if (wp->w_fold_manual)
522 {
523 /* Set all flags for the first level of folds to FD_LEVEL. Following
524 * manual open/close will then change the flags to FD_OPEN or
525 * FD_CLOSED for those folds that don't use 'foldlevel'. */
526 fp = (fold_T *)wp->w_folds.ga_data;
527 for (i = 0; i < wp->w_folds.ga_len; ++i)
528 fp[i].fd_flags = FD_LEVEL;
529 wp->w_fold_manual = FALSE;
530 }
531 changed_window_setting_win(wp);
532}
533
534/* foldCheckClose() {{{2 */
535/*
536 * Apply 'foldlevel' to all folds that don't contain the cursor.
537 */
538 void
539foldCheckClose()
540{
541 if (*p_fcl != NUL) /* can only be "all" right now */
542 {
543 checkupdate(curwin);
544 if (checkCloseRec(&curwin->w_folds, curwin->w_cursor.lnum,
545 (int)curwin->w_p_fdl))
546 changed_window_setting();
547 }
548}
549
550/* checkCloseRec() {{{2 */
551 static int
552checkCloseRec(gap, lnum, level)
553 garray_T *gap;
554 linenr_T lnum;
555 int level;
556{
557 fold_T *fp;
558 int retval = FALSE;
559 int i;
560
561 fp = (fold_T *)gap->ga_data;
562 for (i = 0; i < gap->ga_len; ++i)
563 {
564 /* Only manually opened folds may need to be closed. */
565 if (fp[i].fd_flags == FD_OPEN)
566 {
567 if (level <= 0 && (lnum < fp[i].fd_top
568 || lnum >= fp[i].fd_top + fp[i].fd_len))
569 {
570 fp[i].fd_flags = FD_LEVEL;
571 retval = TRUE;
572 }
573 else
574 retval |= checkCloseRec(&fp[i].fd_nested, lnum - fp[i].fd_top,
575 level - 1);
576 }
577 }
578 return retval;
579}
580
581/* foldCreateAllowed() {{{2 */
582/*
583 * Return TRUE if it's allowed to manually create or delete a fold.
584 * Give an error message and return FALSE if not.
585 */
586 int
587foldManualAllowed(create)
588 int create;
589{
590 if (foldmethodIsManual(curwin) || foldmethodIsMarker(curwin))
591 return TRUE;
592 if (create)
593 EMSG(_("E350: Cannot create fold with current 'foldmethod'"));
594 else
595 EMSG(_("E351: Cannot delete fold with current 'foldmethod'"));
596 return FALSE;
597}
598
599/* foldCreate() {{{2 */
600/*
601 * Create a fold from line "start" to line "end" (inclusive) in the current
602 * window.
603 */
604 void
605foldCreate(start, end)
606 linenr_T start;
607 linenr_T end;
608{
609 fold_T *fp;
610 garray_T *gap;
611 garray_T fold_ga;
612 int i, j;
613 int cont;
614 int use_level = FALSE;
615 int closed = FALSE;
616 int level = 0;
617 linenr_T start_rel = start;
618 linenr_T end_rel = end;
619
620 if (start > end)
621 {
622 /* reverse the range */
623 end = start_rel;
624 start = end_rel;
625 start_rel = start;
626 end_rel = end;
627 }
628
629 /* When 'foldmethod' is "marker" add markers, which creates the folds. */
630 if (foldmethodIsMarker(curwin))
631 {
632 foldCreateMarkers(start, end);
633 return;
634 }
635
636 checkupdate(curwin);
637
638 /* Find the place to insert the new fold. */
639 gap = &curwin->w_folds;
640 for (;;)
641 {
642 if (!foldFind(gap, start_rel, &fp))
643 break;
644 if (fp->fd_top + fp->fd_len > end_rel)
645 {
646 /* New fold is completely inside this fold: Go one level deeper. */
647 gap = &fp->fd_nested;
648 start_rel -= fp->fd_top;
649 end_rel -= fp->fd_top;
650 if (use_level || fp->fd_flags == FD_LEVEL)
651 {
652 use_level = TRUE;
653 if (level >= curwin->w_p_fdl)
654 closed = TRUE;
655 }
656 else if (fp->fd_flags == FD_CLOSED)
657 closed = TRUE;
658 ++level;
659 }
660 else
661 {
662 /* This fold and new fold overlap: Insert here and move some folds
663 * inside the new fold. */
664 break;
665 }
666 }
667
668 i = (int)(fp - (fold_T *)gap->ga_data);
669 if (ga_grow(gap, 1) == OK)
670 {
671 fp = (fold_T *)gap->ga_data + i;
672 ga_init2(&fold_ga, (int)sizeof(fold_T), 10);
673
674 /* Count number of folds that will be contained in the new fold. */
675 for (cont = 0; i + cont < gap->ga_len; ++cont)
676 if (fp[cont].fd_top > end_rel)
677 break;
678 if (cont > 0 && ga_grow(&fold_ga, cont) == OK)
679 {
680 /* If the first fold starts before the new fold, let the new fold
681 * start there. Otherwise the existing fold would change. */
682 if (start_rel > fp->fd_top)
683 start_rel = fp->fd_top;
684
685 /* When last contained fold isn't completely contained, adjust end
686 * of new fold. */
687 if (end_rel < fp[cont - 1].fd_top + fp[cont - 1].fd_len - 1)
688 end_rel = fp[cont - 1].fd_top + fp[cont - 1].fd_len - 1;
689 /* Move contained folds to inside new fold. */
690 mch_memmove(fold_ga.ga_data, fp, sizeof(fold_T) * cont);
691 fold_ga.ga_len += cont;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 i += cont;
693
694 /* Adjust line numbers in contained folds to be relative to the
695 * new fold. */
696 for (j = 0; j < cont; ++j)
697 ((fold_T *)fold_ga.ga_data)[j].fd_top -= start_rel;
698 }
699 /* Move remaining entries to after the new fold. */
700 if (i < gap->ga_len)
701 mch_memmove(fp + 1, (fold_T *)gap->ga_data + i,
702 sizeof(fold_T) * (gap->ga_len - i));
703 gap->ga_len = gap->ga_len + 1 - cont;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704
705 /* insert new fold */
706 fp->fd_nested = fold_ga;
707 fp->fd_top = start_rel;
708 fp->fd_len = end_rel - start_rel + 1;
709
710 /* We want the new fold to be closed. If it would remain open because
711 * of using 'foldlevel', need to adjust fd_flags of containing folds.
712 */
713 if (use_level && !closed && level < curwin->w_p_fdl)
714 closeFold(start, 1L);
715 if (!use_level)
716 curwin->w_fold_manual = TRUE;
717 fp->fd_flags = FD_CLOSED;
718 fp->fd_small = MAYBE;
719
720 /* redraw */
721 changed_window_setting();
722 }
723}
724
725/* deleteFold() {{{2 */
726/*
727 * Delete a fold at line "start" in the current window.
728 * When "end" is not 0, delete all folds from "start" to "end".
729 * When "recursive" is TRUE delete recursively.
730 */
731 void
732deleteFold(start, end, recursive, had_visual)
733 linenr_T start;
734 linenr_T end;
735 int recursive;
736 int had_visual; /* TRUE when Visual selection used */
737{
738 garray_T *gap;
739 fold_T *fp;
740 garray_T *found_ga;
741 fold_T *found_fp = NULL;
742 linenr_T found_off = 0;
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000743 int use_level;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 int maybe_small = FALSE;
745 int level = 0;
746 linenr_T lnum = start;
747 linenr_T lnum_off;
748 int did_one = FALSE;
749 linenr_T first_lnum = MAXLNUM;
750 linenr_T last_lnum = 0;
751
752 checkupdate(curwin);
753
754 while (lnum <= end)
755 {
756 /* Find the deepest fold for "start". */
757 gap = &curwin->w_folds;
758 found_ga = NULL;
759 lnum_off = 0;
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000760 use_level = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 for (;;)
762 {
763 if (!foldFind(gap, lnum - lnum_off, &fp))
764 break;
765 /* lnum is inside this fold, remember info */
766 found_ga = gap;
767 found_fp = fp;
768 found_off = lnum_off;
769
770 /* if "lnum" is folded, don't check nesting */
771 if (check_closed(curwin, fp, &use_level, level,
772 &maybe_small, lnum_off))
773 break;
774
775 /* check nested folds */
776 gap = &fp->fd_nested;
777 lnum_off += fp->fd_top;
778 ++level;
779 }
780 if (found_ga == NULL)
781 {
782 ++lnum;
783 }
784 else
785 {
786 lnum = found_fp->fd_top + found_fp->fd_len + found_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787
788 if (foldmethodIsManual(curwin))
789 deleteFoldEntry(found_ga,
790 (int)(found_fp - (fold_T *)found_ga->ga_data), recursive);
791 else
792 {
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000793 if (first_lnum > found_fp->fd_top + found_off)
794 first_lnum = found_fp->fd_top + found_off;
795 if (last_lnum < lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 last_lnum = lnum;
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000797 if (!did_one)
798 parseMarker(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 deleteFoldMarkers(found_fp, recursive, found_off);
800 }
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000801 did_one = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802
803 /* redraw window */
804 changed_window_setting();
805 }
806 }
807 if (!did_one)
808 {
809 EMSG(_(e_nofold));
810#ifdef FEAT_VISUAL
811 /* Force a redraw to remove the Visual highlighting. */
812 if (had_visual)
813 redraw_curbuf_later(INVERTED);
814#endif
815 }
Bram Moolenaar238b8e22009-01-06 14:02:45 +0000816 else
817 /* Deleting markers may make cursor column invalid. */
818 check_cursor_col();
819
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 if (last_lnum > 0)
821 changed_lines(first_lnum, (colnr_T)0, last_lnum, 0L);
822}
823
824/* clearFolding() {{{2 */
825/*
826 * Remove all folding for window "win".
827 */
828 void
829clearFolding(win)
830 win_T *win;
831{
832 deleteFoldRecurse(&win->w_folds);
833 win->w_foldinvalid = FALSE;
834}
835
836/* foldUpdate() {{{2 */
837/*
838 * Update folds for changes in the buffer of a window.
839 * Note that inserted/deleted lines must have already been taken care of by
840 * calling foldMarkAdjust().
841 * The changes in lines from top to bot (inclusive).
842 */
843 void
844foldUpdate(wp, top, bot)
845 win_T *wp;
846 linenr_T top;
847 linenr_T bot;
848{
849 fold_T *fp;
850
851 /* Mark all folds from top to bot as maybe-small. */
Bram Moolenaarcee6a352010-02-03 18:14:49 +0100852 (void)foldFind(&curwin->w_folds, top, &fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 while (fp < (fold_T *)curwin->w_folds.ga_data + curwin->w_folds.ga_len
854 && fp->fd_top < bot)
855 {
856 fp->fd_small = MAYBE;
Bram Moolenaarcee6a352010-02-03 18:14:49 +0100857
858 /* Not sure if this is the right place to reset fd_flags (suggested by
859 * Lech Lorens). */
860 if (wp->w_foldinvalid)
861 fp->fd_flags = FD_LEVEL;
862
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 ++fp;
864 }
865
866 if (foldmethodIsIndent(wp)
867 || foldmethodIsExpr(wp)
868 || foldmethodIsMarker(wp)
869#ifdef FEAT_DIFF
870 || foldmethodIsDiff(wp)
871#endif
872 || foldmethodIsSyntax(wp))
Bram Moolenaarfa6d5af2007-10-14 13:33:20 +0000873 {
874 int save_got_int = got_int;
875
876 /* reset got_int here, otherwise it won't work */
877 got_int = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878 foldUpdateIEMS(wp, top, bot);
Bram Moolenaarfa6d5af2007-10-14 13:33:20 +0000879 got_int |= save_got_int;
880 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881}
882
883/* foldUpdateAll() {{{2 */
884/*
885 * Update all lines in a window for folding.
886 * Used when a fold setting changes or after reloading the buffer.
887 * The actual updating is postponed until fold info is used, to avoid doing
888 * every time a setting is changed or a syntax item is added.
889 */
890 void
891foldUpdateAll(win)
892 win_T *win;
893{
894 win->w_foldinvalid = TRUE;
895 redraw_win_later(win, NOT_VALID);
896}
897
898/* foldMoveTo() {{{2 */
899/*
900 * If "updown" is FALSE: Move to the start or end of the fold.
901 * If "updown" is TRUE: move to fold at the same level.
902 * If not moved return FAIL.
903 */
904 int
905foldMoveTo(updown, dir, count)
906 int updown;
907 int dir; /* FORWARD or BACKWARD */
908 long count;
909{
910 long n;
911 int retval = FAIL;
912 linenr_T lnum_off;
913 linenr_T lnum_found;
914 linenr_T lnum;
915 int use_level;
916 int maybe_small;
917 garray_T *gap;
918 fold_T *fp;
919 int level;
920 int last;
921
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000922 checkupdate(curwin);
923
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 /* Repeat "count" times. */
925 for (n = 0; n < count; ++n)
926 {
927 /* Find nested folds. Stop when a fold is closed. The deepest fold
928 * that moves the cursor is used. */
929 lnum_off = 0;
930 gap = &curwin->w_folds;
931 use_level = FALSE;
932 maybe_small = FALSE;
933 lnum_found = curwin->w_cursor.lnum;
934 level = 0;
935 last = FALSE;
936 for (;;)
937 {
938 if (!foldFind(gap, curwin->w_cursor.lnum - lnum_off, &fp))
939 {
940 if (!updown)
941 break;
942
943 /* When moving up, consider a fold above the cursor; when
944 * moving down consider a fold below the cursor. */
945 if (dir == FORWARD)
946 {
947 if (fp - (fold_T *)gap->ga_data >= gap->ga_len)
948 break;
949 --fp;
950 }
951 else
952 {
953 if (fp == (fold_T *)gap->ga_data)
954 break;
955 }
956 /* don't look for contained folds, they will always move
957 * the cursor too far. */
958 last = TRUE;
959 }
960
961 if (!last)
962 {
963 /* Check if this fold is closed. */
964 if (check_closed(curwin, fp, &use_level, level,
965 &maybe_small, lnum_off))
966 last = TRUE;
967
968 /* "[z" and "]z" stop at closed fold */
969 if (last && !updown)
970 break;
971 }
972
973 if (updown)
974 {
975 if (dir == FORWARD)
976 {
977 /* to start of next fold if there is one */
978 if (fp + 1 - (fold_T *)gap->ga_data < gap->ga_len)
979 {
980 lnum = fp[1].fd_top + lnum_off;
981 if (lnum > curwin->w_cursor.lnum)
982 lnum_found = lnum;
983 }
984 }
985 else
986 {
987 /* to end of previous fold if there is one */
988 if (fp > (fold_T *)gap->ga_data)
989 {
990 lnum = fp[-1].fd_top + lnum_off + fp[-1].fd_len - 1;
991 if (lnum < curwin->w_cursor.lnum)
992 lnum_found = lnum;
993 }
994 }
995 }
996 else
997 {
998 /* Open fold found, set cursor to its start/end and then check
999 * nested folds. */
1000 if (dir == FORWARD)
1001 {
1002 lnum = fp->fd_top + lnum_off + fp->fd_len - 1;
1003 if (lnum > curwin->w_cursor.lnum)
1004 lnum_found = lnum;
1005 }
1006 else
1007 {
1008 lnum = fp->fd_top + lnum_off;
1009 if (lnum < curwin->w_cursor.lnum)
1010 lnum_found = lnum;
1011 }
1012 }
1013
1014 if (last)
1015 break;
1016
1017 /* Check nested folds (if any). */
1018 gap = &fp->fd_nested;
1019 lnum_off += fp->fd_top;
1020 ++level;
1021 }
1022 if (lnum_found != curwin->w_cursor.lnum)
1023 {
1024 if (retval == FAIL)
1025 setpcmark();
1026 curwin->w_cursor.lnum = lnum_found;
1027 curwin->w_cursor.col = 0;
1028 retval = OK;
1029 }
1030 else
1031 break;
1032 }
1033
1034 return retval;
1035}
1036
1037/* foldInitWin() {{{2 */
1038/*
1039 * Init the fold info in a new window.
1040 */
1041 void
1042foldInitWin(newwin)
1043 win_T *newwin;
1044{
1045 ga_init2(&newwin->w_folds, (int)sizeof(fold_T), 10);
1046}
1047
1048/* find_wl_entry() {{{2 */
1049/*
1050 * Find an entry in the win->w_lines[] array for buffer line "lnum".
1051 * Only valid entries are considered (for entries where wl_valid is FALSE the
1052 * line number can be wrong).
1053 * Returns index of entry or -1 if not found.
1054 */
1055 int
1056find_wl_entry(win, lnum)
1057 win_T *win;
1058 linenr_T lnum;
1059{
1060 int i;
1061
1062 if (win->w_lines_valid > 0)
1063 for (i = 0; i < win->w_lines_valid; ++i)
1064 if (win->w_lines[i].wl_valid)
1065 {
1066 if (lnum < win->w_lines[i].wl_lnum)
1067 return -1;
1068 if (lnum <= win->w_lines[i].wl_lastlnum)
1069 return i;
1070 }
1071 return -1;
1072}
1073
1074/* foldAdjustVisual() {{{2 */
1075#ifdef FEAT_VISUAL
1076/*
1077 * Adjust the Visual area to include any fold at the start or end completely.
1078 */
1079 void
1080foldAdjustVisual()
1081{
1082 pos_T *start, *end;
1083 char_u *ptr;
1084
1085 if (!VIsual_active || !hasAnyFolding(curwin))
1086 return;
1087
1088 if (ltoreq(VIsual, curwin->w_cursor))
1089 {
1090 start = &VIsual;
1091 end = &curwin->w_cursor;
1092 }
1093 else
1094 {
1095 start = &curwin->w_cursor;
1096 end = &VIsual;
1097 }
1098 if (hasFolding(start->lnum, &start->lnum, NULL))
1099 start->col = 0;
1100 if (hasFolding(end->lnum, NULL, &end->lnum))
1101 {
1102 ptr = ml_get(end->lnum);
1103 end->col = (colnr_T)STRLEN(ptr);
1104 if (end->col > 0 && *p_sel == 'o')
1105 --end->col;
1106#ifdef FEAT_MBYTE
1107 /* prevent cursor from moving on the trail byte */
1108 if (has_mbyte)
1109 mb_adjust_cursor();
1110#endif
1111 }
1112}
1113#endif
1114
1115/* cursor_foldstart() {{{2 */
1116/*
1117 * Move the cursor to the first line of a closed fold.
1118 */
1119 void
1120foldAdjustCursor()
1121{
1122 (void)hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL);
1123}
1124
1125/* Internal functions for "fold_T" {{{1 */
1126/* cloneFoldGrowArray() {{{2 */
1127/*
1128 * Will "clone" (i.e deep copy) a garray_T of folds.
1129 *
1130 * Return FAIL if the operation cannot be completed, otherwise OK.
1131 */
1132 void
1133cloneFoldGrowArray(from, to)
1134 garray_T *from;
1135 garray_T *to;
1136{
1137 int i;
1138 fold_T *from_p;
1139 fold_T *to_p;
1140
1141 ga_init2(to, from->ga_itemsize, from->ga_growsize);
1142 if (from->ga_len == 0 || ga_grow(to, from->ga_len) == FAIL)
1143 return;
1144
1145 from_p = (fold_T *)from->ga_data;
1146 to_p = (fold_T *)to->ga_data;
1147
1148 for (i = 0; i < from->ga_len; i++)
1149 {
1150 to_p->fd_top = from_p->fd_top;
1151 to_p->fd_len = from_p->fd_len;
1152 to_p->fd_flags = from_p->fd_flags;
1153 to_p->fd_small = from_p->fd_small;
1154 cloneFoldGrowArray(&from_p->fd_nested, &to_p->fd_nested);
1155 ++to->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 ++from_p;
1157 ++to_p;
1158 }
1159}
1160
1161/* foldFind() {{{2 */
1162/*
1163 * Search for line "lnum" in folds of growarray "gap".
1164 * Set *fpp to the fold struct for the fold that contains "lnum" or
1165 * the first fold below it (careful: it can be beyond the end of the array!).
1166 * Returns FALSE when there is no fold that contains "lnum".
1167 */
1168 static int
1169foldFind(gap, lnum, fpp)
1170 garray_T *gap;
1171 linenr_T lnum;
1172 fold_T **fpp;
1173{
1174 linenr_T low, high;
1175 fold_T *fp;
1176 int i;
1177
1178 /*
1179 * Perform a binary search.
1180 * "low" is lowest index of possible match.
1181 * "high" is highest index of possible match.
1182 */
1183 fp = (fold_T *)gap->ga_data;
1184 low = 0;
1185 high = gap->ga_len - 1;
1186 while (low <= high)
1187 {
1188 i = (low + high) / 2;
1189 if (fp[i].fd_top > lnum)
1190 /* fold below lnum, adjust high */
1191 high = i - 1;
1192 else if (fp[i].fd_top + fp[i].fd_len <= lnum)
1193 /* fold above lnum, adjust low */
1194 low = i + 1;
1195 else
1196 {
1197 /* lnum is inside this fold */
1198 *fpp = fp + i;
1199 return TRUE;
1200 }
1201 }
1202 *fpp = fp + low;
1203 return FALSE;
1204}
1205
1206/* foldLevelWin() {{{2 */
1207/*
1208 * Return fold level at line number "lnum" in window "wp".
1209 */
1210 static int
1211foldLevelWin(wp, lnum)
1212 win_T *wp;
1213 linenr_T lnum;
1214{
1215 fold_T *fp;
1216 linenr_T lnum_rel = lnum;
1217 int level = 0;
1218 garray_T *gap;
1219
1220 /* Recursively search for a fold that contains "lnum". */
1221 gap = &wp->w_folds;
1222 for (;;)
1223 {
1224 if (!foldFind(gap, lnum_rel, &fp))
1225 break;
1226 /* Check nested folds. Line number is relative to containing fold. */
1227 gap = &fp->fd_nested;
1228 lnum_rel -= fp->fd_top;
1229 ++level;
1230 }
1231
1232 return level;
1233}
1234
1235/* checkupdate() {{{2 */
1236/*
1237 * Check if the folds in window "wp" are invalid and update them if needed.
1238 */
1239 static void
1240checkupdate(wp)
1241 win_T *wp;
1242{
1243 if (wp->w_foldinvalid)
1244 {
1245 foldUpdate(wp, (linenr_T)1, (linenr_T)MAXLNUM); /* will update all */
1246 wp->w_foldinvalid = FALSE;
1247 }
1248}
1249
1250/* setFoldRepeat() {{{2 */
1251/*
1252 * Open or close fold for current window at line "lnum".
1253 * Repeat "count" times.
1254 */
1255 static void
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00001256setFoldRepeat(lnum, count, do_open)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 linenr_T lnum;
1258 long count;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00001259 int do_open;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260{
1261 int done;
1262 long n;
1263
1264 for (n = 0; n < count; ++n)
1265 {
1266 done = DONE_NOTHING;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00001267 (void)setManualFold(lnum, do_open, FALSE, &done);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 if (!(done & DONE_ACTION))
1269 {
1270 /* Only give an error message when no fold could be opened. */
1271 if (n == 0 && !(done & DONE_FOLD))
1272 EMSG(_(e_nofold));
1273 break;
1274 }
1275 }
1276}
1277
1278/* setManualFold() {{{2 */
1279/*
1280 * Open or close the fold in the current window which contains "lnum".
1281 * Also does this for other windows in diff mode when needed.
1282 */
1283 static linenr_T
1284setManualFold(lnum, opening, recurse, donep)
1285 linenr_T lnum;
1286 int opening; /* TRUE when opening, FALSE when closing */
1287 int recurse; /* TRUE when closing/opening recursive */
1288 int *donep;
1289{
1290#ifdef FEAT_DIFF
1291 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
1292 {
1293 win_T *wp;
1294 linenr_T dlnum;
1295
1296 /*
1297 * Do the same operation in other windows in diff mode. Calculate the
1298 * line number from the diffs.
1299 */
1300 FOR_ALL_WINDOWS(wp)
1301 {
1302 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
1303 {
1304 dlnum = diff_lnum_win(curwin->w_cursor.lnum, wp);
1305 if (dlnum != 0)
1306 (void)setManualFoldWin(wp, dlnum, opening, recurse, NULL);
1307 }
1308 }
1309 }
1310#endif
1311
1312 return setManualFoldWin(curwin, lnum, opening, recurse, donep);
1313}
1314
1315/* setManualFoldWin() {{{2 */
1316/*
1317 * Open or close the fold in window "wp" which contains "lnum".
1318 * "donep", when not NULL, points to flag that is set to DONE_FOLD when some
1319 * fold was found and to DONE_ACTION when some fold was opened or closed.
1320 * When "donep" is NULL give an error message when no fold was found for
1321 * "lnum", but only if "wp" is "curwin".
1322 * Return the line number of the next line that could be closed.
1323 * It's only valid when "opening" is TRUE!
1324 */
1325 static linenr_T
1326setManualFoldWin(wp, lnum, opening, recurse, donep)
1327 win_T *wp;
1328 linenr_T lnum;
1329 int opening; /* TRUE when opening, FALSE when closing */
1330 int recurse; /* TRUE when closing/opening recursive */
1331 int *donep;
1332{
1333 fold_T *fp;
1334 fold_T *fp2;
1335 fold_T *found = NULL;
1336 int j;
1337 int level = 0;
1338 int use_level = FALSE;
1339 int found_fold = FALSE;
1340 garray_T *gap;
1341 linenr_T next = MAXLNUM;
1342 linenr_T off = 0;
1343 int done = 0;
1344
1345 checkupdate(wp);
1346
1347 /*
1348 * Find the fold, open or close it.
1349 */
1350 gap = &wp->w_folds;
1351 for (;;)
1352 {
1353 if (!foldFind(gap, lnum, &fp))
1354 {
1355 /* If there is a following fold, continue there next time. */
1356 if (fp < (fold_T *)gap->ga_data + gap->ga_len)
1357 next = fp->fd_top + off;
1358 break;
1359 }
1360
1361 /* lnum is inside this fold */
1362 found_fold = TRUE;
1363
1364 /* If there is a following fold, continue there next time. */
1365 if (fp + 1 < (fold_T *)gap->ga_data + gap->ga_len)
1366 next = fp[1].fd_top + off;
1367
1368 /* Change from level-dependent folding to manual. */
1369 if (use_level || fp->fd_flags == FD_LEVEL)
1370 {
1371 use_level = TRUE;
1372 if (level >= wp->w_p_fdl)
1373 fp->fd_flags = FD_CLOSED;
1374 else
1375 fp->fd_flags = FD_OPEN;
1376 fp2 = (fold_T *)fp->fd_nested.ga_data;
1377 for (j = 0; j < fp->fd_nested.ga_len; ++j)
1378 fp2[j].fd_flags = FD_LEVEL;
1379 }
1380
1381 /* Simple case: Close recursively means closing the fold. */
1382 if (!opening && recurse)
1383 {
1384 if (fp->fd_flags != FD_CLOSED)
1385 {
1386 done |= DONE_ACTION;
1387 fp->fd_flags = FD_CLOSED;
1388 }
1389 }
1390 else if (fp->fd_flags == FD_CLOSED)
1391 {
1392 /* When opening, open topmost closed fold. */
1393 if (opening)
1394 {
1395 fp->fd_flags = FD_OPEN;
1396 done |= DONE_ACTION;
1397 if (recurse)
1398 foldOpenNested(fp);
1399 }
1400 break;
1401 }
1402
1403 /* fold is open, check nested folds */
1404 found = fp;
1405 gap = &fp->fd_nested;
1406 lnum -= fp->fd_top;
1407 off += fp->fd_top;
1408 ++level;
1409 }
1410 if (found_fold)
1411 {
1412 /* When closing and not recurse, close deepest open fold. */
1413 if (!opening && found != NULL)
1414 {
1415 found->fd_flags = FD_CLOSED;
1416 done |= DONE_ACTION;
1417 }
1418 wp->w_fold_manual = TRUE;
1419 if (done & DONE_ACTION)
1420 changed_window_setting_win(wp);
1421 done |= DONE_FOLD;
1422 }
1423 else if (donep == NULL && wp == curwin)
1424 EMSG(_(e_nofold));
1425
1426 if (donep != NULL)
1427 *donep |= done;
1428
1429 return next;
1430}
1431
1432/* foldOpenNested() {{{2 */
1433/*
1434 * Open all nested folds in fold "fpr" recursively.
1435 */
1436 static void
1437foldOpenNested(fpr)
1438 fold_T *fpr;
1439{
1440 int i;
1441 fold_T *fp;
1442
1443 fp = (fold_T *)fpr->fd_nested.ga_data;
1444 for (i = 0; i < fpr->fd_nested.ga_len; ++i)
1445 {
1446 foldOpenNested(&fp[i]);
1447 fp[i].fd_flags = FD_OPEN;
1448 }
1449}
1450
1451/* deleteFoldEntry() {{{2 */
1452/*
1453 * Delete fold "idx" from growarray "gap".
1454 * When "recursive" is TRUE also delete all the folds contained in it.
1455 * When "recursive" is FALSE contained folds are moved one level up.
1456 */
1457 static void
1458deleteFoldEntry(gap, idx, recursive)
1459 garray_T *gap;
1460 int idx;
1461 int recursive;
1462{
1463 fold_T *fp;
1464 int i;
1465 long moved;
1466 fold_T *nfp;
1467
1468 fp = (fold_T *)gap->ga_data + idx;
1469 if (recursive || fp->fd_nested.ga_len == 0)
1470 {
1471 /* recursively delete the contained folds */
1472 deleteFoldRecurse(&fp->fd_nested);
1473 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474 if (idx < gap->ga_len)
1475 mch_memmove(fp, fp + 1, sizeof(fold_T) * (gap->ga_len - idx));
1476 }
1477 else
1478 {
1479 /* move nested folds one level up, to overwrite the fold that is
1480 * deleted. */
1481 moved = fp->fd_nested.ga_len;
1482 if (ga_grow(gap, (int)(moved - 1)) == OK)
1483 {
1484 /* adjust fd_top and fd_flags for the moved folds */
1485 nfp = (fold_T *)fp->fd_nested.ga_data;
1486 for (i = 0; i < moved; ++i)
1487 {
1488 nfp[i].fd_top += fp->fd_top;
1489 if (fp->fd_flags == FD_LEVEL)
1490 nfp[i].fd_flags = FD_LEVEL;
1491 if (fp->fd_small == MAYBE)
1492 nfp[i].fd_small = MAYBE;
1493 }
1494
1495 /* move the existing folds down to make room */
1496 if (idx < gap->ga_len)
1497 mch_memmove(fp + moved, fp + 1,
1498 sizeof(fold_T) * (gap->ga_len - idx));
1499 /* move the contained folds one level up */
1500 mch_memmove(fp, nfp, (size_t)(sizeof(fold_T) * moved));
1501 vim_free(nfp);
1502 gap->ga_len += moved - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503 }
1504 }
1505}
1506
1507/* deleteFoldRecurse() {{{2 */
1508/*
1509 * Delete nested folds in a fold.
1510 */
1511 void
1512deleteFoldRecurse(gap)
1513 garray_T *gap;
1514{
1515 int i;
1516
1517 for (i = 0; i < gap->ga_len; ++i)
1518 deleteFoldRecurse(&(((fold_T *)(gap->ga_data))[i].fd_nested));
1519 ga_clear(gap);
1520}
1521
1522/* foldMarkAdjust() {{{2 */
1523/*
1524 * Update line numbers of folds for inserted/deleted lines.
1525 */
1526 void
1527foldMarkAdjust(wp, line1, line2, amount, amount_after)
1528 win_T *wp;
1529 linenr_T line1;
1530 linenr_T line2;
1531 long amount;
1532 long amount_after;
1533{
1534 /* If deleting marks from line1 to line2, but not deleting all those
1535 * lines, set line2 so that only deleted lines have their folds removed. */
1536 if (amount == MAXLNUM && line2 >= line1 && line2 - line1 >= -amount_after)
1537 line2 = line1 - amount_after - 1;
1538 /* If appending a line in Insert mode, it should be included in the fold
1539 * just above the line. */
1540 if ((State & INSERT) && amount == (linenr_T)1 && line2 == MAXLNUM)
1541 --line1;
1542 foldMarkAdjustRecurse(&wp->w_folds, line1, line2, amount, amount_after);
1543}
1544
1545/* foldMarkAdjustRecurse() {{{2 */
1546 static void
1547foldMarkAdjustRecurse(gap, line1, line2, amount, amount_after)
1548 garray_T *gap;
1549 linenr_T line1;
1550 linenr_T line2;
1551 long amount;
1552 long amount_after;
1553{
1554 fold_T *fp;
1555 int i;
1556 linenr_T last;
1557 linenr_T top;
1558
1559 /* In Insert mode an inserted line at the top of a fold is considered part
1560 * of the fold, otherwise it isn't. */
1561 if ((State & INSERT) && amount == (linenr_T)1 && line2 == MAXLNUM)
1562 top = line1 + 1;
1563 else
1564 top = line1;
1565
1566 /* Find the fold containing or just below "line1". */
1567 (void)foldFind(gap, line1, &fp);
1568
1569 /*
1570 * Adjust all folds below "line1" that are affected.
1571 */
1572 for (i = (int)(fp - (fold_T *)gap->ga_data); i < gap->ga_len; ++i, ++fp)
1573 {
1574 /*
1575 * Check for these situations:
1576 * 1 2 3
1577 * 1 2 3
1578 * line1 2 3 4 5
1579 * 2 3 4 5
1580 * 2 3 4 5
1581 * line2 2 3 4 5
1582 * 3 5 6
1583 * 3 5 6
1584 */
1585
1586 last = fp->fd_top + fp->fd_len - 1; /* last line of fold */
1587
1588 /* 1. fold completely above line1: nothing to do */
1589 if (last < line1)
1590 continue;
1591
1592 /* 6. fold below line2: only adjust for amount_after */
1593 if (fp->fd_top > line2)
1594 {
1595 if (amount_after == 0)
1596 break;
1597 fp->fd_top += amount_after;
1598 }
1599 else
1600 {
1601 if (fp->fd_top >= top && last <= line2)
1602 {
1603 /* 4. fold completely contained in range */
1604 if (amount == MAXLNUM)
1605 {
1606 /* Deleting lines: delete the fold completely */
1607 deleteFoldEntry(gap, i, TRUE);
1608 --i; /* adjust index for deletion */
1609 --fp;
1610 }
1611 else
1612 fp->fd_top += amount;
1613 }
1614 else
1615 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 if (fp->fd_top < top)
1617 {
Bram Moolenaar194b94c2009-09-18 13:17:09 +00001618 /* 2 or 3: need to correct nested folds too */
1619 foldMarkAdjustRecurse(&fp->fd_nested, line1 - fp->fd_top,
1620 line2 - fp->fd_top, amount, amount_after);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 if (last <= line2)
1622 {
1623 /* 2. fold contains line1, line2 is below fold */
1624 if (amount == MAXLNUM)
1625 fp->fd_len = line1 - fp->fd_top;
1626 else
1627 fp->fd_len += amount;
1628 }
1629 else
1630 {
1631 /* 3. fold contains line1 and line2 */
1632 fp->fd_len += amount_after;
1633 }
1634 }
1635 else
1636 {
Bram Moolenaar194b94c2009-09-18 13:17:09 +00001637 /* 5. fold is below line1 and contains line2; need to
1638 * correct nested folds too */
1639 foldMarkAdjustRecurse(&fp->fd_nested, line1 - fp->fd_top,
1640 line2 - fp->fd_top, amount,
1641 amount_after + (fp->fd_top - top));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642 if (amount == MAXLNUM)
1643 {
1644 fp->fd_len -= line2 - fp->fd_top + 1;
1645 fp->fd_top = line1;
1646 }
1647 else
1648 {
1649 fp->fd_len += amount_after - amount;
1650 fp->fd_top += amount;
1651 }
1652 }
1653 }
1654 }
1655 }
1656}
1657
1658/* getDeepestNesting() {{{2 */
1659/*
1660 * Get the lowest 'foldlevel' value that makes the deepest nested fold in the
1661 * current window open.
1662 */
1663 int
1664getDeepestNesting()
1665{
1666 checkupdate(curwin);
1667 return getDeepestNestingRecurse(&curwin->w_folds);
1668}
1669
1670 static int
1671getDeepestNestingRecurse(gap)
1672 garray_T *gap;
1673{
1674 int i;
1675 int level;
1676 int maxlevel = 0;
1677 fold_T *fp;
1678
1679 fp = (fold_T *)gap->ga_data;
1680 for (i = 0; i < gap->ga_len; ++i)
1681 {
1682 level = getDeepestNestingRecurse(&fp[i].fd_nested) + 1;
1683 if (level > maxlevel)
1684 maxlevel = level;
1685 }
1686
1687 return maxlevel;
1688}
1689
1690/* check_closed() {{{2 */
1691/*
1692 * Check if a fold is closed and update the info needed to check nested folds.
1693 */
1694 static int
1695check_closed(win, fp, use_levelp, level, maybe_smallp, lnum_off)
1696 win_T *win;
1697 fold_T *fp;
1698 int *use_levelp; /* TRUE: outer fold had FD_LEVEL */
1699 int level; /* folding depth */
1700 int *maybe_smallp; /* TRUE: outer this had fd_small == MAYBE */
1701 linenr_T lnum_off; /* line number offset for fp->fd_top */
1702{
1703 int closed = FALSE;
1704
1705 /* Check if this fold is closed. If the flag is FD_LEVEL this
1706 * fold and all folds it contains depend on 'foldlevel'. */
1707 if (*use_levelp || fp->fd_flags == FD_LEVEL)
1708 {
1709 *use_levelp = TRUE;
1710 if (level >= win->w_p_fdl)
1711 closed = TRUE;
1712 }
1713 else if (fp->fd_flags == FD_CLOSED)
1714 closed = TRUE;
1715
1716 /* Small fold isn't closed anyway. */
1717 if (fp->fd_small == MAYBE)
1718 *maybe_smallp = TRUE;
1719 if (closed)
1720 {
1721 if (*maybe_smallp)
1722 fp->fd_small = MAYBE;
1723 checkSmall(win, fp, lnum_off);
1724 if (fp->fd_small == TRUE)
1725 closed = FALSE;
1726 }
1727 return closed;
1728}
1729
1730/* checkSmall() {{{2 */
1731/*
1732 * Update fd_small field of fold "fp".
1733 */
1734 static void
1735checkSmall(wp, fp, lnum_off)
1736 win_T *wp;
1737 fold_T *fp;
1738 linenr_T lnum_off; /* offset for fp->fd_top */
1739{
1740 int count;
1741 int n;
1742
1743 if (fp->fd_small == MAYBE)
1744 {
1745 /* Mark any nested folds to maybe-small */
1746 setSmallMaybe(&fp->fd_nested);
1747
1748 if (fp->fd_len > curwin->w_p_fml)
1749 fp->fd_small = FALSE;
1750 else
1751 {
1752 count = 0;
1753 for (n = 0; n < fp->fd_len; ++n)
1754 {
1755 count += plines_win_nofold(wp, fp->fd_top + lnum_off + n);
1756 if (count > curwin->w_p_fml)
1757 {
1758 fp->fd_small = FALSE;
1759 return;
1760 }
1761 }
1762 fp->fd_small = TRUE;
1763 }
1764 }
1765}
1766
1767/* setSmallMaybe() {{{2 */
1768/*
1769 * Set small flags in "gap" to MAYBE.
1770 */
1771 static void
1772setSmallMaybe(gap)
1773 garray_T *gap;
1774{
1775 int i;
1776 fold_T *fp;
1777
1778 fp = (fold_T *)gap->ga_data;
1779 for (i = 0; i < gap->ga_len; ++i)
1780 fp[i].fd_small = MAYBE;
1781}
1782
1783/* foldCreateMarkers() {{{2 */
1784/*
1785 * Create a fold from line "start" to line "end" (inclusive) in the current
1786 * window by adding markers.
1787 */
1788 static void
1789foldCreateMarkers(start, end)
1790 linenr_T start;
1791 linenr_T end;
1792{
1793 if (!curbuf->b_p_ma)
1794 {
1795 EMSG(_(e_modifiable));
1796 return;
1797 }
1798 parseMarker(curwin);
1799
1800 foldAddMarker(start, curwin->w_p_fmr, foldstartmarkerlen);
1801 foldAddMarker(end, foldendmarker, foldendmarkerlen);
1802
1803 /* Update both changes here, to avoid all folds after the start are
1804 * changed when the start marker is inserted and the end isn't. */
1805 changed_lines(start, (colnr_T)0, end, 0L);
1806}
1807
1808/* foldAddMarker() {{{2 */
1809/*
1810 * Add "marker[markerlen]" in 'commentstring' to line "lnum".
1811 */
1812 static void
1813foldAddMarker(lnum, marker, markerlen)
1814 linenr_T lnum;
1815 char_u *marker;
1816 int markerlen;
1817{
1818 char_u *cms = curbuf->b_p_cms;
1819 char_u *line;
1820 int line_len;
1821 char_u *newline;
1822 char_u *p = (char_u *)strstr((char *)curbuf->b_p_cms, "%s");
1823
1824 /* Allocate a new line: old-line + 'cms'-start + marker + 'cms'-end */
1825 line = ml_get(lnum);
1826 line_len = (int)STRLEN(line);
1827
1828 if (u_save(lnum - 1, lnum + 1) == OK)
1829 {
1830 newline = alloc((unsigned)(line_len + markerlen + STRLEN(cms) + 1));
1831 if (newline == NULL)
1832 return;
1833 STRCPY(newline, line);
1834 if (p == NULL)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00001835 vim_strncpy(newline + line_len, marker, markerlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836 else
1837 {
1838 STRCPY(newline + line_len, cms);
1839 STRNCPY(newline + line_len + (p - cms), marker, markerlen);
1840 STRCPY(newline + line_len + (p - cms) + markerlen, p + 2);
1841 }
1842
1843 ml_replace(lnum, newline, FALSE);
1844 }
1845}
1846
1847/* deleteFoldMarkers() {{{2 */
1848/*
1849 * Delete the markers for a fold, causing it to be deleted.
1850 */
1851 static void
1852deleteFoldMarkers(fp, recursive, lnum_off)
1853 fold_T *fp;
1854 int recursive;
1855 linenr_T lnum_off; /* offset for fp->fd_top */
1856{
1857 int i;
1858
1859 if (recursive)
1860 for (i = 0; i < fp->fd_nested.ga_len; ++i)
1861 deleteFoldMarkers((fold_T *)fp->fd_nested.ga_data + i, TRUE,
1862 lnum_off + fp->fd_top);
1863 foldDelMarker(fp->fd_top + lnum_off, curwin->w_p_fmr, foldstartmarkerlen);
1864 foldDelMarker(fp->fd_top + lnum_off + fp->fd_len - 1,
1865 foldendmarker, foldendmarkerlen);
1866}
1867
1868/* foldDelMarker() {{{2 */
1869/*
1870 * Delete marker "marker[markerlen]" at the end of line "lnum".
1871 * Delete 'commentstring' if it matches.
1872 * If the marker is not found, there is no error message. Could a missing
1873 * close-marker.
1874 */
1875 static void
1876foldDelMarker(lnum, marker, markerlen)
1877 linenr_T lnum;
1878 char_u *marker;
1879 int markerlen;
1880{
1881 char_u *line;
1882 char_u *newline;
1883 char_u *p;
1884 int len;
1885 char_u *cms = curbuf->b_p_cms;
1886 char_u *cms2;
1887
1888 line = ml_get(lnum);
1889 for (p = line; *p != NUL; ++p)
1890 if (STRNCMP(p, marker, markerlen) == 0)
1891 {
1892 /* Found the marker, include a digit if it's there. */
1893 len = markerlen;
1894 if (VIM_ISDIGIT(p[len]))
1895 ++len;
1896 if (*cms != NUL)
1897 {
1898 /* Also delete 'commentstring' if it matches. */
1899 cms2 = (char_u *)strstr((char *)cms, "%s");
1900 if (p - line >= cms2 - cms
1901 && STRNCMP(p - (cms2 - cms), cms, cms2 - cms) == 0
1902 && STRNCMP(p + len, cms2 + 2, STRLEN(cms2 + 2)) == 0)
1903 {
1904 p -= cms2 - cms;
1905 len += (int)STRLEN(cms) - 2;
1906 }
1907 }
1908 if (u_save(lnum - 1, lnum + 1) == OK)
1909 {
1910 /* Make new line: text-before-marker + text-after-marker */
1911 newline = alloc((unsigned)(STRLEN(line) - len + 1));
1912 if (newline != NULL)
1913 {
1914 STRNCPY(newline, line, p - line);
1915 STRCPY(newline + (p - line), p + len);
1916 ml_replace(lnum, newline, FALSE);
1917 }
1918 }
1919 break;
1920 }
1921}
1922
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001923/* get_foldtext() {{{2 */
1924/*
1925 * Return the text for a closed fold at line "lnum", with last line "lnume".
1926 * When 'foldtext' isn't set puts the result in "buf[51]". Otherwise the
1927 * result is in allocated memory.
1928 */
1929 char_u *
1930get_foldtext(wp, lnum, lnume, foldinfo, buf)
1931 win_T *wp;
1932 linenr_T lnum, lnume;
1933 foldinfo_T *foldinfo;
1934 char_u *buf;
1935{
1936 char_u *text = NULL;
1937
1938#ifdef FEAT_EVAL
1939 if (*wp->w_p_fdt != NUL)
1940 {
Bram Moolenaar5b88ba42009-11-03 15:30:12 +00001941 char_u dashes[MAX_LEVEL + 2];
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001942 win_T *save_curwin;
1943 int level;
1944 char_u *p;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001945
1946 /* Set "v:foldstart" and "v:foldend". */
1947 set_vim_var_nr(VV_FOLDSTART, lnum);
1948 set_vim_var_nr(VV_FOLDEND, lnume);
1949
1950 /* Set "v:folddashes" to a string of "level" dashes. */
1951 /* Set "v:foldlevel" to "level". */
1952 level = foldinfo->fi_level;
Bram Moolenaar5b88ba42009-11-03 15:30:12 +00001953 if (level > (int)sizeof(dashes) - 1)
1954 level = (int)sizeof(dashes) - 1;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001955 vim_memset(dashes, '-', (size_t)level);
1956 dashes[level] = NUL;
1957 set_vim_var_string(VV_FOLDDASHES, dashes, -1);
1958 set_vim_var_nr(VV_FOLDLEVEL, (long)level);
1959 save_curwin = curwin;
1960 curwin = wp;
1961 curbuf = wp->w_buffer;
1962
1963 ++emsg_off;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001964 text = eval_to_string_safe(wp->w_p_fdt, NULL,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001965 was_set_insecurely((char_u *)"foldtext", OPT_LOCAL));
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001966 --emsg_off;
1967
1968 curwin = save_curwin;
1969 curbuf = curwin->w_buffer;
1970 set_vim_var_string(VV_FOLDDASHES, NULL, -1);
1971
1972 if (text != NULL)
1973 {
1974 /* Replace unprintable characters, if there are any. But
1975 * replace a TAB with a space. */
1976 for (p = text; *p != NUL; ++p)
1977 {
1978# ifdef FEAT_MBYTE
Bram Moolenaar009b2592004-10-24 19:18:58 +00001979 int len;
1980
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001981 if (has_mbyte && (len = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001982 {
1983 if (!vim_isprintc((*mb_ptr2char)(p)))
1984 break;
1985 p += len - 1;
1986 }
1987 else
1988# endif
1989 if (*p == TAB)
1990 *p = ' ';
1991 else if (ptr2cells(p) > 1)
1992 break;
1993 }
1994 if (*p != NUL)
1995 {
1996 p = transstr(text);
1997 vim_free(text);
1998 text = p;
1999 }
2000 }
2001 }
2002 if (text == NULL)
2003#endif
2004 {
2005 sprintf((char *)buf, _("+--%3ld lines folded "),
2006 (long)(lnume - lnum + 1));
2007 text = buf;
2008 }
2009 return text;
2010}
2011
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012/* foldtext_cleanup() {{{2 */
2013/*
2014 * Remove 'foldmarker' and 'commentstring' from "str" (in-place).
2015 */
2016 void
2017foldtext_cleanup(str)
2018 char_u *str;
2019{
2020 char_u *cms_start; /* first part or the whole comment */
2021 int cms_slen = 0; /* length of cms_start */
2022 char_u *cms_end; /* last part of the comment or NULL */
2023 int cms_elen = 0; /* length of cms_end */
2024 char_u *s;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002025 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026 int len;
2027 int did1 = FALSE;
2028 int did2 = FALSE;
2029
2030 /* Ignore leading and trailing white space in 'commentstring'. */
2031 cms_start = skipwhite(curbuf->b_p_cms);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002032 cms_slen = (int)STRLEN(cms_start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033 while (cms_slen > 0 && vim_iswhite(cms_start[cms_slen - 1]))
2034 --cms_slen;
2035
2036 /* locate "%s" in 'commentstring', use the part before and after it. */
2037 cms_end = (char_u *)strstr((char *)cms_start, "%s");
2038 if (cms_end != NULL)
2039 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002040 cms_elen = cms_slen - (int)(cms_end - cms_start);
2041 cms_slen = (int)(cms_end - cms_start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042
2043 /* exclude white space before "%s" */
2044 while (cms_slen > 0 && vim_iswhite(cms_start[cms_slen - 1]))
2045 --cms_slen;
2046
2047 /* skip "%s" and white space after it */
2048 s = skipwhite(cms_end + 2);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002049 cms_elen -= (int)(s - cms_end);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 cms_end = s;
2051 }
2052 parseMarker(curwin);
2053
2054 for (s = str; *s != NUL; )
2055 {
2056 len = 0;
2057 if (STRNCMP(s, curwin->w_p_fmr, foldstartmarkerlen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 len = foldstartmarkerlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 else if (STRNCMP(s, foldendmarker, foldendmarkerlen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 len = foldendmarkerlen;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002061 if (len > 0)
2062 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 if (VIM_ISDIGIT(s[len]))
2064 ++len;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002065
2066 /* May remove 'commentstring' start. Useful when it's a double
2067 * quote and we already removed a double quote. */
2068 for (p = s; p > str && vim_iswhite(p[-1]); --p)
2069 ;
2070 if (p >= str + cms_slen
2071 && STRNCMP(p - cms_slen, cms_start, cms_slen) == 0)
2072 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002073 len += (int)(s - p) + cms_slen;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002074 s = p - cms_slen;
2075 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 }
2077 else if (cms_end != NULL)
2078 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00002079 if (!did1 && cms_slen > 0 && STRNCMP(s, cms_start, cms_slen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 {
2081 len = cms_slen;
2082 did1 = TRUE;
2083 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00002084 else if (!did2 && cms_elen > 0
2085 && STRNCMP(s, cms_end, cms_elen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 {
2087 len = cms_elen;
2088 did2 = TRUE;
2089 }
2090 }
2091 if (len != 0)
2092 {
2093 while (vim_iswhite(s[len]))
2094 ++len;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002095 STRMOVE(s, s + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 }
2097 else
2098 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002099 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100 }
2101 }
2102}
2103
2104/* Folding by indent, expr, marker and syntax. {{{1 */
2105/* Define "fline_T", passed to get fold level for a line. {{{2 */
2106typedef struct
2107{
2108 win_T *wp; /* window */
2109 linenr_T lnum; /* current line number */
2110 linenr_T off; /* offset between lnum and real line number */
2111 linenr_T lnum_save; /* line nr used by foldUpdateIEMSRecurse() */
2112 int lvl; /* current level (-1 for undefined) */
2113 int lvl_next; /* level used for next line */
2114 int start; /* number of folds that are forced to start at
2115 this line. */
2116 int end; /* level of fold that is forced to end below
2117 this line */
2118 int had_end; /* level of fold that is forced to end above
2119 this line (copy of "end" of prev. line) */
2120} fline_T;
2121
2122/* Flag is set when redrawing is needed. */
2123static int fold_changed;
2124
2125/* Function declarations. {{{2 */
2126static linenr_T foldUpdateIEMSRecurse __ARGS((garray_T *gap, int level, linenr_T startlnum, fline_T *flp, void (*getlevel)__ARGS((fline_T *)), linenr_T bot, int topflags));
2127static int foldInsert __ARGS((garray_T *gap, int i));
2128static void foldSplit __ARGS((garray_T *gap, int i, linenr_T top, linenr_T bot));
2129static void foldRemove __ARGS((garray_T *gap, linenr_T top, linenr_T bot));
2130static void foldMerge __ARGS((fold_T *fp1, garray_T *gap, fold_T *fp2));
2131static void foldlevelIndent __ARGS((fline_T *flp));
2132#ifdef FEAT_DIFF
2133static void foldlevelDiff __ARGS((fline_T *flp));
2134#endif
2135static void foldlevelExpr __ARGS((fline_T *flp));
2136static void foldlevelMarker __ARGS((fline_T *flp));
2137static void foldlevelSyntax __ARGS((fline_T *flp));
2138
2139/* foldUpdateIEMS() {{{2 */
2140/*
2141 * Update the folding for window "wp", at least from lines "top" to "bot".
2142 * Return TRUE if any folds did change.
2143 */
2144 static void
2145foldUpdateIEMS(wp, top, bot)
2146 win_T *wp;
2147 linenr_T top;
2148 linenr_T bot;
2149{
2150 linenr_T start;
2151 linenr_T end;
2152 fline_T fline;
2153 void (*getlevel)__ARGS((fline_T *));
2154 int level;
2155 fold_T *fp;
2156
2157 /* Avoid problems when being called recursively. */
2158 if (invalid_top != (linenr_T)0)
2159 return;
2160
2161 if (wp->w_foldinvalid)
2162 {
2163 /* Need to update all folds. */
2164 top = 1;
2165 bot = wp->w_buffer->b_ml.ml_line_count;
2166 wp->w_foldinvalid = FALSE;
2167
2168 /* Mark all folds a maybe-small. */
2169 setSmallMaybe(&wp->w_folds);
2170 }
2171
2172#ifdef FEAT_DIFF
2173 /* add the context for "diff" folding */
2174 if (foldmethodIsDiff(wp))
2175 {
2176 if (top > diff_context)
2177 top -= diff_context;
2178 else
2179 top = 1;
2180 bot += diff_context;
2181 }
2182#endif
2183
2184 /* When deleting lines at the end of the buffer "top" can be past the end
2185 * of the buffer. */
2186 if (top > wp->w_buffer->b_ml.ml_line_count)
2187 top = wp->w_buffer->b_ml.ml_line_count;
2188
2189 fold_changed = FALSE;
2190 fline.wp = wp;
2191 fline.off = 0;
2192 fline.lvl = 0;
2193 fline.lvl_next = -1;
2194 fline.start = 0;
2195 fline.end = MAX_LEVEL + 1;
2196 fline.had_end = MAX_LEVEL + 1;
2197
2198 invalid_top = top;
2199 invalid_bot = bot;
2200
2201 if (foldmethodIsMarker(wp))
2202 {
2203 getlevel = foldlevelMarker;
2204
2205 /* Init marker variables to speed up foldlevelMarker(). */
2206 parseMarker(wp);
2207
2208 /* Need to get the level of the line above top, it is used if there is
2209 * no marker at the top. */
2210 if (top > 1)
2211 {
2212 /* Get the fold level at top - 1. */
2213 level = foldLevelWin(wp, top - 1);
2214
2215 /* The fold may end just above the top, check for that. */
2216 fline.lnum = top - 1;
2217 fline.lvl = level;
2218 getlevel(&fline);
2219
2220 /* If a fold started here, we already had the level, if it stops
2221 * here, we need to use lvl_next. Could also start and end a fold
2222 * in the same line. */
2223 if (fline.lvl > level)
2224 fline.lvl = level - (fline.lvl - fline.lvl_next);
2225 else
2226 fline.lvl = fline.lvl_next;
2227 }
2228 fline.lnum = top;
2229 getlevel(&fline);
2230 }
2231 else
2232 {
2233 fline.lnum = top;
2234 if (foldmethodIsExpr(wp))
2235 {
2236 getlevel = foldlevelExpr;
2237 /* start one line back, because a "<1" may indicate the end of a
2238 * fold in the topline */
2239 if (top > 1)
2240 --fline.lnum;
2241 }
2242 else if (foldmethodIsSyntax(wp))
2243 getlevel = foldlevelSyntax;
2244#ifdef FEAT_DIFF
2245 else if (foldmethodIsDiff(wp))
2246 getlevel = foldlevelDiff;
2247#endif
2248 else
2249 getlevel = foldlevelIndent;
2250
2251 /* Backup to a line for which the fold level is defined. Since it's
2252 * always defined for line one, we will stop there. */
2253 fline.lvl = -1;
2254 for ( ; !got_int; --fline.lnum)
2255 {
2256 /* Reset lvl_next each time, because it will be set to a value for
2257 * the next line, but we search backwards here. */
2258 fline.lvl_next = -1;
2259 getlevel(&fline);
2260 if (fline.lvl >= 0)
2261 break;
2262 }
2263 }
2264
Bram Moolenaarec986472009-11-03 13:46:54 +00002265 /*
2266 * If folding is defined by the syntax, it is possible that a change in
2267 * one line will cause all sub-folds of the current fold to change (e.g.,
2268 * closing a C-style comment can cause folds in the subsequent lines to
2269 * appear). To take that into account we should adjust the value of "bot"
2270 * to point to the end of the current fold:
2271 */
2272 if (foldlevelSyntax == getlevel)
2273 {
2274 garray_T *gap = &wp->w_folds;
2275 fold_T *fp = NULL;
2276 int current_fdl = 0;
2277 linenr_T fold_start_lnum = 0;
2278 linenr_T lnum_rel = fline.lnum;
2279
2280 while (current_fdl < fline.lvl)
2281 {
2282 if (!foldFind(gap, lnum_rel, &fp))
2283 break;
2284 ++current_fdl;
2285
2286 fold_start_lnum += fp->fd_top;
2287 gap = &fp->fd_nested;
2288 lnum_rel -= fp->fd_top;
2289 }
2290 if (fp != NULL && current_fdl == fline.lvl)
2291 {
2292 linenr_T fold_end_lnum = fold_start_lnum + fp->fd_len;
2293
2294 if (fold_end_lnum > bot)
2295 bot = fold_end_lnum;
2296 }
2297 }
2298
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299 start = fline.lnum;
2300 end = bot;
2301 /* Do at least one line. */
2302 if (start > end && end < wp->w_buffer->b_ml.ml_line_count)
2303 end = start;
2304 while (!got_int)
2305 {
2306 /* Always stop at the end of the file ("end" can be past the end of
2307 * the file). */
2308 if (fline.lnum > wp->w_buffer->b_ml.ml_line_count)
2309 break;
2310 if (fline.lnum > end)
2311 {
2312 /* For "marker", "expr" and "syntax" methods: If a change caused
2313 * a fold to be removed, we need to continue at least until where
2314 * it ended. */
2315 if (getlevel != foldlevelMarker
2316 && getlevel != foldlevelSyntax
2317 && getlevel != foldlevelExpr)
2318 break;
2319 if ((start <= end
2320 && foldFind(&wp->w_folds, end, &fp)
2321 && fp->fd_top + fp->fd_len - 1 > end)
2322 || (fline.lvl == 0
2323 && foldFind(&wp->w_folds, fline.lnum, &fp)
2324 && fp->fd_top < fline.lnum))
2325 end = fp->fd_top + fp->fd_len - 1;
2326 else if (getlevel == foldlevelSyntax
2327 && foldLevelWin(wp, fline.lnum) != fline.lvl)
2328 /* For "syntax" method: Compare the foldlevel that the syntax
2329 * tells us to the foldlevel from the existing folds. If they
2330 * don't match continue updating folds. */
2331 end = fline.lnum;
2332 else
2333 break;
2334 }
2335
2336 /* A level 1 fold starts at a line with foldlevel > 0. */
2337 if (fline.lvl > 0)
2338 {
2339 invalid_top = fline.lnum;
2340 invalid_bot = end;
2341 end = foldUpdateIEMSRecurse(&wp->w_folds,
2342 1, start, &fline, getlevel, end, FD_LEVEL);
2343 start = fline.lnum;
2344 }
2345 else
2346 {
2347 if (fline.lnum == wp->w_buffer->b_ml.ml_line_count)
2348 break;
2349 ++fline.lnum;
2350 fline.lvl = fline.lvl_next;
2351 getlevel(&fline);
2352 }
2353 }
2354
2355 /* There can't be any folds from start until end now. */
2356 foldRemove(&wp->w_folds, start, end);
2357
2358 /* If some fold changed, need to redraw and position cursor. */
2359 if (fold_changed && wp->w_p_fen)
Bram Moolenaare3b3f282008-03-06 21:45:49 +00002360 changed_window_setting_win(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361
2362 /* If we updated folds past "bot", need to redraw more lines. Don't do
2363 * this in other situations, the changed lines will be redrawn anyway and
2364 * this method can cause the whole window to be updated. */
2365 if (end != bot)
2366 {
2367 if (wp->w_redraw_top == 0 || wp->w_redraw_top > top)
2368 wp->w_redraw_top = top;
2369 if (wp->w_redraw_bot < end)
2370 wp->w_redraw_bot = end;
2371 }
2372
2373 invalid_top = (linenr_T)0;
2374}
2375
2376/* foldUpdateIEMSRecurse() {{{2 */
2377/*
2378 * Update a fold that starts at "flp->lnum". At this line there is always a
2379 * valid foldlevel, and its level >= "level".
2380 * "flp" is valid for "flp->lnum" when called and it's valid when returning.
2381 * "flp->lnum" is set to the lnum just below the fold, if it ends before
2382 * "bot", it's "bot" plus one if the fold continues and it's bigger when using
2383 * the marker method and a text change made following folds to change.
2384 * When returning, "flp->lnum_save" is the line number that was used to get
2385 * the level when the level at "flp->lnum" is invalid.
2386 * Remove any folds from "startlnum" up to here at this level.
2387 * Recursively update nested folds.
2388 * Below line "bot" there are no changes in the text.
2389 * "flp->lnum", "flp->lnum_save" and "bot" are relative to the start of the
2390 * outer fold.
2391 * "flp->off" is the offset to the real line number in the buffer.
2392 *
2393 * All this would be a lot simpler if all folds in the range would be deleted
Bram Moolenaare37d50a2008-08-06 17:06:04 +00002394 * and then created again. But we would lose all information about the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 * folds, even when making changes that don't affect the folding (e.g. "vj~").
2396 *
2397 * Returns bot, which may have been increased for lines that also need to be
2398 * updated as a result of a detected change in the fold.
2399 */
2400 static linenr_T
2401foldUpdateIEMSRecurse(gap, level, startlnum, flp, getlevel, bot, topflags)
2402 garray_T *gap;
2403 int level;
2404 linenr_T startlnum;
2405 fline_T *flp;
2406 void (*getlevel)__ARGS((fline_T *));
2407 linenr_T bot;
2408 int topflags; /* flags used by containing fold */
2409{
2410 linenr_T ll;
2411 fold_T *fp = NULL;
2412 fold_T *fp2;
2413 int lvl = level;
2414 linenr_T startlnum2 = startlnum;
2415 linenr_T firstlnum = flp->lnum; /* first lnum we got */
2416 int i;
2417 int finish = FALSE;
2418 linenr_T linecount = flp->wp->w_buffer->b_ml.ml_line_count - flp->off;
2419 int concat;
2420
2421 /*
2422 * If using the marker method, the start line is not the start of a fold
2423 * at the level we're dealing with and the level is non-zero, we must use
2424 * the previous fold. But ignore a fold that starts at or below
2425 * startlnum, it must be deleted.
2426 */
2427 if (getlevel == foldlevelMarker && flp->start <= flp->lvl - level
2428 && flp->lvl > 0)
2429 {
2430 foldFind(gap, startlnum - 1, &fp);
2431 if (fp >= ((fold_T *)gap->ga_data) + gap->ga_len
2432 || fp->fd_top >= startlnum)
2433 fp = NULL;
2434 }
2435
2436 /*
2437 * Loop over all lines in this fold, or until "bot" is hit.
2438 * Handle nested folds inside of this fold.
2439 * "flp->lnum" is the current line. When finding the end of the fold, it
2440 * is just below the end of the fold.
2441 * "*flp" contains the level of the line "flp->lnum" or a following one if
2442 * there are lines with an invalid fold level. "flp->lnum_save" is the
2443 * line number that was used to get the fold level (below "flp->lnum" when
2444 * it has an invalid fold level). When called the fold level is always
2445 * valid, thus "flp->lnum_save" is equal to "flp->lnum".
2446 */
2447 flp->lnum_save = flp->lnum;
2448 while (!got_int)
2449 {
2450 /* Updating folds can be slow, check for CTRL-C. */
2451 line_breakcheck();
2452
2453 /* Set "lvl" to the level of line "flp->lnum". When flp->start is set
2454 * and after the first line of the fold, set the level to zero to
2455 * force the fold to end. Do the same when had_end is set: Previous
2456 * line was marked as end of a fold. */
2457 lvl = flp->lvl;
2458 if (lvl > MAX_LEVEL)
2459 lvl = MAX_LEVEL;
2460 if (flp->lnum > firstlnum
2461 && (level > lvl - flp->start || level >= flp->had_end))
2462 lvl = 0;
2463
2464 if (flp->lnum > bot && !finish && fp != NULL)
2465 {
2466 /* For "marker" and "syntax" methods:
2467 * - If a change caused a nested fold to be removed, we need to
2468 * delete it and continue at least until where it ended.
2469 * - If a change caused a nested fold to be created, or this fold
2470 * to continue below its original end, need to finish this fold.
2471 */
2472 if (getlevel != foldlevelMarker
2473 && getlevel != foldlevelExpr
2474 && getlevel != foldlevelSyntax)
2475 break;
2476 i = 0;
2477 fp2 = fp;
2478 if (lvl >= level)
2479 {
2480 /* Compute how deep the folds currently are, if it's deeper
2481 * than "lvl" then some must be deleted, need to update
2482 * at least one nested fold. */
2483 ll = flp->lnum - fp->fd_top;
2484 while (foldFind(&fp2->fd_nested, ll, &fp2))
2485 {
2486 ++i;
2487 ll -= fp2->fd_top;
2488 }
2489 }
2490 if (lvl < level + i)
2491 {
2492 foldFind(&fp->fd_nested, flp->lnum - fp->fd_top, &fp2);
2493 if (fp2 != NULL)
2494 bot = fp2->fd_top + fp2->fd_len - 1 + fp->fd_top;
2495 }
2496 else if (fp->fd_top + fp->fd_len <= flp->lnum && lvl >= level)
2497 finish = TRUE;
2498 else
2499 break;
2500 }
2501
2502 /* At the start of the first nested fold and at the end of the current
2503 * fold: check if existing folds at this level, before the current
2504 * one, need to be deleted or truncated. */
2505 if (fp == NULL
2506 && (lvl != level
2507 || flp->lnum_save >= bot
2508 || flp->start != 0
2509 || flp->had_end <= MAX_LEVEL
2510 || flp->lnum == linecount))
2511 {
2512 /*
2513 * Remove or update folds that have lines between startlnum and
2514 * firstlnum.
2515 */
2516 while (!got_int)
2517 {
2518 /* set concat to 1 if it's allowed to concatenated this fold
2519 * with a previous one that touches it. */
2520 if (flp->start != 0 || flp->had_end <= MAX_LEVEL)
2521 concat = 0;
2522 else
2523 concat = 1;
2524
2525 /* Find an existing fold to re-use. Preferably one that
2526 * includes startlnum, otherwise one that ends just before
2527 * startlnum or starts after it. */
2528 if (foldFind(gap, startlnum, &fp)
2529 || (fp < ((fold_T *)gap->ga_data) + gap->ga_len
2530 && fp->fd_top <= firstlnum)
2531 || foldFind(gap, firstlnum - concat, &fp)
2532 || (fp < ((fold_T *)gap->ga_data) + gap->ga_len
2533 && ((lvl < level && fp->fd_top < flp->lnum)
2534 || (lvl >= level
2535 && fp->fd_top <= flp->lnum_save))))
2536 {
2537 if (fp->fd_top + fp->fd_len + concat > firstlnum)
2538 {
2539 /* Use existing fold for the new fold. If it starts
2540 * before where we started looking, extend it. If it
2541 * starts at another line, update nested folds to keep
2542 * their position, compensating for the new fd_top. */
2543 if (fp->fd_top >= startlnum && fp->fd_top != firstlnum)
2544 {
2545 if (fp->fd_top > firstlnum)
2546 /* like lines are inserted */
2547 foldMarkAdjustRecurse(&fp->fd_nested,
2548 (linenr_T)0, (linenr_T)MAXLNUM,
2549 (long)(fp->fd_top - firstlnum), 0L);
2550 else
2551 /* like lines are deleted */
2552 foldMarkAdjustRecurse(&fp->fd_nested,
2553 (linenr_T)0,
2554 (long)(firstlnum - fp->fd_top - 1),
2555 (linenr_T)MAXLNUM,
2556 (long)(fp->fd_top - firstlnum));
2557 fp->fd_len += fp->fd_top - firstlnum;
2558 fp->fd_top = firstlnum;
2559 fold_changed = TRUE;
2560 }
2561 else if (flp->start != 0 && lvl == level
2562 && fp->fd_top != firstlnum)
2563 {
2564 /* Existing fold that includes startlnum must stop
2565 * if we find the start of a new fold at the same
2566 * level. Split it. Delete contained folds at
2567 * this point to split them too. */
2568 foldRemove(&fp->fd_nested, flp->lnum - fp->fd_top,
2569 flp->lnum - fp->fd_top);
2570 i = (int)(fp - (fold_T *)gap->ga_data);
2571 foldSplit(gap, i, flp->lnum, flp->lnum - 1);
2572 fp = (fold_T *)gap->ga_data + i + 1;
2573 /* If using the "marker" or "syntax" method, we
2574 * need to continue until the end of the fold is
2575 * found. */
2576 if (getlevel == foldlevelMarker
2577 || getlevel == foldlevelExpr
2578 || getlevel == foldlevelSyntax)
2579 finish = TRUE;
2580 }
2581 break;
2582 }
2583 if (fp->fd_top >= startlnum)
2584 {
2585 /* A fold that starts at or after startlnum and stops
2586 * before the new fold must be deleted. Continue
2587 * looking for the next one. */
2588 deleteFoldEntry(gap,
2589 (int)(fp - (fold_T *)gap->ga_data), TRUE);
2590 }
2591 else
2592 {
2593 /* A fold has some lines above startlnum, truncate it
2594 * to stop just above startlnum. */
2595 fp->fd_len = startlnum - fp->fd_top;
2596 foldMarkAdjustRecurse(&fp->fd_nested,
2597 (linenr_T)fp->fd_len, (linenr_T)MAXLNUM,
2598 (linenr_T)MAXLNUM, 0L);
2599 fold_changed = TRUE;
2600 }
2601 }
2602 else
2603 {
2604 /* Insert new fold. Careful: ga_data may be NULL and it
2605 * may change! */
2606 i = (int)(fp - (fold_T *)gap->ga_data);
2607 if (foldInsert(gap, i) != OK)
2608 return bot;
2609 fp = (fold_T *)gap->ga_data + i;
2610 /* The new fold continues until bot, unless we find the
2611 * end earlier. */
2612 fp->fd_top = firstlnum;
2613 fp->fd_len = bot - firstlnum + 1;
2614 /* When the containing fold is open, the new fold is open.
2615 * The new fold is closed if the fold above it is closed.
2616 * The first fold depends on the containing fold. */
2617 if (topflags == FD_OPEN)
2618 {
2619 flp->wp->w_fold_manual = TRUE;
2620 fp->fd_flags = FD_OPEN;
2621 }
2622 else if (i <= 0)
2623 {
2624 fp->fd_flags = topflags;
2625 if (topflags != FD_LEVEL)
2626 flp->wp->w_fold_manual = TRUE;
2627 }
2628 else
2629 fp->fd_flags = (fp - 1)->fd_flags;
2630 fp->fd_small = MAYBE;
2631 /* If using the "marker", "expr" or "syntax" method, we
2632 * need to continue until the end of the fold is found. */
2633 if (getlevel == foldlevelMarker
2634 || getlevel == foldlevelExpr
2635 || getlevel == foldlevelSyntax)
2636 finish = TRUE;
2637 fold_changed = TRUE;
2638 break;
2639 }
2640 }
2641 }
2642
2643 if (lvl < level || flp->lnum > linecount)
2644 {
2645 /*
2646 * Found a line with a lower foldlevel, this fold ends just above
2647 * "flp->lnum".
2648 */
2649 break;
2650 }
2651
2652 /*
2653 * The fold includes the line "flp->lnum" and "flp->lnum_save".
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002654 * Check "fp" for safety.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655 */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002656 if (lvl > level && fp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 {
2658 /*
2659 * There is a nested fold, handle it recursively.
2660 */
2661 /* At least do one line (can happen when finish is TRUE). */
2662 if (bot < flp->lnum)
2663 bot = flp->lnum;
2664
2665 /* Line numbers in the nested fold are relative to the start of
2666 * this fold. */
2667 flp->lnum = flp->lnum_save - fp->fd_top;
2668 flp->off += fp->fd_top;
2669 i = (int)(fp - (fold_T *)gap->ga_data);
2670 bot = foldUpdateIEMSRecurse(&fp->fd_nested, level + 1,
2671 startlnum2 - fp->fd_top, flp, getlevel,
2672 bot - fp->fd_top, fp->fd_flags);
2673 fp = (fold_T *)gap->ga_data + i;
2674 flp->lnum += fp->fd_top;
2675 flp->lnum_save += fp->fd_top;
2676 flp->off -= fp->fd_top;
2677 bot += fp->fd_top;
2678 startlnum2 = flp->lnum;
2679
2680 /* This fold may end at the same line, don't incr. flp->lnum. */
2681 }
2682 else
2683 {
2684 /*
2685 * Get the level of the next line, then continue the loop to check
2686 * if it ends there.
2687 * Skip over undefined lines, to find the foldlevel after it.
2688 * For the last line in the file the foldlevel is always valid.
2689 */
2690 flp->lnum = flp->lnum_save;
2691 ll = flp->lnum + 1;
2692 while (!got_int)
2693 {
2694 /* Make the previous level available to foldlevel(). */
2695 prev_lnum = flp->lnum;
2696 prev_lnum_lvl = flp->lvl;
2697
2698 if (++flp->lnum > linecount)
2699 break;
2700 flp->lvl = flp->lvl_next;
2701 getlevel(flp);
2702 if (flp->lvl >= 0 || flp->had_end <= MAX_LEVEL)
2703 break;
2704 }
2705 prev_lnum = 0;
2706 if (flp->lnum > linecount)
2707 break;
2708
2709 /* leave flp->lnum_save to lnum of the line that was used to get
2710 * the level, flp->lnum to the lnum of the next line. */
2711 flp->lnum_save = flp->lnum;
2712 flp->lnum = ll;
2713 }
2714 }
2715
2716 if (fp == NULL) /* only happens when got_int is set */
2717 return bot;
2718
2719 /*
2720 * Get here when:
2721 * lvl < level: the folds ends just above "flp->lnum"
2722 * lvl >= level: fold continues below "bot"
2723 */
2724
2725 /* Current fold at least extends until lnum. */
2726 if (fp->fd_len < flp->lnum - fp->fd_top)
2727 {
2728 fp->fd_len = flp->lnum - fp->fd_top;
Bram Moolenaaref6fc092008-01-13 20:58:13 +00002729 fp->fd_small = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730 fold_changed = TRUE;
2731 }
2732
2733 /* Delete contained folds from the end of the last one found until where
2734 * we stopped looking. */
2735 foldRemove(&fp->fd_nested, startlnum2 - fp->fd_top,
2736 flp->lnum - 1 - fp->fd_top);
2737
2738 if (lvl < level)
2739 {
2740 /* End of fold found, update the length when it got shorter. */
2741 if (fp->fd_len != flp->lnum - fp->fd_top)
2742 {
2743 if (fp->fd_top + fp->fd_len > bot + 1)
2744 {
Bram Moolenaar25394022007-05-10 19:06:20 +00002745 /* fold continued below bot */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 if (getlevel == foldlevelMarker
2747 || getlevel == foldlevelExpr
2748 || getlevel == foldlevelSyntax)
2749 {
2750 /* marker method: truncate the fold and make sure the
2751 * previously included lines are processed again */
2752 bot = fp->fd_top + fp->fd_len - 1;
2753 fp->fd_len = flp->lnum - fp->fd_top;
2754 }
2755 else
2756 {
2757 /* indent or expr method: split fold to create a new one
2758 * below bot */
2759 i = (int)(fp - (fold_T *)gap->ga_data);
2760 foldSplit(gap, i, flp->lnum, bot);
2761 fp = (fold_T *)gap->ga_data + i;
2762 }
2763 }
2764 else
2765 fp->fd_len = flp->lnum - fp->fd_top;
2766 fold_changed = TRUE;
2767 }
2768 }
2769
2770 /* delete following folds that end before the current line */
2771 for (;;)
2772 {
2773 fp2 = fp + 1;
2774 if (fp2 >= (fold_T *)gap->ga_data + gap->ga_len
2775 || fp2->fd_top > flp->lnum)
2776 break;
2777 if (fp2->fd_top + fp2->fd_len > flp->lnum)
2778 {
2779 if (fp2->fd_top < flp->lnum)
2780 {
2781 /* Make fold that includes lnum start at lnum. */
2782 foldMarkAdjustRecurse(&fp2->fd_nested,
2783 (linenr_T)0, (long)(flp->lnum - fp2->fd_top - 1),
2784 (linenr_T)MAXLNUM, (long)(fp2->fd_top - flp->lnum));
2785 fp2->fd_len -= flp->lnum - fp2->fd_top;
2786 fp2->fd_top = flp->lnum;
2787 fold_changed = TRUE;
2788 }
2789
2790 if (lvl >= level)
2791 {
2792 /* merge new fold with existing fold that follows */
2793 foldMerge(fp, gap, fp2);
2794 }
2795 break;
2796 }
2797 fold_changed = TRUE;
2798 deleteFoldEntry(gap, (int)(fp2 - (fold_T *)gap->ga_data), TRUE);
2799 }
2800
2801 /* Need to redraw the lines we inspected, which might be further down than
2802 * was asked for. */
2803 if (bot < flp->lnum - 1)
2804 bot = flp->lnum - 1;
2805
2806 return bot;
2807}
2808
2809/* foldInsert() {{{2 */
2810/*
2811 * Insert a new fold in "gap" at position "i".
2812 * Returns OK for success, FAIL for failure.
2813 */
2814 static int
2815foldInsert(gap, i)
2816 garray_T *gap;
2817 int i;
2818{
2819 fold_T *fp;
2820
2821 if (ga_grow(gap, 1) != OK)
2822 return FAIL;
2823 fp = (fold_T *)gap->ga_data + i;
2824 if (i < gap->ga_len)
2825 mch_memmove(fp + 1, fp, sizeof(fold_T) * (gap->ga_len - i));
2826 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 ga_init2(&fp->fd_nested, (int)sizeof(fold_T), 10);
2828 return OK;
2829}
2830
2831/* foldSplit() {{{2 */
2832/*
2833 * Split the "i"th fold in "gap", which starts before "top" and ends below
2834 * "bot" in two pieces, one ending above "top" and the other starting below
2835 * "bot".
2836 * The caller must first have taken care of any nested folds from "top" to
2837 * "bot"!
2838 */
2839 static void
2840foldSplit(gap, i, top, bot)
2841 garray_T *gap;
2842 int i;
2843 linenr_T top;
2844 linenr_T bot;
2845{
2846 fold_T *fp;
2847 fold_T *fp2;
2848 garray_T *gap1;
2849 garray_T *gap2;
2850 int idx;
2851 int len;
2852
2853 /* The fold continues below bot, need to split it. */
2854 if (foldInsert(gap, i + 1) == FAIL)
2855 return;
2856 fp = (fold_T *)gap->ga_data + i;
2857 fp[1].fd_top = bot + 1;
2858 fp[1].fd_len = fp->fd_len - (fp[1].fd_top - fp->fd_top);
2859 fp[1].fd_flags = fp->fd_flags;
Bram Moolenaareda6eb92009-11-03 17:04:43 +00002860 fp[1].fd_small = MAYBE;
2861 fp->fd_small = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862
2863 /* Move nested folds below bot to new fold. There can't be
2864 * any between top and bot, they have been removed by the caller. */
2865 gap1 = &fp->fd_nested;
2866 gap2 = &fp[1].fd_nested;
2867 (void)(foldFind(gap1, bot + 1 - fp->fd_top, &fp2));
2868 len = (int)((fold_T *)gap1->ga_data + gap1->ga_len - fp2);
2869 if (len > 0 && ga_grow(gap2, len) == OK)
2870 {
2871 for (idx = 0; idx < len; ++idx)
2872 {
2873 ((fold_T *)gap2->ga_data)[idx] = fp2[idx];
2874 ((fold_T *)gap2->ga_data)[idx].fd_top
2875 -= fp[1].fd_top - fp->fd_top;
2876 }
2877 gap2->ga_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878 gap1->ga_len -= len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879 }
2880 fp->fd_len = top - fp->fd_top;
2881 fold_changed = TRUE;
2882}
2883
2884/* foldRemove() {{{2 */
2885/*
2886 * Remove folds within the range "top" to and including "bot".
2887 * Check for these situations:
2888 * 1 2 3
2889 * 1 2 3
2890 * top 2 3 4 5
2891 * 2 3 4 5
2892 * bot 2 3 4 5
2893 * 3 5 6
2894 * 3 5 6
2895 *
2896 * 1: not changed
Bram Moolenaar25394022007-05-10 19:06:20 +00002897 * 2: truncate to stop above "top"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898 * 3: split in two parts, one stops above "top", other starts below "bot".
2899 * 4: deleted
2900 * 5: made to start below "bot".
2901 * 6: not changed
2902 */
2903 static void
2904foldRemove(gap, top, bot)
2905 garray_T *gap;
2906 linenr_T top;
2907 linenr_T bot;
2908{
2909 fold_T *fp = NULL;
2910
2911 if (bot < top)
2912 return; /* nothing to do */
2913
2914 for (;;)
2915 {
2916 /* Find fold that includes top or a following one. */
2917 if (foldFind(gap, top, &fp) && fp->fd_top < top)
2918 {
2919 /* 2: or 3: need to delete nested folds */
2920 foldRemove(&fp->fd_nested, top - fp->fd_top, bot - fp->fd_top);
2921 if (fp->fd_top + fp->fd_len > bot + 1)
2922 {
2923 /* 3: need to split it. */
2924 foldSplit(gap, (int)(fp - (fold_T *)gap->ga_data), top, bot);
2925 }
2926 else
2927 {
2928 /* 2: truncate fold at "top". */
2929 fp->fd_len = top - fp->fd_top;
2930 }
2931 fold_changed = TRUE;
2932 continue;
2933 }
2934 if (fp >= (fold_T *)(gap->ga_data) + gap->ga_len
2935 || fp->fd_top > bot)
2936 {
2937 /* 6: Found a fold below bot, can stop looking. */
2938 break;
2939 }
2940 if (fp->fd_top >= top)
2941 {
2942 /* Found an entry below top. */
2943 fold_changed = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002944 if (fp->fd_top + fp->fd_len - 1 > bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 {
2946 /* 5: Make fold that includes bot start below bot. */
2947 foldMarkAdjustRecurse(&fp->fd_nested,
2948 (linenr_T)0, (long)(bot - fp->fd_top),
2949 (linenr_T)MAXLNUM, (long)(fp->fd_top - bot - 1));
2950 fp->fd_len -= bot - fp->fd_top + 1;
2951 fp->fd_top = bot + 1;
2952 break;
2953 }
2954
2955 /* 4: Delete completely contained fold. */
2956 deleteFoldEntry(gap, (int)(fp - (fold_T *)gap->ga_data), TRUE);
2957 }
2958 }
2959}
2960
2961/* foldMerge() {{{2 */
2962/*
Bram Moolenaar25394022007-05-10 19:06:20 +00002963 * Merge two adjacent folds (and the nested ones in them).
2964 * This only works correctly when the folds are really adjacent! Thus "fp1"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965 * must end just above "fp2".
2966 * The resulting fold is "fp1", nested folds are moved from "fp2" to "fp1".
2967 * Fold entry "fp2" in "gap" is deleted.
2968 */
2969 static void
2970foldMerge(fp1, gap, fp2)
2971 fold_T *fp1;
2972 garray_T *gap;
2973 fold_T *fp2;
2974{
2975 fold_T *fp3;
2976 fold_T *fp4;
2977 int idx;
2978 garray_T *gap1 = &fp1->fd_nested;
2979 garray_T *gap2 = &fp2->fd_nested;
2980
2981 /* If the last nested fold in fp1 touches the first nested fold in fp2,
2982 * merge them recursively. */
2983 if (foldFind(gap1, fp1->fd_len - 1L, &fp3) && foldFind(gap2, 0L, &fp4))
2984 foldMerge(fp3, gap2, fp4);
2985
2986 /* Move nested folds in fp2 to the end of fp1. */
2987 if (gap2->ga_len > 0 && ga_grow(gap1, gap2->ga_len) == OK)
2988 {
2989 for (idx = 0; idx < gap2->ga_len; ++idx)
2990 {
2991 ((fold_T *)gap1->ga_data)[gap1->ga_len]
2992 = ((fold_T *)gap2->ga_data)[idx];
2993 ((fold_T *)gap1->ga_data)[gap1->ga_len].fd_top += fp1->fd_len;
2994 ++gap1->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 }
2996 gap2->ga_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 }
2998
2999 fp1->fd_len += fp2->fd_len;
3000 deleteFoldEntry(gap, (int)(fp2 - (fold_T *)gap->ga_data), TRUE);
3001 fold_changed = TRUE;
3002}
3003
3004/* foldlevelIndent() {{{2 */
3005/*
3006 * Low level function to get the foldlevel for the "indent" method.
3007 * Doesn't use any caching.
3008 * Returns a level of -1 if the foldlevel depends on surrounding lines.
3009 */
3010 static void
3011foldlevelIndent(flp)
3012 fline_T *flp;
3013{
3014 char_u *s;
3015 buf_T *buf;
3016 linenr_T lnum = flp->lnum + flp->off;
3017
3018 buf = flp->wp->w_buffer;
3019 s = skipwhite(ml_get_buf(buf, lnum, FALSE));
3020
3021 /* empty line or lines starting with a character in 'foldignore': level
3022 * depends on surrounding lines */
3023 if (*s == NUL || vim_strchr(flp->wp->w_p_fdi, *s) != NULL)
3024 {
3025 /* first and last line can't be undefined, use level 0 */
3026 if (lnum == 1 || lnum == buf->b_ml.ml_line_count)
3027 flp->lvl = 0;
3028 else
3029 flp->lvl = -1;
3030 }
3031 else
3032 flp->lvl = get_indent_buf(buf, lnum) / buf->b_p_sw;
3033 if (flp->lvl > flp->wp->w_p_fdn)
Bram Moolenaar74c596b2006-11-01 11:44:31 +00003034 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035 flp->lvl = flp->wp->w_p_fdn;
Bram Moolenaar74c596b2006-11-01 11:44:31 +00003036 if (flp->lvl < 0)
3037 flp->lvl = 0;
3038 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039}
3040
3041/* foldlevelDiff() {{{2 */
3042#ifdef FEAT_DIFF
3043/*
3044 * Low level function to get the foldlevel for the "diff" method.
3045 * Doesn't use any caching.
3046 */
3047 static void
3048foldlevelDiff(flp)
3049 fline_T *flp;
3050{
3051 if (diff_infold(flp->wp, flp->lnum + flp->off))
3052 flp->lvl = 1;
3053 else
3054 flp->lvl = 0;
3055}
3056#endif
3057
3058/* foldlevelExpr() {{{2 */
3059/*
3060 * Low level function to get the foldlevel for the "expr" method.
3061 * Doesn't use any caching.
3062 * Returns a level of -1 if the foldlevel depends on surrounding lines.
3063 */
3064 static void
3065foldlevelExpr(flp)
3066 fline_T *flp;
3067{
3068#ifndef FEAT_EVAL
3069 flp->start = FALSE;
3070 flp->lvl = 0;
3071#else
3072 win_T *win;
3073 int n;
3074 int c;
3075 linenr_T lnum = flp->lnum + flp->off;
3076 int save_keytyped;
3077
3078 win = curwin;
3079 curwin = flp->wp;
3080 curbuf = flp->wp->w_buffer;
3081 set_vim_var_nr(VV_LNUM, lnum);
3082
3083 flp->start = 0;
3084 flp->had_end = flp->end;
3085 flp->end = MAX_LEVEL + 1;
3086 if (lnum <= 1)
3087 flp->lvl = 0;
3088
3089 /* KeyTyped may be reset to 0 when calling a function which invokes
3090 * do_cmdline(). To make 'foldopen' work correctly restore KeyTyped. */
3091 save_keytyped = KeyTyped;
3092 n = eval_foldexpr(flp->wp->w_p_fde, &c);
3093 KeyTyped = save_keytyped;
3094
3095 switch (c)
3096 {
3097 /* "a1", "a2", .. : add to the fold level */
3098 case 'a': if (flp->lvl >= 0)
3099 {
3100 flp->lvl += n;
3101 flp->lvl_next = flp->lvl;
3102 }
3103 flp->start = n;
3104 break;
3105
3106 /* "s1", "s2", .. : subtract from the fold level */
3107 case 's': if (flp->lvl >= 0)
3108 {
3109 if (n > flp->lvl)
3110 flp->lvl_next = 0;
3111 else
3112 flp->lvl_next = flp->lvl - n;
3113 flp->end = flp->lvl_next + 1;
3114 }
3115 break;
3116
3117 /* ">1", ">2", .. : start a fold with a certain level */
3118 case '>': flp->lvl = n;
3119 flp->lvl_next = n;
3120 flp->start = 1;
3121 break;
3122
3123 /* "<1", "<2", .. : end a fold with a certain level */
3124 case '<': flp->lvl_next = n - 1;
3125 flp->end = n;
3126 break;
3127
3128 /* "=": No change in level */
3129 case '=': flp->lvl_next = flp->lvl;
3130 break;
3131
3132 /* "-1", "0", "1", ..: set fold level */
3133 default: if (n < 0)
3134 /* Use the current level for the next line, so that "a1"
3135 * will work there. */
3136 flp->lvl_next = flp->lvl;
3137 else
3138 flp->lvl_next = n;
3139 flp->lvl = n;
3140 break;
3141 }
3142
3143 /* If the level is unknown for the first or the last line in the file, use
3144 * level 0. */
3145 if (flp->lvl < 0)
3146 {
3147 if (lnum <= 1)
3148 {
3149 flp->lvl = 0;
3150 flp->lvl_next = 0;
3151 }
3152 if (lnum == curbuf->b_ml.ml_line_count)
3153 flp->lvl_next = 0;
3154 }
3155
3156 curwin = win;
3157 curbuf = curwin->w_buffer;
3158#endif
3159}
3160
3161/* parseMarker() {{{2 */
3162/*
3163 * Parse 'foldmarker' and set "foldendmarker", "foldstartmarkerlen" and
3164 * "foldendmarkerlen".
3165 * Relies on the option value to have been checked for correctness already.
3166 */
3167 static void
3168parseMarker(wp)
3169 win_T *wp;
3170{
3171 foldendmarker = vim_strchr(wp->w_p_fmr, ',');
3172 foldstartmarkerlen = (int)(foldendmarker++ - wp->w_p_fmr);
3173 foldendmarkerlen = (int)STRLEN(foldendmarker);
3174}
3175
3176/* foldlevelMarker() {{{2 */
3177/*
3178 * Low level function to get the foldlevel for the "marker" method.
3179 * "foldendmarker", "foldstartmarkerlen" and "foldendmarkerlen" must have been
3180 * set before calling this.
3181 * Requires that flp->lvl is set to the fold level of the previous line!
3182 * Careful: This means you can't call this function twice on the same line.
3183 * Doesn't use any caching.
3184 * Sets flp->start when a start marker was found.
3185 */
3186 static void
3187foldlevelMarker(flp)
3188 fline_T *flp;
3189{
3190 char_u *startmarker;
3191 int cstart;
3192 int cend;
3193 int start_lvl = flp->lvl;
3194 char_u *s;
3195 int n;
3196
3197 /* cache a few values for speed */
3198 startmarker = flp->wp->w_p_fmr;
3199 cstart = *startmarker;
3200 ++startmarker;
3201 cend = *foldendmarker;
3202
3203 /* Default: no start found, next level is same as current level */
3204 flp->start = 0;
3205 flp->lvl_next = flp->lvl;
3206
3207 s = ml_get_buf(flp->wp->w_buffer, flp->lnum + flp->off, FALSE);
3208 while (*s)
3209 {
3210 if (*s == cstart
3211 && STRNCMP(s + 1, startmarker, foldstartmarkerlen - 1) == 0)
3212 {
3213 /* found startmarker: set flp->lvl */
3214 s += foldstartmarkerlen;
3215 if (VIM_ISDIGIT(*s))
3216 {
3217 n = atoi((char *)s);
3218 if (n > 0)
3219 {
3220 flp->lvl = n;
3221 flp->lvl_next = n;
3222 if (n <= start_lvl)
3223 flp->start = 1;
3224 else
3225 flp->start = n - start_lvl;
3226 }
3227 }
3228 else
3229 {
3230 ++flp->lvl;
3231 ++flp->lvl_next;
3232 ++flp->start;
3233 }
3234 }
3235 else if (*s == cend
3236 && STRNCMP(s + 1, foldendmarker + 1, foldendmarkerlen - 1) == 0)
3237 {
3238 /* found endmarker: set flp->lvl_next */
3239 s += foldendmarkerlen;
3240 if (VIM_ISDIGIT(*s))
3241 {
3242 n = atoi((char *)s);
3243 if (n > 0)
3244 {
3245 flp->lvl = n;
3246 flp->lvl_next = n - 1;
3247 /* never start a fold with an end marker */
Bram Moolenaar3ee02292010-01-19 17:24:25 +01003248 if (flp->lvl_next > start_lvl)
3249 flp->lvl_next = start_lvl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250 }
3251 }
3252 else
3253 --flp->lvl_next;
3254 }
3255 else
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00003256 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257 }
3258
3259 /* The level can't go negative, must be missing a start marker. */
3260 if (flp->lvl_next < 0)
3261 flp->lvl_next = 0;
3262}
3263
3264/* foldlevelSyntax() {{{2 */
3265/*
3266 * Low level function to get the foldlevel for the "syntax" method.
3267 * Doesn't use any caching.
3268 */
3269 static void
3270foldlevelSyntax(flp)
3271 fline_T *flp;
3272{
3273#ifndef FEAT_SYN_HL
3274 flp->start = 0;
3275 flp->lvl = 0;
3276#else
3277 linenr_T lnum = flp->lnum + flp->off;
3278 int n;
3279
3280 /* Use the maximum fold level at the start of this line and the next. */
3281 flp->lvl = syn_get_foldlevel(flp->wp, lnum);
3282 flp->start = 0;
3283 if (lnum < flp->wp->w_buffer->b_ml.ml_line_count)
3284 {
3285 n = syn_get_foldlevel(flp->wp, lnum + 1);
3286 if (n > flp->lvl)
3287 {
3288 flp->start = n - flp->lvl; /* fold(s) start here */
3289 flp->lvl = n;
3290 }
3291 }
3292#endif
3293}
3294
3295/* functions for storing the fold state in a View {{{1 */
3296/* put_folds() {{{2 */
3297#if defined(FEAT_SESSION) || defined(PROTO)
3298static int put_folds_recurse __ARGS((FILE *fd, garray_T *gap, linenr_T off));
3299static int put_foldopen_recurse __ARGS((FILE *fd, garray_T *gap, linenr_T off));
3300
3301/*
3302 * Write commands to "fd" to restore the manual folds in window "wp".
3303 * Return FAIL if writing fails.
3304 */
3305 int
3306put_folds(fd, wp)
3307 FILE *fd;
3308 win_T *wp;
3309{
3310 if (foldmethodIsManual(wp))
3311 {
3312 if (put_line(fd, "silent! normal! zE") == FAIL
3313 || put_folds_recurse(fd, &wp->w_folds, (linenr_T)0) == FAIL)
3314 return FAIL;
3315 }
3316
3317 /* If some folds are manually opened/closed, need to restore that. */
3318 if (wp->w_fold_manual)
3319 return put_foldopen_recurse(fd, &wp->w_folds, (linenr_T)0);
3320
3321 return OK;
3322}
3323
3324/* put_folds_recurse() {{{2 */
3325/*
3326 * Write commands to "fd" to recreate manually created folds.
3327 * Returns FAIL when writing failed.
3328 */
3329 static int
3330put_folds_recurse(fd, gap, off)
3331 FILE *fd;
3332 garray_T *gap;
3333 linenr_T off;
3334{
3335 int i;
3336 fold_T *fp;
3337
3338 fp = (fold_T *)gap->ga_data;
3339 for (i = 0; i < gap->ga_len; i++)
3340 {
3341 /* Do nested folds first, they will be created closed. */
3342 if (put_folds_recurse(fd, &fp->fd_nested, off + fp->fd_top) == FAIL)
3343 return FAIL;
3344 if (fprintf(fd, "%ld,%ldfold", fp->fd_top + off,
3345 fp->fd_top + off + fp->fd_len - 1) < 0
3346 || put_eol(fd) == FAIL)
3347 return FAIL;
3348 ++fp;
3349 }
3350 return OK;
3351}
3352
3353/* put_foldopen_recurse() {{{2 */
3354/*
3355 * Write commands to "fd" to open and close manually opened/closed folds.
3356 * Returns FAIL when writing failed.
3357 */
3358 static int
3359put_foldopen_recurse(fd, gap, off)
3360 FILE *fd;
3361 garray_T *gap;
3362 linenr_T off;
3363{
3364 int i;
3365 fold_T *fp;
3366
3367 fp = (fold_T *)gap->ga_data;
3368 for (i = 0; i < gap->ga_len; i++)
3369 {
3370 if (fp->fd_flags != FD_LEVEL)
3371 {
3372 if (fp->fd_nested.ga_len > 0)
3373 {
3374 /* open/close nested folds while this fold is open */
3375 if (fprintf(fd, "%ld", fp->fd_top + off) < 0
3376 || put_eol(fd) == FAIL
3377 || put_line(fd, "normal zo") == FAIL)
3378 return FAIL;
3379 if (put_foldopen_recurse(fd, &fp->fd_nested, off + fp->fd_top)
3380 == FAIL)
3381 return FAIL;
3382 }
3383 if (fprintf(fd, "%ld", fp->fd_top + off) < 0
3384 || put_eol(fd) == FAIL
3385 || fprintf(fd, "normal z%c",
3386 fp->fd_flags == FD_CLOSED ? 'c' : 'o') < 0
3387 || put_eol(fd) == FAIL)
3388 return FAIL;
3389 }
3390 ++fp;
3391 }
3392
3393 return OK;
3394}
3395#endif /* FEAT_SESSION */
3396
3397/* }}}1 */
3398#endif /* defined(FEAT_FOLDING) || defined(PROTO) */