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