1 /* vi:set ts=8 sts=4 sw=4 noet: 2 * 3 * VIM - Vi IMproved by Bram Moolenaar 4 * 5 * Do ":help uganda" in Vim to read copying and usage conditions. 6 * Do ":help credits" in Vim to see a list of people who contributed. 7 * See README.txt for an overview of the Vim source code. 8 */ 9 10 /* 11 * buffer.c: functions for dealing with the buffer structure 12 */ 13 14 /* 15 * The buffer list is a double linked list of all buffers. 16 * Each buffer can be in one of these states: 17 * never loaded: BF_NEVERLOADED is set, only the file name is valid 18 * not loaded: b_ml.ml_mfp == NULL, no memfile allocated 19 * hidden: b_nwindows == 0, loaded but not displayed in a window 20 * normal: loaded and displayed in a window 21 * 22 * Instead of storing file names all over the place, each file name is 23 * stored in the buffer list. It can be referenced by a number. 24 * 25 * The current implementation remembers all file names ever used. 26 */ 27 28 #include "vim.h" 29 30 31 #ifdef FEAT_EVAL 32 // Determines how deeply nested %{} blocks will be evaluated in statusline. 33 # define MAX_STL_EVAL_DEPTH 100 34 #endif 35 36 static void enter_buffer(buf_T *buf); 37 static void buflist_getfpos(void); 38 static char_u *buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case); 39 static char_u *fname_match(regmatch_T *rmp, char_u *name, int ignore_case); 40 #ifdef UNIX 41 static buf_T *buflist_findname_stat(char_u *ffname, stat_T *st); 42 static int otherfile_buf(buf_T *buf, char_u *ffname, stat_T *stp); 43 static int buf_same_ino(buf_T *buf, stat_T *stp); 44 #else 45 static int otherfile_buf(buf_T *buf, char_u *ffname); 46 #endif 47 #ifdef FEAT_TITLE 48 static int value_changed(char_u *str, char_u **last); 49 #endif 50 static int append_arg_number(win_T *wp, char_u *buf, int buflen, int add_file); 51 static void free_buffer(buf_T *); 52 static void free_buffer_stuff(buf_T *buf, int free_options); 53 static void clear_wininfo(buf_T *buf); 54 55 #ifdef UNIX 56 # define dev_T dev_t 57 #else 58 # define dev_T unsigned 59 #endif 60 61 #define FOR_ALL_BUFS_FROM_LAST(buf) \ 62 for ((buf) = lastbuf; (buf) != NULL; (buf) = (buf)->b_prev) 63 64 #if defined(FEAT_QUICKFIX) 65 static char *msg_loclist = N_("[Location List]"); 66 static char *msg_qflist = N_("[Quickfix List]"); 67 #endif 68 static char *e_auabort = N_("E855: Autocommands caused command to abort"); 69 70 // Number of times free_buffer() was called. 71 static int buf_free_count = 0; 72 73 static int top_file_num = 1; // highest file number 74 static garray_T buf_reuse = GA_EMPTY; // file numbers to recycle 75 76 /* 77 * Return the highest possible buffer number. 78 */ 79 int 80 get_highest_fnum(void) 81 { 82 return top_file_num - 1; 83 } 84 85 /* 86 * Read data from buffer for retrying. 87 */ 88 static int 89 read_buffer( 90 int read_stdin, // read file from stdin, otherwise fifo 91 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL 92 int flags) // extra flags for readfile() 93 { 94 int retval = OK; 95 linenr_T line_count; 96 97 /* 98 * Read from the buffer which the text is already filled in and append at 99 * the end. This makes it possible to retry when 'fileformat' or 100 * 'fileencoding' was guessed wrong. 101 */ 102 line_count = curbuf->b_ml.ml_line_count; 103 retval = readfile( 104 read_stdin ? NULL : curbuf->b_ffname, 105 read_stdin ? NULL : curbuf->b_fname, 106 (linenr_T)line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap, 107 flags | READ_BUFFER); 108 if (retval == OK) 109 { 110 // Delete the binary lines. 111 while (--line_count >= 0) 112 ml_delete((linenr_T)1); 113 } 114 else 115 { 116 // Delete the converted lines. 117 while (curbuf->b_ml.ml_line_count > line_count) 118 ml_delete(line_count); 119 } 120 // Put the cursor on the first line. 121 curwin->w_cursor.lnum = 1; 122 curwin->w_cursor.col = 0; 123 124 if (read_stdin) 125 { 126 // Set or reset 'modified' before executing autocommands, so that 127 // it can be changed there. 128 if (!readonlymode && !BUFEMPTY()) 129 changed(); 130 else if (retval == OK) 131 unchanged(curbuf, FALSE, TRUE); 132 133 if (retval == OK) 134 { 135 #ifdef FEAT_EVAL 136 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE, 137 curbuf, &retval); 138 #else 139 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf); 140 #endif 141 } 142 } 143 return retval; 144 } 145 146 /* 147 * Ensure buffer "buf" is loaded. Does not trigger the swap-exists action. 148 */ 149 void 150 buffer_ensure_loaded(buf_T *buf) 151 { 152 if (buf->b_ml.ml_mfp == NULL) 153 { 154 aco_save_T aco; 155 156 aucmd_prepbuf(&aco, buf); 157 swap_exists_action = SEA_NONE; 158 open_buffer(FALSE, NULL, 0); 159 aucmd_restbuf(&aco); 160 } 161 } 162 163 /* 164 * Open current buffer, that is: open the memfile and read the file into 165 * memory. 166 * Return FAIL for failure, OK otherwise. 167 */ 168 int 169 open_buffer( 170 int read_stdin, // read file from stdin 171 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL 172 int flags) // extra flags for readfile() 173 { 174 int retval = OK; 175 bufref_T old_curbuf; 176 #ifdef FEAT_SYN_HL 177 long old_tw = curbuf->b_p_tw; 178 #endif 179 int read_fifo = FALSE; 180 181 /* 182 * The 'readonly' flag is only set when BF_NEVERLOADED is being reset. 183 * When re-entering the same buffer, it should not change, because the 184 * user may have reset the flag by hand. 185 */ 186 if (readonlymode && curbuf->b_ffname != NULL 187 && (curbuf->b_flags & BF_NEVERLOADED)) 188 curbuf->b_p_ro = TRUE; 189 190 if (ml_open(curbuf) == FAIL) 191 { 192 /* 193 * There MUST be a memfile, otherwise we can't do anything 194 * If we can't create one for the current buffer, take another buffer 195 */ 196 close_buffer(NULL, curbuf, 0, FALSE, FALSE); 197 FOR_ALL_BUFFERS(curbuf) 198 if (curbuf->b_ml.ml_mfp != NULL) 199 break; 200 /* 201 * If there is no memfile at all, exit. 202 * This is OK, since there are no changes to lose. 203 */ 204 if (curbuf == NULL) 205 { 206 emsg(_("E82: Cannot allocate any buffer, exiting...")); 207 208 // Don't try to do any saving, with "curbuf" NULL almost nothing 209 // will work. 210 v_dying = 2; 211 getout(2); 212 } 213 214 emsg(_("E83: Cannot allocate buffer, using other one...")); 215 enter_buffer(curbuf); 216 #ifdef FEAT_SYN_HL 217 if (old_tw != curbuf->b_p_tw) 218 check_colorcolumn(curwin); 219 #endif 220 return FAIL; 221 } 222 223 // The autocommands in readfile() may change the buffer, but only AFTER 224 // reading the file. 225 set_bufref(&old_curbuf, curbuf); 226 modified_was_set = FALSE; 227 228 // mark cursor position as being invalid 229 curwin->w_valid = 0; 230 231 if (curbuf->b_ffname != NULL 232 #ifdef FEAT_NETBEANS_INTG 233 && netbeansReadFile 234 #endif 235 ) 236 { 237 int old_msg_silent = msg_silent; 238 #ifdef UNIX 239 int save_bin = curbuf->b_p_bin; 240 int perm; 241 #endif 242 #ifdef FEAT_NETBEANS_INTG 243 int oldFire = netbeansFireChanges; 244 245 netbeansFireChanges = 0; 246 #endif 247 #ifdef UNIX 248 perm = mch_getperm(curbuf->b_ffname); 249 if (perm >= 0 && (S_ISFIFO(perm) 250 || S_ISSOCK(perm) 251 # ifdef OPEN_CHR_FILES 252 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname)) 253 # endif 254 )) 255 read_fifo = TRUE; 256 if (read_fifo) 257 curbuf->b_p_bin = TRUE; 258 #endif 259 if (shortmess(SHM_FILEINFO)) 260 msg_silent = 1; 261 retval = readfile(curbuf->b_ffname, curbuf->b_fname, 262 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap, 263 flags | READ_NEW | (read_fifo ? READ_FIFO : 0)); 264 #ifdef UNIX 265 if (read_fifo) 266 { 267 curbuf->b_p_bin = save_bin; 268 if (retval == OK) 269 retval = read_buffer(FALSE, eap, flags); 270 } 271 #endif 272 msg_silent = old_msg_silent; 273 #ifdef FEAT_NETBEANS_INTG 274 netbeansFireChanges = oldFire; 275 #endif 276 // Help buffer is filtered. 277 if (bt_help(curbuf)) 278 fix_help_buffer(); 279 } 280 else if (read_stdin) 281 { 282 int save_bin = curbuf->b_p_bin; 283 284 /* 285 * First read the text in binary mode into the buffer. 286 * Then read from that same buffer and append at the end. This makes 287 * it possible to retry when 'fileformat' or 'fileencoding' was 288 * guessed wrong. 289 */ 290 curbuf->b_p_bin = TRUE; 291 retval = readfile(NULL, NULL, (linenr_T)0, 292 (linenr_T)0, (linenr_T)MAXLNUM, NULL, 293 flags | (READ_NEW + READ_STDIN)); 294 curbuf->b_p_bin = save_bin; 295 if (retval == OK) 296 retval = read_buffer(TRUE, eap, flags); 297 } 298 299 // if first time loading this buffer, init b_chartab[] 300 if (curbuf->b_flags & BF_NEVERLOADED) 301 { 302 (void)buf_init_chartab(curbuf, FALSE); 303 #ifdef FEAT_CINDENT 304 parse_cino(curbuf); 305 #endif 306 } 307 308 /* 309 * Set/reset the Changed flag first, autocmds may change the buffer. 310 * Apply the automatic commands, before processing the modelines. 311 * So the modelines have priority over autocommands. 312 */ 313 // When reading stdin, the buffer contents always needs writing, so set 314 // the changed flag. Unless in readonly mode: "ls | gview -". 315 // When interrupted and 'cpoptions' contains 'i' set changed flag. 316 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL) 317 || modified_was_set // ":set modified" used in autocmd 318 #ifdef FEAT_EVAL 319 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL) 320 #endif 321 ) 322 changed(); 323 else if (retval == OK && !read_stdin && !read_fifo) 324 unchanged(curbuf, FALSE, TRUE); 325 save_file_ff(curbuf); // keep this fileformat 326 327 // Set last_changedtick to avoid triggering a TextChanged autocommand right 328 // after it was added. 329 curbuf->b_last_changedtick = CHANGEDTICK(curbuf); 330 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf); 331 332 // require "!" to overwrite the file, because it wasn't read completely 333 #ifdef FEAT_EVAL 334 if (aborting()) 335 #else 336 if (got_int) 337 #endif 338 curbuf->b_flags |= BF_READERR; 339 340 #ifdef FEAT_FOLDING 341 // Need to update automatic folding. Do this before the autocommands, 342 // they may use the fold info. 343 foldUpdateAll(curwin); 344 #endif 345 346 // need to set w_topline, unless some autocommand already did that. 347 if (!(curwin->w_valid & VALID_TOPLINE)) 348 { 349 curwin->w_topline = 1; 350 #ifdef FEAT_DIFF 351 curwin->w_topfill = 0; 352 #endif 353 } 354 #ifdef FEAT_EVAL 355 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval); 356 #else 357 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); 358 #endif 359 360 if (retval == OK) 361 { 362 /* 363 * The autocommands may have changed the current buffer. Apply the 364 * modelines to the correct buffer, if it still exists and is loaded. 365 */ 366 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL) 367 { 368 aco_save_T aco; 369 370 // Go to the buffer that was opened. 371 aucmd_prepbuf(&aco, old_curbuf.br_buf); 372 do_modelines(0); 373 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED); 374 375 #ifdef FEAT_EVAL 376 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf, 377 &retval); 378 #else 379 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf); 380 #endif 381 382 // restore curwin/curbuf and a few other things 383 aucmd_restbuf(&aco); 384 } 385 } 386 387 return retval; 388 } 389 390 /* 391 * Store "buf" in "bufref" and set the free count. 392 */ 393 void 394 set_bufref(bufref_T *bufref, buf_T *buf) 395 { 396 bufref->br_buf = buf; 397 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum; 398 bufref->br_buf_free_count = buf_free_count; 399 } 400 401 /* 402 * Return TRUE if "bufref->br_buf" points to the same buffer as when 403 * set_bufref() was called and it is a valid buffer. 404 * Only goes through the buffer list if buf_free_count changed. 405 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get 406 * the same allocated memory, but it's a different buffer. 407 */ 408 int 409 bufref_valid(bufref_T *bufref) 410 { 411 return bufref->br_buf_free_count == buf_free_count 412 ? TRUE : buf_valid(bufref->br_buf) 413 && bufref->br_fnum == bufref->br_buf->b_fnum; 414 } 415 416 /* 417 * Return TRUE if "buf" points to a valid buffer (in the buffer list). 418 * This can be slow if there are many buffers, prefer using bufref_valid(). 419 */ 420 int 421 buf_valid(buf_T *buf) 422 { 423 buf_T *bp; 424 425 // Assume that we more often have a recent buffer, start with the last 426 // one. 427 FOR_ALL_BUFS_FROM_LAST(bp) 428 if (bp == buf) 429 return TRUE; 430 return FALSE; 431 } 432 433 /* 434 * A hash table used to quickly lookup a buffer by its number. 435 */ 436 static hashtab_T buf_hashtab; 437 438 static void 439 buf_hashtab_add(buf_T *buf) 440 { 441 sprintf((char *)buf->b_key, "%x", buf->b_fnum); 442 if (hash_add(&buf_hashtab, buf->b_key) == FAIL) 443 emsg(_("E931: Buffer cannot be registered")); 444 } 445 446 static void 447 buf_hashtab_remove(buf_T *buf) 448 { 449 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key); 450 451 if (!HASHITEM_EMPTY(hi)) 452 hash_remove(&buf_hashtab, hi); 453 } 454 455 /* 456 * Return TRUE when buffer "buf" can be unloaded. 457 * Give an error message and return FALSE when the buffer is locked or the 458 * screen is being redrawn and the buffer is in a window. 459 */ 460 static int 461 can_unload_buffer(buf_T *buf) 462 { 463 int can_unload = !buf->b_locked; 464 465 if (can_unload && updating_screen) 466 { 467 win_T *wp; 468 469 FOR_ALL_WINDOWS(wp) 470 if (wp->w_buffer == buf) 471 { 472 can_unload = FALSE; 473 break; 474 } 475 } 476 if (!can_unload) 477 semsg(_("E937: Attempt to delete a buffer that is in use: %s"), 478 buf->b_fname); 479 return can_unload; 480 } 481 482 /* 483 * Close the link to a buffer. 484 * "action" is used when there is no longer a window for the buffer. 485 * It can be: 486 * 0 buffer becomes hidden 487 * DOBUF_UNLOAD buffer is unloaded 488 * DOBUF_DELETE buffer is unloaded and removed from buffer list 489 * DOBUF_WIPE buffer is unloaded and really deleted 490 * DOBUF_WIPE_REUSE idem, and add to buf_reuse list 491 * When doing all but the first one on the current buffer, the caller should 492 * get a new buffer very soon! 493 * 494 * The 'bufhidden' option can force freeing and deleting. 495 * 496 * When "abort_if_last" is TRUE then do not close the buffer if autocommands 497 * cause there to be only one window with this buffer. e.g. when ":quit" is 498 * supposed to close the window but autocommands close all other windows. 499 * 500 * When "ignore_abort" is TRUE don't abort even when aborting() returns TRUE. 501 * 502 * Return TRUE when we got to the end and b_nwindows was decremented. 503 */ 504 int 505 close_buffer( 506 win_T *win, // if not NULL, set b_last_cursor 507 buf_T *buf, 508 int action, 509 int abort_if_last, 510 int ignore_abort) 511 { 512 int is_curbuf; 513 int nwindows; 514 bufref_T bufref; 515 int is_curwin = (curwin != NULL && curwin->w_buffer == buf); 516 win_T *the_curwin = curwin; 517 tabpage_T *the_curtab = curtab; 518 int unload_buf = (action != 0); 519 int wipe_buf = (action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE); 520 int del_buf = (action == DOBUF_DEL || wipe_buf); 521 522 CHECK_CURBUF; 523 /* 524 * Force unloading or deleting when 'bufhidden' says so. 525 * The caller must take care of NOT deleting/freeing when 'bufhidden' is 526 * "hide" (otherwise we could never free or delete a buffer). 527 */ 528 if (buf->b_p_bh[0] == 'd') // 'bufhidden' == "delete" 529 { 530 del_buf = TRUE; 531 unload_buf = TRUE; 532 } 533 else if (buf->b_p_bh[0] == 'w') // 'bufhidden' == "wipe" 534 { 535 del_buf = TRUE; 536 unload_buf = TRUE; 537 wipe_buf = TRUE; 538 } 539 else if (buf->b_p_bh[0] == 'u') // 'bufhidden' == "unload" 540 unload_buf = TRUE; 541 542 #ifdef FEAT_TERMINAL 543 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf)) 544 { 545 CHECK_CURBUF; 546 if (term_job_running(buf->b_term)) 547 { 548 if (wipe_buf || unload_buf) 549 { 550 if (!can_unload_buffer(buf)) 551 return FALSE; 552 553 // Wiping out or unloading a terminal buffer kills the job. 554 free_terminal(buf); 555 } 556 else 557 { 558 // The job keeps running, hide the buffer. 559 del_buf = FALSE; 560 unload_buf = FALSE; 561 } 562 } 563 else if (buf->b_p_bh[0] == 'h' && !del_buf) 564 { 565 // Hide a terminal buffer. 566 unload_buf = FALSE; 567 } 568 else 569 { 570 // A terminal buffer is wiped out if the job has finished. 571 del_buf = TRUE; 572 unload_buf = TRUE; 573 wipe_buf = TRUE; 574 } 575 CHECK_CURBUF; 576 } 577 #endif 578 579 // Disallow deleting the buffer when it is locked (already being closed or 580 // halfway a command that relies on it). Unloading is allowed. 581 if ((del_buf || wipe_buf) && !can_unload_buffer(buf)) 582 return FALSE; 583 584 // check no autocommands closed the window 585 if (win != NULL && win_valid_any_tab(win)) 586 { 587 // Set b_last_cursor when closing the last window for the buffer. 588 // Remember the last cursor position and window options of the buffer. 589 // This used to be only for the current window, but then options like 590 // 'foldmethod' may be lost with a ":only" command. 591 if (buf->b_nwindows == 1) 592 set_last_cursor(win); 593 buflist_setfpos(buf, win, 594 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum, 595 win->w_cursor.col, TRUE); 596 } 597 598 set_bufref(&bufref, buf); 599 600 // When the buffer is no longer in a window, trigger BufWinLeave 601 if (buf->b_nwindows == 1) 602 { 603 ++buf->b_locked; 604 ++buf->b_locked_split; 605 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname, 606 FALSE, buf) 607 && !bufref_valid(&bufref)) 608 { 609 // Autocommands deleted the buffer. 610 aucmd_abort: 611 emsg(_(e_auabort)); 612 return FALSE; 613 } 614 --buf->b_locked; 615 --buf->b_locked_split; 616 if (abort_if_last && one_window()) 617 // Autocommands made this the only window. 618 goto aucmd_abort; 619 620 // When the buffer becomes hidden, but is not unloaded, trigger 621 // BufHidden 622 if (!unload_buf) 623 { 624 ++buf->b_locked; 625 ++buf->b_locked_split; 626 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname, 627 FALSE, buf) 628 && !bufref_valid(&bufref)) 629 // Autocommands deleted the buffer. 630 goto aucmd_abort; 631 --buf->b_locked; 632 --buf->b_locked_split; 633 if (abort_if_last && one_window()) 634 // Autocommands made this the only window. 635 goto aucmd_abort; 636 } 637 #ifdef FEAT_EVAL 638 // autocmds may abort script processing 639 if (!ignore_abort && aborting()) 640 return FALSE; 641 #endif 642 } 643 644 // If the buffer was in curwin and the window has changed, go back to that 645 // window, if it still exists. This avoids that ":edit x" triggering a 646 // "tabnext" BufUnload autocmd leaves a window behind without a buffer. 647 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin)) 648 { 649 block_autocmds(); 650 goto_tabpage_win(the_curtab, the_curwin); 651 unblock_autocmds(); 652 } 653 654 nwindows = buf->b_nwindows; 655 656 // decrease the link count from windows (unless not in any window) 657 if (buf->b_nwindows > 0) 658 --buf->b_nwindows; 659 660 #ifdef FEAT_DIFF 661 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0) 662 diff_buf_delete(buf); // Clear 'diff' for hidden buffer. 663 #endif 664 665 // Return when a window is displaying the buffer or when it's not 666 // unloaded. 667 if (buf->b_nwindows > 0 || !unload_buf) 668 return FALSE; 669 670 // Always remove the buffer when there is no file name. 671 if (buf->b_ffname == NULL) 672 del_buf = TRUE; 673 674 // When closing the current buffer stop Visual mode before freeing 675 // anything. 676 if (buf == curbuf && VIsual_active 677 #if defined(EXITFREE) 678 && !entered_free_all_mem 679 #endif 680 ) 681 end_visual_mode(); 682 683 /* 684 * Free all things allocated for this buffer. 685 * Also calls the "BufDelete" autocommands when del_buf is TRUE. 686 */ 687 // Remember if we are closing the current buffer. Restore the number of 688 // windows, so that autocommands in buf_freeall() don't get confused. 689 is_curbuf = (buf == curbuf); 690 buf->b_nwindows = nwindows; 691 692 buf_freeall(buf, (del_buf ? BFA_DEL : 0) 693 + (wipe_buf ? BFA_WIPE : 0) 694 + (ignore_abort ? BFA_IGNORE_ABORT : 0)); 695 696 // Autocommands may have deleted the buffer. 697 if (!bufref_valid(&bufref)) 698 return FALSE; 699 #ifdef FEAT_EVAL 700 // autocmds may abort script processing 701 if (!ignore_abort && aborting()) 702 return FALSE; 703 #endif 704 705 /* 706 * It's possible that autocommands change curbuf to the one being deleted. 707 * This might cause the previous curbuf to be deleted unexpectedly. But 708 * in some cases it's OK to delete the curbuf, because a new one is 709 * obtained anyway. Therefore only return if curbuf changed to the 710 * deleted buffer. 711 */ 712 if (buf == curbuf && !is_curbuf) 713 return FALSE; 714 715 if (win_valid_any_tab(win) && win->w_buffer == buf) 716 win->w_buffer = NULL; // make sure we don't use the buffer now 717 718 // Autocommands may have opened or closed windows for this buffer. 719 // Decrement the count for the close we do here. 720 if (buf->b_nwindows > 0) 721 --buf->b_nwindows; 722 723 /* 724 * Remove the buffer from the list. 725 */ 726 if (wipe_buf) 727 { 728 if (action == DOBUF_WIPE_REUSE) 729 { 730 // we can re-use this buffer number, store it 731 if (buf_reuse.ga_itemsize == 0) 732 ga_init2(&buf_reuse, sizeof(int), 50); 733 if (ga_grow(&buf_reuse, 1) == OK) 734 ((int *)buf_reuse.ga_data)[buf_reuse.ga_len++] = buf->b_fnum; 735 } 736 if (buf->b_sfname != buf->b_ffname) 737 VIM_CLEAR(buf->b_sfname); 738 else 739 buf->b_sfname = NULL; 740 VIM_CLEAR(buf->b_ffname); 741 if (buf->b_prev == NULL) 742 firstbuf = buf->b_next; 743 else 744 buf->b_prev->b_next = buf->b_next; 745 if (buf->b_next == NULL) 746 lastbuf = buf->b_prev; 747 else 748 buf->b_next->b_prev = buf->b_prev; 749 free_buffer(buf); 750 } 751 else 752 { 753 if (del_buf) 754 { 755 // Free all internal variables and reset option values, to make 756 // ":bdel" compatible with Vim 5.7. 757 free_buffer_stuff(buf, TRUE); 758 759 // Make it look like a new buffer. 760 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED; 761 762 // Init the options when loaded again. 763 buf->b_p_initialized = FALSE; 764 } 765 buf_clear_file(buf); 766 if (del_buf) 767 buf->b_p_bl = FALSE; 768 } 769 // NOTE: at this point "curbuf" may be invalid! 770 return TRUE; 771 } 772 773 /* 774 * Make buffer not contain a file. 775 */ 776 void 777 buf_clear_file(buf_T *buf) 778 { 779 buf->b_ml.ml_line_count = 1; 780 unchanged(buf, TRUE, TRUE); 781 buf->b_shortname = FALSE; 782 buf->b_p_eol = TRUE; 783 buf->b_start_eol = TRUE; 784 buf->b_p_bomb = FALSE; 785 buf->b_start_bomb = FALSE; 786 buf->b_ml.ml_mfp = NULL; 787 buf->b_ml.ml_flags = ML_EMPTY; // empty buffer 788 #ifdef FEAT_NETBEANS_INTG 789 netbeans_deleted_all_lines(buf); 790 #endif 791 } 792 793 /* 794 * buf_freeall() - free all things allocated for a buffer that are related to 795 * the file. Careful: get here with "curwin" NULL when exiting. 796 * flags: 797 * BFA_DEL buffer is going to be deleted 798 * BFA_WIPE buffer is going to be wiped out 799 * BFA_KEEP_UNDO do not free undo information 800 * BFA_IGNORE_ABORT don't abort even when aborting() returns TRUE 801 */ 802 void 803 buf_freeall(buf_T *buf, int flags) 804 { 805 int is_curbuf = (buf == curbuf); 806 bufref_T bufref; 807 int is_curwin = (curwin != NULL && curwin->w_buffer == buf); 808 win_T *the_curwin = curwin; 809 tabpage_T *the_curtab = curtab; 810 811 // Make sure the buffer isn't closed by autocommands. 812 ++buf->b_locked; 813 ++buf->b_locked_split; 814 set_bufref(&bufref, buf); 815 if (buf->b_ml.ml_mfp != NULL) 816 { 817 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname, 818 FALSE, buf) 819 && !bufref_valid(&bufref)) 820 // autocommands deleted the buffer 821 return; 822 } 823 if ((flags & BFA_DEL) && buf->b_p_bl) 824 { 825 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname, 826 FALSE, buf) 827 && !bufref_valid(&bufref)) 828 // autocommands deleted the buffer 829 return; 830 } 831 if (flags & BFA_WIPE) 832 { 833 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname, 834 FALSE, buf) 835 && !bufref_valid(&bufref)) 836 // autocommands deleted the buffer 837 return; 838 } 839 --buf->b_locked; 840 --buf->b_locked_split; 841 842 // If the buffer was in curwin and the window has changed, go back to that 843 // window, if it still exists. This avoids that ":edit x" triggering a 844 // "tabnext" BufUnload autocmd leaves a window behind without a buffer. 845 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin)) 846 { 847 block_autocmds(); 848 goto_tabpage_win(the_curtab, the_curwin); 849 unblock_autocmds(); 850 } 851 852 #ifdef FEAT_EVAL 853 // autocmds may abort script processing 854 if ((flags & BFA_IGNORE_ABORT) == 0 && aborting()) 855 return; 856 #endif 857 858 /* 859 * It's possible that autocommands change curbuf to the one being deleted. 860 * This might cause curbuf to be deleted unexpectedly. But in some cases 861 * it's OK to delete the curbuf, because a new one is obtained anyway. 862 * Therefore only return if curbuf changed to the deleted buffer. 863 */ 864 if (buf == curbuf && !is_curbuf) 865 return; 866 #ifdef FEAT_DIFF 867 diff_buf_delete(buf); // Can't use 'diff' for unloaded buffer. 868 #endif 869 #ifdef FEAT_SYN_HL 870 // Remove any ownsyntax, unless exiting. 871 if (curwin != NULL && curwin->w_buffer == buf) 872 reset_synblock(curwin); 873 #endif 874 875 #ifdef FEAT_FOLDING 876 // No folds in an empty buffer. 877 { 878 win_T *win; 879 tabpage_T *tp; 880 881 FOR_ALL_TAB_WINDOWS(tp, win) 882 if (win->w_buffer == buf) 883 clearFolding(win); 884 } 885 #endif 886 887 #ifdef FEAT_TCL 888 tcl_buffer_free(buf); 889 #endif 890 ml_close(buf, TRUE); // close and delete the memline/memfile 891 buf->b_ml.ml_line_count = 0; // no lines in buffer 892 if ((flags & BFA_KEEP_UNDO) == 0) 893 { 894 u_blockfree(buf); // free the memory allocated for undo 895 u_clearall(buf); // reset all undo information 896 } 897 #ifdef FEAT_SYN_HL 898 syntax_clear(&buf->b_s); // reset syntax info 899 #endif 900 #ifdef FEAT_PROP_POPUP 901 clear_buf_prop_types(buf); 902 #endif 903 buf->b_flags &= ~BF_READERR; // a read error is no longer relevant 904 } 905 906 /* 907 * Free a buffer structure and the things it contains related to the buffer 908 * itself (not the file, that must have been done already). 909 */ 910 static void 911 free_buffer(buf_T *buf) 912 { 913 ++buf_free_count; 914 free_buffer_stuff(buf, TRUE); 915 #ifdef FEAT_EVAL 916 // b:changedtick uses an item in buf_T, remove it now 917 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di); 918 unref_var_dict(buf->b_vars); 919 remove_listeners(buf); 920 #endif 921 #ifdef FEAT_LUA 922 lua_buffer_free(buf); 923 #endif 924 #ifdef FEAT_MZSCHEME 925 mzscheme_buffer_free(buf); 926 #endif 927 #ifdef FEAT_PERL 928 perl_buf_free(buf); 929 #endif 930 #ifdef FEAT_PYTHON 931 python_buffer_free(buf); 932 #endif 933 #ifdef FEAT_PYTHON3 934 python3_buffer_free(buf); 935 #endif 936 #ifdef FEAT_RUBY 937 ruby_buffer_free(buf); 938 #endif 939 #ifdef FEAT_JOB_CHANNEL 940 channel_buffer_free(buf); 941 #endif 942 #ifdef FEAT_TERMINAL 943 free_terminal(buf); 944 #endif 945 #ifdef FEAT_JOB_CHANNEL 946 vim_free(buf->b_prompt_text); 947 free_callback(&buf->b_prompt_callback); 948 free_callback(&buf->b_prompt_interrupt); 949 #endif 950 951 buf_hashtab_remove(buf); 952 953 aubuflocal_remove(buf); 954 955 if (autocmd_busy) 956 { 957 // Do not free the buffer structure while autocommands are executing, 958 // it's still needed. Free it when autocmd_busy is reset. 959 buf->b_next = au_pending_free_buf; 960 au_pending_free_buf = buf; 961 } 962 else 963 { 964 vim_free(buf); 965 if (curbuf == buf) 966 curbuf = NULL; // make clear it's not to be used 967 } 968 } 969 970 /* 971 * Initializes b:changedtick. 972 */ 973 static void 974 init_changedtick(buf_T *buf) 975 { 976 dictitem_T *di = (dictitem_T *)&buf->b_ct_di; 977 978 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO; 979 di->di_tv.v_type = VAR_NUMBER; 980 di->di_tv.v_lock = VAR_FIXED; 981 di->di_tv.vval.v_number = 0; 982 983 #ifdef FEAT_EVAL 984 STRCPY(buf->b_ct_di.di_key, "changedtick"); 985 (void)dict_add(buf->b_vars, di); 986 #endif 987 } 988 989 /* 990 * Free stuff in the buffer for ":bdel" and when wiping out the buffer. 991 */ 992 static void 993 free_buffer_stuff( 994 buf_T *buf, 995 int free_options) // free options as well 996 { 997 if (free_options) 998 { 999 clear_wininfo(buf); // including window-local options 1000 free_buf_options(buf, TRUE); 1001 #ifdef FEAT_SPELL 1002 ga_clear(&buf->b_s.b_langp); 1003 #endif 1004 } 1005 #ifdef FEAT_EVAL 1006 { 1007 varnumber_T tick = CHANGEDTICK(buf); 1008 1009 vars_clear(&buf->b_vars->dv_hashtab); // free all buffer variables 1010 hash_init(&buf->b_vars->dv_hashtab); 1011 init_changedtick(buf); 1012 CHANGEDTICK(buf) = tick; 1013 remove_listeners(buf); 1014 } 1015 #endif 1016 uc_clear(&buf->b_ucmds); // clear local user commands 1017 #ifdef FEAT_SIGNS 1018 buf_delete_signs(buf, (char_u *)"*"); // delete any signs 1019 #endif 1020 #ifdef FEAT_NETBEANS_INTG 1021 netbeans_file_killed(buf); 1022 #endif 1023 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); // clear local mappings 1024 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); // clear local abbrevs 1025 VIM_CLEAR(buf->b_start_fenc); 1026 } 1027 1028 /* 1029 * Free one wininfo_T. 1030 */ 1031 void 1032 free_wininfo(wininfo_T *wip) 1033 { 1034 if (wip->wi_optset) 1035 { 1036 clear_winopt(&wip->wi_opt); 1037 #ifdef FEAT_FOLDING 1038 deleteFoldRecurse(&wip->wi_folds); 1039 #endif 1040 } 1041 vim_free(wip); 1042 } 1043 1044 /* 1045 * Free the b_wininfo list for buffer "buf". 1046 */ 1047 static void 1048 clear_wininfo(buf_T *buf) 1049 { 1050 wininfo_T *wip; 1051 1052 while (buf->b_wininfo != NULL) 1053 { 1054 wip = buf->b_wininfo; 1055 buf->b_wininfo = wip->wi_next; 1056 free_wininfo(wip); 1057 } 1058 } 1059 1060 /* 1061 * Go to another buffer. Handles the result of the ATTENTION dialog. 1062 */ 1063 void 1064 goto_buffer( 1065 exarg_T *eap, 1066 int start, 1067 int dir, 1068 int count) 1069 { 1070 bufref_T old_curbuf; 1071 1072 set_bufref(&old_curbuf, curbuf); 1073 1074 swap_exists_action = SEA_DIALOG; 1075 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO, 1076 start, dir, count, eap->forceit); 1077 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's') 1078 { 1079 #if defined(FEAT_EVAL) 1080 cleanup_T cs; 1081 1082 // Reset the error/interrupt/exception state here so that 1083 // aborting() returns FALSE when closing a window. 1084 enter_cleanup(&cs); 1085 #endif 1086 1087 // Quitting means closing the split window, nothing else. 1088 win_close(curwin, TRUE); 1089 swap_exists_action = SEA_NONE; 1090 swap_exists_did_quit = TRUE; 1091 1092 #if defined(FEAT_EVAL) 1093 // Restore the error/interrupt/exception state if not discarded by a 1094 // new aborting error, interrupt, or uncaught exception. 1095 leave_cleanup(&cs); 1096 #endif 1097 } 1098 else 1099 handle_swap_exists(&old_curbuf); 1100 } 1101 1102 /* 1103 * Handle the situation of swap_exists_action being set. 1104 * It is allowed for "old_curbuf" to be NULL or invalid. 1105 */ 1106 void 1107 handle_swap_exists(bufref_T *old_curbuf) 1108 { 1109 #if defined(FEAT_EVAL) 1110 cleanup_T cs; 1111 #endif 1112 #ifdef FEAT_SYN_HL 1113 long old_tw = curbuf->b_p_tw; 1114 #endif 1115 buf_T *buf; 1116 1117 if (swap_exists_action == SEA_QUIT) 1118 { 1119 #if defined(FEAT_EVAL) 1120 // Reset the error/interrupt/exception state here so that 1121 // aborting() returns FALSE when closing a buffer. 1122 enter_cleanup(&cs); 1123 #endif 1124 1125 // User selected Quit at ATTENTION prompt. Go back to previous 1126 // buffer. If that buffer is gone or the same as the current one, 1127 // open a new, empty buffer. 1128 swap_exists_action = SEA_NONE; // don't want it again 1129 swap_exists_did_quit = TRUE; 1130 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE, FALSE); 1131 if (old_curbuf == NULL || !bufref_valid(old_curbuf) 1132 || old_curbuf->br_buf == curbuf) 1133 { 1134 // Block autocommands here because curwin->w_buffer is NULL. 1135 block_autocmds(); 1136 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED); 1137 unblock_autocmds(); 1138 } 1139 else 1140 buf = old_curbuf->br_buf; 1141 if (buf != NULL) 1142 { 1143 int old_msg_silent = msg_silent; 1144 1145 if (shortmess(SHM_FILEINFO)) 1146 msg_silent = 1; // prevent fileinfo message 1147 enter_buffer(buf); 1148 // restore msg_silent, so that the command line will be shown 1149 msg_silent = old_msg_silent; 1150 1151 #ifdef FEAT_SYN_HL 1152 if (old_tw != curbuf->b_p_tw) 1153 check_colorcolumn(curwin); 1154 #endif 1155 } 1156 // If "old_curbuf" is NULL we are in big trouble here... 1157 1158 #if defined(FEAT_EVAL) 1159 // Restore the error/interrupt/exception state if not discarded by a 1160 // new aborting error, interrupt, or uncaught exception. 1161 leave_cleanup(&cs); 1162 #endif 1163 } 1164 else if (swap_exists_action == SEA_RECOVER) 1165 { 1166 #if defined(FEAT_EVAL) 1167 // Reset the error/interrupt/exception state here so that 1168 // aborting() returns FALSE when closing a buffer. 1169 enter_cleanup(&cs); 1170 #endif 1171 1172 // User selected Recover at ATTENTION prompt. 1173 msg_scroll = TRUE; 1174 ml_recover(FALSE); 1175 msg_puts("\n"); // don't overwrite the last message 1176 cmdline_row = msg_row; 1177 do_modelines(0); 1178 1179 #if defined(FEAT_EVAL) 1180 // Restore the error/interrupt/exception state if not discarded by a 1181 // new aborting error, interrupt, or uncaught exception. 1182 leave_cleanup(&cs); 1183 #endif 1184 } 1185 swap_exists_action = SEA_NONE; 1186 } 1187 1188 /* 1189 * Make the current buffer empty. 1190 * Used when it is wiped out and it's the last buffer. 1191 */ 1192 static int 1193 empty_curbuf( 1194 int close_others, 1195 int forceit, 1196 int action) 1197 { 1198 int retval; 1199 buf_T *buf = curbuf; 1200 bufref_T bufref; 1201 1202 if (action == DOBUF_UNLOAD) 1203 { 1204 emsg(_("E90: Cannot unload last buffer")); 1205 return FAIL; 1206 } 1207 1208 set_bufref(&bufref, buf); 1209 if (close_others) 1210 // Close any other windows on this buffer, then make it empty. 1211 close_windows(buf, TRUE); 1212 1213 setpcmark(); 1214 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, 1215 forceit ? ECMD_FORCEIT : 0, curwin); 1216 1217 /* 1218 * do_ecmd() may create a new buffer, then we have to delete 1219 * the old one. But do_ecmd() may have done that already, check 1220 * if the buffer still exists. 1221 */ 1222 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0) 1223 close_buffer(NULL, buf, action, FALSE, FALSE); 1224 if (!close_others) 1225 need_fileinfo = FALSE; 1226 return retval; 1227 } 1228 1229 /* 1230 * Implementation of the commands for the buffer list. 1231 * 1232 * action == DOBUF_GOTO go to specified buffer 1233 * action == DOBUF_SPLIT split window and go to specified buffer 1234 * action == DOBUF_UNLOAD unload specified buffer(s) 1235 * action == DOBUF_DEL delete specified buffer(s) from buffer list 1236 * action == DOBUF_WIPE delete specified buffer(s) really 1237 * action == DOBUF_WIPE_REUSE idem, and add number to "buf_reuse" 1238 * 1239 * start == DOBUF_CURRENT go to "count" buffer from current buffer 1240 * start == DOBUF_FIRST go to "count" buffer from first buffer 1241 * start == DOBUF_LAST go to "count" buffer from last buffer 1242 * start == DOBUF_MOD go to "count" modified buffer from current buffer 1243 * 1244 * Return FAIL or OK. 1245 */ 1246 static int 1247 do_buffer_ext( 1248 int action, 1249 int start, 1250 int dir, // FORWARD or BACKWARD 1251 int count, // buffer number or number of buffers 1252 int flags) // DOBUF_FORCEIT etc. 1253 { 1254 buf_T *buf; 1255 buf_T *bp; 1256 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL 1257 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE); 1258 1259 switch (start) 1260 { 1261 case DOBUF_FIRST: buf = firstbuf; break; 1262 case DOBUF_LAST: buf = lastbuf; break; 1263 default: buf = curbuf; break; 1264 } 1265 if (start == DOBUF_MOD) // find next modified buffer 1266 { 1267 while (count-- > 0) 1268 { 1269 do 1270 { 1271 buf = buf->b_next; 1272 if (buf == NULL) 1273 buf = firstbuf; 1274 } 1275 while (buf != curbuf && !bufIsChanged(buf)); 1276 } 1277 if (!bufIsChanged(buf)) 1278 { 1279 emsg(_("E84: No modified buffer found")); 1280 return FAIL; 1281 } 1282 } 1283 else if (start == DOBUF_FIRST && count) // find specified buffer number 1284 { 1285 while (buf != NULL && buf->b_fnum != count) 1286 buf = buf->b_next; 1287 } 1288 else 1289 { 1290 bp = NULL; 1291 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf)) 1292 { 1293 // remember the buffer where we start, we come back there when all 1294 // buffers are unlisted. 1295 if (bp == NULL) 1296 bp = buf; 1297 if (dir == FORWARD) 1298 { 1299 buf = buf->b_next; 1300 if (buf == NULL) 1301 buf = firstbuf; 1302 } 1303 else 1304 { 1305 buf = buf->b_prev; 1306 if (buf == NULL) 1307 buf = lastbuf; 1308 } 1309 // don't count unlisted buffers 1310 if (unload || buf->b_p_bl) 1311 { 1312 --count; 1313 bp = NULL; // use this buffer as new starting point 1314 } 1315 if (bp == buf) 1316 { 1317 // back where we started, didn't find anything. 1318 emsg(_("E85: There is no listed buffer")); 1319 return FAIL; 1320 } 1321 } 1322 } 1323 1324 if (buf == NULL) // could not find it 1325 { 1326 if (start == DOBUF_FIRST) 1327 { 1328 // don't warn when deleting 1329 if (!unload) 1330 semsg(_(e_nobufnr), count); 1331 } 1332 else if (dir == FORWARD) 1333 emsg(_("E87: Cannot go beyond last buffer")); 1334 else 1335 emsg(_("E88: Cannot go before first buffer")); 1336 return FAIL; 1337 } 1338 #ifdef FEAT_PROP_POPUP 1339 if ((flags & DOBUF_NOPOPUP) && bt_popup(buf) 1340 # ifdef FEAT_TERMINAL 1341 && !bt_terminal(buf) 1342 #endif 1343 ) 1344 return OK; 1345 #endif 1346 1347 #ifdef FEAT_GUI 1348 need_mouse_correct = TRUE; 1349 #endif 1350 1351 /* 1352 * delete buffer buf from memory and/or the list 1353 */ 1354 if (unload) 1355 { 1356 int forward; 1357 bufref_T bufref; 1358 1359 if (!can_unload_buffer(buf)) 1360 return FAIL; 1361 1362 set_bufref(&bufref, buf); 1363 1364 // When unloading or deleting a buffer that's already unloaded and 1365 // unlisted: fail silently. 1366 if (action != DOBUF_WIPE && action != DOBUF_WIPE_REUSE 1367 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl) 1368 return FAIL; 1369 1370 if ((flags & DOBUF_FORCEIT) == 0 && bufIsChanged(buf)) 1371 { 1372 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) 1373 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write) 1374 { 1375 dialog_changed(buf, FALSE); 1376 if (!bufref_valid(&bufref)) 1377 // Autocommand deleted buffer, oops! It's not changed 1378 // now. 1379 return FAIL; 1380 // If it's still changed fail silently, the dialog already 1381 // mentioned why it fails. 1382 if (bufIsChanged(buf)) 1383 return FAIL; 1384 } 1385 else 1386 #endif 1387 { 1388 semsg(_("E89: No write since last change for buffer %d (add ! to override)"), 1389 buf->b_fnum); 1390 return FAIL; 1391 } 1392 } 1393 1394 // When closing the current buffer stop Visual mode. 1395 if (buf == curbuf && VIsual_active) 1396 end_visual_mode(); 1397 1398 /* 1399 * If deleting the last (listed) buffer, make it empty. 1400 * The last (listed) buffer cannot be unloaded. 1401 */ 1402 FOR_ALL_BUFFERS(bp) 1403 if (bp->b_p_bl && bp != buf) 1404 break; 1405 if (bp == NULL && buf == curbuf) 1406 return empty_curbuf(TRUE, (flags & DOBUF_FORCEIT), action); 1407 1408 /* 1409 * If the deleted buffer is the current one, close the current window 1410 * (unless it's the only window). Repeat this so long as we end up in 1411 * a window with this buffer. 1412 */ 1413 while (buf == curbuf 1414 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0) 1415 && (!ONE_WINDOW || first_tabpage->tp_next != NULL)) 1416 { 1417 if (win_close(curwin, FALSE) == FAIL) 1418 break; 1419 } 1420 1421 /* 1422 * If the buffer to be deleted is not the current one, delete it here. 1423 */ 1424 if (buf != curbuf) 1425 { 1426 close_windows(buf, FALSE); 1427 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0) 1428 close_buffer(NULL, buf, action, FALSE, FALSE); 1429 return OK; 1430 } 1431 1432 /* 1433 * Deleting the current buffer: Need to find another buffer to go to. 1434 * There should be another, otherwise it would have been handled 1435 * above. However, autocommands may have deleted all buffers. 1436 * First use au_new_curbuf.br_buf, if it is valid. 1437 * Then prefer the buffer we most recently visited. 1438 * Else try to find one that is loaded, after the current buffer, 1439 * then before the current buffer. 1440 * Finally use any buffer. 1441 */ 1442 buf = NULL; // selected buffer 1443 bp = NULL; // used when no loaded buffer found 1444 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf)) 1445 buf = au_new_curbuf.br_buf; 1446 #ifdef FEAT_JUMPLIST 1447 else if (curwin->w_jumplistlen > 0) 1448 { 1449 int jumpidx; 1450 1451 jumpidx = curwin->w_jumplistidx - 1; 1452 if (jumpidx < 0) 1453 jumpidx = curwin->w_jumplistlen - 1; 1454 1455 forward = jumpidx; 1456 while (jumpidx != curwin->w_jumplistidx) 1457 { 1458 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum); 1459 if (buf != NULL) 1460 { 1461 if (buf == curbuf || !buf->b_p_bl) 1462 buf = NULL; // skip current and unlisted bufs 1463 else if (buf->b_ml.ml_mfp == NULL) 1464 { 1465 // skip unloaded buf, but may keep it for later 1466 if (bp == NULL) 1467 bp = buf; 1468 buf = NULL; 1469 } 1470 } 1471 if (buf != NULL) // found a valid buffer: stop searching 1472 break; 1473 // advance to older entry in jump list 1474 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen) 1475 break; 1476 if (--jumpidx < 0) 1477 jumpidx = curwin->w_jumplistlen - 1; 1478 if (jumpidx == forward) // List exhausted for sure 1479 break; 1480 } 1481 } 1482 #endif 1483 1484 if (buf == NULL) // No previous buffer, Try 2'nd approach 1485 { 1486 forward = TRUE; 1487 buf = curbuf->b_next; 1488 for (;;) 1489 { 1490 if (buf == NULL) 1491 { 1492 if (!forward) // tried both directions 1493 break; 1494 buf = curbuf->b_prev; 1495 forward = FALSE; 1496 continue; 1497 } 1498 // in non-help buffer, try to skip help buffers, and vv 1499 if (buf->b_help == curbuf->b_help && buf->b_p_bl) 1500 { 1501 if (buf->b_ml.ml_mfp != NULL) // found loaded buffer 1502 break; 1503 if (bp == NULL) // remember unloaded buf for later 1504 bp = buf; 1505 } 1506 if (forward) 1507 buf = buf->b_next; 1508 else 1509 buf = buf->b_prev; 1510 } 1511 } 1512 if (buf == NULL) // No loaded buffer, use unloaded one 1513 buf = bp; 1514 if (buf == NULL) // No loaded buffer, find listed one 1515 { 1516 FOR_ALL_BUFFERS(buf) 1517 if (buf->b_p_bl && buf != curbuf) 1518 break; 1519 } 1520 if (buf == NULL) // Still no buffer, just take one 1521 { 1522 if (curbuf->b_next != NULL) 1523 buf = curbuf->b_next; 1524 else 1525 buf = curbuf->b_prev; 1526 } 1527 } 1528 1529 if (buf == NULL) 1530 { 1531 // Autocommands must have wiped out all other buffers. Only option 1532 // now is to make the current buffer empty. 1533 return empty_curbuf(FALSE, (flags & DOBUF_FORCEIT), action); 1534 } 1535 1536 /* 1537 * make buf current buffer 1538 */ 1539 if (action == DOBUF_SPLIT) // split window first 1540 { 1541 // If 'switchbuf' contains "useopen": jump to first window containing 1542 // "buf" if one exists 1543 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf)) 1544 return OK; 1545 // If 'switchbuf' contains "usetab": jump to first window in any tab 1546 // page containing "buf" if one exists 1547 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf)) 1548 return OK; 1549 if (win_split(0, 0) == FAIL) 1550 return FAIL; 1551 } 1552 1553 // go to current buffer - nothing to do 1554 if (buf == curbuf) 1555 return OK; 1556 1557 /* 1558 * Check if the current buffer may be abandoned. 1559 */ 1560 if (action == DOBUF_GOTO && !can_abandon(curbuf, (flags & DOBUF_FORCEIT))) 1561 { 1562 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) 1563 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write) 1564 { 1565 bufref_T bufref; 1566 1567 set_bufref(&bufref, buf); 1568 dialog_changed(curbuf, FALSE); 1569 if (!bufref_valid(&bufref)) 1570 // Autocommand deleted buffer, oops! 1571 return FAIL; 1572 } 1573 if (bufIsChanged(curbuf)) 1574 #endif 1575 { 1576 no_write_message(); 1577 return FAIL; 1578 } 1579 } 1580 1581 // Go to the other buffer. 1582 set_curbuf(buf, action); 1583 1584 if (action == DOBUF_SPLIT) 1585 RESET_BINDING(curwin); // reset 'scrollbind' and 'cursorbind' 1586 1587 #if defined(FEAT_EVAL) 1588 if (aborting()) // autocmds may abort script processing 1589 return FAIL; 1590 #endif 1591 1592 return OK; 1593 } 1594 1595 int 1596 do_buffer( 1597 int action, 1598 int start, 1599 int dir, // FORWARD or BACKWARD 1600 int count, // buffer number or number of buffers 1601 int forceit) // TRUE when using ! 1602 { 1603 return do_buffer_ext(action, start, dir, count, 1604 forceit ? DOBUF_FORCEIT : 0); 1605 } 1606 1607 /* 1608 * do_bufdel() - delete or unload buffer(s) 1609 * 1610 * addr_count == 0: ":bdel" - delete current buffer 1611 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete 1612 * buffer "end_bnr", then any other arguments. 1613 * addr_count == 2: ":N,N bdel" - delete buffers in range 1614 * 1615 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or 1616 * DOBUF_DEL (":bdel") 1617 * 1618 * Returns error message or NULL 1619 */ 1620 char * 1621 do_bufdel( 1622 int command, 1623 char_u *arg, // pointer to extra arguments 1624 int addr_count, 1625 int start_bnr, // first buffer number in a range 1626 int end_bnr, // buffer nr or last buffer nr in a range 1627 int forceit) 1628 { 1629 int do_current = 0; // delete current buffer? 1630 int deleted = 0; // number of buffers deleted 1631 char *errormsg = NULL; // return value 1632 int bnr; // buffer number 1633 char_u *p; 1634 1635 if (addr_count == 0) 1636 { 1637 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit); 1638 } 1639 else 1640 { 1641 if (addr_count == 2) 1642 { 1643 if (*arg) // both range and argument is not allowed 1644 return ex_errmsg(e_trailing_arg, arg); 1645 bnr = start_bnr; 1646 } 1647 else // addr_count == 1 1648 bnr = end_bnr; 1649 1650 for ( ;!got_int; ui_breakcheck()) 1651 { 1652 /* 1653 * Delete the current buffer last, otherwise when the 1654 * current buffer is deleted, the next buffer becomes 1655 * the current one and will be loaded, which may then 1656 * also be deleted, etc. 1657 */ 1658 if (bnr == curbuf->b_fnum) 1659 do_current = bnr; 1660 else if (do_buffer_ext(command, DOBUF_FIRST, FORWARD, (int)bnr, 1661 DOBUF_NOPOPUP | (forceit ? DOBUF_FORCEIT : 0)) == OK) 1662 ++deleted; 1663 1664 /* 1665 * find next buffer number to delete/unload 1666 */ 1667 if (addr_count == 2) 1668 { 1669 if (++bnr > end_bnr) 1670 break; 1671 } 1672 else // addr_count == 1 1673 { 1674 arg = skipwhite(arg); 1675 if (*arg == NUL) 1676 break; 1677 if (!VIM_ISDIGIT(*arg)) 1678 { 1679 p = skiptowhite_esc(arg); 1680 bnr = buflist_findpat(arg, p, 1681 command == DOBUF_WIPE || command == DOBUF_WIPE_REUSE, 1682 FALSE, FALSE); 1683 if (bnr < 0) // failed 1684 break; 1685 arg = p; 1686 } 1687 else 1688 bnr = getdigits(&arg); 1689 } 1690 } 1691 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST, 1692 FORWARD, do_current, forceit) == OK) 1693 ++deleted; 1694 1695 if (deleted == 0) 1696 { 1697 if (command == DOBUF_UNLOAD) 1698 STRCPY(IObuff, _("E515: No buffers were unloaded")); 1699 else if (command == DOBUF_DEL) 1700 STRCPY(IObuff, _("E516: No buffers were deleted")); 1701 else 1702 STRCPY(IObuff, _("E517: No buffers were wiped out")); 1703 errormsg = (char *)IObuff; 1704 } 1705 else if (deleted >= p_report) 1706 { 1707 if (command == DOBUF_UNLOAD) 1708 smsg(NGETTEXT("%d buffer unloaded", 1709 "%d buffers unloaded", deleted), deleted); 1710 else if (command == DOBUF_DEL) 1711 smsg(NGETTEXT("%d buffer deleted", 1712 "%d buffers deleted", deleted), deleted); 1713 else 1714 smsg(NGETTEXT("%d buffer wiped out", 1715 "%d buffers wiped out", deleted), deleted); 1716 } 1717 } 1718 1719 1720 return errormsg; 1721 } 1722 1723 /* 1724 * Set current buffer to "buf". Executes autocommands and closes current 1725 * buffer. "action" tells how to close the current buffer: 1726 * DOBUF_GOTO free or hide it 1727 * DOBUF_SPLIT nothing 1728 * DOBUF_UNLOAD unload it 1729 * DOBUF_DEL delete it 1730 * DOBUF_WIPE wipe it out 1731 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse" 1732 */ 1733 void 1734 set_curbuf(buf_T *buf, int action) 1735 { 1736 buf_T *prevbuf; 1737 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL 1738 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE); 1739 #ifdef FEAT_SYN_HL 1740 long old_tw = curbuf->b_p_tw; 1741 #endif 1742 bufref_T newbufref; 1743 bufref_T prevbufref; 1744 1745 setpcmark(); 1746 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0) 1747 curwin->w_alt_fnum = curbuf->b_fnum; // remember alternate file 1748 buflist_altfpos(curwin); // remember curpos 1749 1750 // Don't restart Select mode after switching to another buffer. 1751 VIsual_reselect = FALSE; 1752 1753 // close_windows() or apply_autocmds() may change curbuf and wipe out "buf" 1754 prevbuf = curbuf; 1755 set_bufref(&prevbufref, prevbuf); 1756 set_bufref(&newbufref, buf); 1757 1758 // Autocommands may delete the current buffer and/or the buffer we want to 1759 // go to. In those cases don't close the buffer. 1760 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf) 1761 || (bufref_valid(&prevbufref) 1762 && bufref_valid(&newbufref) 1763 #ifdef FEAT_EVAL 1764 && !aborting() 1765 #endif 1766 )) 1767 { 1768 #ifdef FEAT_SYN_HL 1769 if (prevbuf == curwin->w_buffer) 1770 reset_synblock(curwin); 1771 #endif 1772 if (unload) 1773 close_windows(prevbuf, FALSE); 1774 #if defined(FEAT_EVAL) 1775 if (bufref_valid(&prevbufref) && !aborting()) 1776 #else 1777 if (bufref_valid(&prevbufref)) 1778 #endif 1779 { 1780 win_T *previouswin = curwin; 1781 1782 if (prevbuf == curbuf) 1783 u_sync(FALSE); 1784 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf, 1785 unload ? action : (action == DOBUF_GOTO 1786 && !buf_hide(prevbuf) 1787 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, 1788 FALSE, FALSE); 1789 if (curwin != previouswin && win_valid(previouswin)) 1790 // autocommands changed curwin, Grr! 1791 curwin = previouswin; 1792 } 1793 } 1794 // An autocommand may have deleted "buf", already entered it (e.g., when 1795 // it did ":bunload") or aborted the script processing. 1796 // If curwin->w_buffer is null, enter_buffer() will make it valid again 1797 if ((buf_valid(buf) && buf != curbuf 1798 #ifdef FEAT_EVAL 1799 && !aborting() 1800 #endif 1801 ) || curwin->w_buffer == NULL) 1802 { 1803 enter_buffer(buf); 1804 #ifdef FEAT_SYN_HL 1805 if (old_tw != curbuf->b_p_tw) 1806 check_colorcolumn(curwin); 1807 #endif 1808 } 1809 } 1810 1811 /* 1812 * Enter a new current buffer. 1813 * Old curbuf must have been abandoned already! This also means "curbuf" may 1814 * be pointing to freed memory. 1815 */ 1816 static void 1817 enter_buffer(buf_T *buf) 1818 { 1819 // Get the buffer in the current window. 1820 curwin->w_buffer = buf; 1821 curbuf = buf; 1822 ++curbuf->b_nwindows; 1823 1824 // Copy buffer and window local option values. Not for a help buffer. 1825 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP); 1826 if (!buf->b_help) 1827 get_winopts(buf); 1828 #ifdef FEAT_FOLDING 1829 else 1830 // Remove all folds in the window. 1831 clearFolding(curwin); 1832 foldUpdateAll(curwin); // update folds (later). 1833 #endif 1834 1835 #ifdef FEAT_DIFF 1836 if (curwin->w_p_diff) 1837 diff_buf_add(curbuf); 1838 #endif 1839 1840 #ifdef FEAT_SYN_HL 1841 curwin->w_s = &(curbuf->b_s); 1842 #endif 1843 1844 // Cursor on first line by default. 1845 curwin->w_cursor.lnum = 1; 1846 curwin->w_cursor.col = 0; 1847 curwin->w_cursor.coladd = 0; 1848 curwin->w_set_curswant = TRUE; 1849 curwin->w_topline_was_set = FALSE; 1850 1851 // mark cursor position as being invalid 1852 curwin->w_valid = 0; 1853 1854 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum, 1855 curbuf->b_last_cursor.col, TRUE); 1856 1857 // Make sure the buffer is loaded. 1858 if (curbuf->b_ml.ml_mfp == NULL) // need to load the file 1859 { 1860 // If there is no filetype, allow for detecting one. Esp. useful for 1861 // ":ball" used in a autocommand. If there already is a filetype we 1862 // might prefer to keep it. 1863 if (*curbuf->b_p_ft == NUL) 1864 did_filetype = FALSE; 1865 1866 open_buffer(FALSE, NULL, 0); 1867 } 1868 else 1869 { 1870 if (!msg_silent && !shortmess(SHM_FILEINFO)) 1871 need_fileinfo = TRUE; // display file info after redraw 1872 1873 // check if file changed 1874 (void)buf_check_timestamp(curbuf, FALSE); 1875 1876 curwin->w_topline = 1; 1877 #ifdef FEAT_DIFF 1878 curwin->w_topfill = 0; 1879 #endif 1880 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); 1881 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf); 1882 } 1883 1884 // If autocommands did not change the cursor position, restore cursor lnum 1885 // and possibly cursor col. 1886 if (curwin->w_cursor.lnum == 1 && inindent(0)) 1887 buflist_getfpos(); 1888 1889 check_arg_idx(curwin); // check for valid arg_idx 1890 #ifdef FEAT_TITLE 1891 maketitle(); 1892 #endif 1893 // when autocmds didn't change it 1894 if (curwin->w_topline == 1 && !curwin->w_topline_was_set) 1895 scroll_cursor_halfway(FALSE); // redisplay at correct position 1896 1897 #ifdef FEAT_NETBEANS_INTG 1898 // Send fileOpened event because we've changed buffers. 1899 netbeans_file_activated(curbuf); 1900 #endif 1901 1902 // Change directories when the 'acd' option is set. 1903 DO_AUTOCHDIR; 1904 1905 #ifdef FEAT_KEYMAP 1906 if (curbuf->b_kmap_state & KEYMAP_INIT) 1907 (void)keymap_init(); 1908 #endif 1909 #ifdef FEAT_SPELL 1910 // May need to set the spell language. Can only do this after the buffer 1911 // has been properly setup. 1912 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL) 1913 (void)did_set_spelllang(curwin); 1914 #endif 1915 #ifdef FEAT_VIMINFO 1916 curbuf->b_last_used = vim_time(); 1917 #endif 1918 1919 redraw_later(NOT_VALID); 1920 } 1921 1922 #if defined(FEAT_AUTOCHDIR) || defined(PROTO) 1923 /* 1924 * Change to the directory of the current buffer. 1925 * Don't do this while still starting up. 1926 */ 1927 void 1928 do_autochdir(void) 1929 { 1930 if ((starting == 0 || test_autochdir) 1931 && curbuf->b_ffname != NULL 1932 && vim_chdirfile(curbuf->b_ffname, "auto") == OK) 1933 shorten_fnames(TRUE); 1934 } 1935 #endif 1936 1937 void 1938 no_write_message(void) 1939 { 1940 #ifdef FEAT_TERMINAL 1941 if (term_job_running(curbuf->b_term)) 1942 emsg(_("E948: Job still running (add ! to end the job)")); 1943 else 1944 #endif 1945 emsg(_(e_no_write_since_last_change_add_bang_to_override)); 1946 } 1947 1948 void 1949 no_write_message_nobang(buf_T *buf UNUSED) 1950 { 1951 #ifdef FEAT_TERMINAL 1952 if (term_job_running(buf->b_term)) 1953 emsg(_("E948: Job still running")); 1954 else 1955 #endif 1956 emsg(_(e_no_write_since_last_change)); 1957 } 1958 1959 /* 1960 * functions for dealing with the buffer list 1961 */ 1962 1963 /* 1964 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in 1965 * only one window. That means it can be re-used. 1966 */ 1967 int 1968 curbuf_reusable(void) 1969 { 1970 return (curbuf != NULL 1971 && curbuf->b_ffname == NULL 1972 && curbuf->b_nwindows <= 1 1973 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY()) 1974 #if defined(FEAT_QUICKFIX) 1975 && !bt_quickfix(curbuf) 1976 #endif 1977 && !curbufIsChanged()); 1978 } 1979 1980 /* 1981 * Add a file name to the buffer list. Return a pointer to the buffer. 1982 * If the same file name already exists return a pointer to that buffer. 1983 * If it does not exist, or if fname == NULL, a new entry is created. 1984 * If (flags & BLN_CURBUF) is TRUE, may use current buffer. 1985 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list. 1986 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer. 1987 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer. 1988 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer 1989 * if the buffer already exists. 1990 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse". 1991 * This is the ONLY way to create a new buffer. 1992 */ 1993 buf_T * 1994 buflist_new( 1995 char_u *ffname_arg, // full path of fname or relative 1996 char_u *sfname_arg, // short fname or NULL 1997 linenr_T lnum, // preferred cursor line 1998 int flags) // BLN_ defines 1999 { 2000 char_u *ffname = ffname_arg; 2001 char_u *sfname = sfname_arg; 2002 buf_T *buf; 2003 #ifdef UNIX 2004 stat_T st; 2005 #endif 2006 2007 if (top_file_num == 1) 2008 hash_init(&buf_hashtab); 2009 2010 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname 2011 2012 /* 2013 * If file name already exists in the list, update the entry. 2014 */ 2015 #ifdef UNIX 2016 // On Unix we can use inode numbers when the file exists. Works better 2017 // for hard links. 2018 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0) 2019 st.st_dev = (dev_T)-1; 2020 #endif 2021 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf = 2022 #ifdef UNIX 2023 buflist_findname_stat(ffname, &st) 2024 #else 2025 buflist_findname(ffname) 2026 #endif 2027 ) != NULL) 2028 { 2029 vim_free(ffname); 2030 if (lnum != 0) 2031 buflist_setfpos(buf, (flags & BLN_NOCURWIN) ? NULL : curwin, 2032 lnum, (colnr_T)0, FALSE); 2033 2034 if ((flags & BLN_NOOPT) == 0) 2035 // copy the options now, if 'cpo' doesn't have 's' and not done 2036 // already 2037 buf_copy_options(buf, 0); 2038 2039 if ((flags & BLN_LISTED) && !buf->b_p_bl) 2040 { 2041 bufref_T bufref; 2042 2043 buf->b_p_bl = TRUE; 2044 set_bufref(&bufref, buf); 2045 if (!(flags & BLN_DUMMY)) 2046 { 2047 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf) 2048 && !bufref_valid(&bufref)) 2049 return NULL; 2050 } 2051 } 2052 return buf; 2053 } 2054 2055 /* 2056 * If the current buffer has no name and no contents, use the current 2057 * buffer. Otherwise: Need to allocate a new buffer structure. 2058 * 2059 * This is the ONLY place where a new buffer structure is allocated! 2060 * (A spell file buffer is allocated in spell.c, but that's not a normal 2061 * buffer.) 2062 */ 2063 buf = NULL; 2064 if ((flags & BLN_CURBUF) && curbuf_reusable()) 2065 { 2066 buf = curbuf; 2067 // It's like this buffer is deleted. Watch out for autocommands that 2068 // change curbuf! If that happens, allocate a new buffer anyway. 2069 if (curbuf->b_p_bl) 2070 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf); 2071 if (buf == curbuf) 2072 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf); 2073 #ifdef FEAT_EVAL 2074 if (aborting()) // autocmds may abort script processing 2075 { 2076 vim_free(ffname); 2077 return NULL; 2078 } 2079 #endif 2080 if (buf == curbuf) 2081 { 2082 // Make sure 'bufhidden' and 'buftype' are empty 2083 clear_string_option(&buf->b_p_bh); 2084 clear_string_option(&buf->b_p_bt); 2085 } 2086 } 2087 if (buf != curbuf || curbuf == NULL) 2088 { 2089 buf = ALLOC_CLEAR_ONE(buf_T); 2090 if (buf == NULL) 2091 { 2092 vim_free(ffname); 2093 return NULL; 2094 } 2095 #ifdef FEAT_EVAL 2096 // init b: variables 2097 buf->b_vars = dict_alloc(); 2098 if (buf->b_vars == NULL) 2099 { 2100 vim_free(ffname); 2101 vim_free(buf); 2102 return NULL; 2103 } 2104 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE); 2105 #endif 2106 init_changedtick(buf); 2107 } 2108 2109 if (ffname != NULL) 2110 { 2111 buf->b_ffname = ffname; 2112 buf->b_sfname = vim_strsave(sfname); 2113 } 2114 2115 clear_wininfo(buf); 2116 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T); 2117 2118 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL)) 2119 || buf->b_wininfo == NULL) 2120 { 2121 if (buf->b_sfname != buf->b_ffname) 2122 VIM_CLEAR(buf->b_sfname); 2123 else 2124 buf->b_sfname = NULL; 2125 VIM_CLEAR(buf->b_ffname); 2126 if (buf != curbuf) 2127 free_buffer(buf); 2128 return NULL; 2129 } 2130 2131 if (buf == curbuf) 2132 { 2133 // free all things allocated for this buffer 2134 buf_freeall(buf, 0); 2135 if (buf != curbuf) // autocommands deleted the buffer! 2136 return NULL; 2137 #if defined(FEAT_EVAL) 2138 if (aborting()) // autocmds may abort script processing 2139 return NULL; 2140 #endif 2141 free_buffer_stuff(buf, FALSE); // delete local variables et al. 2142 2143 // Init the options. 2144 buf->b_p_initialized = FALSE; 2145 buf_copy_options(buf, BCO_ENTER); 2146 2147 #ifdef FEAT_KEYMAP 2148 // need to reload lmaps and set b:keymap_name 2149 curbuf->b_kmap_state |= KEYMAP_INIT; 2150 #endif 2151 } 2152 else 2153 { 2154 /* 2155 * put new buffer at the end of the buffer list 2156 */ 2157 buf->b_next = NULL; 2158 if (firstbuf == NULL) // buffer list is empty 2159 { 2160 buf->b_prev = NULL; 2161 firstbuf = buf; 2162 } 2163 else // append new buffer at end of list 2164 { 2165 lastbuf->b_next = buf; 2166 buf->b_prev = lastbuf; 2167 } 2168 lastbuf = buf; 2169 2170 if ((flags & BLN_REUSE) && buf_reuse.ga_len > 0) 2171 { 2172 // Recycle a previously used buffer number. Used for buffers which 2173 // are normally hidden, e.g. in a popup window. Avoids that the 2174 // buffer number grows rapidly. 2175 --buf_reuse.ga_len; 2176 buf->b_fnum = ((int *)buf_reuse.ga_data)[buf_reuse.ga_len]; 2177 2178 // Move buffer to the right place in the buffer list. 2179 while (buf->b_prev != NULL && buf->b_fnum < buf->b_prev->b_fnum) 2180 { 2181 buf_T *prev = buf->b_prev; 2182 2183 prev->b_next = buf->b_next; 2184 if (prev->b_next != NULL) 2185 prev->b_next->b_prev = prev; 2186 buf->b_next = prev; 2187 buf->b_prev = prev->b_prev; 2188 if (buf->b_prev != NULL) 2189 buf->b_prev->b_next = buf; 2190 prev->b_prev = buf; 2191 if (lastbuf == buf) 2192 lastbuf = prev; 2193 if (firstbuf == prev) 2194 firstbuf = buf; 2195 } 2196 } 2197 else 2198 buf->b_fnum = top_file_num++; 2199 if (top_file_num < 0) // wrap around (may cause duplicates) 2200 { 2201 emsg(_("W14: Warning: List of file names overflow")); 2202 if (emsg_silent == 0 && !in_assert_fails) 2203 { 2204 out_flush(); 2205 ui_delay(3001L, TRUE); // make sure it is noticed 2206 } 2207 top_file_num = 1; 2208 } 2209 buf_hashtab_add(buf); 2210 2211 /* 2212 * Always copy the options from the current buffer. 2213 */ 2214 buf_copy_options(buf, BCO_ALWAYS); 2215 } 2216 2217 buf->b_wininfo->wi_fpos.lnum = lnum; 2218 buf->b_wininfo->wi_win = curwin; 2219 2220 #ifdef FEAT_SYN_HL 2221 hash_init(&buf->b_s.b_keywtab); 2222 hash_init(&buf->b_s.b_keywtab_ic); 2223 #endif 2224 2225 buf->b_fname = buf->b_sfname; 2226 #ifdef UNIX 2227 if (st.st_dev == (dev_T)-1) 2228 buf->b_dev_valid = FALSE; 2229 else 2230 { 2231 buf->b_dev_valid = TRUE; 2232 buf->b_dev = st.st_dev; 2233 buf->b_ino = st.st_ino; 2234 } 2235 #endif 2236 buf->b_u_synced = TRUE; 2237 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED; 2238 if (flags & BLN_DUMMY) 2239 buf->b_flags |= BF_DUMMY; 2240 buf_clear_file(buf); 2241 clrallmarks(buf); // clear marks 2242 fmarks_check_names(buf); // check file marks for this file 2243 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; // init 'buflisted' 2244 if (!(flags & BLN_DUMMY)) 2245 { 2246 bufref_T bufref; 2247 2248 // Tricky: these autocommands may change the buffer list. They could 2249 // also split the window with re-using the one empty buffer. This may 2250 // result in unexpectedly losing the empty buffer. 2251 set_bufref(&bufref, buf); 2252 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf) 2253 && !bufref_valid(&bufref)) 2254 return NULL; 2255 if (flags & BLN_LISTED) 2256 { 2257 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf) 2258 && !bufref_valid(&bufref)) 2259 return NULL; 2260 } 2261 #ifdef FEAT_EVAL 2262 if (aborting()) // autocmds may abort script processing 2263 return NULL; 2264 #endif 2265 } 2266 2267 return buf; 2268 } 2269 2270 /* 2271 * Free the memory for the options of a buffer. 2272 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and 2273 * 'fileencoding'. 2274 */ 2275 void 2276 free_buf_options( 2277 buf_T *buf, 2278 int free_p_ff) 2279 { 2280 if (free_p_ff) 2281 { 2282 clear_string_option(&buf->b_p_fenc); 2283 clear_string_option(&buf->b_p_ff); 2284 clear_string_option(&buf->b_p_bh); 2285 clear_string_option(&buf->b_p_bt); 2286 } 2287 #ifdef FEAT_FIND_ID 2288 clear_string_option(&buf->b_p_def); 2289 clear_string_option(&buf->b_p_inc); 2290 # ifdef FEAT_EVAL 2291 clear_string_option(&buf->b_p_inex); 2292 # endif 2293 #endif 2294 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL) 2295 clear_string_option(&buf->b_p_inde); 2296 clear_string_option(&buf->b_p_indk); 2297 #endif 2298 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL) 2299 clear_string_option(&buf->b_p_bexpr); 2300 #endif 2301 #if defined(FEAT_CRYPT) 2302 clear_string_option(&buf->b_p_cm); 2303 #endif 2304 clear_string_option(&buf->b_p_fp); 2305 #if defined(FEAT_EVAL) 2306 clear_string_option(&buf->b_p_fex); 2307 #endif 2308 #ifdef FEAT_CRYPT 2309 # ifdef FEAT_SODIUM 2310 if (buf->b_p_key != NULL && (crypt_get_method_nr(buf) == CRYPT_M_SOD)) 2311 sodium_munlock(buf->b_p_key, STRLEN(buf->b_p_key)); 2312 # endif 2313 clear_string_option(&buf->b_p_key); 2314 #endif 2315 clear_string_option(&buf->b_p_kp); 2316 clear_string_option(&buf->b_p_mps); 2317 clear_string_option(&buf->b_p_fo); 2318 clear_string_option(&buf->b_p_flp); 2319 clear_string_option(&buf->b_p_isk); 2320 #ifdef FEAT_VARTABS 2321 clear_string_option(&buf->b_p_vsts); 2322 vim_free(buf->b_p_vsts_nopaste); 2323 buf->b_p_vsts_nopaste = NULL; 2324 vim_free(buf->b_p_vsts_array); 2325 buf->b_p_vsts_array = NULL; 2326 clear_string_option(&buf->b_p_vts); 2327 VIM_CLEAR(buf->b_p_vts_array); 2328 #endif 2329 #ifdef FEAT_KEYMAP 2330 clear_string_option(&buf->b_p_keymap); 2331 keymap_clear(&buf->b_kmap_ga); 2332 ga_clear(&buf->b_kmap_ga); 2333 #endif 2334 clear_string_option(&buf->b_p_com); 2335 #ifdef FEAT_FOLDING 2336 clear_string_option(&buf->b_p_cms); 2337 #endif 2338 clear_string_option(&buf->b_p_nf); 2339 #ifdef FEAT_SYN_HL 2340 clear_string_option(&buf->b_p_syn); 2341 clear_string_option(&buf->b_s.b_syn_isk); 2342 #endif 2343 #ifdef FEAT_SPELL 2344 clear_string_option(&buf->b_s.b_p_spc); 2345 clear_string_option(&buf->b_s.b_p_spf); 2346 vim_regfree(buf->b_s.b_cap_prog); 2347 buf->b_s.b_cap_prog = NULL; 2348 clear_string_option(&buf->b_s.b_p_spl); 2349 clear_string_option(&buf->b_s.b_p_spo); 2350 #endif 2351 #ifdef FEAT_SEARCHPATH 2352 clear_string_option(&buf->b_p_sua); 2353 #endif 2354 clear_string_option(&buf->b_p_ft); 2355 #ifdef FEAT_CINDENT 2356 clear_string_option(&buf->b_p_cink); 2357 clear_string_option(&buf->b_p_cino); 2358 #endif 2359 #if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT) 2360 clear_string_option(&buf->b_p_cinw); 2361 #endif 2362 clear_string_option(&buf->b_p_cpt); 2363 #ifdef FEAT_COMPL_FUNC 2364 clear_string_option(&buf->b_p_cfu); 2365 clear_string_option(&buf->b_p_ofu); 2366 #endif 2367 #ifdef FEAT_QUICKFIX 2368 clear_string_option(&buf->b_p_gp); 2369 clear_string_option(&buf->b_p_mp); 2370 clear_string_option(&buf->b_p_efm); 2371 #endif 2372 clear_string_option(&buf->b_p_ep); 2373 clear_string_option(&buf->b_p_path); 2374 clear_string_option(&buf->b_p_tags); 2375 clear_string_option(&buf->b_p_tc); 2376 #ifdef FEAT_EVAL 2377 clear_string_option(&buf->b_p_tfu); 2378 #endif 2379 clear_string_option(&buf->b_p_dict); 2380 clear_string_option(&buf->b_p_tsr); 2381 #ifdef FEAT_TEXTOBJ 2382 clear_string_option(&buf->b_p_qe); 2383 #endif 2384 buf->b_p_ar = -1; 2385 buf->b_p_ul = NO_LOCAL_UNDOLEVEL; 2386 #ifdef FEAT_LISP 2387 clear_string_option(&buf->b_p_lw); 2388 #endif 2389 clear_string_option(&buf->b_p_bkc); 2390 clear_string_option(&buf->b_p_menc); 2391 clear_string_option(&buf->b_p_ve); 2392 } 2393 2394 /* 2395 * Get alternate file "n". 2396 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0. 2397 * Also set cursor column to altfpos.col if 'startofline' is not set. 2398 * if (options & GETF_SETMARK) call setpcmark() 2399 * if (options & GETF_ALT) we are jumping to an alternate file. 2400 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping 2401 * 2402 * Return FAIL for failure, OK for success. 2403 */ 2404 int 2405 buflist_getfile( 2406 int n, 2407 linenr_T lnum, 2408 int options, 2409 int forceit) 2410 { 2411 buf_T *buf; 2412 win_T *wp = NULL; 2413 pos_T *fpos; 2414 colnr_T col; 2415 2416 buf = buflist_findnr(n); 2417 if (buf == NULL) 2418 { 2419 if ((options & GETF_ALT) && n == 0) 2420 emsg(_(e_no_alternate_file)); 2421 else 2422 semsg(_("E92: Buffer %d not found"), n); 2423 return FAIL; 2424 } 2425 2426 // if alternate file is the current buffer, nothing to do 2427 if (buf == curbuf) 2428 return OK; 2429 2430 if (text_locked()) 2431 { 2432 text_locked_msg(); 2433 return FAIL; 2434 } 2435 if (curbuf_locked()) 2436 return FAIL; 2437 2438 // altfpos may be changed by getfile(), get it now 2439 if (lnum == 0) 2440 { 2441 fpos = buflist_findfpos(buf); 2442 lnum = fpos->lnum; 2443 col = fpos->col; 2444 } 2445 else 2446 col = 0; 2447 2448 if (options & GETF_SWITCH) 2449 { 2450 // If 'switchbuf' contains "useopen": jump to first window containing 2451 // "buf" if one exists 2452 if (swb_flags & SWB_USEOPEN) 2453 wp = buf_jump_open_win(buf); 2454 2455 // If 'switchbuf' contains "usetab": jump to first window in any tab 2456 // page containing "buf" if one exists 2457 if (wp == NULL && (swb_flags & SWB_USETAB)) 2458 wp = buf_jump_open_tab(buf); 2459 2460 // If 'switchbuf' contains "split", "vsplit" or "newtab" and the 2461 // current buffer isn't empty: open new tab or window 2462 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB)) 2463 && !BUFEMPTY()) 2464 { 2465 if (swb_flags & SWB_NEWTAB) 2466 tabpage_new(); 2467 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0) 2468 == FAIL) 2469 return FAIL; 2470 RESET_BINDING(curwin); 2471 } 2472 } 2473 2474 ++RedrawingDisabled; 2475 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL, 2476 (options & GETF_SETMARK), lnum, forceit))) 2477 { 2478 --RedrawingDisabled; 2479 2480 // cursor is at to BOL and w_cursor.lnum is checked due to getfile() 2481 if (!p_sol && col != 0) 2482 { 2483 curwin->w_cursor.col = col; 2484 check_cursor_col(); 2485 curwin->w_cursor.coladd = 0; 2486 curwin->w_set_curswant = TRUE; 2487 } 2488 return OK; 2489 } 2490 --RedrawingDisabled; 2491 return FAIL; 2492 } 2493 2494 /* 2495 * go to the last know line number for the current buffer 2496 */ 2497 static void 2498 buflist_getfpos(void) 2499 { 2500 pos_T *fpos; 2501 2502 fpos = buflist_findfpos(curbuf); 2503 2504 curwin->w_cursor.lnum = fpos->lnum; 2505 check_cursor_lnum(); 2506 2507 if (p_sol) 2508 curwin->w_cursor.col = 0; 2509 else 2510 { 2511 curwin->w_cursor.col = fpos->col; 2512 check_cursor_col(); 2513 curwin->w_cursor.coladd = 0; 2514 curwin->w_set_curswant = TRUE; 2515 } 2516 } 2517 2518 #if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO) 2519 /* 2520 * Find file in buffer list by name (it has to be for the current window). 2521 * Returns NULL if not found. 2522 */ 2523 buf_T * 2524 buflist_findname_exp(char_u *fname) 2525 { 2526 char_u *ffname; 2527 buf_T *buf = NULL; 2528 2529 // First make the name into a full path name 2530 ffname = FullName_save(fname, 2531 #ifdef UNIX 2532 TRUE // force expansion, get rid of symbolic links 2533 #else 2534 FALSE 2535 #endif 2536 ); 2537 if (ffname != NULL) 2538 { 2539 buf = buflist_findname(ffname); 2540 vim_free(ffname); 2541 } 2542 return buf; 2543 } 2544 #endif 2545 2546 /* 2547 * Find file in buffer list by name (it has to be for the current window). 2548 * "ffname" must have a full path. 2549 * Skips dummy buffers. 2550 * Returns NULL if not found. 2551 */ 2552 buf_T * 2553 buflist_findname(char_u *ffname) 2554 { 2555 #ifdef UNIX 2556 stat_T st; 2557 2558 if (mch_stat((char *)ffname, &st) < 0) 2559 st.st_dev = (dev_T)-1; 2560 return buflist_findname_stat(ffname, &st); 2561 } 2562 2563 /* 2564 * Same as buflist_findname(), but pass the stat structure to avoid getting it 2565 * twice for the same file. 2566 * Returns NULL if not found. 2567 */ 2568 static buf_T * 2569 buflist_findname_stat( 2570 char_u *ffname, 2571 stat_T *stp) 2572 { 2573 #endif 2574 buf_T *buf; 2575 2576 // Start at the last buffer, expect to find a match sooner. 2577 FOR_ALL_BUFS_FROM_LAST(buf) 2578 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname 2579 #ifdef UNIX 2580 , stp 2581 #endif 2582 )) 2583 return buf; 2584 return NULL; 2585 } 2586 2587 /* 2588 * Find file in buffer list by a regexp pattern. 2589 * Return fnum of the found buffer. 2590 * Return < 0 for error. 2591 */ 2592 int 2593 buflist_findpat( 2594 char_u *pattern, 2595 char_u *pattern_end, // pointer to first char after pattern 2596 int unlisted, // find unlisted buffers 2597 int diffmode UNUSED, // find diff-mode buffers only 2598 int curtab_only) // find buffers in current tab only 2599 { 2600 buf_T *buf; 2601 int match = -1; 2602 int find_listed; 2603 char_u *pat; 2604 char_u *patend; 2605 int attempt; 2606 char_u *p; 2607 int toggledollar; 2608 2609 // "%" is current file, "%%" or "#" is alternate file 2610 if ((pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#')) 2611 || (in_vim9script() && pattern_end == pattern + 2 2612 && pattern[0] == '%' && pattern[1] == '%')) 2613 { 2614 if (*pattern == '#' || pattern_end == pattern + 2) 2615 match = curwin->w_alt_fnum; 2616 else 2617 match = curbuf->b_fnum; 2618 #ifdef FEAT_DIFF 2619 if (diffmode && !diff_mode_buf(buflist_findnr(match))) 2620 match = -1; 2621 #endif 2622 } 2623 2624 /* 2625 * Try four ways of matching a listed buffer: 2626 * attempt == 0: without '^' or '$' (at any position) 2627 * attempt == 1: with '^' at start (only at position 0) 2628 * attempt == 2: with '$' at end (only match at end) 2629 * attempt == 3: with '^' at start and '$' at end (only full match) 2630 * Repeat this for finding an unlisted buffer if there was no matching 2631 * listed buffer. 2632 */ 2633 else 2634 { 2635 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE); 2636 if (pat == NULL) 2637 return -1; 2638 patend = pat + STRLEN(pat) - 1; 2639 toggledollar = (patend > pat && *patend == '$'); 2640 2641 // First try finding a listed buffer. If not found and "unlisted" 2642 // is TRUE, try finding an unlisted buffer. 2643 find_listed = TRUE; 2644 for (;;) 2645 { 2646 for (attempt = 0; attempt <= 3; ++attempt) 2647 { 2648 regmatch_T regmatch; 2649 2650 // may add '^' and '$' 2651 if (toggledollar) 2652 *patend = (attempt < 2) ? NUL : '$'; // add/remove '$' 2653 p = pat; 2654 if (*p == '^' && !(attempt & 1)) // add/remove '^' 2655 ++p; 2656 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0); 2657 if (regmatch.regprog == NULL) 2658 { 2659 vim_free(pat); 2660 return -1; 2661 } 2662 2663 FOR_ALL_BUFS_FROM_LAST(buf) 2664 if (buf->b_p_bl == find_listed 2665 #ifdef FEAT_DIFF 2666 && (!diffmode || diff_mode_buf(buf)) 2667 #endif 2668 && buflist_match(®match, buf, FALSE) != NULL) 2669 { 2670 if (curtab_only) 2671 { 2672 // Ignore the match if the buffer is not open in 2673 // the current tab. 2674 win_T *wp; 2675 2676 FOR_ALL_WINDOWS(wp) 2677 if (wp->w_buffer == buf) 2678 break; 2679 if (wp == NULL) 2680 continue; 2681 } 2682 if (match >= 0) // already found a match 2683 { 2684 match = -2; 2685 break; 2686 } 2687 match = buf->b_fnum; // remember first match 2688 } 2689 2690 vim_regfree(regmatch.regprog); 2691 if (match >= 0) // found one match 2692 break; 2693 } 2694 2695 // Only search for unlisted buffers if there was no match with 2696 // a listed buffer. 2697 if (!unlisted || !find_listed || match != -1) 2698 break; 2699 find_listed = FALSE; 2700 } 2701 2702 vim_free(pat); 2703 } 2704 2705 if (match == -2) 2706 semsg(_("E93: More than one match for %s"), pattern); 2707 else if (match < 0) 2708 semsg(_("E94: No matching buffer for %s"), pattern); 2709 return match; 2710 } 2711 2712 #ifdef FEAT_VIMINFO 2713 typedef struct { 2714 buf_T *buf; 2715 char_u *match; 2716 } bufmatch_T; 2717 #endif 2718 2719 /* 2720 * Find all buffer names that match. 2721 * For command line expansion of ":buf" and ":sbuf". 2722 * Return OK if matches found, FAIL otherwise. 2723 */ 2724 int 2725 ExpandBufnames( 2726 char_u *pat, 2727 int *num_file, 2728 char_u ***file, 2729 int options) 2730 { 2731 int count = 0; 2732 buf_T *buf; 2733 int round; 2734 char_u *p; 2735 int attempt; 2736 char_u *patc; 2737 #ifdef FEAT_VIMINFO 2738 bufmatch_T *matches = NULL; 2739 #endif 2740 2741 *num_file = 0; // return values in case of FAIL 2742 *file = NULL; 2743 2744 #ifdef FEAT_DIFF 2745 if ((options & BUF_DIFF_FILTER) && !curwin->w_p_diff) 2746 return FAIL; 2747 #endif 2748 2749 // Make a copy of "pat" and change "^" to "\(^\|[\/]\)". 2750 if (*pat == '^') 2751 { 2752 patc = alloc(STRLEN(pat) + 11); 2753 if (patc == NULL) 2754 return FAIL; 2755 STRCPY(patc, "\\(^\\|[\\/]\\)"); 2756 STRCPY(patc + 11, pat + 1); 2757 } 2758 else 2759 patc = pat; 2760 2761 /* 2762 * attempt == 0: try match with '\<', match at start of word 2763 * attempt == 1: try match without '\<', match anywhere 2764 */ 2765 for (attempt = 0; attempt <= 1; ++attempt) 2766 { 2767 regmatch_T regmatch; 2768 2769 if (attempt > 0 && patc == pat) 2770 break; // there was no anchor, no need to try again 2771 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC); 2772 if (regmatch.regprog == NULL) 2773 { 2774 if (patc != pat) 2775 vim_free(patc); 2776 return FAIL; 2777 } 2778 2779 /* 2780 * round == 1: Count the matches. 2781 * round == 2: Build the array to keep the matches. 2782 */ 2783 for (round = 1; round <= 2; ++round) 2784 { 2785 count = 0; 2786 FOR_ALL_BUFFERS(buf) 2787 { 2788 if (!buf->b_p_bl) // skip unlisted buffers 2789 continue; 2790 #ifdef FEAT_DIFF 2791 if (options & BUF_DIFF_FILTER) 2792 // Skip buffers not suitable for 2793 // :diffget or :diffput completion. 2794 if (buf == curbuf || !diff_mode_buf(buf)) 2795 continue; 2796 #endif 2797 2798 p = buflist_match(®match, buf, p_wic); 2799 if (p != NULL) 2800 { 2801 if (round == 1) 2802 ++count; 2803 else 2804 { 2805 if (options & WILD_HOME_REPLACE) 2806 p = home_replace_save(buf, p); 2807 else 2808 p = vim_strsave(p); 2809 #ifdef FEAT_VIMINFO 2810 if (matches != NULL) 2811 { 2812 matches[count].buf = buf; 2813 matches[count].match = p; 2814 count++; 2815 } 2816 else 2817 #endif 2818 (*file)[count++] = p; 2819 } 2820 } 2821 } 2822 if (count == 0) // no match found, break here 2823 break; 2824 if (round == 1) 2825 { 2826 *file = ALLOC_MULT(char_u *, count); 2827 if (*file == NULL) 2828 { 2829 vim_regfree(regmatch.regprog); 2830 if (patc != pat) 2831 vim_free(patc); 2832 return FAIL; 2833 } 2834 #ifdef FEAT_VIMINFO 2835 if (options & WILD_BUFLASTUSED) 2836 matches = ALLOC_MULT(bufmatch_T, count); 2837 #endif 2838 } 2839 } 2840 vim_regfree(regmatch.regprog); 2841 if (count) // match(es) found, break here 2842 break; 2843 } 2844 2845 if (patc != pat) 2846 vim_free(patc); 2847 2848 #ifdef FEAT_VIMINFO 2849 if (matches != NULL) 2850 { 2851 int i; 2852 if (count > 1) 2853 qsort(matches, count, sizeof(bufmatch_T), buf_compare); 2854 // if the current buffer is first in the list, place it at the end 2855 if (matches[0].buf == curbuf) 2856 { 2857 for (i = 1; i < count; i++) 2858 (*file)[i-1] = matches[i].match; 2859 (*file)[count-1] = matches[0].match; 2860 } 2861 else 2862 { 2863 for (i = 0; i < count; i++) 2864 (*file)[i] = matches[i].match; 2865 } 2866 vim_free(matches); 2867 } 2868 #endif 2869 2870 *num_file = count; 2871 return (count == 0 ? FAIL : OK); 2872 } 2873 2874 /* 2875 * Check for a match on the file name for buffer "buf" with regprog "prog". 2876 */ 2877 static char_u * 2878 buflist_match( 2879 regmatch_T *rmp, 2880 buf_T *buf, 2881 int ignore_case) // when TRUE ignore case, when FALSE use 'fic' 2882 { 2883 char_u *match; 2884 2885 // First try the short file name, then the long file name. 2886 match = fname_match(rmp, buf->b_sfname, ignore_case); 2887 if (match == NULL) 2888 match = fname_match(rmp, buf->b_ffname, ignore_case); 2889 2890 return match; 2891 } 2892 2893 /* 2894 * Try matching the regexp in "prog" with file name "name". 2895 * Return "name" when there is a match, NULL when not. 2896 */ 2897 static char_u * 2898 fname_match( 2899 regmatch_T *rmp, 2900 char_u *name, 2901 int ignore_case) // when TRUE ignore case, when FALSE use 'fic' 2902 { 2903 char_u *match = NULL; 2904 char_u *p; 2905 2906 if (name != NULL) 2907 { 2908 // Ignore case when 'fileignorecase' or the argument is set. 2909 rmp->rm_ic = p_fic || ignore_case; 2910 if (vim_regexec(rmp, name, (colnr_T)0)) 2911 match = name; 2912 else 2913 { 2914 // Replace $(HOME) with '~' and try matching again. 2915 p = home_replace_save(NULL, name); 2916 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0)) 2917 match = name; 2918 vim_free(p); 2919 } 2920 } 2921 2922 return match; 2923 } 2924 2925 /* 2926 * Find a file in the buffer list by buffer number. 2927 */ 2928 buf_T * 2929 buflist_findnr(int nr) 2930 { 2931 char_u key[VIM_SIZEOF_INT * 2 + 1]; 2932 hashitem_T *hi; 2933 2934 if (nr == 0) 2935 nr = curwin->w_alt_fnum; 2936 sprintf((char *)key, "%x", nr); 2937 hi = hash_find(&buf_hashtab, key); 2938 2939 if (!HASHITEM_EMPTY(hi)) 2940 return (buf_T *)(hi->hi_key 2941 - ((unsigned)(curbuf->b_key - (char_u *)curbuf))); 2942 return NULL; 2943 } 2944 2945 /* 2946 * Get name of file 'n' in the buffer list. 2947 * When the file has no name an empty string is returned. 2948 * home_replace() is used to shorten the file name (used for marks). 2949 * Returns a pointer to allocated memory, of NULL when failed. 2950 */ 2951 char_u * 2952 buflist_nr2name( 2953 int n, 2954 int fullname, 2955 int helptail) // for help buffers return tail only 2956 { 2957 buf_T *buf; 2958 2959 buf = buflist_findnr(n); 2960 if (buf == NULL) 2961 return NULL; 2962 return home_replace_save(helptail ? buf : NULL, 2963 fullname ? buf->b_ffname : buf->b_fname); 2964 } 2965 2966 /* 2967 * Set the "lnum" and "col" for the buffer "buf" and the current window. 2968 * When "copy_options" is TRUE save the local window option values. 2969 * When "lnum" is 0 only do the options. 2970 */ 2971 void 2972 buflist_setfpos( 2973 buf_T *buf, 2974 win_T *win, // may be NULL when using :badd 2975 linenr_T lnum, 2976 colnr_T col, 2977 int copy_options) 2978 { 2979 wininfo_T *wip; 2980 2981 FOR_ALL_BUF_WININFO(buf, wip) 2982 if (wip->wi_win == win) 2983 break; 2984 if (wip == NULL) 2985 { 2986 // allocate a new entry 2987 wip = ALLOC_CLEAR_ONE(wininfo_T); 2988 if (wip == NULL) 2989 return; 2990 wip->wi_win = win; 2991 if (lnum == 0) // set lnum even when it's 0 2992 lnum = 1; 2993 } 2994 else 2995 { 2996 // remove the entry from the list 2997 if (wip->wi_prev) 2998 wip->wi_prev->wi_next = wip->wi_next; 2999 else 3000 buf->b_wininfo = wip->wi_next; 3001 if (wip->wi_next) 3002 wip->wi_next->wi_prev = wip->wi_prev; 3003 if (copy_options && wip->wi_optset) 3004 { 3005 clear_winopt(&wip->wi_opt); 3006 #ifdef FEAT_FOLDING 3007 deleteFoldRecurse(&wip->wi_folds); 3008 #endif 3009 } 3010 } 3011 if (lnum != 0) 3012 { 3013 wip->wi_fpos.lnum = lnum; 3014 wip->wi_fpos.col = col; 3015 } 3016 if (copy_options && win != NULL) 3017 { 3018 // Save the window-specific option values. 3019 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt); 3020 #ifdef FEAT_FOLDING 3021 wip->wi_fold_manual = win->w_fold_manual; 3022 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds); 3023 #endif 3024 wip->wi_optset = TRUE; 3025 } 3026 3027 // insert the entry in front of the list 3028 wip->wi_next = buf->b_wininfo; 3029 buf->b_wininfo = wip; 3030 wip->wi_prev = NULL; 3031 if (wip->wi_next) 3032 wip->wi_next->wi_prev = wip; 3033 3034 return; 3035 } 3036 3037 #ifdef FEAT_DIFF 3038 /* 3039 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab 3040 * page. That's because a diff is local to a tab page. 3041 */ 3042 static int 3043 wininfo_other_tab_diff(wininfo_T *wip) 3044 { 3045 win_T *wp; 3046 3047 if (wip->wi_opt.wo_diff) 3048 { 3049 FOR_ALL_WINDOWS(wp) 3050 // return FALSE when it's a window in the current tab page, thus 3051 // the buffer was in diff mode here 3052 if (wip->wi_win == wp) 3053 return FALSE; 3054 return TRUE; 3055 } 3056 return FALSE; 3057 } 3058 #endif 3059 3060 /* 3061 * Find info for the current window in buffer "buf". 3062 * If not found, return the info for the most recently used window. 3063 * When "need_options" is TRUE skip entries where wi_optset is FALSE. 3064 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in 3065 * another tab page. 3066 * Returns NULL when there isn't any info. 3067 */ 3068 static wininfo_T * 3069 find_wininfo( 3070 buf_T *buf, 3071 int need_options, 3072 int skip_diff_buffer UNUSED) 3073 { 3074 wininfo_T *wip; 3075 3076 FOR_ALL_BUF_WININFO(buf, wip) 3077 if (wip->wi_win == curwin 3078 #ifdef FEAT_DIFF 3079 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip)) 3080 #endif 3081 3082 && (!need_options || wip->wi_optset)) 3083 break; 3084 3085 // If no wininfo for curwin, use the first in the list (that doesn't have 3086 // 'diff' set and is in another tab page). 3087 // If "need_options" is TRUE skip entries that don't have options set, 3088 // unless the window is editing "buf", so we can copy from the window 3089 // itself. 3090 if (wip == NULL) 3091 { 3092 #ifdef FEAT_DIFF 3093 if (skip_diff_buffer) 3094 { 3095 FOR_ALL_BUF_WININFO(buf, wip) 3096 if (!wininfo_other_tab_diff(wip) 3097 && (!need_options || wip->wi_optset 3098 || (wip->wi_win != NULL 3099 && wip->wi_win->w_buffer == buf))) 3100 break; 3101 } 3102 else 3103 #endif 3104 wip = buf->b_wininfo; 3105 } 3106 return wip; 3107 } 3108 3109 /* 3110 * Reset the local window options to the values last used in this window. 3111 * If the buffer wasn't used in this window before, use the values from 3112 * the most recently used window. If the values were never set, use the 3113 * global values for the window. 3114 */ 3115 void 3116 get_winopts(buf_T *buf) 3117 { 3118 wininfo_T *wip; 3119 3120 clear_winopt(&curwin->w_onebuf_opt); 3121 #ifdef FEAT_FOLDING 3122 clearFolding(curwin); 3123 #endif 3124 3125 wip = find_wininfo(buf, TRUE, TRUE); 3126 if (wip != NULL && wip->wi_win != NULL 3127 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf) 3128 { 3129 // The buffer is currently displayed in the window: use the actual 3130 // option values instead of the saved (possibly outdated) values. 3131 win_T *wp = wip->wi_win; 3132 3133 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt); 3134 #ifdef FEAT_FOLDING 3135 curwin->w_fold_manual = wp->w_fold_manual; 3136 curwin->w_foldinvalid = TRUE; 3137 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds); 3138 #endif 3139 } 3140 else if (wip != NULL && wip->wi_optset) 3141 { 3142 // the buffer was displayed in the current window earlier 3143 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt); 3144 #ifdef FEAT_FOLDING 3145 curwin->w_fold_manual = wip->wi_fold_manual; 3146 curwin->w_foldinvalid = TRUE; 3147 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds); 3148 #endif 3149 } 3150 else 3151 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt); 3152 3153 #ifdef FEAT_FOLDING 3154 // Set 'foldlevel' to 'foldlevelstart' if it's not negative. 3155 if (p_fdls >= 0) 3156 curwin->w_p_fdl = p_fdls; 3157 #endif 3158 after_copy_winopt(curwin); 3159 } 3160 3161 /* 3162 * Find the position (lnum and col) for the buffer 'buf' for the current 3163 * window. 3164 * Returns a pointer to no_position if no position is found. 3165 */ 3166 pos_T * 3167 buflist_findfpos(buf_T *buf) 3168 { 3169 wininfo_T *wip; 3170 static pos_T no_position = {1, 0, 0}; 3171 3172 wip = find_wininfo(buf, FALSE, FALSE); 3173 if (wip != NULL) 3174 return &(wip->wi_fpos); 3175 else 3176 return &no_position; 3177 } 3178 3179 /* 3180 * Find the lnum for the buffer 'buf' for the current window. 3181 */ 3182 linenr_T 3183 buflist_findlnum(buf_T *buf) 3184 { 3185 return buflist_findfpos(buf)->lnum; 3186 } 3187 3188 /* 3189 * List all known file names (for :files and :buffers command). 3190 */ 3191 void 3192 buflist_list(exarg_T *eap) 3193 { 3194 buf_T *buf = firstbuf; 3195 int len; 3196 int i; 3197 int ro_char; 3198 int changed_char; 3199 #ifdef FEAT_TERMINAL 3200 int job_running; 3201 int job_none_open; 3202 #endif 3203 3204 #ifdef FEAT_VIMINFO 3205 garray_T buflist; 3206 buf_T **buflist_data = NULL, **p; 3207 3208 if (vim_strchr(eap->arg, 't')) 3209 { 3210 ga_init2(&buflist, sizeof(buf_T *), 50); 3211 FOR_ALL_BUFFERS(buf) 3212 { 3213 if (ga_grow(&buflist, 1) == OK) 3214 ((buf_T **)buflist.ga_data)[buflist.ga_len++] = buf; 3215 } 3216 3217 qsort(buflist.ga_data, (size_t)buflist.ga_len, 3218 sizeof(buf_T *), buf_compare); 3219 3220 buflist_data = (buf_T **)buflist.ga_data; 3221 buf = *buflist_data; 3222 } 3223 p = buflist_data; 3224 3225 for (; buf != NULL && !got_int; buf = buflist_data != NULL 3226 ? (++p < buflist_data + buflist.ga_len ? *p : NULL) 3227 : buf->b_next) 3228 #else 3229 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next) 3230 #endif 3231 { 3232 #ifdef FEAT_TERMINAL 3233 job_running = term_job_running(buf->b_term); 3234 job_none_open = job_running && term_none_open(buf->b_term); 3235 #endif 3236 // skip unlisted buffers, unless ! was used 3237 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u')) 3238 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl) 3239 || (vim_strchr(eap->arg, '+') 3240 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf))) 3241 || (vim_strchr(eap->arg, 'a') 3242 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0)) 3243 || (vim_strchr(eap->arg, 'h') 3244 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0)) 3245 #ifdef FEAT_TERMINAL 3246 || (vim_strchr(eap->arg, 'R') 3247 && (!job_running || (job_running && job_none_open))) 3248 || (vim_strchr(eap->arg, '?') 3249 && (!job_running || (job_running && !job_none_open))) 3250 || (vim_strchr(eap->arg, 'F') 3251 && (job_running || buf->b_term == NULL)) 3252 #endif 3253 || (vim_strchr(eap->arg, '-') && buf->b_p_ma) 3254 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro) 3255 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR)) 3256 || (vim_strchr(eap->arg, '%') && buf != curbuf) 3257 || (vim_strchr(eap->arg, '#') 3258 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum))) 3259 continue; 3260 if (buf_spname(buf) != NULL) 3261 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1); 3262 else 3263 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE); 3264 if (message_filtered(NameBuff)) 3265 continue; 3266 3267 changed_char = (buf->b_flags & BF_READERR) ? 'x' 3268 : (bufIsChanged(buf) ? '+' : ' '); 3269 #ifdef FEAT_TERMINAL 3270 if (term_job_running(buf->b_term)) 3271 { 3272 if (term_none_open(buf->b_term)) 3273 ro_char = '?'; 3274 else 3275 ro_char = 'R'; 3276 changed_char = ' '; // bufIsChanged() returns TRUE to avoid 3277 // closing, but it's not actually changed. 3278 } 3279 else if (buf->b_term != NULL) 3280 ro_char = 'F'; 3281 else 3282 #endif 3283 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' '); 3284 3285 msg_putchar('\n'); 3286 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"", 3287 buf->b_fnum, 3288 buf->b_p_bl ? ' ' : 'u', 3289 buf == curbuf ? '%' : 3290 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '), 3291 buf->b_ml.ml_mfp == NULL ? ' ' : 3292 (buf->b_nwindows == 0 ? 'h' : 'a'), 3293 ro_char, 3294 changed_char, 3295 NameBuff); 3296 if (len > IOSIZE - 20) 3297 len = IOSIZE - 20; 3298 3299 // put "line 999" in column 40 or after the file name 3300 i = 40 - vim_strsize(IObuff); 3301 do 3302 IObuff[len++] = ' '; 3303 while (--i > 0 && len < IOSIZE - 18); 3304 #ifdef FEAT_VIMINFO 3305 if (vim_strchr(eap->arg, 't') && buf->b_last_used) 3306 add_time(IObuff + len, (size_t)(IOSIZE - len), buf->b_last_used); 3307 else 3308 #endif 3309 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len), 3310 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum 3311 : (long)buflist_findlnum(buf)); 3312 msg_outtrans(IObuff); 3313 out_flush(); // output one line at a time 3314 ui_breakcheck(); 3315 } 3316 3317 #ifdef FEAT_VIMINFO 3318 if (buflist_data) 3319 ga_clear(&buflist); 3320 #endif 3321 } 3322 3323 /* 3324 * Get file name and line number for file 'fnum'. 3325 * Used by DoOneCmd() for translating '%' and '#'. 3326 * Used by insert_reg() and cmdline_paste() for '#' register. 3327 * Return FAIL if not found, OK for success. 3328 */ 3329 int 3330 buflist_name_nr( 3331 int fnum, 3332 char_u **fname, 3333 linenr_T *lnum) 3334 { 3335 buf_T *buf; 3336 3337 buf = buflist_findnr(fnum); 3338 if (buf == NULL || buf->b_fname == NULL) 3339 return FAIL; 3340 3341 *fname = buf->b_fname; 3342 *lnum = buflist_findlnum(buf); 3343 3344 return OK; 3345 } 3346 3347 /* 3348 * Set the file name for "buf"' to "ffname_arg", short file name to 3349 * "sfname_arg". 3350 * The file name with the full path is also remembered, for when :cd is used. 3351 * Returns FAIL for failure (file name already in use by other buffer) 3352 * OK otherwise. 3353 */ 3354 int 3355 setfname( 3356 buf_T *buf, 3357 char_u *ffname_arg, 3358 char_u *sfname_arg, 3359 int message) // give message when buffer already exists 3360 { 3361 char_u *ffname = ffname_arg; 3362 char_u *sfname = sfname_arg; 3363 buf_T *obuf = NULL; 3364 #ifdef UNIX 3365 stat_T st; 3366 #endif 3367 3368 if (ffname == NULL || *ffname == NUL) 3369 { 3370 // Removing the name. 3371 if (buf->b_sfname != buf->b_ffname) 3372 VIM_CLEAR(buf->b_sfname); 3373 else 3374 buf->b_sfname = NULL; 3375 VIM_CLEAR(buf->b_ffname); 3376 #ifdef UNIX 3377 st.st_dev = (dev_T)-1; 3378 #endif 3379 } 3380 else 3381 { 3382 fname_expand(buf, &ffname, &sfname); // will allocate ffname 3383 if (ffname == NULL) // out of memory 3384 return FAIL; 3385 3386 /* 3387 * if the file name is already used in another buffer: 3388 * - if the buffer is loaded, fail 3389 * - if the buffer is not loaded, delete it from the list 3390 */ 3391 #ifdef UNIX 3392 if (mch_stat((char *)ffname, &st) < 0) 3393 st.st_dev = (dev_T)-1; 3394 #endif 3395 if (!(buf->b_flags & BF_DUMMY)) 3396 #ifdef UNIX 3397 obuf = buflist_findname_stat(ffname, &st); 3398 #else 3399 obuf = buflist_findname(ffname); 3400 #endif 3401 if (obuf != NULL && obuf != buf) 3402 { 3403 if (obuf->b_ml.ml_mfp != NULL) // it's loaded, fail 3404 { 3405 if (message) 3406 emsg(_("E95: Buffer with this name already exists")); 3407 vim_free(ffname); 3408 return FAIL; 3409 } 3410 // delete from the list 3411 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE, FALSE); 3412 } 3413 sfname = vim_strsave(sfname); 3414 if (ffname == NULL || sfname == NULL) 3415 { 3416 vim_free(sfname); 3417 vim_free(ffname); 3418 return FAIL; 3419 } 3420 #ifdef USE_FNAME_CASE 3421 fname_case(sfname, 0); // set correct case for short file name 3422 #endif 3423 if (buf->b_sfname != buf->b_ffname) 3424 vim_free(buf->b_sfname); 3425 vim_free(buf->b_ffname); 3426 buf->b_ffname = ffname; 3427 buf->b_sfname = sfname; 3428 } 3429 buf->b_fname = buf->b_sfname; 3430 #ifdef UNIX 3431 if (st.st_dev == (dev_T)-1) 3432 buf->b_dev_valid = FALSE; 3433 else 3434 { 3435 buf->b_dev_valid = TRUE; 3436 buf->b_dev = st.st_dev; 3437 buf->b_ino = st.st_ino; 3438 } 3439 #endif 3440 3441 buf->b_shortname = FALSE; 3442 3443 buf_name_changed(buf); 3444 return OK; 3445 } 3446 3447 /* 3448 * Crude way of changing the name of a buffer. Use with care! 3449 * The name should be relative to the current directory. 3450 */ 3451 void 3452 buf_set_name(int fnum, char_u *name) 3453 { 3454 buf_T *buf; 3455 3456 buf = buflist_findnr(fnum); 3457 if (buf != NULL) 3458 { 3459 if (buf->b_sfname != buf->b_ffname) 3460 vim_free(buf->b_sfname); 3461 vim_free(buf->b_ffname); 3462 buf->b_ffname = vim_strsave(name); 3463 buf->b_sfname = NULL; 3464 // Allocate ffname and expand into full path. Also resolves .lnk 3465 // files on Win32. 3466 fname_expand(buf, &buf->b_ffname, &buf->b_sfname); 3467 buf->b_fname = buf->b_sfname; 3468 } 3469 } 3470 3471 /* 3472 * Take care of what needs to be done when the name of buffer "buf" has 3473 * changed. 3474 */ 3475 void 3476 buf_name_changed(buf_T *buf) 3477 { 3478 /* 3479 * If the file name changed, also change the name of the swapfile 3480 */ 3481 if (buf->b_ml.ml_mfp != NULL) 3482 ml_setname(buf); 3483 3484 if (curwin->w_buffer == buf) 3485 check_arg_idx(curwin); // check file name for arg list 3486 #ifdef FEAT_TITLE 3487 maketitle(); // set window title 3488 #endif 3489 status_redraw_all(); // status lines need to be redrawn 3490 fmarks_check_names(buf); // check named file marks 3491 ml_timestamp(buf); // reset timestamp 3492 } 3493 3494 /* 3495 * set alternate file name for current window 3496 * 3497 * Used by do_one_cmd(), do_write() and do_ecmd(). 3498 * Return the buffer. 3499 */ 3500 buf_T * 3501 setaltfname( 3502 char_u *ffname, 3503 char_u *sfname, 3504 linenr_T lnum) 3505 { 3506 buf_T *buf; 3507 3508 // Create a buffer. 'buflisted' is not set if it's a new buffer 3509 buf = buflist_new(ffname, sfname, lnum, 0); 3510 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0) 3511 curwin->w_alt_fnum = buf->b_fnum; 3512 return buf; 3513 } 3514 3515 /* 3516 * Get alternate file name for current window. 3517 * Return NULL if there isn't any, and give error message if requested. 3518 */ 3519 char_u * 3520 getaltfname( 3521 int errmsg) // give error message 3522 { 3523 char_u *fname; 3524 linenr_T dummy; 3525 3526 if (buflist_name_nr(0, &fname, &dummy) == FAIL) 3527 { 3528 if (errmsg) 3529 emsg(_(e_no_alternate_file)); 3530 return NULL; 3531 } 3532 return fname; 3533 } 3534 3535 /* 3536 * Add a file name to the buflist and return its number. 3537 * Uses same flags as buflist_new(), except BLN_DUMMY. 3538 * 3539 * used by qf_init(), main() and doarglist() 3540 */ 3541 int 3542 buflist_add(char_u *fname, int flags) 3543 { 3544 buf_T *buf; 3545 3546 buf = buflist_new(fname, NULL, (linenr_T)0, flags); 3547 if (buf != NULL) 3548 return buf->b_fnum; 3549 return 0; 3550 } 3551 3552 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO) 3553 /* 3554 * Adjust slashes in file names. Called after 'shellslash' was set. 3555 */ 3556 void 3557 buflist_slash_adjust(void) 3558 { 3559 buf_T *bp; 3560 3561 FOR_ALL_BUFFERS(bp) 3562 { 3563 if (bp->b_ffname != NULL) 3564 slash_adjust(bp->b_ffname); 3565 if (bp->b_sfname != NULL) 3566 slash_adjust(bp->b_sfname); 3567 } 3568 } 3569 #endif 3570 3571 /* 3572 * Set alternate cursor position for the current buffer and window "win". 3573 * Also save the local window option values. 3574 */ 3575 void 3576 buflist_altfpos(win_T *win) 3577 { 3578 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE); 3579 } 3580 3581 /* 3582 * Return TRUE if 'ffname' is not the same file as current file. 3583 * Fname must have a full path (expanded by mch_FullName()). 3584 */ 3585 int 3586 otherfile(char_u *ffname) 3587 { 3588 return otherfile_buf(curbuf, ffname 3589 #ifdef UNIX 3590 , NULL 3591 #endif 3592 ); 3593 } 3594 3595 static int 3596 otherfile_buf( 3597 buf_T *buf, 3598 char_u *ffname 3599 #ifdef UNIX 3600 , stat_T *stp 3601 #endif 3602 ) 3603 { 3604 // no name is different 3605 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL) 3606 return TRUE; 3607 if (fnamecmp(ffname, buf->b_ffname) == 0) 3608 return FALSE; 3609 #ifdef UNIX 3610 { 3611 stat_T st; 3612 3613 // If no stat_T given, get it now 3614 if (stp == NULL) 3615 { 3616 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0) 3617 st.st_dev = (dev_T)-1; 3618 stp = &st; 3619 } 3620 // Use dev/ino to check if the files are the same, even when the names 3621 // are different (possible with links). Still need to compare the 3622 // name above, for when the file doesn't exist yet. 3623 // Problem: The dev/ino changes when a file is deleted (and created 3624 // again) and remains the same when renamed/moved. We don't want to 3625 // mch_stat() each buffer each time, that would be too slow. Get the 3626 // dev/ino again when they appear to match, but not when they appear 3627 // to be different: Could skip a buffer when it's actually the same 3628 // file. 3629 if (buf_same_ino(buf, stp)) 3630 { 3631 buf_setino(buf); 3632 if (buf_same_ino(buf, stp)) 3633 return FALSE; 3634 } 3635 } 3636 #endif 3637 return TRUE; 3638 } 3639 3640 #if defined(UNIX) || defined(PROTO) 3641 /* 3642 * Set inode and device number for a buffer. 3643 * Must always be called when b_fname is changed!. 3644 */ 3645 void 3646 buf_setino(buf_T *buf) 3647 { 3648 stat_T st; 3649 3650 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0) 3651 { 3652 buf->b_dev_valid = TRUE; 3653 buf->b_dev = st.st_dev; 3654 buf->b_ino = st.st_ino; 3655 } 3656 else 3657 buf->b_dev_valid = FALSE; 3658 } 3659 3660 /* 3661 * Return TRUE if dev/ino in buffer "buf" matches with "stp". 3662 */ 3663 static int 3664 buf_same_ino( 3665 buf_T *buf, 3666 stat_T *stp) 3667 { 3668 return (buf->b_dev_valid 3669 && stp->st_dev == buf->b_dev 3670 && stp->st_ino == buf->b_ino); 3671 } 3672 #endif 3673 3674 /* 3675 * Print info about the current buffer. 3676 */ 3677 void 3678 fileinfo( 3679 int fullname, // when non-zero print full path 3680 int shorthelp, 3681 int dont_truncate) 3682 { 3683 char_u *name; 3684 int n; 3685 char *p; 3686 char *buffer; 3687 size_t len; 3688 3689 buffer = alloc(IOSIZE); 3690 if (buffer == NULL) 3691 return; 3692 3693 if (fullname > 1) // 2 CTRL-G: include buffer number 3694 { 3695 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum); 3696 p = buffer + STRLEN(buffer); 3697 } 3698 else 3699 p = buffer; 3700 3701 *p++ = '"'; 3702 if (buf_spname(curbuf) != NULL) 3703 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1); 3704 else 3705 { 3706 if (!fullname && curbuf->b_fname != NULL) 3707 name = curbuf->b_fname; 3708 else 3709 name = curbuf->b_ffname; 3710 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p, 3711 (int)(IOSIZE - (p - buffer)), TRUE); 3712 } 3713 3714 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s", 3715 curbufIsChanged() ? (shortmess(SHM_MOD) 3716 ? " [+]" : _(" [Modified]")) : " ", 3717 (curbuf->b_flags & BF_NOTEDITED) 3718 #ifdef FEAT_QUICKFIX 3719 && !bt_dontwrite(curbuf) 3720 #endif 3721 ? _("[Not edited]") : "", 3722 (curbuf->b_flags & BF_NEW) 3723 #ifdef FEAT_QUICKFIX 3724 && !bt_dontwrite(curbuf) 3725 #endif 3726 ? new_file_message() : "", 3727 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "", 3728 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]") 3729 : _("[readonly]")) : "", 3730 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK) 3731 || curbuf->b_p_ro) ? 3732 " " : ""); 3733 // With 32 bit longs and more than 21,474,836 lines multiplying by 100 3734 // causes an overflow, thus for large numbers divide instead. 3735 if (curwin->w_cursor.lnum > 1000000L) 3736 n = (int)(((long)curwin->w_cursor.lnum) / 3737 ((long)curbuf->b_ml.ml_line_count / 100L)); 3738 else 3739 n = (int)(((long)curwin->w_cursor.lnum * 100L) / 3740 (long)curbuf->b_ml.ml_line_count); 3741 if (curbuf->b_ml.ml_flags & ML_EMPTY) 3742 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg)); 3743 #ifdef FEAT_CMDL_INFO 3744 else if (p_ru) 3745 // Current line and column are already on the screen -- webb 3746 vim_snprintf_add(buffer, IOSIZE, 3747 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--", 3748 curbuf->b_ml.ml_line_count), 3749 (long)curbuf->b_ml.ml_line_count, n); 3750 #endif 3751 else 3752 { 3753 vim_snprintf_add(buffer, IOSIZE, 3754 _("line %ld of %ld --%d%%-- col "), 3755 (long)curwin->w_cursor.lnum, 3756 (long)curbuf->b_ml.ml_line_count, 3757 n); 3758 validate_virtcol(); 3759 len = STRLEN(buffer); 3760 col_print((char_u *)buffer + len, IOSIZE - len, 3761 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1); 3762 } 3763 3764 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE, 3765 !shortmess(SHM_FILE)); 3766 3767 if (dont_truncate) 3768 { 3769 // Temporarily set msg_scroll to avoid the message being truncated. 3770 // First call msg_start() to get the message in the right place. 3771 msg_start(); 3772 n = msg_scroll; 3773 msg_scroll = TRUE; 3774 msg(buffer); 3775 msg_scroll = n; 3776 } 3777 else 3778 { 3779 p = (char *)msg_trunc_attr(buffer, FALSE, 0); 3780 if (restart_edit != 0 || (msg_scrolled && !need_wait_return)) 3781 // Need to repeat the message after redrawing when: 3782 // - When restart_edit is set (otherwise there will be a delay 3783 // before redrawing). 3784 // - When the screen was scrolled but there is no wait-return 3785 // prompt. 3786 set_keep_msg((char_u *)p, 0); 3787 } 3788 3789 vim_free(buffer); 3790 } 3791 3792 void 3793 col_print( 3794 char_u *buf, 3795 size_t buflen, 3796 int col, 3797 int vcol) 3798 { 3799 if (col == vcol) 3800 vim_snprintf((char *)buf, buflen, "%d", col); 3801 else 3802 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol); 3803 } 3804 3805 #if defined(FEAT_TITLE) || defined(PROTO) 3806 static char_u *lasttitle = NULL; 3807 static char_u *lasticon = NULL; 3808 3809 /* 3810 * Put the file name in the title bar and icon of the window. 3811 */ 3812 void 3813 maketitle(void) 3814 { 3815 char_u *p; 3816 char_u *title_str = NULL; 3817 char_u *icon_str = NULL; 3818 int maxlen = 0; 3819 int len; 3820 int mustset; 3821 char_u buf[IOSIZE]; 3822 int off; 3823 3824 if (!redrawing()) 3825 { 3826 // Postpone updating the title when 'lazyredraw' is set. 3827 need_maketitle = TRUE; 3828 return; 3829 } 3830 3831 need_maketitle = FALSE; 3832 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL) 3833 return; // nothing to do 3834 3835 if (p_title) 3836 { 3837 if (p_titlelen > 0) 3838 { 3839 maxlen = p_titlelen * Columns / 100; 3840 if (maxlen < 10) 3841 maxlen = 10; 3842 } 3843 3844 title_str = buf; 3845 if (*p_titlestring != NUL) 3846 { 3847 #ifdef FEAT_STL_OPT 3848 if (stl_syntax & STL_IN_TITLE) 3849 { 3850 int use_sandbox = FALSE; 3851 int called_emsg_before = called_emsg; 3852 3853 # ifdef FEAT_EVAL 3854 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0); 3855 # endif 3856 build_stl_str_hl(curwin, title_str, sizeof(buf), 3857 p_titlestring, use_sandbox, 3858 0, maxlen, NULL, NULL); 3859 if (called_emsg > called_emsg_before) 3860 set_string_option_direct((char_u *)"titlestring", -1, 3861 (char_u *)"", OPT_FREE, SID_ERROR); 3862 } 3863 else 3864 #endif 3865 title_str = p_titlestring; 3866 } 3867 else 3868 { 3869 // format: "fname + (path) (1 of 2) - VIM" 3870 3871 #define SPACE_FOR_FNAME (IOSIZE - 100) 3872 #define SPACE_FOR_DIR (IOSIZE - 20) 3873 #define SPACE_FOR_ARGNR (IOSIZE - 10) // at least room for " - VIM" 3874 if (curbuf->b_fname == NULL) 3875 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME); 3876 #ifdef FEAT_TERMINAL 3877 else if (curbuf->b_term != NULL) 3878 { 3879 vim_strncpy(buf, term_get_status_text(curbuf->b_term), 3880 SPACE_FOR_FNAME); 3881 } 3882 #endif 3883 else 3884 { 3885 p = transstr(gettail(curbuf->b_fname)); 3886 vim_strncpy(buf, p, SPACE_FOR_FNAME); 3887 vim_free(p); 3888 } 3889 3890 #ifdef FEAT_TERMINAL 3891 if (curbuf->b_term == NULL) 3892 #endif 3893 switch (bufIsChanged(curbuf) 3894 + (curbuf->b_p_ro * 2) 3895 + (!curbuf->b_p_ma * 4)) 3896 { 3897 case 1: STRCAT(buf, " +"); break; 3898 case 2: STRCAT(buf, " ="); break; 3899 case 3: STRCAT(buf, " =+"); break; 3900 case 4: 3901 case 6: STRCAT(buf, " -"); break; 3902 case 5: 3903 case 7: STRCAT(buf, " -+"); break; 3904 } 3905 3906 if (curbuf->b_fname != NULL 3907 #ifdef FEAT_TERMINAL 3908 && curbuf->b_term == NULL 3909 #endif 3910 ) 3911 { 3912 // Get path of file, replace home dir with ~ 3913 off = (int)STRLEN(buf); 3914 buf[off++] = ' '; 3915 buf[off++] = '('; 3916 home_replace(curbuf, curbuf->b_ffname, 3917 buf + off, SPACE_FOR_DIR - off, TRUE); 3918 #ifdef BACKSLASH_IN_FILENAME 3919 // avoid "c:/name" to be reduced to "c" 3920 if (isalpha(buf[off]) && buf[off + 1] == ':') 3921 off += 2; 3922 #endif 3923 // remove the file name 3924 p = gettail_sep(buf + off); 3925 if (p == buf + off) 3926 { 3927 // must be a help buffer 3928 vim_strncpy(buf + off, (char_u *)_("help"), 3929 (size_t)(SPACE_FOR_DIR - off - 1)); 3930 } 3931 else 3932 *p = NUL; 3933 3934 // Translate unprintable chars and concatenate. Keep some 3935 // room for the server name. When there is no room (very long 3936 // file name) use (...). 3937 if (off < SPACE_FOR_DIR) 3938 { 3939 p = transstr(buf + off); 3940 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off)); 3941 vim_free(p); 3942 } 3943 else 3944 { 3945 vim_strncpy(buf + off, (char_u *)"...", 3946 (size_t)(SPACE_FOR_ARGNR - off)); 3947 } 3948 STRCAT(buf, ")"); 3949 } 3950 3951 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE); 3952 3953 #if defined(FEAT_CLIENTSERVER) 3954 if (serverName != NULL) 3955 { 3956 STRCAT(buf, " - "); 3957 vim_strcat(buf, serverName, IOSIZE); 3958 } 3959 else 3960 #endif 3961 STRCAT(buf, " - VIM"); 3962 3963 if (maxlen > 0) 3964 { 3965 // make it shorter by removing a bit in the middle 3966 if (vim_strsize(buf) > maxlen) 3967 trunc_string(buf, buf, maxlen, IOSIZE); 3968 } 3969 } 3970 } 3971 mustset = value_changed(title_str, &lasttitle); 3972 3973 if (p_icon) 3974 { 3975 icon_str = buf; 3976 if (*p_iconstring != NUL) 3977 { 3978 #ifdef FEAT_STL_OPT 3979 if (stl_syntax & STL_IN_ICON) 3980 { 3981 int use_sandbox = FALSE; 3982 int called_emsg_before = called_emsg; 3983 3984 # ifdef FEAT_EVAL 3985 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0); 3986 # endif 3987 build_stl_str_hl(curwin, icon_str, sizeof(buf), 3988 p_iconstring, use_sandbox, 3989 0, 0, NULL, NULL); 3990 if (called_emsg > called_emsg_before) 3991 set_string_option_direct((char_u *)"iconstring", -1, 3992 (char_u *)"", OPT_FREE, SID_ERROR); 3993 } 3994 else 3995 #endif 3996 icon_str = p_iconstring; 3997 } 3998 else 3999 { 4000 if (buf_spname(curbuf) != NULL) 4001 p = buf_spname(curbuf); 4002 else // use file name only in icon 4003 p = gettail(curbuf->b_ffname); 4004 *icon_str = NUL; 4005 // Truncate name at 100 bytes. 4006 len = (int)STRLEN(p); 4007 if (len > 100) 4008 { 4009 len -= 100; 4010 if (has_mbyte) 4011 len += (*mb_tail_off)(p, p + len) + 1; 4012 p += len; 4013 } 4014 STRCPY(icon_str, p); 4015 trans_characters(icon_str, IOSIZE); 4016 } 4017 } 4018 4019 mustset |= value_changed(icon_str, &lasticon); 4020 4021 if (mustset) 4022 resettitle(); 4023 } 4024 4025 /* 4026 * Used for title and icon: Check if "str" differs from "*last". Set "*last" 4027 * from "str" if it does. 4028 * Return TRUE if resettitle() is to be called. 4029 */ 4030 static int 4031 value_changed(char_u *str, char_u **last) 4032 { 4033 if ((str == NULL) != (*last == NULL) 4034 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0)) 4035 { 4036 vim_free(*last); 4037 if (str == NULL) 4038 { 4039 *last = NULL; 4040 mch_restore_title( 4041 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON); 4042 } 4043 else 4044 { 4045 *last = vim_strsave(str); 4046 return TRUE; 4047 } 4048 } 4049 return FALSE; 4050 } 4051 4052 /* 4053 * Put current window title back (used after calling a shell) 4054 */ 4055 void 4056 resettitle(void) 4057 { 4058 mch_settitle(lasttitle, lasticon); 4059 } 4060 4061 # if defined(EXITFREE) || defined(PROTO) 4062 void 4063 free_titles(void) 4064 { 4065 vim_free(lasttitle); 4066 vim_free(lasticon); 4067 } 4068 # endif 4069 4070 #endif // FEAT_TITLE 4071 4072 #if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO) 4073 4074 /* 4075 * Used for building in the status line. 4076 */ 4077 typedef struct 4078 { 4079 char_u *stl_start; 4080 int stl_minwid; 4081 int stl_maxwid; 4082 enum { 4083 Normal, 4084 Empty, 4085 Group, 4086 Middle, 4087 Highlight, 4088 TabPage, 4089 Trunc 4090 } stl_type; 4091 } stl_item_T; 4092 4093 static size_t stl_items_len = 20; // Initial value, grows as needed. 4094 static stl_item_T *stl_items = NULL; 4095 static int *stl_groupitem = NULL; 4096 static stl_hlrec_T *stl_hltab = NULL; 4097 static stl_hlrec_T *stl_tabtab = NULL; 4098 4099 /* 4100 * Build a string from the status line items in "fmt". 4101 * Return length of string in screen cells. 4102 * 4103 * Normally works for window "wp", except when working for 'tabline' then it 4104 * is "curwin". 4105 * 4106 * Items are drawn interspersed with the text that surrounds it 4107 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation 4108 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional 4109 * 4110 * If maxwidth is not zero, the string will be filled at any middle marker 4111 * or truncated if too long, fillchar is used for all whitespace. 4112 */ 4113 int 4114 build_stl_str_hl( 4115 win_T *wp, 4116 char_u *out, // buffer to write into != NameBuff 4117 size_t outlen, // length of out[] 4118 char_u *fmt, 4119 int use_sandbox UNUSED, // "fmt" was set insecurely, use sandbox 4120 int fillchar, 4121 int maxwidth, 4122 stl_hlrec_T **hltab, // return: HL attributes (can be NULL) 4123 stl_hlrec_T **tabtab) // return: tab page nrs (can be NULL) 4124 { 4125 linenr_T lnum; 4126 size_t len; 4127 char_u *p; 4128 char_u *s; 4129 char_u *t; 4130 int byteval; 4131 #ifdef FEAT_EVAL 4132 win_T *save_curwin; 4133 buf_T *save_curbuf; 4134 int save_VIsual_active; 4135 #endif 4136 int empty_line; 4137 colnr_T virtcol; 4138 long l; 4139 long n; 4140 int prevchar_isflag; 4141 int prevchar_isitem; 4142 int itemisflag; 4143 int fillable; 4144 char_u *str; 4145 long num; 4146 int width; 4147 int itemcnt; 4148 int curitem; 4149 int group_end_userhl; 4150 int group_start_userhl; 4151 int groupdepth; 4152 #ifdef FEAT_EVAL 4153 int evaldepth; 4154 #endif 4155 int minwid; 4156 int maxwid; 4157 int zeropad; 4158 char_u base; 4159 char_u opt; 4160 #define TMPLEN 70 4161 char_u buf_tmp[TMPLEN]; 4162 char_u win_tmp[TMPLEN]; 4163 char_u *usefmt = fmt; 4164 stl_hlrec_T *sp; 4165 int save_must_redraw = must_redraw; 4166 int save_redr_type = curwin->w_redr_type; 4167 4168 if (stl_items == NULL) 4169 { 4170 stl_items = ALLOC_MULT(stl_item_T, stl_items_len); 4171 stl_groupitem = ALLOC_MULT(int, stl_items_len); 4172 stl_hltab = ALLOC_MULT(stl_hlrec_T, stl_items_len); 4173 stl_tabtab = ALLOC_MULT(stl_hlrec_T, stl_items_len); 4174 } 4175 4176 #ifdef FEAT_EVAL 4177 /* 4178 * When the format starts with "%!" then evaluate it as an expression and 4179 * use the result as the actual format string. 4180 */ 4181 if (fmt[0] == '%' && fmt[1] == '!') 4182 { 4183 typval_T tv; 4184 4185 tv.v_type = VAR_NUMBER; 4186 tv.vval.v_number = wp->w_id; 4187 set_var((char_u *)"g:statusline_winid", &tv, FALSE); 4188 4189 usefmt = eval_to_string_safe(fmt + 2, use_sandbox); 4190 if (usefmt == NULL) 4191 usefmt = fmt; 4192 4193 do_unlet((char_u *)"g:statusline_winid", TRUE); 4194 } 4195 #endif 4196 4197 if (fillchar == 0) 4198 fillchar = ' '; 4199 4200 // The cursor in windows other than the current one isn't always 4201 // up-to-date, esp. because of autocommands and timers. 4202 lnum = wp->w_cursor.lnum; 4203 if (lnum > wp->w_buffer->b_ml.ml_line_count) 4204 { 4205 lnum = wp->w_buffer->b_ml.ml_line_count; 4206 wp->w_cursor.lnum = lnum; 4207 } 4208 4209 // Get line & check if empty (cursorpos will show "0-1"). Note that 4210 // p will become invalid when getting another buffer line. 4211 p = ml_get_buf(wp->w_buffer, lnum, FALSE); 4212 empty_line = (*p == NUL); 4213 4214 // Get the byte value now, in case we need it below. This is more efficient 4215 // than making a copy of the line. 4216 len = STRLEN(p); 4217 if (wp->w_cursor.col > (colnr_T)len) 4218 { 4219 // Line may have changed since checking the cursor column, or the lnum 4220 // was adjusted above. 4221 wp->w_cursor.col = (colnr_T)len; 4222 wp->w_cursor.coladd = 0; 4223 byteval = 0; 4224 } 4225 else 4226 byteval = (*mb_ptr2char)(p + wp->w_cursor.col); 4227 4228 groupdepth = 0; 4229 #ifdef FEAT_EVAL 4230 evaldepth = 0; 4231 #endif 4232 p = out; 4233 curitem = 0; 4234 prevchar_isflag = TRUE; 4235 prevchar_isitem = FALSE; 4236 for (s = usefmt; *s; ) 4237 { 4238 if (curitem == (int)stl_items_len) 4239 { 4240 size_t new_len = stl_items_len * 3 / 2; 4241 stl_item_T *new_items; 4242 int *new_groupitem; 4243 stl_hlrec_T *new_hlrec; 4244 4245 new_items = vim_realloc(stl_items, sizeof(stl_item_T) * new_len); 4246 if (new_items == NULL) 4247 break; 4248 stl_items = new_items; 4249 new_groupitem = vim_realloc(stl_groupitem, sizeof(int) * new_len); 4250 if (new_groupitem == NULL) 4251 break; 4252 stl_groupitem = new_groupitem; 4253 new_hlrec = vim_realloc(stl_hltab, sizeof(stl_hlrec_T) * new_len); 4254 if (new_hlrec == NULL) 4255 break; 4256 stl_hltab = new_hlrec; 4257 new_hlrec = vim_realloc(stl_tabtab, sizeof(stl_hlrec_T) * new_len); 4258 if (new_hlrec == NULL) 4259 break; 4260 stl_tabtab = new_hlrec; 4261 stl_items_len = new_len; 4262 } 4263 4264 if (*s != NUL && *s != '%') 4265 prevchar_isflag = prevchar_isitem = FALSE; 4266 4267 /* 4268 * Handle up to the next '%' or the end. 4269 */ 4270 while (*s != NUL && *s != '%' && p + 1 < out + outlen) 4271 *p++ = *s++; 4272 if (*s == NUL || p + 1 >= out + outlen) 4273 break; 4274 4275 /* 4276 * Handle one '%' item. 4277 */ 4278 s++; 4279 if (*s == NUL) // ignore trailing % 4280 break; 4281 if (*s == '%') 4282 { 4283 if (p + 1 >= out + outlen) 4284 break; 4285 *p++ = *s++; 4286 prevchar_isflag = prevchar_isitem = FALSE; 4287 continue; 4288 } 4289 if (*s == STL_MIDDLEMARK) 4290 { 4291 s++; 4292 if (groupdepth > 0) 4293 continue; 4294 stl_items[curitem].stl_type = Middle; 4295 stl_items[curitem++].stl_start = p; 4296 continue; 4297 } 4298 if (*s == STL_TRUNCMARK) 4299 { 4300 s++; 4301 stl_items[curitem].stl_type = Trunc; 4302 stl_items[curitem++].stl_start = p; 4303 continue; 4304 } 4305 if (*s == ')') 4306 { 4307 s++; 4308 if (groupdepth < 1) 4309 continue; 4310 groupdepth--; 4311 4312 t = stl_items[stl_groupitem[groupdepth]].stl_start; 4313 *p = NUL; 4314 l = vim_strsize(t); 4315 if (curitem > stl_groupitem[groupdepth] + 1 4316 && stl_items[stl_groupitem[groupdepth]].stl_minwid == 0) 4317 { 4318 // remove group if all items are empty and highlight group 4319 // doesn't change 4320 group_start_userhl = group_end_userhl = 0; 4321 for (n = stl_groupitem[groupdepth] - 1; n >= 0; n--) 4322 { 4323 if (stl_items[n].stl_type == Highlight) 4324 { 4325 group_start_userhl = group_end_userhl = 4326 stl_items[n].stl_minwid; 4327 break; 4328 } 4329 } 4330 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++) 4331 { 4332 if (stl_items[n].stl_type == Normal) 4333 break; 4334 if (stl_items[n].stl_type == Highlight) 4335 group_end_userhl = stl_items[n].stl_minwid; 4336 } 4337 if (n == curitem && group_start_userhl == group_end_userhl) 4338 { 4339 // empty group 4340 p = t; 4341 l = 0; 4342 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++) 4343 { 4344 // do not use the highlighting from the removed group 4345 if (stl_items[n].stl_type == Highlight) 4346 stl_items[n].stl_type = Empty; 4347 // adjust the start position of TabPage to the next 4348 // item position 4349 if (stl_items[n].stl_type == TabPage) 4350 stl_items[n].stl_start = p; 4351 } 4352 } 4353 } 4354 if (l > stl_items[stl_groupitem[groupdepth]].stl_maxwid) 4355 { 4356 // truncate, remove n bytes of text at the start 4357 if (has_mbyte) 4358 { 4359 // Find the first character that should be included. 4360 n = 0; 4361 while (l >= stl_items[stl_groupitem[groupdepth]].stl_maxwid) 4362 { 4363 l -= ptr2cells(t + n); 4364 n += (*mb_ptr2len)(t + n); 4365 } 4366 } 4367 else 4368 n = (long)(p - t) - stl_items[stl_groupitem[groupdepth]] 4369 .stl_maxwid + 1; 4370 4371 *t = '<'; 4372 mch_memmove(t + 1, t + n, (size_t)(p - (t + n))); 4373 p = p - n + 1; 4374 4375 // Fill up space left over by half a double-wide char. 4376 while (++l < stl_items[stl_groupitem[groupdepth]].stl_minwid) 4377 MB_CHAR2BYTES(fillchar, p); 4378 4379 // correct the start of the items for the truncation 4380 for (l = stl_groupitem[groupdepth] + 1; l < curitem; l++) 4381 { 4382 stl_items[l].stl_start -= n; 4383 if (stl_items[l].stl_start < t) 4384 stl_items[l].stl_start = t; 4385 } 4386 } 4387 else if (abs(stl_items[stl_groupitem[groupdepth]].stl_minwid) > l) 4388 { 4389 // fill 4390 n = stl_items[stl_groupitem[groupdepth]].stl_minwid; 4391 if (n < 0) 4392 { 4393 // fill by appending characters 4394 n = 0 - n; 4395 while (l++ < n && p + 1 < out + outlen) 4396 MB_CHAR2BYTES(fillchar, p); 4397 } 4398 else 4399 { 4400 // fill by inserting characters 4401 l = (n - l) * MB_CHAR2LEN(fillchar); 4402 mch_memmove(t + l, t, (size_t)(p - t)); 4403 if (p + l >= out + outlen) 4404 l = (long)((out + outlen) - p - 1); 4405 p += l; 4406 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++) 4407 stl_items[n].stl_start += l; 4408 for ( ; l > 0; l--) 4409 MB_CHAR2BYTES(fillchar, t); 4410 } 4411 } 4412 continue; 4413 } 4414 minwid = 0; 4415 maxwid = 9999; 4416 zeropad = FALSE; 4417 l = 1; 4418 if (*s == '0') 4419 { 4420 s++; 4421 zeropad = TRUE; 4422 } 4423 if (*s == '-') 4424 { 4425 s++; 4426 l = -1; 4427 } 4428 if (VIM_ISDIGIT(*s)) 4429 { 4430 minwid = (int)getdigits(&s); 4431 if (minwid < 0) // overflow 4432 minwid = 0; 4433 } 4434 if (*s == STL_USER_HL) 4435 { 4436 stl_items[curitem].stl_type = Highlight; 4437 stl_items[curitem].stl_start = p; 4438 stl_items[curitem].stl_minwid = minwid > 9 ? 1 : minwid; 4439 s++; 4440 curitem++; 4441 continue; 4442 } 4443 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR) 4444 { 4445 if (*s == STL_TABCLOSENR) 4446 { 4447 if (minwid == 0) 4448 { 4449 // %X ends the close label, go back to the previously 4450 // define tab label nr. 4451 for (n = curitem - 1; n >= 0; --n) 4452 if (stl_items[n].stl_type == TabPage 4453 && stl_items[n].stl_minwid >= 0) 4454 { 4455 minwid = stl_items[n].stl_minwid; 4456 break; 4457 } 4458 } 4459 else 4460 // close nrs are stored as negative values 4461 minwid = - minwid; 4462 } 4463 stl_items[curitem].stl_type = TabPage; 4464 stl_items[curitem].stl_start = p; 4465 stl_items[curitem].stl_minwid = minwid; 4466 s++; 4467 curitem++; 4468 continue; 4469 } 4470 if (*s == '.') 4471 { 4472 s++; 4473 if (VIM_ISDIGIT(*s)) 4474 { 4475 maxwid = (int)getdigits(&s); 4476 if (maxwid <= 0) // overflow 4477 maxwid = 50; 4478 } 4479 } 4480 minwid = (minwid > 50 ? 50 : minwid) * l; 4481 if (*s == '(') 4482 { 4483 stl_groupitem[groupdepth++] = curitem; 4484 stl_items[curitem].stl_type = Group; 4485 stl_items[curitem].stl_start = p; 4486 stl_items[curitem].stl_minwid = minwid; 4487 stl_items[curitem].stl_maxwid = maxwid; 4488 s++; 4489 curitem++; 4490 continue; 4491 } 4492 #ifdef FEAT_EVAL 4493 // Denotes end of expanded %{} block 4494 if (*s == '}' && evaldepth > 0) 4495 { 4496 s++; 4497 evaldepth--; 4498 continue; 4499 } 4500 #endif 4501 if (vim_strchr(STL_ALL, *s) == NULL) 4502 { 4503 s++; 4504 continue; 4505 } 4506 opt = *s++; 4507 4508 // OK - now for the real work 4509 base = 'D'; 4510 itemisflag = FALSE; 4511 fillable = TRUE; 4512 num = -1; 4513 str = NULL; 4514 switch (opt) 4515 { 4516 case STL_FILEPATH: 4517 case STL_FULLPATH: 4518 case STL_FILENAME: 4519 fillable = FALSE; // don't change ' ' to fillchar 4520 if (buf_spname(wp->w_buffer) != NULL) 4521 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1); 4522 else 4523 { 4524 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname 4525 : wp->w_buffer->b_fname; 4526 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE); 4527 } 4528 trans_characters(NameBuff, MAXPATHL); 4529 if (opt != STL_FILENAME) 4530 str = NameBuff; 4531 else 4532 str = gettail(NameBuff); 4533 break; 4534 4535 case STL_VIM_EXPR: // '{' 4536 { 4537 #ifdef FEAT_EVAL 4538 char_u *block_start = s - 1; 4539 #endif 4540 int reevaluate = (*s == '%'); 4541 4542 if (reevaluate) 4543 s++; 4544 itemisflag = TRUE; 4545 t = p; 4546 while ((*s != '}' || (reevaluate && s[-1] != '%')) 4547 && *s != NUL && p + 1 < out + outlen) 4548 *p++ = *s++; 4549 if (*s != '}') // missing '}' or out of space 4550 break; 4551 s++; 4552 if (reevaluate) 4553 p[-1] = 0; // remove the % at the end of %{% expr %} 4554 else 4555 *p = 0; 4556 p = t; 4557 #ifdef FEAT_EVAL 4558 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), 4559 "%d", curbuf->b_fnum); 4560 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp); 4561 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id); 4562 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp); 4563 4564 save_curbuf = curbuf; 4565 save_curwin = curwin; 4566 save_VIsual_active = VIsual_active; 4567 curwin = wp; 4568 curbuf = wp->w_buffer; 4569 // Visual mode is only valid in the current window. 4570 if (curwin != save_curwin) 4571 VIsual_active = FALSE; 4572 4573 str = eval_to_string_safe(p, use_sandbox); 4574 4575 curwin = save_curwin; 4576 curbuf = save_curbuf; 4577 VIsual_active = save_VIsual_active; 4578 do_unlet((char_u *)"g:actual_curbuf", TRUE); 4579 do_unlet((char_u *)"g:actual_curwin", TRUE); 4580 4581 if (str != NULL && *str != 0) 4582 { 4583 if (*skipdigits(str) == NUL) 4584 { 4585 num = atoi((char *)str); 4586 VIM_CLEAR(str); 4587 itemisflag = FALSE; 4588 } 4589 } 4590 4591 // If the output of the expression needs to be evaluated 4592 // replace the %{} block with the result of evaluation 4593 if (reevaluate && str != NULL && *str != 0 4594 && strchr((const char *)str, '%') != NULL 4595 && evaldepth < MAX_STL_EVAL_DEPTH) 4596 { 4597 size_t parsed_usefmt = (size_t)(block_start - usefmt); 4598 size_t str_length = strlen((const char *)str); 4599 size_t fmt_length = strlen((const char *)s); 4600 size_t new_fmt_len = parsed_usefmt 4601 + str_length + fmt_length + 3; 4602 char_u *new_fmt = (char_u *)alloc(new_fmt_len * sizeof(char_u)); 4603 char_u *new_fmt_p = new_fmt; 4604 4605 new_fmt_p = (char_u *)memcpy(new_fmt_p, usefmt, parsed_usefmt) 4606 + parsed_usefmt; 4607 new_fmt_p = (char_u *)memcpy(new_fmt_p , str, str_length) 4608 + str_length; 4609 new_fmt_p = (char_u *)memcpy(new_fmt_p, "%}", 2) + 2; 4610 new_fmt_p = (char_u *)memcpy(new_fmt_p , s, fmt_length) 4611 + fmt_length; 4612 *new_fmt_p = 0; 4613 new_fmt_p = NULL; 4614 4615 if (usefmt != fmt) 4616 vim_free(usefmt); 4617 VIM_CLEAR(str); 4618 usefmt = new_fmt; 4619 s = usefmt + parsed_usefmt; 4620 evaldepth++; 4621 continue; 4622 } 4623 #endif 4624 break; 4625 } 4626 case STL_LINE: 4627 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) 4628 ? 0L : (long)(wp->w_cursor.lnum); 4629 break; 4630 4631 case STL_NUMLINES: 4632 num = wp->w_buffer->b_ml.ml_line_count; 4633 break; 4634 4635 case STL_COLUMN: 4636 num = !(State & INSERT) && empty_line 4637 ? 0 : (int)wp->w_cursor.col + 1; 4638 break; 4639 4640 case STL_VIRTCOL: 4641 case STL_VIRTCOL_ALT: 4642 // In list mode virtcol needs to be recomputed 4643 virtcol = wp->w_virtcol; 4644 if (wp->w_p_list && wp->w_lcs_chars.tab1 == NUL) 4645 { 4646 wp->w_p_list = FALSE; 4647 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL); 4648 wp->w_p_list = TRUE; 4649 } 4650 ++virtcol; 4651 // Don't display %V if it's the same as %c. 4652 if (opt == STL_VIRTCOL_ALT 4653 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line 4654 ? 0 : (int)wp->w_cursor.col + 1))) 4655 break; 4656 num = (long)virtcol; 4657 break; 4658 4659 case STL_PERCENTAGE: 4660 num = (int)(((long)wp->w_cursor.lnum * 100L) / 4661 (long)wp->w_buffer->b_ml.ml_line_count); 4662 break; 4663 4664 case STL_ALTPERCENT: 4665 str = buf_tmp; 4666 get_rel_pos(wp, str, TMPLEN); 4667 break; 4668 4669 case STL_ARGLISTSTAT: 4670 fillable = FALSE; 4671 buf_tmp[0] = 0; 4672 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE)) 4673 str = buf_tmp; 4674 break; 4675 4676 case STL_KEYMAP: 4677 fillable = FALSE; 4678 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN)) 4679 str = buf_tmp; 4680 break; 4681 case STL_PAGENUM: 4682 #if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE) 4683 num = printer_page_num; 4684 #else 4685 num = 0; 4686 #endif 4687 break; 4688 4689 case STL_BUFNO: 4690 num = wp->w_buffer->b_fnum; 4691 break; 4692 4693 case STL_OFFSET_X: 4694 base = 'X'; 4695 // FALLTHROUGH 4696 case STL_OFFSET: 4697 #ifdef FEAT_BYTEOFF 4698 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL); 4699 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ? 4700 0L : l + 1 + (!(State & INSERT) && empty_line ? 4701 0 : (int)wp->w_cursor.col); 4702 #endif 4703 break; 4704 4705 case STL_BYTEVAL_X: 4706 base = 'X'; 4707 // FALLTHROUGH 4708 case STL_BYTEVAL: 4709 num = byteval; 4710 if (num == NL) 4711 num = 0; 4712 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC) 4713 num = NL; 4714 break; 4715 4716 case STL_ROFLAG: 4717 case STL_ROFLAG_ALT: 4718 itemisflag = TRUE; 4719 if (wp->w_buffer->b_p_ro) 4720 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]")); 4721 break; 4722 4723 case STL_HELPFLAG: 4724 case STL_HELPFLAG_ALT: 4725 itemisflag = TRUE; 4726 if (wp->w_buffer->b_help) 4727 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP" 4728 : _("[Help]")); 4729 break; 4730 4731 case STL_FILETYPE: 4732 if (*wp->w_buffer->b_p_ft != NUL 4733 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3) 4734 { 4735 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]", 4736 wp->w_buffer->b_p_ft); 4737 str = buf_tmp; 4738 } 4739 break; 4740 4741 case STL_FILETYPE_ALT: 4742 itemisflag = TRUE; 4743 if (*wp->w_buffer->b_p_ft != NUL 4744 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2) 4745 { 4746 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s", 4747 wp->w_buffer->b_p_ft); 4748 for (t = buf_tmp; *t != 0; t++) 4749 *t = TOUPPER_LOC(*t); 4750 str = buf_tmp; 4751 } 4752 break; 4753 4754 #if defined(FEAT_QUICKFIX) 4755 case STL_PREVIEWFLAG: 4756 case STL_PREVIEWFLAG_ALT: 4757 itemisflag = TRUE; 4758 if (wp->w_p_pvw) 4759 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV" 4760 : _("[Preview]")); 4761 break; 4762 4763 case STL_QUICKFIX: 4764 if (bt_quickfix(wp->w_buffer)) 4765 str = (char_u *)(wp->w_llist_ref 4766 ? _(msg_loclist) 4767 : _(msg_qflist)); 4768 break; 4769 #endif 4770 4771 case STL_MODIFIED: 4772 case STL_MODIFIED_ALT: 4773 itemisflag = TRUE; 4774 switch ((opt == STL_MODIFIED_ALT) 4775 + bufIsChanged(wp->w_buffer) * 2 4776 + (!wp->w_buffer->b_p_ma) * 4) 4777 { 4778 case 2: str = (char_u *)"[+]"; break; 4779 case 3: str = (char_u *)",+"; break; 4780 case 4: str = (char_u *)"[-]"; break; 4781 case 5: str = (char_u *)",-"; break; 4782 case 6: str = (char_u *)"[+-]"; break; 4783 case 7: str = (char_u *)",+-"; break; 4784 } 4785 break; 4786 4787 case STL_HIGHLIGHT: 4788 t = s; 4789 while (*s != '#' && *s != NUL) 4790 ++s; 4791 if (*s == '#') 4792 { 4793 stl_items[curitem].stl_type = Highlight; 4794 stl_items[curitem].stl_start = p; 4795 stl_items[curitem].stl_minwid = -syn_namen2id(t, (int)(s - t)); 4796 curitem++; 4797 } 4798 if (*s != NUL) 4799 ++s; 4800 continue; 4801 } 4802 4803 stl_items[curitem].stl_start = p; 4804 stl_items[curitem].stl_type = Normal; 4805 if (str != NULL && *str) 4806 { 4807 t = str; 4808 if (itemisflag) 4809 { 4810 if ((t[0] && t[1]) 4811 && ((!prevchar_isitem && *t == ',') 4812 || (prevchar_isflag && *t == ' '))) 4813 t++; 4814 prevchar_isflag = TRUE; 4815 } 4816 l = vim_strsize(t); 4817 if (l > 0) 4818 prevchar_isitem = TRUE; 4819 if (l > maxwid) 4820 { 4821 while (l >= maxwid) 4822 if (has_mbyte) 4823 { 4824 l -= ptr2cells(t); 4825 t += (*mb_ptr2len)(t); 4826 } 4827 else 4828 l -= byte2cells(*t++); 4829 if (p + 1 >= out + outlen) 4830 break; 4831 *p++ = '<'; 4832 } 4833 if (minwid > 0) 4834 { 4835 for (; l < minwid && p + 1 < out + outlen; l++) 4836 { 4837 // Don't put a "-" in front of a digit. 4838 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t)) 4839 *p++ = ' '; 4840 else 4841 MB_CHAR2BYTES(fillchar, p); 4842 } 4843 minwid = 0; 4844 } 4845 else 4846 minwid *= -1; 4847 for (; *t && p + 1 < out + outlen; t++) 4848 { 4849 // Change a space by fillchar, unless fillchar is '-' and a 4850 // digit follows. 4851 if (fillable && *t == ' ' 4852 && (!VIM_ISDIGIT(*(t + 1)) || fillchar != '-')) 4853 MB_CHAR2BYTES(fillchar, p); 4854 else 4855 *p++ = *t; 4856 } 4857 for (; l < minwid && p + 1 < out + outlen; l++) 4858 MB_CHAR2BYTES(fillchar, p); 4859 } 4860 else if (num >= 0) 4861 { 4862 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16)); 4863 char_u nstr[20]; 4864 4865 if (p + 20 >= out + outlen) 4866 break; // not sufficient space 4867 prevchar_isitem = TRUE; 4868 t = nstr; 4869 if (opt == STL_VIRTCOL_ALT) 4870 { 4871 *t++ = '-'; 4872 minwid--; 4873 } 4874 *t++ = '%'; 4875 if (zeropad) 4876 *t++ = '0'; 4877 *t++ = '*'; 4878 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd'); 4879 *t = 0; 4880 4881 for (n = num, l = 1; n >= nbase; n /= nbase) 4882 l++; 4883 if (opt == STL_VIRTCOL_ALT) 4884 l++; 4885 if (l > maxwid) 4886 { 4887 l += 2; 4888 n = l - maxwid; 4889 while (l-- > maxwid) 4890 num /= nbase; 4891 *t++ = '>'; 4892 *t++ = '%'; 4893 *t = t[-3]; 4894 *++t = 0; 4895 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr, 4896 0, num, n); 4897 } 4898 else 4899 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr, 4900 minwid, num); 4901 p += STRLEN(p); 4902 } 4903 else 4904 stl_items[curitem].stl_type = Empty; 4905 4906 if (opt == STL_VIM_EXPR) 4907 vim_free(str); 4908 4909 if (num >= 0 || (!itemisflag && str && *str)) 4910 prevchar_isflag = FALSE; // Item not NULL, but not a flag 4911 curitem++; 4912 } 4913 *p = NUL; 4914 itemcnt = curitem; 4915 4916 #ifdef FEAT_EVAL 4917 if (usefmt != fmt) 4918 vim_free(usefmt); 4919 #endif 4920 4921 width = vim_strsize(out); 4922 if (maxwidth > 0 && width > maxwidth) 4923 { 4924 // Result is too long, must truncate somewhere. 4925 l = 0; 4926 if (itemcnt == 0) 4927 s = out; 4928 else 4929 { 4930 for ( ; l < itemcnt; l++) 4931 if (stl_items[l].stl_type == Trunc) 4932 { 4933 // Truncate at %< item. 4934 s = stl_items[l].stl_start; 4935 break; 4936 } 4937 if (l == itemcnt) 4938 { 4939 // No %< item, truncate first item. 4940 s = stl_items[0].stl_start; 4941 l = 0; 4942 } 4943 } 4944 4945 if (width - vim_strsize(s) >= maxwidth) 4946 { 4947 // Truncation mark is beyond max length 4948 if (has_mbyte) 4949 { 4950 s = out; 4951 width = 0; 4952 for (;;) 4953 { 4954 width += ptr2cells(s); 4955 if (width >= maxwidth) 4956 break; 4957 s += (*mb_ptr2len)(s); 4958 } 4959 // Fill up for half a double-wide character. 4960 while (++width < maxwidth) 4961 MB_CHAR2BYTES(fillchar, s); 4962 } 4963 else 4964 s = out + maxwidth - 1; 4965 for (l = 0; l < itemcnt; l++) 4966 if (stl_items[l].stl_start > s) 4967 break; 4968 itemcnt = l; 4969 *s++ = '>'; 4970 *s = 0; 4971 } 4972 else 4973 { 4974 if (has_mbyte) 4975 { 4976 n = 0; 4977 while (width >= maxwidth) 4978 { 4979 width -= ptr2cells(s + n); 4980 n += (*mb_ptr2len)(s + n); 4981 } 4982 } 4983 else 4984 n = width - maxwidth + 1; 4985 p = s + n; 4986 STRMOVE(s + 1, p); 4987 *s = '<'; 4988 4989 // Fill up for half a double-wide character. 4990 while (++width < maxwidth) 4991 { 4992 s = s + STRLEN(s); 4993 MB_CHAR2BYTES(fillchar, s); 4994 *s = NUL; 4995 } 4996 4997 --n; // count the '<' 4998 for (; l < itemcnt; l++) 4999 { 5000 if (stl_items[l].stl_start - n >= s) 5001 stl_items[l].stl_start -= n; 5002 else 5003 stl_items[l].stl_start = s; 5004 } 5005 } 5006 width = maxwidth; 5007 } 5008 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen) 5009 { 5010 // Apply STL_MIDDLE if any 5011 for (l = 0; l < itemcnt; l++) 5012 if (stl_items[l].stl_type == Middle) 5013 break; 5014 if (l < itemcnt) 5015 { 5016 int middlelength = (maxwidth - width) * MB_CHAR2LEN(fillchar); 5017 p = stl_items[l].stl_start + middlelength; 5018 STRMOVE(p, stl_items[l].stl_start); 5019 for (s = stl_items[l].stl_start; s < p;) 5020 MB_CHAR2BYTES(fillchar, s); 5021 for (l++; l < itemcnt; l++) 5022 stl_items[l].stl_start += middlelength; 5023 width = maxwidth; 5024 } 5025 } 5026 5027 // Store the info about highlighting. 5028 if (hltab != NULL) 5029 { 5030 *hltab = stl_hltab; 5031 sp = stl_hltab; 5032 for (l = 0; l < itemcnt; l++) 5033 { 5034 if (stl_items[l].stl_type == Highlight) 5035 { 5036 sp->start = stl_items[l].stl_start; 5037 sp->userhl = stl_items[l].stl_minwid; 5038 sp++; 5039 } 5040 } 5041 sp->start = NULL; 5042 sp->userhl = 0; 5043 } 5044 5045 // Store the info about tab pages labels. 5046 if (tabtab != NULL) 5047 { 5048 *tabtab = stl_tabtab; 5049 sp = stl_tabtab; 5050 for (l = 0; l < itemcnt; l++) 5051 { 5052 if (stl_items[l].stl_type == TabPage) 5053 { 5054 sp->start = stl_items[l].stl_start; 5055 sp->userhl = stl_items[l].stl_minwid; 5056 sp++; 5057 } 5058 } 5059 sp->start = NULL; 5060 sp->userhl = 0; 5061 } 5062 5063 // When inside update_screen we do not want redrawing a stausline, ruler, 5064 // title, etc. to trigger another redraw, it may cause an endless loop. 5065 if (updating_screen) 5066 { 5067 must_redraw = save_must_redraw; 5068 curwin->w_redr_type = save_redr_type; 5069 } 5070 5071 return width; 5072 } 5073 #endif // FEAT_STL_OPT 5074 5075 #if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \ 5076 || defined(FEAT_GUI_TABLINE) || defined(PROTO) 5077 /* 5078 * Get relative cursor position in window into "buf[buflen]", in the form 99%, 5079 * using "Top", "Bot" or "All" when appropriate. 5080 */ 5081 void 5082 get_rel_pos( 5083 win_T *wp, 5084 char_u *buf, 5085 int buflen) 5086 { 5087 long above; // number of lines above window 5088 long below; // number of lines below window 5089 5090 if (buflen < 3) // need at least 3 chars for writing 5091 return; 5092 above = wp->w_topline - 1; 5093 #ifdef FEAT_DIFF 5094 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill; 5095 if (wp->w_topline == 1 && wp->w_topfill >= 1) 5096 above = 0; // All buffer lines are displayed and there is an 5097 // indication of filler lines, that can be considered 5098 // seeing all lines. 5099 #endif 5100 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1; 5101 if (below <= 0) 5102 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")), 5103 (size_t)(buflen - 1)); 5104 else if (above <= 0) 5105 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1)); 5106 else 5107 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L 5108 ? (int)(above / ((above + below) / 100L)) 5109 : (int)(above * 100L / (above + below))); 5110 } 5111 #endif 5112 5113 /* 5114 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file. 5115 * Return TRUE if it was appended. 5116 */ 5117 static int 5118 append_arg_number( 5119 win_T *wp, 5120 char_u *buf, 5121 int buflen, 5122 int add_file) // Add "file" before the arg number 5123 { 5124 char_u *p; 5125 5126 if (ARGCOUNT <= 1) // nothing to do 5127 return FALSE; 5128 5129 p = buf + STRLEN(buf); // go to the end of the buffer 5130 if (p - buf + 35 >= buflen) // getting too long 5131 return FALSE; 5132 *p++ = ' '; 5133 *p++ = '('; 5134 if (add_file) 5135 { 5136 STRCPY(p, "file "); 5137 p += 5; 5138 } 5139 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)), 5140 wp->w_arg_idx_invalid ? "(%d) of %d)" 5141 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT); 5142 return TRUE; 5143 } 5144 5145 /* 5146 * If fname is not a full path, make it a full path. 5147 * Returns pointer to allocated memory (NULL for failure). 5148 */ 5149 char_u * 5150 fix_fname(char_u *fname) 5151 { 5152 /* 5153 * Force expanding the path always for Unix, because symbolic links may 5154 * mess up the full path name, even though it starts with a '/'. 5155 * Also expand when there is ".." in the file name, try to remove it, 5156 * because "c:/src/../README" is equal to "c:/README". 5157 * Similarly "c:/src//file" is equal to "c:/src/file". 5158 * For MS-Windows also expand names like "longna~1" to "longname". 5159 */ 5160 #ifdef UNIX 5161 return FullName_save(fname, TRUE); 5162 #else 5163 if (!vim_isAbsName(fname) 5164 || strstr((char *)fname, "..") != NULL 5165 || strstr((char *)fname, "//") != NULL 5166 # ifdef BACKSLASH_IN_FILENAME 5167 || strstr((char *)fname, "\\\\") != NULL 5168 # endif 5169 # if defined(MSWIN) 5170 || vim_strchr(fname, '~') != NULL 5171 # endif 5172 ) 5173 return FullName_save(fname, FALSE); 5174 5175 fname = vim_strsave(fname); 5176 5177 # ifdef USE_FNAME_CASE 5178 if (fname != NULL) 5179 fname_case(fname, 0); // set correct case for file name 5180 # endif 5181 5182 return fname; 5183 #endif 5184 } 5185 5186 /* 5187 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL. 5188 * "*ffname" becomes a pointer to allocated memory (or NULL). 5189 * When resolving a link both "*sfname" and "*ffname" will point to the same 5190 * allocated memory. 5191 * The "*ffname" and "*sfname" pointer values on call will not be freed. 5192 * Note that the resulting "*ffname" pointer should be considered not allocated. 5193 */ 5194 void 5195 fname_expand( 5196 buf_T *buf UNUSED, 5197 char_u **ffname, 5198 char_u **sfname) 5199 { 5200 if (*ffname == NULL) // no file name given, nothing to do 5201 return; 5202 if (*sfname == NULL) // no short file name given, use ffname 5203 *sfname = *ffname; 5204 *ffname = fix_fname(*ffname); // expand to full path 5205 5206 #ifdef FEAT_SHORTCUT 5207 if (!buf->b_p_bin) 5208 { 5209 char_u *rfname; 5210 5211 // If the file name is a shortcut file, use the file it links to. 5212 rfname = mch_resolve_path(*ffname, FALSE); 5213 if (rfname != NULL) 5214 { 5215 vim_free(*ffname); 5216 *ffname = rfname; 5217 *sfname = rfname; 5218 } 5219 } 5220 #endif 5221 } 5222 5223 /* 5224 * Open a window for a number of buffers. 5225 */ 5226 void 5227 ex_buffer_all(exarg_T *eap) 5228 { 5229 buf_T *buf; 5230 win_T *wp, *wpnext; 5231 int split_ret = OK; 5232 int p_ea_save; 5233 int open_wins = 0; 5234 int r; 5235 int count; // Maximum number of windows to open. 5236 int all; // When TRUE also load inactive buffers. 5237 int had_tab = cmdmod.cmod_tab; 5238 tabpage_T *tpnext; 5239 5240 if (eap->addr_count == 0) // make as many windows as possible 5241 count = 9999; 5242 else 5243 count = eap->line2; // make as many windows as specified 5244 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide) 5245 all = FALSE; 5246 else 5247 all = TRUE; 5248 5249 setpcmark(); 5250 5251 #ifdef FEAT_GUI 5252 need_mouse_correct = TRUE; 5253 #endif 5254 5255 /* 5256 * Close superfluous windows (two windows for the same buffer). 5257 * Also close windows that are not full-width. 5258 */ 5259 if (had_tab > 0) 5260 goto_tabpage_tp(first_tabpage, TRUE, TRUE); 5261 for (;;) 5262 { 5263 tpnext = curtab->tp_next; 5264 for (wp = firstwin; wp != NULL; wp = wpnext) 5265 { 5266 wpnext = wp->w_next; 5267 if ((wp->w_buffer->b_nwindows > 1 5268 || ((cmdmod.cmod_split & WSP_VERT) 5269 ? wp->w_height + wp->w_status_height < Rows - p_ch 5270 - tabline_height() 5271 : wp->w_width != Columns) 5272 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW 5273 && !(wp->w_closing || wp->w_buffer->b_locked > 0)) 5274 { 5275 win_close(wp, FALSE); 5276 wpnext = firstwin; // just in case an autocommand does 5277 // something strange with windows 5278 tpnext = first_tabpage; // start all over... 5279 open_wins = 0; 5280 } 5281 else 5282 ++open_wins; 5283 } 5284 5285 // Without the ":tab" modifier only do the current tab page. 5286 if (had_tab == 0 || tpnext == NULL) 5287 break; 5288 goto_tabpage_tp(tpnext, TRUE, TRUE); 5289 } 5290 5291 /* 5292 * Go through the buffer list. When a buffer doesn't have a window yet, 5293 * open one. Otherwise move the window to the right position. 5294 * Watch out for autocommands that delete buffers or windows! 5295 */ 5296 // Don't execute Win/Buf Enter/Leave autocommands here. 5297 ++autocmd_no_enter; 5298 win_enter(lastwin, FALSE); 5299 ++autocmd_no_leave; 5300 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next) 5301 { 5302 // Check if this buffer needs a window 5303 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl) 5304 continue; 5305 5306 if (had_tab != 0) 5307 { 5308 // With the ":tab" modifier don't move the window. 5309 if (buf->b_nwindows > 0) 5310 wp = lastwin; // buffer has a window, skip it 5311 else 5312 wp = NULL; 5313 } 5314 else 5315 { 5316 // Check if this buffer already has a window 5317 FOR_ALL_WINDOWS(wp) 5318 if (wp->w_buffer == buf) 5319 break; 5320 // If the buffer already has a window, move it 5321 if (wp != NULL) 5322 win_move_after(wp, curwin); 5323 } 5324 5325 if (wp == NULL && split_ret == OK) 5326 { 5327 bufref_T bufref; 5328 5329 set_bufref(&bufref, buf); 5330 5331 // Split the window and put the buffer in it 5332 p_ea_save = p_ea; 5333 p_ea = TRUE; // use space from all windows 5334 split_ret = win_split(0, WSP_ROOM | WSP_BELOW); 5335 ++open_wins; 5336 p_ea = p_ea_save; 5337 if (split_ret == FAIL) 5338 continue; 5339 5340 // Open the buffer in this window. 5341 swap_exists_action = SEA_DIALOG; 5342 set_curbuf(buf, DOBUF_GOTO); 5343 if (!bufref_valid(&bufref)) 5344 { 5345 // autocommands deleted the buffer!!! 5346 swap_exists_action = SEA_NONE; 5347 break; 5348 } 5349 if (swap_exists_action == SEA_QUIT) 5350 { 5351 #if defined(FEAT_EVAL) 5352 cleanup_T cs; 5353 5354 // Reset the error/interrupt/exception state here so that 5355 // aborting() returns FALSE when closing a window. 5356 enter_cleanup(&cs); 5357 #endif 5358 5359 // User selected Quit at ATTENTION prompt; close this window. 5360 win_close(curwin, TRUE); 5361 --open_wins; 5362 swap_exists_action = SEA_NONE; 5363 swap_exists_did_quit = TRUE; 5364 5365 #if defined(FEAT_EVAL) 5366 // Restore the error/interrupt/exception state if not 5367 // discarded by a new aborting error, interrupt, or uncaught 5368 // exception. 5369 leave_cleanup(&cs); 5370 #endif 5371 } 5372 else 5373 handle_swap_exists(NULL); 5374 } 5375 5376 ui_breakcheck(); 5377 if (got_int) 5378 { 5379 (void)vgetc(); // only break the file loading, not the rest 5380 break; 5381 } 5382 #ifdef FEAT_EVAL 5383 // Autocommands deleted the buffer or aborted script processing!!! 5384 if (aborting()) 5385 break; 5386 #endif 5387 // When ":tab" was used open a new tab for a new window repeatedly. 5388 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm) 5389 cmdmod.cmod_tab = 9999; 5390 } 5391 --autocmd_no_enter; 5392 win_enter(firstwin, FALSE); // back to first window 5393 --autocmd_no_leave; 5394 5395 /* 5396 * Close superfluous windows. 5397 */ 5398 for (wp = lastwin; open_wins > count; ) 5399 { 5400 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer) 5401 || autowrite(wp->w_buffer, FALSE) == OK); 5402 if (!win_valid(wp)) 5403 { 5404 // BufWrite Autocommands made the window invalid, start over 5405 wp = lastwin; 5406 } 5407 else if (r) 5408 { 5409 win_close(wp, !buf_hide(wp->w_buffer)); 5410 --open_wins; 5411 wp = lastwin; 5412 } 5413 else 5414 { 5415 wp = wp->w_prev; 5416 if (wp == NULL) 5417 break; 5418 } 5419 } 5420 } 5421 5422 5423 static int chk_modeline(linenr_T, int); 5424 5425 /* 5426 * do_modelines() - process mode lines for the current file 5427 * 5428 * "flags" can be: 5429 * OPT_WINONLY only set options local to window 5430 * OPT_NOWIN don't set options local to window 5431 * 5432 * Returns immediately if the "ml" option isn't set. 5433 */ 5434 void 5435 do_modelines(int flags) 5436 { 5437 linenr_T lnum; 5438 int nmlines; 5439 static int entered = 0; 5440 5441 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0) 5442 return; 5443 5444 // Disallow recursive entry here. Can happen when executing a modeline 5445 // triggers an autocommand, which reloads modelines with a ":do". 5446 if (entered) 5447 return; 5448 5449 ++entered; 5450 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines; 5451 ++lnum) 5452 if (chk_modeline(lnum, flags) == FAIL) 5453 nmlines = 0; 5454 5455 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines 5456 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum) 5457 if (chk_modeline(lnum, flags) == FAIL) 5458 nmlines = 0; 5459 --entered; 5460 } 5461 5462 #include "version.h" // for version number 5463 5464 /* 5465 * chk_modeline() - check a single line for a mode string 5466 * Return FAIL if an error encountered. 5467 */ 5468 static int 5469 chk_modeline( 5470 linenr_T lnum, 5471 int flags) // Same as for do_modelines(). 5472 { 5473 char_u *s; 5474 char_u *e; 5475 char_u *linecopy; // local copy of any modeline found 5476 int prev; 5477 int vers; 5478 int end; 5479 int retval = OK; 5480 sctx_T save_current_sctx; 5481 5482 ESTACK_CHECK_DECLARATION 5483 5484 prev = -1; 5485 for (s = ml_get(lnum); *s != NUL; ++s) 5486 { 5487 if (prev == -1 || vim_isspace(prev)) 5488 { 5489 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0) 5490 || STRNCMP(s, "vi:", (size_t)3) == 0) 5491 break; 5492 // Accept both "vim" and "Vim". 5493 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm') 5494 { 5495 if (s[3] == '<' || s[3] == '=' || s[3] == '>') 5496 e = s + 4; 5497 else 5498 e = s + 3; 5499 vers = getdigits(&e); 5500 if (*e == ':' 5501 && (s[0] != 'V' 5502 || STRNCMP(skipwhite(e + 1), "set", 3) == 0) 5503 && (s[3] == ':' 5504 || (VIM_VERSION_100 >= vers && isdigit(s[3])) 5505 || (VIM_VERSION_100 < vers && s[3] == '<') 5506 || (VIM_VERSION_100 > vers && s[3] == '>') 5507 || (VIM_VERSION_100 == vers && s[3] == '='))) 5508 break; 5509 } 5510 } 5511 prev = *s; 5512 } 5513 5514 if (*s) 5515 { 5516 do // skip over "ex:", "vi:" or "vim:" 5517 ++s; 5518 while (s[-1] != ':'); 5519 5520 s = linecopy = vim_strsave(s); // copy the line, it will change 5521 if (linecopy == NULL) 5522 return FAIL; 5523 5524 // prepare for emsg() 5525 estack_push(ETYPE_MODELINE, (char_u *)"modelines", lnum); 5526 ESTACK_CHECK_SETUP 5527 5528 end = FALSE; 5529 while (end == FALSE) 5530 { 5531 s = skipwhite(s); 5532 if (*s == NUL) 5533 break; 5534 5535 /* 5536 * Find end of set command: ':' or end of line. 5537 * Skip over "\:", replacing it with ":". 5538 */ 5539 for (e = s; *e != ':' && *e != NUL; ++e) 5540 if (e[0] == '\\' && e[1] == ':') 5541 STRMOVE(e, e + 1); 5542 if (*e == NUL) 5543 end = TRUE; 5544 5545 /* 5546 * If there is a "set" command, require a terminating ':' and 5547 * ignore the stuff after the ':'. 5548 * "vi:set opt opt opt: foo" -- foo not interpreted 5549 * "vi:opt opt opt: foo" -- foo interpreted 5550 * Accept "se" for compatibility with Elvis. 5551 */ 5552 if (STRNCMP(s, "set ", (size_t)4) == 0 5553 || STRNCMP(s, "se ", (size_t)3) == 0) 5554 { 5555 if (*e != ':') // no terminating ':'? 5556 break; 5557 end = TRUE; 5558 s = vim_strchr(s, ' ') + 1; 5559 } 5560 *e = NUL; // truncate the set command 5561 5562 if (*s != NUL) // skip over an empty "::" 5563 { 5564 int secure_save = secure; 5565 5566 save_current_sctx = current_sctx; 5567 current_sctx.sc_version = 1; 5568 #ifdef FEAT_EVAL 5569 current_sctx.sc_sid = SID_MODELINE; 5570 current_sctx.sc_seq = 0; 5571 current_sctx.sc_lnum = lnum; 5572 #endif 5573 5574 // Make sure no risky things are executed as a side effect. 5575 secure = 1; 5576 5577 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags); 5578 5579 secure = secure_save; 5580 current_sctx = save_current_sctx; 5581 if (retval == FAIL) // stop if error found 5582 break; 5583 } 5584 s = e + 1; // advance to next part 5585 } 5586 5587 ESTACK_CHECK_NOW 5588 estack_pop(); 5589 vim_free(linecopy); 5590 } 5591 return retval; 5592 } 5593 5594 /* 5595 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty. 5596 */ 5597 int 5598 bt_normal(buf_T *buf) 5599 { 5600 return buf != NULL && buf->b_p_bt[0] == NUL; 5601 } 5602 5603 #if defined(FEAT_QUICKFIX) || defined(PROTO) 5604 /* 5605 * Return TRUE if "buf" is the quickfix buffer. 5606 */ 5607 int 5608 bt_quickfix(buf_T *buf) 5609 { 5610 return buf != NULL && buf->b_p_bt[0] == 'q'; 5611 } 5612 #endif 5613 5614 #if defined(FEAT_TERMINAL) || defined(PROTO) 5615 /* 5616 * Return TRUE if "buf" is a terminal buffer. 5617 */ 5618 int 5619 bt_terminal(buf_T *buf) 5620 { 5621 return buf != NULL && buf->b_p_bt[0] == 't'; 5622 } 5623 #endif 5624 5625 /* 5626 * Return TRUE if "buf" is a help buffer. 5627 */ 5628 int 5629 bt_help(buf_T *buf) 5630 { 5631 return buf != NULL && buf->b_help; 5632 } 5633 5634 /* 5635 * Return TRUE if "buf" is a prompt buffer. 5636 */ 5637 int 5638 bt_prompt(buf_T *buf) 5639 { 5640 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r'; 5641 } 5642 5643 /* 5644 * Return TRUE if "buf" is a buffer for a popup window. 5645 */ 5646 int 5647 bt_popup(buf_T *buf) 5648 { 5649 return buf != NULL && buf->b_p_bt != NULL 5650 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o'; 5651 } 5652 5653 /* 5654 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt" 5655 * buffer. This means the buffer name is not a file name. 5656 */ 5657 int 5658 bt_nofilename(buf_T *buf) 5659 { 5660 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f') 5661 || buf->b_p_bt[0] == 'a' 5662 || buf->b_p_bt[0] == 't' 5663 || buf->b_p_bt[0] == 'p'); 5664 } 5665 5666 /* 5667 * Return TRUE if "buf" has 'buftype' set to "nofile". 5668 */ 5669 int 5670 bt_nofile(buf_T *buf) 5671 { 5672 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f'; 5673 } 5674 5675 /* 5676 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt" 5677 * buffer. 5678 */ 5679 int 5680 bt_dontwrite(buf_T *buf) 5681 { 5682 return buf != NULL && (buf->b_p_bt[0] == 'n' 5683 || buf->b_p_bt[0] == 't' 5684 || buf->b_p_bt[0] == 'p'); 5685 } 5686 5687 #if defined(FEAT_QUICKFIX) || defined(PROTO) 5688 int 5689 bt_dontwrite_msg(buf_T *buf) 5690 { 5691 if (bt_dontwrite(buf)) 5692 { 5693 emsg(_("E382: Cannot write, 'buftype' option is set")); 5694 return TRUE; 5695 } 5696 return FALSE; 5697 } 5698 #endif 5699 5700 /* 5701 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide" 5702 * and 'bufhidden'. 5703 */ 5704 int 5705 buf_hide(buf_T *buf) 5706 { 5707 // 'bufhidden' overrules 'hidden' and ":hide", check it first 5708 switch (buf->b_p_bh[0]) 5709 { 5710 case 'u': // "unload" 5711 case 'w': // "wipe" 5712 case 'd': return FALSE; // "delete" 5713 case 'h': return TRUE; // "hide" 5714 } 5715 return (p_hid || (cmdmod.cmod_flags & CMOD_HIDE)); 5716 } 5717 5718 /* 5719 * Return special buffer name. 5720 * Returns NULL when the buffer has a normal file name. 5721 */ 5722 char_u * 5723 buf_spname(buf_T *buf) 5724 { 5725 #if defined(FEAT_QUICKFIX) 5726 if (bt_quickfix(buf)) 5727 { 5728 /* 5729 * Differentiate between the quickfix and location list buffers using 5730 * the buffer number stored in the global quickfix stack. 5731 */ 5732 if (buf->b_fnum == qf_stack_get_bufnr()) 5733 return (char_u *)_(msg_qflist); 5734 else 5735 return (char_u *)_(msg_loclist); 5736 } 5737 #endif 5738 5739 // There is no _file_ when 'buftype' is "nofile", b_sfname 5740 // contains the name as specified by the user. 5741 if (bt_nofilename(buf)) 5742 { 5743 #ifdef FEAT_TERMINAL 5744 if (buf->b_term != NULL) 5745 return term_get_status_text(buf->b_term); 5746 #endif 5747 if (buf->b_fname != NULL) 5748 return buf->b_fname; 5749 #ifdef FEAT_JOB_CHANNEL 5750 if (bt_prompt(buf)) 5751 return (char_u *)_("[Prompt]"); 5752 #endif 5753 #ifdef FEAT_PROP_POPUP 5754 if (bt_popup(buf)) 5755 return (char_u *)_("[Popup]"); 5756 #endif 5757 return (char_u *)_("[Scratch]"); 5758 } 5759 5760 if (buf->b_fname == NULL) 5761 return buf_get_fname(buf); 5762 return NULL; 5763 } 5764 5765 /* 5766 * Get "buf->b_fname", use "[No Name]" if it is NULL. 5767 */ 5768 char_u * 5769 buf_get_fname(buf_T *buf) 5770 { 5771 if (buf->b_fname == NULL) 5772 return (char_u *)_("[No Name]"); 5773 return buf->b_fname; 5774 } 5775 5776 /* 5777 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed. 5778 */ 5779 void 5780 set_buflisted(int on) 5781 { 5782 if (on != curbuf->b_p_bl) 5783 { 5784 curbuf->b_p_bl = on; 5785 if (on) 5786 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf); 5787 else 5788 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf); 5789 } 5790 } 5791 5792 /* 5793 * Read the file for "buf" again and check if the contents changed. 5794 * Return TRUE if it changed or this could not be checked. 5795 */ 5796 int 5797 buf_contents_changed(buf_T *buf) 5798 { 5799 buf_T *newbuf; 5800 int differ = TRUE; 5801 linenr_T lnum; 5802 aco_save_T aco; 5803 exarg_T ea; 5804 5805 // Allocate a buffer without putting it in the buffer list. 5806 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY); 5807 if (newbuf == NULL) 5808 return TRUE; 5809 5810 // Force the 'fileencoding' and 'fileformat' to be equal. 5811 if (prep_exarg(&ea, buf) == FAIL) 5812 { 5813 wipe_buffer(newbuf, FALSE); 5814 return TRUE; 5815 } 5816 5817 // set curwin/curbuf to buf and save a few things 5818 aucmd_prepbuf(&aco, newbuf); 5819 5820 if (ml_open(curbuf) == OK 5821 && readfile(buf->b_ffname, buf->b_fname, 5822 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, 5823 &ea, READ_NEW | READ_DUMMY) == OK) 5824 { 5825 // compare the two files line by line 5826 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count) 5827 { 5828 differ = FALSE; 5829 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) 5830 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0) 5831 { 5832 differ = TRUE; 5833 break; 5834 } 5835 } 5836 } 5837 vim_free(ea.cmd); 5838 5839 // restore curwin/curbuf and a few other things 5840 aucmd_restbuf(&aco); 5841 5842 if (curbuf != newbuf) // safety check 5843 wipe_buffer(newbuf, FALSE); 5844 5845 return differ; 5846 } 5847 5848 /* 5849 * Wipe out a buffer and decrement the last buffer number if it was used for 5850 * this buffer. Call this to wipe out a temp buffer that does not contain any 5851 * marks. 5852 */ 5853 void 5854 wipe_buffer( 5855 buf_T *buf, 5856 int aucmd) // When TRUE trigger autocommands. 5857 { 5858 if (buf->b_fnum == top_file_num - 1) 5859 --top_file_num; 5860 5861 if (!aucmd) // Don't trigger BufDelete autocommands here. 5862 block_autocmds(); 5863 5864 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, TRUE); 5865 5866 if (!aucmd) 5867 unblock_autocmds(); 5868 } 5869