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