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